|
@@ -13,6 +13,7 @@
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
#include <linux/of_gpio.h>
|
|
|
+#include <linux/gpio/consumer.h>
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/regulator/driver.h>
|
|
@@ -459,15 +460,14 @@ static void s5m8767_regulator_config_ext_control(struct s5m8767_info *s5m8767,
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!gpio_is_valid(rdata->ext_control_gpio)) {
|
|
|
+ if (!rdata->ext_control_gpiod) {
|
|
|
dev_warn(s5m8767->dev,
|
|
|
"ext-control for %s: GPIO not valid, ignoring\n",
|
|
|
- rdata->reg_node->name);
|
|
|
+ rdata->reg_node->name);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- config->ena_gpio = rdata->ext_control_gpio;
|
|
|
- config->ena_gpio_flags = GPIOF_OUT_INIT_HIGH;
|
|
|
+ config->ena_gpiod = rdata->ext_control_gpiod;
|
|
|
}
|
|
|
|
|
|
/*
|
|
@@ -577,8 +577,14 @@ static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev,
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- rdata->ext_control_gpio = of_get_named_gpio(reg_np,
|
|
|
- "s5m8767,pmic-ext-control-gpios", 0);
|
|
|
+ rdata->ext_control_gpiod = devm_gpiod_get_from_of_node(&pdev->dev,
|
|
|
+ reg_np,
|
|
|
+ "s5m8767,pmic-ext-control-gpios",
|
|
|
+ 0,
|
|
|
+ GPIOD_OUT_HIGH,
|
|
|
+ "s5m8767");
|
|
|
+ if (IS_ERR(rdata->ext_control_gpiod))
|
|
|
+ return PTR_ERR(rdata->ext_control_gpiod);
|
|
|
|
|
|
rdata->id = i;
|
|
|
rdata->initdata = of_get_regulator_init_data(
|
|
@@ -954,10 +960,8 @@ static int s5m8767_pmic_probe(struct platform_device *pdev)
|
|
|
config.driver_data = s5m8767;
|
|
|
config.regmap = iodev->regmap_pmic;
|
|
|
config.of_node = pdata->regulators[i].reg_node;
|
|
|
- config.ena_gpio = -EINVAL;
|
|
|
- config.ena_gpio_flags = 0;
|
|
|
- config.ena_gpio_initialized = true;
|
|
|
- if (gpio_is_valid(pdata->regulators[i].ext_control_gpio))
|
|
|
+ config.ena_gpiod = NULL;
|
|
|
+ if (pdata->regulators[i].ext_control_gpiod)
|
|
|
s5m8767_regulator_config_ext_control(s5m8767,
|
|
|
&pdata->regulators[i], &config);
|
|
|
|
|
@@ -970,7 +974,7 @@ static int s5m8767_pmic_probe(struct platform_device *pdev)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
- if (gpio_is_valid(pdata->regulators[i].ext_control_gpio)) {
|
|
|
+ if (pdata->regulators[i].ext_control_gpiod) {
|
|
|
ret = s5m8767_enable_ext_control(s5m8767, rdev);
|
|
|
if (ret < 0) {
|
|
|
dev_err(s5m8767->dev,
|