summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/regulator/pfuze100-regulator.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/regulator/pfuze100-regulator.c b/drivers/regulator/pfuze100-regulator.c
index 6fee588d3190..4697b8da7c5a 100644
--- a/drivers/regulator/pfuze100-regulator.c
+++ b/drivers/regulator/pfuze100-regulator.c
@@ -739,7 +739,8 @@ static void pfuze100_regulator_shutdown(struct i2c_client *client)
struct pfuze_chip *pfuze_chip;
int ret;
- if (!of_machine_is_compatible("toradex,colibri_imx6dl"))
+ if (!of_machine_is_compatible("toradex,colibri_imx6dl") &&
+ !of_machine_is_compatible("toradex,apalis_imx6q"))
return;
/* Configure all regulators to off on PMIC standby. For Colibri iMX6
@@ -782,12 +783,24 @@ static void pfuze100_regulator_shutdown(struct i2c_client *client)
dev_err(pfuze_chip->dev, "stby config failed %d\n", ret);
ret = regmap_update_bits(pfuze_chip->regmap,
+ PFUZE100_VGEN1VOL,
+ 0x20, 0x20);
+ if (ret < 0)
+ dev_err(pfuze_chip->dev, "stby vgen config failed %d\n", ret);
+
+ ret = regmap_update_bits(pfuze_chip->regmap,
PFUZE100_VGEN2VOL,
0x20, 0x20);
if (ret < 0)
dev_err(pfuze_chip->dev, "stby vgen config failed %d\n", ret);
ret = regmap_update_bits(pfuze_chip->regmap,
+ PFUZE100_VGEN3VOL,
+ 0x20, 0x20);
+ if (ret < 0)
+ dev_err(pfuze_chip->dev, "stby vgen config failed %d\n", ret);
+
+ ret = regmap_update_bits(pfuze_chip->regmap,
PFUZE100_VGEN4VOL,
0x20, 0x20);
if (ret < 0)