rockchip: dts: rk3399-puma: fix the modelling of BIOS_DISABLE

The fixed regulator for overriding BIOS_DISABLE had been modelling
backwards (i.e. the GPIO polarity and the enable-active-low/high
property had both been inverted), causing the 'regulator' command
to always print/expect 'disabled'/'enabled' backwards.

This fixes the mix-up and models it correctly:
 * the GPIO is low-active
 * the regulator should be enabled (enable-active-high) during
   boot-on initialisation

Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Tested-by: Klaus Goger <klaus.goger@theobroma-systems.com>
This commit is contained in:
Philipp Tomsich 2017-11-06 23:02:51 +01:00
parent be942f2e0d
commit df1e6212f9
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@
compatible = "regulator-fixed"; compatible = "regulator-fixed";
u-boot,dm-pre-reloc; u-boot,dm-pre-reloc;
regulator-name = "bios_enable"; regulator-name = "bios_enable";
enable-active-low; enable-active-high;
gpio = <&gpio3 29 GPIO_ACTIVE_HIGH>; gpio = <&gpio3 29 GPIO_ACTIVE_LOW>;
regulator-always-on; regulator-always-on;
regulator-boot-on; regulator-boot-on;
regulator-min-microvolt = <1800000>; regulator-min-microvolt = <1800000>;