Commit 72bf80cf authored by Maíra Canal's avatar Maíra Canal Committed by Mark Brown

regulator: lp872x: replacing legacy gpio interface for gpiod

Removing all linux/gpio.h and linux/of_gpio.h dependencies and replacing
them with the gpiod interface
Signed-off-by: default avatarMaíra Canal <maira.canal@usp.br>
Message-Id: <YWma2yTyuwS5XwhY@fedora>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 636bdb5f
...@@ -10,13 +10,12 @@ ...@@ -10,13 +10,12 @@
#include <linux/i2c.h> #include <linux/i2c.h>
#include <linux/regmap.h> #include <linux/regmap.h>
#include <linux/err.h> #include <linux/err.h>
#include <linux/gpio.h> #include <linux/gpio/consumer.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/regulator/lp872x.h> #include <linux/regulator/lp872x.h>
#include <linux/regulator/driver.h> #include <linux/regulator/driver.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/of.h> #include <linux/of.h>
#include <linux/of_gpio.h>
#include <linux/regulator/of_regulator.h> #include <linux/regulator/of_regulator.h>
/* Registers : LP8720/8725 shared */ /* Registers : LP8720/8725 shared */
...@@ -250,12 +249,12 @@ static int lp872x_regulator_enable_time(struct regulator_dev *rdev) ...@@ -250,12 +249,12 @@ static int lp872x_regulator_enable_time(struct regulator_dev *rdev)
} }
static void lp872x_set_dvs(struct lp872x *lp, enum lp872x_dvs_sel dvs_sel, static void lp872x_set_dvs(struct lp872x *lp, enum lp872x_dvs_sel dvs_sel,
int gpio) struct gpio_desc *gpio)
{ {
enum lp872x_dvs_state state; enum lp872x_dvs_state state;
state = dvs_sel == SEL_V1 ? DVS_HIGH : DVS_LOW; state = dvs_sel == SEL_V1 ? DVS_HIGH : DVS_LOW;
gpio_set_value(gpio, state); gpiod_set_value(gpio, state);
lp->dvs_pin = state; lp->dvs_pin = state;
} }
...@@ -321,7 +320,7 @@ static int lp872x_buck_set_voltage_sel(struct regulator_dev *rdev, ...@@ -321,7 +320,7 @@ static int lp872x_buck_set_voltage_sel(struct regulator_dev *rdev,
u8 addr, mask = LP872X_VOUT_M; u8 addr, mask = LP872X_VOUT_M;
struct lp872x_dvs *dvs = lp->pdata ? lp->pdata->dvs : NULL; struct lp872x_dvs *dvs = lp->pdata ? lp->pdata->dvs : NULL;
if (dvs && gpio_is_valid(dvs->gpio)) if (dvs && dvs->gpio)
lp872x_set_dvs(lp, dvs->vsel, dvs->gpio); lp872x_set_dvs(lp, dvs->vsel, dvs->gpio);
addr = lp872x_select_buck_vout_addr(lp, buck); addr = lp872x_select_buck_vout_addr(lp, buck);
...@@ -675,7 +674,6 @@ static const struct regulator_desc lp8725_regulator_desc[] = { ...@@ -675,7 +674,6 @@ static const struct regulator_desc lp8725_regulator_desc[] = {
static int lp872x_init_dvs(struct lp872x *lp) static int lp872x_init_dvs(struct lp872x *lp)
{ {
int ret, gpio;
struct lp872x_dvs *dvs = lp->pdata ? lp->pdata->dvs : NULL; struct lp872x_dvs *dvs = lp->pdata ? lp->pdata->dvs : NULL;
enum lp872x_dvs_state pinstate; enum lp872x_dvs_state pinstate;
u8 mask[] = { LP8720_EXT_DVS_M, LP8725_DVS1_M | LP8725_DVS2_M }; u8 mask[] = { LP8720_EXT_DVS_M, LP8725_DVS1_M | LP8725_DVS2_M };
...@@ -684,15 +682,15 @@ static int lp872x_init_dvs(struct lp872x *lp) ...@@ -684,15 +682,15 @@ static int lp872x_init_dvs(struct lp872x *lp)
if (!dvs) if (!dvs)
goto set_default_dvs_mode; goto set_default_dvs_mode;
gpio = dvs->gpio; if (!dvs->gpio)
if (!gpio_is_valid(gpio))
goto set_default_dvs_mode; goto set_default_dvs_mode;
pinstate = dvs->init_state; pinstate = dvs->init_state;
ret = devm_gpio_request_one(lp->dev, gpio, pinstate, "LP872X DVS"); dvs->gpio = devm_gpiod_get_optional(lp->dev, "ti,dvs", pinstate);
if (ret) {
dev_err(lp->dev, "gpio request err: %d\n", ret); if (IS_ERR(dvs->gpio)) {
return ret; dev_err(lp->dev, "gpio request err: %ld\n", PTR_ERR(dvs->gpio));
return PTR_ERR(dvs->gpio);
} }
lp->dvs_pin = pinstate; lp->dvs_pin = pinstate;
...@@ -706,20 +704,17 @@ static int lp872x_init_dvs(struct lp872x *lp) ...@@ -706,20 +704,17 @@ static int lp872x_init_dvs(struct lp872x *lp)
static int lp872x_hw_enable(struct lp872x *lp) static int lp872x_hw_enable(struct lp872x *lp)
{ {
int ret, gpio;
if (!lp->pdata) if (!lp->pdata)
return -EINVAL; return -EINVAL;
gpio = lp->pdata->enable_gpio; if (!lp->pdata->enable_gpio)
if (!gpio_is_valid(gpio))
return 0; return 0;
/* Always set enable GPIO high. */ /* Always set enable GPIO high. */
ret = devm_gpio_request_one(lp->dev, gpio, GPIOF_OUT_INIT_HIGH, "LP872X EN"); lp->pdata->enable_gpio = devm_gpiod_get_optional(lp->dev, "enable", GPIOD_OUT_HIGH);
if (ret) { if (IS_ERR(lp->pdata->enable_gpio)) {
dev_err(lp->dev, "gpio request err: %d\n", ret); dev_err(lp->dev, "gpio request err: %ld\n", PTR_ERR(lp->pdata->enable_gpio));
return ret; return PTR_ERR(lp->pdata->enable_gpio);
} }
/* Each chip has a different enable delay. */ /* Each chip has a different enable delay. */
...@@ -844,13 +839,10 @@ static struct lp872x_platform_data ...@@ -844,13 +839,10 @@ static struct lp872x_platform_data
if (!pdata->dvs) if (!pdata->dvs)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
pdata->dvs->gpio = of_get_named_gpio(np, "ti,dvs-gpio", 0);
of_property_read_u8(np, "ti,dvs-vsel", (u8 *)&pdata->dvs->vsel); of_property_read_u8(np, "ti,dvs-vsel", (u8 *)&pdata->dvs->vsel);
of_property_read_u8(np, "ti,dvs-state", &dvs_state); of_property_read_u8(np, "ti,dvs-state", &dvs_state);
pdata->dvs->init_state = dvs_state ? DVS_HIGH : DVS_LOW; pdata->dvs->init_state = dvs_state ? DVS_HIGH : DVS_LOW;
pdata->enable_gpio = of_get_named_gpio(np, "enable-gpios", 0);
if (of_get_child_count(np) == 0) if (of_get_child_count(np) == 0)
goto out; goto out;
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
#include <linux/regulator/machine.h> #include <linux/regulator/machine.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/gpio.h> #include <linux/gpio/consumer.h>
#define LP872X_MAX_REGULATORS 9 #define LP872X_MAX_REGULATORS 9
...@@ -41,8 +41,8 @@ enum lp872x_regulator_id { ...@@ -41,8 +41,8 @@ enum lp872x_regulator_id {
}; };
enum lp872x_dvs_state { enum lp872x_dvs_state {
DVS_LOW = GPIOF_OUT_INIT_LOW, DVS_LOW = GPIOD_OUT_LOW,
DVS_HIGH = GPIOF_OUT_INIT_HIGH, DVS_HIGH = GPIOD_OUT_HIGH,
}; };
enum lp872x_dvs_sel { enum lp872x_dvs_sel {
...@@ -52,12 +52,12 @@ enum lp872x_dvs_sel { ...@@ -52,12 +52,12 @@ enum lp872x_dvs_sel {
/** /**
* lp872x_dvs * lp872x_dvs
* @gpio : gpio pin number for dvs control * @gpio : gpio descriptor for dvs control
* @vsel : dvs selector for buck v1 or buck v2 register * @vsel : dvs selector for buck v1 or buck v2 register
* @init_state : initial dvs pin state * @init_state : initial dvs pin state
*/ */
struct lp872x_dvs { struct lp872x_dvs {
int gpio; struct gpio_desc *gpio;
enum lp872x_dvs_sel vsel; enum lp872x_dvs_sel vsel;
enum lp872x_dvs_state init_state; enum lp872x_dvs_state init_state;
}; };
...@@ -78,14 +78,14 @@ struct lp872x_regulator_data { ...@@ -78,14 +78,14 @@ struct lp872x_regulator_data {
* @update_config : if LP872X_GENERAL_CFG register is updated, set true * @update_config : if LP872X_GENERAL_CFG register is updated, set true
* @regulator_data : platform regulator id and init data * @regulator_data : platform regulator id and init data
* @dvs : dvs data for buck voltage control * @dvs : dvs data for buck voltage control
* @enable_gpio : gpio pin number for enable control * @enable_gpio : gpio descriptor for enable control
*/ */
struct lp872x_platform_data { struct lp872x_platform_data {
u8 general_config; u8 general_config;
bool update_config; bool update_config;
struct lp872x_regulator_data regulator_data[LP872X_MAX_REGULATORS]; struct lp872x_regulator_data regulator_data[LP872X_MAX_REGULATORS];
struct lp872x_dvs *dvs; struct lp872x_dvs *dvs;
int enable_gpio; struct gpio_desc *enable_gpio;
}; };
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment