From: Peter Maydell Date: Fri, 19 Feb 2021 14:46:03 +0000 (+0000) Subject: hw/arm/armsse: Add missing SSE-200 SYS_PPU X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6fe8acb41ed5a4b033ae7b5f876968e568476129;p=qmiga%2Fqemu.git hw/arm/armsse: Add missing SSE-200 SYS_PPU We forgot to implement a TYPE_UNIMPLEMENTED_DEVICE stub for the SYS_PPU in the SSE-200, which is at 0x50022000. Signed-off-by: Peter Maydell Tested-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-id: 20210219144617.4782-31-peter.maydell@linaro.org --- diff --git a/hw/arm/armsse.c b/hw/arm/armsse.c index f72d1adafe..f43f0524e2 100644 --- a/hw/arm/armsse.c +++ b/hw/arm/armsse.c @@ -321,6 +321,15 @@ static const ARMSSEDeviceInfo sse200_devices[] = { .irq = NO_IRQ, }, { + .name = "SYS_PPU", + .type = TYPE_UNIMPLEMENTED_DEVICE, + .index = 7, + .addr = 0x50022000, + .size = 0x1000, + .ppc = NO_PPC, + .irq = NO_IRQ, + }, + { .name = NULL, } }; diff --git a/include/hw/arm/armsse.h b/include/hw/arm/armsse.h index eb4e937173..104ba8d26e 100644 --- a/include/hw/arm/armsse.h +++ b/include/hw/arm/armsse.h @@ -135,7 +135,7 @@ OBJECT_DECLARE_TYPE(ARMSSE, ARMSSEClass, #define SSE_MAX_CPUS 2 -#define NUM_PPUS 7 +#define NUM_PPUS 8 /* Number of CPU IRQs used by the SSE itself */ #define NUM_SSE_IRQS 32