Commit a06e5c05 authored by Viresh Kumar's avatar Viresh Kumar Committed by Matthias Brugger

arm64: dts: mediatek: Add missing cooling device properties for CPUs

The cooling device properties, like "#cooling-cells" and
"dynamic-power-coefficient", should either be present for all the CPUs
of a cluster or none. If these are present only for a subset of CPUs of
a cluster then things will start falling apart as soon as the CPUs are
brought online in a different order. For example, this will happen
because the operating system looks for such properties in the CPU node
it is trying to bring up, so that it can register a cooling device.

Add such missing properties.
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarMatthias Brugger <matthias.bgg@gmail.com>
parent 34093104
...@@ -89,6 +89,7 @@ cpu1: cpu@1 { ...@@ -89,6 +89,7 @@ cpu1: cpu@1 {
<&apmixedsys CLK_APMIXED_MAIN_CORE_EN>; <&apmixedsys CLK_APMIXED_MAIN_CORE_EN>;
clock-names = "cpu", "intermediate"; clock-names = "cpu", "intermediate";
operating-points-v2 = <&cpu_opp_table>; operating-points-v2 = <&cpu_opp_table>;
#cooling-cells = <2>;
enable-method = "psci"; enable-method = "psci";
clock-frequency = <1300000000>; clock-frequency = <1300000000>;
}; };
......
...@@ -168,6 +168,7 @@ cpu1: cpu@1 { ...@@ -168,6 +168,7 @@ cpu1: cpu@1 {
reg = <0x001>; reg = <0x001>;
enable-method = "psci"; enable-method = "psci";
cpu-idle-states = <&CPU_SLEEP_0>; cpu-idle-states = <&CPU_SLEEP_0>;
#cooling-cells = <2>;
clocks = <&infracfg CLK_INFRA_CA53SEL>, clocks = <&infracfg CLK_INFRA_CA53SEL>,
<&apmixedsys CLK_APMIXED_MAINPLL>; <&apmixedsys CLK_APMIXED_MAINPLL>;
clock-names = "cpu", "intermediate"; clock-names = "cpu", "intermediate";
...@@ -193,6 +194,7 @@ cpu3: cpu@101 { ...@@ -193,6 +194,7 @@ cpu3: cpu@101 {
reg = <0x101>; reg = <0x101>;
enable-method = "psci"; enable-method = "psci";
cpu-idle-states = <&CPU_SLEEP_0>; cpu-idle-states = <&CPU_SLEEP_0>;
#cooling-cells = <2>;
clocks = <&infracfg CLK_INFRA_CA57SEL>, clocks = <&infracfg CLK_INFRA_CA57SEL>,
<&apmixedsys CLK_APMIXED_MAINPLL>; <&apmixedsys CLK_APMIXED_MAINPLL>;
clock-names = "cpu", "intermediate"; clock-names = "cpu", "intermediate";
......
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