blob: b362dbde80f76cb4c8b0133ac8fe3d1eb443b696 [file] [log] [blame]
Liam Girdwood414c70c2008-04-30 15:59:04 +01001/*
2 * core.c -- Voltage/Current Regulator framework.
3 *
4 * Copyright 2007, 2008 Wolfson Microelectronics PLC.
Liam Girdwooda5766f12008-10-10 13:22:20 +01005 * Copyright 2008 SlimLogic Ltd.
Liam Girdwood414c70c2008-04-30 15:59:04 +01006 *
Liam Girdwooda5766f12008-10-10 13:22:20 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood414c70c2008-04-30 15:59:04 +01008 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
15
Daniel Walker1d7372e2010-11-17 15:30:28 -080016#define pr_fmt(fmt) "%s: " fmt, __func__
Daniel Walkerc5e28ed72010-11-17 15:30:27 -080017
Liam Girdwood414c70c2008-04-30 15:59:04 +010018#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010022#include <linux/err.h>
23#include <linux/mutex.h>
24#include <linux/suspend.h>
Mark Brown31aae2b2009-12-21 12:21:52 +000025#include <linux/delay.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010026#include <linux/regulator/consumer.h>
27#include <linux/regulator/driver.h>
28#include <linux/regulator/machine.h>
29
Mark Brown02fa3ec2010-11-10 14:38:30 +000030#define CREATE_TRACE_POINTS
31#include <trace/events/regulator.h>
32
Mark Brown34abbd62010-02-12 10:18:08 +000033#include "dummy.h"
34
Joe Perches5da84fd2010-11-30 05:53:48 -080035#define rdev_err(rdev, fmt, ...) \
36 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
37#define rdev_warn(rdev, fmt, ...) \
38 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
39#define rdev_info(rdev, fmt, ...) \
40 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
41#define rdev_dbg(rdev, fmt, ...) \
42 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
43
Liam Girdwood414c70c2008-04-30 15:59:04 +010044static DEFINE_MUTEX(regulator_list_mutex);
45static LIST_HEAD(regulator_list);
46static LIST_HEAD(regulator_map_list);
Mark Brownca725562009-03-16 19:36:34 +000047static int has_full_constraints;
Mark Brown688fe992010-10-05 19:18:32 -070048static bool board_wants_dummy_regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010049
Mark Brown8dc53902008-12-31 12:52:40 +000050/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010051 * struct regulator_map
52 *
53 * Used to provide symbolic supply names to devices.
54 */
55struct regulator_map {
56 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010057 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010058 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010059 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010060};
61
Liam Girdwood414c70c2008-04-30 15:59:04 +010062/*
63 * struct regulator
64 *
65 * One for each consumer device.
66 */
67struct regulator {
68 struct device *dev;
69 struct list_head list;
70 int uA_load;
71 int min_uV;
72 int max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +010073 char *supply_name;
74 struct device_attribute dev_attr;
75 struct regulator_dev *rdev;
76};
77
78static int _regulator_is_enabled(struct regulator_dev *rdev);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -050079static int _regulator_disable(struct regulator_dev *rdev,
80 struct regulator_dev **supply_rdev_ptr);
Liam Girdwood414c70c2008-04-30 15:59:04 +010081static int _regulator_get_voltage(struct regulator_dev *rdev);
82static int _regulator_get_current_limit(struct regulator_dev *rdev);
83static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
84static void _notifier_call_chain(struct regulator_dev *rdev,
85 unsigned long event, void *data);
86
Mark Brown1083c392009-10-22 16:31:32 +010087static const char *rdev_get_name(struct regulator_dev *rdev)
88{
89 if (rdev->constraints && rdev->constraints->name)
90 return rdev->constraints->name;
91 else if (rdev->desc->name)
92 return rdev->desc->name;
93 else
94 return "";
95}
96
Liam Girdwood414c70c2008-04-30 15:59:04 +010097/* gets the regulator for a given consumer device */
98static struct regulator *get_device_regulator(struct device *dev)
99{
100 struct regulator *regulator = NULL;
101 struct regulator_dev *rdev;
102
103 mutex_lock(&regulator_list_mutex);
104 list_for_each_entry(rdev, &regulator_list, list) {
105 mutex_lock(&rdev->mutex);
106 list_for_each_entry(regulator, &rdev->consumer_list, list) {
107 if (regulator->dev == dev) {
108 mutex_unlock(&rdev->mutex);
109 mutex_unlock(&regulator_list_mutex);
110 return regulator;
111 }
112 }
113 mutex_unlock(&rdev->mutex);
114 }
115 mutex_unlock(&regulator_list_mutex);
116 return NULL;
117}
118
119/* Platform voltage constraint check */
120static int regulator_check_voltage(struct regulator_dev *rdev,
121 int *min_uV, int *max_uV)
122{
123 BUG_ON(*min_uV > *max_uV);
124
125 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800126 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100127 return -ENODEV;
128 }
129 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800130 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100131 return -EPERM;
132 }
133
134 if (*max_uV > rdev->constraints->max_uV)
135 *max_uV = rdev->constraints->max_uV;
136 if (*min_uV < rdev->constraints->min_uV)
137 *min_uV = rdev->constraints->min_uV;
138
139 if (*min_uV > *max_uV)
140 return -EINVAL;
141
142 return 0;
143}
144
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100145/* Make sure we select a voltage that suits the needs of all
146 * regulator consumers
147 */
148static int regulator_check_consumers(struct regulator_dev *rdev,
149 int *min_uV, int *max_uV)
150{
151 struct regulator *regulator;
152
153 list_for_each_entry(regulator, &rdev->consumer_list, list) {
154 if (*max_uV > regulator->max_uV)
155 *max_uV = regulator->max_uV;
156 if (*min_uV < regulator->min_uV)
157 *min_uV = regulator->min_uV;
158 }
159
160 if (*min_uV > *max_uV)
161 return -EINVAL;
162
163 return 0;
164}
165
Liam Girdwood414c70c2008-04-30 15:59:04 +0100166/* current constraint check */
167static int regulator_check_current_limit(struct regulator_dev *rdev,
168 int *min_uA, int *max_uA)
169{
170 BUG_ON(*min_uA > *max_uA);
171
172 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800173 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100174 return -ENODEV;
175 }
176 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800177 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100178 return -EPERM;
179 }
180
181 if (*max_uA > rdev->constraints->max_uA)
182 *max_uA = rdev->constraints->max_uA;
183 if (*min_uA < rdev->constraints->min_uA)
184 *min_uA = rdev->constraints->min_uA;
185
186 if (*min_uA > *max_uA)
187 return -EINVAL;
188
189 return 0;
190}
191
192/* operating mode constraint check */
193static int regulator_check_mode(struct regulator_dev *rdev, int mode)
194{
David Brownelle5735202008-11-16 11:46:56 -0800195 switch (mode) {
196 case REGULATOR_MODE_FAST:
197 case REGULATOR_MODE_NORMAL:
198 case REGULATOR_MODE_IDLE:
199 case REGULATOR_MODE_STANDBY:
200 break;
201 default:
202 return -EINVAL;
203 }
204
Liam Girdwood414c70c2008-04-30 15:59:04 +0100205 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800206 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100207 return -ENODEV;
208 }
209 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800210 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100211 return -EPERM;
212 }
213 if (!(rdev->constraints->valid_modes_mask & mode)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800214 rdev_err(rdev, "invalid mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100215 return -EINVAL;
216 }
217 return 0;
218}
219
220/* dynamic regulator mode switching constraint check */
221static int regulator_check_drms(struct regulator_dev *rdev)
222{
223 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800224 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100225 return -ENODEV;
226 }
227 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800228 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100229 return -EPERM;
230 }
231 return 0;
232}
233
234static ssize_t device_requested_uA_show(struct device *dev,
235 struct device_attribute *attr, char *buf)
236{
237 struct regulator *regulator;
238
239 regulator = get_device_regulator(dev);
240 if (regulator == NULL)
241 return 0;
242
243 return sprintf(buf, "%d\n", regulator->uA_load);
244}
245
246static ssize_t regulator_uV_show(struct device *dev,
247 struct device_attribute *attr, char *buf)
248{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100249 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100250 ssize_t ret;
251
252 mutex_lock(&rdev->mutex);
253 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
254 mutex_unlock(&rdev->mutex);
255
256 return ret;
257}
David Brownell7ad68e22008-11-11 17:39:02 -0800258static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100259
260static ssize_t regulator_uA_show(struct device *dev,
261 struct device_attribute *attr, char *buf)
262{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100263 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100264
265 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
266}
David Brownell7ad68e22008-11-11 17:39:02 -0800267static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100268
Mark Brownbc558a62008-10-10 15:33:20 +0100269static ssize_t regulator_name_show(struct device *dev,
270 struct device_attribute *attr, char *buf)
271{
272 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100273
Mark Brown1083c392009-10-22 16:31:32 +0100274 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100275}
276
David Brownell4fca9542008-11-11 17:38:53 -0800277static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100278{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100279 switch (mode) {
280 case REGULATOR_MODE_FAST:
281 return sprintf(buf, "fast\n");
282 case REGULATOR_MODE_NORMAL:
283 return sprintf(buf, "normal\n");
284 case REGULATOR_MODE_IDLE:
285 return sprintf(buf, "idle\n");
286 case REGULATOR_MODE_STANDBY:
287 return sprintf(buf, "standby\n");
288 }
289 return sprintf(buf, "unknown\n");
290}
291
David Brownell4fca9542008-11-11 17:38:53 -0800292static ssize_t regulator_opmode_show(struct device *dev,
293 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100294{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100295 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100296
David Brownell4fca9542008-11-11 17:38:53 -0800297 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
298}
David Brownell7ad68e22008-11-11 17:39:02 -0800299static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800300
301static ssize_t regulator_print_state(char *buf, int state)
302{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100303 if (state > 0)
304 return sprintf(buf, "enabled\n");
305 else if (state == 0)
306 return sprintf(buf, "disabled\n");
307 else
308 return sprintf(buf, "unknown\n");
309}
310
David Brownell4fca9542008-11-11 17:38:53 -0800311static ssize_t regulator_state_show(struct device *dev,
312 struct device_attribute *attr, char *buf)
313{
314 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100315 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800316
Mark Brown93325462009-08-03 18:49:56 +0100317 mutex_lock(&rdev->mutex);
318 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
319 mutex_unlock(&rdev->mutex);
320
321 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800322}
David Brownell7ad68e22008-11-11 17:39:02 -0800323static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800324
David Brownell853116a2009-01-14 23:03:17 -0800325static ssize_t regulator_status_show(struct device *dev,
326 struct device_attribute *attr, char *buf)
327{
328 struct regulator_dev *rdev = dev_get_drvdata(dev);
329 int status;
330 char *label;
331
332 status = rdev->desc->ops->get_status(rdev);
333 if (status < 0)
334 return status;
335
336 switch (status) {
337 case REGULATOR_STATUS_OFF:
338 label = "off";
339 break;
340 case REGULATOR_STATUS_ON:
341 label = "on";
342 break;
343 case REGULATOR_STATUS_ERROR:
344 label = "error";
345 break;
346 case REGULATOR_STATUS_FAST:
347 label = "fast";
348 break;
349 case REGULATOR_STATUS_NORMAL:
350 label = "normal";
351 break;
352 case REGULATOR_STATUS_IDLE:
353 label = "idle";
354 break;
355 case REGULATOR_STATUS_STANDBY:
356 label = "standby";
357 break;
358 default:
359 return -ERANGE;
360 }
361
362 return sprintf(buf, "%s\n", label);
363}
364static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
365
Liam Girdwood414c70c2008-04-30 15:59:04 +0100366static ssize_t regulator_min_uA_show(struct device *dev,
367 struct device_attribute *attr, char *buf)
368{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100369 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100370
371 if (!rdev->constraints)
372 return sprintf(buf, "constraint not defined\n");
373
374 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
375}
David Brownell7ad68e22008-11-11 17:39:02 -0800376static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100377
378static ssize_t regulator_max_uA_show(struct device *dev,
379 struct device_attribute *attr, char *buf)
380{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100381 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100382
383 if (!rdev->constraints)
384 return sprintf(buf, "constraint not defined\n");
385
386 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
387}
David Brownell7ad68e22008-11-11 17:39:02 -0800388static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100389
390static ssize_t regulator_min_uV_show(struct device *dev,
391 struct device_attribute *attr, char *buf)
392{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100393 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100394
395 if (!rdev->constraints)
396 return sprintf(buf, "constraint not defined\n");
397
398 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
399}
David Brownell7ad68e22008-11-11 17:39:02 -0800400static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100401
402static ssize_t regulator_max_uV_show(struct device *dev,
403 struct device_attribute *attr, char *buf)
404{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100405 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100406
407 if (!rdev->constraints)
408 return sprintf(buf, "constraint not defined\n");
409
410 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
411}
David Brownell7ad68e22008-11-11 17:39:02 -0800412static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100413
414static ssize_t regulator_total_uA_show(struct device *dev,
415 struct device_attribute *attr, char *buf)
416{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100417 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100418 struct regulator *regulator;
419 int uA = 0;
420
421 mutex_lock(&rdev->mutex);
422 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100423 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100424 mutex_unlock(&rdev->mutex);
425 return sprintf(buf, "%d\n", uA);
426}
David Brownell7ad68e22008-11-11 17:39:02 -0800427static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100428
429static ssize_t regulator_num_users_show(struct device *dev,
430 struct device_attribute *attr, char *buf)
431{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100432 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100433 return sprintf(buf, "%d\n", rdev->use_count);
434}
435
436static ssize_t regulator_type_show(struct device *dev,
437 struct device_attribute *attr, char *buf)
438{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100439 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100440
441 switch (rdev->desc->type) {
442 case REGULATOR_VOLTAGE:
443 return sprintf(buf, "voltage\n");
444 case REGULATOR_CURRENT:
445 return sprintf(buf, "current\n");
446 }
447 return sprintf(buf, "unknown\n");
448}
449
450static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
451 struct device_attribute *attr, char *buf)
452{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100453 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100454
Liam Girdwood414c70c2008-04-30 15:59:04 +0100455 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
456}
David Brownell7ad68e22008-11-11 17:39:02 -0800457static DEVICE_ATTR(suspend_mem_microvolts, 0444,
458 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100459
460static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
461 struct device_attribute *attr, char *buf)
462{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100463 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100464
Liam Girdwood414c70c2008-04-30 15:59:04 +0100465 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
466}
David Brownell7ad68e22008-11-11 17:39:02 -0800467static DEVICE_ATTR(suspend_disk_microvolts, 0444,
468 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100469
470static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
471 struct device_attribute *attr, char *buf)
472{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100473 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100474
Liam Girdwood414c70c2008-04-30 15:59:04 +0100475 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
476}
David Brownell7ad68e22008-11-11 17:39:02 -0800477static DEVICE_ATTR(suspend_standby_microvolts, 0444,
478 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100479
Liam Girdwood414c70c2008-04-30 15:59:04 +0100480static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
481 struct device_attribute *attr, char *buf)
482{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100483 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100484
David Brownell4fca9542008-11-11 17:38:53 -0800485 return regulator_print_opmode(buf,
486 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100487}
David Brownell7ad68e22008-11-11 17:39:02 -0800488static DEVICE_ATTR(suspend_mem_mode, 0444,
489 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100490
491static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
492 struct device_attribute *attr, char *buf)
493{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100494 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100495
David Brownell4fca9542008-11-11 17:38:53 -0800496 return regulator_print_opmode(buf,
497 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100498}
David Brownell7ad68e22008-11-11 17:39:02 -0800499static DEVICE_ATTR(suspend_disk_mode, 0444,
500 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100501
502static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
503 struct device_attribute *attr, char *buf)
504{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100505 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100506
David Brownell4fca9542008-11-11 17:38:53 -0800507 return regulator_print_opmode(buf,
508 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100509}
David Brownell7ad68e22008-11-11 17:39:02 -0800510static DEVICE_ATTR(suspend_standby_mode, 0444,
511 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100512
513static ssize_t regulator_suspend_mem_state_show(struct device *dev,
514 struct device_attribute *attr, char *buf)
515{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100516 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100517
David Brownell4fca9542008-11-11 17:38:53 -0800518 return regulator_print_state(buf,
519 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100520}
David Brownell7ad68e22008-11-11 17:39:02 -0800521static DEVICE_ATTR(suspend_mem_state, 0444,
522 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100523
524static ssize_t regulator_suspend_disk_state_show(struct device *dev,
525 struct device_attribute *attr, char *buf)
526{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100527 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100528
David Brownell4fca9542008-11-11 17:38:53 -0800529 return regulator_print_state(buf,
530 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100531}
David Brownell7ad68e22008-11-11 17:39:02 -0800532static DEVICE_ATTR(suspend_disk_state, 0444,
533 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100534
535static ssize_t regulator_suspend_standby_state_show(struct device *dev,
536 struct device_attribute *attr, char *buf)
537{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100538 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100539
David Brownell4fca9542008-11-11 17:38:53 -0800540 return regulator_print_state(buf,
541 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100542}
David Brownell7ad68e22008-11-11 17:39:02 -0800543static DEVICE_ATTR(suspend_standby_state, 0444,
544 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100545
David Brownell7ad68e22008-11-11 17:39:02 -0800546
547/*
548 * These are the only attributes are present for all regulators.
549 * Other attributes are a function of regulator functionality.
550 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100551static struct device_attribute regulator_dev_attrs[] = {
Mark Brownbc558a62008-10-10 15:33:20 +0100552 __ATTR(name, 0444, regulator_name_show, NULL),
Liam Girdwood414c70c2008-04-30 15:59:04 +0100553 __ATTR(num_users, 0444, regulator_num_users_show, NULL),
554 __ATTR(type, 0444, regulator_type_show, NULL),
Liam Girdwood414c70c2008-04-30 15:59:04 +0100555 __ATTR_NULL,
556};
557
558static void regulator_dev_release(struct device *dev)
559{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100560 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100561 kfree(rdev);
562}
563
564static struct class regulator_class = {
565 .name = "regulator",
566 .dev_release = regulator_dev_release,
567 .dev_attrs = regulator_dev_attrs,
568};
569
570/* Calculate the new optimum regulator operating mode based on the new total
571 * consumer load. All locks held by caller */
572static void drms_uA_update(struct regulator_dev *rdev)
573{
574 struct regulator *sibling;
575 int current_uA = 0, output_uV, input_uV, err;
576 unsigned int mode;
577
578 err = regulator_check_drms(rdev);
579 if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
Mark Brown476c2d82010-12-10 17:28:07 +0000580 (!rdev->desc->ops->get_voltage &&
581 !rdev->desc->ops->get_voltage_sel) ||
582 !rdev->desc->ops->set_mode)
Dan Carpenter036de8e2009-04-08 13:52:39 +0300583 return;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100584
585 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000586 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100587 if (output_uV <= 0)
588 return;
589
590 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000591 input_uV = 0;
592 if (rdev->supply)
593 input_uV = _regulator_get_voltage(rdev);
594 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100595 input_uV = rdev->constraints->input_uV;
596 if (input_uV <= 0)
597 return;
598
599 /* calc total requested load */
600 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100601 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100602
603 /* now get the optimum mode for our new total regulator load */
604 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
605 output_uV, current_uA);
606
607 /* check the new mode is allowed */
608 err = regulator_check_mode(rdev, mode);
609 if (err == 0)
610 rdev->desc->ops->set_mode(rdev, mode);
611}
612
613static int suspend_set_state(struct regulator_dev *rdev,
614 struct regulator_state *rstate)
615{
616 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100617 bool can_set_state;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100618
Mark Brown638f85c2009-10-22 16:31:33 +0100619 can_set_state = rdev->desc->ops->set_suspend_enable &&
620 rdev->desc->ops->set_suspend_disable;
621
622 /* If we have no suspend mode configration don't set anything;
623 * only warn if the driver actually makes the suspend mode
624 * configurable.
625 */
626 if (!rstate->enabled && !rstate->disabled) {
627 if (can_set_state)
Joe Perches5da84fd2010-11-30 05:53:48 -0800628 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100629 return 0;
630 }
631
632 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800633 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100634 return -EINVAL;
635 }
636
637 if (!can_set_state) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800638 rdev_err(rdev, "no way to set suspend state\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100639 return -EINVAL;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100640 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100641
642 if (rstate->enabled)
643 ret = rdev->desc->ops->set_suspend_enable(rdev);
644 else
645 ret = rdev->desc->ops->set_suspend_disable(rdev);
646 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800647 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100648 return ret;
649 }
650
651 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
652 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
653 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800654 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100655 return ret;
656 }
657 }
658
659 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
660 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
661 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800662 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100663 return ret;
664 }
665 }
666 return ret;
667}
668
669/* locks held by caller */
670static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
671{
672 if (!rdev->constraints)
673 return -EINVAL;
674
675 switch (state) {
676 case PM_SUSPEND_STANDBY:
677 return suspend_set_state(rdev,
678 &rdev->constraints->state_standby);
679 case PM_SUSPEND_MEM:
680 return suspend_set_state(rdev,
681 &rdev->constraints->state_mem);
682 case PM_SUSPEND_MAX:
683 return suspend_set_state(rdev,
684 &rdev->constraints->state_disk);
685 default:
686 return -EINVAL;
687 }
688}
689
690static void print_constraints(struct regulator_dev *rdev)
691{
692 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000693 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100694 int count = 0;
695 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100696
Mark Brown8f031b42009-10-22 16:31:31 +0100697 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100698 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100699 count += sprintf(buf + count, "%d mV ",
700 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100701 else
Mark Brown8f031b42009-10-22 16:31:31 +0100702 count += sprintf(buf + count, "%d <--> %d mV ",
703 constraints->min_uV / 1000,
704 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100705 }
Mark Brown8f031b42009-10-22 16:31:31 +0100706
707 if (!constraints->min_uV ||
708 constraints->min_uV != constraints->max_uV) {
709 ret = _regulator_get_voltage(rdev);
710 if (ret > 0)
711 count += sprintf(buf + count, "at %d mV ", ret / 1000);
712 }
713
714 if (constraints->min_uA && constraints->max_uA) {
715 if (constraints->min_uA == constraints->max_uA)
716 count += sprintf(buf + count, "%d mA ",
717 constraints->min_uA / 1000);
718 else
719 count += sprintf(buf + count, "%d <--> %d mA ",
720 constraints->min_uA / 1000,
721 constraints->max_uA / 1000);
722 }
723
724 if (!constraints->min_uA ||
725 constraints->min_uA != constraints->max_uA) {
726 ret = _regulator_get_current_limit(rdev);
727 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400728 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100729 }
730
Liam Girdwood414c70c2008-04-30 15:59:04 +0100731 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
732 count += sprintf(buf + count, "fast ");
733 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
734 count += sprintf(buf + count, "normal ");
735 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
736 count += sprintf(buf + count, "idle ");
737 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
738 count += sprintf(buf + count, "standby");
739
Joe Perches5da84fd2010-11-30 05:53:48 -0800740 rdev_info(rdev, "regulator: %s\n", buf);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100741}
742
Mark Browne79055d2009-10-19 15:53:50 +0100743static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100744 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100745{
746 struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100747 int ret;
Mark Brown3a93f2a2010-11-10 14:38:29 +0000748 unsigned selector;
Mark Brownaf5866c2009-10-22 16:31:30 +0100749
750 /* do we need to apply the constraint voltage */
751 if (rdev->constraints->apply_uV &&
752 rdev->constraints->min_uV == rdev->constraints->max_uV &&
753 ops->set_voltage) {
754 ret = ops->set_voltage(rdev,
Mark Brown3a93f2a2010-11-10 14:38:29 +0000755 rdev->constraints->min_uV,
756 rdev->constraints->max_uV,
757 &selector);
Mark Brownaf5866c2009-10-22 16:31:30 +0100758 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800759 rdev_err(rdev, "failed to apply %duV constraint\n",
760 rdev->constraints->min_uV);
Mark Brownaf5866c2009-10-22 16:31:30 +0100761 rdev->constraints = NULL;
762 return ret;
763 }
764 }
Mark Browne79055d2009-10-19 15:53:50 +0100765
766 /* constrain machine-level voltage specs to fit
767 * the actual range supported by this regulator.
768 */
769 if (ops->list_voltage && rdev->desc->n_voltages) {
770 int count = rdev->desc->n_voltages;
771 int i;
772 int min_uV = INT_MAX;
773 int max_uV = INT_MIN;
774 int cmin = constraints->min_uV;
775 int cmax = constraints->max_uV;
776
777 /* it's safe to autoconfigure fixed-voltage supplies
778 and the constraints are used by list_voltage. */
779 if (count == 1 && !cmin) {
780 cmin = 1;
781 cmax = INT_MAX;
782 constraints->min_uV = cmin;
783 constraints->max_uV = cmax;
784 }
785
786 /* voltage constraints are optional */
787 if ((cmin == 0) && (cmax == 0))
788 return 0;
789
790 /* else require explicit machine-level constraints */
791 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800792 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100793 return -EINVAL;
794 }
795
796 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
797 for (i = 0; i < count; i++) {
798 int value;
799
800 value = ops->list_voltage(rdev, i);
801 if (value <= 0)
802 continue;
803
804 /* maybe adjust [min_uV..max_uV] */
805 if (value >= cmin && value < min_uV)
806 min_uV = value;
807 if (value <= cmax && value > max_uV)
808 max_uV = value;
809 }
810
811 /* final: [min_uV..max_uV] valid iff constraints valid */
812 if (max_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800813 rdev_err(rdev, "unsupportable voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100814 return -EINVAL;
815 }
816
817 /* use regulator's subset of machine constraints */
818 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800819 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
820 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100821 constraints->min_uV = min_uV;
822 }
823 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800824 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
825 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100826 constraints->max_uV = max_uV;
827 }
828 }
829
830 return 0;
831}
832
Liam Girdwooda5766f12008-10-10 13:22:20 +0100833/**
834 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000835 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000836 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100837 *
838 * Allows platform initialisation code to define and constrain
839 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
840 * Constraints *must* be set by platform code in order for some
841 * regulator operations to proceed i.e. set_voltage, set_current_limit,
842 * set_mode.
843 */
844static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000845 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100846{
847 int ret = 0;
Mark Browne5fda262008-09-09 16:21:20 +0100848 struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100849
Mark Brownf8c12fe2010-11-29 15:55:17 +0000850 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
851 GFP_KERNEL);
852 if (!rdev->constraints)
853 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100854
Mark Brownf8c12fe2010-11-29 15:55:17 +0000855 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100856 if (ret != 0)
857 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800858
Liam Girdwooda5766f12008-10-10 13:22:20 +0100859 /* do we need to setup our suspend state */
Mark Browne06f5b42008-09-09 16:21:19 +0100860 if (constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +0000861 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +0100862 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800863 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +0100864 rdev->constraints = NULL;
865 goto out;
866 }
867 }
Liam Girdwooda5766f12008-10-10 13:22:20 +0100868
Mark Browna3084662009-02-26 19:24:19 +0000869 if (constraints->initial_mode) {
870 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800871 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +0000872 ret = -EINVAL;
873 goto out;
874 }
875
Mark Brownf8c12fe2010-11-29 15:55:17 +0000876 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +0000877 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800878 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +0000879 goto out;
880 }
881 }
882
Mark Browncacf90f2009-03-02 16:32:46 +0000883 /* If the constraints say the regulator should be on at this point
884 * and we have control then make sure it is enabled.
885 */
Mark Brownf8c12fe2010-11-29 15:55:17 +0000886 if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
887 ops->enable) {
Mark Browne5fda262008-09-09 16:21:20 +0100888 ret = ops->enable(rdev);
889 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800890 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +0100891 rdev->constraints = NULL;
892 goto out;
893 }
894 }
895
Liam Girdwooda5766f12008-10-10 13:22:20 +0100896 print_constraints(rdev);
897out:
898 return ret;
899}
900
901/**
902 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +0000903 * @rdev: regulator name
904 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +0100905 *
906 * Called by platform initialisation code to set the supply regulator for this
907 * regulator. This ensures that a regulators supply will also be enabled by the
908 * core if it's child is enabled.
909 */
910static int set_supply(struct regulator_dev *rdev,
911 struct regulator_dev *supply_rdev)
912{
913 int err;
914
915 err = sysfs_create_link(&rdev->dev.kobj, &supply_rdev->dev.kobj,
916 "supply");
917 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800918 rdev_err(rdev, "could not add device link %s err %d\n",
919 supply_rdev->dev.kobj.name, err);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100920 goto out;
921 }
922 rdev->supply = supply_rdev;
923 list_add(&rdev->slist, &supply_rdev->supply_list);
924out:
925 return err;
926}
927
928/**
Randy Dunlap06c63f92010-11-18 15:02:26 -0800929 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +0000930 * @rdev: regulator source
931 * @consumer_dev: device the supply applies to
Mark Brown40f92442009-06-17 17:56:39 +0100932 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +0000933 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100934 *
935 * Allows platform initialisation code to map physical regulator
936 * sources to symbolic names for supplies for use by devices. Devices
937 * should use these symbolic names to request regulators, avoiding the
938 * need to provide board-specific regulator names as platform data.
Mark Brown40f92442009-06-17 17:56:39 +0100939 *
940 * Only one of consumer_dev and consumer_dev_name may be specified.
Liam Girdwooda5766f12008-10-10 13:22:20 +0100941 */
942static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown40f92442009-06-17 17:56:39 +0100943 struct device *consumer_dev, const char *consumer_dev_name,
944 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100945{
946 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +0100947 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100948
Mark Brown40f92442009-06-17 17:56:39 +0100949 if (consumer_dev && consumer_dev_name)
950 return -EINVAL;
951
952 if (!consumer_dev_name && consumer_dev)
953 consumer_dev_name = dev_name(consumer_dev);
954
Liam Girdwooda5766f12008-10-10 13:22:20 +0100955 if (supply == NULL)
956 return -EINVAL;
957
Mark Brown9ed20992009-07-21 16:00:26 +0100958 if (consumer_dev_name != NULL)
959 has_dev = 1;
960 else
961 has_dev = 0;
962
David Brownell6001e132008-12-31 12:54:19 +0000963 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +0300964 if (node->dev_name && consumer_dev_name) {
965 if (strcmp(node->dev_name, consumer_dev_name) != 0)
966 continue;
967 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +0000968 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +0300969 }
970
David Brownell6001e132008-12-31 12:54:19 +0000971 if (strcmp(node->supply, supply) != 0)
972 continue;
973
974 dev_dbg(consumer_dev, "%s/%s is '%s' supply; fail %s/%s\n",
Joe Perches5da84fd2010-11-30 05:53:48 -0800975 dev_name(&node->regulator->dev),
976 node->regulator->desc->name,
977 supply,
978 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +0000979 return -EBUSY;
980 }
981
Mark Brown9ed20992009-07-21 16:00:26 +0100982 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100983 if (node == NULL)
984 return -ENOMEM;
985
986 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100987 node->supply = supply;
988
Mark Brown9ed20992009-07-21 16:00:26 +0100989 if (has_dev) {
990 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
991 if (node->dev_name == NULL) {
992 kfree(node);
993 return -ENOMEM;
994 }
Mark Brown40f92442009-06-17 17:56:39 +0100995 }
996
Liam Girdwooda5766f12008-10-10 13:22:20 +0100997 list_add(&node->list, &regulator_map_list);
998 return 0;
999}
1000
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001001static void unset_regulator_supplies(struct regulator_dev *rdev)
1002{
1003 struct regulator_map *node, *n;
1004
1005 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1006 if (rdev == node->regulator) {
1007 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001008 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001009 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001010 }
1011 }
1012}
1013
Liam Girdwood414c70c2008-04-30 15:59:04 +01001014#define REG_STR_SIZE 32
1015
1016static struct regulator *create_regulator(struct regulator_dev *rdev,
1017 struct device *dev,
1018 const char *supply_name)
1019{
1020 struct regulator *regulator;
1021 char buf[REG_STR_SIZE];
1022 int err, size;
1023
1024 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1025 if (regulator == NULL)
1026 return NULL;
1027
1028 mutex_lock(&rdev->mutex);
1029 regulator->rdev = rdev;
1030 list_add(&regulator->list, &rdev->consumer_list);
1031
1032 if (dev) {
1033 /* create a 'requested_microamps_name' sysfs entry */
1034 size = scnprintf(buf, REG_STR_SIZE, "microamps_requested_%s",
1035 supply_name);
1036 if (size >= REG_STR_SIZE)
1037 goto overflow_err;
1038
1039 regulator->dev = dev;
Ameya Palande4f26a2a2010-03-12 20:09:01 +02001040 sysfs_attr_init(&regulator->dev_attr.attr);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001041 regulator->dev_attr.attr.name = kstrdup(buf, GFP_KERNEL);
1042 if (regulator->dev_attr.attr.name == NULL)
1043 goto attr_name_err;
1044
Liam Girdwood414c70c2008-04-30 15:59:04 +01001045 regulator->dev_attr.attr.mode = 0444;
1046 regulator->dev_attr.show = device_requested_uA_show;
1047 err = device_create_file(dev, &regulator->dev_attr);
1048 if (err < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001049 rdev_warn(rdev, "could not add regulator_dev requested microamps sysfs entry\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001050 goto attr_name_err;
1051 }
1052
1053 /* also add a link to the device sysfs entry */
1054 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1055 dev->kobj.name, supply_name);
1056 if (size >= REG_STR_SIZE)
1057 goto attr_err;
1058
1059 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1060 if (regulator->supply_name == NULL)
1061 goto attr_err;
1062
1063 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1064 buf);
1065 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001066 rdev_warn(rdev, "could not add device link %s err %d\n",
1067 dev->kobj.name, err);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001068 goto link_name_err;
1069 }
1070 }
1071 mutex_unlock(&rdev->mutex);
1072 return regulator;
1073link_name_err:
1074 kfree(regulator->supply_name);
1075attr_err:
1076 device_remove_file(regulator->dev, &regulator->dev_attr);
1077attr_name_err:
1078 kfree(regulator->dev_attr.attr.name);
1079overflow_err:
1080 list_del(&regulator->list);
1081 kfree(regulator);
1082 mutex_unlock(&rdev->mutex);
1083 return NULL;
1084}
1085
Mark Brown31aae2b2009-12-21 12:21:52 +00001086static int _regulator_get_enable_time(struct regulator_dev *rdev)
1087{
1088 if (!rdev->desc->ops->enable_time)
1089 return 0;
1090 return rdev->desc->ops->enable_time(rdev);
1091}
1092
Mark Brown5ffbd132009-07-21 16:00:23 +01001093/* Internal regulator request function */
1094static struct regulator *_regulator_get(struct device *dev, const char *id,
1095 int exclusive)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001096{
1097 struct regulator_dev *rdev;
1098 struct regulator_map *map;
1099 struct regulator *regulator = ERR_PTR(-ENODEV);
Mark Brown40f92442009-06-17 17:56:39 +01001100 const char *devname = NULL;
Mark Brown5ffbd132009-07-21 16:00:23 +01001101 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001102
1103 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001104 pr_err("get() with no identifier\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001105 return regulator;
1106 }
1107
Mark Brown40f92442009-06-17 17:56:39 +01001108 if (dev)
1109 devname = dev_name(dev);
1110
Liam Girdwood414c70c2008-04-30 15:59:04 +01001111 mutex_lock(&regulator_list_mutex);
1112
1113 list_for_each_entry(map, &regulator_map_list, list) {
Mark Brown40f92442009-06-17 17:56:39 +01001114 /* If the mapping has a device set up it must match */
1115 if (map->dev_name &&
1116 (!devname || strcmp(map->dev_name, devname)))
1117 continue;
1118
1119 if (strcmp(map->supply, id) == 0) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01001120 rdev = map->regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001121 goto found;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001122 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01001123 }
Mark Brown34abbd62010-02-12 10:18:08 +00001124
Mark Brown688fe992010-10-05 19:18:32 -07001125 if (board_wants_dummy_regulator) {
1126 rdev = dummy_regulator_rdev;
1127 goto found;
1128 }
1129
Mark Brown34abbd62010-02-12 10:18:08 +00001130#ifdef CONFIG_REGULATOR_DUMMY
1131 if (!devname)
1132 devname = "deviceless";
1133
1134 /* If the board didn't flag that it was fully constrained then
1135 * substitute in a dummy regulator so consumers can continue.
1136 */
1137 if (!has_full_constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001138 pr_warn("%s supply %s not found, using dummy regulator\n",
1139 devname, id);
Mark Brown34abbd62010-02-12 10:18:08 +00001140 rdev = dummy_regulator_rdev;
1141 goto found;
1142 }
1143#endif
1144
Liam Girdwood414c70c2008-04-30 15:59:04 +01001145 mutex_unlock(&regulator_list_mutex);
1146 return regulator;
1147
1148found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001149 if (rdev->exclusive) {
1150 regulator = ERR_PTR(-EPERM);
1151 goto out;
1152 }
1153
1154 if (exclusive && rdev->open_count) {
1155 regulator = ERR_PTR(-EBUSY);
1156 goto out;
1157 }
1158
Liam Girdwooda5766f12008-10-10 13:22:20 +01001159 if (!try_module_get(rdev->owner))
1160 goto out;
1161
Liam Girdwood414c70c2008-04-30 15:59:04 +01001162 regulator = create_regulator(rdev, dev, id);
1163 if (regulator == NULL) {
1164 regulator = ERR_PTR(-ENOMEM);
1165 module_put(rdev->owner);
1166 }
1167
Mark Brown5ffbd132009-07-21 16:00:23 +01001168 rdev->open_count++;
1169 if (exclusive) {
1170 rdev->exclusive = 1;
1171
1172 ret = _regulator_is_enabled(rdev);
1173 if (ret > 0)
1174 rdev->use_count = 1;
1175 else
1176 rdev->use_count = 0;
1177 }
1178
Liam Girdwooda5766f12008-10-10 13:22:20 +01001179out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001180 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001181
Liam Girdwood414c70c2008-04-30 15:59:04 +01001182 return regulator;
1183}
Mark Brown5ffbd132009-07-21 16:00:23 +01001184
1185/**
1186 * regulator_get - lookup and obtain a reference to a regulator.
1187 * @dev: device for regulator "consumer"
1188 * @id: Supply name or regulator ID.
1189 *
1190 * Returns a struct regulator corresponding to the regulator producer,
1191 * or IS_ERR() condition containing errno.
1192 *
1193 * Use of supply names configured via regulator_set_device_supply() is
1194 * strongly encouraged. It is recommended that the supply name used
1195 * should match the name used for the supply and/or the relevant
1196 * device pins in the datasheet.
1197 */
1198struct regulator *regulator_get(struct device *dev, const char *id)
1199{
1200 return _regulator_get(dev, id, 0);
1201}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001202EXPORT_SYMBOL_GPL(regulator_get);
1203
1204/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001205 * regulator_get_exclusive - obtain exclusive access to a regulator.
1206 * @dev: device for regulator "consumer"
1207 * @id: Supply name or regulator ID.
1208 *
1209 * Returns a struct regulator corresponding to the regulator producer,
1210 * or IS_ERR() condition containing errno. Other consumers will be
1211 * unable to obtain this reference is held and the use count for the
1212 * regulator will be initialised to reflect the current state of the
1213 * regulator.
1214 *
1215 * This is intended for use by consumers which cannot tolerate shared
1216 * use of the regulator such as those which need to force the
1217 * regulator off for correct operation of the hardware they are
1218 * controlling.
1219 *
1220 * Use of supply names configured via regulator_set_device_supply() is
1221 * strongly encouraged. It is recommended that the supply name used
1222 * should match the name used for the supply and/or the relevant
1223 * device pins in the datasheet.
1224 */
1225struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1226{
1227 return _regulator_get(dev, id, 1);
1228}
1229EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1230
1231/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01001232 * regulator_put - "free" the regulator source
1233 * @regulator: regulator source
1234 *
1235 * Note: drivers must ensure that all regulator_enable calls made on this
1236 * regulator source are balanced by regulator_disable calls prior to calling
1237 * this function.
1238 */
1239void regulator_put(struct regulator *regulator)
1240{
1241 struct regulator_dev *rdev;
1242
1243 if (regulator == NULL || IS_ERR(regulator))
1244 return;
1245
Liam Girdwood414c70c2008-04-30 15:59:04 +01001246 mutex_lock(&regulator_list_mutex);
1247 rdev = regulator->rdev;
1248
1249 /* remove any sysfs entries */
1250 if (regulator->dev) {
1251 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
1252 kfree(regulator->supply_name);
1253 device_remove_file(regulator->dev, &regulator->dev_attr);
1254 kfree(regulator->dev_attr.attr.name);
1255 }
1256 list_del(&regulator->list);
1257 kfree(regulator);
1258
Mark Brown5ffbd132009-07-21 16:00:23 +01001259 rdev->open_count--;
1260 rdev->exclusive = 0;
1261
Liam Girdwood414c70c2008-04-30 15:59:04 +01001262 module_put(rdev->owner);
1263 mutex_unlock(&regulator_list_mutex);
1264}
1265EXPORT_SYMBOL_GPL(regulator_put);
1266
Mark Brown9a2372f2009-08-03 18:49:57 +01001267static int _regulator_can_change_status(struct regulator_dev *rdev)
1268{
1269 if (!rdev->constraints)
1270 return 0;
1271
1272 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
1273 return 1;
1274 else
1275 return 0;
1276}
1277
Liam Girdwood414c70c2008-04-30 15:59:04 +01001278/* locks held by regulator_enable() */
1279static int _regulator_enable(struct regulator_dev *rdev)
1280{
Mark Brown31aae2b2009-12-21 12:21:52 +00001281 int ret, delay;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001282
Bengt Jonssonacaf6ff2010-11-10 11:06:22 +01001283 if (rdev->use_count == 0) {
1284 /* do we need to enable the supply regulator first */
1285 if (rdev->supply) {
1286 mutex_lock(&rdev->supply->mutex);
1287 ret = _regulator_enable(rdev->supply);
1288 mutex_unlock(&rdev->supply->mutex);
1289 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001290 rdev_err(rdev, "failed to enable: %d\n", ret);
Bengt Jonssonacaf6ff2010-11-10 11:06:22 +01001291 return ret;
1292 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01001293 }
1294 }
1295
1296 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001297 if (rdev->constraints &&
1298 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1299 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001300
Mark Brown9a2372f2009-08-03 18:49:57 +01001301 if (rdev->use_count == 0) {
1302 /* The regulator may on if it's not switchable or left on */
1303 ret = _regulator_is_enabled(rdev);
1304 if (ret == -EINVAL || ret == 0) {
1305 if (!_regulator_can_change_status(rdev))
1306 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001307
Mark Brown31aae2b2009-12-21 12:21:52 +00001308 if (!rdev->desc->ops->enable)
Mark Brown9a2372f2009-08-03 18:49:57 +01001309 return -EINVAL;
Mark Brown31aae2b2009-12-21 12:21:52 +00001310
1311 /* Query before enabling in case configuration
1312 * dependant. */
1313 ret = _regulator_get_enable_time(rdev);
1314 if (ret >= 0) {
1315 delay = ret;
1316 } else {
Joe Perches5da84fd2010-11-30 05:53:48 -08001317 rdev_warn(rdev, "enable_time() failed: %d\n",
Daniel Walker1d7372e2010-11-17 15:30:28 -08001318 ret);
Mark Brown31aae2b2009-12-21 12:21:52 +00001319 delay = 0;
Mark Brown9a2372f2009-08-03 18:49:57 +01001320 }
Mark Brown31aae2b2009-12-21 12:21:52 +00001321
Mark Brown02fa3ec2010-11-10 14:38:30 +00001322 trace_regulator_enable(rdev_get_name(rdev));
1323
Mark Brown31aae2b2009-12-21 12:21:52 +00001324 /* Allow the regulator to ramp; it would be useful
1325 * to extend this for bulk operations so that the
1326 * regulators can ramp together. */
1327 ret = rdev->desc->ops->enable(rdev);
1328 if (ret < 0)
1329 return ret;
1330
Mark Brown02fa3ec2010-11-10 14:38:30 +00001331 trace_regulator_enable_delay(rdev_get_name(rdev));
1332
Axel Line36c1df2010-11-05 21:51:32 +08001333 if (delay >= 1000) {
Mark Brown31aae2b2009-12-21 12:21:52 +00001334 mdelay(delay / 1000);
Axel Line36c1df2010-11-05 21:51:32 +08001335 udelay(delay % 1000);
1336 } else if (delay) {
Mark Brown31aae2b2009-12-21 12:21:52 +00001337 udelay(delay);
Axel Line36c1df2010-11-05 21:51:32 +08001338 }
Mark Brown31aae2b2009-12-21 12:21:52 +00001339
Mark Brown02fa3ec2010-11-10 14:38:30 +00001340 trace_regulator_enable_complete(rdev_get_name(rdev));
1341
Linus Walleija7433cf2009-08-26 12:54:04 +02001342 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001343 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001344 return ret;
1345 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001346 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001347 }
1348
Mark Brown9a2372f2009-08-03 18:49:57 +01001349 rdev->use_count++;
1350
1351 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001352}
1353
1354/**
1355 * regulator_enable - enable regulator output
1356 * @regulator: regulator source
1357 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001358 * Request that the regulator be enabled with the regulator output at
1359 * the predefined voltage or current value. Calls to regulator_enable()
1360 * must be balanced with calls to regulator_disable().
1361 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001362 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001363 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001364 */
1365int regulator_enable(struct regulator *regulator)
1366{
David Brownell412aec62008-11-16 11:44:46 -08001367 struct regulator_dev *rdev = regulator->rdev;
1368 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001369
David Brownell412aec62008-11-16 11:44:46 -08001370 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001371 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001372 mutex_unlock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001373 return ret;
1374}
1375EXPORT_SYMBOL_GPL(regulator_enable);
1376
1377/* locks held by regulator_disable() */
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001378static int _regulator_disable(struct regulator_dev *rdev,
1379 struct regulator_dev **supply_rdev_ptr)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001380{
1381 int ret = 0;
Mattias Wallinb12a1e22010-11-02 14:55:34 +01001382 *supply_rdev_ptr = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001383
David Brownellcd94b502009-03-11 16:43:34 -08001384 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001385 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001386 return -EIO;
1387
Liam Girdwood414c70c2008-04-30 15:59:04 +01001388 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001389 if (rdev->use_count == 1 &&
1390 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001391
1392 /* we are last user */
Mark Brown9a2372f2009-08-03 18:49:57 +01001393 if (_regulator_can_change_status(rdev) &&
1394 rdev->desc->ops->disable) {
Mark Brown02fa3ec2010-11-10 14:38:30 +00001395 trace_regulator_disable(rdev_get_name(rdev));
1396
Liam Girdwood414c70c2008-04-30 15:59:04 +01001397 ret = rdev->desc->ops->disable(rdev);
1398 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001399 rdev_err(rdev, "failed to disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001400 return ret;
1401 }
Mark Brown84b68262009-12-01 21:12:27 +00001402
Mark Brown02fa3ec2010-11-10 14:38:30 +00001403 trace_regulator_disable_complete(rdev_get_name(rdev));
1404
Mark Brown84b68262009-12-01 21:12:27 +00001405 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1406 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001407 }
1408
1409 /* decrease our supplies ref count and disable if required */
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001410 *supply_rdev_ptr = rdev->supply;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001411
1412 rdev->use_count = 0;
1413 } else if (rdev->use_count > 1) {
1414
1415 if (rdev->constraints &&
1416 (rdev->constraints->valid_ops_mask &
1417 REGULATOR_CHANGE_DRMS))
1418 drms_uA_update(rdev);
1419
1420 rdev->use_count--;
1421 }
1422 return ret;
1423}
1424
1425/**
1426 * regulator_disable - disable regulator output
1427 * @regulator: regulator source
1428 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001429 * Disable the regulator output voltage or current. Calls to
1430 * regulator_enable() must be balanced with calls to
1431 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00001432 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001433 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00001434 * devices have it enabled, the regulator device supports disabling and
1435 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001436 */
1437int regulator_disable(struct regulator *regulator)
1438{
David Brownell412aec62008-11-16 11:44:46 -08001439 struct regulator_dev *rdev = regulator->rdev;
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001440 struct regulator_dev *supply_rdev = NULL;
David Brownell412aec62008-11-16 11:44:46 -08001441 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001442
David Brownell412aec62008-11-16 11:44:46 -08001443 mutex_lock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001444 ret = _regulator_disable(rdev, &supply_rdev);
David Brownell412aec62008-11-16 11:44:46 -08001445 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001446
1447 /* decrease our supplies ref count and disable if required */
1448 while (supply_rdev != NULL) {
1449 rdev = supply_rdev;
1450
1451 mutex_lock(&rdev->mutex);
1452 _regulator_disable(rdev, &supply_rdev);
1453 mutex_unlock(&rdev->mutex);
1454 }
1455
Liam Girdwood414c70c2008-04-30 15:59:04 +01001456 return ret;
1457}
1458EXPORT_SYMBOL_GPL(regulator_disable);
1459
1460/* locks held by regulator_force_disable() */
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001461static int _regulator_force_disable(struct regulator_dev *rdev,
1462 struct regulator_dev **supply_rdev_ptr)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001463{
1464 int ret = 0;
1465
1466 /* force disable */
1467 if (rdev->desc->ops->disable) {
1468 /* ah well, who wants to live forever... */
1469 ret = rdev->desc->ops->disable(rdev);
1470 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001471 rdev_err(rdev, "failed to force disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001472 return ret;
1473 }
1474 /* notify other consumers that power has been forced off */
Mark Brown84b68262009-12-01 21:12:27 +00001475 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
1476 REGULATOR_EVENT_DISABLE, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001477 }
1478
1479 /* decrease our supplies ref count and disable if required */
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001480 *supply_rdev_ptr = rdev->supply;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001481
1482 rdev->use_count = 0;
1483 return ret;
1484}
1485
1486/**
1487 * regulator_force_disable - force disable regulator output
1488 * @regulator: regulator source
1489 *
1490 * Forcibly disable the regulator output voltage or current.
1491 * NOTE: this *will* disable the regulator output even if other consumer
1492 * devices have it enabled. This should be used for situations when device
1493 * damage will likely occur if the regulator is not disabled (e.g. over temp).
1494 */
1495int regulator_force_disable(struct regulator *regulator)
1496{
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001497 struct regulator_dev *supply_rdev = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001498 int ret;
1499
1500 mutex_lock(&regulator->rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001501 regulator->uA_load = 0;
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001502 ret = _regulator_force_disable(regulator->rdev, &supply_rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001503 mutex_unlock(&regulator->rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001504
1505 if (supply_rdev)
1506 regulator_disable(get_device_regulator(rdev_get_dev(supply_rdev)));
1507
Liam Girdwood414c70c2008-04-30 15:59:04 +01001508 return ret;
1509}
1510EXPORT_SYMBOL_GPL(regulator_force_disable);
1511
1512static int _regulator_is_enabled(struct regulator_dev *rdev)
1513{
Mark Brown9a7f6a42010-02-11 17:22:45 +00001514 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01001515 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00001516 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001517
Mark Brown93325462009-08-03 18:49:56 +01001518 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001519}
1520
1521/**
1522 * regulator_is_enabled - is the regulator output enabled
1523 * @regulator: regulator source
1524 *
David Brownell412aec62008-11-16 11:44:46 -08001525 * Returns positive if the regulator driver backing the source/client
1526 * has requested that the device be enabled, zero if it hasn't, else a
1527 * negative errno code.
1528 *
1529 * Note that the device backing this regulator handle can have multiple
1530 * users, so it might be enabled even if regulator_enable() was never
1531 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001532 */
1533int regulator_is_enabled(struct regulator *regulator)
1534{
Mark Brown93325462009-08-03 18:49:56 +01001535 int ret;
1536
1537 mutex_lock(&regulator->rdev->mutex);
1538 ret = _regulator_is_enabled(regulator->rdev);
1539 mutex_unlock(&regulator->rdev->mutex);
1540
1541 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001542}
1543EXPORT_SYMBOL_GPL(regulator_is_enabled);
1544
1545/**
David Brownell4367cfd2009-02-26 11:48:36 -08001546 * regulator_count_voltages - count regulator_list_voltage() selectors
1547 * @regulator: regulator source
1548 *
1549 * Returns number of selectors, or negative errno. Selectors are
1550 * numbered starting at zero, and typically correspond to bitfields
1551 * in hardware registers.
1552 */
1553int regulator_count_voltages(struct regulator *regulator)
1554{
1555 struct regulator_dev *rdev = regulator->rdev;
1556
1557 return rdev->desc->n_voltages ? : -EINVAL;
1558}
1559EXPORT_SYMBOL_GPL(regulator_count_voltages);
1560
1561/**
1562 * regulator_list_voltage - enumerate supported voltages
1563 * @regulator: regulator source
1564 * @selector: identify voltage to list
1565 * Context: can sleep
1566 *
1567 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01001568 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08001569 * negative errno.
1570 */
1571int regulator_list_voltage(struct regulator *regulator, unsigned selector)
1572{
1573 struct regulator_dev *rdev = regulator->rdev;
1574 struct regulator_ops *ops = rdev->desc->ops;
1575 int ret;
1576
1577 if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
1578 return -EINVAL;
1579
1580 mutex_lock(&rdev->mutex);
1581 ret = ops->list_voltage(rdev, selector);
1582 mutex_unlock(&rdev->mutex);
1583
1584 if (ret > 0) {
1585 if (ret < rdev->constraints->min_uV)
1586 ret = 0;
1587 else if (ret > rdev->constraints->max_uV)
1588 ret = 0;
1589 }
1590
1591 return ret;
1592}
1593EXPORT_SYMBOL_GPL(regulator_list_voltage);
1594
1595/**
Mark Browna7a1ad92009-07-21 16:00:24 +01001596 * regulator_is_supported_voltage - check if a voltage range can be supported
1597 *
1598 * @regulator: Regulator to check.
1599 * @min_uV: Minimum required voltage in uV.
1600 * @max_uV: Maximum required voltage in uV.
1601 *
1602 * Returns a boolean or a negative error code.
1603 */
1604int regulator_is_supported_voltage(struct regulator *regulator,
1605 int min_uV, int max_uV)
1606{
1607 int i, voltages, ret;
1608
1609 ret = regulator_count_voltages(regulator);
1610 if (ret < 0)
1611 return ret;
1612 voltages = ret;
1613
1614 for (i = 0; i < voltages; i++) {
1615 ret = regulator_list_voltage(regulator, i);
1616
1617 if (ret >= min_uV && ret <= max_uV)
1618 return 1;
1619 }
1620
1621 return 0;
1622}
1623
1624/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01001625 * regulator_set_voltage - set regulator output voltage
1626 * @regulator: regulator source
1627 * @min_uV: Minimum required voltage in uV
1628 * @max_uV: Maximum acceptable voltage in uV
1629 *
1630 * Sets a voltage regulator to the desired output voltage. This can be set
1631 * during any regulator state. IOW, regulator can be disabled or enabled.
1632 *
1633 * If the regulator is enabled then the voltage will change to the new value
1634 * immediately otherwise if the regulator is disabled the regulator will
1635 * output at the new voltage when enabled.
1636 *
1637 * NOTE: If the regulator is shared between several devices then the lowest
1638 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00001639 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01001640 * calling this function otherwise this call will fail.
1641 */
1642int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
1643{
1644 struct regulator_dev *rdev = regulator->rdev;
1645 int ret;
Mark Brown3a93f2a2010-11-10 14:38:29 +00001646 unsigned selector;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001647
1648 mutex_lock(&rdev->mutex);
1649
1650 /* sanity check */
1651 if (!rdev->desc->ops->set_voltage) {
1652 ret = -EINVAL;
1653 goto out;
1654 }
1655
1656 /* constraints check */
1657 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
1658 if (ret < 0)
1659 goto out;
1660 regulator->min_uV = min_uV;
1661 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00001662
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01001663 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
1664 if (ret < 0)
1665 goto out;
1666
Mark Brown02fa3ec2010-11-10 14:38:30 +00001667 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
1668
Mark Brown3a93f2a2010-11-10 14:38:29 +00001669 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, &selector);
1670
1671 if (rdev->desc->ops->list_voltage)
1672 selector = rdev->desc->ops->list_voltage(rdev, selector);
1673 else
1674 selector = -1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001675
Mark Brown02fa3ec2010-11-10 14:38:30 +00001676 trace_regulator_set_voltage_complete(rdev_get_name(rdev), selector);
1677
Liam Girdwood414c70c2008-04-30 15:59:04 +01001678out:
Jonathan Cameronb136fb42009-01-19 18:20:58 +00001679 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001680 mutex_unlock(&rdev->mutex);
1681 return ret;
1682}
1683EXPORT_SYMBOL_GPL(regulator_set_voltage);
1684
1685static int _regulator_get_voltage(struct regulator_dev *rdev)
1686{
Mark Brown476c2d82010-12-10 17:28:07 +00001687 int sel;
1688
1689 if (rdev->desc->ops->get_voltage_sel) {
1690 sel = rdev->desc->ops->get_voltage_sel(rdev);
1691 if (sel < 0)
1692 return sel;
1693 return rdev->desc->ops->list_voltage(rdev, sel);
1694 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01001695 if (rdev->desc->ops->get_voltage)
1696 return rdev->desc->ops->get_voltage(rdev);
1697 else
1698 return -EINVAL;
1699}
1700
1701/**
1702 * regulator_get_voltage - get regulator output voltage
1703 * @regulator: regulator source
1704 *
1705 * This returns the current regulator voltage in uV.
1706 *
1707 * NOTE: If the regulator is disabled it will return the voltage value. This
1708 * function should not be used to determine regulator state.
1709 */
1710int regulator_get_voltage(struct regulator *regulator)
1711{
1712 int ret;
1713
1714 mutex_lock(&regulator->rdev->mutex);
1715
1716 ret = _regulator_get_voltage(regulator->rdev);
1717
1718 mutex_unlock(&regulator->rdev->mutex);
1719
1720 return ret;
1721}
1722EXPORT_SYMBOL_GPL(regulator_get_voltage);
1723
1724/**
1725 * regulator_set_current_limit - set regulator output current limit
1726 * @regulator: regulator source
1727 * @min_uA: Minimuum supported current in uA
1728 * @max_uA: Maximum supported current in uA
1729 *
1730 * Sets current sink to the desired output current. This can be set during
1731 * any regulator state. IOW, regulator can be disabled or enabled.
1732 *
1733 * If the regulator is enabled then the current will change to the new value
1734 * immediately otherwise if the regulator is disabled the regulator will
1735 * output at the new current when enabled.
1736 *
1737 * NOTE: Regulator system constraints must be set for this regulator before
1738 * calling this function otherwise this call will fail.
1739 */
1740int regulator_set_current_limit(struct regulator *regulator,
1741 int min_uA, int max_uA)
1742{
1743 struct regulator_dev *rdev = regulator->rdev;
1744 int ret;
1745
1746 mutex_lock(&rdev->mutex);
1747
1748 /* sanity check */
1749 if (!rdev->desc->ops->set_current_limit) {
1750 ret = -EINVAL;
1751 goto out;
1752 }
1753
1754 /* constraints check */
1755 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
1756 if (ret < 0)
1757 goto out;
1758
1759 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
1760out:
1761 mutex_unlock(&rdev->mutex);
1762 return ret;
1763}
1764EXPORT_SYMBOL_GPL(regulator_set_current_limit);
1765
1766static int _regulator_get_current_limit(struct regulator_dev *rdev)
1767{
1768 int ret;
1769
1770 mutex_lock(&rdev->mutex);
1771
1772 /* sanity check */
1773 if (!rdev->desc->ops->get_current_limit) {
1774 ret = -EINVAL;
1775 goto out;
1776 }
1777
1778 ret = rdev->desc->ops->get_current_limit(rdev);
1779out:
1780 mutex_unlock(&rdev->mutex);
1781 return ret;
1782}
1783
1784/**
1785 * regulator_get_current_limit - get regulator output current
1786 * @regulator: regulator source
1787 *
1788 * This returns the current supplied by the specified current sink in uA.
1789 *
1790 * NOTE: If the regulator is disabled it will return the current value. This
1791 * function should not be used to determine regulator state.
1792 */
1793int regulator_get_current_limit(struct regulator *regulator)
1794{
1795 return _regulator_get_current_limit(regulator->rdev);
1796}
1797EXPORT_SYMBOL_GPL(regulator_get_current_limit);
1798
1799/**
1800 * regulator_set_mode - set regulator operating mode
1801 * @regulator: regulator source
1802 * @mode: operating mode - one of the REGULATOR_MODE constants
1803 *
1804 * Set regulator operating mode to increase regulator efficiency or improve
1805 * regulation performance.
1806 *
1807 * NOTE: Regulator system constraints must be set for this regulator before
1808 * calling this function otherwise this call will fail.
1809 */
1810int regulator_set_mode(struct regulator *regulator, unsigned int mode)
1811{
1812 struct regulator_dev *rdev = regulator->rdev;
1813 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05301814 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001815
1816 mutex_lock(&rdev->mutex);
1817
1818 /* sanity check */
1819 if (!rdev->desc->ops->set_mode) {
1820 ret = -EINVAL;
1821 goto out;
1822 }
1823
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05301824 /* return if the same mode is requested */
1825 if (rdev->desc->ops->get_mode) {
1826 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
1827 if (regulator_curr_mode == mode) {
1828 ret = 0;
1829 goto out;
1830 }
1831 }
1832
Liam Girdwood414c70c2008-04-30 15:59:04 +01001833 /* constraints check */
1834 ret = regulator_check_mode(rdev, mode);
1835 if (ret < 0)
1836 goto out;
1837
1838 ret = rdev->desc->ops->set_mode(rdev, mode);
1839out:
1840 mutex_unlock(&rdev->mutex);
1841 return ret;
1842}
1843EXPORT_SYMBOL_GPL(regulator_set_mode);
1844
1845static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
1846{
1847 int ret;
1848
1849 mutex_lock(&rdev->mutex);
1850
1851 /* sanity check */
1852 if (!rdev->desc->ops->get_mode) {
1853 ret = -EINVAL;
1854 goto out;
1855 }
1856
1857 ret = rdev->desc->ops->get_mode(rdev);
1858out:
1859 mutex_unlock(&rdev->mutex);
1860 return ret;
1861}
1862
1863/**
1864 * regulator_get_mode - get regulator operating mode
1865 * @regulator: regulator source
1866 *
1867 * Get the current regulator operating mode.
1868 */
1869unsigned int regulator_get_mode(struct regulator *regulator)
1870{
1871 return _regulator_get_mode(regulator->rdev);
1872}
1873EXPORT_SYMBOL_GPL(regulator_get_mode);
1874
1875/**
1876 * regulator_set_optimum_mode - set regulator optimum operating mode
1877 * @regulator: regulator source
1878 * @uA_load: load current
1879 *
1880 * Notifies the regulator core of a new device load. This is then used by
1881 * DRMS (if enabled by constraints) to set the most efficient regulator
1882 * operating mode for the new regulator loading.
1883 *
1884 * Consumer devices notify their supply regulator of the maximum power
1885 * they will require (can be taken from device datasheet in the power
1886 * consumption tables) when they change operational status and hence power
1887 * state. Examples of operational state changes that can affect power
1888 * consumption are :-
1889 *
1890 * o Device is opened / closed.
1891 * o Device I/O is about to begin or has just finished.
1892 * o Device is idling in between work.
1893 *
1894 * This information is also exported via sysfs to userspace.
1895 *
1896 * DRMS will sum the total requested load on the regulator and change
1897 * to the most efficient operating mode if platform constraints allow.
1898 *
1899 * Returns the new regulator mode or error.
1900 */
1901int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
1902{
1903 struct regulator_dev *rdev = regulator->rdev;
1904 struct regulator *consumer;
1905 int ret, output_uV, input_uV, total_uA_load = 0;
1906 unsigned int mode;
1907
1908 mutex_lock(&rdev->mutex);
1909
1910 regulator->uA_load = uA_load;
1911 ret = regulator_check_drms(rdev);
1912 if (ret < 0)
1913 goto out;
1914 ret = -EINVAL;
1915
1916 /* sanity check */
1917 if (!rdev->desc->ops->get_optimum_mode)
1918 goto out;
1919
1920 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00001921 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001922 if (output_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001923 rdev_err(rdev, "invalid output voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001924 goto out;
1925 }
1926
1927 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00001928 input_uV = 0;
1929 if (rdev->supply)
1930 input_uV = _regulator_get_voltage(rdev->supply);
1931 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001932 input_uV = rdev->constraints->input_uV;
1933 if (input_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001934 rdev_err(rdev, "invalid input voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001935 goto out;
1936 }
1937
1938 /* calc total requested load for this regulator */
1939 list_for_each_entry(consumer, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +01001940 total_uA_load += consumer->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001941
1942 mode = rdev->desc->ops->get_optimum_mode(rdev,
1943 input_uV, output_uV,
1944 total_uA_load);
David Brownelle5735202008-11-16 11:46:56 -08001945 ret = regulator_check_mode(rdev, mode);
1946 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001947 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
1948 total_uA_load, input_uV, output_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001949 goto out;
1950 }
1951
1952 ret = rdev->desc->ops->set_mode(rdev, mode);
David Brownelle5735202008-11-16 11:46:56 -08001953 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001954 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001955 goto out;
1956 }
1957 ret = mode;
1958out:
1959 mutex_unlock(&rdev->mutex);
1960 return ret;
1961}
1962EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
1963
1964/**
1965 * regulator_register_notifier - register regulator event notifier
1966 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00001967 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01001968 *
1969 * Register notifier block to receive regulator events.
1970 */
1971int regulator_register_notifier(struct regulator *regulator,
1972 struct notifier_block *nb)
1973{
1974 return blocking_notifier_chain_register(&regulator->rdev->notifier,
1975 nb);
1976}
1977EXPORT_SYMBOL_GPL(regulator_register_notifier);
1978
1979/**
1980 * regulator_unregister_notifier - unregister regulator event notifier
1981 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00001982 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01001983 *
1984 * Unregister regulator event notifier block.
1985 */
1986int regulator_unregister_notifier(struct regulator *regulator,
1987 struct notifier_block *nb)
1988{
1989 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
1990 nb);
1991}
1992EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
1993
Jonathan Cameronb136fb42009-01-19 18:20:58 +00001994/* notify regulator consumers and downstream regulator consumers.
1995 * Note mutex must be held by caller.
1996 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001997static void _notifier_call_chain(struct regulator_dev *rdev,
1998 unsigned long event, void *data)
1999{
2000 struct regulator_dev *_rdev;
2001
2002 /* call rdev chain first */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002003 blocking_notifier_call_chain(&rdev->notifier, event, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002004
2005 /* now notify regulator we supply */
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002006 list_for_each_entry(_rdev, &rdev->supply_list, slist) {
Stefan Roesefa2984d2009-11-27 15:56:34 +01002007 mutex_lock(&_rdev->mutex);
2008 _notifier_call_chain(_rdev, event, data);
2009 mutex_unlock(&_rdev->mutex);
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002010 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002011}
2012
2013/**
2014 * regulator_bulk_get - get multiple regulator consumers
2015 *
2016 * @dev: Device to supply
2017 * @num_consumers: Number of consumers to register
2018 * @consumers: Configuration of consumers; clients are stored here.
2019 *
2020 * @return 0 on success, an errno on failure.
2021 *
2022 * This helper function allows drivers to get several regulator
2023 * consumers in one operation. If any of the regulators cannot be
2024 * acquired then any regulators that were allocated will be freed
2025 * before returning to the caller.
2026 */
2027int regulator_bulk_get(struct device *dev, int num_consumers,
2028 struct regulator_bulk_data *consumers)
2029{
2030 int i;
2031 int ret;
2032
2033 for (i = 0; i < num_consumers; i++)
2034 consumers[i].consumer = NULL;
2035
2036 for (i = 0; i < num_consumers; i++) {
2037 consumers[i].consumer = regulator_get(dev,
2038 consumers[i].supply);
2039 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002040 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01002041 dev_err(dev, "Failed to get supply '%s': %d\n",
2042 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002043 consumers[i].consumer = NULL;
2044 goto err;
2045 }
2046 }
2047
2048 return 0;
2049
2050err:
2051 for (i = 0; i < num_consumers && consumers[i].consumer; i++)
2052 regulator_put(consumers[i].consumer);
2053
2054 return ret;
2055}
2056EXPORT_SYMBOL_GPL(regulator_bulk_get);
2057
2058/**
2059 * regulator_bulk_enable - enable multiple regulator consumers
2060 *
2061 * @num_consumers: Number of consumers
2062 * @consumers: Consumer data; clients are stored here.
2063 * @return 0 on success, an errno on failure
2064 *
2065 * This convenience API allows consumers to enable multiple regulator
2066 * clients in a single API call. If any consumers cannot be enabled
2067 * then any others that were enabled will be disabled again prior to
2068 * return.
2069 */
2070int regulator_bulk_enable(int num_consumers,
2071 struct regulator_bulk_data *consumers)
2072{
2073 int i;
2074 int ret;
2075
2076 for (i = 0; i < num_consumers; i++) {
2077 ret = regulator_enable(consumers[i].consumer);
2078 if (ret != 0)
2079 goto err;
2080 }
2081
2082 return 0;
2083
2084err:
Joe Perches5da84fd2010-11-30 05:53:48 -08002085 pr_err("Failed to enable %s: %d\n", consumers[i].supply, ret);
Lars-Peter Clauseneb143ac2009-12-15 14:30:01 +01002086 for (--i; i >= 0; --i)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002087 regulator_disable(consumers[i].consumer);
2088
2089 return ret;
2090}
2091EXPORT_SYMBOL_GPL(regulator_bulk_enable);
2092
2093/**
2094 * regulator_bulk_disable - disable multiple regulator consumers
2095 *
2096 * @num_consumers: Number of consumers
2097 * @consumers: Consumer data; clients are stored here.
2098 * @return 0 on success, an errno on failure
2099 *
2100 * This convenience API allows consumers to disable multiple regulator
2101 * clients in a single API call. If any consumers cannot be enabled
2102 * then any others that were disabled will be disabled again prior to
2103 * return.
2104 */
2105int regulator_bulk_disable(int num_consumers,
2106 struct regulator_bulk_data *consumers)
2107{
2108 int i;
2109 int ret;
2110
2111 for (i = 0; i < num_consumers; i++) {
2112 ret = regulator_disable(consumers[i].consumer);
2113 if (ret != 0)
2114 goto err;
2115 }
2116
2117 return 0;
2118
2119err:
Joe Perches5da84fd2010-11-30 05:53:48 -08002120 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Lars-Peter Clauseneb143ac2009-12-15 14:30:01 +01002121 for (--i; i >= 0; --i)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002122 regulator_enable(consumers[i].consumer);
2123
2124 return ret;
2125}
2126EXPORT_SYMBOL_GPL(regulator_bulk_disable);
2127
2128/**
2129 * regulator_bulk_free - free multiple regulator consumers
2130 *
2131 * @num_consumers: Number of consumers
2132 * @consumers: Consumer data; clients are stored here.
2133 *
2134 * This convenience API allows consumers to free multiple regulator
2135 * clients in a single API call.
2136 */
2137void regulator_bulk_free(int num_consumers,
2138 struct regulator_bulk_data *consumers)
2139{
2140 int i;
2141
2142 for (i = 0; i < num_consumers; i++) {
2143 regulator_put(consumers[i].consumer);
2144 consumers[i].consumer = NULL;
2145 }
2146}
2147EXPORT_SYMBOL_GPL(regulator_bulk_free);
2148
2149/**
2150 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00002151 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01002152 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00002153 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002154 *
2155 * Called by regulator drivers to notify clients a regulator event has
2156 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002157 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002158 */
2159int regulator_notifier_call_chain(struct regulator_dev *rdev,
2160 unsigned long event, void *data)
2161{
2162 _notifier_call_chain(rdev, event, data);
2163 return NOTIFY_DONE;
2164
2165}
2166EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
2167
Mark Brownbe721972009-08-04 20:09:52 +02002168/**
2169 * regulator_mode_to_status - convert a regulator mode into a status
2170 *
2171 * @mode: Mode to convert
2172 *
2173 * Convert a regulator mode into a status.
2174 */
2175int regulator_mode_to_status(unsigned int mode)
2176{
2177 switch (mode) {
2178 case REGULATOR_MODE_FAST:
2179 return REGULATOR_STATUS_FAST;
2180 case REGULATOR_MODE_NORMAL:
2181 return REGULATOR_STATUS_NORMAL;
2182 case REGULATOR_MODE_IDLE:
2183 return REGULATOR_STATUS_IDLE;
2184 case REGULATOR_STATUS_STANDBY:
2185 return REGULATOR_STATUS_STANDBY;
2186 default:
2187 return 0;
2188 }
2189}
2190EXPORT_SYMBOL_GPL(regulator_mode_to_status);
2191
David Brownell7ad68e22008-11-11 17:39:02 -08002192/*
2193 * To avoid cluttering sysfs (and memory) with useless state, only
2194 * create attributes that can be meaningfully displayed.
2195 */
2196static int add_regulator_attributes(struct regulator_dev *rdev)
2197{
2198 struct device *dev = &rdev->dev;
2199 struct regulator_ops *ops = rdev->desc->ops;
2200 int status = 0;
2201
2202 /* some attributes need specific methods to be displayed */
Mark Brown476c2d82010-12-10 17:28:07 +00002203 if (ops->get_voltage || ops->get_voltage_sel) {
David Brownell7ad68e22008-11-11 17:39:02 -08002204 status = device_create_file(dev, &dev_attr_microvolts);
2205 if (status < 0)
2206 return status;
2207 }
2208 if (ops->get_current_limit) {
2209 status = device_create_file(dev, &dev_attr_microamps);
2210 if (status < 0)
2211 return status;
2212 }
2213 if (ops->get_mode) {
2214 status = device_create_file(dev, &dev_attr_opmode);
2215 if (status < 0)
2216 return status;
2217 }
2218 if (ops->is_enabled) {
2219 status = device_create_file(dev, &dev_attr_state);
2220 if (status < 0)
2221 return status;
2222 }
David Brownell853116a2009-01-14 23:03:17 -08002223 if (ops->get_status) {
2224 status = device_create_file(dev, &dev_attr_status);
2225 if (status < 0)
2226 return status;
2227 }
David Brownell7ad68e22008-11-11 17:39:02 -08002228
2229 /* some attributes are type-specific */
2230 if (rdev->desc->type == REGULATOR_CURRENT) {
2231 status = device_create_file(dev, &dev_attr_requested_microamps);
2232 if (status < 0)
2233 return status;
2234 }
2235
2236 /* all the other attributes exist to support constraints;
2237 * don't show them if there are no constraints, or if the
2238 * relevant supporting methods are missing.
2239 */
2240 if (!rdev->constraints)
2241 return status;
2242
2243 /* constraints need specific supporting methods */
2244 if (ops->set_voltage) {
2245 status = device_create_file(dev, &dev_attr_min_microvolts);
2246 if (status < 0)
2247 return status;
2248 status = device_create_file(dev, &dev_attr_max_microvolts);
2249 if (status < 0)
2250 return status;
2251 }
2252 if (ops->set_current_limit) {
2253 status = device_create_file(dev, &dev_attr_min_microamps);
2254 if (status < 0)
2255 return status;
2256 status = device_create_file(dev, &dev_attr_max_microamps);
2257 if (status < 0)
2258 return status;
2259 }
2260
2261 /* suspend mode constraints need multiple supporting methods */
2262 if (!(ops->set_suspend_enable && ops->set_suspend_disable))
2263 return status;
2264
2265 status = device_create_file(dev, &dev_attr_suspend_standby_state);
2266 if (status < 0)
2267 return status;
2268 status = device_create_file(dev, &dev_attr_suspend_mem_state);
2269 if (status < 0)
2270 return status;
2271 status = device_create_file(dev, &dev_attr_suspend_disk_state);
2272 if (status < 0)
2273 return status;
2274
2275 if (ops->set_suspend_voltage) {
2276 status = device_create_file(dev,
2277 &dev_attr_suspend_standby_microvolts);
2278 if (status < 0)
2279 return status;
2280 status = device_create_file(dev,
2281 &dev_attr_suspend_mem_microvolts);
2282 if (status < 0)
2283 return status;
2284 status = device_create_file(dev,
2285 &dev_attr_suspend_disk_microvolts);
2286 if (status < 0)
2287 return status;
2288 }
2289
2290 if (ops->set_suspend_mode) {
2291 status = device_create_file(dev,
2292 &dev_attr_suspend_standby_mode);
2293 if (status < 0)
2294 return status;
2295 status = device_create_file(dev,
2296 &dev_attr_suspend_mem_mode);
2297 if (status < 0)
2298 return status;
2299 status = device_create_file(dev,
2300 &dev_attr_suspend_disk_mode);
2301 if (status < 0)
2302 return status;
2303 }
2304
2305 return status;
2306}
2307
Liam Girdwood414c70c2008-04-30 15:59:04 +01002308/**
2309 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00002310 * @regulator_desc: regulator to register
2311 * @dev: struct device for the regulator
Mark Brown05271002009-01-19 13:37:02 +00002312 * @init_data: platform provided init data, passed through by driver
Mark Brown69279fb2008-12-31 12:52:41 +00002313 * @driver_data: private regulator data
Liam Girdwood414c70c2008-04-30 15:59:04 +01002314 *
2315 * Called by regulator drivers to register a regulator.
2316 * Returns 0 on success.
2317 */
2318struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
Mark Brownf8c12fe2010-11-29 15:55:17 +00002319 struct device *dev, const struct regulator_init_data *init_data,
Mark Brown05271002009-01-19 13:37:02 +00002320 void *driver_data)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002321{
2322 static atomic_t regulator_no = ATOMIC_INIT(0);
2323 struct regulator_dev *rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01002324 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002325
2326 if (regulator_desc == NULL)
2327 return ERR_PTR(-EINVAL);
2328
2329 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
2330 return ERR_PTR(-EINVAL);
2331
Diego Lizierocd78dfc2009-04-14 03:04:47 +02002332 if (regulator_desc->type != REGULATOR_VOLTAGE &&
2333 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002334 return ERR_PTR(-EINVAL);
2335
Mark Brown46fabe1e2008-09-09 16:21:18 +01002336 if (!init_data)
2337 return ERR_PTR(-EINVAL);
2338
Mark Brown476c2d82010-12-10 17:28:07 +00002339 /* Only one of each should be implemented */
2340 WARN_ON(regulator_desc->ops->get_voltage &&
2341 regulator_desc->ops->get_voltage_sel);
2342
2343 /* If we're using selectors we must implement list_voltage. */
2344 if (regulator_desc->ops->get_voltage_sel &&
2345 !regulator_desc->ops->list_voltage) {
2346 return ERR_PTR(-EINVAL);
2347 }
2348
Liam Girdwood414c70c2008-04-30 15:59:04 +01002349 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
2350 if (rdev == NULL)
2351 return ERR_PTR(-ENOMEM);
2352
2353 mutex_lock(&regulator_list_mutex);
2354
2355 mutex_init(&rdev->mutex);
Liam Girdwooda5766f12008-10-10 13:22:20 +01002356 rdev->reg_data = driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002357 rdev->owner = regulator_desc->owner;
2358 rdev->desc = regulator_desc;
2359 INIT_LIST_HEAD(&rdev->consumer_list);
2360 INIT_LIST_HEAD(&rdev->supply_list);
2361 INIT_LIST_HEAD(&rdev->list);
2362 INIT_LIST_HEAD(&rdev->slist);
2363 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
2364
Liam Girdwooda5766f12008-10-10 13:22:20 +01002365 /* preform any regulator specific init */
2366 if (init_data->regulator_init) {
2367 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08002368 if (ret < 0)
2369 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01002370 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002371
Liam Girdwooda5766f12008-10-10 13:22:20 +01002372 /* register with sysfs */
2373 rdev->dev.class = &regulator_class;
2374 rdev->dev.parent = dev;
Kay Sievers812460a2008-11-02 03:55:10 +01002375 dev_set_name(&rdev->dev, "regulator.%d",
2376 atomic_inc_return(&regulator_no) - 1);
Liam Girdwooda5766f12008-10-10 13:22:20 +01002377 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04002378 if (ret != 0) {
2379 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08002380 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04002381 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01002382
2383 dev_set_drvdata(&rdev->dev, rdev);
2384
Mike Rapoport74f544c2008-11-25 14:53:53 +02002385 /* set regulator constraints */
2386 ret = set_machine_constraints(rdev, &init_data->constraints);
2387 if (ret < 0)
2388 goto scrub;
2389
David Brownell7ad68e22008-11-11 17:39:02 -08002390 /* add attributes supported by this regulator */
2391 ret = add_regulator_attributes(rdev);
2392 if (ret < 0)
2393 goto scrub;
2394
Liam Girdwooda5766f12008-10-10 13:22:20 +01002395 /* set supply regulator if it exists */
Mark Brown0178f3e2010-04-26 15:18:14 +01002396 if (init_data->supply_regulator && init_data->supply_regulator_dev) {
2397 dev_err(dev,
2398 "Supply regulator specified by both name and dev\n");
Axel Lin7727da22010-11-05 15:27:17 +08002399 ret = -EINVAL;
Mark Brown0178f3e2010-04-26 15:18:14 +01002400 goto scrub;
2401 }
2402
2403 if (init_data->supply_regulator) {
2404 struct regulator_dev *r;
2405 int found = 0;
2406
2407 list_for_each_entry(r, &regulator_list, list) {
2408 if (strcmp(rdev_get_name(r),
2409 init_data->supply_regulator) == 0) {
2410 found = 1;
2411 break;
2412 }
2413 }
2414
2415 if (!found) {
2416 dev_err(dev, "Failed to find supply %s\n",
2417 init_data->supply_regulator);
Axel Lin7727da22010-11-05 15:27:17 +08002418 ret = -ENODEV;
Mark Brown0178f3e2010-04-26 15:18:14 +01002419 goto scrub;
2420 }
2421
2422 ret = set_supply(rdev, r);
2423 if (ret < 0)
2424 goto scrub;
2425 }
2426
Liam Girdwooda5766f12008-10-10 13:22:20 +01002427 if (init_data->supply_regulator_dev) {
Mark Brown0178f3e2010-04-26 15:18:14 +01002428 dev_warn(dev, "Uses supply_regulator_dev instead of regulator_supply\n");
Liam Girdwooda5766f12008-10-10 13:22:20 +01002429 ret = set_supply(rdev,
2430 dev_get_drvdata(init_data->supply_regulator_dev));
David Brownell4fca9542008-11-11 17:38:53 -08002431 if (ret < 0)
2432 goto scrub;
Liam Girdwooda5766f12008-10-10 13:22:20 +01002433 }
2434
2435 /* add consumers devices */
2436 for (i = 0; i < init_data->num_consumer_supplies; i++) {
2437 ret = set_consumer_device_supply(rdev,
2438 init_data->consumer_supplies[i].dev,
Mark Brown40f92442009-06-17 17:56:39 +01002439 init_data->consumer_supplies[i].dev_name,
Liam Girdwooda5766f12008-10-10 13:22:20 +01002440 init_data->consumer_supplies[i].supply);
Jani Nikulad4033b52010-04-29 10:55:11 +03002441 if (ret < 0)
2442 goto unset_supplies;
Liam Girdwooda5766f12008-10-10 13:22:20 +01002443 }
2444
2445 list_add(&rdev->list, &regulator_list);
2446out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01002447 mutex_unlock(&regulator_list_mutex);
2448 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08002449
Jani Nikulad4033b52010-04-29 10:55:11 +03002450unset_supplies:
2451 unset_regulator_supplies(rdev);
2452
David Brownell4fca9542008-11-11 17:38:53 -08002453scrub:
2454 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06002455 /* device core frees rdev */
2456 rdev = ERR_PTR(ret);
2457 goto out;
2458
David Brownell4fca9542008-11-11 17:38:53 -08002459clean:
2460 kfree(rdev);
2461 rdev = ERR_PTR(ret);
2462 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002463}
2464EXPORT_SYMBOL_GPL(regulator_register);
2465
2466/**
2467 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00002468 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01002469 *
2470 * Called by regulator drivers to unregister a regulator.
2471 */
2472void regulator_unregister(struct regulator_dev *rdev)
2473{
2474 if (rdev == NULL)
2475 return;
2476
2477 mutex_lock(&regulator_list_mutex);
Mark Brown6bf87d12009-07-21 16:00:25 +01002478 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02002479 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002480 list_del(&rdev->list);
2481 if (rdev->supply)
2482 sysfs_remove_link(&rdev->dev.kobj, "supply");
2483 device_unregister(&rdev->dev);
Mark Brownf8c12fe2010-11-29 15:55:17 +00002484 kfree(rdev->constraints);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002485 mutex_unlock(&regulator_list_mutex);
2486}
2487EXPORT_SYMBOL_GPL(regulator_unregister);
2488
2489/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00002490 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01002491 * @state: system suspend state
2492 *
2493 * Configure each regulator with it's suspend operating parameters for state.
2494 * This will usually be called by machine suspend code prior to supending.
2495 */
2496int regulator_suspend_prepare(suspend_state_t state)
2497{
2498 struct regulator_dev *rdev;
2499 int ret = 0;
2500
2501 /* ON is handled by regulator active state */
2502 if (state == PM_SUSPEND_ON)
2503 return -EINVAL;
2504
2505 mutex_lock(&regulator_list_mutex);
2506 list_for_each_entry(rdev, &regulator_list, list) {
2507
2508 mutex_lock(&rdev->mutex);
2509 ret = suspend_prepare(rdev, state);
2510 mutex_unlock(&rdev->mutex);
2511
2512 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002513 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002514 goto out;
2515 }
2516 }
2517out:
2518 mutex_unlock(&regulator_list_mutex);
2519 return ret;
2520}
2521EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
2522
2523/**
Mark Brownca725562009-03-16 19:36:34 +00002524 * regulator_has_full_constraints - the system has fully specified constraints
2525 *
2526 * Calling this function will cause the regulator API to disable all
2527 * regulators which have a zero use count and don't have an always_on
2528 * constraint in a late_initcall.
2529 *
2530 * The intention is that this will become the default behaviour in a
2531 * future kernel release so users are encouraged to use this facility
2532 * now.
2533 */
2534void regulator_has_full_constraints(void)
2535{
2536 has_full_constraints = 1;
2537}
2538EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
2539
2540/**
Mark Brown688fe992010-10-05 19:18:32 -07002541 * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
2542 *
2543 * Calling this function will cause the regulator API to provide a
2544 * dummy regulator to consumers if no physical regulator is found,
2545 * allowing most consumers to proceed as though a regulator were
2546 * configured. This allows systems such as those with software
2547 * controllable regulators for the CPU core only to be brought up more
2548 * readily.
2549 */
2550void regulator_use_dummy_regulator(void)
2551{
2552 board_wants_dummy_regulator = true;
2553}
2554EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
2555
2556/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002557 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00002558 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01002559 *
2560 * Get rdev regulator driver private data. This call can be used in the
2561 * regulator driver context.
2562 */
2563void *rdev_get_drvdata(struct regulator_dev *rdev)
2564{
2565 return rdev->reg_data;
2566}
2567EXPORT_SYMBOL_GPL(rdev_get_drvdata);
2568
2569/**
2570 * regulator_get_drvdata - get regulator driver data
2571 * @regulator: regulator
2572 *
2573 * Get regulator driver private data. This call can be used in the consumer
2574 * driver context when non API regulator specific functions need to be called.
2575 */
2576void *regulator_get_drvdata(struct regulator *regulator)
2577{
2578 return regulator->rdev->reg_data;
2579}
2580EXPORT_SYMBOL_GPL(regulator_get_drvdata);
2581
2582/**
2583 * regulator_set_drvdata - set regulator driver data
2584 * @regulator: regulator
2585 * @data: data
2586 */
2587void regulator_set_drvdata(struct regulator *regulator, void *data)
2588{
2589 regulator->rdev->reg_data = data;
2590}
2591EXPORT_SYMBOL_GPL(regulator_set_drvdata);
2592
2593/**
2594 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00002595 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01002596 */
2597int rdev_get_id(struct regulator_dev *rdev)
2598{
2599 return rdev->desc->id;
2600}
2601EXPORT_SYMBOL_GPL(rdev_get_id);
2602
Liam Girdwooda5766f12008-10-10 13:22:20 +01002603struct device *rdev_get_dev(struct regulator_dev *rdev)
2604{
2605 return &rdev->dev;
2606}
2607EXPORT_SYMBOL_GPL(rdev_get_dev);
2608
2609void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
2610{
2611 return reg_init_data->driver_data;
2612}
2613EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
2614
Liam Girdwood414c70c2008-04-30 15:59:04 +01002615static int __init regulator_init(void)
2616{
Mark Brown34abbd62010-02-12 10:18:08 +00002617 int ret;
2618
Mark Brown34abbd62010-02-12 10:18:08 +00002619 ret = class_register(&regulator_class);
2620
2621 regulator_dummy_init();
2622
2623 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002624}
2625
2626/* init early to allow our consumers to complete system booting */
2627core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00002628
2629static int __init regulator_init_complete(void)
2630{
2631 struct regulator_dev *rdev;
2632 struct regulator_ops *ops;
2633 struct regulation_constraints *c;
2634 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00002635
2636 mutex_lock(&regulator_list_mutex);
2637
2638 /* If we have a full configuration then disable any regulators
2639 * which are not in use or always_on. This will become the
2640 * default behaviour in the future.
2641 */
2642 list_for_each_entry(rdev, &regulator_list, list) {
2643 ops = rdev->desc->ops;
2644 c = rdev->constraints;
2645
Mark Brownf25e0b42009-08-03 18:49:55 +01002646 if (!ops->disable || (c && c->always_on))
Mark Brownca725562009-03-16 19:36:34 +00002647 continue;
2648
2649 mutex_lock(&rdev->mutex);
2650
2651 if (rdev->use_count)
2652 goto unlock;
2653
2654 /* If we can't read the status assume it's on. */
2655 if (ops->is_enabled)
2656 enabled = ops->is_enabled(rdev);
2657 else
2658 enabled = 1;
2659
2660 if (!enabled)
2661 goto unlock;
2662
2663 if (has_full_constraints) {
2664 /* We log since this may kill the system if it
2665 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08002666 rdev_info(rdev, "disabling\n");
Mark Brownca725562009-03-16 19:36:34 +00002667 ret = ops->disable(rdev);
2668 if (ret != 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002669 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00002670 }
2671 } else {
2672 /* The intention is that in future we will
2673 * assume that full constraints are provided
2674 * so warn even if we aren't going to do
2675 * anything here.
2676 */
Joe Perches5da84fd2010-11-30 05:53:48 -08002677 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00002678 }
2679
2680unlock:
2681 mutex_unlock(&rdev->mutex);
2682 }
2683
2684 mutex_unlock(&regulator_list_mutex);
2685
2686 return 0;
2687}
2688late_initcall(regulator_init_complete);