]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: renesas: Fix RZ/G2L GICR base address
authorPaul Barker <paul.barker.ct@bp.renesas.com>
Fri, 1 Nov 2024 14:20:16 +0000 (14:20 +0000)
committerMarek Vasut <marek.vasut+renesas@mailbox.org>
Sun, 10 Nov 2024 18:36:54 +0000 (19:36 +0100)
When support for the Renesas RZ/G2L SoC was added, the GICR base address
for CPU1 was accidentally used. We should instead supply the GICR base
address for CPU0 so that interrupts are correctly configured for the
CPU core that U-Boot is actually using.

Fixes: 387d4275ab0e ("arm: rmobile: Add basic RZ/G2L family support")
Signed-off-by: Paul Barker <paul.barker.ct@bp.renesas.com>
arch/arm/mach-renesas/include/mach/rzg2l.h

index 057df5cb9d46f89d136b47aaf093653493380247..c49a71a6dd41b7d88d7777f05255bd5315290281 100644 (file)
@@ -8,6 +8,6 @@
 #define __ASM_ARCH_RZG2L_H
 
 #define GICD_BASE      0x11900000
-#define GICR_BASE      0x11960000
+#define GICR_BASE      0x11940000
 
 #endif /* __ASM_ARCH_RZG2L_H */