Commit a60e68f9 authored by Dmitry Osipenko's avatar Dmitry Osipenko Committed by Thierry Reding

ARM: tegra: paz00: Set up voltage regulators for DVFS

Set minimum and maximum voltages, and couple CPU/CORE/RTC regulators.
Tested-by: default avatarNicolas Chauvet <kwizart@gmail.com>
Signed-off-by: default avatarDmitry Osipenko <digetx@gmail.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 875cf30a
...@@ -337,18 +337,26 @@ sys_reg: sys { ...@@ -337,18 +337,26 @@ sys_reg: sys {
regulator-always-on; regulator-always-on;
}; };
sm0 { core_vdd_reg: sm0 {
regulator-name = "+1.2vs_sm0,vdd_core"; regulator-name = "+1.2vs_sm0,vdd_core";
regulator-min-microvolt = <1200000>; regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1200000>; regulator-max-microvolt = <1225000>;
regulator-coupled-with = <&rtc_vdd_reg &cpu_vdd_reg>;
regulator-coupled-max-spread = <170000 450000>;
regulator-always-on; regulator-always-on;
nvidia,tegra-core-regulator;
}; };
sm1 { cpu_vdd_reg: sm1 {
regulator-name = "+1.0vs_sm1,vdd_cpu"; regulator-name = "+1.0vs_sm1,vdd_cpu";
regulator-min-microvolt = <1000000>; regulator-min-microvolt = <750000>;
regulator-max-microvolt = <1000000>; regulator-max-microvolt = <1100000>;
regulator-coupled-with = <&core_vdd_reg &rtc_vdd_reg>;
regulator-coupled-max-spread = <450000 450000>;
regulator-always-on; regulator-always-on;
nvidia,tegra-cpu-regulator;
}; };
sm2_reg: sm2 { sm2_reg: sm2 {
...@@ -367,10 +375,15 @@ ldo1 { ...@@ -367,10 +375,15 @@ ldo1 {
regulator-always-on; regulator-always-on;
}; };
ldo2 { rtc_vdd_reg: ldo2 {
regulator-name = "+1.2vs_ldo2,vdd_rtc"; regulator-name = "+1.2vs_ldo2,vdd_rtc";
regulator-min-microvolt = <1200000>; regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1200000>; regulator-max-microvolt = <1225000>;
regulator-coupled-with = <&core_vdd_reg &cpu_vdd_reg>;
regulator-coupled-max-spread = <170000 450000>;
regulator-always-on;
nvidia,tegra-rtc-regulator;
}; };
ldo3 { ldo3 {
......
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