mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 04:10:18 +09:00
ARM64: dts: rk3399-tb: fix up the pwm regulator node
add pwm init voltage and id for uboot. fix up the pwms node and add pwm polarity. Change-Id: I4159c97ae498411ab958c2b1e1223139ac670452 Signed-off-by: Elaine Zhang <zhangqing@rock-chips.com>
This commit is contained in:
committed by
Gerrit Code Review
parent
d5357e4dcf
commit
063e65397a
@@ -130,6 +130,16 @@
|
||||
};
|
||||
};
|
||||
|
||||
&vdd_log {
|
||||
rockchip,pwm_id= <2>;
|
||||
rockchip,pwm_voltage = <900000>;
|
||||
};
|
||||
|
||||
&vdd_center {
|
||||
rockchip,pwm_id= <3>;
|
||||
rockchip,pwm_voltage = <900000>;
|
||||
};
|
||||
|
||||
&fb {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
@@ -48,21 +48,23 @@
|
||||
|
||||
vdd_log: vdd-log {
|
||||
compatible = "pwm-regulator";
|
||||
pwms = <&pwm2 0 1000>;
|
||||
pwms = <&pwm2 0 25000 0>;
|
||||
regulator-name = "vdd_log";
|
||||
regulator-min-microvolt = <800000>;
|
||||
regulator-max-microvolt = <1400000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
vdd_center: vdd-center {
|
||||
compatible = "pwm-regulator";
|
||||
pwms = <&pwm3 0 1000>;
|
||||
pwms = <&pwm3 0 25000 0>;
|
||||
regulator-name = "vdd_center";
|
||||
regulator-min-microvolt = <800000>;
|
||||
regulator-max-microvolt = <1400000>;
|
||||
regulator-always-on;
|
||||
regulator-boot-on;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user