blob: ad0fc78c3cb4520a6b11d98a367e1fb1ab9b01db [file] [log] [blame]
Heiko Stübner3f0292a2011-10-05 12:27:05 +02001/*
2 * gpio-regulator.c
3 *
4 * Copyright 2011 Heiko Stuebner <heiko@sntech.de>
5 *
6 * based on fixed.c
7 *
8 * Copyright 2008 Wolfson Microelectronics PLC.
9 *
10 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
11 *
12 * Copyright (c) 2009 Nokia Corporation
13 * Roger Quadros <ext-roger.quadros@nokia.com>
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of the
18 * License, or (at your option) any later version.
19 *
20 * This is useful for systems with mixed controllable and
21 * non-controllable regulators, as well as for allowing testing on
22 * systems with no controllable regulators.
23 */
24
25#include <linux/err.h>
26#include <linux/mutex.h>
Mark Brownecc37ed2011-10-11 13:59:13 +010027#include <linux/module.h>
Heiko Stübner3f0292a2011-10-05 12:27:05 +020028#include <linux/platform_device.h>
29#include <linux/regulator/driver.h>
30#include <linux/regulator/machine.h>
31#include <linux/regulator/gpio-regulator.h>
32#include <linux/gpio.h>
33#include <linux/delay.h>
34#include <linux/slab.h>
35
36struct gpio_regulator_data {
37 struct regulator_desc desc;
38 struct regulator_dev *dev;
39
40 int enable_gpio;
41 bool enable_high;
42 bool is_enabled;
43 unsigned startup_delay;
44
45 struct gpio *gpios;
46 int nr_gpios;
47
48 struct gpio_regulator_state *states;
49 int nr_states;
50
51 int state;
52};
53
54static int gpio_regulator_is_enabled(struct regulator_dev *dev)
55{
56 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
57
58 return data->is_enabled;
59}
60
61static int gpio_regulator_enable(struct regulator_dev *dev)
62{
63 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
64
65 if (gpio_is_valid(data->enable_gpio)) {
66 gpio_set_value_cansleep(data->enable_gpio, data->enable_high);
67 data->is_enabled = true;
68 }
69
70 return 0;
71}
72
73static int gpio_regulator_disable(struct regulator_dev *dev)
74{
75 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
76
77 if (gpio_is_valid(data->enable_gpio)) {
78 gpio_set_value_cansleep(data->enable_gpio, !data->enable_high);
79 data->is_enabled = false;
80 }
81
82 return 0;
83}
84
85static int gpio_regulator_enable_time(struct regulator_dev *dev)
86{
87 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
88
89 return data->startup_delay;
90}
91
92static int gpio_regulator_get_value(struct regulator_dev *dev)
93{
94 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
95 int ptr;
96
97 for (ptr = 0; ptr < data->nr_states; ptr++)
98 if (data->states[ptr].gpios == data->state)
99 return data->states[ptr].value;
100
101 return -EINVAL;
102}
103
104static int gpio_regulator_set_value(struct regulator_dev *dev,
105 int min, int max)
106{
107 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
Axel Lin4dbd8f62012-03-22 14:08:04 +0800108 int ptr, target, state, best_val = INT_MAX;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200109
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200110 for (ptr = 0; ptr < data->nr_states; ptr++)
Axel Lin4dbd8f62012-03-22 14:08:04 +0800111 if (data->states[ptr].value < best_val &&
112 data->states[ptr].value >= min &&
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200113 data->states[ptr].value <= max)
114 target = data->states[ptr].gpios;
115
Axel Lin4dbd8f62012-03-22 14:08:04 +0800116 if (best_val == INT_MAX)
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200117 return -EINVAL;
118
119 for (ptr = 0; ptr < data->nr_gpios; ptr++) {
120 state = (target & (1 << ptr)) >> ptr;
121 gpio_set_value(data->gpios[ptr].gpio, state);
122 }
123 data->state = target;
124
125 return 0;
126}
127
128static int gpio_regulator_set_voltage(struct regulator_dev *dev,
129 int min_uV, int max_uV,
130 unsigned *selector)
131{
132 return gpio_regulator_set_value(dev, min_uV, max_uV);
133}
134
135static int gpio_regulator_list_voltage(struct regulator_dev *dev,
136 unsigned selector)
137{
138 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
139
140 if (selector >= data->nr_states)
141 return -EINVAL;
142
143 return data->states[selector].value;
144}
145
146static int gpio_regulator_set_current_limit(struct regulator_dev *dev,
147 int min_uA, int max_uA)
148{
149 return gpio_regulator_set_value(dev, min_uA, max_uA);
150}
151
152static struct regulator_ops gpio_regulator_voltage_ops = {
153 .is_enabled = gpio_regulator_is_enabled,
154 .enable = gpio_regulator_enable,
155 .disable = gpio_regulator_disable,
156 .enable_time = gpio_regulator_enable_time,
157 .get_voltage = gpio_regulator_get_value,
158 .set_voltage = gpio_regulator_set_voltage,
159 .list_voltage = gpio_regulator_list_voltage,
160};
161
162static struct regulator_ops gpio_regulator_current_ops = {
163 .is_enabled = gpio_regulator_is_enabled,
164 .enable = gpio_regulator_enable,
165 .disable = gpio_regulator_disable,
166 .enable_time = gpio_regulator_enable_time,
167 .get_current_limit = gpio_regulator_get_value,
168 .set_current_limit = gpio_regulator_set_current_limit,
169};
170
171static int __devinit gpio_regulator_probe(struct platform_device *pdev)
172{
173 struct gpio_regulator_config *config = pdev->dev.platform_data;
174 struct gpio_regulator_data *drvdata;
175 int ptr, ret, state;
176
Mark Brown02b552162012-04-03 23:20:56 +0100177 drvdata = devm_kzalloc(&pdev->dev, sizeof(struct gpio_regulator_data),
178 GFP_KERNEL);
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200179 if (drvdata == NULL) {
180 dev_err(&pdev->dev, "Failed to allocate device data\n");
181 return -ENOMEM;
182 }
183
184 drvdata->desc.name = kstrdup(config->supply_name, GFP_KERNEL);
185 if (drvdata->desc.name == NULL) {
186 dev_err(&pdev->dev, "Failed to allocate supply name\n");
187 ret = -ENOMEM;
188 goto err;
189 }
190
191 drvdata->gpios = kmemdup(config->gpios,
192 config->nr_gpios * sizeof(struct gpio),
193 GFP_KERNEL);
194 if (drvdata->gpios == NULL) {
195 dev_err(&pdev->dev, "Failed to allocate gpio data\n");
196 ret = -ENOMEM;
197 goto err_name;
198 }
199
200 drvdata->states = kmemdup(config->states,
201 config->nr_states *
202 sizeof(struct gpio_regulator_state),
203 GFP_KERNEL);
204 if (drvdata->states == NULL) {
205 dev_err(&pdev->dev, "Failed to allocate state data\n");
206 ret = -ENOMEM;
207 goto err_memgpio;
208 }
209 drvdata->nr_states = config->nr_states;
210
211 drvdata->desc.owner = THIS_MODULE;
212
213 /* handle regulator type*/
214 switch (config->type) {
215 case REGULATOR_VOLTAGE:
216 drvdata->desc.type = REGULATOR_VOLTAGE;
217 drvdata->desc.ops = &gpio_regulator_voltage_ops;
218 drvdata->desc.n_voltages = config->nr_states;
219 break;
220 case REGULATOR_CURRENT:
221 drvdata->desc.type = REGULATOR_CURRENT;
222 drvdata->desc.ops = &gpio_regulator_current_ops;
223 break;
224 default:
225 dev_err(&pdev->dev, "No regulator type set\n");
226 ret = -EINVAL;
227 goto err_memgpio;
228 break;
229 }
230
231 drvdata->enable_gpio = config->enable_gpio;
232 drvdata->startup_delay = config->startup_delay;
233
234 if (gpio_is_valid(config->enable_gpio)) {
235 drvdata->enable_high = config->enable_high;
236
237 ret = gpio_request(config->enable_gpio, config->supply_name);
238 if (ret) {
239 dev_err(&pdev->dev,
240 "Could not obtain regulator enable GPIO %d: %d\n",
241 config->enable_gpio, ret);
242 goto err_memstate;
243 }
244
245 /* set output direction without changing state
246 * to prevent glitch
247 */
248 if (config->enabled_at_boot) {
249 drvdata->is_enabled = true;
250 ret = gpio_direction_output(config->enable_gpio,
251 config->enable_high);
252 } else {
253 drvdata->is_enabled = false;
254 ret = gpio_direction_output(config->enable_gpio,
255 !config->enable_high);
256 }
257
258 if (ret) {
259 dev_err(&pdev->dev,
260 "Could not configure regulator enable GPIO %d direction: %d\n",
261 config->enable_gpio, ret);
262 goto err_enablegpio;
263 }
264 } else {
265 /* Regulator without GPIO control is considered
266 * always enabled
267 */
268 drvdata->is_enabled = true;
269 }
270
271 drvdata->nr_gpios = config->nr_gpios;
272 ret = gpio_request_array(drvdata->gpios, drvdata->nr_gpios);
273 if (ret) {
274 dev_err(&pdev->dev,
275 "Could not obtain regulator setting GPIOs: %d\n", ret);
276 goto err_enablegpio;
277 }
278
279 /* build initial state from gpio init data. */
280 state = 0;
281 for (ptr = 0; ptr < drvdata->nr_gpios; ptr++) {
282 if (config->gpios[ptr].flags & GPIOF_OUT_INIT_HIGH)
283 state |= (1 << ptr);
284 }
285 drvdata->state = state;
286
287 drvdata->dev = regulator_register(&drvdata->desc, &pdev->dev,
Rajendra Nayak15684342011-11-24 12:57:17 +0530288 config->init_data, drvdata, NULL);
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200289 if (IS_ERR(drvdata->dev)) {
290 ret = PTR_ERR(drvdata->dev);
291 dev_err(&pdev->dev, "Failed to register regulator: %d\n", ret);
292 goto err_stategpio;
293 }
294
295 platform_set_drvdata(pdev, drvdata);
296
297 return 0;
298
299err_stategpio:
300 gpio_free_array(drvdata->gpios, drvdata->nr_gpios);
301err_enablegpio:
302 if (gpio_is_valid(config->enable_gpio))
303 gpio_free(config->enable_gpio);
304err_memstate:
305 kfree(drvdata->states);
306err_memgpio:
307 kfree(drvdata->gpios);
308err_name:
309 kfree(drvdata->desc.name);
310err:
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200311 return ret;
312}
313
314static int __devexit gpio_regulator_remove(struct platform_device *pdev)
315{
316 struct gpio_regulator_data *drvdata = platform_get_drvdata(pdev);
317
318 regulator_unregister(drvdata->dev);
319
320 gpio_free_array(drvdata->gpios, drvdata->nr_gpios);
321
322 kfree(drvdata->states);
323 kfree(drvdata->gpios);
324
325 if (gpio_is_valid(drvdata->enable_gpio))
326 gpio_free(drvdata->enable_gpio);
327
328 kfree(drvdata->desc.name);
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200329
330 return 0;
331}
332
333static struct platform_driver gpio_regulator_driver = {
334 .probe = gpio_regulator_probe,
335 .remove = __devexit_p(gpio_regulator_remove),
336 .driver = {
337 .name = "gpio-regulator",
338 .owner = THIS_MODULE,
339 },
340};
341
342static int __init gpio_regulator_init(void)
343{
344 return platform_driver_register(&gpio_regulator_driver);
345}
346subsys_initcall(gpio_regulator_init);
347
348static void __exit gpio_regulator_exit(void)
349{
350 platform_driver_unregister(&gpio_regulator_driver);
351}
352module_exit(gpio_regulator_exit);
353
354MODULE_AUTHOR("Heiko Stuebner <heiko@sntech.de>");
355MODULE_DESCRIPTION("gpio voltage regulator");
356MODULE_LICENSE("GPL");
357MODULE_ALIAS("platform:gpio-regulator");