Merge remote-tracking branches 'regulator/topic/const', 'regulator/topic/lm363x', 'regulator/topic/lockdep' and 'regulator/topic/lp872x' into regulator-next
This commit is contained in:
commit
8bd31df8de
@ -0,0 +1,34 @@
|
||||
TI LMU LM363x regulator device tree bindings
|
||||
|
||||
LM363x regulator driver supports LM3631 and LM3632.
|
||||
LM3631 has five regulators and LM3632 supports three regulators.
|
||||
|
||||
Required property:
|
||||
- compatible: "ti,lm363x-regulator"
|
||||
|
||||
Optional properties:
|
||||
LM3632 has external enable pins for two LDOs.
|
||||
- ti,lcm-en1-gpio: A GPIO specifier for Vpos control pin.
|
||||
- ti,lcm-en2-gpio: A GPIO specifier for Vneg control pin.
|
||||
|
||||
Child nodes:
|
||||
LM3631
|
||||
- vboost
|
||||
- vcont
|
||||
- voref
|
||||
- vpos
|
||||
- vneg
|
||||
|
||||
LM3632
|
||||
- vboost
|
||||
- vpos
|
||||
- vneg
|
||||
|
||||
Optional properties of a child node:
|
||||
Each sub-node should contain the constraints and initialization.
|
||||
Please refer to [1].
|
||||
|
||||
Examples: Please refer to ti-lmu dt-bindings [2].
|
||||
|
||||
[1] ../regulator/regulator.txt
|
||||
[2] ../mfd/ti-lmu.txt
|
@ -274,6 +274,15 @@ config REGULATOR_ISL6271A
|
||||
help
|
||||
This driver supports ISL6271A voltage regulator chip.
|
||||
|
||||
config REGULATOR_LM363X
|
||||
tristate "TI LM363X voltage regulators"
|
||||
depends on MFD_TI_LMU
|
||||
help
|
||||
This driver supports LM3631 and LM3632 voltage regulators for
|
||||
the LCD bias.
|
||||
One boost output voltage is configurable and always on.
|
||||
Other LDOs are used for the display module.
|
||||
|
||||
config REGULATOR_LP3971
|
||||
tristate "National Semiconductors LP3971 PMIC regulator driver"
|
||||
depends on I2C
|
||||
|
@ -36,6 +36,7 @@ obj-$(CONFIG_REGULATOR_GPIO) += gpio-regulator.o
|
||||
obj-$(CONFIG_REGULATOR_HI6421) += hi6421-regulator.o
|
||||
obj-$(CONFIG_REGULATOR_ISL6271A) += isl6271a-regulator.o
|
||||
obj-$(CONFIG_REGULATOR_ISL9305) += isl9305.o
|
||||
obj-$(CONFIG_REGULATOR_LM363X) += lm363x-regulator.o
|
||||
obj-$(CONFIG_REGULATOR_LP3971) += lp3971.o
|
||||
obj-$(CONFIG_REGULATOR_LP3972) += lp3972.o
|
||||
obj-$(CONFIG_REGULATOR_LP872X) += lp872x.o
|
||||
|
@ -132,6 +132,14 @@ static bool have_full_constraints(void)
|
||||
return has_full_constraints || of_have_populated_dt();
|
||||
}
|
||||
|
||||
static inline struct regulator_dev *rdev_get_supply(struct regulator_dev *rdev)
|
||||
{
|
||||
if (rdev && rdev->supply)
|
||||
return rdev->supply->rdev;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* regulator_lock_supply - lock a regulator and its supplies
|
||||
* @rdev: regulator source
|
||||
@ -140,7 +148,7 @@ static void regulator_lock_supply(struct regulator_dev *rdev)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; rdev->supply; rdev = rdev->supply->rdev, i++)
|
||||
for (i = 0; rdev; rdev = rdev_get_supply(rdev), i++)
|
||||
mutex_lock_nested(&rdev->mutex, i);
|
||||
}
|
||||
|
||||
|
@ -257,7 +257,7 @@ static const struct regulator_linear_range da9034_ldo12_ranges[] = {
|
||||
REGULATOR_LINEAR_RANGE(2700000, 8, 15, 50000),
|
||||
};
|
||||
|
||||
static struct regulator_ops da903x_regulator_ldo_ops = {
|
||||
static const struct regulator_ops da903x_regulator_ldo_ops = {
|
||||
.set_voltage_sel = da903x_set_voltage_sel,
|
||||
.get_voltage_sel = da903x_get_voltage_sel,
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
@ -268,7 +268,7 @@ static struct regulator_ops da903x_regulator_ldo_ops = {
|
||||
};
|
||||
|
||||
/* NOTE: this is dedicated for the insane DA9030 LDO14 */
|
||||
static struct regulator_ops da9030_regulator_ldo14_ops = {
|
||||
static const struct regulator_ops da9030_regulator_ldo14_ops = {
|
||||
.set_voltage_sel = da903x_set_voltage_sel,
|
||||
.get_voltage_sel = da903x_get_voltage_sel,
|
||||
.list_voltage = da9030_list_ldo14_voltage,
|
||||
@ -279,7 +279,7 @@ static struct regulator_ops da9030_regulator_ldo14_ops = {
|
||||
};
|
||||
|
||||
/* NOTE: this is dedicated for the DA9030 LDO1 and LDO15 that have locks */
|
||||
static struct regulator_ops da9030_regulator_ldo1_15_ops = {
|
||||
static const struct regulator_ops da9030_regulator_ldo1_15_ops = {
|
||||
.set_voltage_sel = da9030_set_ldo1_15_voltage_sel,
|
||||
.get_voltage_sel = da903x_get_voltage_sel,
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
@ -289,7 +289,7 @@ static struct regulator_ops da9030_regulator_ldo1_15_ops = {
|
||||
.is_enabled = da903x_is_enabled,
|
||||
};
|
||||
|
||||
static struct regulator_ops da9034_regulator_dvc_ops = {
|
||||
static const struct regulator_ops da9034_regulator_dvc_ops = {
|
||||
.set_voltage_sel = da9034_set_dvc_voltage_sel,
|
||||
.get_voltage_sel = da903x_get_voltage_sel,
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
@ -300,7 +300,7 @@ static struct regulator_ops da9034_regulator_dvc_ops = {
|
||||
};
|
||||
|
||||
/* NOTE: this is dedicated for the insane LDO12 */
|
||||
static struct regulator_ops da9034_regulator_ldo12_ops = {
|
||||
static const struct regulator_ops da9034_regulator_ldo12_ops = {
|
||||
.set_voltage_sel = da903x_set_voltage_sel,
|
||||
.get_voltage_sel = da903x_get_voltage_sel,
|
||||
.list_voltage = regulator_list_voltage_linear_range,
|
||||
|
@ -265,7 +265,7 @@ static int da9052_regulator_set_voltage_time_sel(struct regulator_dev *rdev,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static struct regulator_ops da9052_dcdc_ops = {
|
||||
static const struct regulator_ops da9052_dcdc_ops = {
|
||||
.get_current_limit = da9052_dcdc_get_current_limit,
|
||||
.set_current_limit = da9052_dcdc_set_current_limit,
|
||||
|
||||
@ -279,7 +279,7 @@ static struct regulator_ops da9052_dcdc_ops = {
|
||||
.disable = regulator_disable_regmap,
|
||||
};
|
||||
|
||||
static struct regulator_ops da9052_ldo_ops = {
|
||||
static const struct regulator_ops da9052_ldo_ops = {
|
||||
.list_voltage = da9052_list_voltage,
|
||||
.map_voltage = da9052_map_voltage,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
|
@ -324,7 +324,7 @@ static int da9055_suspend_disable(struct regulator_dev *rdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct regulator_ops da9055_buck_ops = {
|
||||
static const struct regulator_ops da9055_buck_ops = {
|
||||
.get_mode = da9055_buck_get_mode,
|
||||
.set_mode = da9055_buck_set_mode,
|
||||
|
||||
@ -345,7 +345,7 @@ static struct regulator_ops da9055_buck_ops = {
|
||||
.set_suspend_mode = da9055_buck_set_mode,
|
||||
};
|
||||
|
||||
static struct regulator_ops da9055_ldo_ops = {
|
||||
static const struct regulator_ops da9055_ldo_ops = {
|
||||
.get_mode = da9055_ldo_get_mode,
|
||||
.set_mode = da9055_ldo_set_mode,
|
||||
|
||||
|
@ -371,7 +371,7 @@ static int da9062_ldo_set_suspend_mode(struct regulator_dev *rdev,
|
||||
return regmap_field_write(regl->suspend_sleep, val);
|
||||
}
|
||||
|
||||
static struct regulator_ops da9062_buck_ops = {
|
||||
static const struct regulator_ops da9062_buck_ops = {
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
@ -389,7 +389,7 @@ static struct regulator_ops da9062_buck_ops = {
|
||||
.set_suspend_mode = da9062_buck_set_suspend_mode,
|
||||
};
|
||||
|
||||
static struct regulator_ops da9062_ldo_ops = {
|
||||
static const struct regulator_ops da9062_ldo_ops = {
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
|
@ -427,7 +427,7 @@ static int da9063_ldo_set_suspend_mode(struct regulator_dev *rdev, unsigned mode
|
||||
return regmap_field_write(regl->suspend_sleep, val);
|
||||
}
|
||||
|
||||
static struct regulator_ops da9063_buck_ops = {
|
||||
static const struct regulator_ops da9063_buck_ops = {
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
@ -445,7 +445,7 @@ static struct regulator_ops da9063_buck_ops = {
|
||||
.set_suspend_mode = da9063_buck_set_suspend_mode,
|
||||
};
|
||||
|
||||
static struct regulator_ops da9063_ldo_ops = {
|
||||
static const struct regulator_ops da9063_ldo_ops = {
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
|
@ -46,7 +46,7 @@ static int da9210_set_current_limit(struct regulator_dev *rdev, int min_uA,
|
||||
int max_uA);
|
||||
static int da9210_get_current_limit(struct regulator_dev *rdev);
|
||||
|
||||
static struct regulator_ops da9210_buck_ops = {
|
||||
static const struct regulator_ops da9210_buck_ops = {
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
|
@ -219,7 +219,7 @@ static int da9211_get_current_limit(struct regulator_dev *rdev)
|
||||
return current_limits[data];
|
||||
}
|
||||
|
||||
static struct regulator_ops da9211_buck_ops = {
|
||||
static const struct regulator_ops da9211_buck_ops = {
|
||||
.get_mode = da9211_buck_get_mode,
|
||||
.set_mode = da9211_buck_set_mode,
|
||||
.enable = regulator_enable_regmap,
|
||||
|
291
drivers/regulator/lm363x-regulator.c
Normal file
291
drivers/regulator/lm363x-regulator.c
Normal file
@ -0,0 +1,291 @@
|
||||
/*
|
||||
* TI LM363X Regulator Driver
|
||||
*
|
||||
* Copyright 2015 Texas Instruments
|
||||
*
|
||||
* Author: Milo Kim <milo.kim@ti.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*/
|
||||
|
||||
#include <linux/err.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/mfd/ti-lmu.h>
|
||||
#include <linux/mfd/ti-lmu-register.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_gpio.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/regulator/driver.h>
|
||||
#include <linux/regulator/of_regulator.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
/* LM3631 */
|
||||
#define LM3631_BOOST_VSEL_MAX 0x25
|
||||
#define LM3631_LDO_VSEL_MAX 0x28
|
||||
#define LM3631_CONT_VSEL_MAX 0x03
|
||||
#define LM3631_VBOOST_MIN 4500000
|
||||
#define LM3631_VCONT_MIN 1800000
|
||||
#define LM3631_VLDO_MIN 4000000
|
||||
#define ENABLE_TIME_USEC 1000
|
||||
|
||||
/* LM3632 */
|
||||
#define LM3632_BOOST_VSEL_MAX 0x26
|
||||
#define LM3632_LDO_VSEL_MAX 0x29
|
||||
#define LM3632_VBOOST_MIN 4500000
|
||||
#define LM3632_VLDO_MIN 4000000
|
||||
|
||||
/* Common */
|
||||
#define LM363X_STEP_50mV 50000
|
||||
#define LM363X_STEP_500mV 500000
|
||||
|
||||
static const int ldo_cont_enable_time[] = {
|
||||
0, 2000, 5000, 10000, 20000, 50000, 100000, 200000,
|
||||
};
|
||||
|
||||
static int lm363x_regulator_enable_time(struct regulator_dev *rdev)
|
||||
{
|
||||
enum lm363x_regulator_id id = rdev_get_id(rdev);
|
||||
u8 val, addr, mask;
|
||||
|
||||
switch (id) {
|
||||
case LM3631_LDO_CONT:
|
||||
addr = LM3631_REG_ENTIME_VCONT;
|
||||
mask = LM3631_ENTIME_CONT_MASK;
|
||||
break;
|
||||
case LM3631_LDO_OREF:
|
||||
addr = LM3631_REG_ENTIME_VOREF;
|
||||
mask = LM3631_ENTIME_MASK;
|
||||
break;
|
||||
case LM3631_LDO_POS:
|
||||
addr = LM3631_REG_ENTIME_VPOS;
|
||||
mask = LM3631_ENTIME_MASK;
|
||||
break;
|
||||
case LM3631_LDO_NEG:
|
||||
addr = LM3631_REG_ENTIME_VNEG;
|
||||
mask = LM3631_ENTIME_MASK;
|
||||
break;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (regmap_read(rdev->regmap, addr, (unsigned int *)&val))
|
||||
return -EINVAL;
|
||||
|
||||
val = (val & mask) >> LM3631_ENTIME_SHIFT;
|
||||
|
||||
if (id == LM3631_LDO_CONT)
|
||||
return ldo_cont_enable_time[val];
|
||||
else
|
||||
return ENABLE_TIME_USEC * val;
|
||||
}
|
||||
|
||||
static struct regulator_ops lm363x_boost_voltage_table_ops = {
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
};
|
||||
|
||||
static struct regulator_ops lm363x_regulator_voltage_table_ops = {
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
.enable_time = lm363x_regulator_enable_time,
|
||||
};
|
||||
|
||||
static const struct regulator_desc lm363x_regulator_desc[] = {
|
||||
/* LM3631 */
|
||||
{
|
||||
.name = "vboost",
|
||||
.of_match = "vboost",
|
||||
.id = LM3631_BOOST,
|
||||
.ops = &lm363x_boost_voltage_table_ops,
|
||||
.n_voltages = LM3631_BOOST_VSEL_MAX + 1,
|
||||
.min_uV = LM3631_VBOOST_MIN,
|
||||
.uV_step = LM363X_STEP_50mV,
|
||||
.type = REGULATOR_VOLTAGE,
|
||||
.owner = THIS_MODULE,
|
||||
.vsel_reg = LM3631_REG_VOUT_BOOST,
|
||||
.vsel_mask = LM3631_VOUT_MASK,
|
||||
},
|
||||
{
|
||||
.name = "ldo_cont",
|
||||
.of_match = "vcont",
|
||||
.id = LM3631_LDO_CONT,
|
||||
.ops = &lm363x_regulator_voltage_table_ops,
|
||||
.n_voltages = LM3631_CONT_VSEL_MAX + 1,
|
||||
.min_uV = LM3631_VCONT_MIN,
|
||||
.uV_step = LM363X_STEP_500mV,
|
||||
.type = REGULATOR_VOLTAGE,
|
||||
.owner = THIS_MODULE,
|
||||
.vsel_reg = LM3631_REG_VOUT_CONT,
|
||||
.vsel_mask = LM3631_VOUT_CONT_MASK,
|
||||
.enable_reg = LM3631_REG_LDO_CTRL2,
|
||||
.enable_mask = LM3631_EN_CONT_MASK,
|
||||
},
|
||||
{
|
||||
.name = "ldo_oref",
|
||||
.of_match = "voref",
|
||||
.id = LM3631_LDO_OREF,
|
||||
.ops = &lm363x_regulator_voltage_table_ops,
|
||||
.n_voltages = LM3631_LDO_VSEL_MAX + 1,
|
||||
.min_uV = LM3631_VLDO_MIN,
|
||||
.uV_step = LM363X_STEP_50mV,
|
||||
.type = REGULATOR_VOLTAGE,
|
||||
.owner = THIS_MODULE,
|
||||
.vsel_reg = LM3631_REG_VOUT_OREF,
|
||||
.vsel_mask = LM3631_VOUT_MASK,
|
||||
.enable_reg = LM3631_REG_LDO_CTRL1,
|
||||
.enable_mask = LM3631_EN_OREF_MASK,
|
||||
},
|
||||
{
|
||||
.name = "ldo_vpos",
|
||||
.of_match = "vpos",
|
||||
.id = LM3631_LDO_POS,
|
||||
.ops = &lm363x_regulator_voltage_table_ops,
|
||||
.n_voltages = LM3631_LDO_VSEL_MAX + 1,
|
||||
.min_uV = LM3631_VLDO_MIN,
|
||||
.uV_step = LM363X_STEP_50mV,
|
||||
.type = REGULATOR_VOLTAGE,
|
||||
.owner = THIS_MODULE,
|
||||
.vsel_reg = LM3631_REG_VOUT_POS,
|
||||
.vsel_mask = LM3631_VOUT_MASK,
|
||||
.enable_reg = LM3631_REG_LDO_CTRL1,
|
||||
.enable_mask = LM3631_EN_VPOS_MASK,
|
||||
},
|
||||
{
|
||||
.name = "ldo_vneg",
|
||||
.of_match = "vneg",
|
||||
.id = LM3631_LDO_NEG,
|
||||
.ops = &lm363x_regulator_voltage_table_ops,
|
||||
.n_voltages = LM3631_LDO_VSEL_MAX + 1,
|
||||
.min_uV = LM3631_VLDO_MIN,
|
||||
.uV_step = LM363X_STEP_50mV,
|
||||
.type = REGULATOR_VOLTAGE,
|
||||
.owner = THIS_MODULE,
|
||||
.vsel_reg = LM3631_REG_VOUT_NEG,
|
||||
.vsel_mask = LM3631_VOUT_MASK,
|
||||
.enable_reg = LM3631_REG_LDO_CTRL1,
|
||||
.enable_mask = LM3631_EN_VNEG_MASK,
|
||||
},
|
||||
/* LM3632 */
|
||||
{
|
||||
.name = "vboost",
|
||||
.of_match = "vboost",
|
||||
.id = LM3632_BOOST,
|
||||
.ops = &lm363x_boost_voltage_table_ops,
|
||||
.n_voltages = LM3632_BOOST_VSEL_MAX + 1,
|
||||
.min_uV = LM3632_VBOOST_MIN,
|
||||
.uV_step = LM363X_STEP_50mV,
|
||||
.type = REGULATOR_VOLTAGE,
|
||||
.owner = THIS_MODULE,
|
||||
.vsel_reg = LM3632_REG_VOUT_BOOST,
|
||||
.vsel_mask = LM3632_VOUT_MASK,
|
||||
},
|
||||
{
|
||||
.name = "ldo_vpos",
|
||||
.of_match = "vpos",
|
||||
.id = LM3632_LDO_POS,
|
||||
.ops = &lm363x_regulator_voltage_table_ops,
|
||||
.n_voltages = LM3632_LDO_VSEL_MAX + 1,
|
||||
.min_uV = LM3632_VLDO_MIN,
|
||||
.uV_step = LM363X_STEP_50mV,
|
||||
.type = REGULATOR_VOLTAGE,
|
||||
.owner = THIS_MODULE,
|
||||
.vsel_reg = LM3632_REG_VOUT_POS,
|
||||
.vsel_mask = LM3632_VOUT_MASK,
|
||||
.enable_reg = LM3632_REG_BIAS_CONFIG,
|
||||
.enable_mask = LM3632_EN_VPOS_MASK,
|
||||
},
|
||||
{
|
||||
.name = "ldo_vneg",
|
||||
.of_match = "vneg",
|
||||
.id = LM3632_LDO_NEG,
|
||||
.ops = &lm363x_regulator_voltage_table_ops,
|
||||
.n_voltages = LM3632_LDO_VSEL_MAX + 1,
|
||||
.min_uV = LM3632_VLDO_MIN,
|
||||
.uV_step = LM363X_STEP_50mV,
|
||||
.type = REGULATOR_VOLTAGE,
|
||||
.owner = THIS_MODULE,
|
||||
.vsel_reg = LM3632_REG_VOUT_NEG,
|
||||
.vsel_mask = LM3632_VOUT_MASK,
|
||||
.enable_reg = LM3632_REG_BIAS_CONFIG,
|
||||
.enable_mask = LM3632_EN_VNEG_MASK,
|
||||
},
|
||||
};
|
||||
|
||||
static int lm363x_regulator_of_get_enable_gpio(struct device_node *np, int id)
|
||||
{
|
||||
/*
|
||||
* Check LCM_EN1/2_GPIO is configured.
|
||||
* Those pins are used for enabling VPOS/VNEG LDOs.
|
||||
*/
|
||||
switch (id) {
|
||||
case LM3632_LDO_POS:
|
||||
return of_get_named_gpio(np, "ti,lcm-en1-gpio", 0);
|
||||
case LM3632_LDO_NEG:
|
||||
return of_get_named_gpio(np, "ti,lcm-en2-gpio", 0);
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
static int lm363x_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct ti_lmu *lmu = dev_get_drvdata(pdev->dev.parent);
|
||||
struct regmap *regmap = lmu->regmap;
|
||||
struct regulator_config cfg = { };
|
||||
struct regulator_dev *rdev;
|
||||
struct device *dev = &pdev->dev;
|
||||
int id = pdev->id;
|
||||
int ret, ena_gpio;
|
||||
|
||||
cfg.dev = dev;
|
||||
cfg.regmap = regmap;
|
||||
|
||||
/*
|
||||
* LM3632 LDOs can be controlled by external pin.
|
||||
* Register update is required if the pin is used.
|
||||
*/
|
||||
ena_gpio = lm363x_regulator_of_get_enable_gpio(dev->of_node, id);
|
||||
if (gpio_is_valid(ena_gpio)) {
|
||||
cfg.ena_gpio = ena_gpio;
|
||||
cfg.ena_gpio_flags = GPIOF_OUT_INIT_LOW;
|
||||
|
||||
ret = regmap_update_bits(regmap, LM3632_REG_BIAS_CONFIG,
|
||||
LM3632_EXT_EN_MASK,
|
||||
LM3632_EXT_EN_MASK);
|
||||
if (ret) {
|
||||
dev_err(dev, "External pin err: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
rdev = devm_regulator_register(dev, &lm363x_regulator_desc[id], &cfg);
|
||||
if (IS_ERR(rdev)) {
|
||||
ret = PTR_ERR(rdev);
|
||||
dev_err(dev, "[%d] regulator register err: %d\n", id, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct platform_driver lm363x_regulator_driver = {
|
||||
.probe = lm363x_regulator_probe,
|
||||
.driver = {
|
||||
.name = "lm363x-regulator",
|
||||
},
|
||||
};
|
||||
|
||||
module_platform_driver(lm363x_regulator_driver);
|
||||
|
||||
MODULE_DESCRIPTION("TI LM363X Regulator Driver");
|
||||
MODULE_AUTHOR("Milo Kim");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_ALIAS("platform:lm363x-regulator");
|
@ -108,7 +108,6 @@ struct lp872x {
|
||||
struct lp872x_platform_data *pdata;
|
||||
int num_regulators;
|
||||
enum lp872x_dvs_state dvs_pin;
|
||||
int dvs_gpio;
|
||||
};
|
||||
|
||||
/* LP8720/LP8725 shared voltage table for LDOs */
|
||||
@ -520,6 +519,7 @@ static struct regulator_ops lp8725_buck_ops = {
|
||||
static struct regulator_desc lp8720_regulator_desc[] = {
|
||||
{
|
||||
.name = "ldo1",
|
||||
.of_match = of_match_ptr("ldo1"),
|
||||
.id = LP8720_ID_LDO1,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -533,6 +533,7 @@ static struct regulator_desc lp8720_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "ldo2",
|
||||
.of_match = of_match_ptr("ldo2"),
|
||||
.id = LP8720_ID_LDO2,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -546,6 +547,7 @@ static struct regulator_desc lp8720_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "ldo3",
|
||||
.of_match = of_match_ptr("ldo3"),
|
||||
.id = LP8720_ID_LDO3,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -559,6 +561,7 @@ static struct regulator_desc lp8720_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "ldo4",
|
||||
.of_match = of_match_ptr("ldo4"),
|
||||
.id = LP8720_ID_LDO4,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp8720_ldo4_vtbl),
|
||||
@ -572,6 +575,7 @@ static struct regulator_desc lp8720_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "ldo5",
|
||||
.of_match = of_match_ptr("ldo5"),
|
||||
.id = LP8720_ID_LDO5,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -585,6 +589,7 @@ static struct regulator_desc lp8720_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "buck",
|
||||
.of_match = of_match_ptr("buck"),
|
||||
.id = LP8720_ID_BUCK,
|
||||
.ops = &lp8720_buck_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp8720_buck_vtbl),
|
||||
@ -599,6 +604,7 @@ static struct regulator_desc lp8720_regulator_desc[] = {
|
||||
static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
{
|
||||
.name = "ldo1",
|
||||
.of_match = of_match_ptr("ldo1"),
|
||||
.id = LP8725_ID_LDO1,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -612,6 +618,7 @@ static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "ldo2",
|
||||
.of_match = of_match_ptr("ldo2"),
|
||||
.id = LP8725_ID_LDO2,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -625,6 +632,7 @@ static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "ldo3",
|
||||
.of_match = of_match_ptr("ldo3"),
|
||||
.id = LP8725_ID_LDO3,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -638,6 +646,7 @@ static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "ldo4",
|
||||
.of_match = of_match_ptr("ldo4"),
|
||||
.id = LP8725_ID_LDO4,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -651,6 +660,7 @@ static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "ldo5",
|
||||
.of_match = of_match_ptr("ldo5"),
|
||||
.id = LP8725_ID_LDO5,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp872x_ldo_vtbl),
|
||||
@ -664,6 +674,7 @@ static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "lilo1",
|
||||
.of_match = of_match_ptr("lilo1"),
|
||||
.id = LP8725_ID_LILO1,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp8725_lilo_vtbl),
|
||||
@ -677,6 +688,7 @@ static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "lilo2",
|
||||
.of_match = of_match_ptr("lilo2"),
|
||||
.id = LP8725_ID_LILO2,
|
||||
.ops = &lp872x_ldo_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp8725_lilo_vtbl),
|
||||
@ -690,6 +702,7 @@ static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "buck1",
|
||||
.of_match = of_match_ptr("buck1"),
|
||||
.id = LP8725_ID_BUCK1,
|
||||
.ops = &lp8725_buck_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp8725_buck_vtbl),
|
||||
@ -701,6 +714,7 @@ static struct regulator_desc lp8725_regulator_desc[] = {
|
||||
},
|
||||
{
|
||||
.name = "buck2",
|
||||
.of_match = of_match_ptr("buck2"),
|
||||
.id = LP8725_ID_BUCK2,
|
||||
.ops = &lp8725_buck_ops,
|
||||
.n_voltages = ARRAY_SIZE(lp8725_buck_vtbl),
|
||||
@ -737,7 +751,6 @@ static int lp872x_init_dvs(struct lp872x *lp)
|
||||
}
|
||||
|
||||
lp->dvs_pin = pinstate;
|
||||
lp->dvs_gpio = gpio;
|
||||
|
||||
return 0;
|
||||
|
||||
|
@ -365,7 +365,7 @@ static int wm831x_buckv_get_current_limit(struct regulator_dev *rdev)
|
||||
return wm831x_dcdc_ilim[val];
|
||||
}
|
||||
|
||||
static struct regulator_ops wm831x_buckv_ops = {
|
||||
static const struct regulator_ops wm831x_buckv_ops = {
|
||||
.set_voltage_sel = wm831x_buckv_set_voltage_sel,
|
||||
.get_voltage_sel = wm831x_buckv_get_voltage_sel,
|
||||
.list_voltage = wm831x_buckv_list_voltage,
|
||||
@ -585,7 +585,7 @@ static int wm831x_buckp_set_suspend_voltage(struct regulator_dev *rdev, int uV)
|
||||
return wm831x_set_bits(wm831x, reg, WM831X_DC3_ON_VSEL_MASK, sel);
|
||||
}
|
||||
|
||||
static struct regulator_ops wm831x_buckp_ops = {
|
||||
static const struct regulator_ops wm831x_buckp_ops = {
|
||||
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
@ -725,7 +725,7 @@ static int wm831x_boostp_get_status(struct regulator_dev *rdev)
|
||||
return REGULATOR_STATUS_OFF;
|
||||
}
|
||||
|
||||
static struct regulator_ops wm831x_boostp_ops = {
|
||||
static const struct regulator_ops wm831x_boostp_ops = {
|
||||
.get_status = wm831x_boostp_get_status,
|
||||
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
@ -818,7 +818,7 @@ static struct platform_driver wm831x_boostp_driver = {
|
||||
|
||||
#define WM831X_EPE_BASE 6
|
||||
|
||||
static struct regulator_ops wm831x_epe_ops = {
|
||||
static const struct regulator_ops wm831x_epe_ops = {
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
|
@ -128,7 +128,7 @@ static int wm831x_isink_get_current(struct regulator_dev *rdev)
|
||||
return wm831x_isinkv_values[ret];
|
||||
}
|
||||
|
||||
static struct regulator_ops wm831x_isink_ops = {
|
||||
static const struct regulator_ops wm831x_isink_ops = {
|
||||
.is_enabled = wm831x_isink_is_enabled,
|
||||
.enable = wm831x_isink_enable,
|
||||
.disable = wm831x_isink_disable,
|
||||
|
@ -198,7 +198,7 @@ static unsigned int wm831x_gp_ldo_get_optimum_mode(struct regulator_dev *rdev,
|
||||
}
|
||||
|
||||
|
||||
static struct regulator_ops wm831x_gp_ldo_ops = {
|
||||
static const struct regulator_ops wm831x_gp_ldo_ops = {
|
||||
.list_voltage = regulator_list_voltage_linear_range,
|
||||
.map_voltage = regulator_map_voltage_linear_range,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
@ -409,7 +409,7 @@ static int wm831x_aldo_get_status(struct regulator_dev *rdev)
|
||||
return regulator_mode_to_status(ret);
|
||||
}
|
||||
|
||||
static struct regulator_ops wm831x_aldo_ops = {
|
||||
static const struct regulator_ops wm831x_aldo_ops = {
|
||||
.list_voltage = regulator_list_voltage_linear_range,
|
||||
.map_voltage = regulator_map_voltage_linear_range,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
@ -557,7 +557,7 @@ static int wm831x_alive_ldo_get_status(struct regulator_dev *rdev)
|
||||
return REGULATOR_STATUS_OFF;
|
||||
}
|
||||
|
||||
static struct regulator_ops wm831x_alive_ldo_ops = {
|
||||
static const struct regulator_ops wm831x_alive_ldo_ops = {
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
.map_voltage = regulator_map_voltage_linear,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
|
@ -941,7 +941,7 @@ static unsigned int wm8350_dcdc_get_optimum_mode(struct regulator_dev *rdev,
|
||||
return mode;
|
||||
}
|
||||
|
||||
static struct regulator_ops wm8350_dcdc_ops = {
|
||||
static const struct regulator_ops wm8350_dcdc_ops = {
|
||||
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
@ -958,7 +958,7 @@ static struct regulator_ops wm8350_dcdc_ops = {
|
||||
.set_suspend_mode = wm8350_dcdc_set_suspend_mode,
|
||||
};
|
||||
|
||||
static struct regulator_ops wm8350_dcdc2_5_ops = {
|
||||
static const struct regulator_ops wm8350_dcdc2_5_ops = {
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
@ -966,7 +966,7 @@ static struct regulator_ops wm8350_dcdc2_5_ops = {
|
||||
.set_suspend_disable = wm8350_dcdc25_set_suspend_disable,
|
||||
};
|
||||
|
||||
static struct regulator_ops wm8350_ldo_ops = {
|
||||
static const struct regulator_ops wm8350_ldo_ops = {
|
||||
.map_voltage = regulator_map_voltage_linear_range,
|
||||
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
@ -980,7 +980,7 @@ static struct regulator_ops wm8350_ldo_ops = {
|
||||
.set_suspend_disable = wm8350_ldo_set_suspend_disable,
|
||||
};
|
||||
|
||||
static struct regulator_ops wm8350_isink_ops = {
|
||||
static const struct regulator_ops wm8350_isink_ops = {
|
||||
.set_current_limit = wm8350_isink_set_current,
|
||||
.get_current_limit = wm8350_isink_get_current,
|
||||
.enable = wm8350_isink_enable,
|
||||
|
@ -24,7 +24,7 @@ static const struct regulator_linear_range wm8400_ldo_ranges[] = {
|
||||
REGULATOR_LINEAR_RANGE(1700000, 15, 31, 100000),
|
||||
};
|
||||
|
||||
static struct regulator_ops wm8400_ldo_ops = {
|
||||
static const struct regulator_ops wm8400_ldo_ops = {
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
@ -106,7 +106,7 @@ static unsigned int wm8400_dcdc_get_optimum_mode(struct regulator_dev *dev,
|
||||
return REGULATOR_MODE_NORMAL;
|
||||
}
|
||||
|
||||
static struct regulator_ops wm8400_dcdc_ops = {
|
||||
static const struct regulator_ops wm8400_dcdc_ops = {
|
||||
.is_enabled = regulator_is_enabled_regmap,
|
||||
.enable = regulator_enable_regmap,
|
||||
.disable = regulator_disable_regmap,
|
||||
|
@ -36,7 +36,7 @@ struct wm8994_ldo {
|
||||
#define WM8994_LDO1_MAX_SELECTOR 0x7
|
||||
#define WM8994_LDO2_MAX_SELECTOR 0x3
|
||||
|
||||
static struct regulator_ops wm8994_ldo1_ops = {
|
||||
static const struct regulator_ops wm8994_ldo1_ops = {
|
||||
.list_voltage = regulator_list_voltage_linear,
|
||||
.map_voltage = regulator_map_voltage_linear,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
@ -69,7 +69,7 @@ static int wm8994_ldo2_list_voltage(struct regulator_dev *rdev,
|
||||
}
|
||||
}
|
||||
|
||||
static struct regulator_ops wm8994_ldo2_ops = {
|
||||
static const struct regulator_ops wm8994_ldo2_ops = {
|
||||
.list_voltage = wm8994_ldo2_list_voltage,
|
||||
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
||||
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
||||
|
Loading…
x
Reference in New Issue
Block a user