Commit e4dcb4ab authored by Lukasz Luba's avatar Lukasz Luba Committed by Krzysztof Kozlowski

ARM: dts: exynos: Add dynamic-power-coefficient to Exynos5422 CPUs

To use Energy Aware Scheduler (EAS) the Energy Model (EM) should be
registered for CPUs. Add dynamic-power-coefficient into CPU nodes which
let CPUFreq subsystem register the EM structures. This will increase
energy efficiency of big.LITTLE platforms.

The 'dynamic-power-coefficient' values have been obtained experimenting
with different workloads. The power measurements taken from big CPU
Cluster and LITTLE CPU Cluster has been compared with official documents
and synthetic workloads estimations. The effective power ratio between
Cortex-A7 and Cortex-A15 CPUs (~3x) is also aligned with documentation.
Signed-off-by: default avatarLukasz Luba <lukasz.luba@arm.com>
Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
parent 1c651356
...@@ -31,6 +31,7 @@ cpu0: cpu@100 { ...@@ -31,6 +31,7 @@ cpu0: cpu@100 {
operating-points-v2 = <&cluster_a7_opp_table>; operating-points-v2 = <&cluster_a7_opp_table>;
#cooling-cells = <2>; /* min followed by max */ #cooling-cells = <2>; /* min followed by max */
capacity-dmips-mhz = <539>; capacity-dmips-mhz = <539>;
dynamic-power-coefficient = <90>;
}; };
cpu1: cpu@101 { cpu1: cpu@101 {
...@@ -43,6 +44,7 @@ cpu1: cpu@101 { ...@@ -43,6 +44,7 @@ cpu1: cpu@101 {
operating-points-v2 = <&cluster_a7_opp_table>; operating-points-v2 = <&cluster_a7_opp_table>;
#cooling-cells = <2>; /* min followed by max */ #cooling-cells = <2>; /* min followed by max */
capacity-dmips-mhz = <539>; capacity-dmips-mhz = <539>;
dynamic-power-coefficient = <90>;
}; };
cpu2: cpu@102 { cpu2: cpu@102 {
...@@ -55,6 +57,7 @@ cpu2: cpu@102 { ...@@ -55,6 +57,7 @@ cpu2: cpu@102 {
operating-points-v2 = <&cluster_a7_opp_table>; operating-points-v2 = <&cluster_a7_opp_table>;
#cooling-cells = <2>; /* min followed by max */ #cooling-cells = <2>; /* min followed by max */
capacity-dmips-mhz = <539>; capacity-dmips-mhz = <539>;
dynamic-power-coefficient = <90>;
}; };
cpu3: cpu@103 { cpu3: cpu@103 {
...@@ -67,6 +70,7 @@ cpu3: cpu@103 { ...@@ -67,6 +70,7 @@ cpu3: cpu@103 {
operating-points-v2 = <&cluster_a7_opp_table>; operating-points-v2 = <&cluster_a7_opp_table>;
#cooling-cells = <2>; /* min followed by max */ #cooling-cells = <2>; /* min followed by max */
capacity-dmips-mhz = <539>; capacity-dmips-mhz = <539>;
dynamic-power-coefficient = <90>;
}; };
cpu4: cpu@0 { cpu4: cpu@0 {
...@@ -79,6 +83,7 @@ cpu4: cpu@0 { ...@@ -79,6 +83,7 @@ cpu4: cpu@0 {
operating-points-v2 = <&cluster_a15_opp_table>; operating-points-v2 = <&cluster_a15_opp_table>;
#cooling-cells = <2>; /* min followed by max */ #cooling-cells = <2>; /* min followed by max */
capacity-dmips-mhz = <1024>; capacity-dmips-mhz = <1024>;
dynamic-power-coefficient = <310>;
}; };
cpu5: cpu@1 { cpu5: cpu@1 {
...@@ -91,6 +96,7 @@ cpu5: cpu@1 { ...@@ -91,6 +96,7 @@ cpu5: cpu@1 {
operating-points-v2 = <&cluster_a15_opp_table>; operating-points-v2 = <&cluster_a15_opp_table>;
#cooling-cells = <2>; /* min followed by max */ #cooling-cells = <2>; /* min followed by max */
capacity-dmips-mhz = <1024>; capacity-dmips-mhz = <1024>;
dynamic-power-coefficient = <310>;
}; };
cpu6: cpu@2 { cpu6: cpu@2 {
...@@ -103,6 +109,7 @@ cpu6: cpu@2 { ...@@ -103,6 +109,7 @@ cpu6: cpu@2 {
operating-points-v2 = <&cluster_a15_opp_table>; operating-points-v2 = <&cluster_a15_opp_table>;
#cooling-cells = <2>; /* min followed by max */ #cooling-cells = <2>; /* min followed by max */
capacity-dmips-mhz = <1024>; capacity-dmips-mhz = <1024>;
dynamic-power-coefficient = <310>;
}; };
cpu7: cpu@3 { cpu7: cpu@3 {
...@@ -115,6 +122,7 @@ cpu7: cpu@3 { ...@@ -115,6 +122,7 @@ cpu7: cpu@3 {
operating-points-v2 = <&cluster_a15_opp_table>; operating-points-v2 = <&cluster_a15_opp_table>;
#cooling-cells = <2>; /* min followed by max */ #cooling-cells = <2>; /* min followed by max */
capacity-dmips-mhz = <1024>; capacity-dmips-mhz = <1024>;
dynamic-power-coefficient = <310>;
}; };
}; };
}; };
......
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