Skip to content

Commit ed93a06

Browse files
William Zhangffainelli
authored andcommitted
ARM: dts: bcmbca: bcm63178: fix interrupt controller node
Add the missing gic registers and interrupts property to the gic node. Fixes: fc85b7e ("ARM: dts: add dts files for bcmbca soc 63178") Signed-off-by: William Zhang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Florian Fainelli <[email protected]>
1 parent 9a6bd12 commit ed93a06

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

arch/arm/boot/dts/bcm63178.dtsi

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,17 @@
8686
compatible = "simple-bus";
8787
#address-cells = <1>;
8888
#size-cells = <1>;
89-
ranges = <0 0x81000000 0x4000>;
89+
ranges = <0 0x81000000 0x8000>;
9090

9191
gic: interrupt-controller@1000 {
9292
compatible = "arm,cortex-a7-gic";
9393
#interrupt-cells = <3>;
94-
#address-cells = <0>;
9594
interrupt-controller;
95+
interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(3) | IRQ_TYPE_LEVEL_HIGH)>;
9696
reg = <0x1000 0x1000>,
97-
<0x2000 0x2000>;
97+
<0x2000 0x2000>,
98+
<0x4000 0x2000>,
99+
<0x6000 0x2000>;
98100
};
99101
};
100102

0 commit comments

Comments
 (0)