diff options
author | Kever Yang <kever.yang@rock-chips.com> | 2019-11-11 01:51:56 +0100 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2019-12-09 09:44:22 +0100 |
commit | 88c5a235e88bef675d75265d066ca7d1b7f1f210 (patch) | |
tree | 652697c09858efea39b7a97afaf3797bc4fc9890 | |
parent | arm64: dts: rockchip: Fix vdd_log on rk3399-roc-pc (diff) | |
download | linux-88c5a235e88bef675d75265d066ca7d1b7f1f210.tar.xz linux-88c5a235e88bef675d75265d066ca7d1b7f1f210.zip |
arm64: dts: rockchip: Fix min voltage for rk3399-firefly vdd_log
The min/max value of vdd_log is decide by pwm IO voltage and its
resistors, the rk3399-firefly board's pwm regulator circuit is designed
for IO voltage at 1.8V, while the board actually use 3.0V for IO, which
at last lead to the min-microvolt to '430mV' instead of '800mV'.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Link: https://lore.kernel.org/r/20191111005158.25070-1-kever.yang@rock-chips.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
-rw-r--r-- | arch/arm64/boot/dts/rockchip/rk3399-firefly.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts b/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts index c706db0ee9ec..92de83dd4dbc 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts +++ b/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts @@ -206,7 +206,7 @@ regulator-name = "vdd_log"; regulator-always-on; regulator-boot-on; - regulator-min-microvolt = <800000>; + regulator-min-microvolt = <430000>; regulator-max-microvolt = <1400000>; vin-supply = <&vcc_sys>; }; |