summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Barker <paul.barker.ct@bp.renesas.com>2024-11-01 14:20:16 +0000
committerMarek Vasut <marek.vasut+renesas@mailbox.org>2024-11-10 19:36:54 +0100
commit9d81a9ff990bae1bcf08ae5b888e0b6e12d1b58b (patch)
tree1abc104b692dd5cd950413cded949897c56ffc59
parent2badc6529bb19aa35ddbb061c5bdb24f33d76d6f (diff)
arm: renesas: Fix RZ/G2L GICR base address
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>
-rw-r--r--arch/arm/mach-renesas/include/mach/rzg2l.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-renesas/include/mach/rzg2l.h b/arch/arm/mach-renesas/include/mach/rzg2l.h
index 057df5cb9d4..c49a71a6dd4 100644
--- a/arch/arm/mach-renesas/include/mach/rzg2l.h
+++ b/arch/arm/mach-renesas/include/mach/rzg2l.h
@@ -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 */