diff options
author | Jackson Donaldson <jackson88044@gmail.com> | 2025-07-04 18:32:35 -0400 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-07-08 17:31:38 +0100 |
commit | 035a38fa97d07b80ff5b9fa6c3da43528770899d (patch) | |
tree | e0d5a66604b719c73dad06117922cd24e70394c0 /include/hw/arm | |
parent | a017f53e093a9018e33fb33bbdaa322c2de3dbe7 (diff) | |
download | qemu-035a38fa97d07b80ff5b9fa6c3da43528770899d.zip qemu-035a38fa97d07b80ff5b9fa6c3da43528770899d.tar.gz qemu-035a38fa97d07b80ff5b9fa6c3da43528770899d.tar.bz2 |
MAX78000: Add GCR to SOC
This commit adds the Global Control Register to
max78000_soc
Signed-off-by: Jackson Donaldson <jcksn@duck.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20250704223239.248781-8-jcksn@duck.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/arm')
-rw-r--r-- | include/hw/arm/max78000_soc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/arm/max78000_soc.h b/include/hw/arm/max78000_soc.h index 57894f0..919aca0 100644 --- a/include/hw/arm/max78000_soc.h +++ b/include/hw/arm/max78000_soc.h @@ -11,6 +11,7 @@ #include "hw/or-irq.h" #include "hw/arm/armv7m.h" +#include "hw/misc/max78000_gcr.h" #include "hw/misc/max78000_icc.h" #include "hw/char/max78000_uart.h" #include "qom/object.h" @@ -35,6 +36,7 @@ struct MAX78000State { MemoryRegion sram; MemoryRegion flash; + Max78000GcrState gcr; Max78000IccState icc[MAX78000_NUM_ICC]; Max78000UartState uart[MAX78000_NUM_UART]; |