@@ -74,6 +74,8 @@ This describes the OPPs belonging to a device. This node can have following
Missing property means devices have independent clock/voltage/current lines,
but they share OPP tables.
+- opp-suspend: Phandle of the OPP to set while device is suspended.
+
* OPP Node
@@ -145,9 +147,10 @@ Example 1: Single cluster Dual-core ARM cortex A9, switch DVFS states together.
cpu0_opp_table: opp_table0 {
compatible = "operating-points-v2";
+ opp-suspend = <&suspend_opp>;
opp-shared;
- opp00 {
+ suspend_opp: opp00 {
opp-hz = <1000000000>;
opp-microvolt = <970000 975000 985000>;
opp-microamp = <70000>;
@@ -219,13 +222,14 @@ independently.
cpu_opp_table: opp_table {
compatible = "operating-points-v2";
+ opp-suspend = <&suspend_opp>;
/*
* Missing opp-shared property means CPUs switch DVFS states
* independently.
*/
- opp00 {
+ suspend_opp: opp00 {
opp-hz = <1000000000>;
opp-microvolt = <970000 975000 985000>;
opp-microamp = <70000>;
@@ -298,9 +302,10 @@ DVFS state together.
cluster0_opp: opp_table0 {
compatible = "operating-points-v2";
+ opp-suspend = <&suspend_opp0>;
opp-shared;
- opp00 {
+ suspend_opp: opp00 {
opp-hz = <1000000000>;
opp-microvolt = <970000 975000 985000>;
opp-microamp = <70000>;
@@ -323,9 +328,10 @@ DVFS state together.
cluster1_opp: opp_table1 {
compatible = "operating-points-v2";
+ opp-suspend = <&suspend_opp1>;
opp-shared;
- opp10 {
+ suspend_opp: opp10 {
opp-hz = <1300000000>;
opp-microvolt = <1045000 1050000 1055000>;
opp-microamp = <95000>;