blob: fafa3488e960520752b44b482864401925a22a6f [file] [log] [blame]
Chris Zhongaa66cc62014-09-28 10:28:53 +08001/*
2 * Regulator driver for PWM Regulators
3 *
4 * Copyright (C) 2014 - STMicroelectronics Inc.
5 *
6 * Author: Lee Jones <lee.jones@linaro.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Lee Jones4773be12015-07-07 16:06:51 +010013#include <linux/delay.h>
Chris Zhongaa66cc62014-09-28 10:28:53 +080014#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/err.h>
17#include <linux/regulator/driver.h>
18#include <linux/regulator/machine.h>
19#include <linux/regulator/of_regulator.h>
20#include <linux/of.h>
21#include <linux/of_device.h>
22#include <linux/pwm.h>
23
24struct pwm_regulator_data {
Lee Jones4773be12015-07-07 16:06:51 +010025 /* Shared */
Chris Zhongaa66cc62014-09-28 10:28:53 +080026 struct pwm_device *pwm;
Lee Jones4773be12015-07-07 16:06:51 +010027
28 /* Voltage table */
29 struct pwm_voltages *duty_cycle_table;
Laxman Dewanganf907a0a2016-03-08 16:23:22 +053030
31 /* regulator descriptor */
32 struct regulator_desc desc;
33
34 /* Regulator ops */
35 struct regulator_ops ops;
36
Chris Zhongaa66cc62014-09-28 10:28:53 +080037 int state;
Lee Jones4773be12015-07-07 16:06:51 +010038
39 /* Continuous voltage */
Lee Jones4773be12015-07-07 16:06:51 +010040 int volt_uV;
Chris Zhongaa66cc62014-09-28 10:28:53 +080041};
42
43struct pwm_voltages {
44 unsigned int uV;
45 unsigned int dutycycle;
46};
47
Lee Jones4773be12015-07-07 16:06:51 +010048/**
49 * Voltage table call-backs
50 */
Lee Jonesab101e32015-06-05 19:42:47 +010051static int pwm_regulator_get_voltage_sel(struct regulator_dev *rdev)
Chris Zhongaa66cc62014-09-28 10:28:53 +080052{
Lee Jonesab101e32015-06-05 19:42:47 +010053 struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev);
Chris Zhongaa66cc62014-09-28 10:28:53 +080054
55 return drvdata->state;
56}
57
Lee Jonesab101e32015-06-05 19:42:47 +010058static int pwm_regulator_set_voltage_sel(struct regulator_dev *rdev,
Chris Zhongaa66cc62014-09-28 10:28:53 +080059 unsigned selector)
60{
Lee Jonesab101e32015-06-05 19:42:47 +010061 struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev);
Boris Brezillon8c12ad82016-04-14 21:17:27 +020062 struct pwm_args pargs;
Chris Zhongaa66cc62014-09-28 10:28:53 +080063 int dutycycle;
64 int ret;
65
Boris Brezillon8c12ad82016-04-14 21:17:27 +020066 pwm_get_args(drvdata->pwm, &pargs);
Chris Zhongaa66cc62014-09-28 10:28:53 +080067
Boris Brezillon8c12ad82016-04-14 21:17:27 +020068 dutycycle = (pargs.period *
Chris Zhongaa66cc62014-09-28 10:28:53 +080069 drvdata->duty_cycle_table[selector].dutycycle) / 100;
70
Boris Brezillon8c12ad82016-04-14 21:17:27 +020071 ret = pwm_config(drvdata->pwm, dutycycle, pargs.period);
Chris Zhongaa66cc62014-09-28 10:28:53 +080072 if (ret) {
Laxman Dewangan5bf59bd2016-03-14 18:20:13 +053073 dev_err(&rdev->dev, "Failed to configure PWM: %d\n", ret);
Chris Zhongaa66cc62014-09-28 10:28:53 +080074 return ret;
75 }
76
77 drvdata->state = selector;
78
Chris Zhongaa66cc62014-09-28 10:28:53 +080079 return 0;
80}
81
Lee Jonesab101e32015-06-05 19:42:47 +010082static int pwm_regulator_list_voltage(struct regulator_dev *rdev,
Chris Zhongaa66cc62014-09-28 10:28:53 +080083 unsigned selector)
84{
Lee Jonesab101e32015-06-05 19:42:47 +010085 struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev);
Chris Zhongaa66cc62014-09-28 10:28:53 +080086
Lee Jonesab101e32015-06-05 19:42:47 +010087 if (selector >= rdev->desc->n_voltages)
Chris Zhongaa66cc62014-09-28 10:28:53 +080088 return -EINVAL;
89
90 return drvdata->duty_cycle_table[selector].uV;
91}
Lee Jones4773be12015-07-07 16:06:51 +010092
Boris Brezillon1de7d802015-09-21 11:33:28 +020093static int pwm_regulator_enable(struct regulator_dev *dev)
94{
95 struct pwm_regulator_data *drvdata = rdev_get_drvdata(dev);
96
97 return pwm_enable(drvdata->pwm);
98}
99
100static int pwm_regulator_disable(struct regulator_dev *dev)
101{
102 struct pwm_regulator_data *drvdata = rdev_get_drvdata(dev);
103
104 pwm_disable(drvdata->pwm);
105
106 return 0;
107}
108
109static int pwm_regulator_is_enabled(struct regulator_dev *dev)
110{
111 struct pwm_regulator_data *drvdata = rdev_get_drvdata(dev);
112
113 return pwm_is_enabled(drvdata->pwm);
114}
115
Lee Jones4773be12015-07-07 16:06:51 +0100116static int pwm_regulator_get_voltage(struct regulator_dev *rdev)
117{
118 struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev);
119
120 return drvdata->volt_uV;
121}
122
123static int pwm_regulator_set_voltage(struct regulator_dev *rdev,
124 int min_uV, int max_uV,
125 unsigned *selector)
126{
127 struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev);
128 unsigned int ramp_delay = rdev->constraints->ramp_delay;
Boris Brezillon8c12ad82016-04-14 21:17:27 +0200129 struct pwm_args pargs;
Laxman Dewanganfd786fb2016-04-05 15:09:48 +0530130 unsigned int req_diff = min_uV - rdev->constraints->min_uV;
131 unsigned int diff;
132 unsigned int duty_pulse;
133 u64 req_period;
134 u32 rem;
Lee Jones4773be12015-07-07 16:06:51 +0100135 int ret;
136
Boris Brezillon8c12ad82016-04-14 21:17:27 +0200137 pwm_get_args(drvdata->pwm, &pargs);
Laxman Dewanganfd786fb2016-04-05 15:09:48 +0530138 diff = rdev->constraints->max_uV - rdev->constraints->min_uV;
Lee Jones4773be12015-07-07 16:06:51 +0100139
Laxman Dewanganfd786fb2016-04-05 15:09:48 +0530140 /* First try to find out if we get the iduty cycle time which is
141 * factor of PWM period time. If (request_diff_to_min * pwm_period)
142 * is perfect divided by voltage_range_diff then it is possible to
143 * get duty cycle time which is factor of PWM period. This will help
144 * to get output voltage nearer to requested value as there is no
145 * calculation loss.
146 */
Mark Brownbc0868c2016-05-03 15:09:56 +0100147 req_period = req_diff * pargs.period;
Laxman Dewanganfd786fb2016-04-05 15:09:48 +0530148 div_u64_rem(req_period, diff, &rem);
149 if (!rem) {
150 do_div(req_period, diff);
151 duty_pulse = (unsigned int)req_period;
152 } else {
Mark Brownbc0868c2016-05-03 15:09:56 +0100153 duty_pulse = (pargs.period / 100) * ((req_diff * 100) / diff);
Laxman Dewanganfd786fb2016-04-05 15:09:48 +0530154 }
155
Mark Brownbc0868c2016-05-03 15:09:56 +0100156 ret = pwm_config(drvdata->pwm, duty_pulse, pargs.period);
Lee Jones4773be12015-07-07 16:06:51 +0100157 if (ret) {
Laxman Dewangan5bf59bd2016-03-14 18:20:13 +0530158 dev_err(&rdev->dev, "Failed to configure PWM: %d\n", ret);
Lee Jones4773be12015-07-07 16:06:51 +0100159 return ret;
160 }
161
162 ret = pwm_enable(drvdata->pwm);
163 if (ret) {
Laxman Dewangan5bf59bd2016-03-14 18:20:13 +0530164 dev_err(&rdev->dev, "Failed to enable PWM: %d\n", ret);
Lee Jones4773be12015-07-07 16:06:51 +0100165 return ret;
166 }
167 drvdata->volt_uV = min_uV;
168
169 /* Delay required by PWM regulator to settle to the new voltage */
170 usleep_range(ramp_delay, ramp_delay + 1000);
171
172 return 0;
173}
174
Lee Jonesf9178da2015-07-06 09:58:29 +0100175static struct regulator_ops pwm_regulator_voltage_table_ops = {
Chris Zhongaa66cc62014-09-28 10:28:53 +0800176 .set_voltage_sel = pwm_regulator_set_voltage_sel,
177 .get_voltage_sel = pwm_regulator_get_voltage_sel,
178 .list_voltage = pwm_regulator_list_voltage,
179 .map_voltage = regulator_map_voltage_iterate,
Boris Brezillon1de7d802015-09-21 11:33:28 +0200180 .enable = pwm_regulator_enable,
181 .disable = pwm_regulator_disable,
182 .is_enabled = pwm_regulator_is_enabled,
Chris Zhongaa66cc62014-09-28 10:28:53 +0800183};
184
Lee Jones4773be12015-07-07 16:06:51 +0100185static struct regulator_ops pwm_regulator_voltage_continuous_ops = {
186 .get_voltage = pwm_regulator_get_voltage,
187 .set_voltage = pwm_regulator_set_voltage,
Boris Brezillon1de7d802015-09-21 11:33:28 +0200188 .enable = pwm_regulator_enable,
189 .disable = pwm_regulator_disable,
190 .is_enabled = pwm_regulator_is_enabled,
Lee Jones4773be12015-07-07 16:06:51 +0100191};
192
Lee Jonesb6f55e72015-06-05 19:42:45 +0100193static struct regulator_desc pwm_regulator_desc = {
Chris Zhongaa66cc62014-09-28 10:28:53 +0800194 .name = "pwm-regulator",
Chris Zhongaa66cc62014-09-28 10:28:53 +0800195 .type = REGULATOR_VOLTAGE,
196 .owner = THIS_MODULE,
197 .supply_name = "pwm",
198};
199
Lee Jonesf9178da2015-07-06 09:58:29 +0100200static int pwm_regulator_init_table(struct platform_device *pdev,
201 struct pwm_regulator_data *drvdata)
202{
203 struct device_node *np = pdev->dev.of_node;
204 struct pwm_voltages *duty_cycle_table;
Lee Jones60cb65e2015-07-10 08:45:36 +0100205 unsigned int length = 0;
Lee Jonesf9178da2015-07-06 09:58:29 +0100206 int ret;
207
208 of_find_property(np, "voltage-table", &length);
209
210 if ((length < sizeof(*duty_cycle_table)) ||
211 (length % sizeof(*duty_cycle_table))) {
Laxman Dewangan5bf59bd2016-03-14 18:20:13 +0530212 dev_err(&pdev->dev, "voltage-table length(%d) is invalid\n",
Lee Jonesf9178da2015-07-06 09:58:29 +0100213 length);
214 return -EINVAL;
215 }
216
217 duty_cycle_table = devm_kzalloc(&pdev->dev, length, GFP_KERNEL);
218 if (!duty_cycle_table)
219 return -ENOMEM;
220
221 ret = of_property_read_u32_array(np, "voltage-table",
222 (u32 *)duty_cycle_table,
223 length / sizeof(u32));
224 if (ret) {
Laxman Dewangan5bf59bd2016-03-14 18:20:13 +0530225 dev_err(&pdev->dev, "Failed to read voltage-table: %d\n", ret);
Lee Jonesf9178da2015-07-06 09:58:29 +0100226 return ret;
227 }
228
229 drvdata->duty_cycle_table = duty_cycle_table;
Laxman Dewanganf907a0a2016-03-08 16:23:22 +0530230 memcpy(&drvdata->ops, &pwm_regulator_voltage_table_ops,
231 sizeof(drvdata->ops));
232 drvdata->desc.ops = &drvdata->ops;
233 drvdata->desc.n_voltages = length / sizeof(*duty_cycle_table);
Lee Jonesf9178da2015-07-06 09:58:29 +0100234
235 return 0;
236}
237
Lee Jones4773be12015-07-07 16:06:51 +0100238static int pwm_regulator_init_continuous(struct platform_device *pdev,
239 struct pwm_regulator_data *drvdata)
240{
Laxman Dewanganf907a0a2016-03-08 16:23:22 +0530241 memcpy(&drvdata->ops, &pwm_regulator_voltage_continuous_ops,
242 sizeof(drvdata->ops));
243 drvdata->desc.ops = &drvdata->ops;
244 drvdata->desc.continuous_voltage_range = true;
Lee Jones4773be12015-07-07 16:06:51 +0100245
246 return 0;
247}
248
Chris Zhongaa66cc62014-09-28 10:28:53 +0800249static int pwm_regulator_probe(struct platform_device *pdev)
250{
Lee Jones5ad2cb12015-07-07 16:06:53 +0100251 const struct regulator_init_data *init_data;
Chris Zhongaa66cc62014-09-28 10:28:53 +0800252 struct pwm_regulator_data *drvdata;
Chris Zhongaa66cc62014-09-28 10:28:53 +0800253 struct regulator_dev *regulator;
254 struct regulator_config config = { };
255 struct device_node *np = pdev->dev.of_node;
Lee Jonesf9178da2015-07-06 09:58:29 +0100256 int ret;
Chris Zhongaa66cc62014-09-28 10:28:53 +0800257
258 if (!np) {
259 dev_err(&pdev->dev, "Device Tree node missing\n");
260 return -EINVAL;
261 }
262
263 drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL);
264 if (!drvdata)
265 return -ENOMEM;
266
Laxman Dewanganf907a0a2016-03-08 16:23:22 +0530267 memcpy(&drvdata->desc, &pwm_regulator_desc, sizeof(drvdata->desc));
268
Lee Jones4773be12015-07-07 16:06:51 +0100269 if (of_find_property(np, "voltage-table", NULL))
Lee Jonesf9178da2015-07-06 09:58:29 +0100270 ret = pwm_regulator_init_table(pdev, drvdata);
Lee Jones4773be12015-07-07 16:06:51 +0100271 else
272 ret = pwm_regulator_init_continuous(pdev, drvdata);
273 if (ret)
274 return ret;
Chris Zhongaa66cc62014-09-28 10:28:53 +0800275
Lee Jones5ad2cb12015-07-07 16:06:53 +0100276 init_data = of_get_regulator_init_data(&pdev->dev, np,
Laxman Dewanganf907a0a2016-03-08 16:23:22 +0530277 &drvdata->desc);
Lee Jones5ad2cb12015-07-07 16:06:53 +0100278 if (!init_data)
Chris Zhongaa66cc62014-09-28 10:28:53 +0800279 return -ENOMEM;
280
281 config.of_node = np;
282 config.dev = &pdev->dev;
283 config.driver_data = drvdata;
Lee Jones5ad2cb12015-07-07 16:06:53 +0100284 config.init_data = init_data;
Chris Zhongaa66cc62014-09-28 10:28:53 +0800285
286 drvdata->pwm = devm_pwm_get(&pdev->dev, NULL);
287 if (IS_ERR(drvdata->pwm)) {
Laxman Dewangan5bf59bd2016-03-14 18:20:13 +0530288 ret = PTR_ERR(drvdata->pwm);
289 dev_err(&pdev->dev, "Failed to get PWM: %d\n", ret);
290 return ret;
Chris Zhongaa66cc62014-09-28 10:28:53 +0800291 }
292
Boris Brezillon8c12ad82016-04-14 21:17:27 +0200293 /*
294 * FIXME: pwm_apply_args() should be removed when switching to the
295 * atomic PWM API.
296 */
297 pwm_apply_args(drvdata->pwm);
298
Chris Zhongaa66cc62014-09-28 10:28:53 +0800299 regulator = devm_regulator_register(&pdev->dev,
Laxman Dewanganf907a0a2016-03-08 16:23:22 +0530300 &drvdata->desc, &config);
Chris Zhongaa66cc62014-09-28 10:28:53 +0800301 if (IS_ERR(regulator)) {
Laxman Dewangan5bf59bd2016-03-14 18:20:13 +0530302 ret = PTR_ERR(regulator);
303 dev_err(&pdev->dev, "Failed to register regulator %s: %d\n",
304 drvdata->desc.name, ret);
305 return ret;
Chris Zhongaa66cc62014-09-28 10:28:53 +0800306 }
307
308 return 0;
309}
310
311static const struct of_device_id pwm_of_match[] = {
312 { .compatible = "pwm-regulator" },
313 { },
314};
315MODULE_DEVICE_TABLE(of, pwm_of_match);
316
317static struct platform_driver pwm_regulator_driver = {
318 .driver = {
319 .name = "pwm-regulator",
Chris Zhongaa66cc62014-09-28 10:28:53 +0800320 .of_match_table = of_match_ptr(pwm_of_match),
321 },
322 .probe = pwm_regulator_probe,
323};
324
325module_platform_driver(pwm_regulator_driver);
326
327MODULE_LICENSE("GPL");
328MODULE_AUTHOR("Lee Jones <lee.jones@linaro.org>");
329MODULE_DESCRIPTION("PWM Regulator Driver");
330MODULE_ALIAS("platform:pwm-regulator");