diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-06-14 05:13:20 -0400 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2016-07-11 02:44:29 -0400 |
commit | d9070fdbe40a04b61262bac0f7ff0c7c29a68015 (patch) | |
tree | 06eb17c64d51968825b97a9ed43e7aa2a159e1d9 /drivers/regulator | |
parent | 87248991a1de28e73dc30057e82d831bc11cdd44 (diff) |
regulator: pwm: Retrieve correct voltage
The continuous PWM voltage regulator is caching the voltage value in
the ->volt_uV field. While most of the time this value should reflect the
real voltage, sometime it can be sightly different if the PWM device
rounded the set_duty_cycle request.
Moreover, this value is not valid until someone has modified the regulator
output.
Remove the ->volt_uV field and always rely on the PWM state to calculate
the regulator output.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Reviewed-by: Brian Norris <briannorris@chromium.org>
Tested-by: Brian Norris <briannorris@chromium.org>
Tested-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/pwm-regulator.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/regulator/pwm-regulator.c b/drivers/regulator/pwm-regulator.c index 7d26d3b0eed6..ae0bebbfda9d 100644 --- a/drivers/regulator/pwm-regulator.c +++ b/drivers/regulator/pwm-regulator.c | |||
@@ -37,9 +37,6 @@ struct pwm_regulator_data { | |||
37 | 37 | ||
38 | int state; | 38 | int state; |
39 | 39 | ||
40 | /* Continuous voltage */ | ||
41 | int volt_uV; | ||
42 | |||
43 | /* Enable GPIO */ | 40 | /* Enable GPIO */ |
44 | struct gpio_desc *enb_gpio; | 41 | struct gpio_desc *enb_gpio; |
45 | }; | 42 | }; |
@@ -148,8 +145,13 @@ static int pwm_regulator_is_enabled(struct regulator_dev *dev) | |||
148 | static int pwm_regulator_get_voltage(struct regulator_dev *rdev) | 145 | static int pwm_regulator_get_voltage(struct regulator_dev *rdev) |
149 | { | 146 | { |
150 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev); | 147 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev); |
148 | int min_uV = rdev->constraints->min_uV; | ||
149 | int diff = rdev->constraints->max_uV - min_uV; | ||
150 | struct pwm_state pstate; | ||
151 | 151 | ||
152 | return drvdata->volt_uV; | 152 | pwm_get_state(drvdata->pwm, &pstate); |
153 | |||
154 | return min_uV + pwm_get_relative_duty_cycle(&pstate, diff); | ||
153 | } | 155 | } |
154 | 156 | ||
155 | static int pwm_regulator_set_voltage(struct regulator_dev *rdev, | 157 | static int pwm_regulator_set_voltage(struct regulator_dev *rdev, |
@@ -176,8 +178,6 @@ static int pwm_regulator_set_voltage(struct regulator_dev *rdev, | |||
176 | return ret; | 178 | return ret; |
177 | } | 179 | } |
178 | 180 | ||
179 | drvdata->volt_uV = min_uV; | ||
180 | |||
181 | if ((ramp_delay == 0) || !pwm_regulator_is_enabled(rdev)) | 181 | if ((ramp_delay == 0) || !pwm_regulator_is_enabled(rdev)) |
182 | return 0; | 182 | return 0; |
183 | 183 | ||