regulator: core: Support fixed voltages in regulator_is_supported_voltage()
[linux-block.git] / drivers / regulator / core.c
CommitLineData
414c70cb
LG
1/*
2 * core.c -- Voltage/Current Regulator framework.
3 *
4 * Copyright 2007, 2008 Wolfson Microelectronics PLC.
a5766f11 5 * Copyright 2008 SlimLogic Ltd.
414c70cb 6 *
a5766f11 7 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
414c70cb
LG
8 *
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
16#include <linux/kernel.h>
17#include <linux/init.h>
1130e5b3 18#include <linux/debugfs.h>
414c70cb 19#include <linux/device.h>
5a0e3ad6 20#include <linux/slab.h>
f21e0e81 21#include <linux/async.h>
414c70cb
LG
22#include <linux/err.h>
23#include <linux/mutex.h>
24#include <linux/suspend.h>
31aae2be 25#include <linux/delay.h>
69511a45 26#include <linux/of.h>
65b19ce6 27#include <linux/regmap.h>
69511a45 28#include <linux/regulator/of_regulator.h>
414c70cb
LG
29#include <linux/regulator/consumer.h>
30#include <linux/regulator/driver.h>
31#include <linux/regulator/machine.h>
65602c32 32#include <linux/module.h>
414c70cb 33
02fa3ec0
MB
34#define CREATE_TRACE_POINTS
35#include <trace/events/regulator.h>
36
34abbd68
MB
37#include "dummy.h"
38
7d51a0db
MB
39#define rdev_crit(rdev, fmt, ...) \
40 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
5da84fd9
JP
41#define rdev_err(rdev, fmt, ...) \
42 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
43#define rdev_warn(rdev, fmt, ...) \
44 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
45#define rdev_info(rdev, fmt, ...) \
46 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
47#define rdev_dbg(rdev, fmt, ...) \
48 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
49
414c70cb
LG
50static DEFINE_MUTEX(regulator_list_mutex);
51static LIST_HEAD(regulator_list);
52static LIST_HEAD(regulator_map_list);
21cf891a 53static bool has_full_constraints;
688fe99a 54static bool board_wants_dummy_regulator;
414c70cb 55
1130e5b3 56static struct dentry *debugfs_root;
1130e5b3 57
8dc5390d 58/*
414c70cb
LG
59 * struct regulator_map
60 *
61 * Used to provide symbolic supply names to devices.
62 */
63struct regulator_map {
64 struct list_head list;
40f9244f 65 const char *dev_name; /* The dev_name() for the consumer */
414c70cb 66 const char *supply;
a5766f11 67 struct regulator_dev *regulator;
414c70cb
LG
68};
69
414c70cb
LG
70/*
71 * struct regulator
72 *
73 * One for each consumer device.
74 */
75struct regulator {
76 struct device *dev;
77 struct list_head list;
6492bc1b 78 unsigned int always_on:1;
414c70cb
LG
79 int uA_load;
80 int min_uV;
81 int max_uV;
414c70cb
LG
82 char *supply_name;
83 struct device_attribute dev_attr;
84 struct regulator_dev *rdev;
5de70519 85 struct dentry *debugfs;
414c70cb
LG
86};
87
88static int _regulator_is_enabled(struct regulator_dev *rdev);
3801b86a 89static int _regulator_disable(struct regulator_dev *rdev);
414c70cb
LG
90static int _regulator_get_voltage(struct regulator_dev *rdev);
91static int _regulator_get_current_limit(struct regulator_dev *rdev);
92static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
93static void _notifier_call_chain(struct regulator_dev *rdev,
94 unsigned long event, void *data);
75790251
MB
95static int _regulator_do_set_voltage(struct regulator_dev *rdev,
96 int min_uV, int max_uV);
3801b86a
MB
97static struct regulator *create_regulator(struct regulator_dev *rdev,
98 struct device *dev,
99 const char *supply_name);
414c70cb 100
1083c393
MB
101static const char *rdev_get_name(struct regulator_dev *rdev)
102{
103 if (rdev->constraints && rdev->constraints->name)
104 return rdev->constraints->name;
105 else if (rdev->desc->name)
106 return rdev->desc->name;
107 else
108 return "";
109}
110
69511a45
RN
111/**
112 * of_get_regulator - get a regulator device node based on supply name
113 * @dev: Device pointer for the consumer (of regulator) device
114 * @supply: regulator supply name
115 *
116 * Extract the regulator device node corresponding to the supply name.
117 * retruns the device node corresponding to the regulator if found, else
118 * returns NULL.
119 */
120static struct device_node *of_get_regulator(struct device *dev, const char *supply)
121{
122 struct device_node *regnode = NULL;
123 char prop_name[32]; /* 32 is max size of property name */
124
125 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
126
127 snprintf(prop_name, 32, "%s-supply", supply);
128 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
129
130 if (!regnode) {
16fbcc3b 131 dev_dbg(dev, "Looking up %s property in node %s failed",
69511a45
RN
132 prop_name, dev->of_node->full_name);
133 return NULL;
134 }
135 return regnode;
136}
137
6492bc1b
MB
138static int _regulator_can_change_status(struct regulator_dev *rdev)
139{
140 if (!rdev->constraints)
141 return 0;
142
143 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
144 return 1;
145 else
146 return 0;
147}
148
414c70cb
LG
149/* Platform voltage constraint check */
150static int regulator_check_voltage(struct regulator_dev *rdev,
151 int *min_uV, int *max_uV)
152{
153 BUG_ON(*min_uV > *max_uV);
154
155 if (!rdev->constraints) {
5da84fd9 156 rdev_err(rdev, "no constraints\n");
414c70cb
LG
157 return -ENODEV;
158 }
159 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
5da84fd9 160 rdev_err(rdev, "operation not allowed\n");
414c70cb
LG
161 return -EPERM;
162 }
163
164 if (*max_uV > rdev->constraints->max_uV)
165 *max_uV = rdev->constraints->max_uV;
166 if (*min_uV < rdev->constraints->min_uV)
167 *min_uV = rdev->constraints->min_uV;
168
89f425ed
MB
169 if (*min_uV > *max_uV) {
170 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
54abd335 171 *min_uV, *max_uV);
414c70cb 172 return -EINVAL;
89f425ed 173 }
414c70cb
LG
174
175 return 0;
176}
177
05fda3b1
TP
178/* Make sure we select a voltage that suits the needs of all
179 * regulator consumers
180 */
181static int regulator_check_consumers(struct regulator_dev *rdev,
182 int *min_uV, int *max_uV)
183{
184 struct regulator *regulator;
185
186 list_for_each_entry(regulator, &rdev->consumer_list, list) {
4aa922c0
MB
187 /*
188 * Assume consumers that didn't say anything are OK
189 * with anything in the constraint range.
190 */
191 if (!regulator->min_uV && !regulator->max_uV)
192 continue;
193
05fda3b1
TP
194 if (*max_uV > regulator->max_uV)
195 *max_uV = regulator->max_uV;
196 if (*min_uV < regulator->min_uV)
197 *min_uV = regulator->min_uV;
198 }
199
200 if (*min_uV > *max_uV)
201 return -EINVAL;
202
203 return 0;
204}
205
414c70cb
LG
206/* current constraint check */
207static int regulator_check_current_limit(struct regulator_dev *rdev,
208 int *min_uA, int *max_uA)
209{
210 BUG_ON(*min_uA > *max_uA);
211
212 if (!rdev->constraints) {
5da84fd9 213 rdev_err(rdev, "no constraints\n");
414c70cb
LG
214 return -ENODEV;
215 }
216 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
5da84fd9 217 rdev_err(rdev, "operation not allowed\n");
414c70cb
LG
218 return -EPERM;
219 }
220
221 if (*max_uA > rdev->constraints->max_uA)
222 *max_uA = rdev->constraints->max_uA;
223 if (*min_uA < rdev->constraints->min_uA)
224 *min_uA = rdev->constraints->min_uA;
225
89f425ed
MB
226 if (*min_uA > *max_uA) {
227 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
54abd335 228 *min_uA, *max_uA);
414c70cb 229 return -EINVAL;
89f425ed 230 }
414c70cb
LG
231
232 return 0;
233}
234
235/* operating mode constraint check */
2c608234 236static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
414c70cb 237{
2c608234 238 switch (*mode) {
e573520b
DB
239 case REGULATOR_MODE_FAST:
240 case REGULATOR_MODE_NORMAL:
241 case REGULATOR_MODE_IDLE:
242 case REGULATOR_MODE_STANDBY:
243 break;
244 default:
89f425ed 245 rdev_err(rdev, "invalid mode %x specified\n", *mode);
e573520b
DB
246 return -EINVAL;
247 }
248
414c70cb 249 if (!rdev->constraints) {
5da84fd9 250 rdev_err(rdev, "no constraints\n");
414c70cb
LG
251 return -ENODEV;
252 }
253 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
5da84fd9 254 rdev_err(rdev, "operation not allowed\n");
414c70cb
LG
255 return -EPERM;
256 }
2c608234
MB
257
258 /* The modes are bitmasks, the most power hungry modes having
259 * the lowest values. If the requested mode isn't supported
260 * try higher modes. */
261 while (*mode) {
262 if (rdev->constraints->valid_modes_mask & *mode)
263 return 0;
264 *mode /= 2;
414c70cb 265 }
2c608234
MB
266
267 return -EINVAL;
414c70cb
LG
268}
269
270/* dynamic regulator mode switching constraint check */
271static int regulator_check_drms(struct regulator_dev *rdev)
272{
273 if (!rdev->constraints) {
5da84fd9 274 rdev_err(rdev, "no constraints\n");
414c70cb
LG
275 return -ENODEV;
276 }
277 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
5da84fd9 278 rdev_err(rdev, "operation not allowed\n");
414c70cb
LG
279 return -EPERM;
280 }
281 return 0;
282}
283
414c70cb
LG
284static ssize_t regulator_uV_show(struct device *dev,
285 struct device_attribute *attr, char *buf)
286{
a5766f11 287 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
288 ssize_t ret;
289
290 mutex_lock(&rdev->mutex);
291 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
292 mutex_unlock(&rdev->mutex);
293
294 return ret;
295}
7ad68e2f 296static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
414c70cb
LG
297
298static ssize_t regulator_uA_show(struct device *dev,
299 struct device_attribute *attr, char *buf)
300{
a5766f11 301 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
302
303 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
304}
7ad68e2f 305static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
414c70cb 306
bc558a60
MB
307static ssize_t regulator_name_show(struct device *dev,
308 struct device_attribute *attr, char *buf)
309{
310 struct regulator_dev *rdev = dev_get_drvdata(dev);
bc558a60 311
1083c393 312 return sprintf(buf, "%s\n", rdev_get_name(rdev));
bc558a60
MB
313}
314
4fca9545 315static ssize_t regulator_print_opmode(char *buf, int mode)
414c70cb 316{
414c70cb
LG
317 switch (mode) {
318 case REGULATOR_MODE_FAST:
319 return sprintf(buf, "fast\n");
320 case REGULATOR_MODE_NORMAL:
321 return sprintf(buf, "normal\n");
322 case REGULATOR_MODE_IDLE:
323 return sprintf(buf, "idle\n");
324 case REGULATOR_MODE_STANDBY:
325 return sprintf(buf, "standby\n");
326 }
327 return sprintf(buf, "unknown\n");
328}
329
4fca9545
DB
330static ssize_t regulator_opmode_show(struct device *dev,
331 struct device_attribute *attr, char *buf)
414c70cb 332{
a5766f11 333 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 334
4fca9545
DB
335 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
336}
7ad68e2f 337static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
4fca9545
DB
338
339static ssize_t regulator_print_state(char *buf, int state)
340{
414c70cb
LG
341 if (state > 0)
342 return sprintf(buf, "enabled\n");
343 else if (state == 0)
344 return sprintf(buf, "disabled\n");
345 else
346 return sprintf(buf, "unknown\n");
347}
348
4fca9545
DB
349static ssize_t regulator_state_show(struct device *dev,
350 struct device_attribute *attr, char *buf)
351{
352 struct regulator_dev *rdev = dev_get_drvdata(dev);
9332546f
MB
353 ssize_t ret;
354
355 mutex_lock(&rdev->mutex);
356 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
357 mutex_unlock(&rdev->mutex);
4fca9545 358
9332546f 359 return ret;
4fca9545 360}
7ad68e2f 361static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
4fca9545 362
853116a1
DB
363static ssize_t regulator_status_show(struct device *dev,
364 struct device_attribute *attr, char *buf)
365{
366 struct regulator_dev *rdev = dev_get_drvdata(dev);
367 int status;
368 char *label;
369
370 status = rdev->desc->ops->get_status(rdev);
371 if (status < 0)
372 return status;
373
374 switch (status) {
375 case REGULATOR_STATUS_OFF:
376 label = "off";
377 break;
378 case REGULATOR_STATUS_ON:
379 label = "on";
380 break;
381 case REGULATOR_STATUS_ERROR:
382 label = "error";
383 break;
384 case REGULATOR_STATUS_FAST:
385 label = "fast";
386 break;
387 case REGULATOR_STATUS_NORMAL:
388 label = "normal";
389 break;
390 case REGULATOR_STATUS_IDLE:
391 label = "idle";
392 break;
393 case REGULATOR_STATUS_STANDBY:
394 label = "standby";
395 break;
396 default:
397 return -ERANGE;
398 }
399
400 return sprintf(buf, "%s\n", label);
401}
402static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
403
414c70cb
LG
404static ssize_t regulator_min_uA_show(struct device *dev,
405 struct device_attribute *attr, char *buf)
406{
a5766f11 407 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
408
409 if (!rdev->constraints)
410 return sprintf(buf, "constraint not defined\n");
411
412 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
413}
7ad68e2f 414static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
414c70cb
LG
415
416static ssize_t regulator_max_uA_show(struct device *dev,
417 struct device_attribute *attr, char *buf)
418{
a5766f11 419 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
420
421 if (!rdev->constraints)
422 return sprintf(buf, "constraint not defined\n");
423
424 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
425}
7ad68e2f 426static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
414c70cb
LG
427
428static ssize_t regulator_min_uV_show(struct device *dev,
429 struct device_attribute *attr, char *buf)
430{
a5766f11 431 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
432
433 if (!rdev->constraints)
434 return sprintf(buf, "constraint not defined\n");
435
436 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
437}
7ad68e2f 438static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
414c70cb
LG
439
440static ssize_t regulator_max_uV_show(struct device *dev,
441 struct device_attribute *attr, char *buf)
442{
a5766f11 443 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
444
445 if (!rdev->constraints)
446 return sprintf(buf, "constraint not defined\n");
447
448 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
449}
7ad68e2f 450static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
414c70cb
LG
451
452static ssize_t regulator_total_uA_show(struct device *dev,
453 struct device_attribute *attr, char *buf)
454{
a5766f11 455 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
456 struct regulator *regulator;
457 int uA = 0;
458
459 mutex_lock(&rdev->mutex);
460 list_for_each_entry(regulator, &rdev->consumer_list, list)
fa2984d4 461 uA += regulator->uA_load;
414c70cb
LG
462 mutex_unlock(&rdev->mutex);
463 return sprintf(buf, "%d\n", uA);
464}
7ad68e2f 465static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
414c70cb
LG
466
467static ssize_t regulator_num_users_show(struct device *dev,
468 struct device_attribute *attr, char *buf)
469{
a5766f11 470 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
471 return sprintf(buf, "%d\n", rdev->use_count);
472}
473
474static ssize_t regulator_type_show(struct device *dev,
475 struct device_attribute *attr, char *buf)
476{
a5766f11 477 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
478
479 switch (rdev->desc->type) {
480 case REGULATOR_VOLTAGE:
481 return sprintf(buf, "voltage\n");
482 case REGULATOR_CURRENT:
483 return sprintf(buf, "current\n");
484 }
485 return sprintf(buf, "unknown\n");
486}
487
488static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
489 struct device_attribute *attr, char *buf)
490{
a5766f11 491 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 492
414c70cb
LG
493 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
494}
7ad68e2f
DB
495static DEVICE_ATTR(suspend_mem_microvolts, 0444,
496 regulator_suspend_mem_uV_show, NULL);
414c70cb
LG
497
498static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
499 struct device_attribute *attr, char *buf)
500{
a5766f11 501 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 502
414c70cb
LG
503 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
504}
7ad68e2f
DB
505static DEVICE_ATTR(suspend_disk_microvolts, 0444,
506 regulator_suspend_disk_uV_show, NULL);
414c70cb
LG
507
508static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
509 struct device_attribute *attr, char *buf)
510{
a5766f11 511 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 512
414c70cb
LG
513 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
514}
7ad68e2f
DB
515static DEVICE_ATTR(suspend_standby_microvolts, 0444,
516 regulator_suspend_standby_uV_show, NULL);
414c70cb 517
414c70cb
LG
518static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
519 struct device_attribute *attr, char *buf)
520{
a5766f11 521 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 522
4fca9545
DB
523 return regulator_print_opmode(buf,
524 rdev->constraints->state_mem.mode);
414c70cb 525}
7ad68e2f
DB
526static DEVICE_ATTR(suspend_mem_mode, 0444,
527 regulator_suspend_mem_mode_show, NULL);
414c70cb
LG
528
529static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
530 struct device_attribute *attr, char *buf)
531{
a5766f11 532 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 533
4fca9545
DB
534 return regulator_print_opmode(buf,
535 rdev->constraints->state_disk.mode);
414c70cb 536}
7ad68e2f
DB
537static DEVICE_ATTR(suspend_disk_mode, 0444,
538 regulator_suspend_disk_mode_show, NULL);
414c70cb
LG
539
540static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
541 struct device_attribute *attr, char *buf)
542{
a5766f11 543 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 544
4fca9545
DB
545 return regulator_print_opmode(buf,
546 rdev->constraints->state_standby.mode);
414c70cb 547}
7ad68e2f
DB
548static DEVICE_ATTR(suspend_standby_mode, 0444,
549 regulator_suspend_standby_mode_show, NULL);
414c70cb
LG
550
551static ssize_t regulator_suspend_mem_state_show(struct device *dev,
552 struct device_attribute *attr, char *buf)
553{
a5766f11 554 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 555
4fca9545
DB
556 return regulator_print_state(buf,
557 rdev->constraints->state_mem.enabled);
414c70cb 558}
7ad68e2f
DB
559static DEVICE_ATTR(suspend_mem_state, 0444,
560 regulator_suspend_mem_state_show, NULL);
414c70cb
LG
561
562static ssize_t regulator_suspend_disk_state_show(struct device *dev,
563 struct device_attribute *attr, char *buf)
564{
a5766f11 565 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 566
4fca9545
DB
567 return regulator_print_state(buf,
568 rdev->constraints->state_disk.enabled);
414c70cb 569}
7ad68e2f
DB
570static DEVICE_ATTR(suspend_disk_state, 0444,
571 regulator_suspend_disk_state_show, NULL);
414c70cb
LG
572
573static ssize_t regulator_suspend_standby_state_show(struct device *dev,
574 struct device_attribute *attr, char *buf)
575{
a5766f11 576 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 577
4fca9545
DB
578 return regulator_print_state(buf,
579 rdev->constraints->state_standby.enabled);
414c70cb 580}
7ad68e2f
DB
581static DEVICE_ATTR(suspend_standby_state, 0444,
582 regulator_suspend_standby_state_show, NULL);
583
bc558a60 584
7ad68e2f
DB
585/*
586 * These are the only attributes are present for all regulators.
587 * Other attributes are a function of regulator functionality.
588 */
414c70cb 589static struct device_attribute regulator_dev_attrs[] = {
bc558a60 590 __ATTR(name, 0444, regulator_name_show, NULL),
414c70cb
LG
591 __ATTR(num_users, 0444, regulator_num_users_show, NULL),
592 __ATTR(type, 0444, regulator_type_show, NULL),
414c70cb
LG
593 __ATTR_NULL,
594};
595
596static void regulator_dev_release(struct device *dev)
597{
a5766f11 598 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
599 kfree(rdev);
600}
601
602static struct class regulator_class = {
603 .name = "regulator",
604 .dev_release = regulator_dev_release,
605 .dev_attrs = regulator_dev_attrs,
606};
607
608/* Calculate the new optimum regulator operating mode based on the new total
609 * consumer load. All locks held by caller */
610static void drms_uA_update(struct regulator_dev *rdev)
611{
612 struct regulator *sibling;
613 int current_uA = 0, output_uV, input_uV, err;
614 unsigned int mode;
615
616 err = regulator_check_drms(rdev);
617 if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
476c2d83
MB
618 (!rdev->desc->ops->get_voltage &&
619 !rdev->desc->ops->get_voltage_sel) ||
620 !rdev->desc->ops->set_mode)
036de8ef 621 return;
414c70cb
LG
622
623 /* get output voltage */
1bf5a1f8 624 output_uV = _regulator_get_voltage(rdev);
414c70cb
LG
625 if (output_uV <= 0)
626 return;
627
628 /* get input voltage */
1bf5a1f8
MB
629 input_uV = 0;
630 if (rdev->supply)
3f24f5ad 631 input_uV = regulator_get_voltage(rdev->supply);
1bf5a1f8 632 if (input_uV <= 0)
414c70cb
LG
633 input_uV = rdev->constraints->input_uV;
634 if (input_uV <= 0)
635 return;
636
637 /* calc total requested load */
638 list_for_each_entry(sibling, &rdev->consumer_list, list)
fa2984d4 639 current_uA += sibling->uA_load;
414c70cb
LG
640
641 /* now get the optimum mode for our new total regulator load */
642 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
643 output_uV, current_uA);
644
645 /* check the new mode is allowed */
2c608234 646 err = regulator_mode_constrain(rdev, &mode);
414c70cb
LG
647 if (err == 0)
648 rdev->desc->ops->set_mode(rdev, mode);
649}
650
651static int suspend_set_state(struct regulator_dev *rdev,
652 struct regulator_state *rstate)
653{
654 int ret = 0;
638f85c5
MB
655
656 /* If we have no suspend mode configration don't set anything;
8ac0e95d
AL
657 * only warn if the driver implements set_suspend_voltage or
658 * set_suspend_mode callback.
638f85c5
MB
659 */
660 if (!rstate->enabled && !rstate->disabled) {
8ac0e95d
AL
661 if (rdev->desc->ops->set_suspend_voltage ||
662 rdev->desc->ops->set_suspend_mode)
5da84fd9 663 rdev_warn(rdev, "No configuration\n");
638f85c5
MB
664 return 0;
665 }
666
667 if (rstate->enabled && rstate->disabled) {
5da84fd9 668 rdev_err(rdev, "invalid configuration\n");
638f85c5
MB
669 return -EINVAL;
670 }
414c70cb 671
8ac0e95d 672 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
414c70cb 673 ret = rdev->desc->ops->set_suspend_enable(rdev);
8ac0e95d 674 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
414c70cb 675 ret = rdev->desc->ops->set_suspend_disable(rdev);
8ac0e95d
AL
676 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
677 ret = 0;
678
414c70cb 679 if (ret < 0) {
5da84fd9 680 rdev_err(rdev, "failed to enabled/disable\n");
414c70cb
LG
681 return ret;
682 }
683
684 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
685 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
686 if (ret < 0) {
5da84fd9 687 rdev_err(rdev, "failed to set voltage\n");
414c70cb
LG
688 return ret;
689 }
690 }
691
692 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
693 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
694 if (ret < 0) {
5da84fd9 695 rdev_err(rdev, "failed to set mode\n");
414c70cb
LG
696 return ret;
697 }
698 }
699 return ret;
700}
701
702/* locks held by caller */
703static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
704{
705 if (!rdev->constraints)
706 return -EINVAL;
707
708 switch (state) {
709 case PM_SUSPEND_STANDBY:
710 return suspend_set_state(rdev,
711 &rdev->constraints->state_standby);
712 case PM_SUSPEND_MEM:
713 return suspend_set_state(rdev,
714 &rdev->constraints->state_mem);
715 case PM_SUSPEND_MAX:
716 return suspend_set_state(rdev,
717 &rdev->constraints->state_disk);
718 default:
719 return -EINVAL;
720 }
721}
722
723static void print_constraints(struct regulator_dev *rdev)
724{
725 struct regulation_constraints *constraints = rdev->constraints;
973e9a27 726 char buf[80] = "";
8f031b48
MB
727 int count = 0;
728 int ret;
414c70cb 729
8f031b48 730 if (constraints->min_uV && constraints->max_uV) {
414c70cb 731 if (constraints->min_uV == constraints->max_uV)
8f031b48
MB
732 count += sprintf(buf + count, "%d mV ",
733 constraints->min_uV / 1000);
414c70cb 734 else
8f031b48
MB
735 count += sprintf(buf + count, "%d <--> %d mV ",
736 constraints->min_uV / 1000,
737 constraints->max_uV / 1000);
738 }
739
740 if (!constraints->min_uV ||
741 constraints->min_uV != constraints->max_uV) {
742 ret = _regulator_get_voltage(rdev);
743 if (ret > 0)
744 count += sprintf(buf + count, "at %d mV ", ret / 1000);
745 }
746
bf5892a8
MB
747 if (constraints->uV_offset)
748 count += sprintf(buf, "%dmV offset ",
749 constraints->uV_offset / 1000);
750
8f031b48 751 if (constraints->min_uA && constraints->max_uA) {
414c70cb 752 if (constraints->min_uA == constraints->max_uA)
8f031b48
MB
753 count += sprintf(buf + count, "%d mA ",
754 constraints->min_uA / 1000);
414c70cb 755 else
8f031b48
MB
756 count += sprintf(buf + count, "%d <--> %d mA ",
757 constraints->min_uA / 1000,
758 constraints->max_uA / 1000);
759 }
760
761 if (!constraints->min_uA ||
762 constraints->min_uA != constraints->max_uA) {
763 ret = _regulator_get_current_limit(rdev);
764 if (ret > 0)
e4a6376b 765 count += sprintf(buf + count, "at %d mA ", ret / 1000);
414c70cb 766 }
8f031b48 767
414c70cb
LG
768 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
769 count += sprintf(buf + count, "fast ");
770 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
771 count += sprintf(buf + count, "normal ");
772 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
773 count += sprintf(buf + count, "idle ");
774 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
775 count += sprintf(buf + count, "standby");
776
13ce29f8 777 rdev_info(rdev, "%s\n", buf);
4a682922
MB
778
779 if ((constraints->min_uV != constraints->max_uV) &&
780 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
781 rdev_warn(rdev,
782 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
414c70cb
LG
783}
784
e79055d6 785static int machine_constraints_voltage(struct regulator_dev *rdev,
1083c393 786 struct regulation_constraints *constraints)
a5766f11 787{
e5fda26c 788 struct regulator_ops *ops = rdev->desc->ops;
af5866c9
MB
789 int ret;
790
791 /* do we need to apply the constraint voltage */
792 if (rdev->constraints->apply_uV &&
75790251
MB
793 rdev->constraints->min_uV == rdev->constraints->max_uV) {
794 ret = _regulator_do_set_voltage(rdev,
795 rdev->constraints->min_uV,
796 rdev->constraints->max_uV);
797 if (ret < 0) {
798 rdev_err(rdev, "failed to apply %duV constraint\n",
799 rdev->constraints->min_uV);
75790251
MB
800 return ret;
801 }
af5866c9 802 }
e06f5b4f 803
4367cfdc
DB
804 /* constrain machine-level voltage specs to fit
805 * the actual range supported by this regulator.
806 */
807 if (ops->list_voltage && rdev->desc->n_voltages) {
808 int count = rdev->desc->n_voltages;
809 int i;
810 int min_uV = INT_MAX;
811 int max_uV = INT_MIN;
812 int cmin = constraints->min_uV;
813 int cmax = constraints->max_uV;
814
3e590918
MB
815 /* it's safe to autoconfigure fixed-voltage supplies
816 and the constraints are used by list_voltage. */
4367cfdc 817 if (count == 1 && !cmin) {
3e590918 818 cmin = 1;
4367cfdc 819 cmax = INT_MAX;
3e590918
MB
820 constraints->min_uV = cmin;
821 constraints->max_uV = cmax;
4367cfdc
DB
822 }
823
3e2b9abd
MB
824 /* voltage constraints are optional */
825 if ((cmin == 0) && (cmax == 0))
e79055d6 826 return 0;
3e2b9abd 827
4367cfdc 828 /* else require explicit machine-level constraints */
3e2b9abd 829 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
5da84fd9 830 rdev_err(rdev, "invalid voltage constraints\n");
e79055d6 831 return -EINVAL;
4367cfdc
DB
832 }
833
834 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
835 for (i = 0; i < count; i++) {
836 int value;
837
838 value = ops->list_voltage(rdev, i);
839 if (value <= 0)
840 continue;
841
842 /* maybe adjust [min_uV..max_uV] */
843 if (value >= cmin && value < min_uV)
844 min_uV = value;
845 if (value <= cmax && value > max_uV)
846 max_uV = value;
847 }
848
849 /* final: [min_uV..max_uV] valid iff constraints valid */
850 if (max_uV < min_uV) {
5da84fd9 851 rdev_err(rdev, "unsupportable voltage constraints\n");
e79055d6 852 return -EINVAL;
4367cfdc
DB
853 }
854
855 /* use regulator's subset of machine constraints */
856 if (constraints->min_uV < min_uV) {
5da84fd9
JP
857 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
858 constraints->min_uV, min_uV);
4367cfdc
DB
859 constraints->min_uV = min_uV;
860 }
861 if (constraints->max_uV > max_uV) {
5da84fd9
JP
862 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
863 constraints->max_uV, max_uV);
4367cfdc
DB
864 constraints->max_uV = max_uV;
865 }
866 }
867
e79055d6
MB
868 return 0;
869}
870
871/**
872 * set_machine_constraints - sets regulator constraints
873 * @rdev: regulator source
874 * @constraints: constraints to apply
875 *
876 * Allows platform initialisation code to define and constrain
877 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
878 * Constraints *must* be set by platform code in order for some
879 * regulator operations to proceed i.e. set_voltage, set_current_limit,
880 * set_mode.
881 */
882static int set_machine_constraints(struct regulator_dev *rdev,
f8c12fe3 883 const struct regulation_constraints *constraints)
e79055d6
MB
884{
885 int ret = 0;
e79055d6
MB
886 struct regulator_ops *ops = rdev->desc->ops;
887
9a8f5e07
MB
888 if (constraints)
889 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
890 GFP_KERNEL);
891 else
892 rdev->constraints = kzalloc(sizeof(*constraints),
893 GFP_KERNEL);
f8c12fe3
MB
894 if (!rdev->constraints)
895 return -ENOMEM;
af5866c9 896
f8c12fe3 897 ret = machine_constraints_voltage(rdev, rdev->constraints);
e79055d6
MB
898 if (ret != 0)
899 goto out;
900
a5766f11 901 /* do we need to setup our suspend state */
9a8f5e07 902 if (rdev->constraints->initial_state) {
f8c12fe3 903 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
e06f5b4f 904 if (ret < 0) {
5da84fd9 905 rdev_err(rdev, "failed to set suspend state\n");
e06f5b4f
MB
906 goto out;
907 }
908 }
a5766f11 909
9a8f5e07 910 if (rdev->constraints->initial_mode) {
a308466c 911 if (!ops->set_mode) {
5da84fd9 912 rdev_err(rdev, "no set_mode operation\n");
a308466c
MB
913 ret = -EINVAL;
914 goto out;
915 }
916
f8c12fe3 917 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
a308466c 918 if (ret < 0) {
5da84fd9 919 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
a308466c
MB
920 goto out;
921 }
922 }
923
cacf90f2
MB
924 /* If the constraints say the regulator should be on at this point
925 * and we have control then make sure it is enabled.
926 */
f8c12fe3
MB
927 if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
928 ops->enable) {
e5fda26c
MB
929 ret = ops->enable(rdev);
930 if (ret < 0) {
5da84fd9 931 rdev_err(rdev, "failed to enable\n");
e5fda26c
MB
932 goto out;
933 }
934 }
935
a5766f11 936 print_constraints(rdev);
1a6958e7 937 return 0;
a5766f11 938out:
1a6958e7
AL
939 kfree(rdev->constraints);
940 rdev->constraints = NULL;
a5766f11
LG
941 return ret;
942}
943
944/**
945 * set_supply - set regulator supply regulator
69279fb9
MB
946 * @rdev: regulator name
947 * @supply_rdev: supply regulator name
a5766f11
LG
948 *
949 * Called by platform initialisation code to set the supply regulator for this
950 * regulator. This ensures that a regulators supply will also be enabled by the
951 * core if it's child is enabled.
952 */
953static int set_supply(struct regulator_dev *rdev,
3801b86a 954 struct regulator_dev *supply_rdev)
a5766f11
LG
955{
956 int err;
957
3801b86a
MB
958 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
959
960 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
32c78de8
AL
961 if (rdev->supply == NULL) {
962 err = -ENOMEM;
3801b86a 963 return err;
a5766f11 964 }
3801b86a
MB
965
966 return 0;
a5766f11
LG
967}
968
969/**
06c63f93 970 * set_consumer_device_supply - Bind a regulator to a symbolic supply
69279fb9 971 * @rdev: regulator source
40f9244f 972 * @consumer_dev_name: dev_name() string for device supply applies to
69279fb9 973 * @supply: symbolic name for supply
a5766f11
LG
974 *
975 * Allows platform initialisation code to map physical regulator
976 * sources to symbolic names for supplies for use by devices. Devices
977 * should use these symbolic names to request regulators, avoiding the
978 * need to provide board-specific regulator names as platform data.
979 */
980static int set_consumer_device_supply(struct regulator_dev *rdev,
737f360d
MB
981 const char *consumer_dev_name,
982 const char *supply)
a5766f11
LG
983{
984 struct regulator_map *node;
9ed2099e 985 int has_dev;
a5766f11
LG
986
987 if (supply == NULL)
988 return -EINVAL;
989
9ed2099e
MB
990 if (consumer_dev_name != NULL)
991 has_dev = 1;
992 else
993 has_dev = 0;
994
6001e13c 995 list_for_each_entry(node, &regulator_map_list, list) {
23b5cc2a
JN
996 if (node->dev_name && consumer_dev_name) {
997 if (strcmp(node->dev_name, consumer_dev_name) != 0)
998 continue;
999 } else if (node->dev_name || consumer_dev_name) {
6001e13c 1000 continue;
23b5cc2a
JN
1001 }
1002
6001e13c
DB
1003 if (strcmp(node->supply, supply) != 0)
1004 continue;
1005
737f360d
MB
1006 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1007 consumer_dev_name,
1008 dev_name(&node->regulator->dev),
1009 node->regulator->desc->name,
1010 supply,
1011 dev_name(&rdev->dev), rdev_get_name(rdev));
6001e13c
DB
1012 return -EBUSY;
1013 }
1014
9ed2099e 1015 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
a5766f11
LG
1016 if (node == NULL)
1017 return -ENOMEM;
1018
1019 node->regulator = rdev;
a5766f11
LG
1020 node->supply = supply;
1021
9ed2099e
MB
1022 if (has_dev) {
1023 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1024 if (node->dev_name == NULL) {
1025 kfree(node);
1026 return -ENOMEM;
1027 }
40f9244f
MB
1028 }
1029
a5766f11
LG
1030 list_add(&node->list, &regulator_map_list);
1031 return 0;
1032}
1033
0f1d747b
MR
1034static void unset_regulator_supplies(struct regulator_dev *rdev)
1035{
1036 struct regulator_map *node, *n;
1037
1038 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1039 if (rdev == node->regulator) {
1040 list_del(&node->list);
40f9244f 1041 kfree(node->dev_name);
0f1d747b 1042 kfree(node);
0f1d747b
MR
1043 }
1044 }
1045}
1046
f5726ae3 1047#define REG_STR_SIZE 64
414c70cb
LG
1048
1049static struct regulator *create_regulator(struct regulator_dev *rdev,
1050 struct device *dev,
1051 const char *supply_name)
1052{
1053 struct regulator *regulator;
1054 char buf[REG_STR_SIZE];
1055 int err, size;
1056
1057 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1058 if (regulator == NULL)
1059 return NULL;
1060
1061 mutex_lock(&rdev->mutex);
1062 regulator->rdev = rdev;
1063 list_add(&regulator->list, &rdev->consumer_list);
1064
1065 if (dev) {
222cc7b1 1066 /* Add a link to the device sysfs entry */
414c70cb
LG
1067 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1068 dev->kobj.name, supply_name);
1069 if (size >= REG_STR_SIZE)
222cc7b1 1070 goto overflow_err;
414c70cb
LG
1071
1072 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1073 if (regulator->supply_name == NULL)
222cc7b1 1074 goto overflow_err;
414c70cb
LG
1075
1076 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1077 buf);
1078 if (err) {
5da84fd9
JP
1079 rdev_warn(rdev, "could not add device link %s err %d\n",
1080 dev->kobj.name, err);
222cc7b1 1081 /* non-fatal */
414c70cb 1082 }
5de70519
MB
1083 } else {
1084 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1085 if (regulator->supply_name == NULL)
222cc7b1 1086 goto overflow_err;
5de70519
MB
1087 }
1088
5de70519
MB
1089 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1090 rdev->debugfs);
24751434 1091 if (!regulator->debugfs) {
5de70519 1092 rdev_warn(rdev, "Failed to create debugfs directory\n");
5de70519
MB
1093 } else {
1094 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1095 &regulator->uA_load);
1096 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1097 &regulator->min_uV);
1098 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1099 &regulator->max_uV);
414c70cb 1100 }
5de70519 1101
6492bc1b
MB
1102 /*
1103 * Check now if the regulator is an always on regulator - if
1104 * it is then we don't need to do nearly so much work for
1105 * enable/disable calls.
1106 */
1107 if (!_regulator_can_change_status(rdev) &&
1108 _regulator_is_enabled(rdev))
1109 regulator->always_on = true;
1110
414c70cb
LG
1111 mutex_unlock(&rdev->mutex);
1112 return regulator;
414c70cb
LG
1113overflow_err:
1114 list_del(&regulator->list);
1115 kfree(regulator);
1116 mutex_unlock(&rdev->mutex);
1117 return NULL;
1118}
1119
31aae2be
MB
1120static int _regulator_get_enable_time(struct regulator_dev *rdev)
1121{
1122 if (!rdev->desc->ops->enable_time)
1123 return 0;
1124 return rdev->desc->ops->enable_time(rdev);
1125}
1126
69511a45 1127static struct regulator_dev *regulator_dev_lookup(struct device *dev,
6d191a5f
MB
1128 const char *supply,
1129 int *ret)
69511a45
RN
1130{
1131 struct regulator_dev *r;
1132 struct device_node *node;
576ca436
MB
1133 struct regulator_map *map;
1134 const char *devname = NULL;
69511a45
RN
1135
1136 /* first do a dt based lookup */
1137 if (dev && dev->of_node) {
1138 node = of_get_regulator(dev, supply);
6d191a5f 1139 if (node) {
69511a45
RN
1140 list_for_each_entry(r, &regulator_list, list)
1141 if (r->dev.parent &&
1142 node == r->dev.of_node)
1143 return r;
6d191a5f
MB
1144 } else {
1145 /*
1146 * If we couldn't even get the node then it's
1147 * not just that the device didn't register
1148 * yet, there's no node and we'll never
1149 * succeed.
1150 */
1151 *ret = -ENODEV;
1152 }
69511a45
RN
1153 }
1154
1155 /* if not found, try doing it non-dt way */
576ca436
MB
1156 if (dev)
1157 devname = dev_name(dev);
1158
69511a45
RN
1159 list_for_each_entry(r, &regulator_list, list)
1160 if (strcmp(rdev_get_name(r), supply) == 0)
1161 return r;
1162
576ca436
MB
1163 list_for_each_entry(map, &regulator_map_list, list) {
1164 /* If the mapping has a device set up it must match */
1165 if (map->dev_name &&
1166 (!devname || strcmp(map->dev_name, devname)))
1167 continue;
1168
1169 if (strcmp(map->supply, supply) == 0)
1170 return map->regulator;
1171 }
1172
1173
69511a45
RN
1174 return NULL;
1175}
1176
5ffbd136
MB
1177/* Internal regulator request function */
1178static struct regulator *_regulator_get(struct device *dev, const char *id,
1179 int exclusive)
414c70cb
LG
1180{
1181 struct regulator_dev *rdev;
04bf3011 1182 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
40f9244f 1183 const char *devname = NULL;
5ffbd136 1184 int ret;
414c70cb
LG
1185
1186 if (id == NULL) {
5da84fd9 1187 pr_err("get() with no identifier\n");
414c70cb
LG
1188 return regulator;
1189 }
1190
40f9244f
MB
1191 if (dev)
1192 devname = dev_name(dev);
1193
414c70cb
LG
1194 mutex_lock(&regulator_list_mutex);
1195
6d191a5f 1196 rdev = regulator_dev_lookup(dev, id, &ret);
69511a45
RN
1197 if (rdev)
1198 goto found;
1199
688fe99a
MB
1200 if (board_wants_dummy_regulator) {
1201 rdev = dummy_regulator_rdev;
1202 goto found;
1203 }
1204
34abbd68
MB
1205#ifdef CONFIG_REGULATOR_DUMMY
1206 if (!devname)
1207 devname = "deviceless";
1208
1209 /* If the board didn't flag that it was fully constrained then
1210 * substitute in a dummy regulator so consumers can continue.
1211 */
1212 if (!has_full_constraints) {
5da84fd9
JP
1213 pr_warn("%s supply %s not found, using dummy regulator\n",
1214 devname, id);
34abbd68
MB
1215 rdev = dummy_regulator_rdev;
1216 goto found;
1217 }
1218#endif
1219
414c70cb
LG
1220 mutex_unlock(&regulator_list_mutex);
1221 return regulator;
1222
1223found:
5ffbd136
MB
1224 if (rdev->exclusive) {
1225 regulator = ERR_PTR(-EPERM);
1226 goto out;
1227 }
1228
1229 if (exclusive && rdev->open_count) {
1230 regulator = ERR_PTR(-EBUSY);
1231 goto out;
1232 }
1233
a5766f11
LG
1234 if (!try_module_get(rdev->owner))
1235 goto out;
1236
414c70cb
LG
1237 regulator = create_regulator(rdev, dev, id);
1238 if (regulator == NULL) {
1239 regulator = ERR_PTR(-ENOMEM);
1240 module_put(rdev->owner);
bcda4321 1241 goto out;
414c70cb
LG
1242 }
1243
5ffbd136
MB
1244 rdev->open_count++;
1245 if (exclusive) {
1246 rdev->exclusive = 1;
1247
1248 ret = _regulator_is_enabled(rdev);
1249 if (ret > 0)
1250 rdev->use_count = 1;
1251 else
1252 rdev->use_count = 0;
1253 }
1254
a5766f11 1255out:
414c70cb 1256 mutex_unlock(&regulator_list_mutex);
5ffbd136 1257
414c70cb
LG
1258 return regulator;
1259}
5ffbd136
MB
1260
1261/**
1262 * regulator_get - lookup and obtain a reference to a regulator.
1263 * @dev: device for regulator "consumer"
1264 * @id: Supply name or regulator ID.
1265 *
1266 * Returns a struct regulator corresponding to the regulator producer,
1267 * or IS_ERR() condition containing errno.
1268 *
1269 * Use of supply names configured via regulator_set_device_supply() is
1270 * strongly encouraged. It is recommended that the supply name used
1271 * should match the name used for the supply and/or the relevant
1272 * device pins in the datasheet.
1273 */
1274struct regulator *regulator_get(struct device *dev, const char *id)
1275{
1276 return _regulator_get(dev, id, 0);
1277}
414c70cb
LG
1278EXPORT_SYMBOL_GPL(regulator_get);
1279
070b9079
SB
1280static void devm_regulator_release(struct device *dev, void *res)
1281{
1282 regulator_put(*(struct regulator **)res);
1283}
1284
1285/**
1286 * devm_regulator_get - Resource managed regulator_get()
1287 * @dev: device for regulator "consumer"
1288 * @id: Supply name or regulator ID.
1289 *
1290 * Managed regulator_get(). Regulators returned from this function are
1291 * automatically regulator_put() on driver detach. See regulator_get() for more
1292 * information.
1293 */
1294struct regulator *devm_regulator_get(struct device *dev, const char *id)
1295{
1296 struct regulator **ptr, *regulator;
1297
1298 ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
1299 if (!ptr)
1300 return ERR_PTR(-ENOMEM);
1301
1302 regulator = regulator_get(dev, id);
1303 if (!IS_ERR(regulator)) {
1304 *ptr = regulator;
1305 devres_add(dev, ptr);
1306 } else {
1307 devres_free(ptr);
1308 }
1309
1310 return regulator;
1311}
1312EXPORT_SYMBOL_GPL(devm_regulator_get);
1313
5ffbd136
MB
1314/**
1315 * regulator_get_exclusive - obtain exclusive access to a regulator.
1316 * @dev: device for regulator "consumer"
1317 * @id: Supply name or regulator ID.
1318 *
1319 * Returns a struct regulator corresponding to the regulator producer,
1320 * or IS_ERR() condition containing errno. Other consumers will be
1321 * unable to obtain this reference is held and the use count for the
1322 * regulator will be initialised to reflect the current state of the
1323 * regulator.
1324 *
1325 * This is intended for use by consumers which cannot tolerate shared
1326 * use of the regulator such as those which need to force the
1327 * regulator off for correct operation of the hardware they are
1328 * controlling.
1329 *
1330 * Use of supply names configured via regulator_set_device_supply() is
1331 * strongly encouraged. It is recommended that the supply name used
1332 * should match the name used for the supply and/or the relevant
1333 * device pins in the datasheet.
1334 */
1335struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1336{
1337 return _regulator_get(dev, id, 1);
1338}
1339EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1340
414c70cb
LG
1341/**
1342 * regulator_put - "free" the regulator source
1343 * @regulator: regulator source
1344 *
1345 * Note: drivers must ensure that all regulator_enable calls made on this
1346 * regulator source are balanced by regulator_disable calls prior to calling
1347 * this function.
1348 */
1349void regulator_put(struct regulator *regulator)
1350{
1351 struct regulator_dev *rdev;
1352
1353 if (regulator == NULL || IS_ERR(regulator))
1354 return;
1355
414c70cb
LG
1356 mutex_lock(&regulator_list_mutex);
1357 rdev = regulator->rdev;
1358
5de70519 1359 debugfs_remove_recursive(regulator->debugfs);
5de70519 1360
414c70cb
LG
1361 /* remove any sysfs entries */
1362 if (regulator->dev) {
1363 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
414c70cb
LG
1364 device_remove_file(regulator->dev, &regulator->dev_attr);
1365 kfree(regulator->dev_attr.attr.name);
1366 }
5de70519 1367 kfree(regulator->supply_name);
414c70cb
LG
1368 list_del(&regulator->list);
1369 kfree(regulator);
1370
5ffbd136
MB
1371 rdev->open_count--;
1372 rdev->exclusive = 0;
1373
414c70cb
LG
1374 module_put(rdev->owner);
1375 mutex_unlock(&regulator_list_mutex);
1376}
1377EXPORT_SYMBOL_GPL(regulator_put);
1378
d5ad34f7
MB
1379static int devm_regulator_match(struct device *dev, void *res, void *data)
1380{
1381 struct regulator **r = res;
1382 if (!r || !*r) {
1383 WARN_ON(!r || !*r);
1384 return 0;
1385 }
1386 return *r == data;
1387}
1388
1389/**
1390 * devm_regulator_put - Resource managed regulator_put()
1391 * @regulator: regulator to free
1392 *
1393 * Deallocate a regulator allocated with devm_regulator_get(). Normally
1394 * this function will not need to be called and the resource management
1395 * code will ensure that the resource is freed.
1396 */
1397void devm_regulator_put(struct regulator *regulator)
1398{
1399 int rc;
1400
361ff501 1401 rc = devres_release(regulator->dev, devm_regulator_release,
d5ad34f7 1402 devm_regulator_match, regulator);
230a5a1c 1403 if (rc != 0)
968c2c17 1404 WARN_ON(rc);
d5ad34f7
MB
1405}
1406EXPORT_SYMBOL_GPL(devm_regulator_put);
1407
414c70cb
LG
1408/* locks held by regulator_enable() */
1409static int _regulator_enable(struct regulator_dev *rdev)
1410{
31aae2be 1411 int ret, delay;
414c70cb 1412
414c70cb 1413 /* check voltage and requested load before enabling */
9a2372fa
MB
1414 if (rdev->constraints &&
1415 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1416 drms_uA_update(rdev);
414c70cb 1417
9a2372fa
MB
1418 if (rdev->use_count == 0) {
1419 /* The regulator may on if it's not switchable or left on */
1420 ret = _regulator_is_enabled(rdev);
1421 if (ret == -EINVAL || ret == 0) {
1422 if (!_regulator_can_change_status(rdev))
1423 return -EPERM;
1424
31aae2be 1425 if (!rdev->desc->ops->enable)
9a2372fa 1426 return -EINVAL;
31aae2be
MB
1427
1428 /* Query before enabling in case configuration
25985edc 1429 * dependent. */
31aae2be
MB
1430 ret = _regulator_get_enable_time(rdev);
1431 if (ret >= 0) {
1432 delay = ret;
1433 } else {
5da84fd9 1434 rdev_warn(rdev, "enable_time() failed: %d\n",
1d7372e1 1435 ret);
31aae2be 1436 delay = 0;
9a2372fa 1437 }
31aae2be 1438
02fa3ec0
MB
1439 trace_regulator_enable(rdev_get_name(rdev));
1440
31aae2be
MB
1441 /* Allow the regulator to ramp; it would be useful
1442 * to extend this for bulk operations so that the
1443 * regulators can ramp together. */
1444 ret = rdev->desc->ops->enable(rdev);
1445 if (ret < 0)
1446 return ret;
1447
02fa3ec0
MB
1448 trace_regulator_enable_delay(rdev_get_name(rdev));
1449
e36c1df8 1450 if (delay >= 1000) {
31aae2be 1451 mdelay(delay / 1000);
e36c1df8
AL
1452 udelay(delay % 1000);
1453 } else if (delay) {
31aae2be 1454 udelay(delay);
e36c1df8 1455 }
31aae2be 1456
02fa3ec0
MB
1457 trace_regulator_enable_complete(rdev_get_name(rdev));
1458
a7433cff 1459 } else if (ret < 0) {
5da84fd9 1460 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
414c70cb
LG
1461 return ret;
1462 }
a7433cff 1463 /* Fallthrough on positive return values - already enabled */
414c70cb
LG
1464 }
1465
9a2372fa
MB
1466 rdev->use_count++;
1467
1468 return 0;
414c70cb
LG
1469}
1470
1471/**
1472 * regulator_enable - enable regulator output
1473 * @regulator: regulator source
1474 *
cf7bbcdf
MB
1475 * Request that the regulator be enabled with the regulator output at
1476 * the predefined voltage or current value. Calls to regulator_enable()
1477 * must be balanced with calls to regulator_disable().
1478 *
414c70cb 1479 * NOTE: the output value can be set by other drivers, boot loader or may be
cf7bbcdf 1480 * hardwired in the regulator.
414c70cb
LG
1481 */
1482int regulator_enable(struct regulator *regulator)
1483{
412aec61
DB
1484 struct regulator_dev *rdev = regulator->rdev;
1485 int ret = 0;
414c70cb 1486
6492bc1b
MB
1487 if (regulator->always_on)
1488 return 0;
1489
3801b86a
MB
1490 if (rdev->supply) {
1491 ret = regulator_enable(rdev->supply);
1492 if (ret != 0)
1493 return ret;
1494 }
1495
412aec61 1496 mutex_lock(&rdev->mutex);
cd94b505 1497 ret = _regulator_enable(rdev);
412aec61 1498 mutex_unlock(&rdev->mutex);
3801b86a 1499
d1685e4e 1500 if (ret != 0 && rdev->supply)
3801b86a
MB
1501 regulator_disable(rdev->supply);
1502
414c70cb
LG
1503 return ret;
1504}
1505EXPORT_SYMBOL_GPL(regulator_enable);
1506
1507/* locks held by regulator_disable() */
3801b86a 1508static int _regulator_disable(struct regulator_dev *rdev)
414c70cb
LG
1509{
1510 int ret = 0;
1511
cd94b505 1512 if (WARN(rdev->use_count <= 0,
43e7ee33 1513 "unbalanced disables for %s\n", rdev_get_name(rdev)))
cd94b505
DB
1514 return -EIO;
1515
414c70cb 1516 /* are we the last user and permitted to disable ? */
60ef66fc
MB
1517 if (rdev->use_count == 1 &&
1518 (rdev->constraints && !rdev->constraints->always_on)) {
414c70cb
LG
1519
1520 /* we are last user */
9a2372fa
MB
1521 if (_regulator_can_change_status(rdev) &&
1522 rdev->desc->ops->disable) {
02fa3ec0
MB
1523 trace_regulator_disable(rdev_get_name(rdev));
1524
414c70cb
LG
1525 ret = rdev->desc->ops->disable(rdev);
1526 if (ret < 0) {
5da84fd9 1527 rdev_err(rdev, "failed to disable\n");
414c70cb
LG
1528 return ret;
1529 }
84b68263 1530
02fa3ec0
MB
1531 trace_regulator_disable_complete(rdev_get_name(rdev));
1532
84b68263
MB
1533 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1534 NULL);
414c70cb
LG
1535 }
1536
414c70cb
LG
1537 rdev->use_count = 0;
1538 } else if (rdev->use_count > 1) {
1539
1540 if (rdev->constraints &&
1541 (rdev->constraints->valid_ops_mask &
1542 REGULATOR_CHANGE_DRMS))
1543 drms_uA_update(rdev);
1544
1545 rdev->use_count--;
1546 }
3801b86a 1547
414c70cb
LG
1548 return ret;
1549}
1550
1551/**
1552 * regulator_disable - disable regulator output
1553 * @regulator: regulator source
1554 *
cf7bbcdf
MB
1555 * Disable the regulator output voltage or current. Calls to
1556 * regulator_enable() must be balanced with calls to
1557 * regulator_disable().
69279fb9 1558 *
414c70cb 1559 * NOTE: this will only disable the regulator output if no other consumer
cf7bbcdf
MB
1560 * devices have it enabled, the regulator device supports disabling and
1561 * machine constraints permit this operation.
414c70cb
LG
1562 */
1563int regulator_disable(struct regulator *regulator)
1564{
412aec61
DB
1565 struct regulator_dev *rdev = regulator->rdev;
1566 int ret = 0;
414c70cb 1567
6492bc1b
MB
1568 if (regulator->always_on)
1569 return 0;
1570
412aec61 1571 mutex_lock(&rdev->mutex);
3801b86a 1572 ret = _regulator_disable(rdev);
412aec61 1573 mutex_unlock(&rdev->mutex);
8cbf811d 1574
3801b86a
MB
1575 if (ret == 0 && rdev->supply)
1576 regulator_disable(rdev->supply);
8cbf811d 1577
414c70cb
LG
1578 return ret;
1579}
1580EXPORT_SYMBOL_GPL(regulator_disable);
1581
1582/* locks held by regulator_force_disable() */
3801b86a 1583static int _regulator_force_disable(struct regulator_dev *rdev)
414c70cb
LG
1584{
1585 int ret = 0;
1586
1587 /* force disable */
1588 if (rdev->desc->ops->disable) {
1589 /* ah well, who wants to live forever... */
1590 ret = rdev->desc->ops->disable(rdev);
1591 if (ret < 0) {
5da84fd9 1592 rdev_err(rdev, "failed to force disable\n");
414c70cb
LG
1593 return ret;
1594 }
1595 /* notify other consumers that power has been forced off */
84b68263
MB
1596 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
1597 REGULATOR_EVENT_DISABLE, NULL);
414c70cb
LG
1598 }
1599
414c70cb
LG
1600 return ret;
1601}
1602
1603/**
1604 * regulator_force_disable - force disable regulator output
1605 * @regulator: regulator source
1606 *
1607 * Forcibly disable the regulator output voltage or current.
1608 * NOTE: this *will* disable the regulator output even if other consumer
1609 * devices have it enabled. This should be used for situations when device
1610 * damage will likely occur if the regulator is not disabled (e.g. over temp).
1611 */
1612int regulator_force_disable(struct regulator *regulator)
1613{
82d15839 1614 struct regulator_dev *rdev = regulator->rdev;
414c70cb
LG
1615 int ret;
1616
82d15839 1617 mutex_lock(&rdev->mutex);
414c70cb 1618 regulator->uA_load = 0;
3801b86a 1619 ret = _regulator_force_disable(regulator->rdev);
82d15839 1620 mutex_unlock(&rdev->mutex);
8cbf811d 1621
3801b86a
MB
1622 if (rdev->supply)
1623 while (rdev->open_count--)
1624 regulator_disable(rdev->supply);
8cbf811d 1625
414c70cb
LG
1626 return ret;
1627}
1628EXPORT_SYMBOL_GPL(regulator_force_disable);
1629
da07ecd9
MB
1630static void regulator_disable_work(struct work_struct *work)
1631{
1632 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
1633 disable_work.work);
1634 int count, i, ret;
1635
1636 mutex_lock(&rdev->mutex);
1637
1638 BUG_ON(!rdev->deferred_disables);
1639
1640 count = rdev->deferred_disables;
1641 rdev->deferred_disables = 0;
1642
1643 for (i = 0; i < count; i++) {
1644 ret = _regulator_disable(rdev);
1645 if (ret != 0)
1646 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
1647 }
1648
1649 mutex_unlock(&rdev->mutex);
1650
1651 if (rdev->supply) {
1652 for (i = 0; i < count; i++) {
1653 ret = regulator_disable(rdev->supply);
1654 if (ret != 0) {
1655 rdev_err(rdev,
1656 "Supply disable failed: %d\n", ret);
1657 }
1658 }
1659 }
1660}
1661
1662/**
1663 * regulator_disable_deferred - disable regulator output with delay
1664 * @regulator: regulator source
1665 * @ms: miliseconds until the regulator is disabled
1666 *
1667 * Execute regulator_disable() on the regulator after a delay. This
1668 * is intended for use with devices that require some time to quiesce.
1669 *
1670 * NOTE: this will only disable the regulator output if no other consumer
1671 * devices have it enabled, the regulator device supports disabling and
1672 * machine constraints permit this operation.
1673 */
1674int regulator_disable_deferred(struct regulator *regulator, int ms)
1675{
1676 struct regulator_dev *rdev = regulator->rdev;
aa59802d 1677 int ret;
da07ecd9 1678
6492bc1b
MB
1679 if (regulator->always_on)
1680 return 0;
1681
da07ecd9
MB
1682 mutex_lock(&rdev->mutex);
1683 rdev->deferred_disables++;
1684 mutex_unlock(&rdev->mutex);
1685
aa59802d
MB
1686 ret = schedule_delayed_work(&rdev->disable_work,
1687 msecs_to_jiffies(ms));
1688 if (ret < 0)
1689 return ret;
1690 else
1691 return 0;
da07ecd9
MB
1692}
1693EXPORT_SYMBOL_GPL(regulator_disable_deferred);
1694
cd6dffb4
MB
1695/**
1696 * regulator_is_enabled_regmap - standard is_enabled() for regmap users
1697 *
1698 * @rdev: regulator to operate on
1699 *
1700 * Regulators that use regmap for their register I/O can set the
1701 * enable_reg and enable_mask fields in their descriptor and then use
1702 * this as their is_enabled operation, saving some code.
1703 */
1704int regulator_is_enabled_regmap(struct regulator_dev *rdev)
1705{
1706 unsigned int val;
1707 int ret;
1708
1709 ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val);
1710 if (ret != 0)
1711 return ret;
1712
1713 return (val & rdev->desc->enable_mask) != 0;
1714}
1715EXPORT_SYMBOL_GPL(regulator_is_enabled_regmap);
1716
1717/**
1718 * regulator_enable_regmap - standard enable() for regmap users
1719 *
1720 * @rdev: regulator to operate on
1721 *
1722 * Regulators that use regmap for their register I/O can set the
1723 * enable_reg and enable_mask fields in their descriptor and then use
1724 * this as their enable() operation, saving some code.
1725 */
1726int regulator_enable_regmap(struct regulator_dev *rdev)
1727{
1728 return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
1729 rdev->desc->enable_mask,
1730 rdev->desc->enable_mask);
1731}
1732EXPORT_SYMBOL_GPL(regulator_enable_regmap);
1733
1734/**
1735 * regulator_disable_regmap - standard disable() for regmap users
1736 *
1737 * @rdev: regulator to operate on
1738 *
1739 * Regulators that use regmap for their register I/O can set the
1740 * enable_reg and enable_mask fields in their descriptor and then use
1741 * this as their disable() operation, saving some code.
1742 */
1743int regulator_disable_regmap(struct regulator_dev *rdev)
1744{
1745 return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
1746 rdev->desc->enable_mask, 0);
1747}
1748EXPORT_SYMBOL_GPL(regulator_disable_regmap);
1749
414c70cb
LG
1750static int _regulator_is_enabled(struct regulator_dev *rdev)
1751{
9a7f6a4c 1752 /* If we don't know then assume that the regulator is always on */
9332546f 1753 if (!rdev->desc->ops->is_enabled)
9a7f6a4c 1754 return 1;
414c70cb 1755
9332546f 1756 return rdev->desc->ops->is_enabled(rdev);
414c70cb
LG
1757}
1758
1759/**
1760 * regulator_is_enabled - is the regulator output enabled
1761 * @regulator: regulator source
1762 *
412aec61
DB
1763 * Returns positive if the regulator driver backing the source/client
1764 * has requested that the device be enabled, zero if it hasn't, else a
1765 * negative errno code.
1766 *
1767 * Note that the device backing this regulator handle can have multiple
1768 * users, so it might be enabled even if regulator_enable() was never
1769 * called for this particular source.
414c70cb
LG
1770 */
1771int regulator_is_enabled(struct regulator *regulator)
1772{
9332546f
MB
1773 int ret;
1774
6492bc1b
MB
1775 if (regulator->always_on)
1776 return 1;
1777
9332546f
MB
1778 mutex_lock(&regulator->rdev->mutex);
1779 ret = _regulator_is_enabled(regulator->rdev);
1780 mutex_unlock(&regulator->rdev->mutex);
1781
1782 return ret;
414c70cb
LG
1783}
1784EXPORT_SYMBOL_GPL(regulator_is_enabled);
1785
4367cfdc
DB
1786/**
1787 * regulator_count_voltages - count regulator_list_voltage() selectors
1788 * @regulator: regulator source
1789 *
1790 * Returns number of selectors, or negative errno. Selectors are
1791 * numbered starting at zero, and typically correspond to bitfields
1792 * in hardware registers.
1793 */
1794int regulator_count_voltages(struct regulator *regulator)
1795{
1796 struct regulator_dev *rdev = regulator->rdev;
1797
1798 return rdev->desc->n_voltages ? : -EINVAL;
1799}
1800EXPORT_SYMBOL_GPL(regulator_count_voltages);
1801
bca7bbff
MB
1802/**
1803 * regulator_list_voltage_linear - List voltages with simple calculation
1804 *
1805 * @rdev: Regulator device
1806 * @selector: Selector to convert into a voltage
1807 *
1808 * Regulators with a simple linear mapping between voltages and
1809 * selectors can set min_uV and uV_step in the regulator descriptor
1810 * and then use this function as their list_voltage() operation,
1811 */
1812int regulator_list_voltage_linear(struct regulator_dev *rdev,
1813 unsigned int selector)
1814{
1815 if (selector >= rdev->desc->n_voltages)
1816 return -EINVAL;
1817
1818 return rdev->desc->min_uV + (rdev->desc->uV_step * selector);
1819}
1820EXPORT_SYMBOL_GPL(regulator_list_voltage_linear);
1821
cffc9592
AL
1822/**
1823 * regulator_list_voltage_table - List voltages with table based mapping
1824 *
1825 * @rdev: Regulator device
1826 * @selector: Selector to convert into a voltage
1827 *
1828 * Regulators with table based mapping between voltages and
1829 * selectors can set volt_table in the regulator descriptor
1830 * and then use this function as their list_voltage() operation.
1831 */
1832int regulator_list_voltage_table(struct regulator_dev *rdev,
1833 unsigned int selector)
1834{
1835 if (!rdev->desc->volt_table) {
1836 BUG_ON(!rdev->desc->volt_table);
1837 return -EINVAL;
1838 }
1839
1840 if (selector >= rdev->desc->n_voltages)
1841 return -EINVAL;
1842
1843 return rdev->desc->volt_table[selector];
1844}
1845EXPORT_SYMBOL_GPL(regulator_list_voltage_table);
1846
4367cfdc
DB
1847/**
1848 * regulator_list_voltage - enumerate supported voltages
1849 * @regulator: regulator source
1850 * @selector: identify voltage to list
1851 * Context: can sleep
1852 *
1853 * Returns a voltage that can be passed to @regulator_set_voltage(),
88393161 1854 * zero if this selector code can't be used on this system, or a
4367cfdc
DB
1855 * negative errno.
1856 */
1857int regulator_list_voltage(struct regulator *regulator, unsigned selector)
1858{
1859 struct regulator_dev *rdev = regulator->rdev;
1860 struct regulator_ops *ops = rdev->desc->ops;
1861 int ret;
1862
1863 if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
1864 return -EINVAL;
1865
1866 mutex_lock(&rdev->mutex);
1867 ret = ops->list_voltage(rdev, selector);
1868 mutex_unlock(&rdev->mutex);
1869
1870 if (ret > 0) {
1871 if (ret < rdev->constraints->min_uV)
1872 ret = 0;
1873 else if (ret > rdev->constraints->max_uV)
1874 ret = 0;
1875 }
1876
1877 return ret;
1878}
1879EXPORT_SYMBOL_GPL(regulator_list_voltage);
1880
a7a1ad90
MB
1881/**
1882 * regulator_is_supported_voltage - check if a voltage range can be supported
1883 *
1884 * @regulator: Regulator to check.
1885 * @min_uV: Minimum required voltage in uV.
1886 * @max_uV: Maximum required voltage in uV.
1887 *
1888 * Returns a boolean or a negative error code.
1889 */
1890int regulator_is_supported_voltage(struct regulator *regulator,
1891 int min_uV, int max_uV)
1892{
c5f3939b 1893 struct regulator_dev *rdev = regulator->rdev;
a7a1ad90
MB
1894 int i, voltages, ret;
1895
c5f3939b
MB
1896 /* If we can't change voltage check the current voltage */
1897 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
1898 ret = regulator_get_voltage(regulator);
1899 if (ret >= 0)
1900 return (min_uV >= ret && ret <= max_uV);
1901 else
1902 return ret;
1903 }
1904
a7a1ad90
MB
1905 ret = regulator_count_voltages(regulator);
1906 if (ret < 0)
1907 return ret;
1908 voltages = ret;
1909
1910 for (i = 0; i < voltages; i++) {
1911 ret = regulator_list_voltage(regulator, i);
1912
1913 if (ret >= min_uV && ret <= max_uV)
1914 return 1;
1915 }
1916
1917 return 0;
1918}
a398eaa2 1919EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
a7a1ad90 1920
4ab5b3d9
MB
1921/**
1922 * regulator_get_voltage_sel_regmap - standard get_voltage_sel for regmap users
1923 *
1924 * @rdev: regulator to operate on
1925 *
1926 * Regulators that use regmap for their register I/O can set the
1927 * vsel_reg and vsel_mask fields in their descriptor and then use this
1928 * as their get_voltage_vsel operation, saving some code.
1929 */
1930int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev)
1931{
1932 unsigned int val;
1933 int ret;
1934
1935 ret = regmap_read(rdev->regmap, rdev->desc->vsel_reg, &val);
1936 if (ret != 0)
1937 return ret;
1938
1939 val &= rdev->desc->vsel_mask;
1940 val >>= ffs(rdev->desc->vsel_mask) - 1;
1941
1942 return val;
1943}
1944EXPORT_SYMBOL_GPL(regulator_get_voltage_sel_regmap);
1945
1946/**
1947 * regulator_set_voltage_sel_regmap - standard set_voltage_sel for regmap users
1948 *
1949 * @rdev: regulator to operate on
1950 * @sel: Selector to set
1951 *
1952 * Regulators that use regmap for their register I/O can set the
1953 * vsel_reg and vsel_mask fields in their descriptor and then use this
1954 * as their set_voltage_vsel operation, saving some code.
1955 */
1956int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel)
1957{
1958 sel <<= ffs(rdev->desc->vsel_mask) - 1;
1959
1960 return regmap_update_bits(rdev->regmap, rdev->desc->vsel_reg,
1961 rdev->desc->vsel_mask, sel);
1962}
1963EXPORT_SYMBOL_GPL(regulator_set_voltage_sel_regmap);
1964
e843fc46
MB
1965/**
1966 * regulator_map_voltage_iterate - map_voltage() based on list_voltage()
1967 *
1968 * @rdev: Regulator to operate on
1969 * @min_uV: Lower bound for voltage
1970 * @max_uV: Upper bound for voltage
1971 *
1972 * Drivers implementing set_voltage_sel() and list_voltage() can use
1973 * this as their map_voltage() operation. It will find a suitable
1974 * voltage by calling list_voltage() until it gets something in bounds
1975 * for the requested voltages.
1976 */
1977int regulator_map_voltage_iterate(struct regulator_dev *rdev,
1978 int min_uV, int max_uV)
1979{
1980 int best_val = INT_MAX;
1981 int selector = 0;
1982 int i, ret;
1983
1984 /* Find the smallest voltage that falls within the specified
1985 * range.
1986 */
1987 for (i = 0; i < rdev->desc->n_voltages; i++) {
1988 ret = rdev->desc->ops->list_voltage(rdev, i);
1989 if (ret < 0)
1990 continue;
1991
1992 if (ret < best_val && ret >= min_uV && ret <= max_uV) {
1993 best_val = ret;
1994 selector = i;
1995 }
1996 }
1997
1998 if (best_val != INT_MAX)
1999 return selector;
2000 else
2001 return -EINVAL;
2002}
2003EXPORT_SYMBOL_GPL(regulator_map_voltage_iterate);
2004
bca7bbff
MB
2005/**
2006 * regulator_map_voltage_linear - map_voltage() for simple linear mappings
2007 *
2008 * @rdev: Regulator to operate on
2009 * @min_uV: Lower bound for voltage
2010 * @max_uV: Upper bound for voltage
2011 *
2012 * Drivers providing min_uV and uV_step in their regulator_desc can
2013 * use this as their map_voltage() operation.
2014 */
2015int regulator_map_voltage_linear(struct regulator_dev *rdev,
2016 int min_uV, int max_uV)
2017{
2018 int ret, voltage;
2019
2020 if (!rdev->desc->uV_step) {
2021 BUG_ON(!rdev->desc->uV_step);
2022 return -EINVAL;
2023 }
2024
ccfcb1c3 2025 ret = DIV_ROUND_UP(min_uV - rdev->desc->min_uV, rdev->desc->uV_step);
bca7bbff
MB
2026 if (ret < 0)
2027 return ret;
2028
2029 /* Map back into a voltage to verify we're still in bounds */
2030 voltage = rdev->desc->ops->list_voltage(rdev, ret);
2031 if (voltage < min_uV || voltage > max_uV)
2032 return -EINVAL;
2033
2034 return ret;
2035}
2036EXPORT_SYMBOL_GPL(regulator_map_voltage_linear);
2037
75790251
MB
2038static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2039 int min_uV, int max_uV)
2040{
2041 int ret;
77af1b26 2042 int delay = 0;
e843fc46 2043 int best_val;
75790251 2044 unsigned int selector;
eba41a5e 2045 int old_selector = -1;
75790251
MB
2046
2047 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2048
bf5892a8
MB
2049 min_uV += rdev->constraints->uV_offset;
2050 max_uV += rdev->constraints->uV_offset;
2051
eba41a5e
AL
2052 /*
2053 * If we can't obtain the old selector there is not enough
2054 * info to call set_voltage_time_sel().
2055 */
8b7485ef
AL
2056 if (_regulator_is_enabled(rdev) &&
2057 rdev->desc->ops->set_voltage_time_sel &&
eba41a5e
AL
2058 rdev->desc->ops->get_voltage_sel) {
2059 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2060 if (old_selector < 0)
2061 return old_selector;
2062 }
2063
75790251
MB
2064 if (rdev->desc->ops->set_voltage) {
2065 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
2066 &selector);
e8eef82b 2067 } else if (rdev->desc->ops->set_voltage_sel) {
9152c36a 2068 if (rdev->desc->ops->map_voltage) {
e843fc46
MB
2069 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2070 max_uV);
9152c36a
AL
2071 } else {
2072 if (rdev->desc->ops->list_voltage ==
2073 regulator_list_voltage_linear)
2074 ret = regulator_map_voltage_linear(rdev,
2075 min_uV, max_uV);
2076 else
2077 ret = regulator_map_voltage_iterate(rdev,
2078 min_uV, max_uV);
2079 }
e8eef82b 2080
e843fc46
MB
2081 if (ret >= 0) {
2082 selector = ret;
2083 ret = rdev->desc->ops->set_voltage_sel(rdev, ret);
e8eef82b 2084 }
75790251
MB
2085 } else {
2086 ret = -EINVAL;
2087 }
e8eef82b 2088
e843fc46
MB
2089 if (rdev->desc->ops->list_voltage)
2090 best_val = rdev->desc->ops->list_voltage(rdev, selector);
2091 else
2f7baf89 2092 best_val = _regulator_get_voltage(rdev);
77af1b26 2093
eba41a5e 2094 /* Call set_voltage_time_sel if successfully obtained old_selector */
5aff3a8b 2095 if (ret == 0 && _regulator_is_enabled(rdev) && old_selector >= 0 &&
eba41a5e 2096 rdev->desc->ops->set_voltage_time_sel) {
77af1b26 2097
eba41a5e
AL
2098 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2099 old_selector, selector);
2100 if (delay < 0) {
2101 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2102 delay);
2103 delay = 0;
e8eef82b 2104 }
75790251 2105
8b96de31
PR
2106 /* Insert any necessary delays */
2107 if (delay >= 1000) {
2108 mdelay(delay / 1000);
2109 udelay(delay % 1000);
2110 } else if (delay) {
2111 udelay(delay);
2112 }
77af1b26
LW
2113 }
2114
2f7baf89 2115 if (ret == 0 && best_val >= 0)
ded06a52 2116 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
2f7baf89 2117 (void *)best_val);
ded06a52 2118
eba41a5e 2119 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
75790251
MB
2120
2121 return ret;
2122}
2123
414c70cb
LG
2124/**
2125 * regulator_set_voltage - set regulator output voltage
2126 * @regulator: regulator source
2127 * @min_uV: Minimum required voltage in uV
2128 * @max_uV: Maximum acceptable voltage in uV
2129 *
2130 * Sets a voltage regulator to the desired output voltage. This can be set
2131 * during any regulator state. IOW, regulator can be disabled or enabled.
2132 *
2133 * If the regulator is enabled then the voltage will change to the new value
2134 * immediately otherwise if the regulator is disabled the regulator will
2135 * output at the new voltage when enabled.
2136 *
2137 * NOTE: If the regulator is shared between several devices then the lowest
2138 * request voltage that meets the system constraints will be used.
69279fb9 2139 * Regulator system constraints must be set for this regulator before
414c70cb
LG
2140 * calling this function otherwise this call will fail.
2141 */
2142int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2143{
2144 struct regulator_dev *rdev = regulator->rdev;
95a3c23a 2145 int ret = 0;
414c70cb
LG
2146
2147 mutex_lock(&rdev->mutex);
2148
95a3c23a
MB
2149 /* If we're setting the same range as last time the change
2150 * should be a noop (some cpufreq implementations use the same
2151 * voltage for multiple frequencies, for example).
2152 */
2153 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2154 goto out;
2155
414c70cb 2156 /* sanity check */
e8eef82b
MB
2157 if (!rdev->desc->ops->set_voltage &&
2158 !rdev->desc->ops->set_voltage_sel) {
414c70cb
LG
2159 ret = -EINVAL;
2160 goto out;
2161 }
2162
2163 /* constraints check */
2164 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2165 if (ret < 0)
2166 goto out;
2167 regulator->min_uV = min_uV;
2168 regulator->max_uV = max_uV;
3a93f2a9 2169
05fda3b1
TP
2170 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2171 if (ret < 0)
2172 goto out;
2173
75790251 2174 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
02fa3ec0 2175
414c70cb
LG
2176out:
2177 mutex_unlock(&rdev->mutex);
2178 return ret;
2179}
2180EXPORT_SYMBOL_GPL(regulator_set_voltage);
2181
88cd222b
LW
2182/**
2183 * regulator_set_voltage_time - get raise/fall time
2184 * @regulator: regulator source
2185 * @old_uV: starting voltage in microvolts
2186 * @new_uV: target voltage in microvolts
2187 *
2188 * Provided with the starting and ending voltage, this function attempts to
2189 * calculate the time in microseconds required to rise or fall to this new
2190 * voltage.
2191 */
2192int regulator_set_voltage_time(struct regulator *regulator,
2193 int old_uV, int new_uV)
2194{
2195 struct regulator_dev *rdev = regulator->rdev;
2196 struct regulator_ops *ops = rdev->desc->ops;
2197 int old_sel = -1;
2198 int new_sel = -1;
2199 int voltage;
2200 int i;
2201
2202 /* Currently requires operations to do this */
2203 if (!ops->list_voltage || !ops->set_voltage_time_sel
2204 || !rdev->desc->n_voltages)
2205 return -EINVAL;
2206
2207 for (i = 0; i < rdev->desc->n_voltages; i++) {
2208 /* We only look for exact voltage matches here */
2209 voltage = regulator_list_voltage(regulator, i);
2210 if (voltage < 0)
2211 return -EINVAL;
2212 if (voltage == 0)
2213 continue;
2214 if (voltage == old_uV)
2215 old_sel = i;
2216 if (voltage == new_uV)
2217 new_sel = i;
2218 }
2219
2220 if (old_sel < 0 || new_sel < 0)
2221 return -EINVAL;
2222
2223 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2224}
2225EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2226
606a2562
MB
2227/**
2228 * regulator_sync_voltage - re-apply last regulator output voltage
2229 * @regulator: regulator source
2230 *
2231 * Re-apply the last configured voltage. This is intended to be used
2232 * where some external control source the consumer is cooperating with
2233 * has caused the configured voltage to change.
2234 */
2235int regulator_sync_voltage(struct regulator *regulator)
2236{
2237 struct regulator_dev *rdev = regulator->rdev;
2238 int ret, min_uV, max_uV;
2239
2240 mutex_lock(&rdev->mutex);
2241
2242 if (!rdev->desc->ops->set_voltage &&
2243 !rdev->desc->ops->set_voltage_sel) {
2244 ret = -EINVAL;
2245 goto out;
2246 }
2247
2248 /* This is only going to work if we've had a voltage configured. */
2249 if (!regulator->min_uV && !regulator->max_uV) {
2250 ret = -EINVAL;
2251 goto out;
2252 }
2253
2254 min_uV = regulator->min_uV;
2255 max_uV = regulator->max_uV;
2256
2257 /* This should be a paranoia check... */
2258 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2259 if (ret < 0)
2260 goto out;
2261
2262 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2263 if (ret < 0)
2264 goto out;
2265
2266 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2267
2268out:
2269 mutex_unlock(&rdev->mutex);
2270 return ret;
2271}
2272EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2273
414c70cb
LG
2274static int _regulator_get_voltage(struct regulator_dev *rdev)
2275{
bf5892a8 2276 int sel, ret;
476c2d83
MB
2277
2278 if (rdev->desc->ops->get_voltage_sel) {
2279 sel = rdev->desc->ops->get_voltage_sel(rdev);
2280 if (sel < 0)
2281 return sel;
bf5892a8 2282 ret = rdev->desc->ops->list_voltage(rdev, sel);
cb220d16 2283 } else if (rdev->desc->ops->get_voltage) {
bf5892a8 2284 ret = rdev->desc->ops->get_voltage(rdev);
cb220d16 2285 } else {
414c70cb 2286 return -EINVAL;
cb220d16 2287 }
bf5892a8 2288
cb220d16
AL
2289 if (ret < 0)
2290 return ret;
bf5892a8 2291 return ret - rdev->constraints->uV_offset;
414c70cb
LG
2292}
2293
2294/**
2295 * regulator_get_voltage - get regulator output voltage
2296 * @regulator: regulator source
2297 *
2298 * This returns the current regulator voltage in uV.
2299 *
2300 * NOTE: If the regulator is disabled it will return the voltage value. This
2301 * function should not be used to determine regulator state.
2302 */
2303int regulator_get_voltage(struct regulator *regulator)
2304{
2305 int ret;
2306
2307 mutex_lock(&regulator->rdev->mutex);
2308
2309 ret = _regulator_get_voltage(regulator->rdev);
2310
2311 mutex_unlock(&regulator->rdev->mutex);
2312
2313 return ret;
2314}
2315EXPORT_SYMBOL_GPL(regulator_get_voltage);
2316
2317/**
2318 * regulator_set_current_limit - set regulator output current limit
2319 * @regulator: regulator source
2320 * @min_uA: Minimuum supported current in uA
2321 * @max_uA: Maximum supported current in uA
2322 *
2323 * Sets current sink to the desired output current. This can be set during
2324 * any regulator state. IOW, regulator can be disabled or enabled.
2325 *
2326 * If the regulator is enabled then the current will change to the new value
2327 * immediately otherwise if the regulator is disabled the regulator will
2328 * output at the new current when enabled.
2329 *
2330 * NOTE: Regulator system constraints must be set for this regulator before
2331 * calling this function otherwise this call will fail.
2332 */
2333int regulator_set_current_limit(struct regulator *regulator,
2334 int min_uA, int max_uA)
2335{
2336 struct regulator_dev *rdev = regulator->rdev;
2337 int ret;
2338
2339 mutex_lock(&rdev->mutex);
2340
2341 /* sanity check */
2342 if (!rdev->desc->ops->set_current_limit) {
2343 ret = -EINVAL;
2344 goto out;
2345 }
2346
2347 /* constraints check */
2348 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2349 if (ret < 0)
2350 goto out;
2351
2352 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2353out:
2354 mutex_unlock(&rdev->mutex);
2355 return ret;
2356}
2357EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2358
2359static int _regulator_get_current_limit(struct regulator_dev *rdev)
2360{
2361 int ret;
2362
2363 mutex_lock(&rdev->mutex);
2364
2365 /* sanity check */
2366 if (!rdev->desc->ops->get_current_limit) {
2367 ret = -EINVAL;
2368 goto out;
2369 }
2370
2371 ret = rdev->desc->ops->get_current_limit(rdev);
2372out:
2373 mutex_unlock(&rdev->mutex);
2374 return ret;
2375}
2376
2377/**
2378 * regulator_get_current_limit - get regulator output current
2379 * @regulator: regulator source
2380 *
2381 * This returns the current supplied by the specified current sink in uA.
2382 *
2383 * NOTE: If the regulator is disabled it will return the current value. This
2384 * function should not be used to determine regulator state.
2385 */
2386int regulator_get_current_limit(struct regulator *regulator)
2387{
2388 return _regulator_get_current_limit(regulator->rdev);
2389}
2390EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2391
2392/**
2393 * regulator_set_mode - set regulator operating mode
2394 * @regulator: regulator source
2395 * @mode: operating mode - one of the REGULATOR_MODE constants
2396 *
2397 * Set regulator operating mode to increase regulator efficiency or improve
2398 * regulation performance.
2399 *
2400 * NOTE: Regulator system constraints must be set for this regulator before
2401 * calling this function otherwise this call will fail.
2402 */
2403int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2404{
2405 struct regulator_dev *rdev = regulator->rdev;
2406 int ret;
500b4ac9 2407 int regulator_curr_mode;
414c70cb
LG
2408
2409 mutex_lock(&rdev->mutex);
2410
2411 /* sanity check */
2412 if (!rdev->desc->ops->set_mode) {
2413 ret = -EINVAL;
2414 goto out;
2415 }
2416
500b4ac9
SI
2417 /* return if the same mode is requested */
2418 if (rdev->desc->ops->get_mode) {
2419 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2420 if (regulator_curr_mode == mode) {
2421 ret = 0;
2422 goto out;
2423 }
2424 }
2425
414c70cb 2426 /* constraints check */
22c51b47 2427 ret = regulator_mode_constrain(rdev, &mode);
414c70cb
LG
2428 if (ret < 0)
2429 goto out;
2430
2431 ret = rdev->desc->ops->set_mode(rdev, mode);
2432out:
2433 mutex_unlock(&rdev->mutex);
2434 return ret;
2435}
2436EXPORT_SYMBOL_GPL(regulator_set_mode);
2437
2438static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2439{
2440 int ret;
2441
2442 mutex_lock(&rdev->mutex);
2443
2444 /* sanity check */
2445 if (!rdev->desc->ops->get_mode) {
2446 ret = -EINVAL;
2447 goto out;
2448 }
2449
2450 ret = rdev->desc->ops->get_mode(rdev);
2451out:
2452 mutex_unlock(&rdev->mutex);
2453 return ret;
2454}
2455
2456/**
2457 * regulator_get_mode - get regulator operating mode
2458 * @regulator: regulator source
2459 *
2460 * Get the current regulator operating mode.
2461 */
2462unsigned int regulator_get_mode(struct regulator *regulator)
2463{
2464 return _regulator_get_mode(regulator->rdev);
2465}
2466EXPORT_SYMBOL_GPL(regulator_get_mode);
2467
2468/**
2469 * regulator_set_optimum_mode - set regulator optimum operating mode
2470 * @regulator: regulator source
2471 * @uA_load: load current
2472 *
2473 * Notifies the regulator core of a new device load. This is then used by
2474 * DRMS (if enabled by constraints) to set the most efficient regulator
2475 * operating mode for the new regulator loading.
2476 *
2477 * Consumer devices notify their supply regulator of the maximum power
2478 * they will require (can be taken from device datasheet in the power
2479 * consumption tables) when they change operational status and hence power
2480 * state. Examples of operational state changes that can affect power
2481 * consumption are :-
2482 *
2483 * o Device is opened / closed.
2484 * o Device I/O is about to begin or has just finished.
2485 * o Device is idling in between work.
2486 *
2487 * This information is also exported via sysfs to userspace.
2488 *
2489 * DRMS will sum the total requested load on the regulator and change
2490 * to the most efficient operating mode if platform constraints allow.
2491 *
2492 * Returns the new regulator mode or error.
2493 */
2494int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
2495{
2496 struct regulator_dev *rdev = regulator->rdev;
2497 struct regulator *consumer;
2498 int ret, output_uV, input_uV, total_uA_load = 0;
2499 unsigned int mode;
2500
2501 mutex_lock(&rdev->mutex);
2502
a4b41483
MB
2503 /*
2504 * first check to see if we can set modes at all, otherwise just
2505 * tell the consumer everything is OK.
2506 */
414c70cb
LG
2507 regulator->uA_load = uA_load;
2508 ret = regulator_check_drms(rdev);
a4b41483
MB
2509 if (ret < 0) {
2510 ret = 0;
414c70cb 2511 goto out;
a4b41483 2512 }
414c70cb 2513
414c70cb
LG
2514 if (!rdev->desc->ops->get_optimum_mode)
2515 goto out;
2516
a4b41483
MB
2517 /*
2518 * we can actually do this so any errors are indicators of
2519 * potential real failure.
2520 */
2521 ret = -EINVAL;
2522
854ccbae
AL
2523 if (!rdev->desc->ops->set_mode)
2524 goto out;
2525
414c70cb 2526 /* get output voltage */
1bf5a1f8 2527 output_uV = _regulator_get_voltage(rdev);
414c70cb 2528 if (output_uV <= 0) {
5da84fd9 2529 rdev_err(rdev, "invalid output voltage found\n");
414c70cb
LG
2530 goto out;
2531 }
2532
2533 /* get input voltage */
1bf5a1f8
MB
2534 input_uV = 0;
2535 if (rdev->supply)
3801b86a 2536 input_uV = regulator_get_voltage(rdev->supply);
1bf5a1f8 2537 if (input_uV <= 0)
414c70cb
LG
2538 input_uV = rdev->constraints->input_uV;
2539 if (input_uV <= 0) {
5da84fd9 2540 rdev_err(rdev, "invalid input voltage found\n");
414c70cb
LG
2541 goto out;
2542 }
2543
2544 /* calc total requested load for this regulator */
2545 list_for_each_entry(consumer, &rdev->consumer_list, list)
fa2984d4 2546 total_uA_load += consumer->uA_load;
414c70cb
LG
2547
2548 mode = rdev->desc->ops->get_optimum_mode(rdev,
2549 input_uV, output_uV,
2550 total_uA_load);
2c608234 2551 ret = regulator_mode_constrain(rdev, &mode);
e573520b 2552 if (ret < 0) {
5da84fd9
JP
2553 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
2554 total_uA_load, input_uV, output_uV);
414c70cb
LG
2555 goto out;
2556 }
2557
2558 ret = rdev->desc->ops->set_mode(rdev, mode);
e573520b 2559 if (ret < 0) {
5da84fd9 2560 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
414c70cb
LG
2561 goto out;
2562 }
2563 ret = mode;
2564out:
2565 mutex_unlock(&rdev->mutex);
2566 return ret;
2567}
2568EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
2569
2570/**
2571 * regulator_register_notifier - register regulator event notifier
2572 * @regulator: regulator source
69279fb9 2573 * @nb: notifier block
414c70cb
LG
2574 *
2575 * Register notifier block to receive regulator events.
2576 */
2577int regulator_register_notifier(struct regulator *regulator,
2578 struct notifier_block *nb)
2579{
2580 return blocking_notifier_chain_register(&regulator->rdev->notifier,
2581 nb);
2582}
2583EXPORT_SYMBOL_GPL(regulator_register_notifier);
2584
2585/**
2586 * regulator_unregister_notifier - unregister regulator event notifier
2587 * @regulator: regulator source
69279fb9 2588 * @nb: notifier block
414c70cb
LG
2589 *
2590 * Unregister regulator event notifier block.
2591 */
2592int regulator_unregister_notifier(struct regulator *regulator,
2593 struct notifier_block *nb)
2594{
2595 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
2596 nb);
2597}
2598EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
2599
b136fb44
JC
2600/* notify regulator consumers and downstream regulator consumers.
2601 * Note mutex must be held by caller.
2602 */
414c70cb
LG
2603static void _notifier_call_chain(struct regulator_dev *rdev,
2604 unsigned long event, void *data)
2605{
414c70cb 2606 /* call rdev chain first */
d8493d21 2607 blocking_notifier_call_chain(&rdev->notifier, event, data);
414c70cb
LG
2608}
2609
2610/**
2611 * regulator_bulk_get - get multiple regulator consumers
2612 *
2613 * @dev: Device to supply
2614 * @num_consumers: Number of consumers to register
2615 * @consumers: Configuration of consumers; clients are stored here.
2616 *
2617 * @return 0 on success, an errno on failure.
2618 *
2619 * This helper function allows drivers to get several regulator
2620 * consumers in one operation. If any of the regulators cannot be
2621 * acquired then any regulators that were allocated will be freed
2622 * before returning to the caller.
2623 */
2624int regulator_bulk_get(struct device *dev, int num_consumers,
2625 struct regulator_bulk_data *consumers)
2626{
2627 int i;
2628 int ret;
2629
2630 for (i = 0; i < num_consumers; i++)
2631 consumers[i].consumer = NULL;
2632
2633 for (i = 0; i < num_consumers; i++) {
2634 consumers[i].consumer = regulator_get(dev,
2635 consumers[i].supply);
2636 if (IS_ERR(consumers[i].consumer)) {
414c70cb 2637 ret = PTR_ERR(consumers[i].consumer);
5b307627
MB
2638 dev_err(dev, "Failed to get supply '%s': %d\n",
2639 consumers[i].supply, ret);
414c70cb
LG
2640 consumers[i].consumer = NULL;
2641 goto err;
2642 }
2643 }
2644
2645 return 0;
2646
2647err:
b29c7690 2648 while (--i >= 0)
414c70cb
LG
2649 regulator_put(consumers[i].consumer);
2650
2651 return ret;
2652}
2653EXPORT_SYMBOL_GPL(regulator_bulk_get);
2654
e6e74030
MB
2655/**
2656 * devm_regulator_bulk_get - managed get multiple regulator consumers
2657 *
2658 * @dev: Device to supply
2659 * @num_consumers: Number of consumers to register
2660 * @consumers: Configuration of consumers; clients are stored here.
2661 *
2662 * @return 0 on success, an errno on failure.
2663 *
2664 * This helper function allows drivers to get several regulator
2665 * consumers in one operation with management, the regulators will
2666 * automatically be freed when the device is unbound. If any of the
2667 * regulators cannot be acquired then any regulators that were
2668 * allocated will be freed before returning to the caller.
2669 */
2670int devm_regulator_bulk_get(struct device *dev, int num_consumers,
2671 struct regulator_bulk_data *consumers)
2672{
2673 int i;
2674 int ret;
2675
2676 for (i = 0; i < num_consumers; i++)
2677 consumers[i].consumer = NULL;
2678
2679 for (i = 0; i < num_consumers; i++) {
2680 consumers[i].consumer = devm_regulator_get(dev,
2681 consumers[i].supply);
2682 if (IS_ERR(consumers[i].consumer)) {
2683 ret = PTR_ERR(consumers[i].consumer);
2684 dev_err(dev, "Failed to get supply '%s': %d\n",
2685 consumers[i].supply, ret);
2686 consumers[i].consumer = NULL;
2687 goto err;
2688 }
2689 }
2690
2691 return 0;
2692
2693err:
2694 for (i = 0; i < num_consumers && consumers[i].consumer; i++)
2695 devm_regulator_put(consumers[i].consumer);
2696
2697 return ret;
2698}
2699EXPORT_SYMBOL_GPL(devm_regulator_bulk_get);
2700
f21e0e81
MB
2701static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
2702{
2703 struct regulator_bulk_data *bulk = data;
2704
2705 bulk->ret = regulator_enable(bulk->consumer);
2706}
2707
414c70cb
LG
2708/**
2709 * regulator_bulk_enable - enable multiple regulator consumers
2710 *
2711 * @num_consumers: Number of consumers
2712 * @consumers: Consumer data; clients are stored here.
2713 * @return 0 on success, an errno on failure
2714 *
2715 * This convenience API allows consumers to enable multiple regulator
2716 * clients in a single API call. If any consumers cannot be enabled
2717 * then any others that were enabled will be disabled again prior to
2718 * return.
2719 */
2720int regulator_bulk_enable(int num_consumers,
2721 struct regulator_bulk_data *consumers)
2722{
f21e0e81 2723 LIST_HEAD(async_domain);
414c70cb 2724 int i;
f21e0e81 2725 int ret = 0;
414c70cb 2726
6492bc1b
MB
2727 for (i = 0; i < num_consumers; i++) {
2728 if (consumers[i].consumer->always_on)
2729 consumers[i].ret = 0;
2730 else
2731 async_schedule_domain(regulator_bulk_enable_async,
2732 &consumers[i], &async_domain);
2733 }
f21e0e81
MB
2734
2735 async_synchronize_full_domain(&async_domain);
2736
2737 /* If any consumer failed we need to unwind any that succeeded */
414c70cb 2738 for (i = 0; i < num_consumers; i++) {
f21e0e81
MB
2739 if (consumers[i].ret != 0) {
2740 ret = consumers[i].ret;
414c70cb 2741 goto err;
f21e0e81 2742 }
414c70cb
LG
2743 }
2744
2745 return 0;
2746
2747err:
b29c7690
AL
2748 pr_err("Failed to enable %s: %d\n", consumers[i].supply, ret);
2749 while (--i >= 0)
2750 regulator_disable(consumers[i].consumer);
414c70cb
LG
2751
2752 return ret;
2753}
2754EXPORT_SYMBOL_GPL(regulator_bulk_enable);
2755
2756/**
2757 * regulator_bulk_disable - disable multiple regulator consumers
2758 *
2759 * @num_consumers: Number of consumers
2760 * @consumers: Consumer data; clients are stored here.
2761 * @return 0 on success, an errno on failure
2762 *
2763 * This convenience API allows consumers to disable multiple regulator
49e22632
SN
2764 * clients in a single API call. If any consumers cannot be disabled
2765 * then any others that were disabled will be enabled again prior to
414c70cb
LG
2766 * return.
2767 */
2768int regulator_bulk_disable(int num_consumers,
2769 struct regulator_bulk_data *consumers)
2770{
2771 int i;
01e86f49 2772 int ret, r;
414c70cb 2773
49e22632 2774 for (i = num_consumers - 1; i >= 0; --i) {
414c70cb
LG
2775 ret = regulator_disable(consumers[i].consumer);
2776 if (ret != 0)
2777 goto err;
2778 }
2779
2780 return 0;
2781
2782err:
5da84fd9 2783 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
01e86f49
MB
2784 for (++i; i < num_consumers; ++i) {
2785 r = regulator_enable(consumers[i].consumer);
2786 if (r != 0)
2787 pr_err("Failed to reename %s: %d\n",
2788 consumers[i].supply, r);
2789 }
414c70cb
LG
2790
2791 return ret;
2792}
2793EXPORT_SYMBOL_GPL(regulator_bulk_disable);
2794
e1de2f42
DK
2795/**
2796 * regulator_bulk_force_disable - force disable multiple regulator consumers
2797 *
2798 * @num_consumers: Number of consumers
2799 * @consumers: Consumer data; clients are stored here.
2800 * @return 0 on success, an errno on failure
2801 *
2802 * This convenience API allows consumers to forcibly disable multiple regulator
2803 * clients in a single API call.
2804 * NOTE: This should be used for situations when device damage will
2805 * likely occur if the regulators are not disabled (e.g. over temp).
2806 * Although regulator_force_disable function call for some consumers can
2807 * return error numbers, the function is called for all consumers.
2808 */
2809int regulator_bulk_force_disable(int num_consumers,
2810 struct regulator_bulk_data *consumers)
2811{
2812 int i;
2813 int ret;
2814
2815 for (i = 0; i < num_consumers; i++)
2816 consumers[i].ret =
2817 regulator_force_disable(consumers[i].consumer);
2818
2819 for (i = 0; i < num_consumers; i++) {
2820 if (consumers[i].ret != 0) {
2821 ret = consumers[i].ret;
2822 goto out;
2823 }
2824 }
2825
2826 return 0;
2827out:
2828 return ret;
2829}
2830EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
2831
414c70cb
LG
2832/**
2833 * regulator_bulk_free - free multiple regulator consumers
2834 *
2835 * @num_consumers: Number of consumers
2836 * @consumers: Consumer data; clients are stored here.
2837 *
2838 * This convenience API allows consumers to free multiple regulator
2839 * clients in a single API call.
2840 */
2841void regulator_bulk_free(int num_consumers,
2842 struct regulator_bulk_data *consumers)
2843{
2844 int i;
2845
2846 for (i = 0; i < num_consumers; i++) {
2847 regulator_put(consumers[i].consumer);
2848 consumers[i].consumer = NULL;
2849 }
2850}
2851EXPORT_SYMBOL_GPL(regulator_bulk_free);
2852
2853/**
2854 * regulator_notifier_call_chain - call regulator event notifier
69279fb9 2855 * @rdev: regulator source
414c70cb 2856 * @event: notifier block
69279fb9 2857 * @data: callback-specific data.
414c70cb
LG
2858 *
2859 * Called by regulator drivers to notify clients a regulator event has
2860 * occurred. We also notify regulator clients downstream.
b136fb44 2861 * Note lock must be held by caller.
414c70cb
LG
2862 */
2863int regulator_notifier_call_chain(struct regulator_dev *rdev,
2864 unsigned long event, void *data)
2865{
2866 _notifier_call_chain(rdev, event, data);
2867 return NOTIFY_DONE;
2868
2869}
2870EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
2871
be721979
MB
2872/**
2873 * regulator_mode_to_status - convert a regulator mode into a status
2874 *
2875 * @mode: Mode to convert
2876 *
2877 * Convert a regulator mode into a status.
2878 */
2879int regulator_mode_to_status(unsigned int mode)
2880{
2881 switch (mode) {
2882 case REGULATOR_MODE_FAST:
2883 return REGULATOR_STATUS_FAST;
2884 case REGULATOR_MODE_NORMAL:
2885 return REGULATOR_STATUS_NORMAL;
2886 case REGULATOR_MODE_IDLE:
2887 return REGULATOR_STATUS_IDLE;
2888 case REGULATOR_STATUS_STANDBY:
2889 return REGULATOR_STATUS_STANDBY;
2890 default:
2891 return 0;
2892 }
2893}
2894EXPORT_SYMBOL_GPL(regulator_mode_to_status);
2895
7ad68e2f
DB
2896/*
2897 * To avoid cluttering sysfs (and memory) with useless state, only
2898 * create attributes that can be meaningfully displayed.
2899 */
2900static int add_regulator_attributes(struct regulator_dev *rdev)
2901{
2902 struct device *dev = &rdev->dev;
2903 struct regulator_ops *ops = rdev->desc->ops;
2904 int status = 0;
2905
2906 /* some attributes need specific methods to be displayed */
4c78899b
MB
2907 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
2908 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0)) {
7ad68e2f
DB
2909 status = device_create_file(dev, &dev_attr_microvolts);
2910 if (status < 0)
2911 return status;
2912 }
2913 if (ops->get_current_limit) {
2914 status = device_create_file(dev, &dev_attr_microamps);
2915 if (status < 0)
2916 return status;
2917 }
2918 if (ops->get_mode) {
2919 status = device_create_file(dev, &dev_attr_opmode);
2920 if (status < 0)
2921 return status;
2922 }
2923 if (ops->is_enabled) {
2924 status = device_create_file(dev, &dev_attr_state);
2925 if (status < 0)
2926 return status;
2927 }
853116a1
DB
2928 if (ops->get_status) {
2929 status = device_create_file(dev, &dev_attr_status);
2930 if (status < 0)
2931 return status;
2932 }
7ad68e2f
DB
2933
2934 /* some attributes are type-specific */
2935 if (rdev->desc->type == REGULATOR_CURRENT) {
2936 status = device_create_file(dev, &dev_attr_requested_microamps);
2937 if (status < 0)
2938 return status;
2939 }
2940
2941 /* all the other attributes exist to support constraints;
2942 * don't show them if there are no constraints, or if the
2943 * relevant supporting methods are missing.
2944 */
2945 if (!rdev->constraints)
2946 return status;
2947
2948 /* constraints need specific supporting methods */
e8eef82b 2949 if (ops->set_voltage || ops->set_voltage_sel) {
7ad68e2f
DB
2950 status = device_create_file(dev, &dev_attr_min_microvolts);
2951 if (status < 0)
2952 return status;
2953 status = device_create_file(dev, &dev_attr_max_microvolts);
2954 if (status < 0)
2955 return status;
2956 }
2957 if (ops->set_current_limit) {
2958 status = device_create_file(dev, &dev_attr_min_microamps);
2959 if (status < 0)
2960 return status;
2961 status = device_create_file(dev, &dev_attr_max_microamps);
2962 if (status < 0)
2963 return status;
2964 }
2965
7ad68e2f
DB
2966 status = device_create_file(dev, &dev_attr_suspend_standby_state);
2967 if (status < 0)
2968 return status;
2969 status = device_create_file(dev, &dev_attr_suspend_mem_state);
2970 if (status < 0)
2971 return status;
2972 status = device_create_file(dev, &dev_attr_suspend_disk_state);
2973 if (status < 0)
2974 return status;
2975
2976 if (ops->set_suspend_voltage) {
2977 status = device_create_file(dev,
2978 &dev_attr_suspend_standby_microvolts);
2979 if (status < 0)
2980 return status;
2981 status = device_create_file(dev,
2982 &dev_attr_suspend_mem_microvolts);
2983 if (status < 0)
2984 return status;
2985 status = device_create_file(dev,
2986 &dev_attr_suspend_disk_microvolts);
2987 if (status < 0)
2988 return status;
2989 }
2990
2991 if (ops->set_suspend_mode) {
2992 status = device_create_file(dev,
2993 &dev_attr_suspend_standby_mode);
2994 if (status < 0)
2995 return status;
2996 status = device_create_file(dev,
2997 &dev_attr_suspend_mem_mode);
2998 if (status < 0)
2999 return status;
3000 status = device_create_file(dev,
3001 &dev_attr_suspend_disk_mode);
3002 if (status < 0)
3003 return status;
3004 }
3005
3006 return status;
3007}
3008
1130e5b3
MB
3009static void rdev_init_debugfs(struct regulator_dev *rdev)
3010{
1130e5b3 3011 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
24751434 3012 if (!rdev->debugfs) {
1130e5b3 3013 rdev_warn(rdev, "Failed to create debugfs directory\n");
1130e5b3
MB
3014 return;
3015 }
3016
3017 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3018 &rdev->use_count);
3019 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3020 &rdev->open_count);
1130e5b3
MB
3021}
3022
414c70cb
LG
3023/**
3024 * regulator_register - register regulator
69279fb9 3025 * @regulator_desc: regulator to register
c172708d 3026 * @config: runtime configuration for regulator
414c70cb
LG
3027 *
3028 * Called by regulator drivers to register a regulator.
3029 * Returns 0 on success.
3030 */
65f26846
MB
3031struct regulator_dev *
3032regulator_register(const struct regulator_desc *regulator_desc,
c172708d 3033 const struct regulator_config *config)
414c70cb 3034{
9a8f5e07 3035 const struct regulation_constraints *constraints = NULL;
c172708d 3036 const struct regulator_init_data *init_data;
414c70cb
LG
3037 static atomic_t regulator_no = ATOMIC_INIT(0);
3038 struct regulator_dev *rdev;
32c8fad4 3039 struct device *dev;
a5766f11 3040 int ret, i;
69511a45 3041 const char *supply = NULL;
414c70cb 3042
c172708d 3043 if (regulator_desc == NULL || config == NULL)
414c70cb
LG
3044 return ERR_PTR(-EINVAL);
3045
32c8fad4 3046 dev = config->dev;
dcf70112 3047 WARN_ON(!dev);
32c8fad4 3048
414c70cb
LG
3049 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3050 return ERR_PTR(-EINVAL);
3051
cd78dfc6
DL
3052 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3053 regulator_desc->type != REGULATOR_CURRENT)
414c70cb
LG
3054 return ERR_PTR(-EINVAL);
3055
476c2d83
MB
3056 /* Only one of each should be implemented */
3057 WARN_ON(regulator_desc->ops->get_voltage &&
3058 regulator_desc->ops->get_voltage_sel);
e8eef82b
MB
3059 WARN_ON(regulator_desc->ops->set_voltage &&
3060 regulator_desc->ops->set_voltage_sel);
476c2d83
MB
3061
3062 /* If we're using selectors we must implement list_voltage. */
3063 if (regulator_desc->ops->get_voltage_sel &&
3064 !regulator_desc->ops->list_voltage) {
3065 return ERR_PTR(-EINVAL);
3066 }
e8eef82b
MB
3067 if (regulator_desc->ops->set_voltage_sel &&
3068 !regulator_desc->ops->list_voltage) {
3069 return ERR_PTR(-EINVAL);
3070 }
476c2d83 3071
c172708d
MB
3072 init_data = config->init_data;
3073
414c70cb
LG
3074 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3075 if (rdev == NULL)
3076 return ERR_PTR(-ENOMEM);
3077
3078 mutex_lock(&regulator_list_mutex);
3079
3080 mutex_init(&rdev->mutex);
c172708d 3081 rdev->reg_data = config->driver_data;
414c70cb
LG
3082 rdev->owner = regulator_desc->owner;
3083 rdev->desc = regulator_desc;
3a4b0a07
MB
3084 if (config->regmap)
3085 rdev->regmap = config->regmap;
3086 else
3087 rdev->regmap = dev_get_regmap(dev, NULL);
414c70cb 3088 INIT_LIST_HEAD(&rdev->consumer_list);
414c70cb 3089 INIT_LIST_HEAD(&rdev->list);
414c70cb 3090 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
da07ecd9 3091 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
414c70cb 3092
a5766f11 3093 /* preform any regulator specific init */
9a8f5e07 3094 if (init_data && init_data->regulator_init) {
a5766f11 3095 ret = init_data->regulator_init(rdev->reg_data);
4fca9545
DB
3096 if (ret < 0)
3097 goto clean;
a5766f11
LG
3098 }
3099
a5766f11 3100 /* register with sysfs */
414c70cb 3101 rdev->dev.class = &regulator_class;
c172708d 3102 rdev->dev.of_node = config->of_node;
a5766f11 3103 rdev->dev.parent = dev;
812460a9
KS
3104 dev_set_name(&rdev->dev, "regulator.%d",
3105 atomic_inc_return(&regulator_no) - 1);
a5766f11 3106 ret = device_register(&rdev->dev);
ad7725cb
VK
3107 if (ret != 0) {
3108 put_device(&rdev->dev);
4fca9545 3109 goto clean;
ad7725cb 3110 }
a5766f11
LG
3111
3112 dev_set_drvdata(&rdev->dev, rdev);
3113
74f544c1 3114 /* set regulator constraints */
9a8f5e07
MB
3115 if (init_data)
3116 constraints = &init_data->constraints;
3117
3118 ret = set_machine_constraints(rdev, constraints);
74f544c1
MR
3119 if (ret < 0)
3120 goto scrub;
3121
7ad68e2f
DB
3122 /* add attributes supported by this regulator */
3123 ret = add_regulator_attributes(rdev);
3124 if (ret < 0)
3125 goto scrub;
3126
9a8f5e07 3127 if (init_data && init_data->supply_regulator)
69511a45
RN
3128 supply = init_data->supply_regulator;
3129 else if (regulator_desc->supply_name)
3130 supply = regulator_desc->supply_name;
3131
3132 if (supply) {
0178f3e2 3133 struct regulator_dev *r;
0178f3e2 3134
6d191a5f 3135 r = regulator_dev_lookup(dev, supply, &ret);
0178f3e2 3136
69511a45
RN
3137 if (!r) {
3138 dev_err(dev, "Failed to find supply %s\n", supply);
04bf3011 3139 ret = -EPROBE_DEFER;
0178f3e2
MB
3140 goto scrub;
3141 }
3142
3143 ret = set_supply(rdev, r);
3144 if (ret < 0)
3145 goto scrub;
b2296bd4
LD
3146
3147 /* Enable supply if rail is enabled */
b1a86831 3148 if (_regulator_is_enabled(rdev)) {
b2296bd4
LD
3149 ret = regulator_enable(rdev->supply);
3150 if (ret < 0)
3151 goto scrub;
3152 }
0178f3e2
MB
3153 }
3154
a5766f11 3155 /* add consumers devices */
9a8f5e07
MB
3156 if (init_data) {
3157 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3158 ret = set_consumer_device_supply(rdev,
9a8f5e07 3159 init_data->consumer_supplies[i].dev_name,
23c2f041 3160 init_data->consumer_supplies[i].supply);
9a8f5e07
MB
3161 if (ret < 0) {
3162 dev_err(dev, "Failed to set supply %s\n",
3163 init_data->consumer_supplies[i].supply);
3164 goto unset_supplies;
3165 }
23c2f041 3166 }
414c70cb 3167 }
a5766f11
LG
3168
3169 list_add(&rdev->list, &regulator_list);
1130e5b3
MB
3170
3171 rdev_init_debugfs(rdev);
a5766f11 3172out:
414c70cb
LG
3173 mutex_unlock(&regulator_list_mutex);
3174 return rdev;
4fca9545 3175
d4033b54
JN
3176unset_supplies:
3177 unset_regulator_supplies(rdev);
3178
4fca9545 3179scrub:
e81dba85
MB
3180 if (rdev->supply)
3181 regulator_put(rdev->supply);
1a6958e7 3182 kfree(rdev->constraints);
4fca9545 3183 device_unregister(&rdev->dev);
53032daf
PW
3184 /* device core frees rdev */
3185 rdev = ERR_PTR(ret);
3186 goto out;
3187
4fca9545
DB
3188clean:
3189 kfree(rdev);
3190 rdev = ERR_PTR(ret);
3191 goto out;
414c70cb
LG
3192}
3193EXPORT_SYMBOL_GPL(regulator_register);
3194
3195/**
3196 * regulator_unregister - unregister regulator
69279fb9 3197 * @rdev: regulator to unregister
414c70cb
LG
3198 *
3199 * Called by regulator drivers to unregister a regulator.
3200 */
3201void regulator_unregister(struct regulator_dev *rdev)
3202{
3203 if (rdev == NULL)
3204 return;
3205
e032b376
MB
3206 if (rdev->supply)
3207 regulator_put(rdev->supply);
414c70cb 3208 mutex_lock(&regulator_list_mutex);
1130e5b3 3209 debugfs_remove_recursive(rdev->debugfs);
da07ecd9 3210 flush_work_sync(&rdev->disable_work.work);
6bf87d17 3211 WARN_ON(rdev->open_count);
0f1d747b 3212 unset_regulator_supplies(rdev);
414c70cb 3213 list_del(&rdev->list);
f8c12fe3 3214 kfree(rdev->constraints);
58fb5cf5 3215 device_unregister(&rdev->dev);
414c70cb
LG
3216 mutex_unlock(&regulator_list_mutex);
3217}
3218EXPORT_SYMBOL_GPL(regulator_unregister);
3219
414c70cb 3220/**
cf7bbcdf 3221 * regulator_suspend_prepare - prepare regulators for system wide suspend
414c70cb
LG
3222 * @state: system suspend state
3223 *
3224 * Configure each regulator with it's suspend operating parameters for state.
3225 * This will usually be called by machine suspend code prior to supending.
3226 */
3227int regulator_suspend_prepare(suspend_state_t state)
3228{
3229 struct regulator_dev *rdev;
3230 int ret = 0;
3231
3232 /* ON is handled by regulator active state */
3233 if (state == PM_SUSPEND_ON)
3234 return -EINVAL;
3235
3236 mutex_lock(&regulator_list_mutex);
3237 list_for_each_entry(rdev, &regulator_list, list) {
3238
3239 mutex_lock(&rdev->mutex);
3240 ret = suspend_prepare(rdev, state);
3241 mutex_unlock(&rdev->mutex);
3242
3243 if (ret < 0) {
5da84fd9 3244 rdev_err(rdev, "failed to prepare\n");
414c70cb
LG
3245 goto out;
3246 }
3247 }
3248out:
3249 mutex_unlock(&regulator_list_mutex);
3250 return ret;
3251}
3252EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3253
7a32b589
MH
3254/**
3255 * regulator_suspend_finish - resume regulators from system wide suspend
3256 *
3257 * Turn on regulators that might be turned off by regulator_suspend_prepare
3258 * and that should be turned on according to the regulators properties.
3259 */
3260int regulator_suspend_finish(void)
3261{
3262 struct regulator_dev *rdev;
3263 int ret = 0, error;
3264
3265 mutex_lock(&regulator_list_mutex);
3266 list_for_each_entry(rdev, &regulator_list, list) {
3267 struct regulator_ops *ops = rdev->desc->ops;
3268
3269 mutex_lock(&rdev->mutex);
3270 if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
3271 ops->enable) {
3272 error = ops->enable(rdev);
3273 if (error)
3274 ret = error;
3275 } else {
3276 if (!has_full_constraints)
3277 goto unlock;
3278 if (!ops->disable)
3279 goto unlock;
b1a86831 3280 if (!_regulator_is_enabled(rdev))
7a32b589
MH
3281 goto unlock;
3282
3283 error = ops->disable(rdev);
3284 if (error)
3285 ret = error;
3286 }
3287unlock:
3288 mutex_unlock(&rdev->mutex);
3289 }
3290 mutex_unlock(&regulator_list_mutex);
3291 return ret;
3292}
3293EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3294
ca725561
MB
3295/**
3296 * regulator_has_full_constraints - the system has fully specified constraints
3297 *
3298 * Calling this function will cause the regulator API to disable all
3299 * regulators which have a zero use count and don't have an always_on
3300 * constraint in a late_initcall.
3301 *
3302 * The intention is that this will become the default behaviour in a
3303 * future kernel release so users are encouraged to use this facility
3304 * now.
3305 */
3306void regulator_has_full_constraints(void)
3307{
3308 has_full_constraints = 1;
3309}
3310EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3311
688fe99a
MB
3312/**
3313 * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
3314 *
3315 * Calling this function will cause the regulator API to provide a
3316 * dummy regulator to consumers if no physical regulator is found,
3317 * allowing most consumers to proceed as though a regulator were
3318 * configured. This allows systems such as those with software
3319 * controllable regulators for the CPU core only to be brought up more
3320 * readily.
3321 */
3322void regulator_use_dummy_regulator(void)
3323{
3324 board_wants_dummy_regulator = true;
3325}
3326EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
3327
414c70cb
LG
3328/**
3329 * rdev_get_drvdata - get rdev regulator driver data
69279fb9 3330 * @rdev: regulator
414c70cb
LG
3331 *
3332 * Get rdev regulator driver private data. This call can be used in the
3333 * regulator driver context.
3334 */
3335void *rdev_get_drvdata(struct regulator_dev *rdev)
3336{
3337 return rdev->reg_data;
3338}
3339EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3340
3341/**
3342 * regulator_get_drvdata - get regulator driver data
3343 * @regulator: regulator
3344 *
3345 * Get regulator driver private data. This call can be used in the consumer
3346 * driver context when non API regulator specific functions need to be called.
3347 */
3348void *regulator_get_drvdata(struct regulator *regulator)
3349{
3350 return regulator->rdev->reg_data;
3351}
3352EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3353
3354/**
3355 * regulator_set_drvdata - set regulator driver data
3356 * @regulator: regulator
3357 * @data: data
3358 */
3359void regulator_set_drvdata(struct regulator *regulator, void *data)
3360{
3361 regulator->rdev->reg_data = data;
3362}
3363EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3364
3365/**
3366 * regulator_get_id - get regulator ID
69279fb9 3367 * @rdev: regulator
414c70cb
LG
3368 */
3369int rdev_get_id(struct regulator_dev *rdev)
3370{
3371 return rdev->desc->id;
3372}
3373EXPORT_SYMBOL_GPL(rdev_get_id);
3374
a5766f11
LG
3375struct device *rdev_get_dev(struct regulator_dev *rdev)
3376{
3377 return &rdev->dev;
3378}
3379EXPORT_SYMBOL_GPL(rdev_get_dev);
3380
3381void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3382{
3383 return reg_init_data->driver_data;
3384}
3385EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3386
ba55a974
MB
3387#ifdef CONFIG_DEBUG_FS
3388static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3389 size_t count, loff_t *ppos)
3390{
3391 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3392 ssize_t len, ret = 0;
3393 struct regulator_map *map;
3394
3395 if (!buf)
3396 return -ENOMEM;
3397
3398 list_for_each_entry(map, &regulator_map_list, list) {
3399 len = snprintf(buf + ret, PAGE_SIZE - ret,
3400 "%s -> %s.%s\n",
3401 rdev_get_name(map->regulator), map->dev_name,
3402 map->supply);
3403 if (len >= 0)
3404 ret += len;
3405 if (ret > PAGE_SIZE) {
3406 ret = PAGE_SIZE;
3407 break;
3408 }
3409 }
3410
3411 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3412
3413 kfree(buf);
3414
3415 return ret;
3416}
24751434 3417#endif
ba55a974
MB
3418
3419static const struct file_operations supply_map_fops = {
24751434 3420#ifdef CONFIG_DEBUG_FS
ba55a974
MB
3421 .read = supply_map_read_file,
3422 .llseek = default_llseek,
ba55a974 3423#endif
24751434 3424};
ba55a974 3425
414c70cb
LG
3426static int __init regulator_init(void)
3427{
34abbd68
MB
3428 int ret;
3429
34abbd68
MB
3430 ret = class_register(&regulator_class);
3431
1130e5b3 3432 debugfs_root = debugfs_create_dir("regulator", NULL);
24751434 3433 if (!debugfs_root)
1130e5b3 3434 pr_warn("regulator: Failed to create debugfs directory\n");
ba55a974 3435
f4d562c6
MB
3436 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
3437 &supply_map_fops);
1130e5b3 3438
34abbd68
MB
3439 regulator_dummy_init();
3440
3441 return ret;
414c70cb
LG
3442}
3443
3444/* init early to allow our consumers to complete system booting */
3445core_initcall(regulator_init);
ca725561
MB
3446
3447static int __init regulator_init_complete(void)
3448{
3449 struct regulator_dev *rdev;
3450 struct regulator_ops *ops;
3451 struct regulation_constraints *c;
3452 int enabled, ret;
ca725561
MB
3453
3454 mutex_lock(&regulator_list_mutex);
3455
3456 /* If we have a full configuration then disable any regulators
3457 * which are not in use or always_on. This will become the
3458 * default behaviour in the future.
3459 */
3460 list_for_each_entry(rdev, &regulator_list, list) {
3461 ops = rdev->desc->ops;
3462 c = rdev->constraints;
3463
f25e0b4f 3464 if (!ops->disable || (c && c->always_on))
ca725561
MB
3465 continue;
3466
3467 mutex_lock(&rdev->mutex);
3468
3469 if (rdev->use_count)
3470 goto unlock;
3471
3472 /* If we can't read the status assume it's on. */
3473 if (ops->is_enabled)
3474 enabled = ops->is_enabled(rdev);
3475 else
3476 enabled = 1;
3477
3478 if (!enabled)
3479 goto unlock;
3480
3481 if (has_full_constraints) {
3482 /* We log since this may kill the system if it
3483 * goes wrong. */
5da84fd9 3484 rdev_info(rdev, "disabling\n");
ca725561
MB
3485 ret = ops->disable(rdev);
3486 if (ret != 0) {
5da84fd9 3487 rdev_err(rdev, "couldn't disable: %d\n", ret);
ca725561
MB
3488 }
3489 } else {
3490 /* The intention is that in future we will
3491 * assume that full constraints are provided
3492 * so warn even if we aren't going to do
3493 * anything here.
3494 */
5da84fd9 3495 rdev_warn(rdev, "incomplete constraints, leaving on\n");
ca725561
MB
3496 }
3497
3498unlock:
3499 mutex_unlock(&rdev->mutex);
3500 }
3501
3502 mutex_unlock(&regulator_list_mutex);
3503
3504 return 0;
3505}
3506late_initcall(regulator_init_complete);