Skip to content

Commit 856216b

Browse files
mranostaynmenon
authored andcommitted
arm64: dts: ti: k3-j721s2: Fix overlapping GICD memory region
GICD region was overlapping with GICR causing the latter to not map successfully, and in turn the gic-v3 driver would fail to initialize. This issue was hidden till commit 2b2cd74 ("irqchip/gic-v3: Claim iomem resources") replaced of_iomap() calls with of_io_request_and_map() that internally called request_mem_region(). Respective console output before this patchset: [ 0.000000] GICv3: /bus@100000/interrupt-controller@1800000: couldn't map region 0 Fixes: b8545f9 ("arm64: dts: ti: Add initial support for J721S2 SoC") Cc: linux-stable@vger.kernel.org Cc: Marc Zyngier <maz@kernel.org> Cc: Robin Murphy <robin.murphy@arm.com> Cc: Nishanth Menon <nm@ti.com> Signed-off-by: Matt Ranostay <mranostay@ti.com> Acked-by: Marc Zyngier <maz@kernel.org> Signed-off-by: Nishanth Menon <nm@ti.com> Link: https://lore.kernel.org/r/20220617151304.446607-1-mranostay@ti.com
1 parent f2906aa commit 856216b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm64/boot/dts/ti/k3-j721s2-main.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
ranges;
3434
#interrupt-cells = <3>;
3535
interrupt-controller;
36-
reg = <0x00 0x01800000 0x00 0x200000>, /* GICD */
36+
reg = <0x00 0x01800000 0x00 0x100000>, /* GICD */
3737
<0x00 0x01900000 0x00 0x100000>, /* GICR */
3838
<0x00 0x6f000000 0x00 0x2000>, /* GICC */
3939
<0x00 0x6f010000 0x00 0x1000>, /* GICH */

0 commit comments

Comments
 (0)