blob: b8c3a910502a83dbc767bb79f61d6b47e746def0 [file] [log] [blame]
Mark Brown4b74ff62008-04-30 16:27:12 +01001/*
2 * fixed.c
3 *
4 * Copyright 2008 Wolfson Microelectronics PLC.
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
Roger Quadros86d98842009-08-06 19:37:29 +03008 * Copyright (c) 2009 Nokia Corporation
9 * Roger Quadros <ext-roger.quadros@nokia.com>
10 *
Mark Brown4b74ff62008-04-30 16:27:12 +010011 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of the
14 * License, or (at your option) any later version.
15 *
16 * This is useful for systems with mixed controllable and
17 * non-controllable regulators, as well as for allowing testing on
18 * systems with no controllable regulators.
19 */
20
21#include <linux/err.h>
22#include <linux/mutex.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040023#include <linux/module.h>
Mark Brown4b74ff62008-04-30 16:27:12 +010024#include <linux/platform_device.h>
25#include <linux/regulator/driver.h>
26#include <linux/regulator/fixed.h>
Roger Quadros86d98842009-08-06 19:37:29 +030027#include <linux/gpio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Rajendra Nayakcef49102011-11-18 16:47:18 +053029#include <linux/of.h>
30#include <linux/of_gpio.h>
31#include <linux/regulator/of_regulator.h>
32#include <linux/regulator/machine.h>
Mark Brown4b74ff62008-04-30 16:27:12 +010033
34struct fixed_voltage_data {
35 struct regulator_desc desc;
36 struct regulator_dev *dev;
37 int microvolts;
Roger Quadros86d98842009-08-06 19:37:29 +030038 int gpio;
Adrian Huntereda79a32010-01-12 12:25:13 +020039 unsigned startup_delay;
Dmitry Torokhov8ab33432010-02-23 23:37:55 -080040 bool enable_high;
41 bool is_enabled;
Mark Brown4b74ff62008-04-30 16:27:12 +010042};
43
Rajendra Nayakcef49102011-11-18 16:47:18 +053044
45/**
46 * of_get_fixed_voltage_config - extract fixed_voltage_config structure info
47 * @dev: device requesting for fixed_voltage_config
48 *
49 * Populates fixed_voltage_config structure by extracting data from device
50 * tree node, returns a pointer to the populated structure of NULL if memory
51 * alloc fails.
52 */
Axel Linbc913962011-11-27 10:35:08 +080053static struct fixed_voltage_config *
54of_get_fixed_voltage_config(struct device *dev)
Rajendra Nayakcef49102011-11-18 16:47:18 +053055{
56 struct fixed_voltage_config *config;
57 struct device_node *np = dev->of_node;
58 const __be32 *delay;
59 struct regulator_init_data *init_data;
60
61 config = devm_kzalloc(dev, sizeof(struct fixed_voltage_config),
62 GFP_KERNEL);
63 if (!config)
Stephen Warrenf1418222012-06-29 10:33:15 -060064 return ERR_PTR(-ENOMEM);
Rajendra Nayakcef49102011-11-18 16:47:18 +053065
Shawn Guod9a861c2011-12-01 17:21:06 +080066 config->init_data = of_get_regulator_init_data(dev, dev->of_node);
Axel Lin4b864af2011-11-26 20:19:19 +080067 if (!config->init_data)
Stephen Warrenf1418222012-06-29 10:33:15 -060068 return ERR_PTR(-EINVAL);
Axel Lin4b864af2011-11-26 20:19:19 +080069
Rajendra Nayakcef49102011-11-18 16:47:18 +053070 init_data = config->init_data;
Richard Zhao0c437c42012-01-04 11:07:29 +080071 init_data->constraints.apply_uV = 0;
Rajendra Nayakcef49102011-11-18 16:47:18 +053072
73 config->supply_name = init_data->constraints.name;
74 if (init_data->constraints.min_uV == init_data->constraints.max_uV) {
75 config->microvolts = init_data->constraints.min_uV;
76 } else {
77 dev_err(dev,
78 "Fixed regulator specified with variable voltages\n");
Stephen Warrenf1418222012-06-29 10:33:15 -060079 return ERR_PTR(-EINVAL);
Rajendra Nayakcef49102011-11-18 16:47:18 +053080 }
81
82 if (init_data->constraints.boot_on)
83 config->enabled_at_boot = true;
84
85 config->gpio = of_get_named_gpio(np, "gpio", 0);
Stephen Warrenf1418222012-06-29 10:33:15 -060086 /*
87 * of_get_named_gpio() currently returns ENODEV rather than
88 * EPROBE_DEFER. This code attempts to be compatible with both
89 * for now; the ENODEV check can be removed once the API is fixed.
90 * of_get_named_gpio() doesn't differentiate between a missing
91 * property (which would be fine here, since the GPIO is optional)
92 * and some other error. Patches have been posted for both issues.
93 * Once they are check in, we should replace this with:
94 * if (config->gpio < 0 && config->gpio != -ENOENT)
95 */
96 if ((config->gpio == -ENODEV) || (config->gpio == -EPROBE_DEFER))
97 return ERR_PTR(-EPROBE_DEFER);
98
Rajendra Nayakcef49102011-11-18 16:47:18 +053099 delay = of_get_property(np, "startup-delay-us", NULL);
100 if (delay)
101 config->startup_delay = be32_to_cpu(*delay);
102
103 if (of_find_property(np, "enable-active-high", NULL))
104 config->enable_high = true;
105
Laxman Dewangan9a50dba2012-05-07 15:58:19 +0530106 if (of_find_property(np, "gpio-open-drain", NULL))
107 config->gpio_is_open_drain = true;
108
Rajendra Nayakcef49102011-11-18 16:47:18 +0530109 return config;
110}
111
Mark Brown4b74ff62008-04-30 16:27:12 +0100112static int fixed_voltage_is_enabled(struct regulator_dev *dev)
113{
Roger Quadros86d98842009-08-06 19:37:29 +0300114 struct fixed_voltage_data *data = rdev_get_drvdata(dev);
115
116 return data->is_enabled;
Mark Brown4b74ff62008-04-30 16:27:12 +0100117}
118
119static int fixed_voltage_enable(struct regulator_dev *dev)
120{
Roger Quadros86d98842009-08-06 19:37:29 +0300121 struct fixed_voltage_data *data = rdev_get_drvdata(dev);
122
Mark Brown9d442062012-03-21 20:04:44 +0000123 gpio_set_value_cansleep(data->gpio, data->enable_high);
124 data->is_enabled = true;
Roger Quadros86d98842009-08-06 19:37:29 +0300125
126 return 0;
127}
128
129static int fixed_voltage_disable(struct regulator_dev *dev)
130{
131 struct fixed_voltage_data *data = rdev_get_drvdata(dev);
132
Mark Brown9d442062012-03-21 20:04:44 +0000133 gpio_set_value_cansleep(data->gpio, !data->enable_high);
134 data->is_enabled = false;
Roger Quadros86d98842009-08-06 19:37:29 +0300135
Mark Brown4b74ff62008-04-30 16:27:12 +0100136 return 0;
137}
138
Mark Brown17133dc2010-01-28 10:21:05 +0000139static int fixed_voltage_enable_time(struct regulator_dev *dev)
140{
141 struct fixed_voltage_data *data = rdev_get_drvdata(dev);
142
143 return data->startup_delay;
144}
145
Mark Brown4b74ff62008-04-30 16:27:12 +0100146static int fixed_voltage_get_voltage(struct regulator_dev *dev)
147{
148 struct fixed_voltage_data *data = rdev_get_drvdata(dev);
149
Mark Brownaebe4952011-11-02 11:38:45 +0000150 if (data->microvolts)
151 return data->microvolts;
152 else
153 return -EINVAL;
Mark Brown4b74ff62008-04-30 16:27:12 +0100154}
155
Mark Brown9035cef2009-04-28 11:13:54 +0100156static int fixed_voltage_list_voltage(struct regulator_dev *dev,
157 unsigned selector)
158{
159 struct fixed_voltage_data *data = rdev_get_drvdata(dev);
160
161 if (selector != 0)
162 return -EINVAL;
163
164 return data->microvolts;
165}
166
Mark Brown9d442062012-03-21 20:04:44 +0000167static struct regulator_ops fixed_voltage_gpio_ops = {
Mark Brown4b74ff62008-04-30 16:27:12 +0100168 .is_enabled = fixed_voltage_is_enabled,
169 .enable = fixed_voltage_enable,
Roger Quadros86d98842009-08-06 19:37:29 +0300170 .disable = fixed_voltage_disable,
Mark Brown17133dc2010-01-28 10:21:05 +0000171 .enable_time = fixed_voltage_enable_time,
Mark Brown4b74ff62008-04-30 16:27:12 +0100172 .get_voltage = fixed_voltage_get_voltage,
Mark Brown9035cef2009-04-28 11:13:54 +0100173 .list_voltage = fixed_voltage_list_voltage,
Mark Brown4b74ff62008-04-30 16:27:12 +0100174};
175
Mark Brown9d442062012-03-21 20:04:44 +0000176static struct regulator_ops fixed_voltage_ops = {
177 .get_voltage = fixed_voltage_get_voltage,
178 .list_voltage = fixed_voltage_list_voltage,
179};
180
Dmitry Torokhov8ab33432010-02-23 23:37:55 -0800181static int __devinit reg_fixed_voltage_probe(struct platform_device *pdev)
Mark Brown4b74ff62008-04-30 16:27:12 +0100182{
Axel Lin22d881c2011-11-27 20:07:57 +0800183 struct fixed_voltage_config *config;
Mark Brown4b74ff62008-04-30 16:27:12 +0100184 struct fixed_voltage_data *drvdata;
Mark Brownc1727082012-04-04 00:50:22 +0100185 struct regulator_config cfg = { };
Mark Brown4b74ff62008-04-30 16:27:12 +0100186 int ret;
187
Stephen Warrenf1418222012-06-29 10:33:15 -0600188 if (pdev->dev.of_node) {
Rajendra Nayakcef49102011-11-18 16:47:18 +0530189 config = of_get_fixed_voltage_config(&pdev->dev);
Stephen Warrenf1418222012-06-29 10:33:15 -0600190 if (IS_ERR(config))
191 return PTR_ERR(config);
192 } else {
Axel Lin22d881c2011-11-27 20:07:57 +0800193 config = pdev->dev.platform_data;
Stephen Warrenf1418222012-06-29 10:33:15 -0600194 }
Axel Lin22d881c2011-11-27 20:07:57 +0800195
196 if (!config)
197 return -ENOMEM;
Rajendra Nayakcef49102011-11-18 16:47:18 +0530198
Mark Brownc45bb352012-03-21 18:13:29 +0000199 drvdata = devm_kzalloc(&pdev->dev, sizeof(struct fixed_voltage_data),
200 GFP_KERNEL);
Mark Brown4b74ff62008-04-30 16:27:12 +0100201 if (drvdata == NULL) {
Mark Brownc53ad7f2009-08-03 18:49:53 +0100202 dev_err(&pdev->dev, "Failed to allocate device data\n");
Mark Brown4b74ff62008-04-30 16:27:12 +0100203 ret = -ENOMEM;
204 goto err;
205 }
206
207 drvdata->desc.name = kstrdup(config->supply_name, GFP_KERNEL);
208 if (drvdata->desc.name == NULL) {
Mark Brownc53ad7f2009-08-03 18:49:53 +0100209 dev_err(&pdev->dev, "Failed to allocate supply name\n");
Mark Brown4b74ff62008-04-30 16:27:12 +0100210 ret = -ENOMEM;
211 goto err;
212 }
213 drvdata->desc.type = REGULATOR_VOLTAGE;
214 drvdata->desc.owner = THIS_MODULE;
Sascha Hauer1c37f8a2012-03-03 12:40:01 +0100215
216 if (config->microvolts)
217 drvdata->desc.n_voltages = 1;
Mark Brown4b74ff62008-04-30 16:27:12 +0100218
219 drvdata->microvolts = config->microvolts;
Roger Quadros86d98842009-08-06 19:37:29 +0300220 drvdata->gpio = config->gpio;
Adrian Huntereda79a32010-01-12 12:25:13 +0200221 drvdata->startup_delay = config->startup_delay;
Roger Quadros86d98842009-08-06 19:37:29 +0300222
223 if (gpio_is_valid(config->gpio)) {
Laxman Dewangana4d9f172012-03-07 15:58:33 +0530224 int gpio_flag;
Roger Quadros86d98842009-08-06 19:37:29 +0300225 drvdata->enable_high = config->enable_high;
226
227 /* FIXME: Remove below print warning
228 *
229 * config->gpio must be set to -EINVAL by platform code if
230 * GPIO control is not required. However, early adopters
231 * not requiring GPIO control may forget to initialize
232 * config->gpio to -EINVAL. This will cause GPIO 0 to be used
233 * for GPIO control.
234 *
235 * This warning will be removed once there are a couple of users
236 * for this driver.
237 */
238 if (!config->gpio)
239 dev_warn(&pdev->dev,
240 "using GPIO 0 for regulator enable control\n");
241
Laxman Dewangana4d9f172012-03-07 15:58:33 +0530242 /*
243 * set output direction without changing state
Roger Quadros86d98842009-08-06 19:37:29 +0300244 * to prevent glitch
245 */
246 drvdata->is_enabled = config->enabled_at_boot;
247 ret = drvdata->is_enabled ?
248 config->enable_high : !config->enable_high;
Laxman Dewangana4d9f172012-03-07 15:58:33 +0530249 gpio_flag = ret ? GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW;
Roger Quadros86d98842009-08-06 19:37:29 +0300250
Laxman Dewangana4d9f172012-03-07 15:58:33 +0530251 if (config->gpio_is_open_drain)
252 gpio_flag |= GPIOF_OPEN_DRAIN;
253
254 ret = gpio_request_one(config->gpio, gpio_flag,
255 config->supply_name);
Roger Quadros86d98842009-08-06 19:37:29 +0300256 if (ret) {
257 dev_err(&pdev->dev,
Laxman Dewangana4d9f172012-03-07 15:58:33 +0530258 "Could not obtain regulator enable GPIO %d: %d\n",
Roger Quadros86d98842009-08-06 19:37:29 +0300259 config->gpio, ret);
Laxman Dewangana4d9f172012-03-07 15:58:33 +0530260 goto err_name;
Roger Quadros86d98842009-08-06 19:37:29 +0300261 }
262
Mark Brown9d442062012-03-21 20:04:44 +0000263 drvdata->desc.ops = &fixed_voltage_gpio_ops;
264
Roger Quadros86d98842009-08-06 19:37:29 +0300265 } else {
Mark Brown9d442062012-03-21 20:04:44 +0000266 drvdata->desc.ops = &fixed_voltage_ops;
Roger Quadros86d98842009-08-06 19:37:29 +0300267 }
Mark Brown4b74ff62008-04-30 16:27:12 +0100268
Mark Brownc1727082012-04-04 00:50:22 +0100269 cfg.dev = &pdev->dev;
270 cfg.init_data = config->init_data;
271 cfg.driver_data = drvdata;
272 cfg.of_node = pdev->dev.of_node;
273
274 drvdata->dev = regulator_register(&drvdata->desc, &cfg);
Mark Brown4b74ff62008-04-30 16:27:12 +0100275 if (IS_ERR(drvdata->dev)) {
276 ret = PTR_ERR(drvdata->dev);
Mark Brownc53ad7f2009-08-03 18:49:53 +0100277 dev_err(&pdev->dev, "Failed to register regulator: %d\n", ret);
Roger Quadros86d98842009-08-06 19:37:29 +0300278 goto err_gpio;
Mark Brown4b74ff62008-04-30 16:27:12 +0100279 }
280
281 platform_set_drvdata(pdev, drvdata);
282
283 dev_dbg(&pdev->dev, "%s supplying %duV\n", drvdata->desc.name,
284 drvdata->microvolts);
285
286 return 0;
287
Roger Quadros86d98842009-08-06 19:37:29 +0300288err_gpio:
289 if (gpio_is_valid(config->gpio))
290 gpio_free(config->gpio);
Mark Brown4b74ff62008-04-30 16:27:12 +0100291err_name:
292 kfree(drvdata->desc.name);
293err:
Mark Brown4b74ff62008-04-30 16:27:12 +0100294 return ret;
295}
296
Dmitry Torokhov8ab33432010-02-23 23:37:55 -0800297static int __devexit reg_fixed_voltage_remove(struct platform_device *pdev)
Mark Brown4b74ff62008-04-30 16:27:12 +0100298{
299 struct fixed_voltage_data *drvdata = platform_get_drvdata(pdev);
300
301 regulator_unregister(drvdata->dev);
Roger Quadros86d98842009-08-06 19:37:29 +0300302 if (gpio_is_valid(drvdata->gpio))
303 gpio_free(drvdata->gpio);
Dan Carpenter80099c72009-11-16 11:05:03 +0200304 kfree(drvdata->desc.name);
Roger Quadros86d98842009-08-06 19:37:29 +0300305
Mark Brown4b74ff62008-04-30 16:27:12 +0100306 return 0;
307}
308
Rajendra Nayakcef49102011-11-18 16:47:18 +0530309#if defined(CONFIG_OF)
310static const struct of_device_id fixed_of_match[] __devinitconst = {
311 { .compatible = "regulator-fixed", },
312 {},
313};
314MODULE_DEVICE_TABLE(of, fixed_of_match);
Rajendra Nayakcef49102011-11-18 16:47:18 +0530315#endif
316
Mark Brown4b74ff62008-04-30 16:27:12 +0100317static struct platform_driver regulator_fixed_voltage_driver = {
Dmitry Torokhov8ab33432010-02-23 23:37:55 -0800318 .probe = reg_fixed_voltage_probe,
319 .remove = __devexit_p(reg_fixed_voltage_remove),
Mark Brown4b74ff62008-04-30 16:27:12 +0100320 .driver = {
321 .name = "reg-fixed-voltage",
Dmitry Torokhov8ab33432010-02-23 23:37:55 -0800322 .owner = THIS_MODULE,
Axel Linabcfaf22012-06-01 12:16:25 +0800323 .of_match_table = of_match_ptr(fixed_of_match),
Mark Brown4b74ff62008-04-30 16:27:12 +0100324 },
325};
326
327static int __init regulator_fixed_voltage_init(void)
328{
329 return platform_driver_register(&regulator_fixed_voltage_driver);
330}
Mark Brown5a1b22b2009-04-27 18:21:18 +0100331subsys_initcall(regulator_fixed_voltage_init);
Mark Brown4b74ff62008-04-30 16:27:12 +0100332
333static void __exit regulator_fixed_voltage_exit(void)
334{
335 platform_driver_unregister(&regulator_fixed_voltage_driver);
336}
337module_exit(regulator_fixed_voltage_exit);
338
339MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
340MODULE_DESCRIPTION("Fixed voltage regulator");
341MODULE_LICENSE("GPL");
Mark Brown38c53c82009-04-28 11:13:55 +0100342MODULE_ALIAS("platform:reg-fixed-voltage");