Skip to content
Snippets Groups Projects
Commit bf64dd26 authored by Linus Walleij's avatar Linus Walleij Committed by Olof Johansson
Browse files

ARM: ux500: add an SMP enablement type and move cpu nodes


The "cpus" node cannot be inside the "soc" node, while this
works for the CoreSight blocks, the early boot code will look
for "cpus" directly under the root node, so this is a hard
convention. So move the CPU nodes.

Augment the "reg" property to match what is actually in the
hardware: 0x300 and 0x301 respectively.

Then add an SMP enablement type to be used by the SMP init
code, "ste,dbx500-smp".

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent c1bfa985
No related branches found
No related tags found
No related merge requests found
...@@ -199,6 +199,7 @@ nodes to be present and contain the properties described below. ...@@ -199,6 +199,7 @@ nodes to be present and contain the properties described below.
"qcom,kpss-acc-v1" "qcom,kpss-acc-v1"
"qcom,kpss-acc-v2" "qcom,kpss-acc-v2"
"rockchip,rk3066-smp" "rockchip,rk3066-smp"
"ste,dbx500-smp"
- cpu-release-addr - cpu-release-addr
Usage: required for systems that have an "enable-method" Usage: required for systems that have an "enable-method"
......
...@@ -15,16 +15,10 @@ ...@@ -15,16 +15,10 @@
#include "skeleton.dtsi" #include "skeleton.dtsi"
/ { / {
soc {
#address-cells = <1>;
#size-cells = <1>;
compatible = "stericsson,db8500";
interrupt-parent = <&intc>;
ranges;
cpus { cpus {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
enable-method = "ste,dbx500-smp";
cpu-map { cpu-map {
cluster0 { cluster0 {
...@@ -36,18 +30,25 @@ ...@@ -36,18 +30,25 @@
}; };
}; };
}; };
CPU0: cpu@0 { CPU0: cpu@300 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a9"; compatible = "arm,cortex-a9";
reg = <0>; reg = <0x300>;
}; };
CPU1: cpu@1 { CPU1: cpu@301 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a9"; compatible = "arm,cortex-a9";
reg = <1>; reg = <0x301>;
}; };
}; };
soc {
#address-cells = <1>;
#size-cells = <1>;
compatible = "stericsson,db8500";
interrupt-parent = <&intc>;
ranges;
ptm@801ae000 { ptm@801ae000 {
compatible = "arm,coresight-etm3x", "arm,primecell"; compatible = "arm,coresight-etm3x", "arm,primecell";
reg = <0x801ae000 0x1000>; reg = <0x801ae000 0x1000>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment