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