Skip to content

Commit 12bbc22

Browse files
William Zhangffainelli
authored andcommitted
ARM: dts: bcmbca: bcm6846: fix interrupt controller node
Add the missing gic registers and interrupts property to the gic node. Fixes: de1a99a ("ARM: dts: Add DTS files for bcmbca SoC BCM6846") Signed-off-by: William Zhang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Florian Fainelli <[email protected]>
1 parent b7e2046 commit 12bbc22

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

arch/arm/boot/dts/bcm6846.dtsi

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,17 @@
7171
compatible = "simple-bus";
7272
#address-cells = <1>;
7373
#size-cells = <1>;
74-
ranges = <0 0x81000000 0x4000>;
74+
ranges = <0 0x81000000 0x8000>;
7575

7676
gic: interrupt-controller@1000 {
7777
compatible = "arm,cortex-a7-gic";
7878
#interrupt-cells = <3>;
79-
#address-cells = <0>;
8079
interrupt-controller;
80+
interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>;
8181
reg = <0x1000 0x1000>,
82-
<0x2000 0x2000>;
82+
<0x2000 0x2000>,
83+
<0x4000 0x2000>,
84+
<0x6000 0x2000>;
8385
};
8486
};
8587

0 commit comments

Comments
 (0)