Commit 434e8aed authored by Jon Hunter's avatar Jon Hunter Committed by Thierry Reding

arm64: tegra: Fix Jetson Nano GPU regulator

There are a few issues with the GPU regulator defined for Jetson Nano
which are:

1. The GPU regulator is a PWM based regulator and not a fixed voltage
   regulator.
2. The output voltages for the GPU regulator are not correct.
3. The regulator enable ramp delay is too short for the regulator and
   needs to be increased. 2ms should be sufficient.
4. This is the same regulator used on Jetson TX1 and so make the ramp
   delay and settling time the same as Jetson TX1.

Cc: stable@vger.kernel.org
Signed-off-by: default avatarJon Hunter <jonathanh@nvidia.com>
Fixes: 6772cd0e ("arm64: tegra: Add NVIDIA Jetson Nano Developer Kit support")
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent ece6031e
......@@ -668,17 +668,16 @@ vdd_cpu: regulator@5 {
};
vdd_gpu: regulator@6 {
compatible = "regulator-fixed";
compatible = "pwm-regulator";
reg = <6>;
pwms = <&pwm 1 4880>;
regulator-name = "VDD_GPU";
regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
regulator-enable-ramp-delay = <250>;
gpio = <&pmic 6 GPIO_ACTIVE_HIGH>;
enable-active-high;
regulator-min-microvolt = <710000>;
regulator-max-microvolt = <1320000>;
regulator-ramp-delay = <80>;
regulator-enable-ramp-delay = <2000>;
regulator-settling-time-us = <160>;
enable-gpios = <&pmic 6 GPIO_ACTIVE_HIGH>;
vin-supply = <&vdd_5v0_sys>;
};
};
......
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