From fb86e5373ceb3a82485eb3ee2545d15d96a1ce02 Mon Sep 17 00:00:00 2001 From: Vijayenthiran Subramaniam Date: Tue, 15 Dec 2020 20:07:43 +0530 Subject: [PATCH] plat/arm/rdn2: update gic redistributor base address RD-N2 platform has been updated to use six GIC ITS blocks. This results in change in base address of the GIC Redistributor to accomodate two new GIC ITS blocks. Update the base address of GICR to reflect the same. Signed-off-by: Vijayenthiran Subramaniam Change-Id: I740a547328fb9a9f25d7a09c08e61bdbc8bf781c --- plat/arm/board/rdn2/include/platform_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/arm/board/rdn2/include/platform_def.h b/plat/arm/board/rdn2/include/platform_def.h index ebfbf66a6..5561f8c6e 100644 --- a/plat/arm/board/rdn2/include/platform_def.h +++ b/plat/arm/board/rdn2/include/platform_def.h @@ -60,6 +60,6 @@ /* GIC related constants */ #define PLAT_ARM_GICD_BASE UL(0x30000000) #define PLAT_ARM_GICC_BASE UL(0x2C000000) -#define PLAT_ARM_GICR_BASE UL(0x30140000) +#define PLAT_ARM_GICR_BASE UL(0x301C0000) #endif /* PLATFORM_DEF_H */