aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2015-04-03 14:23:19 -0400
committerOlof Johansson <olof@lixom.net>2015-04-03 14:23:19 -0400
commitceca038a354f65005babf4c462eaf4af9604f4d1 (patch)
tree4c4f1e3da1b99ca083dc857da56662f82f75f7a3
parente0199d9829e56d3b3a85b14bb3480fa1c4d151b9 (diff)
parent0c02acec74b655fe44b698d293f6f2a9600c4a8b (diff)
Merge tag 'arm-soc/for-4.1/devicetree-part-3' of http://github.com/broadcom/stblinux into next/dt
Merge "Broadcom Device Tree changes for 4.1 #3" from Brian Norris: This pull request contains changes to the BCM7445 reference DTS files from Brian: - making a clock-frequency property decimal instead of hexadecimal - adding the irq0 interrupt controller node to make the reference DTS bootable again * tag 'arm-soc/for-4.1/devicetree-part-3' of http://github.com/broadcom/stblinux: ARM: dts: brcmstb: add IRQ0 controller ARM: dts: brcmstb: un-hexify clock frequency Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r--arch/arm/boot/dts/bcm7445.dtsi14
1 files changed, 13 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/bcm7445.dtsi b/arch/arm/boot/dts/bcm7445.dtsi
index 0ca0f4e523d0..9eaeac8dce1b 100644
--- a/arch/arm/boot/dts/bcm7445.dtsi
+++ b/arch/arm/boot/dts/bcm7445.dtsi
@@ -76,7 +76,7 @@
76 reg-shift = <2>; 76 reg-shift = <2>;
77 reg-io-width = <4>; 77 reg-io-width = <4>;
78 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>; 78 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
79 clock-frequency = <0x4d3f640>; 79 clock-frequency = <81000000>;
80 }; 80 };
81 81
82 sun_top_ctrl: syscon@404000 { 82 sun_top_ctrl: syscon@404000 {
@@ -96,6 +96,18 @@
96 "syscon"; 96 "syscon";
97 reg = <0x452000 0x100>; 97 reg = <0x452000 0x100>;
98 }; 98 };
99
100 irq0_intc: interrupt-controller@f040a780 {
101 compatible = "brcm,bcm7120-l2-intc";
102 interrupt-parent = <&gic>;
103 #interrupt-cells = <1>;
104 reg = <0x40a780 0x8>;
105 interrupt-controller;
106 interrupts = <GIC_SPI 0x45 0x0>,
107 <GIC_SPI 0x43 0x0>;
108 brcm,int-map-mask = <0x25c>, <0x7000000>;
109 brcm,int-fwd-mask = <0x70000>;
110 };
99 }; 111 };
100 112
101 smpboot { 113 smpboot {