ARM64: dts: rk3366: support arm64 cpuidle-dt

Change-Id: Ia5a0bf96609092c22f3bdb327cdfde6f505163c6
Signed-off-by: Tony Xie <tony.xie@rock-chips.com>
This commit is contained in:
xxx 2016-03-14 15:17:48 +08:00 committed by Huang, Tao
parent b12b3cba02
commit b4395cee0e

View File

@ -80,6 +80,7 @@ cpu0: cpu@0 {
enable-method = "psci";
clocks = <&cru ARMCLK>;
operating-points-v2 = <&cpu0_opp_table>;
cpu-idle-states = <&cpu_sleep>;
};
cpu1: cpu@1 {
@ -88,6 +89,7 @@ cpu1: cpu@1 {
reg = <0x0 0x1>;
enable-method = "psci";
operating-points-v2 = <&cpu0_opp_table>;
cpu-idle-states = <&cpu_sleep>;
};
cpu2: cpu@2 {
@ -96,6 +98,7 @@ cpu2: cpu@2 {
reg = <0x0 0x2>;
enable-method = "psci";
operating-points-v2 = <&cpu0_opp_table>;
cpu-idle-states = <&cpu_sleep>;
};
cpu3: cpu@3 {
@ -104,6 +107,19 @@ cpu3: cpu@3 {
reg = <0x0 0x3>;
enable-method = "psci";
operating-points-v2 = <&cpu0_opp_table>;
cpu-idle-states = <&cpu_sleep>;
};
idle-states {
entry-method = "psci";
cpu_sleep: cpu-sleep-0 {
compatible = "arm,idle-state";
local-timer-stop;
arm,psci-suspend-param = <0x0010000>;
entry-latency-us = <350>;
exit-latency-us = <600>;
min-residency-us = <1150>;
};
};
};