mirror of https://gitee.com/openkylin/linux.git
ARM: tegra: cardhu-a04: Set up voltage regulators for DVFS
Set minimum and maximum voltages, and couple CPU/CORE regulators. Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
c19c631a3c
commit
c01afebd74
|
@ -103,4 +103,28 @@ vdd_bl2_reg: regulator@106 {
|
|||
gpio = <&gpio TEGRA_GPIO(DD, 0) GPIO_ACTIVE_HIGH>;
|
||||
};
|
||||
};
|
||||
|
||||
i2c@7000d000 {
|
||||
pmic: tps65911@2d {
|
||||
regulators {
|
||||
vddctrl_reg: vddctrl {
|
||||
regulator-min-microvolt = <800000>;
|
||||
regulator-max-microvolt = <1125000>;
|
||||
regulator-coupled-with = <&vddcore_reg>;
|
||||
regulator-coupled-max-spread = <300000>;
|
||||
regulator-max-step-microvolt = <100000>;
|
||||
|
||||
nvidia,tegra-cpu-regulator;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
vddcore_reg: tps62361@60 {
|
||||
regulator-coupled-with = <&vddctrl_reg>;
|
||||
regulator-coupled-max-spread = <300000>;
|
||||
regulator-max-step-microvolt = <100000>;
|
||||
|
||||
nvidia,tegra-core-regulator;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue