diff options
author | Peter Griffin <peter.griffin@linaro.org> | 2015-06-09 15:33:00 +0200 |
---|---|---|
committer | Maxime Coquelin <maxime.coquelin@st.com> | 2015-07-22 11:11:04 +0200 |
commit | c1dc02da791fd046c284e216aa4ae3c16a54c805 (patch) | |
tree | 221bd240cf34eae4f44d63e9cc5139c3d47ce92f | |
parent | ARM: STi: DT: Add STiH407 family mtsin0 pinctrl configuration (diff) | |
download | linux-c1dc02da791fd046c284e216aa4ae3c16a54c805.tar.xz linux-c1dc02da791fd046c284e216aa4ae3c16a54c805.zip |
ARM: STi: DT: STiH407: Add cpu-release-addr dt property.
To enable SMP when booting via u-boot we need to specify the
newly implemented cpu-release-addr DT property.
Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
Acked-by: Maxime Coquelin <maxime.coquelin@st.com>
Signed-off-by: Maxime Coquelin <maxime.coquelin@st.com>
-rw-r--r-- | arch/arm/boot/dts/stih407-family.dtsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/stih407-family.dtsi b/arch/arm/boot/dts/stih407-family.dtsi index 838b812cbda1..626452f58aff 100644 --- a/arch/arm/boot/dts/stih407-family.dtsi +++ b/arch/arm/boot/dts/stih407-family.dtsi @@ -22,11 +22,15 @@ device_type = "cpu"; compatible = "arm,cortex-a9"; reg = <0>; + /* u-boot puts hpen in SBC dmem at 0xa4 offset */ + cpu-release-addr = <0x94100A4>; }; cpu@1 { device_type = "cpu"; compatible = "arm,cortex-a9"; reg = <1>; + /* u-boot puts hpen in SBC dmem at 0xa4 offset */ + cpu-release-addr = <0x94100A4>; }; }; |