summaryrefslogtreecommitdiff
path: root/fdts
diff options
context:
space:
mode:
authorVishnu Banavath <vishnu.banavath@arm.com>2019-12-13 17:07:45 +0000
committervishnu.banavath <vishnu.banavath@arm.com>2019-12-18 17:10:02 +0000
commitab3b00fbfd0afc94a4b7afd95001043636dbc1d1 (patch)
tree1c8cf053eb7c1dcf1580246f1fbbad1fe2691b17 /fdts
parent79c6c342e0abb1de2306ca51fc72794143413a07 (diff)
downloadarm-trusted-firmware-ab3b00fbfd0afc94a4b7afd95001043636dbc1d1.tar.gz
fdts: a5ds: cleanup enable-method in devicetree
Same enable method is used by all the four cores. So, make it globally for all the cores instead of adding it to individual level. Change-Id: I9b5728b0e0545c9e27160ea586009d929eb78cad Signed-off-by: Vishnu Banavath <vishnu.banavath@arm.com>
Diffstat (limited to 'fdts')
-rw-r--r--fdts/a5ds.dts5
1 files changed, 1 insertions, 4 deletions
diff --git a/fdts/a5ds.dts b/fdts/a5ds.dts
index 042b6afc5..fc8783dd8 100644
--- a/fdts/a5ds.dts
+++ b/fdts/a5ds.dts
@@ -22,31 +22,28 @@
cpus {
#address-cells = <1>;
#size-cells = <0>;
+ enable-method = "psci";
cpu@0 {
device_type = "cpu";
compatible = "arm,cortex-a5";
- enable-method = "psci";
reg = <0>;
next-level-cache = <&L2>;
};
cpu@1 {
device_type = "cpu";
compatible = "arm,cortex-a5";
- enable-method = "psci";
reg = <1>;
next-level-cache = <&L2>;
};
cpu@2 {
device_type = "cpu";
compatible = "arm,cortex-a5";
- enable-method = "psci";
reg = <2>;
next-level-cache = <&L2>;
};
cpu@3 {
device_type = "cpu";
compatible = "arm,cortex-a5";
- enable-method = "psci";
reg = <3>;
next-level-cache = <&L2>;
};