Commit 8a3ed46f authored by William Zhang's avatar William Zhang Committed by Florian Fainelli

ARM: dts: Update BCM47622 DTS file

Fix a few issue in bcm47622.dtsi file:
- Remove unnecessary cpu_on and cpu_off properties from psci node
- Add the missing gic registers and interrupts property to gic node
- Cosmetic changes
Signed-off-by: default avatarWilliam Zhang <william.zhang@broadcom.com>
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent de1a99ac
...@@ -32,6 +32,7 @@ CA7_1: cpu@1 { ...@@ -32,6 +32,7 @@ CA7_1: cpu@1 {
next-level-cache = <&L2_0>; next-level-cache = <&L2_0>;
enable-method = "psci"; enable-method = "psci";
}; };
CA7_2: cpu@2 { CA7_2: cpu@2 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a7"; compatible = "arm,cortex-a7";
...@@ -39,6 +40,7 @@ CA7_2: cpu@2 { ...@@ -39,6 +40,7 @@ CA7_2: cpu@2 {
next-level-cache = <&L2_0>; next-level-cache = <&L2_0>;
enable-method = "psci"; enable-method = "psci";
}; };
CA7_3: cpu@3 { CA7_3: cpu@3 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a7"; compatible = "arm,cortex-a7";
...@@ -46,6 +48,7 @@ CA7_3: cpu@3 { ...@@ -46,6 +48,7 @@ CA7_3: cpu@3 {
next-level-cache = <&L2_0>; next-level-cache = <&L2_0>;
enable-method = "psci"; enable-method = "psci";
}; };
L2_0: l2-cache0 { L2_0: l2-cache0 {
compatible = "cache"; compatible = "cache";
}; };
...@@ -76,6 +79,7 @@ periph_clk: periph-clk { ...@@ -76,6 +79,7 @@ periph_clk: periph-clk {
#clock-cells = <0>; #clock-cells = <0>;
clock-frequency = <200000000>; clock-frequency = <200000000>;
}; };
uart_clk: uart-clk { uart_clk: uart-clk {
compatible = "fixed-factor-clock"; compatible = "fixed-factor-clock";
#clock-cells = <0>; #clock-cells = <0>;
...@@ -88,23 +92,23 @@ uart_clk: uart-clk { ...@@ -88,23 +92,23 @@ uart_clk: uart-clk {
psci { psci {
compatible = "arm,psci-0.2"; compatible = "arm,psci-0.2";
method = "smc"; method = "smc";
cpu_off = <1>;
cpu_on = <2>;
}; };
axi@81000000 { axi@81000000 {
compatible = "simple-bus"; compatible = "simple-bus";
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
ranges = <0 0x81000000 0x818000>; ranges = <0 0x81000000 0x8000>;
gic: interrupt-controller@1000 { gic: interrupt-controller@1000 {
compatible = "arm,cortex-a7-gic"; compatible = "arm,cortex-a7-gic";
#interrupt-cells = <3>; #interrupt-cells = <3>;
#address-cells = <0>;
interrupt-controller; interrupt-controller;
interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
reg = <0x1000 0x1000>, reg = <0x1000 0x1000>,
<0x2000 0x2000>; <0x2000 0x2000>,
<0x4000 0x2000>,
<0x6000 0x2000>;
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment