hw/arm/armsse.c: fix SSE-300 s32kwatchdog address
The SSE-300 SLOWCLK Secure Watchdog Timer is only defined at address 0x5802e000 in the secure region. Page 45 of the SSE-300 TRM specifies that "the watchdog is Secure access only". SSE-300 TRM: https://support.arm.com/documentation/101773/latest/ Fixes: 8901bb414a24 ("hw/arm/armsse: Add SSE-300 support") Suggested-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Simon Xu <simonxhy0404@gmail.com> Message-id: 20260805191257.11303-2-simonxhy0404@gmail.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Simon Xu committed
Aug 11, 2026 at 20:14 UTC
000ef0d13b4fb82a0e4279d6409df805fc28815b
1 file changed
+1
-1
hw/arm/armsse.c
+1
-1
@@ -409,7 +409,7 @@ static const ARMSSEDeviceInfo sse300_devices[] = {
409
.name = "s32kwatchdog",
410
.type = TYPE_CMSDK_APB_WATCHDOG,
411
.index = 0,
412
- .addr = 0x4802e000,
412
+ .addr = 0x5802e000,
413
.ppc = NO_PPC,
414
.irq = NMI_0,
415
.slowclk = true,