diff options
author | Icenowy Zheng <icenowy@aosc.io> | 2018-02-06 05:49:02 +0100 |
---|---|---|
committer | Chen-Yu Tsai <wens@csie.org> | 2018-04-20 08:39:26 +0200 |
commit | 1c72060511a46eee7166e4e3f6de689850bf5bcc (patch) | |
tree | 9e70f207aa05e36d557736b145e7f27c255714d4 /arch/arm/boot/dts/sun8i-h3-orangepi-one.dts | |
parent | ARM: dts: sun8i: h2+: add SY8113B regulator used by Orange Pi Zero board (diff) | |
download | linux-1c72060511a46eee7166e4e3f6de689850bf5bcc.tar.xz linux-1c72060511a46eee7166e4e3f6de689850bf5bcc.zip |
ARM: dts: sun8i: h3: add SY8113B regulator used by Orange Pi One board
Orange Pi One board has a SY8113B regulator, which is controlled via
GPIO and capable of outputing 1.1V when the PL6 GPIO is set to output 0
or 1.3V when the PL6 GPIO is set to input or output 1, and the output is
the power supply of the ARM cores in H3 SoC.
Add the device tree node of this regulator and set the cpu's cpu-supply
property to it.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
[wens@csie.org: rename regulator node name and label]
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Diffstat (limited to 'arch/arm/boot/dts/sun8i-h3-orangepi-one.dts')
-rw-r--r-- | arch/arm/boot/dts/sun8i-h3-orangepi-one.dts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/sun8i-h3-orangepi-one.dts b/arch/arm/boot/dts/sun8i-h3-orangepi-one.dts index 3328fe583c9b..d56ac3951078 100644 --- a/arch/arm/boot/dts/sun8i-h3-orangepi-one.dts +++ b/arch/arm/boot/dts/sun8i-h3-orangepi-one.dts @@ -99,6 +99,27 @@ gpios = <&r_pio 0 3 GPIO_ACTIVE_LOW>; }; }; + + reg_vdd_cpux: vdd-cpux-regulator { + compatible = "regulator-gpio"; + regulator-name = "vdd-cpux"; + regulator-type = "voltage"; + regulator-boot-on; + regulator-always-on; + regulator-min-microvolt = <1100000>; + regulator-max-microvolt = <1300000>; + regulator-ramp-delay = <50>; /* 4ms */ + + gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */ + enable-active-high; + gpios-states = <0x1>; + states = <1100000 0x0 + 1300000 0x1>; + }; +}; + +&cpu0 { + cpu-supply = <®_vdd_cpux>; }; &de { |