blob: 6157001df0a49f5d2753677b0a90ba57e3b759a0 [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>
Lee Jones006694d2012-10-15 14:16:59 +010031#include <linux/regulator/of_regulator.h>
Heiko Stübner3f0292a2011-10-05 12:27:05 +020032#include <linux/regulator/gpio-regulator.h>
Linus Walleijd6cd33a2019-01-29 11:31:52 +010033#include <linux/gpio/consumer.h>
Heiko Stübner3f0292a2011-10-05 12:27:05 +020034#include <linux/slab.h>
Lee Jones006694d2012-10-15 14:16:59 +010035#include <linux/of.h>
Heiko Stübner3f0292a2011-10-05 12:27:05 +020036
37struct gpio_regulator_data {
38 struct regulator_desc desc;
39 struct regulator_dev *dev;
40
Linus Walleijd6cd33a2019-01-29 11:31:52 +010041 struct gpio_desc **gpiods;
Heiko Stübner3f0292a2011-10-05 12:27:05 +020042 int nr_gpios;
43
44 struct gpio_regulator_state *states;
45 int nr_states;
46
47 int state;
48};
49
Heiko Stübner3f0292a2011-10-05 12:27:05 +020050static int gpio_regulator_get_value(struct regulator_dev *dev)
51{
52 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
53 int ptr;
54
55 for (ptr = 0; ptr < data->nr_states; ptr++)
56 if (data->states[ptr].gpios == data->state)
57 return data->states[ptr].value;
58
59 return -EINVAL;
60}
61
Heiko Stübnereb0c5682012-08-08 00:50:19 +020062static int gpio_regulator_set_voltage(struct regulator_dev *dev,
63 int min_uV, int max_uV,
64 unsigned *selector)
Heiko Stübner3f0292a2011-10-05 12:27:05 +020065{
66 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
Heiko Stübner00926362012-06-03 21:31:09 +020067 int ptr, target = 0, state, best_val = INT_MAX;
Heiko Stübner3f0292a2011-10-05 12:27:05 +020068
Heiko Stübner3f0292a2011-10-05 12:27:05 +020069 for (ptr = 0; ptr < data->nr_states; ptr++)
Axel Lin4dbd8f62012-03-22 14:08:04 +080070 if (data->states[ptr].value < best_val &&
Heiko Stübnereb0c5682012-08-08 00:50:19 +020071 data->states[ptr].value >= min_uV &&
72 data->states[ptr].value <= max_uV) {
Heiko Stübner3f0292a2011-10-05 12:27:05 +020073 target = data->states[ptr].gpios;
Heiko Stübner00926362012-06-03 21:31:09 +020074 best_val = data->states[ptr].value;
Heiko Stübnerb0e4d7b2012-06-03 21:32:05 +020075 if (selector)
76 *selector = ptr;
Heiko Stübner00926362012-06-03 21:31:09 +020077 }
Heiko Stübner3f0292a2011-10-05 12:27:05 +020078
Axel Lin4dbd8f62012-03-22 14:08:04 +080079 if (best_val == INT_MAX)
Heiko Stübner3f0292a2011-10-05 12:27:05 +020080 return -EINVAL;
81
82 for (ptr = 0; ptr < data->nr_gpios; ptr++) {
83 state = (target & (1 << ptr)) >> ptr;
Linus Walleijd6cd33a2019-01-29 11:31:52 +010084 gpiod_set_value_cansleep(data->gpiods[ptr], state);
Heiko Stübner3f0292a2011-10-05 12:27:05 +020085 }
86 data->state = target;
87
88 return 0;
89}
90
Heiko Stübner3f0292a2011-10-05 12:27:05 +020091static int gpio_regulator_list_voltage(struct regulator_dev *dev,
92 unsigned selector)
93{
94 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
95
96 if (selector >= data->nr_states)
97 return -EINVAL;
98
99 return data->states[selector].value;
100}
101
102static int gpio_regulator_set_current_limit(struct regulator_dev *dev,
103 int min_uA, int max_uA)
104{
Heiko Stübnereb0c5682012-08-08 00:50:19 +0200105 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
106 int ptr, target = 0, state, best_val = 0;
107
108 for (ptr = 0; ptr < data->nr_states; ptr++)
109 if (data->states[ptr].value > best_val &&
110 data->states[ptr].value >= min_uA &&
111 data->states[ptr].value <= max_uA) {
112 target = data->states[ptr].gpios;
113 best_val = data->states[ptr].value;
114 }
115
116 if (best_val == 0)
117 return -EINVAL;
118
119 for (ptr = 0; ptr < data->nr_gpios; ptr++) {
120 state = (target & (1 << ptr)) >> ptr;
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100121 gpiod_set_value_cansleep(data->gpiods[ptr], state);
Heiko Stübnereb0c5682012-08-08 00:50:19 +0200122 }
123 data->state = target;
124
125 return 0;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200126}
127
128static struct regulator_ops gpio_regulator_voltage_ops = {
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200129 .get_voltage = gpio_regulator_get_value,
130 .set_voltage = gpio_regulator_set_voltage,
131 .list_voltage = gpio_regulator_list_voltage,
132};
133
Axel Lina4514052013-01-28 22:17:46 +0800134static struct gpio_regulator_config *
Javier Martinez Canillas072e78b2014-11-10 14:43:53 +0100135of_get_gpio_regulator_config(struct device *dev, struct device_node *np,
136 const struct regulator_desc *desc)
Lee Jones006694d2012-10-15 14:16:59 +0100137{
138 struct gpio_regulator_config *config;
Lee Jones006694d2012-10-15 14:16:59 +0100139 const char *regtype;
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100140 int proplen, i;
141 int ngpios;
Laurent Pinchart251b9c22013-11-09 13:12:28 +0100142 int ret;
Lee Jones006694d2012-10-15 14:16:59 +0100143
144 config = devm_kzalloc(dev,
145 sizeof(struct gpio_regulator_config),
146 GFP_KERNEL);
147 if (!config)
148 return ERR_PTR(-ENOMEM);
149
Javier Martinez Canillas072e78b2014-11-10 14:43:53 +0100150 config->init_data = of_get_regulator_init_data(dev, np, desc);
Lee Jones006694d2012-10-15 14:16:59 +0100151 if (!config->init_data)
152 return ERR_PTR(-EINVAL);
153
154 config->supply_name = config->init_data->constraints.name;
155
Lee Jones006694d2012-10-15 14:16:59 +0100156 if (of_property_read_bool(np, "enable-at-boot"))
157 config->enabled_at_boot = true;
158
159 of_property_read_u32(np, "startup-delay-us", &config->startup_delay);
160
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100161 /* Fetch GPIO init levels */
162 ngpios = gpiod_count(dev, NULL);
163 if (ngpios > 0) {
164 config->gflags = devm_kzalloc(dev,
165 sizeof(enum gpiod_flags)
166 * ngpios,
167 GFP_KERNEL);
168 if (!config->gflags)
Richard Fitzgerald9f946092014-11-19 14:13:06 +0000169 return ERR_PTR(-ENOMEM);
Lee Jones006694d2012-10-15 14:16:59 +0100170
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100171 for (i = 0; i < ngpios; i++) {
172 u32 val;
Heiko Stuebner1f5a9622014-02-13 16:34:32 +0100173
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100174 ret = of_property_read_u32_index(np, "gpios-states", i,
175 &val);
Kuninori Morimoto00940502014-01-30 21:25:14 -0800176
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100177 /* Default to high per specification */
178 if (ret)
179 config->gflags[i] = GPIOD_OUT_HIGH;
180 else
181 config->gflags[i] =
182 val ? GPIOD_OUT_HIGH : GPIOD_OUT_LOW;
Heiko Stuebner1f5a9622014-02-13 16:34:32 +0100183 }
Lee Jones006694d2012-10-15 14:16:59 +0100184 }
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100185 config->ngpios = ngpios;
Lee Jones006694d2012-10-15 14:16:59 +0100186
187 /* Fetch states. */
Heiko Stuebner934624d2014-02-12 01:01:08 +0100188 proplen = of_property_count_u32_elems(np, "states");
189 if (proplen < 0) {
Lee Jones216f2b92012-11-14 11:51:36 +0000190 dev_err(dev, "No 'states' property found\n");
191 return ERR_PTR(-EINVAL);
192 }
193
Kees Cooka86854d2018-06-12 14:07:58 -0700194 config->states = devm_kcalloc(dev,
195 proplen / 2,
196 sizeof(struct gpio_regulator_state),
Lee Jones006694d2012-10-15 14:16:59 +0100197 GFP_KERNEL);
198 if (!config->states)
199 return ERR_PTR(-ENOMEM);
200
201 for (i = 0; i < proplen / 2; i++) {
Heiko Stuebner934624d2014-02-12 01:01:08 +0100202 of_property_read_u32_index(np, "states", i * 2,
203 &config->states[i].value);
204 of_property_read_u32_index(np, "states", i * 2 + 1,
205 &config->states[i].gpios);
Lee Jones006694d2012-10-15 14:16:59 +0100206 }
207 config->nr_states = i;
208
Mark Brown5b1ada82013-12-05 00:29:57 +0000209 config->type = REGULATOR_VOLTAGE;
Laurent Pinchart251b9c22013-11-09 13:12:28 +0100210 ret = of_property_read_string(np, "regulator-type", &regtype);
Mark Brown5b1ada82013-12-05 00:29:57 +0000211 if (ret >= 0) {
212 if (!strncmp("voltage", regtype, 7))
213 config->type = REGULATOR_VOLTAGE;
214 else if (!strncmp("current", regtype, 7))
215 config->type = REGULATOR_CURRENT;
Mark Brown9eb9d312013-12-05 19:09:55 +0000216 else
217 dev_warn(dev, "Unknown regulator-type '%s'\n",
218 regtype);
Laurent Pinchart251b9c22013-11-09 13:12:28 +0100219 }
Lee Jones006694d2012-10-15 14:16:59 +0100220
Lee Jones006694d2012-10-15 14:16:59 +0100221 return config;
222}
223
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200224static struct regulator_ops gpio_regulator_current_ops = {
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200225 .get_current_limit = gpio_regulator_get_value,
226 .set_current_limit = gpio_regulator_set_current_limit,
227};
228
Bill Pembertona5023572012-11-19 13:22:22 -0500229static int gpio_regulator_probe(struct platform_device *pdev)
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200230{
Linus Walleijd162d042019-01-29 11:31:55 +0100231 struct device *dev = &pdev->dev;
232 struct gpio_regulator_config *config = dev_get_platdata(dev);
233 struct device_node *np = dev->of_node;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200234 struct gpio_regulator_data *drvdata;
Mark Brownc172708d2012-04-04 00:50:22 +0100235 struct regulator_config cfg = { };
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100236 enum gpiod_flags gflags;
237 int ptr, ret, state, i;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200238
Linus Walleijd162d042019-01-29 11:31:55 +0100239 drvdata = devm_kzalloc(dev, sizeof(struct gpio_regulator_data),
Mark Brown02b55212012-04-03 23:20:56 +0100240 GFP_KERNEL);
Fabio Estevam9c259602014-01-24 15:48:18 -0200241 if (drvdata == NULL)
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200242 return -ENOMEM;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200243
Javier Martinez Canillas072e78b2014-11-10 14:43:53 +0100244 if (np) {
Linus Walleijd162d042019-01-29 11:31:55 +0100245 config = of_get_gpio_regulator_config(dev, np,
Javier Martinez Canillas072e78b2014-11-10 14:43:53 +0100246 &drvdata->desc);
247 if (IS_ERR(config))
248 return PTR_ERR(config);
249 }
250
Linus Walleijd162d042019-01-29 11:31:55 +0100251 drvdata->desc.name = devm_kstrdup(dev, config->supply_name, GFP_KERNEL);
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200252 if (drvdata->desc.name == NULL) {
Linus Walleijd162d042019-01-29 11:31:55 +0100253 dev_err(dev, "Failed to allocate supply name\n");
Christophe Jailleted8cffd2018-03-13 21:33:11 +0100254 return -ENOMEM;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200255 }
256
Linus Walleijd162d042019-01-29 11:31:55 +0100257 drvdata->gpiods = devm_kzalloc(dev, sizeof(struct gpio_desc *),
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100258 GFP_KERNEL);
259 if (!drvdata->gpiods)
260 return -ENOMEM;
261 for (i = 0; i < config->ngpios; i++) {
Linus Walleijd162d042019-01-29 11:31:55 +0100262 drvdata->gpiods[i] = devm_gpiod_get_index(dev,
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100263 NULL,
264 i,
265 config->gflags[i]);
266 if (IS_ERR(drvdata->gpiods[i]))
267 return PTR_ERR(drvdata->gpiods[i]);
268 /* This is good to know */
269 gpiod_set_consumer_name(drvdata->gpiods[i], drvdata->desc.name);
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200270 }
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100271 drvdata->nr_gpios = config->ngpios;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200272
Linus Walleijd162d042019-01-29 11:31:55 +0100273 drvdata->states = devm_kmemdup(dev,
274 config->states,
275 config->nr_states *
276 sizeof(struct gpio_regulator_state),
277 GFP_KERNEL);
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200278 if (drvdata->states == NULL) {
Linus Walleijd162d042019-01-29 11:31:55 +0100279 dev_err(dev, "Failed to allocate state data\n");
280 return -ENOMEM;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200281 }
282 drvdata->nr_states = config->nr_states;
283
284 drvdata->desc.owner = THIS_MODULE;
Axel Lina2a82222012-07-04 10:19:46 +0800285 drvdata->desc.enable_time = config->startup_delay;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200286
287 /* handle regulator type*/
288 switch (config->type) {
289 case REGULATOR_VOLTAGE:
290 drvdata->desc.type = REGULATOR_VOLTAGE;
291 drvdata->desc.ops = &gpio_regulator_voltage_ops;
292 drvdata->desc.n_voltages = config->nr_states;
293 break;
294 case REGULATOR_CURRENT:
295 drvdata->desc.type = REGULATOR_CURRENT;
296 drvdata->desc.ops = &gpio_regulator_current_ops;
297 break;
298 default:
Linus Walleijd162d042019-01-29 11:31:55 +0100299 dev_err(dev, "No regulator type set\n");
300 return -EINVAL;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200301 }
302
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200303 /* build initial state from gpio init data. */
304 state = 0;
305 for (ptr = 0; ptr < drvdata->nr_gpios; ptr++) {
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100306 if (config->gflags[ptr] == GPIOD_OUT_HIGH)
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200307 state |= (1 << ptr);
308 }
309 drvdata->state = state;
310
Linus Walleijd162d042019-01-29 11:31:55 +0100311 cfg.dev = dev;
Mark Brownc172708d2012-04-04 00:50:22 +0100312 cfg.init_data = config->init_data;
Heiko Stübner7d4be2f2012-06-03 21:30:33 +0200313 cfg.driver_data = drvdata;
Frank Lif8a9f752012-11-12 17:59:52 +0800314 cfg.of_node = np;
Mark Brownc172708d2012-04-04 00:50:22 +0100315
Linus Walleijd6cd33a2019-01-29 11:31:52 +0100316 /*
317 * The signal will be inverted by the GPIO core if flagged so in the
318 * decriptor.
319 */
320 if (config->enabled_at_boot)
321 gflags = GPIOD_OUT_HIGH | GPIOD_FLAGS_BIT_NONEXCLUSIVE;
322 else
323 gflags = GPIOD_OUT_LOW | GPIOD_FLAGS_BIT_NONEXCLUSIVE;
324
Linus Walleijd162d042019-01-29 11:31:55 +0100325 cfg.ena_gpiod = gpiod_get_optional(dev, "enable", gflags);
326 if (IS_ERR(cfg.ena_gpiod))
327 return PTR_ERR(cfg.ena_gpiod);
Axel Lin4b7c9482012-07-04 10:20:46 +0800328
Mark Brownc172708d2012-04-04 00:50:22 +0100329 drvdata->dev = regulator_register(&drvdata->desc, &cfg);
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200330 if (IS_ERR(drvdata->dev)) {
331 ret = PTR_ERR(drvdata->dev);
Linus Walleijd162d042019-01-29 11:31:55 +0100332 dev_err(dev, "Failed to register regulator: %d\n", ret);
333 return ret;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200334 }
335
336 platform_set_drvdata(pdev, drvdata);
337
338 return 0;
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200339}
340
Bill Pemberton8dc995f2012-11-19 13:26:10 -0500341static int gpio_regulator_remove(struct platform_device *pdev)
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200342{
343 struct gpio_regulator_data *drvdata = platform_get_drvdata(pdev);
344
345 regulator_unregister(drvdata->dev);
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200346
347 return 0;
348}
349
Axel Linec4f7b82012-12-04 10:32:05 +0800350#if defined(CONFIG_OF)
Greg Kroah-Hartman3d68dfe2012-12-21 13:26:06 -0800351static const struct of_device_id regulator_gpio_of_match[] = {
Lee Jones006694d2012-10-15 14:16:59 +0100352 { .compatible = "regulator-gpio", },
353 {},
354};
Luis de Bethencourt2f9481e2015-09-18 19:09:24 +0200355MODULE_DEVICE_TABLE(of, regulator_gpio_of_match);
Axel Linec4f7b82012-12-04 10:32:05 +0800356#endif
Lee Jones006694d2012-10-15 14:16:59 +0100357
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200358static struct platform_driver gpio_regulator_driver = {
359 .probe = gpio_regulator_probe,
Bill Pemberton5eb9f2b2012-11-19 13:20:42 -0500360 .remove = gpio_regulator_remove,
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200361 .driver = {
362 .name = "gpio-regulator",
Axel Linec4f7b82012-12-04 10:32:05 +0800363 .of_match_table = of_match_ptr(regulator_gpio_of_match),
Heiko Stübner3f0292a2011-10-05 12:27:05 +0200364 },
365};
366
367static int __init gpio_regulator_init(void)
368{
369 return platform_driver_register(&gpio_regulator_driver);
370}
371subsys_initcall(gpio_regulator_init);
372
373static void __exit gpio_regulator_exit(void)
374{
375 platform_driver_unregister(&gpio_regulator_driver);
376}
377module_exit(gpio_regulator_exit);
378
379MODULE_AUTHOR("Heiko Stuebner <heiko@sntech.de>");
380MODULE_DESCRIPTION("gpio voltage regulator");
381MODULE_LICENSE("GPL");
382MODULE_ALIAS("platform:gpio-regulator");