aboutsummaryrefslogtreecommitdiff
path: root/drivers/power/regulator/regulator_common.c
diff options
context:
space:
mode:
authorPatrice Chotard <patrice.chotard@st.com>2019-08-26 13:50:31 +0200
committerTom Rini <trini@konsulko.com>2019-10-11 10:10:19 -0400
commite8e9715df2d408c57d14addff94105001c82f2ac (patch)
tree71c692efbfcf8eff2fdfaf6f853a7e9078d75dd9 /drivers/power/regulator/regulator_common.c
parent5b7a2bf318e1358f978180a51fd5a305723d165b (diff)
downloadu-boot-e8e9715df2d408c57d14addff94105001c82f2ac.zip
u-boot-e8e9715df2d408c57d14addff94105001c82f2ac.tar.gz
u-boot-e8e9715df2d408c57d14addff94105001c82f2ac.tar.bz2
regulator: fixed: Modify enable-active-high behavior
Regulator should not be enabled at probe time if regulator-boot-on property is not in the dt node. "enable-active-high" property is only used to indicate the GPIO polarity. See kernel documentation : - Documentation/devicetree/bindings/regulator/fixed-regulator.yaml - Documentation/devicetree/bindings/regulator/gpio-regulator.yaml Signed-off-by: Christophe Kerello <christophe.kerello@st.com> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'drivers/power/regulator/regulator_common.c')
-rw-r--r--drivers/power/regulator/regulator_common.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/power/regulator/regulator_common.c b/drivers/power/regulator/regulator_common.c
index 3dabbe2..2041086 100644
--- a/drivers/power/regulator/regulator_common.c
+++ b/drivers/power/regulator/regulator_common.c
@@ -12,10 +12,15 @@ int regulator_common_ofdata_to_platdata(struct udevice *dev,
struct regulator_common_platdata *dev_pdata, const char *enable_gpio_name)
{
struct gpio_desc *gpio;
+ struct dm_regulator_uclass_platdata *uc_pdata;
int flags = GPIOD_IS_OUT;
int ret;
- if (dev_read_bool(dev, "enable-active-high"))
+ uc_pdata = dev_get_uclass_platdata(dev);
+
+ if (!dev_read_bool(dev, "enable-active-high"))
+ flags |= GPIOD_ACTIVE_LOW;
+ if (uc_pdata->boot_on)
flags |= GPIOD_IS_OUT_ACTIVE;
/* Get optional enable GPIO desc */