Commit 7142e213 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

regulator: ab8500: Use regulator_list_voltage_linear for ab8500_regulator_fixed_ops

Also removes set_voltage_time_sel callback from ab8500_regulator_fixed_ops
because the voltage won't change. ( And ab8500_regulator_fixed_ops does not
implement get_voltage_sel so set_voltage_time_sel won't be called )
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 34e74f39
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
* @regulator_dev: regulator device * @regulator_dev: regulator device
* @max_uV: maximum voltage (for variable voltage supplies) * @max_uV: maximum voltage (for variable voltage supplies)
* @min_uV: minimum voltage (for variable voltage supplies) * @min_uV: minimum voltage (for variable voltage supplies)
* @fixed_uV: typical voltage (for fixed voltage supplies)
* @update_bank: bank to control on/off * @update_bank: bank to control on/off
* @update_reg: register to control on/off * @update_reg: register to control on/off
* @update_mask: mask to enable/disable regulator * @update_mask: mask to enable/disable regulator
...@@ -48,7 +47,6 @@ struct ab8500_regulator_info { ...@@ -48,7 +47,6 @@ struct ab8500_regulator_info {
struct regulator_dev *regulator; struct regulator_dev *regulator;
int max_uV; int max_uV;
int min_uV; int min_uV;
int fixed_uV;
u8 update_bank; u8 update_bank;
u8 update_reg; u8 update_reg;
u8 update_mask; u8 update_mask;
...@@ -271,29 +269,9 @@ static struct regulator_ops ab8500_regulator_ops = { ...@@ -271,29 +269,9 @@ static struct regulator_ops ab8500_regulator_ops = {
.set_voltage_time_sel = ab8500_regulator_set_voltage_time_sel, .set_voltage_time_sel = ab8500_regulator_set_voltage_time_sel,
}; };
static int ab8500_fixed_list_voltage(struct regulator_dev *rdev,
unsigned selector)
{
struct ab8500_regulator_info *info = rdev_get_drvdata(rdev);
if (info == NULL) {
dev_err(rdev_get_dev(rdev), "regulator info null pointer\n");
return -EINVAL;
}
return info->fixed_uV;
}
static int ab8500_fixed_get_voltage(struct regulator_dev *rdev) static int ab8500_fixed_get_voltage(struct regulator_dev *rdev)
{ {
struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); return rdev->desc->min_uV;
if (info == NULL) {
dev_err(rdev_get_dev(rdev), "regulator info null pointer\n");
return -EINVAL;
}
return info->fixed_uV;
} }
static struct regulator_ops ab8500_regulator_fixed_ops = { static struct regulator_ops ab8500_regulator_fixed_ops = {
...@@ -301,9 +279,8 @@ static struct regulator_ops ab8500_regulator_fixed_ops = { ...@@ -301,9 +279,8 @@ static struct regulator_ops ab8500_regulator_fixed_ops = {
.disable = ab8500_regulator_disable, .disable = ab8500_regulator_disable,
.is_enabled = ab8500_regulator_is_enabled, .is_enabled = ab8500_regulator_is_enabled,
.get_voltage = ab8500_fixed_get_voltage, .get_voltage = ab8500_fixed_get_voltage,
.list_voltage = ab8500_fixed_list_voltage, .list_voltage = regulator_list_voltage_linear,
.enable_time = ab8500_regulator_enable_time, .enable_time = ab8500_regulator_enable_time,
.set_voltage_time_sel = ab8500_regulator_set_voltage_time_sel,
}; };
static struct ab8500_regulator_info static struct ab8500_regulator_info
...@@ -408,9 +385,9 @@ static struct ab8500_regulator_info ...@@ -408,9 +385,9 @@ static struct ab8500_regulator_info
.id = AB8500_LDO_TVOUT, .id = AB8500_LDO_TVOUT,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.n_voltages = 1, .n_voltages = 1,
.min_uV = 2000000,
}, },
.delay = 10000, .delay = 10000,
.fixed_uV = 2000000,
.update_bank = 0x03, .update_bank = 0x03,
.update_reg = 0x80, .update_reg = 0x80,
.update_mask = 0x82, .update_mask = 0x82,
...@@ -424,8 +401,8 @@ static struct ab8500_regulator_info ...@@ -424,8 +401,8 @@ static struct ab8500_regulator_info
.id = AB8500_LDO_USB, .id = AB8500_LDO_USB,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.n_voltages = 1, .n_voltages = 1,
.min_uV = 3300000,
}, },
.fixed_uV = 3300000,
.update_bank = 0x03, .update_bank = 0x03,
.update_reg = 0x82, .update_reg = 0x82,
.update_mask = 0x03, .update_mask = 0x03,
...@@ -439,8 +416,8 @@ static struct ab8500_regulator_info ...@@ -439,8 +416,8 @@ static struct ab8500_regulator_info
.id = AB8500_LDO_AUDIO, .id = AB8500_LDO_AUDIO,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.n_voltages = 1, .n_voltages = 1,
.min_uV = 2000000,
}, },
.fixed_uV = 2000000,
.update_bank = 0x03, .update_bank = 0x03,
.update_reg = 0x83, .update_reg = 0x83,
.update_mask = 0x02, .update_mask = 0x02,
...@@ -454,8 +431,8 @@ static struct ab8500_regulator_info ...@@ -454,8 +431,8 @@ static struct ab8500_regulator_info
.id = AB8500_LDO_ANAMIC1, .id = AB8500_LDO_ANAMIC1,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.n_voltages = 1, .n_voltages = 1,
.min_uV = 2050000,
}, },
.fixed_uV = 2050000,
.update_bank = 0x03, .update_bank = 0x03,
.update_reg = 0x83, .update_reg = 0x83,
.update_mask = 0x08, .update_mask = 0x08,
...@@ -469,8 +446,8 @@ static struct ab8500_regulator_info ...@@ -469,8 +446,8 @@ static struct ab8500_regulator_info
.id = AB8500_LDO_ANAMIC2, .id = AB8500_LDO_ANAMIC2,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.n_voltages = 1, .n_voltages = 1,
.min_uV = 2050000,
}, },
.fixed_uV = 2050000,
.update_bank = 0x03, .update_bank = 0x03,
.update_reg = 0x83, .update_reg = 0x83,
.update_mask = 0x10, .update_mask = 0x10,
...@@ -484,8 +461,8 @@ static struct ab8500_regulator_info ...@@ -484,8 +461,8 @@ static struct ab8500_regulator_info
.id = AB8500_LDO_DMIC, .id = AB8500_LDO_DMIC,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.n_voltages = 1, .n_voltages = 1,
.min_uV = 1800000,
}, },
.fixed_uV = 1800000,
.update_bank = 0x03, .update_bank = 0x03,
.update_reg = 0x83, .update_reg = 0x83,
.update_mask = 0x04, .update_mask = 0x04,
...@@ -499,8 +476,8 @@ static struct ab8500_regulator_info ...@@ -499,8 +476,8 @@ static struct ab8500_regulator_info
.id = AB8500_LDO_ANA, .id = AB8500_LDO_ANA,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.n_voltages = 1, .n_voltages = 1,
.min_uV = 1200000,
}, },
.fixed_uV = 1200000,
.update_bank = 0x04, .update_bank = 0x04,
.update_reg = 0x06, .update_reg = 0x06,
.update_mask = 0x0c, .update_mask = 0x0c,
......
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