]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/regulator/core.c
Merge tag 'io_uring-5.7-2020-05-22' of git://git.kernel.dk/linux-block
[thirdparty/linux.git] / drivers / regulator / core.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
f2c6203f
MB
2//
3// core.c -- Voltage/Current Regulator framework.
4//
5// Copyright 2007, 2008 Wolfson Microelectronics PLC.
6// Copyright 2008 SlimLogic Ltd.
7//
8// Author: Liam Girdwood <lrg@slimlogic.co.uk>
414c70cb
LG
9
10#include <linux/kernel.h>
11#include <linux/init.h>
1130e5b3 12#include <linux/debugfs.h>
414c70cb 13#include <linux/device.h>
5a0e3ad6 14#include <linux/slab.h>
f21e0e81 15#include <linux/async.h>
414c70cb
LG
16#include <linux/err.h>
17#include <linux/mutex.h>
18#include <linux/suspend.h>
31aae2be 19#include <linux/delay.h>
778b28b4 20#include <linux/gpio/consumer.h>
69511a45 21#include <linux/of.h>
65b19ce6 22#include <linux/regmap.h>
69511a45 23#include <linux/regulator/of_regulator.h>
414c70cb 24#include <linux/regulator/consumer.h>
d8ca7d18 25#include <linux/regulator/coupler.h>
414c70cb
LG
26#include <linux/regulator/driver.h>
27#include <linux/regulator/machine.h>
65602c32 28#include <linux/module.h>
414c70cb 29
02fa3ec0
MB
30#define CREATE_TRACE_POINTS
31#include <trace/events/regulator.h>
32
34abbd68 33#include "dummy.h"
0cdfcc0f 34#include "internal.h"
34abbd68 35
7d51a0db
MB
36#define rdev_crit(rdev, fmt, ...) \
37 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
5da84fd9
JP
38#define rdev_err(rdev, fmt, ...) \
39 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
40#define rdev_warn(rdev, fmt, ...) \
41 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
42#define rdev_info(rdev, fmt, ...) \
43 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
44#define rdev_dbg(rdev, fmt, ...) \
45 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
46
f8702f9e
DO
47static DEFINE_WW_CLASS(regulator_ww_class);
48static DEFINE_MUTEX(regulator_nesting_mutex);
414c70cb 49static DEFINE_MUTEX(regulator_list_mutex);
414c70cb 50static LIST_HEAD(regulator_map_list);
f19b00da 51static LIST_HEAD(regulator_ena_gpio_list);
a06ccd9c 52static LIST_HEAD(regulator_supply_alias_list);
d8ca7d18 53static LIST_HEAD(regulator_coupler_list);
21cf891a 54static bool has_full_constraints;
414c70cb 55
1130e5b3 56static struct dentry *debugfs_root;
1130e5b3 57
8dc5390d 58/*
414c70cb
LG
59 * struct regulator_map
60 *
61 * Used to provide symbolic supply names to devices.
62 */
63struct regulator_map {
64 struct list_head list;
40f9244f 65 const char *dev_name; /* The dev_name() for the consumer */
414c70cb 66 const char *supply;
a5766f11 67 struct regulator_dev *regulator;
414c70cb
LG
68};
69
f19b00da
KM
70/*
71 * struct regulator_enable_gpio
72 *
73 * Management for shared enable GPIO pin
74 */
75struct regulator_enable_gpio {
76 struct list_head list;
778b28b4 77 struct gpio_desc *gpiod;
f19b00da
KM
78 u32 enable_count; /* a number of enabled shared GPIO */
79 u32 request_count; /* a number of requested shared GPIO */
f19b00da
KM
80};
81
a06ccd9c
CK
82/*
83 * struct regulator_supply_alias
84 *
85 * Used to map lookups for a supply onto an alternative device.
86 */
87struct regulator_supply_alias {
88 struct list_head list;
89 struct device *src_dev;
90 const char *src_supply;
91 struct device *alias_dev;
92 const char *alias_supply;
93};
94
414c70cb 95static int _regulator_is_enabled(struct regulator_dev *rdev);
5451781d 96static int _regulator_disable(struct regulator *regulator);
414c70cb
LG
97static int _regulator_get_current_limit(struct regulator_dev *rdev);
98static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
7179569a 99static int _notifier_call_chain(struct regulator_dev *rdev,
414c70cb 100 unsigned long event, void *data);
75790251
MB
101static int _regulator_do_set_voltage(struct regulator_dev *rdev,
102 int min_uV, int max_uV);
c054c6c7
MP
103static int regulator_balance_voltage(struct regulator_dev *rdev,
104 suspend_state_t state);
3801b86a
MB
105static struct regulator *create_regulator(struct regulator_dev *rdev,
106 struct device *dev,
107 const char *supply_name);
36a1f1b6 108static void _regulator_put(struct regulator *regulator);
414c70cb 109
d22b85a1 110const char *rdev_get_name(struct regulator_dev *rdev)
1083c393
MB
111{
112 if (rdev->constraints && rdev->constraints->name)
113 return rdev->constraints->name;
114 else if (rdev->desc->name)
115 return rdev->desc->name;
116 else
117 return "";
118}
119
87b28417
MB
120static bool have_full_constraints(void)
121{
75bc9641 122 return has_full_constraints || of_have_populated_dt();
87b28417
MB
123}
124
8a34e979
WP
125static bool regulator_ops_is_valid(struct regulator_dev *rdev, int ops)
126{
127 if (!rdev->constraints) {
128 rdev_err(rdev, "no constraints\n");
129 return false;
130 }
131
132 if (rdev->constraints->valid_ops_mask & ops)
133 return true;
134
135 return false;
136}
137
66cf9a7e
MP
138/**
139 * regulator_lock_nested - lock a single regulator
140 * @rdev: regulator source
f8702f9e 141 * @ww_ctx: w/w mutex acquire context
66cf9a7e
MP
142 *
143 * This function can be called many times by one task on
144 * a single regulator and its mutex will be locked only
145 * once. If a task, which is calling this function is other
146 * than the one, which initially locked the mutex, it will
147 * wait on mutex.
148 */
f8702f9e
DO
149static inline int regulator_lock_nested(struct regulator_dev *rdev,
150 struct ww_acquire_ctx *ww_ctx)
66cf9a7e 151{
f8702f9e
DO
152 bool lock = false;
153 int ret = 0;
154
155 mutex_lock(&regulator_nesting_mutex);
156
157 if (ww_ctx || !ww_mutex_trylock(&rdev->mutex)) {
158 if (rdev->mutex_owner == current)
66cf9a7e 159 rdev->ref_cnt++;
f8702f9e
DO
160 else
161 lock = true;
162
163 if (lock) {
164 mutex_unlock(&regulator_nesting_mutex);
165 ret = ww_mutex_lock(&rdev->mutex, ww_ctx);
166 mutex_lock(&regulator_nesting_mutex);
66cf9a7e 167 }
f8702f9e
DO
168 } else {
169 lock = true;
66cf9a7e
MP
170 }
171
f8702f9e
DO
172 if (lock && ret != -EDEADLK) {
173 rdev->ref_cnt++;
174 rdev->mutex_owner = current;
175 }
176
177 mutex_unlock(&regulator_nesting_mutex);
178
179 return ret;
66cf9a7e
MP
180}
181
f8702f9e
DO
182/**
183 * regulator_lock - lock a single regulator
184 * @rdev: regulator source
185 *
186 * This function can be called many times by one task on
187 * a single regulator and its mutex will be locked only
188 * once. If a task, which is calling this function is other
189 * than the one, which initially locked the mutex, it will
190 * wait on mutex.
191 */
192void regulator_lock(struct regulator_dev *rdev)
66cf9a7e 193{
f8702f9e 194 regulator_lock_nested(rdev, NULL);
66cf9a7e 195}
14a74272 196EXPORT_SYMBOL_GPL(regulator_lock);
66cf9a7e
MP
197
198/**
199 * regulator_unlock - unlock a single regulator
200 * @rdev: regulator_source
201 *
202 * This function unlocks the mutex when the
203 * reference counter reaches 0.
204 */
f8702f9e 205void regulator_unlock(struct regulator_dev *rdev)
66cf9a7e 206{
f8702f9e 207 mutex_lock(&regulator_nesting_mutex);
66cf9a7e 208
f8702f9e
DO
209 if (--rdev->ref_cnt == 0) {
210 rdev->mutex_owner = NULL;
211 ww_mutex_unlock(&rdev->mutex);
66cf9a7e 212 }
f8702f9e
DO
213
214 WARN_ON_ONCE(rdev->ref_cnt < 0);
215
216 mutex_unlock(&regulator_nesting_mutex);
66cf9a7e 217}
14a74272 218EXPORT_SYMBOL_GPL(regulator_unlock);
66cf9a7e 219
089e2cc2 220static bool regulator_supply_is_couple(struct regulator_dev *rdev)
66cf9a7e 221{
089e2cc2
DO
222 struct regulator_dev *c_rdev;
223 int i;
224
225 for (i = 1; i < rdev->coupling_desc.n_coupled; i++) {
226 c_rdev = rdev->coupling_desc.coupled_rdevs[i];
66cf9a7e 227
089e2cc2
DO
228 if (rdev->supply->rdev == c_rdev)
229 return true;
230 }
231
232 return false;
233}
234
f8702f9e
DO
235static void regulator_unlock_recursive(struct regulator_dev *rdev,
236 unsigned int n_coupled)
9f01cd4a 237{
9243a195 238 struct regulator_dev *c_rdev;
fa731ac7 239 int i;
9f01cd4a 240
f8702f9e
DO
241 for (i = n_coupled; i > 0; i--) {
242 c_rdev = rdev->coupling_desc.coupled_rdevs[i - 1];
9243a195
MP
243
244 if (!c_rdev)
245 continue;
246
089e2cc2 247 if (c_rdev->supply && !regulator_supply_is_couple(c_rdev))
f8702f9e
DO
248 regulator_unlock_recursive(
249 c_rdev->supply->rdev,
250 c_rdev->coupling_desc.n_coupled);
9243a195 251
f8702f9e
DO
252 regulator_unlock(c_rdev);
253 }
9f01cd4a
SH
254}
255
f8702f9e
DO
256static int regulator_lock_recursive(struct regulator_dev *rdev,
257 struct regulator_dev **new_contended_rdev,
258 struct regulator_dev **old_contended_rdev,
259 struct ww_acquire_ctx *ww_ctx)
9f01cd4a 260{
9243a195 261 struct regulator_dev *c_rdev;
f8702f9e 262 int i, err;
9f01cd4a 263
9243a195
MP
264 for (i = 0; i < rdev->coupling_desc.n_coupled; i++) {
265 c_rdev = rdev->coupling_desc.coupled_rdevs[i];
456e7cdf 266
9243a195
MP
267 if (!c_rdev)
268 continue;
9f01cd4a 269
f8702f9e
DO
270 if (c_rdev != *old_contended_rdev) {
271 err = regulator_lock_nested(c_rdev, ww_ctx);
272 if (err) {
273 if (err == -EDEADLK) {
274 *new_contended_rdev = c_rdev;
275 goto err_unlock;
276 }
9243a195 277
f8702f9e
DO
278 /* shouldn't happen */
279 WARN_ON_ONCE(err != -EALREADY);
280 }
281 } else {
282 *old_contended_rdev = NULL;
283 }
284
089e2cc2 285 if (c_rdev->supply && !regulator_supply_is_couple(c_rdev)) {
f8702f9e
DO
286 err = regulator_lock_recursive(c_rdev->supply->rdev,
287 new_contended_rdev,
288 old_contended_rdev,
289 ww_ctx);
290 if (err) {
291 regulator_unlock(c_rdev);
292 goto err_unlock;
293 }
66cf9a7e
MP
294 }
295 }
f8702f9e
DO
296
297 return 0;
298
299err_unlock:
300 regulator_unlock_recursive(rdev, i);
301
302 return err;
66cf9a7e
MP
303}
304
38de19fa 305/**
f8702f9e
DO
306 * regulator_unlock_dependent - unlock regulator's suppliers and coupled
307 * regulators
308 * @rdev: regulator source
309 * @ww_ctx: w/w mutex acquire context
310 *
48f1b4ef 311 * Unlock all regulators related with rdev by coupling or supplying.
38de19fa 312 */
f8702f9e
DO
313static void regulator_unlock_dependent(struct regulator_dev *rdev,
314 struct ww_acquire_ctx *ww_ctx)
9f01cd4a 315{
f8702f9e
DO
316 regulator_unlock_recursive(rdev, rdev->coupling_desc.n_coupled);
317 ww_acquire_fini(ww_ctx);
9f01cd4a
SH
318}
319
320/**
9243a195
MP
321 * regulator_lock_dependent - lock regulator's suppliers and coupled regulators
322 * @rdev: regulator source
f8702f9e 323 * @ww_ctx: w/w mutex acquire context
9243a195
MP
324 *
325 * This function as a wrapper on regulator_lock_recursive(), which locks
48f1b4ef 326 * all regulators related with rdev by coupling or supplying.
9f01cd4a 327 */
f8702f9e
DO
328static void regulator_lock_dependent(struct regulator_dev *rdev,
329 struct ww_acquire_ctx *ww_ctx)
9f01cd4a 330{
f8702f9e
DO
331 struct regulator_dev *new_contended_rdev = NULL;
332 struct regulator_dev *old_contended_rdev = NULL;
333 int err;
9f01cd4a 334
f8702f9e 335 mutex_lock(&regulator_list_mutex);
456e7cdf 336
f8702f9e 337 ww_acquire_init(ww_ctx, &regulator_ww_class);
9f01cd4a 338
f8702f9e
DO
339 do {
340 if (new_contended_rdev) {
341 ww_mutex_lock_slow(&new_contended_rdev->mutex, ww_ctx);
342 old_contended_rdev = new_contended_rdev;
343 old_contended_rdev->ref_cnt++;
344 }
345
346 err = regulator_lock_recursive(rdev,
347 &new_contended_rdev,
348 &old_contended_rdev,
349 ww_ctx);
350
351 if (old_contended_rdev)
352 regulator_unlock(old_contended_rdev);
353
354 } while (err == -EDEADLK);
355
356 ww_acquire_done(ww_ctx);
357
358 mutex_unlock(&regulator_list_mutex);
9f01cd4a
SH
359}
360
fe06051d 361/**
362 * of_get_child_regulator - get a child regulator device node
363 * based on supply name
364 * @parent: Parent device node
365 * @prop_name: Combination regulator supply name and "-supply"
366 *
367 * Traverse all child nodes.
368 * Extract the child regulator device node corresponding to the supply name.
369 * returns the device node corresponding to the regulator if found, else
370 * returns NULL.
371 */
372static struct device_node *of_get_child_regulator(struct device_node *parent,
373 const char *prop_name)
374{
375 struct device_node *regnode = NULL;
376 struct device_node *child = NULL;
377
378 for_each_child_of_node(parent, child) {
379 regnode = of_parse_phandle(child, prop_name, 0);
380
381 if (!regnode) {
382 regnode = of_get_child_regulator(child, prop_name);
81eeb0a3
ND
383 if (regnode)
384 goto err_node_put;
fe06051d 385 } else {
81eeb0a3 386 goto err_node_put;
fe06051d 387 }
388 }
389 return NULL;
81eeb0a3
ND
390
391err_node_put:
392 of_node_put(child);
393 return regnode;
fe06051d 394}
395
69511a45
RN
396/**
397 * of_get_regulator - get a regulator device node based on supply name
398 * @dev: Device pointer for the consumer (of regulator) device
399 * @supply: regulator supply name
400 *
401 * Extract the regulator device node corresponding to the supply name.
167d41dc 402 * returns the device node corresponding to the regulator if found, else
69511a45
RN
403 * returns NULL.
404 */
405static struct device_node *of_get_regulator(struct device *dev, const char *supply)
406{
407 struct device_node *regnode = NULL;
408 char prop_name[32]; /* 32 is max size of property name */
409
410 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
411
412 snprintf(prop_name, 32, "%s-supply", supply);
413 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
414
415 if (!regnode) {
fe06051d 416 regnode = of_get_child_regulator(dev->of_node, prop_name);
417 if (regnode)
418 return regnode;
419
7799167b
RH
420 dev_dbg(dev, "Looking up %s property in node %pOF failed\n",
421 prop_name, dev->of_node);
69511a45
RN
422 return NULL;
423 }
424 return regnode;
425}
426
414c70cb 427/* Platform voltage constraint check */
d22b85a1
DO
428int regulator_check_voltage(struct regulator_dev *rdev,
429 int *min_uV, int *max_uV)
414c70cb
LG
430{
431 BUG_ON(*min_uV > *max_uV);
432
8a34e979 433 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
7ebcf26c 434 rdev_err(rdev, "voltage operation not allowed\n");
414c70cb
LG
435 return -EPERM;
436 }
437
438 if (*max_uV > rdev->constraints->max_uV)
439 *max_uV = rdev->constraints->max_uV;
440 if (*min_uV < rdev->constraints->min_uV)
441 *min_uV = rdev->constraints->min_uV;
442
89f425ed
MB
443 if (*min_uV > *max_uV) {
444 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
54abd335 445 *min_uV, *max_uV);
414c70cb 446 return -EINVAL;
89f425ed 447 }
414c70cb
LG
448
449 return 0;
450}
451
f7efad10
CZ
452/* return 0 if the state is valid */
453static int regulator_check_states(suspend_state_t state)
454{
455 return (state > PM_SUSPEND_MAX || state == PM_SUSPEND_TO_IDLE);
456}
457
05fda3b1
TP
458/* Make sure we select a voltage that suits the needs of all
459 * regulator consumers
460 */
d22b85a1
DO
461int regulator_check_consumers(struct regulator_dev *rdev,
462 int *min_uV, int *max_uV,
463 suspend_state_t state)
05fda3b1
TP
464{
465 struct regulator *regulator;
c360a6df 466 struct regulator_voltage *voltage;
05fda3b1
TP
467
468 list_for_each_entry(regulator, &rdev->consumer_list, list) {
c360a6df 469 voltage = &regulator->voltage[state];
4aa922c0
MB
470 /*
471 * Assume consumers that didn't say anything are OK
472 * with anything in the constraint range.
473 */
c360a6df 474 if (!voltage->min_uV && !voltage->max_uV)
4aa922c0
MB
475 continue;
476
c360a6df
CZ
477 if (*max_uV > voltage->max_uV)
478 *max_uV = voltage->max_uV;
479 if (*min_uV < voltage->min_uV)
480 *min_uV = voltage->min_uV;
05fda3b1
TP
481 }
482
dd8004af 483 if (*min_uV > *max_uV) {
9c7b4e8a
RD
484 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
485 *min_uV, *max_uV);
05fda3b1 486 return -EINVAL;
dd8004af 487 }
05fda3b1
TP
488
489 return 0;
490}
491
414c70cb
LG
492/* current constraint check */
493static int regulator_check_current_limit(struct regulator_dev *rdev,
494 int *min_uA, int *max_uA)
495{
496 BUG_ON(*min_uA > *max_uA);
497
8a34e979 498 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_CURRENT)) {
7ebcf26c 499 rdev_err(rdev, "current operation not allowed\n");
414c70cb
LG
500 return -EPERM;
501 }
502
503 if (*max_uA > rdev->constraints->max_uA)
504 *max_uA = rdev->constraints->max_uA;
505 if (*min_uA < rdev->constraints->min_uA)
506 *min_uA = rdev->constraints->min_uA;
507
89f425ed
MB
508 if (*min_uA > *max_uA) {
509 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
54abd335 510 *min_uA, *max_uA);
414c70cb 511 return -EINVAL;
89f425ed 512 }
414c70cb
LG
513
514 return 0;
515}
516
517/* operating mode constraint check */
109c75af
CK
518static int regulator_mode_constrain(struct regulator_dev *rdev,
519 unsigned int *mode)
414c70cb 520{
2c608234 521 switch (*mode) {
e573520b
DB
522 case REGULATOR_MODE_FAST:
523 case REGULATOR_MODE_NORMAL:
524 case REGULATOR_MODE_IDLE:
525 case REGULATOR_MODE_STANDBY:
526 break;
527 default:
89f425ed 528 rdev_err(rdev, "invalid mode %x specified\n", *mode);
e573520b
DB
529 return -EINVAL;
530 }
531
8a34e979 532 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_MODE)) {
7ebcf26c 533 rdev_err(rdev, "mode operation not allowed\n");
414c70cb
LG
534 return -EPERM;
535 }
2c608234
MB
536
537 /* The modes are bitmasks, the most power hungry modes having
538 * the lowest values. If the requested mode isn't supported
539 * try higher modes. */
540 while (*mode) {
541 if (rdev->constraints->valid_modes_mask & *mode)
542 return 0;
543 *mode /= 2;
414c70cb 544 }
2c608234
MB
545
546 return -EINVAL;
414c70cb
LG
547}
548
f7efad10
CZ
549static inline struct regulator_state *
550regulator_get_suspend_state(struct regulator_dev *rdev, suspend_state_t state)
551{
552 if (rdev->constraints == NULL)
553 return NULL;
554
555 switch (state) {
556 case PM_SUSPEND_STANDBY:
557 return &rdev->constraints->state_standby;
558 case PM_SUSPEND_MEM:
559 return &rdev->constraints->state_mem;
560 case PM_SUSPEND_MAX:
561 return &rdev->constraints->state_disk;
562 default:
563 return NULL;
564 }
565}
566
414c70cb
LG
567static ssize_t regulator_uV_show(struct device *dev,
568 struct device_attribute *attr, char *buf)
569{
a5766f11 570 struct regulator_dev *rdev = dev_get_drvdata(dev);
c82f27df 571 int uV;
414c70cb 572
66cf9a7e 573 regulator_lock(rdev);
c82f27df 574 uV = regulator_get_voltage_rdev(rdev);
66cf9a7e 575 regulator_unlock(rdev);
414c70cb 576
c82f27df
NS
577 if (uV < 0)
578 return uV;
579 return sprintf(buf, "%d\n", uV);
414c70cb 580}
7ad68e2f 581static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
414c70cb
LG
582
583static ssize_t regulator_uA_show(struct device *dev,
584 struct device_attribute *attr, char *buf)
585{
a5766f11 586 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
587
588 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
589}
7ad68e2f 590static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
414c70cb 591
587cea27
GKH
592static ssize_t name_show(struct device *dev, struct device_attribute *attr,
593 char *buf)
bc558a60
MB
594{
595 struct regulator_dev *rdev = dev_get_drvdata(dev);
bc558a60 596
1083c393 597 return sprintf(buf, "%s\n", rdev_get_name(rdev));
bc558a60 598}
587cea27 599static DEVICE_ATTR_RO(name);
bc558a60 600
01de19d0 601static const char *regulator_opmode_to_str(int mode)
414c70cb 602{
414c70cb
LG
603 switch (mode) {
604 case REGULATOR_MODE_FAST:
01de19d0 605 return "fast";
414c70cb 606 case REGULATOR_MODE_NORMAL:
01de19d0 607 return "normal";
414c70cb 608 case REGULATOR_MODE_IDLE:
01de19d0 609 return "idle";
414c70cb 610 case REGULATOR_MODE_STANDBY:
01de19d0 611 return "standby";
414c70cb 612 }
01de19d0
DA
613 return "unknown";
614}
615
616static ssize_t regulator_print_opmode(char *buf, int mode)
617{
618 return sprintf(buf, "%s\n", regulator_opmode_to_str(mode));
414c70cb
LG
619}
620
4fca9545
DB
621static ssize_t regulator_opmode_show(struct device *dev,
622 struct device_attribute *attr, char *buf)
414c70cb 623{
a5766f11 624 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 625
4fca9545
DB
626 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
627}
7ad68e2f 628static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
4fca9545
DB
629
630static ssize_t regulator_print_state(char *buf, int state)
631{
414c70cb
LG
632 if (state > 0)
633 return sprintf(buf, "enabled\n");
634 else if (state == 0)
635 return sprintf(buf, "disabled\n");
636 else
637 return sprintf(buf, "unknown\n");
638}
639
4fca9545
DB
640static ssize_t regulator_state_show(struct device *dev,
641 struct device_attribute *attr, char *buf)
642{
643 struct regulator_dev *rdev = dev_get_drvdata(dev);
9332546f
MB
644 ssize_t ret;
645
66cf9a7e 646 regulator_lock(rdev);
9332546f 647 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
66cf9a7e 648 regulator_unlock(rdev);
4fca9545 649
9332546f 650 return ret;
4fca9545 651}
7ad68e2f 652static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
4fca9545 653
853116a1
DB
654static ssize_t regulator_status_show(struct device *dev,
655 struct device_attribute *attr, char *buf)
656{
657 struct regulator_dev *rdev = dev_get_drvdata(dev);
658 int status;
659 char *label;
660
661 status = rdev->desc->ops->get_status(rdev);
662 if (status < 0)
663 return status;
664
665 switch (status) {
666 case REGULATOR_STATUS_OFF:
667 label = "off";
668 break;
669 case REGULATOR_STATUS_ON:
670 label = "on";
671 break;
672 case REGULATOR_STATUS_ERROR:
673 label = "error";
674 break;
675 case REGULATOR_STATUS_FAST:
676 label = "fast";
677 break;
678 case REGULATOR_STATUS_NORMAL:
679 label = "normal";
680 break;
681 case REGULATOR_STATUS_IDLE:
682 label = "idle";
683 break;
684 case REGULATOR_STATUS_STANDBY:
685 label = "standby";
686 break;
f59c8f9f
MB
687 case REGULATOR_STATUS_BYPASS:
688 label = "bypass";
689 break;
1beaf762
KG
690 case REGULATOR_STATUS_UNDEFINED:
691 label = "undefined";
692 break;
853116a1
DB
693 default:
694 return -ERANGE;
695 }
696
697 return sprintf(buf, "%s\n", label);
698}
699static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
700
414c70cb
LG
701static ssize_t regulator_min_uA_show(struct device *dev,
702 struct device_attribute *attr, char *buf)
703{
a5766f11 704 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
705
706 if (!rdev->constraints)
707 return sprintf(buf, "constraint not defined\n");
708
709 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
710}
7ad68e2f 711static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
414c70cb
LG
712
713static ssize_t regulator_max_uA_show(struct device *dev,
714 struct device_attribute *attr, char *buf)
715{
a5766f11 716 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
717
718 if (!rdev->constraints)
719 return sprintf(buf, "constraint not defined\n");
720
721 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
722}
7ad68e2f 723static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
414c70cb
LG
724
725static ssize_t regulator_min_uV_show(struct device *dev,
726 struct device_attribute *attr, char *buf)
727{
a5766f11 728 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
729
730 if (!rdev->constraints)
731 return sprintf(buf, "constraint not defined\n");
732
733 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
734}
7ad68e2f 735static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
414c70cb
LG
736
737static ssize_t regulator_max_uV_show(struct device *dev,
738 struct device_attribute *attr, char *buf)
739{
a5766f11 740 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
741
742 if (!rdev->constraints)
743 return sprintf(buf, "constraint not defined\n");
744
745 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
746}
7ad68e2f 747static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
414c70cb
LG
748
749static ssize_t regulator_total_uA_show(struct device *dev,
750 struct device_attribute *attr, char *buf)
751{
a5766f11 752 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
753 struct regulator *regulator;
754 int uA = 0;
755
66cf9a7e 756 regulator_lock(rdev);
5451781d
DA
757 list_for_each_entry(regulator, &rdev->consumer_list, list) {
758 if (regulator->enable_count)
759 uA += regulator->uA_load;
760 }
66cf9a7e 761 regulator_unlock(rdev);
414c70cb
LG
762 return sprintf(buf, "%d\n", uA);
763}
7ad68e2f 764static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
414c70cb 765
587cea27
GKH
766static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
767 char *buf)
414c70cb 768{
a5766f11 769 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
770 return sprintf(buf, "%d\n", rdev->use_count);
771}
587cea27 772static DEVICE_ATTR_RO(num_users);
414c70cb 773
587cea27
GKH
774static ssize_t type_show(struct device *dev, struct device_attribute *attr,
775 char *buf)
414c70cb 776{
a5766f11 777 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb
LG
778
779 switch (rdev->desc->type) {
780 case REGULATOR_VOLTAGE:
781 return sprintf(buf, "voltage\n");
782 case REGULATOR_CURRENT:
783 return sprintf(buf, "current\n");
784 }
785 return sprintf(buf, "unknown\n");
786}
587cea27 787static DEVICE_ATTR_RO(type);
414c70cb
LG
788
789static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
790 struct device_attribute *attr, char *buf)
791{
a5766f11 792 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 793
414c70cb
LG
794 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
795}
7ad68e2f
DB
796static DEVICE_ATTR(suspend_mem_microvolts, 0444,
797 regulator_suspend_mem_uV_show, NULL);
414c70cb
LG
798
799static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
800 struct device_attribute *attr, char *buf)
801{
a5766f11 802 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 803
414c70cb
LG
804 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
805}
7ad68e2f
DB
806static DEVICE_ATTR(suspend_disk_microvolts, 0444,
807 regulator_suspend_disk_uV_show, NULL);
414c70cb
LG
808
809static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
810 struct device_attribute *attr, char *buf)
811{
a5766f11 812 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 813
414c70cb
LG
814 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
815}
7ad68e2f
DB
816static DEVICE_ATTR(suspend_standby_microvolts, 0444,
817 regulator_suspend_standby_uV_show, NULL);
414c70cb 818
414c70cb
LG
819static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
820 struct device_attribute *attr, char *buf)
821{
a5766f11 822 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 823
4fca9545
DB
824 return regulator_print_opmode(buf,
825 rdev->constraints->state_mem.mode);
414c70cb 826}
7ad68e2f
DB
827static DEVICE_ATTR(suspend_mem_mode, 0444,
828 regulator_suspend_mem_mode_show, NULL);
414c70cb
LG
829
830static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
831 struct device_attribute *attr, char *buf)
832{
a5766f11 833 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 834
4fca9545
DB
835 return regulator_print_opmode(buf,
836 rdev->constraints->state_disk.mode);
414c70cb 837}
7ad68e2f
DB
838static DEVICE_ATTR(suspend_disk_mode, 0444,
839 regulator_suspend_disk_mode_show, NULL);
414c70cb
LG
840
841static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
842 struct device_attribute *attr, char *buf)
843{
a5766f11 844 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 845
4fca9545
DB
846 return regulator_print_opmode(buf,
847 rdev->constraints->state_standby.mode);
414c70cb 848}
7ad68e2f
DB
849static DEVICE_ATTR(suspend_standby_mode, 0444,
850 regulator_suspend_standby_mode_show, NULL);
414c70cb
LG
851
852static ssize_t regulator_suspend_mem_state_show(struct device *dev,
853 struct device_attribute *attr, char *buf)
854{
a5766f11 855 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 856
4fca9545
DB
857 return regulator_print_state(buf,
858 rdev->constraints->state_mem.enabled);
414c70cb 859}
7ad68e2f
DB
860static DEVICE_ATTR(suspend_mem_state, 0444,
861 regulator_suspend_mem_state_show, NULL);
414c70cb
LG
862
863static ssize_t regulator_suspend_disk_state_show(struct device *dev,
864 struct device_attribute *attr, char *buf)
865{
a5766f11 866 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 867
4fca9545
DB
868 return regulator_print_state(buf,
869 rdev->constraints->state_disk.enabled);
414c70cb 870}
7ad68e2f
DB
871static DEVICE_ATTR(suspend_disk_state, 0444,
872 regulator_suspend_disk_state_show, NULL);
414c70cb
LG
873
874static ssize_t regulator_suspend_standby_state_show(struct device *dev,
875 struct device_attribute *attr, char *buf)
876{
a5766f11 877 struct regulator_dev *rdev = dev_get_drvdata(dev);
414c70cb 878
4fca9545
DB
879 return regulator_print_state(buf,
880 rdev->constraints->state_standby.enabled);
414c70cb 881}
7ad68e2f
DB
882static DEVICE_ATTR(suspend_standby_state, 0444,
883 regulator_suspend_standby_state_show, NULL);
884
f59c8f9f
MB
885static ssize_t regulator_bypass_show(struct device *dev,
886 struct device_attribute *attr, char *buf)
887{
888 struct regulator_dev *rdev = dev_get_drvdata(dev);
889 const char *report;
890 bool bypass;
891 int ret;
892
893 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
894
895 if (ret != 0)
896 report = "unknown";
897 else if (bypass)
898 report = "enabled";
899 else
900 report = "disabled";
901
902 return sprintf(buf, "%s\n", report);
903}
904static DEVICE_ATTR(bypass, 0444,
905 regulator_bypass_show, NULL);
bc558a60 906
414c70cb
LG
907/* Calculate the new optimum regulator operating mode based on the new total
908 * consumer load. All locks held by caller */
8460ef38 909static int drms_uA_update(struct regulator_dev *rdev)
414c70cb
LG
910{
911 struct regulator *sibling;
912 int current_uA = 0, output_uV, input_uV, err;
913 unsigned int mode;
914
8460ef38
BA
915 /*
916 * first check to see if we can set modes at all, otherwise just
917 * tell the consumer everything is OK.
918 */
74a569ee
MG
919 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_DRMS)) {
920 rdev_dbg(rdev, "DRMS operation not allowed\n");
8460ef38 921 return 0;
74a569ee 922 }
8460ef38 923
8f4490e0
BA
924 if (!rdev->desc->ops->get_optimum_mode &&
925 !rdev->desc->ops->set_load)
8460ef38
BA
926 return 0;
927
8f4490e0
BA
928 if (!rdev->desc->ops->set_mode &&
929 !rdev->desc->ops->set_load)
8460ef38 930 return -EINVAL;
414c70cb 931
414c70cb 932 /* calc total requested load */
5451781d
DA
933 list_for_each_entry(sibling, &rdev->consumer_list, list) {
934 if (sibling->enable_count)
935 current_uA += sibling->uA_load;
936 }
414c70cb 937
22a10bca
SB
938 current_uA += rdev->constraints->system_load;
939
8f4490e0
BA
940 if (rdev->desc->ops->set_load) {
941 /* set the optimum mode for our new total regulator load */
942 err = rdev->desc->ops->set_load(rdev, current_uA);
943 if (err < 0)
944 rdev_err(rdev, "failed to set load %d\n", current_uA);
945 } else {
57776617 946 /* get output voltage */
d22b85a1 947 output_uV = regulator_get_voltage_rdev(rdev);
57776617
JP
948 if (output_uV <= 0) {
949 rdev_err(rdev, "invalid output voltage found\n");
950 return -EINVAL;
951 }
952
953 /* get input voltage */
954 input_uV = 0;
955 if (rdev->supply)
956 input_uV = regulator_get_voltage(rdev->supply);
957 if (input_uV <= 0)
958 input_uV = rdev->constraints->input_uV;
959 if (input_uV <= 0) {
960 rdev_err(rdev, "invalid input voltage found\n");
961 return -EINVAL;
962 }
963
8f4490e0
BA
964 /* now get the optimum mode for our new total regulator load */
965 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
966 output_uV, current_uA);
967
968 /* check the new mode is allowed */
969 err = regulator_mode_constrain(rdev, &mode);
970 if (err < 0) {
971 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
972 current_uA, input_uV, output_uV);
973 return err;
974 }
414c70cb 975
8f4490e0
BA
976 err = rdev->desc->ops->set_mode(rdev, mode);
977 if (err < 0)
978 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
8460ef38
BA
979 }
980
8460ef38 981 return err;
414c70cb
LG
982}
983
984static int suspend_set_state(struct regulator_dev *rdev,
f7efad10 985 suspend_state_t state)
414c70cb
LG
986{
987 int ret = 0;
f7efad10
CZ
988 struct regulator_state *rstate;
989
990 rstate = regulator_get_suspend_state(rdev, state);
991 if (rstate == NULL)
57a0dd18 992 return 0;
638f85c5 993
48f1b4ef 994 /* If we have no suspend mode configuration don't set anything;
8ac0e95d
AL
995 * only warn if the driver implements set_suspend_voltage or
996 * set_suspend_mode callback.
638f85c5 997 */
72069f99
CZ
998 if (rstate->enabled != ENABLE_IN_SUSPEND &&
999 rstate->enabled != DISABLE_IN_SUSPEND) {
8ac0e95d
AL
1000 if (rdev->desc->ops->set_suspend_voltage ||
1001 rdev->desc->ops->set_suspend_mode)
5da84fd9 1002 rdev_warn(rdev, "No configuration\n");
638f85c5
MB
1003 return 0;
1004 }
1005
72069f99
CZ
1006 if (rstate->enabled == ENABLE_IN_SUSPEND &&
1007 rdev->desc->ops->set_suspend_enable)
414c70cb 1008 ret = rdev->desc->ops->set_suspend_enable(rdev);
72069f99
CZ
1009 else if (rstate->enabled == DISABLE_IN_SUSPEND &&
1010 rdev->desc->ops->set_suspend_disable)
414c70cb 1011 ret = rdev->desc->ops->set_suspend_disable(rdev);
8ac0e95d
AL
1012 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
1013 ret = 0;
1014
414c70cb 1015 if (ret < 0) {
5da84fd9 1016 rdev_err(rdev, "failed to enabled/disable\n");
414c70cb
LG
1017 return ret;
1018 }
1019
1020 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
1021 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
1022 if (ret < 0) {
5da84fd9 1023 rdev_err(rdev, "failed to set voltage\n");
414c70cb
LG
1024 return ret;
1025 }
1026 }
1027
1028 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
1029 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
1030 if (ret < 0) {
5da84fd9 1031 rdev_err(rdev, "failed to set mode\n");
414c70cb
LG
1032 return ret;
1033 }
1034 }
414c70cb 1035
f7efad10 1036 return ret;
414c70cb
LG
1037}
1038
1039static void print_constraints(struct regulator_dev *rdev)
1040{
1041 struct regulation_constraints *constraints = rdev->constraints;
a7068e39 1042 char buf[160] = "";
5751a99f 1043 size_t len = sizeof(buf) - 1;
8f031b48
MB
1044 int count = 0;
1045 int ret;
414c70cb 1046
8f031b48 1047 if (constraints->min_uV && constraints->max_uV) {
414c70cb 1048 if (constraints->min_uV == constraints->max_uV)
5751a99f
SW
1049 count += scnprintf(buf + count, len - count, "%d mV ",
1050 constraints->min_uV / 1000);
414c70cb 1051 else
5751a99f
SW
1052 count += scnprintf(buf + count, len - count,
1053 "%d <--> %d mV ",
1054 constraints->min_uV / 1000,
1055 constraints->max_uV / 1000);
8f031b48
MB
1056 }
1057
1058 if (!constraints->min_uV ||
1059 constraints->min_uV != constraints->max_uV) {
d22b85a1 1060 ret = regulator_get_voltage_rdev(rdev);
8f031b48 1061 if (ret > 0)
5751a99f
SW
1062 count += scnprintf(buf + count, len - count,
1063 "at %d mV ", ret / 1000);
8f031b48
MB
1064 }
1065
bf5892a8 1066 if (constraints->uV_offset)
5751a99f
SW
1067 count += scnprintf(buf + count, len - count, "%dmV offset ",
1068 constraints->uV_offset / 1000);
bf5892a8 1069
8f031b48 1070 if (constraints->min_uA && constraints->max_uA) {
414c70cb 1071 if (constraints->min_uA == constraints->max_uA)
5751a99f
SW
1072 count += scnprintf(buf + count, len - count, "%d mA ",
1073 constraints->min_uA / 1000);
414c70cb 1074 else
5751a99f
SW
1075 count += scnprintf(buf + count, len - count,
1076 "%d <--> %d mA ",
1077 constraints->min_uA / 1000,
1078 constraints->max_uA / 1000);
8f031b48
MB
1079 }
1080
1081 if (!constraints->min_uA ||
1082 constraints->min_uA != constraints->max_uA) {
1083 ret = _regulator_get_current_limit(rdev);
1084 if (ret > 0)
5751a99f
SW
1085 count += scnprintf(buf + count, len - count,
1086 "at %d mA ", ret / 1000);
414c70cb 1087 }
8f031b48 1088
414c70cb 1089 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
5751a99f 1090 count += scnprintf(buf + count, len - count, "fast ");
414c70cb 1091 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
5751a99f 1092 count += scnprintf(buf + count, len - count, "normal ");
414c70cb 1093 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
5751a99f 1094 count += scnprintf(buf + count, len - count, "idle ");
414c70cb 1095 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
5751a99f 1096 count += scnprintf(buf + count, len - count, "standby");
414c70cb 1097
215b8b05 1098 if (!count)
5751a99f 1099 scnprintf(buf, len, "no parameters");
215b8b05 1100
194dbaef 1101 rdev_dbg(rdev, "%s\n", buf);
4a682922
MB
1102
1103 if ((constraints->min_uV != constraints->max_uV) &&
8a34e979 1104 !regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE))
4a682922
MB
1105 rdev_warn(rdev,
1106 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
414c70cb
LG
1107}
1108
e79055d6 1109static int machine_constraints_voltage(struct regulator_dev *rdev,
1083c393 1110 struct regulation_constraints *constraints)
a5766f11 1111{
272e2315 1112 const struct regulator_ops *ops = rdev->desc->ops;
af5866c9
MB
1113 int ret;
1114
1115 /* do we need to apply the constraint voltage */
1116 if (rdev->constraints->apply_uV &&
fa93fd4e
MB
1117 rdev->constraints->min_uV && rdev->constraints->max_uV) {
1118 int target_min, target_max;
d22b85a1 1119 int current_uV = regulator_get_voltage_rdev(rdev);
84b3a7c9
DA
1120
1121 if (current_uV == -ENOTRECOVERABLE) {
48f1b4ef 1122 /* This regulator can't be read and must be initialized */
84b3a7c9
DA
1123 rdev_info(rdev, "Setting %d-%duV\n",
1124 rdev->constraints->min_uV,
1125 rdev->constraints->max_uV);
1126 _regulator_do_set_voltage(rdev,
1127 rdev->constraints->min_uV,
1128 rdev->constraints->max_uV);
d22b85a1 1129 current_uV = regulator_get_voltage_rdev(rdev);
84b3a7c9
DA
1130 }
1131
064d5cd1 1132 if (current_uV < 0) {
69d58839
NM
1133 rdev_err(rdev,
1134 "failed to get the current voltage(%d)\n",
1135 current_uV);
064d5cd1
AB
1136 return current_uV;
1137 }
fa93fd4e
MB
1138
1139 /*
1140 * If we're below the minimum voltage move up to the
1141 * minimum voltage, if we're above the maximum voltage
1142 * then move down to the maximum.
1143 */
1144 target_min = current_uV;
1145 target_max = current_uV;
1146
1147 if (current_uV < rdev->constraints->min_uV) {
1148 target_min = rdev->constraints->min_uV;
1149 target_max = rdev->constraints->min_uV;
1150 }
1151
1152 if (current_uV > rdev->constraints->max_uV) {
1153 target_min = rdev->constraints->max_uV;
1154 target_max = rdev->constraints->max_uV;
1155 }
1156
1157 if (target_min != current_uV || target_max != current_uV) {
45a91e8f
MB
1158 rdev_info(rdev, "Bringing %duV into %d-%duV\n",
1159 current_uV, target_min, target_max);
064d5cd1 1160 ret = _regulator_do_set_voltage(
fa93fd4e 1161 rdev, target_min, target_max);
064d5cd1
AB
1162 if (ret < 0) {
1163 rdev_err(rdev,
fa93fd4e
MB
1164 "failed to apply %d-%duV constraint(%d)\n",
1165 target_min, target_max, ret);
064d5cd1
AB
1166 return ret;
1167 }
75790251 1168 }
af5866c9 1169 }
e06f5b4f 1170
4367cfdc
DB
1171 /* constrain machine-level voltage specs to fit
1172 * the actual range supported by this regulator.
1173 */
1174 if (ops->list_voltage && rdev->desc->n_voltages) {
1175 int count = rdev->desc->n_voltages;
1176 int i;
1177 int min_uV = INT_MAX;
1178 int max_uV = INT_MIN;
1179 int cmin = constraints->min_uV;
1180 int cmax = constraints->max_uV;
1181
3e590918
MB
1182 /* it's safe to autoconfigure fixed-voltage supplies
1183 and the constraints are used by list_voltage. */
4367cfdc 1184 if (count == 1 && !cmin) {
3e590918 1185 cmin = 1;
4367cfdc 1186 cmax = INT_MAX;
3e590918
MB
1187 constraints->min_uV = cmin;
1188 constraints->max_uV = cmax;
4367cfdc
DB
1189 }
1190
3e2b9abd
MB
1191 /* voltage constraints are optional */
1192 if ((cmin == 0) && (cmax == 0))
e79055d6 1193 return 0;
3e2b9abd 1194
4367cfdc 1195 /* else require explicit machine-level constraints */
3e2b9abd 1196 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
5da84fd9 1197 rdev_err(rdev, "invalid voltage constraints\n");
e79055d6 1198 return -EINVAL;
4367cfdc
DB
1199 }
1200
6d30fc51
CM
1201 /* no need to loop voltages if range is continuous */
1202 if (rdev->desc->continuous_voltage_range)
1203 return 0;
1204
4367cfdc
DB
1205 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
1206 for (i = 0; i < count; i++) {
1207 int value;
1208
1209 value = ops->list_voltage(rdev, i);
1210 if (value <= 0)
1211 continue;
1212
1213 /* maybe adjust [min_uV..max_uV] */
1214 if (value >= cmin && value < min_uV)
1215 min_uV = value;
1216 if (value <= cmax && value > max_uV)
1217 max_uV = value;
1218 }
1219
1220 /* final: [min_uV..max_uV] valid iff constraints valid */
1221 if (max_uV < min_uV) {
fff15bef
MB
1222 rdev_err(rdev,
1223 "unsupportable voltage constraints %u-%uuV\n",
1224 min_uV, max_uV);
e79055d6 1225 return -EINVAL;
4367cfdc
DB
1226 }
1227
1228 /* use regulator's subset of machine constraints */
1229 if (constraints->min_uV < min_uV) {
5da84fd9
JP
1230 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
1231 constraints->min_uV, min_uV);
4367cfdc
DB
1232 constraints->min_uV = min_uV;
1233 }
1234 if (constraints->max_uV > max_uV) {
5da84fd9
JP
1235 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
1236 constraints->max_uV, max_uV);
4367cfdc
DB
1237 constraints->max_uV = max_uV;
1238 }
1239 }
1240
e79055d6
MB
1241 return 0;
1242}
1243
f8c1700d
LD
1244static int machine_constraints_current(struct regulator_dev *rdev,
1245 struct regulation_constraints *constraints)
1246{
272e2315 1247 const struct regulator_ops *ops = rdev->desc->ops;
f8c1700d
LD
1248 int ret;
1249
1250 if (!constraints->min_uA && !constraints->max_uA)
1251 return 0;
1252
1253 if (constraints->min_uA > constraints->max_uA) {
1254 rdev_err(rdev, "Invalid current constraints\n");
1255 return -EINVAL;
1256 }
1257
1258 if (!ops->set_current_limit || !ops->get_current_limit) {
1259 rdev_warn(rdev, "Operation of current configuration missing\n");
1260 return 0;
1261 }
1262
1263 /* Set regulator current in constraints range */
1264 ret = ops->set_current_limit(rdev, constraints->min_uA,
1265 constraints->max_uA);
1266 if (ret < 0) {
1267 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
1268 return ret;
1269 }
1270
1271 return 0;
1272}
1273
30c21971
MSP
1274static int _regulator_do_enable(struct regulator_dev *rdev);
1275
e79055d6
MB
1276/**
1277 * set_machine_constraints - sets regulator constraints
1278 * @rdev: regulator source
1279 * @constraints: constraints to apply
1280 *
1281 * Allows platform initialisation code to define and constrain
1282 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
1283 * Constraints *must* be set by platform code in order for some
1284 * regulator operations to proceed i.e. set_voltage, set_current_limit,
1285 * set_mode.
1286 */
1287static int set_machine_constraints(struct regulator_dev *rdev,
f8c12fe3 1288 const struct regulation_constraints *constraints)
e79055d6
MB
1289{
1290 int ret = 0;
272e2315 1291 const struct regulator_ops *ops = rdev->desc->ops;
e79055d6 1292
9a8f5e07
MB
1293 if (constraints)
1294 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
1295 GFP_KERNEL);
1296 else
1297 rdev->constraints = kzalloc(sizeof(*constraints),
1298 GFP_KERNEL);
f8c12fe3
MB
1299 if (!rdev->constraints)
1300 return -ENOMEM;
af5866c9 1301
f8c12fe3 1302 ret = machine_constraints_voltage(rdev, rdev->constraints);
e79055d6 1303 if (ret != 0)
6333ef46 1304 return ret;
e79055d6 1305
f8c1700d 1306 ret = machine_constraints_current(rdev, rdev->constraints);
e79055d6 1307 if (ret != 0)
6333ef46 1308 return ret;
e79055d6 1309
36e4f839
SB
1310 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1311 ret = ops->set_input_current_limit(rdev,
1312 rdev->constraints->ilim_uA);
1313 if (ret < 0) {
1314 rdev_err(rdev, "failed to set input limit\n");
6333ef46 1315 return ret;
36e4f839
SB
1316 }
1317 }
1318
a5766f11 1319 /* do we need to setup our suspend state */
9a8f5e07 1320 if (rdev->constraints->initial_state) {
f7efad10 1321 ret = suspend_set_state(rdev, rdev->constraints->initial_state);
e06f5b4f 1322 if (ret < 0) {
5da84fd9 1323 rdev_err(rdev, "failed to set suspend state\n");
6333ef46 1324 return ret;
e06f5b4f
MB
1325 }
1326 }
a5766f11 1327
9a8f5e07 1328 if (rdev->constraints->initial_mode) {
a308466c 1329 if (!ops->set_mode) {
5da84fd9 1330 rdev_err(rdev, "no set_mode operation\n");
6333ef46 1331 return -EINVAL;
a308466c
MB
1332 }
1333
f8c12fe3 1334 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
a308466c 1335 if (ret < 0) {
5da84fd9 1336 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
6333ef46 1337 return ret;
a308466c 1338 }
fa94e48e
DA
1339 } else if (rdev->constraints->system_load) {
1340 /*
1341 * We'll only apply the initial system load if an
1342 * initial mode wasn't specified.
1343 */
1344 drms_uA_update(rdev);
a308466c
MB
1345 }
1346
1653ccf4
YSB
1347 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1348 && ops->set_ramp_delay) {
6f0b2c69
YSB
1349 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1350 if (ret < 0) {
1351 rdev_err(rdev, "failed to set ramp_delay\n");
6333ef46 1352 return ret;
6f0b2c69
YSB
1353 }
1354 }
1355
23c779b9
SB
1356 if (rdev->constraints->pull_down && ops->set_pull_down) {
1357 ret = ops->set_pull_down(rdev);
1358 if (ret < 0) {
1359 rdev_err(rdev, "failed to set pull down\n");
6333ef46 1360 return ret;
23c779b9
SB
1361 }
1362 }
1363
57f66b78
SB
1364 if (rdev->constraints->soft_start && ops->set_soft_start) {
1365 ret = ops->set_soft_start(rdev);
1366 if (ret < 0) {
1367 rdev_err(rdev, "failed to set soft start\n");
6333ef46 1368 return ret;
57f66b78
SB
1369 }
1370 }
1371
3a003bae
SB
1372 if (rdev->constraints->over_current_protection
1373 && ops->set_over_current_protection) {
1374 ret = ops->set_over_current_protection(rdev);
1375 if (ret < 0) {
1376 rdev_err(rdev, "failed to set over current protection\n");
6333ef46 1377 return ret;
3a003bae
SB
1378 }
1379 }
1380
670666b9
LD
1381 if (rdev->constraints->active_discharge && ops->set_active_discharge) {
1382 bool ad_state = (rdev->constraints->active_discharge ==
1383 REGULATOR_ACTIVE_DISCHARGE_ENABLE) ? true : false;
1384
1385 ret = ops->set_active_discharge(rdev, ad_state);
1386 if (ret < 0) {
1387 rdev_err(rdev, "failed to set active discharge\n");
1388 return ret;
1389 }
1390 }
1391
2bb16663
OS
1392 /* If the constraints say the regulator should be on at this point
1393 * and we have control then make sure it is enabled.
1394 */
1395 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
05f224ca
DA
1396 if (rdev->supply) {
1397 ret = regulator_enable(rdev->supply);
1398 if (ret < 0) {
1399 _regulator_put(rdev->supply);
1400 rdev->supply = NULL;
1401 return ret;
1402 }
1403 }
1404
2bb16663
OS
1405 ret = _regulator_do_enable(rdev);
1406 if (ret < 0 && ret != -EINVAL) {
1407 rdev_err(rdev, "failed to enable\n");
1408 return ret;
1409 }
089b3f61
PP
1410
1411 if (rdev->constraints->always_on)
1412 rdev->use_count++;
2bb16663
OS
1413 }
1414
a5766f11 1415 print_constraints(rdev);
1a6958e7 1416 return 0;
a5766f11
LG
1417}
1418
1419/**
1420 * set_supply - set regulator supply regulator
69279fb9
MB
1421 * @rdev: regulator name
1422 * @supply_rdev: supply regulator name
a5766f11
LG
1423 *
1424 * Called by platform initialisation code to set the supply regulator for this
1425 * regulator. This ensures that a regulators supply will also be enabled by the
1426 * core if it's child is enabled.
1427 */
1428static int set_supply(struct regulator_dev *rdev,
3801b86a 1429 struct regulator_dev *supply_rdev)
a5766f11
LG
1430{
1431 int err;
1432
3801b86a
MB
1433 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1434
e2c09ae7
JMC
1435 if (!try_module_get(supply_rdev->owner))
1436 return -ENODEV;
1437
3801b86a 1438 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
32c78de8
AL
1439 if (rdev->supply == NULL) {
1440 err = -ENOMEM;
3801b86a 1441 return err;
a5766f11 1442 }
57ad526a 1443 supply_rdev->open_count++;
3801b86a
MB
1444
1445 return 0;
a5766f11
LG
1446}
1447
1448/**
06c63f93 1449 * set_consumer_device_supply - Bind a regulator to a symbolic supply
69279fb9 1450 * @rdev: regulator source
40f9244f 1451 * @consumer_dev_name: dev_name() string for device supply applies to
69279fb9 1452 * @supply: symbolic name for supply
a5766f11
LG
1453 *
1454 * Allows platform initialisation code to map physical regulator
1455 * sources to symbolic names for supplies for use by devices. Devices
1456 * should use these symbolic names to request regulators, avoiding the
1457 * need to provide board-specific regulator names as platform data.
1458 */
1459static int set_consumer_device_supply(struct regulator_dev *rdev,
737f360d
MB
1460 const char *consumer_dev_name,
1461 const char *supply)
a5766f11
LG
1462{
1463 struct regulator_map *node;
9ed2099e 1464 int has_dev;
a5766f11
LG
1465
1466 if (supply == NULL)
1467 return -EINVAL;
1468
9ed2099e
MB
1469 if (consumer_dev_name != NULL)
1470 has_dev = 1;
1471 else
1472 has_dev = 0;
1473
6001e13c 1474 list_for_each_entry(node, &regulator_map_list, list) {
23b5cc2a
JN
1475 if (node->dev_name && consumer_dev_name) {
1476 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1477 continue;
1478 } else if (node->dev_name || consumer_dev_name) {
6001e13c 1479 continue;
23b5cc2a
JN
1480 }
1481
6001e13c
DB
1482 if (strcmp(node->supply, supply) != 0)
1483 continue;
1484
737f360d
MB
1485 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1486 consumer_dev_name,
1487 dev_name(&node->regulator->dev),
1488 node->regulator->desc->name,
1489 supply,
1490 dev_name(&rdev->dev), rdev_get_name(rdev));
6001e13c
DB
1491 return -EBUSY;
1492 }
1493
9ed2099e 1494 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
a5766f11
LG
1495 if (node == NULL)
1496 return -ENOMEM;
1497
1498 node->regulator = rdev;
a5766f11
LG
1499 node->supply = supply;
1500
9ed2099e
MB
1501 if (has_dev) {
1502 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1503 if (node->dev_name == NULL) {
1504 kfree(node);
1505 return -ENOMEM;
1506 }
40f9244f
MB
1507 }
1508
a5766f11
LG
1509 list_add(&node->list, &regulator_map_list);
1510 return 0;
1511}
1512
0f1d747b
MR
1513static void unset_regulator_supplies(struct regulator_dev *rdev)
1514{
1515 struct regulator_map *node, *n;
1516
1517 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1518 if (rdev == node->regulator) {
1519 list_del(&node->list);
40f9244f 1520 kfree(node->dev_name);
0f1d747b 1521 kfree(node);
0f1d747b
MR
1522 }
1523 }
1524}
1525
2d80a91b
RF
1526#ifdef CONFIG_DEBUG_FS
1527static ssize_t constraint_flags_read_file(struct file *file,
1528 char __user *user_buf,
1529 size_t count, loff_t *ppos)
1530{
1531 const struct regulator *regulator = file->private_data;
1532 const struct regulation_constraints *c = regulator->rdev->constraints;
1533 char *buf;
1534 ssize_t ret;
1535
1536 if (!c)
1537 return 0;
1538
1539 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1540 if (!buf)
1541 return -ENOMEM;
1542
1543 ret = snprintf(buf, PAGE_SIZE,
1544 "always_on: %u\n"
1545 "boot_on: %u\n"
1546 "apply_uV: %u\n"
1547 "ramp_disable: %u\n"
1548 "soft_start: %u\n"
1549 "pull_down: %u\n"
1550 "over_current_protection: %u\n",
1551 c->always_on,
1552 c->boot_on,
1553 c->apply_uV,
1554 c->ramp_disable,
1555 c->soft_start,
1556 c->pull_down,
1557 c->over_current_protection);
1558
1559 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1560 kfree(buf);
1561
1562 return ret;
1563}
1564
1565#endif
1566
1567static const struct file_operations constraint_flags_fops = {
1568#ifdef CONFIG_DEBUG_FS
1569 .open = simple_open,
1570 .read = constraint_flags_read_file,
1571 .llseek = default_llseek,
1572#endif
1573};
1574
f5726ae3 1575#define REG_STR_SIZE 64
414c70cb
LG
1576
1577static struct regulator *create_regulator(struct regulator_dev *rdev,
1578 struct device *dev,
1579 const char *supply_name)
1580{
1581 struct regulator *regulator;
1582 char buf[REG_STR_SIZE];
1583 int err, size;
1584
1585 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1586 if (regulator == NULL)
1587 return NULL;
1588
66cf9a7e 1589 regulator_lock(rdev);
414c70cb
LG
1590 regulator->rdev = rdev;
1591 list_add(&regulator->list, &rdev->consumer_list);
1592
1593 if (dev) {
e2c98eaf
SG
1594 regulator->dev = dev;
1595
222cc7b1 1596 /* Add a link to the device sysfs entry */
b7cd1b13
BG
1597 size = snprintf(buf, REG_STR_SIZE, "%s-%s",
1598 dev->kobj.name, supply_name);
414c70cb 1599 if (size >= REG_STR_SIZE)
222cc7b1 1600 goto overflow_err;
414c70cb
LG
1601
1602 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1603 if (regulator->supply_name == NULL)
222cc7b1 1604 goto overflow_err;
414c70cb 1605
ff268b56 1606 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
414c70cb
LG
1607 buf);
1608 if (err) {
ff268b56 1609 rdev_dbg(rdev, "could not add device link %s err %d\n",
5da84fd9 1610 dev->kobj.name, err);
222cc7b1 1611 /* non-fatal */
414c70cb 1612 }
5de70519 1613 } else {
0630b614 1614 regulator->supply_name = kstrdup_const(supply_name, GFP_KERNEL);
5de70519 1615 if (regulator->supply_name == NULL)
222cc7b1 1616 goto overflow_err;
5de70519
MB
1617 }
1618
5de70519
MB
1619 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1620 rdev->debugfs);
24751434 1621 if (!regulator->debugfs) {
ad3a942b 1622 rdev_dbg(rdev, "Failed to create debugfs directory\n");
5de70519
MB
1623 } else {
1624 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1625 &regulator->uA_load);
1626 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
c360a6df 1627 &regulator->voltage[PM_SUSPEND_ON].min_uV);
5de70519 1628 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
c360a6df 1629 &regulator->voltage[PM_SUSPEND_ON].max_uV);
2d80a91b
RF
1630 debugfs_create_file("constraint_flags", 0444,
1631 regulator->debugfs, regulator,
1632 &constraint_flags_fops);
414c70cb 1633 }
5de70519 1634
6492bc1b
MB
1635 /*
1636 * Check now if the regulator is an always on regulator - if
1637 * it is then we don't need to do nearly so much work for
1638 * enable/disable calls.
1639 */
8a34e979 1640 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS) &&
6492bc1b
MB
1641 _regulator_is_enabled(rdev))
1642 regulator->always_on = true;
1643
66cf9a7e 1644 regulator_unlock(rdev);
414c70cb 1645 return regulator;
414c70cb
LG
1646overflow_err:
1647 list_del(&regulator->list);
1648 kfree(regulator);
66cf9a7e 1649 regulator_unlock(rdev);
414c70cb
LG
1650 return NULL;
1651}
1652
31aae2be
MB
1653static int _regulator_get_enable_time(struct regulator_dev *rdev)
1654{
00c877c6
LD
1655 if (rdev->constraints && rdev->constraints->enable_time)
1656 return rdev->constraints->enable_time;
68ce3a44
AL
1657 if (rdev->desc->ops->enable_time)
1658 return rdev->desc->ops->enable_time(rdev);
1659 return rdev->desc->enable_time;
31aae2be
MB
1660}
1661
a06ccd9c
CK
1662static struct regulator_supply_alias *regulator_find_supply_alias(
1663 struct device *dev, const char *supply)
1664{
1665 struct regulator_supply_alias *map;
1666
1667 list_for_each_entry(map, &regulator_supply_alias_list, list)
1668 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1669 return map;
1670
1671 return NULL;
1672}
1673
1674static void regulator_supply_alias(struct device **dev, const char **supply)
1675{
1676 struct regulator_supply_alias *map;
1677
1678 map = regulator_find_supply_alias(*dev, *supply);
1679 if (map) {
1680 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1681 *supply, map->alias_supply,
1682 dev_name(map->alias_dev));
1683 *dev = map->alias_dev;
1684 *supply = map->alias_supply;
1685 }
1686}
1687
85f3b431
TV
1688static int regulator_match(struct device *dev, const void *data)
1689{
1690 struct regulator_dev *r = dev_to_rdev(dev);
1691
1692 return strcmp(rdev_get_name(r), data) == 0;
1693}
1694
1695static struct regulator_dev *regulator_lookup_by_name(const char *name)
1696{
1697 struct device *dev;
1698
1699 dev = class_find_device(&regulator_class, NULL, name, regulator_match);
1700
1701 return dev ? dev_to_rdev(dev) : NULL;
1702}
1703
1704/**
1705 * regulator_dev_lookup - lookup a regulator device.
1706 * @dev: device for regulator "consumer".
1707 * @supply: Supply name or regulator ID.
85f3b431
TV
1708 *
1709 * If successful, returns a struct regulator_dev that corresponds to the name
163478da
DT
1710 * @supply and with the embedded struct device refcount incremented by one.
1711 * The refcount must be dropped by calling put_device().
1712 * On failure one of the following ERR-PTR-encoded values is returned:
1713 * -ENODEV if lookup fails permanently, -EPROBE_DEFER if lookup could succeed
1714 * in the future.
85f3b431 1715 */
69511a45 1716static struct regulator_dev *regulator_dev_lookup(struct device *dev,
163478da 1717 const char *supply)
69511a45 1718{
06217197 1719 struct regulator_dev *r = NULL;
69511a45 1720 struct device_node *node;
576ca436
MB
1721 struct regulator_map *map;
1722 const char *devname = NULL;
69511a45 1723
a06ccd9c
CK
1724 regulator_supply_alias(&dev, &supply);
1725
69511a45
RN
1726 /* first do a dt based lookup */
1727 if (dev && dev->of_node) {
1728 node = of_get_regulator(dev, supply);
6d191a5f 1729 if (node) {
85f3b431
TV
1730 r = of_find_regulator_by_node(node);
1731 if (r)
1732 return r;
163478da 1733
6d191a5f 1734 /*
163478da
DT
1735 * We have a node, but there is no device.
1736 * assume it has not registered yet.
6d191a5f 1737 */
163478da 1738 return ERR_PTR(-EPROBE_DEFER);
6d191a5f 1739 }
69511a45
RN
1740 }
1741
1742 /* if not found, try doing it non-dt way */
576ca436
MB
1743 if (dev)
1744 devname = dev_name(dev);
1745
85f3b431 1746 mutex_lock(&regulator_list_mutex);
576ca436
MB
1747 list_for_each_entry(map, &regulator_map_list, list) {
1748 /* If the mapping has a device set up it must match */
1749 if (map->dev_name &&
1750 (!devname || strcmp(map->dev_name, devname)))
1751 continue;
1752
85f3b431
TV
1753 if (strcmp(map->supply, supply) == 0 &&
1754 get_device(&map->regulator->dev)) {
163478da
DT
1755 r = map->regulator;
1756 break;
85f3b431 1757 }
576ca436 1758 }
85f3b431 1759 mutex_unlock(&regulator_list_mutex);
576ca436 1760
06217197
CK
1761 if (r)
1762 return r;
1763
1764 r = regulator_lookup_by_name(supply);
163478da
DT
1765 if (r)
1766 return r;
1767
1768 return ERR_PTR(-ENODEV);
69511a45
RN
1769}
1770
6261b06d
BA
1771static int regulator_resolve_supply(struct regulator_dev *rdev)
1772{
1773 struct regulator_dev *r;
1774 struct device *dev = rdev->dev.parent;
1775 int ret;
1776
48f1b4ef 1777 /* No supply to resolve? */
6261b06d
BA
1778 if (!rdev->supply_name)
1779 return 0;
1780
1781 /* Supply already resolved? */
1782 if (rdev->supply)
1783 return 0;
1784
163478da
DT
1785 r = regulator_dev_lookup(dev, rdev->supply_name);
1786 if (IS_ERR(r)) {
1787 ret = PTR_ERR(r);
1788
06423121
MB
1789 /* Did the lookup explicitly defer for us? */
1790 if (ret == -EPROBE_DEFER)
1791 return ret;
1792
9f7e25ed
MB
1793 if (have_full_constraints()) {
1794 r = dummy_regulator_rdev;
85f3b431 1795 get_device(&r->dev);
9f7e25ed
MB
1796 } else {
1797 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1798 rdev->supply_name, rdev->desc->name);
1799 return -EPROBE_DEFER;
1800 }
6261b06d
BA
1801 }
1802
66d228a2
JH
1803 /*
1804 * If the supply's parent device is not the same as the
1805 * regulator's parent device, then ensure the parent device
1806 * is bound before we resolve the supply, in case the parent
1807 * device get probe deferred and unregisters the supply.
1808 */
1809 if (r->dev.parent && r->dev.parent != rdev->dev.parent) {
1810 if (!device_is_bound(r->dev.parent)) {
1811 put_device(&r->dev);
1812 return -EPROBE_DEFER;
1813 }
1814 }
1815
6261b06d
BA
1816 /* Recursively resolve the supply of the supply */
1817 ret = regulator_resolve_supply(r);
85f3b431
TV
1818 if (ret < 0) {
1819 put_device(&r->dev);
6261b06d 1820 return ret;
85f3b431 1821 }
6261b06d
BA
1822
1823 ret = set_supply(rdev, r);
85f3b431
TV
1824 if (ret < 0) {
1825 put_device(&r->dev);
6261b06d 1826 return ret;
85f3b431 1827 }
6261b06d 1828
05f224ca
DA
1829 /*
1830 * In set_machine_constraints() we may have turned this regulator on
1831 * but we couldn't propagate to the supply if it hadn't been resolved
1832 * yet. Do it now.
1833 */
1834 if (rdev->use_count) {
6261b06d 1835 ret = regulator_enable(rdev->supply);
36a1f1b6 1836 if (ret < 0) {
9f8df6ad 1837 _regulator_put(rdev->supply);
8e5356a7 1838 rdev->supply = NULL;
6261b06d 1839 return ret;
36a1f1b6 1840 }
6261b06d
BA
1841 }
1842
1843 return 0;
1844}
1845
5ffbd136 1846/* Internal regulator request function */
a8bd42a9
DT
1847struct regulator *_regulator_get(struct device *dev, const char *id,
1848 enum regulator_get_type get_type)
414c70cb
LG
1849{
1850 struct regulator_dev *rdev;
7d245afa 1851 struct regulator *regulator;
b59b6544 1852 struct device_link *link;
317b5684 1853 int ret;
414c70cb 1854
a8bd42a9
DT
1855 if (get_type >= MAX_GET_TYPE) {
1856 dev_err(dev, "invalid type %d in %s\n", get_type, __func__);
1857 return ERR_PTR(-EINVAL);
1858 }
1859
414c70cb 1860 if (id == NULL) {
5da84fd9 1861 pr_err("get() with no identifier\n");
043c998f 1862 return ERR_PTR(-EINVAL);
414c70cb
LG
1863 }
1864
163478da 1865 rdev = regulator_dev_lookup(dev, id);
a4d7641f
DT
1866 if (IS_ERR(rdev)) {
1867 ret = PTR_ERR(rdev);
1e4b545c 1868
a4d7641f
DT
1869 /*
1870 * If regulator_dev_lookup() fails with error other
1871 * than -ENODEV our job here is done, we simply return it.
1872 */
1873 if (ret != -ENODEV)
1874 return ERR_PTR(ret);
34abbd68 1875
a4d7641f
DT
1876 if (!have_full_constraints()) {
1877 dev_warn(dev,
1878 "incomplete constraints, dummy supplies not allowed\n");
1879 return ERR_PTR(-ENODEV);
1880 }
4ddfebd3 1881
a4d7641f
DT
1882 switch (get_type) {
1883 case NORMAL_GET:
1884 /*
1885 * Assume that a regulator is physically present and
1886 * enabled, even if it isn't hooked up, and just
1887 * provide a dummy.
1888 */
6e5505cf 1889 dev_warn(dev, "supply %s not found, using dummy regulator\n", id);
a4d7641f
DT
1890 rdev = dummy_regulator_rdev;
1891 get_device(&rdev->dev);
1892 break;
34abbd68 1893
a4d7641f
DT
1894 case EXCLUSIVE_GET:
1895 dev_warn(dev,
1896 "dummy supplies not allowed for exclusive requests\n");
1897 /* fall through */
34abbd68 1898
a4d7641f
DT
1899 default:
1900 return ERR_PTR(-ENODEV);
1901 }
34abbd68 1902 }
34abbd68 1903
5ffbd136
MB
1904 if (rdev->exclusive) {
1905 regulator = ERR_PTR(-EPERM);
85f3b431
TV
1906 put_device(&rdev->dev);
1907 return regulator;
5ffbd136
MB
1908 }
1909
a8bd42a9 1910 if (get_type == EXCLUSIVE_GET && rdev->open_count) {
5ffbd136 1911 regulator = ERR_PTR(-EBUSY);
85f3b431
TV
1912 put_device(&rdev->dev);
1913 return regulator;
5ffbd136
MB
1914 }
1915
79d6f049
DO
1916 mutex_lock(&regulator_list_mutex);
1917 ret = (rdev->coupling_desc.n_resolved != rdev->coupling_desc.n_coupled);
1918 mutex_unlock(&regulator_list_mutex);
1919
1920 if (ret != 0) {
1921 regulator = ERR_PTR(-EPROBE_DEFER);
1922 put_device(&rdev->dev);
1923 return regulator;
1924 }
1925
6261b06d
BA
1926 ret = regulator_resolve_supply(rdev);
1927 if (ret < 0) {
1928 regulator = ERR_PTR(ret);
85f3b431
TV
1929 put_device(&rdev->dev);
1930 return regulator;
6261b06d
BA
1931 }
1932
85f3b431 1933 if (!try_module_get(rdev->owner)) {
7d245afa 1934 regulator = ERR_PTR(-EPROBE_DEFER);
85f3b431
TV
1935 put_device(&rdev->dev);
1936 return regulator;
1937 }
a5766f11 1938
414c70cb
LG
1939 regulator = create_regulator(rdev, dev, id);
1940 if (regulator == NULL) {
1941 regulator = ERR_PTR(-ENOMEM);
1942 module_put(rdev->owner);
4affd79a 1943 put_device(&rdev->dev);
85f3b431 1944 return regulator;
414c70cb
LG
1945 }
1946
5ffbd136 1947 rdev->open_count++;
a8bd42a9 1948 if (get_type == EXCLUSIVE_GET) {
5ffbd136
MB
1949 rdev->exclusive = 1;
1950
1951 ret = _regulator_is_enabled(rdev);
1952 if (ret > 0)
1953 rdev->use_count = 1;
1954 else
1955 rdev->use_count = 0;
1956 }
1957
b59b6544
SK
1958 link = device_link_add(dev, &rdev->dev, DL_FLAG_STATELESS);
1959 if (!IS_ERR_OR_NULL(link))
1960 regulator->device_link = true;
ed1ae2dd 1961
414c70cb
LG
1962 return regulator;
1963}
5ffbd136
MB
1964
1965/**
1966 * regulator_get - lookup and obtain a reference to a regulator.
1967 * @dev: device for regulator "consumer"
1968 * @id: Supply name or regulator ID.
1969 *
1970 * Returns a struct regulator corresponding to the regulator producer,
1971 * or IS_ERR() condition containing errno.
1972 *
1973 * Use of supply names configured via regulator_set_device_supply() is
1974 * strongly encouraged. It is recommended that the supply name used
1975 * should match the name used for the supply and/or the relevant
1976 * device pins in the datasheet.
1977 */
1978struct regulator *regulator_get(struct device *dev, const char *id)
1979{
a8bd42a9 1980 return _regulator_get(dev, id, NORMAL_GET);
5ffbd136 1981}
414c70cb
LG
1982EXPORT_SYMBOL_GPL(regulator_get);
1983
5ffbd136
MB
1984/**
1985 * regulator_get_exclusive - obtain exclusive access to a regulator.
1986 * @dev: device for regulator "consumer"
1987 * @id: Supply name or regulator ID.
1988 *
1989 * Returns a struct regulator corresponding to the regulator producer,
1990 * or IS_ERR() condition containing errno. Other consumers will be
69c3f723
SB
1991 * unable to obtain this regulator while this reference is held and the
1992 * use count for the regulator will be initialised to reflect the current
1993 * state of the regulator.
5ffbd136
MB
1994 *
1995 * This is intended for use by consumers which cannot tolerate shared
1996 * use of the regulator such as those which need to force the
1997 * regulator off for correct operation of the hardware they are
1998 * controlling.
1999 *
2000 * Use of supply names configured via regulator_set_device_supply() is
2001 * strongly encouraged. It is recommended that the supply name used
2002 * should match the name used for the supply and/or the relevant
2003 * device pins in the datasheet.
2004 */
2005struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
2006{
a8bd42a9 2007 return _regulator_get(dev, id, EXCLUSIVE_GET);
5ffbd136
MB
2008}
2009EXPORT_SYMBOL_GPL(regulator_get_exclusive);
2010
de1dd9fd
MB
2011/**
2012 * regulator_get_optional - obtain optional access to a regulator.
2013 * @dev: device for regulator "consumer"
2014 * @id: Supply name or regulator ID.
2015 *
2016 * Returns a struct regulator corresponding to the regulator producer,
69c3f723 2017 * or IS_ERR() condition containing errno.
de1dd9fd
MB
2018 *
2019 * This is intended for use by consumers for devices which can have
2020 * some supplies unconnected in normal use, such as some MMC devices.
2021 * It can allow the regulator core to provide stub supplies for other
2022 * supplies requested using normal regulator_get() calls without
2023 * disrupting the operation of drivers that can handle absent
2024 * supplies.
2025 *
2026 * Use of supply names configured via regulator_set_device_supply() is
2027 * strongly encouraged. It is recommended that the supply name used
2028 * should match the name used for the supply and/or the relevant
2029 * device pins in the datasheet.
2030 */
2031struct regulator *regulator_get_optional(struct device *dev, const char *id)
2032{
a8bd42a9 2033 return _regulator_get(dev, id, OPTIONAL_GET);
de1dd9fd
MB
2034}
2035EXPORT_SYMBOL_GPL(regulator_get_optional);
2036
83b0302d 2037/* regulator_list_mutex lock held by regulator_put() */
23ff2f0f 2038static void _regulator_put(struct regulator *regulator)
414c70cb
LG
2039{
2040 struct regulator_dev *rdev;
2041
93576842 2042 if (IS_ERR_OR_NULL(regulator))
414c70cb
LG
2043 return;
2044
70cfef26
KK
2045 lockdep_assert_held_once(&regulator_list_mutex);
2046
5451781d
DA
2047 /* Docs say you must disable before calling regulator_put() */
2048 WARN_ON(regulator->enable_count);
2049
414c70cb
LG
2050 rdev = regulator->rdev;
2051
5de70519 2052 debugfs_remove_recursive(regulator->debugfs);
5de70519 2053
ed1ae2dd 2054 if (regulator->dev) {
b59b6544
SK
2055 if (regulator->device_link)
2056 device_link_remove(regulator->dev, &rdev->dev);
ed1ae2dd 2057
2058 /* remove any sysfs entries */
414c70cb 2059 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
ed1ae2dd 2060 }
2061
66cf9a7e 2062 regulator_lock(rdev);
414c70cb 2063 list_del(&regulator->list);
414c70cb 2064
5ffbd136
MB
2065 rdev->open_count--;
2066 rdev->exclusive = 0;
66cf9a7e 2067 regulator_unlock(rdev);
5ffbd136 2068
0630b614 2069 kfree_const(regulator->supply_name);
1768514e
MB
2070 kfree(regulator);
2071
414c70cb 2072 module_put(rdev->owner);
4affd79a 2073 put_device(&rdev->dev);
23ff2f0f
CK
2074}
2075
2076/**
2077 * regulator_put - "free" the regulator source
2078 * @regulator: regulator source
2079 *
2080 * Note: drivers must ensure that all regulator_enable calls made on this
2081 * regulator source are balanced by regulator_disable calls prior to calling
2082 * this function.
2083 */
2084void regulator_put(struct regulator *regulator)
2085{
2086 mutex_lock(&regulator_list_mutex);
2087 _regulator_put(regulator);
414c70cb
LG
2088 mutex_unlock(&regulator_list_mutex);
2089}
2090EXPORT_SYMBOL_GPL(regulator_put);
2091
a06ccd9c
CK
2092/**
2093 * regulator_register_supply_alias - Provide device alias for supply lookup
2094 *
2095 * @dev: device that will be given as the regulator "consumer"
2096 * @id: Supply name or regulator ID
2097 * @alias_dev: device that should be used to lookup the supply
2098 * @alias_id: Supply name or regulator ID that should be used to lookup the
2099 * supply
2100 *
2101 * All lookups for id on dev will instead be conducted for alias_id on
2102 * alias_dev.
2103 */
2104int regulator_register_supply_alias(struct device *dev, const char *id,
2105 struct device *alias_dev,
2106 const char *alias_id)
2107{
2108 struct regulator_supply_alias *map;
2109
2110 map = regulator_find_supply_alias(dev, id);
2111 if (map)
2112 return -EEXIST;
2113
2114 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
2115 if (!map)
2116 return -ENOMEM;
2117
2118 map->src_dev = dev;
2119 map->src_supply = id;
2120 map->alias_dev = alias_dev;
2121 map->alias_supply = alias_id;
2122
2123 list_add(&map->list, &regulator_supply_alias_list);
2124
2125 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
2126 id, dev_name(dev), alias_id, dev_name(alias_dev));
2127
2128 return 0;
2129}
2130EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
2131
2132/**
2133 * regulator_unregister_supply_alias - Remove device alias
2134 *
2135 * @dev: device that will be given as the regulator "consumer"
2136 * @id: Supply name or regulator ID
2137 *
2138 * Remove a lookup alias if one exists for id on dev.
2139 */
2140void regulator_unregister_supply_alias(struct device *dev, const char *id)
2141{
2142 struct regulator_supply_alias *map;
2143
2144 map = regulator_find_supply_alias(dev, id);
2145 if (map) {
2146 list_del(&map->list);
2147 kfree(map);
2148 }
2149}
2150EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
2151
2152/**
2153 * regulator_bulk_register_supply_alias - register multiple aliases
2154 *
2155 * @dev: device that will be given as the regulator "consumer"
2156 * @id: List of supply names or regulator IDs
2157 * @alias_dev: device that should be used to lookup the supply
2158 * @alias_id: List of supply names or regulator IDs that should be used to
2159 * lookup the supply
2160 * @num_id: Number of aliases to register
2161 *
2162 * @return 0 on success, an errno on failure.
2163 *
2164 * This helper function allows drivers to register several supply
2165 * aliases in one operation. If any of the aliases cannot be
2166 * registered any aliases that were registered will be removed
2167 * before returning to the caller.
2168 */
9f8c0fe9
LJ
2169int regulator_bulk_register_supply_alias(struct device *dev,
2170 const char *const *id,
a06ccd9c 2171 struct device *alias_dev,
9f8c0fe9 2172 const char *const *alias_id,
a06ccd9c
CK
2173 int num_id)
2174{
2175 int i;
2176 int ret;
2177
2178 for (i = 0; i < num_id; ++i) {
2179 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
2180 alias_id[i]);
2181 if (ret < 0)
2182 goto err;
2183 }
2184
2185 return 0;
2186
2187err:
2188 dev_err(dev,
2189 "Failed to create supply alias %s,%s -> %s,%s\n",
2190 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
2191
2192 while (--i >= 0)
2193 regulator_unregister_supply_alias(dev, id[i]);
2194
2195 return ret;
2196}
2197EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
2198
2199/**
2200 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
2201 *
2202 * @dev: device that will be given as the regulator "consumer"
2203 * @id: List of supply names or regulator IDs
2204 * @num_id: Number of aliases to unregister
2205 *
2206 * This helper function allows drivers to unregister several supply
2207 * aliases in one operation.
2208 */
2209void regulator_bulk_unregister_supply_alias(struct device *dev,
9f8c0fe9 2210 const char *const *id,
a06ccd9c
CK
2211 int num_id)
2212{
2213 int i;
2214
2215 for (i = 0; i < num_id; ++i)
2216 regulator_unregister_supply_alias(dev, id[i]);
2217}
2218EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
2219
2220
f19b00da
KM
2221/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
2222static int regulator_ena_gpio_request(struct regulator_dev *rdev,
2223 const struct regulator_config *config)
2224{
2225 struct regulator_enable_gpio *pin;
778b28b4 2226 struct gpio_desc *gpiod;
f19b00da 2227
541d052d 2228 gpiod = config->ena_gpiod;
778b28b4 2229
f19b00da 2230 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
778b28b4 2231 if (pin->gpiod == gpiod) {
541d052d 2232 rdev_dbg(rdev, "GPIO is already used\n");
f19b00da
KM
2233 goto update_ena_gpio_to_rdev;
2234 }
2235 }
2236
f19b00da 2237 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
541d052d 2238 if (pin == NULL)
f19b00da 2239 return -ENOMEM;
f19b00da 2240
778b28b4 2241 pin->gpiod = gpiod;
f19b00da
KM
2242 list_add(&pin->list, &regulator_ena_gpio_list);
2243
2244update_ena_gpio_to_rdev:
2245 pin->request_count++;
2246 rdev->ena_pin = pin;
2247 return 0;
2248}
2249
2250static void regulator_ena_gpio_free(struct regulator_dev *rdev)
2251{
2252 struct regulator_enable_gpio *pin, *n;
2253
2254 if (!rdev->ena_pin)
2255 return;
2256
2257 /* Free the GPIO only in case of no use */
2258 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
778b28b4 2259 if (pin->gpiod == rdev->ena_pin->gpiod) {
f19b00da
KM
2260 if (pin->request_count <= 1) {
2261 pin->request_count = 0;
78927aa4 2262 gpiod_put(pin->gpiod);
f19b00da
KM
2263 list_del(&pin->list);
2264 kfree(pin);
60a2362f
SWK
2265 rdev->ena_pin = NULL;
2266 return;
f19b00da
KM
2267 } else {
2268 pin->request_count--;
2269 }
2270 }
2271 }
2272}
2273
967cfb18 2274/**
31d6eebf
RD
2275 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
2276 * @rdev: regulator_dev structure
2277 * @enable: enable GPIO at initial use?
2278 *
967cfb18
KM
2279 * GPIO is enabled in case of initial use. (enable_count is 0)
2280 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
2281 */
2282static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
2283{
2284 struct regulator_enable_gpio *pin = rdev->ena_pin;
2285
2286 if (!pin)
2287 return -EINVAL;
2288
2289 if (enable) {
2290 /* Enable GPIO at initial use */
2291 if (pin->enable_count == 0)
01dc79cd 2292 gpiod_set_value_cansleep(pin->gpiod, 1);
967cfb18
KM
2293
2294 pin->enable_count++;
2295 } else {
2296 if (pin->enable_count > 1) {
2297 pin->enable_count--;
2298 return 0;
2299 }
2300
2301 /* Disable GPIO if not used */
2302 if (pin->enable_count <= 1) {
01dc79cd 2303 gpiod_set_value_cansleep(pin->gpiod, 0);
967cfb18
KM
2304 pin->enable_count = 0;
2305 }
2306 }
2307
2308 return 0;
2309}
2310
79fd1141
GX
2311/**
2312 * _regulator_enable_delay - a delay helper function
2313 * @delay: time to delay in microseconds
2314 *
2315 * Delay for the requested amount of time as per the guidelines in:
2316 *
458f69ef 2317 * Documentation/timers/timers-howto.rst
79fd1141
GX
2318 *
2319 * The assumption here is that regulators will never be enabled in
2320 * atomic context and therefore sleeping functions can be used.
2321 */
2322static void _regulator_enable_delay(unsigned int delay)
2323{
2324 unsigned int ms = delay / 1000;
2325 unsigned int us = delay % 1000;
2326
2327 if (ms > 0) {
2328 /*
2329 * For small enough values, handle super-millisecond
2330 * delays in the usleep_range() call below.
2331 */
2332 if (ms < 20)
2333 us += ms * 1000;
2334 else
2335 msleep(ms);
2336 }
2337
2338 /*
2339 * Give the scheduler some room to coalesce with any other
2340 * wakeup sources. For delays shorter than 10 us, don't even
2341 * bother setting up high-resolution timers and just busy-
2342 * loop.
2343 */
2344 if (us >= 10)
2345 usleep_range(us, us + 100);
2346 else
2347 udelay(us);
2348}
2349
5c5659d0
MB
2350static int _regulator_do_enable(struct regulator_dev *rdev)
2351{
2352 int ret, delay;
2353
2354 /* Query before enabling in case configuration dependent. */
2355 ret = _regulator_get_enable_time(rdev);
2356 if (ret >= 0) {
2357 delay = ret;
2358 } else {
2359 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
2360 delay = 0;
2361 }
2362
2363 trace_regulator_enable(rdev_get_name(rdev));
2364
871f5650
GX
2365 if (rdev->desc->off_on_delay) {
2366 /* if needed, keep a distance of off_on_delay from last time
2367 * this regulator was disabled.
2368 */
2369 unsigned long start_jiffy = jiffies;
2370 unsigned long intended, max_delay, remaining;
2371
2372 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
2373 intended = rdev->last_off_jiffy + max_delay;
2374
2375 if (time_before(start_jiffy, intended)) {
2376 /* calc remaining jiffies to deal with one-time
2377 * timer wrapping.
2378 * in case of multiple timer wrapping, either it can be
2379 * detected by out-of-range remaining, or it cannot be
48f1b4ef 2380 * detected and we get a penalty of
871f5650
GX
2381 * _regulator_enable_delay().
2382 */
2383 remaining = intended - start_jiffy;
2384 if (remaining <= max_delay)
2385 _regulator_enable_delay(
2386 jiffies_to_usecs(remaining));
2387 }
2388 }
2389
967cfb18 2390 if (rdev->ena_pin) {
29d62ec5
DA
2391 if (!rdev->ena_gpio_state) {
2392 ret = regulator_ena_gpio_ctrl(rdev, true);
2393 if (ret < 0)
2394 return ret;
2395 rdev->ena_gpio_state = 1;
2396 }
65f73508 2397 } else if (rdev->desc->ops->enable) {
5c5659d0
MB
2398 ret = rdev->desc->ops->enable(rdev);
2399 if (ret < 0)
2400 return ret;
2401 } else {
2402 return -EINVAL;
2403 }
2404
2405 /* Allow the regulator to ramp; it would be useful to extend
2406 * this for bulk operations so that the regulators can ramp
2407 * together. */
2408 trace_regulator_enable_delay(rdev_get_name(rdev));
2409
79fd1141 2410 _regulator_enable_delay(delay);
5c5659d0
MB
2411
2412 trace_regulator_enable_complete(rdev_get_name(rdev));
2413
2414 return 0;
2415}
2416
5451781d
DA
2417/**
2418 * _regulator_handle_consumer_enable - handle that a consumer enabled
2419 * @regulator: regulator source
2420 *
2421 * Some things on a regulator consumer (like the contribution towards total
2422 * load on the regulator) only have an effect when the consumer wants the
2423 * regulator enabled. Explained in example with two consumers of the same
2424 * regulator:
2425 * consumer A: set_load(100); => total load = 0
2426 * consumer A: regulator_enable(); => total load = 100
2427 * consumer B: set_load(1000); => total load = 100
2428 * consumer B: regulator_enable(); => total load = 1100
2429 * consumer A: regulator_disable(); => total_load = 1000
2430 *
2431 * This function (together with _regulator_handle_consumer_disable) is
2432 * responsible for keeping track of the refcount for a given regulator consumer
2433 * and applying / unapplying these things.
2434 *
2435 * Returns 0 upon no error; -error upon error.
2436 */
2437static int _regulator_handle_consumer_enable(struct regulator *regulator)
2438{
2439 struct regulator_dev *rdev = regulator->rdev;
2440
2441 lockdep_assert_held_once(&rdev->mutex.base);
2442
2443 regulator->enable_count++;
2444 if (regulator->uA_load && regulator->enable_count == 1)
2445 return drms_uA_update(rdev);
2446
2447 return 0;
2448}
2449
2450/**
2451 * _regulator_handle_consumer_disable - handle that a consumer disabled
2452 * @regulator: regulator source
2453 *
2454 * The opposite of _regulator_handle_consumer_enable().
2455 *
2456 * Returns 0 upon no error; -error upon error.
2457 */
2458static int _regulator_handle_consumer_disable(struct regulator *regulator)
2459{
2460 struct regulator_dev *rdev = regulator->rdev;
2461
2462 lockdep_assert_held_once(&rdev->mutex.base);
2463
2464 if (!regulator->enable_count) {
2465 rdev_err(rdev, "Underflow of regulator enable count\n");
2466 return -EINVAL;
2467 }
2468
2469 regulator->enable_count--;
2470 if (regulator->uA_load && regulator->enable_count == 0)
2471 return drms_uA_update(rdev);
2472
2473 return 0;
2474}
2475
414c70cb 2476/* locks held by regulator_enable() */
5451781d 2477static int _regulator_enable(struct regulator *regulator)
414c70cb 2478{
5451781d 2479 struct regulator_dev *rdev = regulator->rdev;
5c5659d0 2480 int ret;
414c70cb 2481
f8702f9e
DO
2482 lockdep_assert_held_once(&rdev->mutex.base);
2483
1fc12b05 2484 if (rdev->use_count == 0 && rdev->supply) {
5451781d 2485 ret = _regulator_enable(rdev->supply);
f8702f9e
DO
2486 if (ret < 0)
2487 return ret;
2488 }
2489
2490 /* balance only if there are regulators coupled */
2491 if (rdev->coupling_desc.n_coupled > 1) {
2492 ret = regulator_balance_voltage(rdev, PM_SUSPEND_ON);
2493 if (ret < 0)
2494 goto err_disable_supply;
2495 }
70cfef26 2496
5451781d
DA
2497 ret = _regulator_handle_consumer_enable(regulator);
2498 if (ret < 0)
2499 goto err_disable_supply;
414c70cb 2500
9a2372fa
MB
2501 if (rdev->use_count == 0) {
2502 /* The regulator may on if it's not switchable or left on */
2503 ret = _regulator_is_enabled(rdev);
2504 if (ret == -EINVAL || ret == 0) {
8a34e979 2505 if (!regulator_ops_is_valid(rdev,
f8702f9e
DO
2506 REGULATOR_CHANGE_STATUS)) {
2507 ret = -EPERM;
5451781d 2508 goto err_consumer_disable;
f8702f9e 2509 }
9a2372fa 2510
5c5659d0 2511 ret = _regulator_do_enable(rdev);
31aae2be 2512 if (ret < 0)
5451781d 2513 goto err_consumer_disable;
31aae2be 2514
264b88c9
HG
2515 _notifier_call_chain(rdev, REGULATOR_EVENT_ENABLE,
2516 NULL);
a7433cff 2517 } else if (ret < 0) {
5da84fd9 2518 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
5451781d 2519 goto err_consumer_disable;
414c70cb 2520 }
a7433cff 2521 /* Fallthrough on positive return values - already enabled */
414c70cb
LG
2522 }
2523
9a2372fa
MB
2524 rdev->use_count++;
2525
2526 return 0;
f8702f9e 2527
5451781d
DA
2528err_consumer_disable:
2529 _regulator_handle_consumer_disable(regulator);
2530
f8702f9e 2531err_disable_supply:
1fc12b05 2532 if (rdev->use_count == 0 && rdev->supply)
5451781d 2533 _regulator_disable(rdev->supply);
f8702f9e
DO
2534
2535 return ret;
414c70cb
LG
2536}
2537
2538/**
2539 * regulator_enable - enable regulator output
2540 * @regulator: regulator source
2541 *
cf7bbcdf
MB
2542 * Request that the regulator be enabled with the regulator output at
2543 * the predefined voltage or current value. Calls to regulator_enable()
2544 * must be balanced with calls to regulator_disable().
2545 *
414c70cb 2546 * NOTE: the output value can be set by other drivers, boot loader or may be
cf7bbcdf 2547 * hardwired in the regulator.
414c70cb
LG
2548 */
2549int regulator_enable(struct regulator *regulator)
2550{
412aec61 2551 struct regulator_dev *rdev = regulator->rdev;
f8702f9e 2552 struct ww_acquire_ctx ww_ctx;
5451781d 2553 int ret;
6492bc1b 2554
f8702f9e 2555 regulator_lock_dependent(rdev, &ww_ctx);
5451781d 2556 ret = _regulator_enable(regulator);
f8702f9e 2557 regulator_unlock_dependent(rdev, &ww_ctx);
3801b86a 2558
414c70cb
LG
2559 return ret;
2560}
2561EXPORT_SYMBOL_GPL(regulator_enable);
2562
5c5659d0
MB
2563static int _regulator_do_disable(struct regulator_dev *rdev)
2564{
2565 int ret;
2566
2567 trace_regulator_disable(rdev_get_name(rdev));
2568
967cfb18 2569 if (rdev->ena_pin) {
29d62ec5
DA
2570 if (rdev->ena_gpio_state) {
2571 ret = regulator_ena_gpio_ctrl(rdev, false);
2572 if (ret < 0)
2573 return ret;
2574 rdev->ena_gpio_state = 0;
2575 }
5c5659d0
MB
2576
2577 } else if (rdev->desc->ops->disable) {
2578 ret = rdev->desc->ops->disable(rdev);
2579 if (ret != 0)
2580 return ret;
2581 }
2582
871f5650
GX
2583 /* cares about last_off_jiffy only if off_on_delay is required by
2584 * device.
2585 */
2586 if (rdev->desc->off_on_delay)
2587 rdev->last_off_jiffy = jiffies;
2588
5c5659d0
MB
2589 trace_regulator_disable_complete(rdev_get_name(rdev));
2590
5c5659d0
MB
2591 return 0;
2592}
2593
414c70cb 2594/* locks held by regulator_disable() */
5451781d 2595static int _regulator_disable(struct regulator *regulator)
414c70cb 2596{
5451781d 2597 struct regulator_dev *rdev = regulator->rdev;
414c70cb
LG
2598 int ret = 0;
2599
f8702f9e 2600 lockdep_assert_held_once(&rdev->mutex.base);
70cfef26 2601
cd94b505 2602 if (WARN(rdev->use_count <= 0,
43e7ee33 2603 "unbalanced disables for %s\n", rdev_get_name(rdev)))
cd94b505
DB
2604 return -EIO;
2605
414c70cb 2606 /* are we the last user and permitted to disable ? */
60ef66fc
MB
2607 if (rdev->use_count == 1 &&
2608 (rdev->constraints && !rdev->constraints->always_on)) {
414c70cb
LG
2609
2610 /* we are last user */
8a34e979 2611 if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS)) {
a1c8a551
RF
2612 ret = _notifier_call_chain(rdev,
2613 REGULATOR_EVENT_PRE_DISABLE,
2614 NULL);
2615 if (ret & NOTIFY_STOP_MASK)
2616 return -EINVAL;
2617
5c5659d0 2618 ret = _regulator_do_disable(rdev);
414c70cb 2619 if (ret < 0) {
5da84fd9 2620 rdev_err(rdev, "failed to disable\n");
a1c8a551
RF
2621 _notifier_call_chain(rdev,
2622 REGULATOR_EVENT_ABORT_DISABLE,
2623 NULL);
414c70cb
LG
2624 return ret;
2625 }
66fda75f
MSP
2626 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2627 NULL);
414c70cb
LG
2628 }
2629
414c70cb
LG
2630 rdev->use_count = 0;
2631 } else if (rdev->use_count > 1) {
414c70cb
LG
2632 rdev->use_count--;
2633 }
3801b86a 2634
5451781d
DA
2635 if (ret == 0)
2636 ret = _regulator_handle_consumer_disable(regulator);
2637
f8702f9e
DO
2638 if (ret == 0 && rdev->coupling_desc.n_coupled > 1)
2639 ret = regulator_balance_voltage(rdev, PM_SUSPEND_ON);
2640
1fc12b05 2641 if (ret == 0 && rdev->use_count == 0 && rdev->supply)
5451781d 2642 ret = _regulator_disable(rdev->supply);
f8702f9e 2643
414c70cb
LG
2644 return ret;
2645}
2646
2647/**
2648 * regulator_disable - disable regulator output
2649 * @regulator: regulator source
2650 *
cf7bbcdf
MB
2651 * Disable the regulator output voltage or current. Calls to
2652 * regulator_enable() must be balanced with calls to
2653 * regulator_disable().
69279fb9 2654 *
414c70cb 2655 * NOTE: this will only disable the regulator output if no other consumer
cf7bbcdf
MB
2656 * devices have it enabled, the regulator device supports disabling and
2657 * machine constraints permit this operation.
414c70cb
LG
2658 */
2659int regulator_disable(struct regulator *regulator)
2660{
412aec61 2661 struct regulator_dev *rdev = regulator->rdev;
f8702f9e 2662 struct ww_acquire_ctx ww_ctx;
5451781d 2663 int ret;
6492bc1b 2664
f8702f9e 2665 regulator_lock_dependent(rdev, &ww_ctx);
5451781d 2666 ret = _regulator_disable(regulator);
f8702f9e 2667 regulator_unlock_dependent(rdev, &ww_ctx);
8cbf811d 2668
414c70cb
LG
2669 return ret;
2670}
2671EXPORT_SYMBOL_GPL(regulator_disable);
2672
2673/* locks held by regulator_force_disable() */
3801b86a 2674static int _regulator_force_disable(struct regulator_dev *rdev)
414c70cb
LG
2675{
2676 int ret = 0;
2677
f8702f9e 2678 lockdep_assert_held_once(&rdev->mutex.base);
70cfef26 2679
a1c8a551
RF
2680 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2681 REGULATOR_EVENT_PRE_DISABLE, NULL);
2682 if (ret & NOTIFY_STOP_MASK)
2683 return -EINVAL;
2684
66fda75f
MSP
2685 ret = _regulator_do_disable(rdev);
2686 if (ret < 0) {
2687 rdev_err(rdev, "failed to force disable\n");
a1c8a551
RF
2688 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2689 REGULATOR_EVENT_ABORT_DISABLE, NULL);
66fda75f 2690 return ret;
414c70cb
LG
2691 }
2692
66fda75f
MSP
2693 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2694 REGULATOR_EVENT_DISABLE, NULL);
2695
2696 return 0;
414c70cb
LG
2697}
2698
2699/**
2700 * regulator_force_disable - force disable regulator output
2701 * @regulator: regulator source
2702 *
2703 * Forcibly disable the regulator output voltage or current.
2704 * NOTE: this *will* disable the regulator output even if other consumer
2705 * devices have it enabled. This should be used for situations when device
2706 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2707 */
2708int regulator_force_disable(struct regulator *regulator)
2709{
82d15839 2710 struct regulator_dev *rdev = regulator->rdev;
f8702f9e 2711 struct ww_acquire_ctx ww_ctx;
414c70cb
LG
2712 int ret;
2713
f8702f9e 2714 regulator_lock_dependent(rdev, &ww_ctx);
5451781d 2715
3801b86a 2716 ret = _regulator_force_disable(regulator->rdev);
5451781d 2717
9243a195
MP
2718 if (rdev->coupling_desc.n_coupled > 1)
2719 regulator_balance_voltage(rdev, PM_SUSPEND_ON);
5451781d
DA
2720
2721 if (regulator->uA_load) {
2722 regulator->uA_load = 0;
2723 ret = drms_uA_update(rdev);
2724 }
2725
1fc12b05
DA
2726 if (rdev->use_count != 0 && rdev->supply)
2727 _regulator_disable(rdev->supply);
8cbf811d 2728
1fc12b05 2729 regulator_unlock_dependent(rdev, &ww_ctx);
8cbf811d 2730
414c70cb
LG
2731 return ret;
2732}
2733EXPORT_SYMBOL_GPL(regulator_force_disable);
2734
da07ecd9
MB
2735static void regulator_disable_work(struct work_struct *work)
2736{
2737 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2738 disable_work.work);
f8702f9e 2739 struct ww_acquire_ctx ww_ctx;
da07ecd9 2740 int count, i, ret;
5451781d
DA
2741 struct regulator *regulator;
2742 int total_count = 0;
da07ecd9 2743
f8702f9e 2744 regulator_lock_dependent(rdev, &ww_ctx);
da07ecd9 2745
c9ccaa0c
TR
2746 /*
2747 * Workqueue functions queue the new work instance while the previous
2748 * work instance is being processed. Cancel the queued work instance
2749 * as the work instance under processing does the job of the queued
2750 * work instance.
2751 */
2752 cancel_delayed_work(&rdev->disable_work);
2753
5451781d
DA
2754 list_for_each_entry(regulator, &rdev->consumer_list, list) {
2755 count = regulator->deferred_disables;
2756
2757 if (!count)
2758 continue;
2759
2760 total_count += count;
2761 regulator->deferred_disables = 0;
2762
2763 for (i = 0; i < count; i++) {
2764 ret = _regulator_disable(regulator);
2765 if (ret != 0)
2766 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2767 }
da07ecd9 2768 }
5451781d 2769 WARN_ON(!total_count);
da07ecd9 2770
f8702f9e
DO
2771 if (rdev->coupling_desc.n_coupled > 1)
2772 regulator_balance_voltage(rdev, PM_SUSPEND_ON);
2773
2774 regulator_unlock_dependent(rdev, &ww_ctx);
da07ecd9
MB
2775}
2776
2777/**
2778 * regulator_disable_deferred - disable regulator output with delay
2779 * @regulator: regulator source
48f1b4ef 2780 * @ms: milliseconds until the regulator is disabled
da07ecd9
MB
2781 *
2782 * Execute regulator_disable() on the regulator after a delay. This
2783 * is intended for use with devices that require some time to quiesce.
2784 *
2785 * NOTE: this will only disable the regulator output if no other consumer
2786 * devices have it enabled, the regulator device supports disabling and
2787 * machine constraints permit this operation.
2788 */
2789int regulator_disable_deferred(struct regulator *regulator, int ms)
2790{
2791 struct regulator_dev *rdev = regulator->rdev;
2792
2b5a24a0
MB
2793 if (!ms)
2794 return regulator_disable(regulator);
2795
66cf9a7e 2796 regulator_lock(rdev);
5451781d 2797 regulator->deferred_disables++;
c9ccaa0c
TR
2798 mod_delayed_work(system_power_efficient_wq, &rdev->disable_work,
2799 msecs_to_jiffies(ms));
66cf9a7e 2800 regulator_unlock(rdev);
da07ecd9 2801
70dc6daf 2802 return 0;
da07ecd9
MB
2803}
2804EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2805
414c70cb
LG
2806static int _regulator_is_enabled(struct regulator_dev *rdev)
2807{
65f73508 2808 /* A GPIO control always takes precedence */
7b74d149 2809 if (rdev->ena_pin)
65f73508
MB
2810 return rdev->ena_gpio_state;
2811
9a7f6a4c 2812 /* If we don't know then assume that the regulator is always on */
9332546f 2813 if (!rdev->desc->ops->is_enabled)
9a7f6a4c 2814 return 1;
414c70cb 2815
9332546f 2816 return rdev->desc->ops->is_enabled(rdev);
414c70cb
LG
2817}
2818
3d67fe95
MP
2819static int _regulator_list_voltage(struct regulator_dev *rdev,
2820 unsigned selector, int lock)
3a40cfc3 2821{
3a40cfc3
SH
2822 const struct regulator_ops *ops = rdev->desc->ops;
2823 int ret;
2824
2825 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2826 return rdev->desc->fixed_uV;
2827
2828 if (ops->list_voltage) {
2829 if (selector >= rdev->desc->n_voltages)
2830 return -EINVAL;
2831 if (lock)
66cf9a7e 2832 regulator_lock(rdev);
3a40cfc3
SH
2833 ret = ops->list_voltage(rdev, selector);
2834 if (lock)
66cf9a7e 2835 regulator_unlock(rdev);
fd086045 2836 } else if (rdev->is_switch && rdev->supply) {
3d67fe95
MP
2837 ret = _regulator_list_voltage(rdev->supply->rdev,
2838 selector, lock);
3a40cfc3
SH
2839 } else {
2840 return -EINVAL;
2841 }
2842
2843 if (ret > 0) {
2844 if (ret < rdev->constraints->min_uV)
2845 ret = 0;
2846 else if (ret > rdev->constraints->max_uV)
2847 ret = 0;
2848 }
2849
2850 return ret;
2851}
2852
414c70cb
LG
2853/**
2854 * regulator_is_enabled - is the regulator output enabled
2855 * @regulator: regulator source
2856 *
412aec61
DB
2857 * Returns positive if the regulator driver backing the source/client
2858 * has requested that the device be enabled, zero if it hasn't, else a
2859 * negative errno code.
2860 *
2861 * Note that the device backing this regulator handle can have multiple
2862 * users, so it might be enabled even if regulator_enable() was never
2863 * called for this particular source.
414c70cb
LG
2864 */
2865int regulator_is_enabled(struct regulator *regulator)
2866{
9332546f
MB
2867 int ret;
2868
6492bc1b
MB
2869 if (regulator->always_on)
2870 return 1;
2871
f8702f9e 2872 regulator_lock(regulator->rdev);
9332546f 2873 ret = _regulator_is_enabled(regulator->rdev);
f8702f9e 2874 regulator_unlock(regulator->rdev);
9332546f
MB
2875
2876 return ret;
414c70cb
LG
2877}
2878EXPORT_SYMBOL_GPL(regulator_is_enabled);
2879
4367cfdc
DB
2880/**
2881 * regulator_count_voltages - count regulator_list_voltage() selectors
2882 * @regulator: regulator source
2883 *
2884 * Returns number of selectors, or negative errno. Selectors are
2885 * numbered starting at zero, and typically correspond to bitfields
2886 * in hardware registers.
2887 */
2888int regulator_count_voltages(struct regulator *regulator)
2889{
2890 struct regulator_dev *rdev = regulator->rdev;
2891
26988efe
JMC
2892 if (rdev->desc->n_voltages)
2893 return rdev->desc->n_voltages;
2894
fd086045 2895 if (!rdev->is_switch || !rdev->supply)
26988efe
JMC
2896 return -EINVAL;
2897
2898 return regulator_count_voltages(rdev->supply);
4367cfdc
DB
2899}
2900EXPORT_SYMBOL_GPL(regulator_count_voltages);
2901
2902/**
2903 * regulator_list_voltage - enumerate supported voltages
2904 * @regulator: regulator source
2905 * @selector: identify voltage to list
2906 * Context: can sleep
2907 *
2908 * Returns a voltage that can be passed to @regulator_set_voltage(),
88393161 2909 * zero if this selector code can't be used on this system, or a
4367cfdc
DB
2910 * negative errno.
2911 */
2912int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2913{
3d67fe95 2914 return _regulator_list_voltage(regulator->rdev, selector, 1);
4367cfdc
DB
2915}
2916EXPORT_SYMBOL_GPL(regulator_list_voltage);
2917
04eca28c
TT
2918/**
2919 * regulator_get_regmap - get the regulator's register map
2920 * @regulator: regulator source
2921 *
2922 * Returns the register map for the given regulator, or an ERR_PTR value
2923 * if the regulator doesn't use regmap.
2924 */
2925struct regmap *regulator_get_regmap(struct regulator *regulator)
2926{
2927 struct regmap *map = regulator->rdev->regmap;
2928
2929 return map ? map : ERR_PTR(-EOPNOTSUPP);
2930}
2931
2932/**
2933 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2934 * @regulator: regulator source
2935 * @vsel_reg: voltage selector register, output parameter
2936 * @vsel_mask: mask for voltage selector bitfield, output parameter
2937 *
2938 * Returns the hardware register offset and bitmask used for setting the
2939 * regulator voltage. This might be useful when configuring voltage-scaling
2940 * hardware or firmware that can make I2C requests behind the kernel's back,
2941 * for example.
2942 *
2943 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2944 * and 0 is returned, otherwise a negative errno is returned.
2945 */
2946int regulator_get_hardware_vsel_register(struct regulator *regulator,
2947 unsigned *vsel_reg,
2948 unsigned *vsel_mask)
2949{
39f5460d
GX
2950 struct regulator_dev *rdev = regulator->rdev;
2951 const struct regulator_ops *ops = rdev->desc->ops;
04eca28c
TT
2952
2953 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2954 return -EOPNOTSUPP;
2955
0d5c8633
CIK
2956 *vsel_reg = rdev->desc->vsel_reg;
2957 *vsel_mask = rdev->desc->vsel_mask;
04eca28c
TT
2958
2959 return 0;
2960}
2961EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2962
2963/**
2964 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2965 * @regulator: regulator source
2966 * @selector: identify voltage to list
2967 *
2968 * Converts the selector to a hardware-specific voltage selector that can be
2969 * directly written to the regulator registers. The address of the voltage
2970 * register can be determined by calling @regulator_get_hardware_vsel_register.
2971 *
2972 * On error a negative errno is returned.
2973 */
2974int regulator_list_hardware_vsel(struct regulator *regulator,
2975 unsigned selector)
2976{
39f5460d
GX
2977 struct regulator_dev *rdev = regulator->rdev;
2978 const struct regulator_ops *ops = rdev->desc->ops;
04eca28c
TT
2979
2980 if (selector >= rdev->desc->n_voltages)
2981 return -EINVAL;
2982 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2983 return -EOPNOTSUPP;
2984
2985 return selector;
2986}
2987EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2988
2a668a8b
PW
2989/**
2990 * regulator_get_linear_step - return the voltage step size between VSEL values
2991 * @regulator: regulator source
2992 *
2993 * Returns the voltage step size between VSEL values for linear
2994 * regulators, or return 0 if the regulator isn't a linear regulator.
2995 */
2996unsigned int regulator_get_linear_step(struct regulator *regulator)
2997{
2998 struct regulator_dev *rdev = regulator->rdev;
2999
3000 return rdev->desc->uV_step;
3001}
3002EXPORT_SYMBOL_GPL(regulator_get_linear_step);
3003
a7a1ad90
MB
3004/**
3005 * regulator_is_supported_voltage - check if a voltage range can be supported
3006 *
3007 * @regulator: Regulator to check.
3008 * @min_uV: Minimum required voltage in uV.
3009 * @max_uV: Maximum required voltage in uV.
3010 *
49820944 3011 * Returns a boolean.
a7a1ad90
MB
3012 */
3013int regulator_is_supported_voltage(struct regulator *regulator,
3014 int min_uV, int max_uV)
3015{
c5f3939b 3016 struct regulator_dev *rdev = regulator->rdev;
a7a1ad90
MB
3017 int i, voltages, ret;
3018
c5f3939b 3019 /* If we can't change voltage check the current voltage */
8a34e979 3020 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
c5f3939b
MB
3021 ret = regulator_get_voltage(regulator);
3022 if (ret >= 0)
0d25d09d 3023 return min_uV <= ret && ret <= max_uV;
c5f3939b
MB
3024 else
3025 return ret;
3026 }
3027
bd7a2b60
PM
3028 /* Any voltage within constrains range is fine? */
3029 if (rdev->desc->continuous_voltage_range)
3030 return min_uV >= rdev->constraints->min_uV &&
3031 max_uV <= rdev->constraints->max_uV;
3032
a7a1ad90
MB
3033 ret = regulator_count_voltages(regulator);
3034 if (ret < 0)
49820944 3035 return 0;
a7a1ad90
MB
3036 voltages = ret;
3037
3038 for (i = 0; i < voltages; i++) {
3039 ret = regulator_list_voltage(regulator, i);
3040
3041 if (ret >= min_uV && ret <= max_uV)
3042 return 1;
3043 }
3044
3045 return 0;
3046}
a398eaa2 3047EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
a7a1ad90 3048
a204f41e
SH
3049static int regulator_map_voltage(struct regulator_dev *rdev, int min_uV,
3050 int max_uV)
3051{
3052 const struct regulator_desc *desc = rdev->desc;
3053
3054 if (desc->ops->map_voltage)
3055 return desc->ops->map_voltage(rdev, min_uV, max_uV);
3056
3057 if (desc->ops->list_voltage == regulator_list_voltage_linear)
3058 return regulator_map_voltage_linear(rdev, min_uV, max_uV);
3059
3060 if (desc->ops->list_voltage == regulator_list_voltage_linear_range)
3061 return regulator_map_voltage_linear_range(rdev, min_uV, max_uV);
3062
18e4b55f
MV
3063 if (desc->ops->list_voltage ==
3064 regulator_list_voltage_pickable_linear_range)
3065 return regulator_map_voltage_pickable_linear_range(rdev,
3066 min_uV, max_uV);
3067
a204f41e
SH
3068 return regulator_map_voltage_iterate(rdev, min_uV, max_uV);
3069}
3070
7179569a
HS
3071static int _regulator_call_set_voltage(struct regulator_dev *rdev,
3072 int min_uV, int max_uV,
3073 unsigned *selector)
3074{
3075 struct pre_voltage_change_data data;
3076 int ret;
3077
d22b85a1 3078 data.old_uV = regulator_get_voltage_rdev(rdev);
7179569a
HS
3079 data.min_uV = min_uV;
3080 data.max_uV = max_uV;
3081 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
3082 &data);
3083 if (ret & NOTIFY_STOP_MASK)
3084 return -EINVAL;
3085
3086 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
3087 if (ret >= 0)
3088 return ret;
3089
3090 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
3091 (void *)data.old_uV);
3092
3093 return ret;
3094}
3095
3096static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
3097 int uV, unsigned selector)
3098{
3099 struct pre_voltage_change_data data;
3100 int ret;
3101
d22b85a1 3102 data.old_uV = regulator_get_voltage_rdev(rdev);
7179569a
HS
3103 data.min_uV = uV;
3104 data.max_uV = uV;
3105 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
3106 &data);
3107 if (ret & NOTIFY_STOP_MASK)
3108 return -EINVAL;
3109
3110 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
3111 if (ret >= 0)
3112 return ret;
3113
3114 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
3115 (void *)data.old_uV);
3116
3117 return ret;
3118}
3119
2da8d947
BG
3120static int _regulator_set_voltage_sel_step(struct regulator_dev *rdev,
3121 int uV, int new_selector)
3122{
3123 const struct regulator_ops *ops = rdev->desc->ops;
3124 int diff, old_sel, curr_sel, ret;
3125
3126 /* Stepping is only needed if the regulator is enabled. */
3127 if (!_regulator_is_enabled(rdev))
3128 goto final_set;
3129
3130 if (!ops->get_voltage_sel)
3131 return -EINVAL;
3132
3133 old_sel = ops->get_voltage_sel(rdev);
3134 if (old_sel < 0)
3135 return old_sel;
3136
3137 diff = new_selector - old_sel;
3138 if (diff == 0)
3139 return 0; /* No change needed. */
3140
3141 if (diff > 0) {
3142 /* Stepping up. */
3143 for (curr_sel = old_sel + rdev->desc->vsel_step;
3144 curr_sel < new_selector;
3145 curr_sel += rdev->desc->vsel_step) {
3146 /*
3147 * Call the callback directly instead of using
3148 * _regulator_call_set_voltage_sel() as we don't
3149 * want to notify anyone yet. Same in the branch
3150 * below.
3151 */
3152 ret = ops->set_voltage_sel(rdev, curr_sel);
3153 if (ret)
3154 goto try_revert;
3155 }
3156 } else {
3157 /* Stepping down. */
3158 for (curr_sel = old_sel - rdev->desc->vsel_step;
3159 curr_sel > new_selector;
3160 curr_sel -= rdev->desc->vsel_step) {
3161 ret = ops->set_voltage_sel(rdev, curr_sel);
3162 if (ret)
3163 goto try_revert;
3164 }
3165 }
3166
3167final_set:
3168 /* The final selector will trigger the notifiers. */
3169 return _regulator_call_set_voltage_sel(rdev, uV, new_selector);
3170
3171try_revert:
3172 /*
3173 * At least try to return to the previous voltage if setting a new
3174 * one failed.
3175 */
3176 (void)ops->set_voltage_sel(rdev, old_sel);
3177 return ret;
3178}
3179
73e705bf
MK
3180static int _regulator_set_voltage_time(struct regulator_dev *rdev,
3181 int old_uV, int new_uV)
3182{
3183 unsigned int ramp_delay = 0;
3184
3185 if (rdev->constraints->ramp_delay)
3186 ramp_delay = rdev->constraints->ramp_delay;
3187 else if (rdev->desc->ramp_delay)
3188 ramp_delay = rdev->desc->ramp_delay;
d6c1dc3f
LD
3189 else if (rdev->constraints->settling_time)
3190 return rdev->constraints->settling_time;
3ffad468
MK
3191 else if (rdev->constraints->settling_time_up &&
3192 (new_uV > old_uV))
3193 return rdev->constraints->settling_time_up;
3194 else if (rdev->constraints->settling_time_down &&
3195 (new_uV < old_uV))
3196 return rdev->constraints->settling_time_down;
73e705bf
MK
3197
3198 if (ramp_delay == 0) {
ba14fa1a 3199 rdev_dbg(rdev, "ramp_delay not set\n");
73e705bf
MK
3200 return 0;
3201 }
3202
3203 return DIV_ROUND_UP(abs(new_uV - old_uV), ramp_delay);
3204}
3205
75790251
MB
3206static int _regulator_do_set_voltage(struct regulator_dev *rdev,
3207 int min_uV, int max_uV)
3208{
3209 int ret;
77af1b26 3210 int delay = 0;
e113d792 3211 int best_val = 0;
75790251 3212 unsigned int selector;
eba41a5e 3213 int old_selector = -1;
57995a48 3214 const struct regulator_ops *ops = rdev->desc->ops;
d22b85a1 3215 int old_uV = regulator_get_voltage_rdev(rdev);
75790251
MB
3216
3217 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
3218
bf5892a8
MB
3219 min_uV += rdev->constraints->uV_offset;
3220 max_uV += rdev->constraints->uV_offset;
3221
eba41a5e
AL
3222 /*
3223 * If we can't obtain the old selector there is not enough
3224 * info to call set_voltage_time_sel().
3225 */
8b7485ef 3226 if (_regulator_is_enabled(rdev) &&
57995a48
MK
3227 ops->set_voltage_time_sel && ops->get_voltage_sel) {
3228 old_selector = ops->get_voltage_sel(rdev);
eba41a5e
AL
3229 if (old_selector < 0)
3230 return old_selector;
3231 }
3232
57995a48 3233 if (ops->set_voltage) {
7179569a
HS
3234 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
3235 &selector);
e113d792
MB
3236
3237 if (ret >= 0) {
57995a48
MK
3238 if (ops->list_voltage)
3239 best_val = ops->list_voltage(rdev,
3240 selector);
e113d792 3241 else
d22b85a1 3242 best_val = regulator_get_voltage_rdev(rdev);
e113d792
MB
3243 }
3244
57995a48 3245 } else if (ops->set_voltage_sel) {
a204f41e 3246 ret = regulator_map_voltage(rdev, min_uV, max_uV);
e843fc46 3247 if (ret >= 0) {
57995a48 3248 best_val = ops->list_voltage(rdev, ret);
e113d792
MB
3249 if (min_uV <= best_val && max_uV >= best_val) {
3250 selector = ret;
c66a566a
AL
3251 if (old_selector == selector)
3252 ret = 0;
2da8d947
BG
3253 else if (rdev->desc->vsel_step)
3254 ret = _regulator_set_voltage_sel_step(
3255 rdev, best_val, selector);
c66a566a 3256 else
7179569a
HS
3257 ret = _regulator_call_set_voltage_sel(
3258 rdev, best_val, selector);
e113d792
MB
3259 } else {
3260 ret = -EINVAL;
3261 }
e8eef82b 3262 }
75790251
MB
3263 } else {
3264 ret = -EINVAL;
3265 }
e8eef82b 3266
31dfe686
MK
3267 if (ret)
3268 goto out;
77af1b26 3269
73e705bf
MK
3270 if (ops->set_voltage_time_sel) {
3271 /*
3272 * Call set_voltage_time_sel if successfully obtained
3273 * old_selector
3274 */
3275 if (old_selector >= 0 && old_selector != selector)
3276 delay = ops->set_voltage_time_sel(rdev, old_selector,
3277 selector);
3278 } else {
3279 if (old_uV != best_val) {
3280 if (ops->set_voltage_time)
3281 delay = ops->set_voltage_time(rdev, old_uV,
3282 best_val);
3283 else
3284 delay = _regulator_set_voltage_time(rdev,
3285 old_uV,
3286 best_val);
e8eef82b 3287 }
73e705bf 3288 }
75790251 3289
73e705bf
MK
3290 if (delay < 0) {
3291 rdev_warn(rdev, "failed to get delay: %d\n", delay);
3292 delay = 0;
77af1b26
LW
3293 }
3294
73e705bf
MK
3295 /* Insert any necessary delays */
3296 if (delay >= 1000) {
3297 mdelay(delay / 1000);
3298 udelay(delay % 1000);
3299 } else if (delay) {
3300 udelay(delay);
77af1b26
LW
3301 }
3302
31dfe686 3303 if (best_val >= 0) {
2f6c797f
AL
3304 unsigned long data = best_val;
3305
ded06a52 3306 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
2f6c797f
AL
3307 (void *)data);
3308 }
ded06a52 3309
31dfe686 3310out:
eba41a5e 3311 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
75790251
MB
3312
3313 return ret;
3314}
3315
f7efad10
CZ
3316static int _regulator_do_set_suspend_voltage(struct regulator_dev *rdev,
3317 int min_uV, int max_uV, suspend_state_t state)
3318{
3319 struct regulator_state *rstate;
3320 int uV, sel;
3321
3322 rstate = regulator_get_suspend_state(rdev, state);
3323 if (rstate == NULL)
3324 return -EINVAL;
3325
3326 if (min_uV < rstate->min_uV)
3327 min_uV = rstate->min_uV;
3328 if (max_uV > rstate->max_uV)
3329 max_uV = rstate->max_uV;
3330
3331 sel = regulator_map_voltage(rdev, min_uV, max_uV);
3332 if (sel < 0)
3333 return sel;
3334
3335 uV = rdev->desc->ops->list_voltage(rdev, sel);
3336 if (uV >= min_uV && uV <= max_uV)
3337 rstate->uV = uV;
3338
3339 return 0;
3340}
3341
a9f226bc 3342static int regulator_set_voltage_unlocked(struct regulator *regulator,
c360a6df
CZ
3343 int min_uV, int max_uV,
3344 suspend_state_t state)
414c70cb
LG
3345{
3346 struct regulator_dev *rdev = regulator->rdev;
c360a6df 3347 struct regulator_voltage *voltage = &regulator->voltage[state];
95a3c23a 3348 int ret = 0;
92d7a558 3349 int old_min_uV, old_max_uV;
c00dc359 3350 int current_uV;
414c70cb 3351
95a3c23a
MB
3352 /* If we're setting the same range as last time the change
3353 * should be a noop (some cpufreq implementations use the same
3354 * voltage for multiple frequencies, for example).
3355 */
c360a6df 3356 if (voltage->min_uV == min_uV && voltage->max_uV == max_uV)
95a3c23a
MB
3357 goto out;
3358
c00dc359 3359 /* If we're trying to set a range that overlaps the current voltage,
d3fb9800 3360 * return successfully even though the regulator does not support
c00dc359
BA
3361 * changing the voltage.
3362 */
8a34e979 3363 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
d22b85a1 3364 current_uV = regulator_get_voltage_rdev(rdev);
c00dc359 3365 if (min_uV <= current_uV && current_uV <= max_uV) {
c360a6df
CZ
3366 voltage->min_uV = min_uV;
3367 voltage->max_uV = max_uV;
c00dc359
BA
3368 goto out;
3369 }
3370 }
3371
414c70cb 3372 /* sanity check */
e8eef82b
MB
3373 if (!rdev->desc->ops->set_voltage &&
3374 !rdev->desc->ops->set_voltage_sel) {
414c70cb
LG
3375 ret = -EINVAL;
3376 goto out;
3377 }
3378
3379 /* constraints check */
3380 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
3381 if (ret < 0)
3382 goto out;
0d25d09d 3383
92d7a558 3384 /* restore original values in case of error */
c360a6df
CZ
3385 old_min_uV = voltage->min_uV;
3386 old_max_uV = voltage->max_uV;
3387 voltage->min_uV = min_uV;
3388 voltage->max_uV = max_uV;
3a93f2a9 3389
9243a195
MP
3390 /* for not coupled regulators this will just set the voltage */
3391 ret = regulator_balance_voltage(rdev, state);
70b46491
ST
3392 if (ret < 0) {
3393 voltage->min_uV = old_min_uV;
3394 voltage->max_uV = old_max_uV;
3395 }
05fda3b1 3396
9243a195 3397out:
9243a195
MP
3398 return ret;
3399}
3400
d22b85a1
DO
3401int regulator_set_voltage_rdev(struct regulator_dev *rdev, int min_uV,
3402 int max_uV, suspend_state_t state)
9243a195
MP
3403{
3404 int best_supply_uV = 0;
3405 int supply_change_uV = 0;
3406 int ret;
3407
43fc99f2
MB
3408 if (rdev->supply &&
3409 regulator_ops_is_valid(rdev->supply->rdev,
3410 REGULATOR_CHANGE_VOLTAGE) &&
2c2874b1
TR
3411 (rdev->desc->min_dropout_uV || !(rdev->desc->ops->get_voltage ||
3412 rdev->desc->ops->get_voltage_sel))) {
fc42112c
SH
3413 int current_supply_uV;
3414 int selector;
3415
3416 selector = regulator_map_voltage(rdev, min_uV, max_uV);
3417 if (selector < 0) {
3418 ret = selector;
9243a195 3419 goto out;
fc42112c
SH
3420 }
3421
00cb9f4f 3422 best_supply_uV = _regulator_list_voltage(rdev, selector, 0);
fc42112c
SH
3423 if (best_supply_uV < 0) {
3424 ret = best_supply_uV;
9243a195 3425 goto out;
fc42112c
SH
3426 }
3427
3428 best_supply_uV += rdev->desc->min_dropout_uV;
3429
d22b85a1 3430 current_supply_uV = regulator_get_voltage_rdev(rdev->supply->rdev);
fc42112c
SH
3431 if (current_supply_uV < 0) {
3432 ret = current_supply_uV;
9243a195 3433 goto out;
fc42112c
SH
3434 }
3435
3436 supply_change_uV = best_supply_uV - current_supply_uV;
3437 }
3438
3439 if (supply_change_uV > 0) {
3440 ret = regulator_set_voltage_unlocked(rdev->supply,
c360a6df 3441 best_supply_uV, INT_MAX, state);
fc42112c
SH
3442 if (ret) {
3443 dev_err(&rdev->dev, "Failed to increase supply voltage: %d\n",
3444 ret);
9243a195 3445 goto out;
fc42112c
SH
3446 }
3447 }
3448
f7efad10
CZ
3449 if (state == PM_SUSPEND_ON)
3450 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
3451 else
3452 ret = _regulator_do_set_suspend_voltage(rdev, min_uV,
3453 max_uV, state);
92d7a558 3454 if (ret < 0)
9243a195 3455 goto out;
0d25d09d 3456
fc42112c
SH
3457 if (supply_change_uV < 0) {
3458 ret = regulator_set_voltage_unlocked(rdev->supply,
c360a6df 3459 best_supply_uV, INT_MAX, state);
fc42112c
SH
3460 if (ret)
3461 dev_warn(&rdev->dev, "Failed to decrease supply voltage: %d\n",
3462 ret);
3463 /* No need to fail here */
3464 ret = 0;
3465 }
3466
414c70cb 3467out:
a9f226bc 3468 return ret;
69686176 3469}
3d7610e8 3470EXPORT_SYMBOL_GPL(regulator_set_voltage_rdev);
69686176 3471
85254bcf
DO
3472static int regulator_limit_voltage_step(struct regulator_dev *rdev,
3473 int *current_uV, int *min_uV)
3474{
3475 struct regulation_constraints *constraints = rdev->constraints;
3476
3477 /* Limit voltage change only if necessary */
3478 if (!constraints->max_uV_step || !_regulator_is_enabled(rdev))
3479 return 1;
3480
3481 if (*current_uV < 0) {
d22b85a1 3482 *current_uV = regulator_get_voltage_rdev(rdev);
85254bcf
DO
3483
3484 if (*current_uV < 0)
3485 return *current_uV;
3486 }
3487
3488 if (abs(*current_uV - *min_uV) <= constraints->max_uV_step)
3489 return 1;
3490
3491 /* Clamp target voltage within the given step */
3492 if (*current_uV < *min_uV)
3493 *min_uV = min(*current_uV + constraints->max_uV_step,
3494 *min_uV);
3495 else
3496 *min_uV = max(*current_uV - constraints->max_uV_step,
3497 *min_uV);
3498
3499 return 0;
3500}
3501
c054c6c7
MP
3502static int regulator_get_optimal_voltage(struct regulator_dev *rdev,
3503 int *current_uV,
3504 int *min_uV, int *max_uV,
3505 suspend_state_t state,
3506 int n_coupled)
3507{
3508 struct coupling_desc *c_desc = &rdev->coupling_desc;
3509 struct regulator_dev **c_rdevs = c_desc->coupled_rdevs;
3510 struct regulation_constraints *constraints = rdev->constraints;
c054c6c7
MP
3511 int desired_min_uV = 0, desired_max_uV = INT_MAX;
3512 int max_current_uV = 0, min_current_uV = INT_MAX;
3513 int highest_min_uV = 0, target_uV, possible_uV;
d8ca7d18 3514 int i, ret, max_spread;
c054c6c7
MP
3515 bool done;
3516
3517 *current_uV = -1;
3518
3519 /*
3520 * If there are no coupled regulators, simply set the voltage
3521 * demanded by consumers.
3522 */
3523 if (n_coupled == 1) {
3524 /*
3525 * If consumers don't provide any demands, set voltage
3526 * to min_uV
3527 */
3528 desired_min_uV = constraints->min_uV;
3529 desired_max_uV = constraints->max_uV;
3530
3531 ret = regulator_check_consumers(rdev,
3532 &desired_min_uV,
3533 &desired_max_uV, state);
3534 if (ret < 0)
3535 return ret;
3536
3537 possible_uV = desired_min_uV;
3538 done = true;
3539
3540 goto finish;
3541 }
3542
3543 /* Find highest min desired voltage */
3544 for (i = 0; i < n_coupled; i++) {
3545 int tmp_min = 0;
3546 int tmp_max = INT_MAX;
3547
f8702f9e 3548 lockdep_assert_held_once(&c_rdevs[i]->mutex.base);
c054c6c7
MP
3549
3550 ret = regulator_check_consumers(c_rdevs[i],
3551 &tmp_min,
3552 &tmp_max, state);
3553 if (ret < 0)
3554 return ret;
3555
3556 ret = regulator_check_voltage(c_rdevs[i], &tmp_min, &tmp_max);
3557 if (ret < 0)
3558 return ret;
69686176 3559
c054c6c7
MP
3560 highest_min_uV = max(highest_min_uV, tmp_min);
3561
3562 if (i == 0) {
3563 desired_min_uV = tmp_min;
3564 desired_max_uV = tmp_max;
3565 }
3566 }
3567
d8ca7d18
DO
3568 max_spread = constraints->max_spread[0];
3569
c054c6c7
MP
3570 /*
3571 * Let target_uV be equal to the desired one if possible.
3572 * If not, set it to minimum voltage, allowed by other coupled
3573 * regulators.
3574 */
3575 target_uV = max(desired_min_uV, highest_min_uV - max_spread);
3576
3577 /*
3578 * Find min and max voltages, which currently aren't violating
3579 * max_spread.
3580 */
3581 for (i = 1; i < n_coupled; i++) {
3582 int tmp_act;
3583
3584 if (!_regulator_is_enabled(c_rdevs[i]))
3585 continue;
3586
d22b85a1 3587 tmp_act = regulator_get_voltage_rdev(c_rdevs[i]);
c054c6c7
MP
3588 if (tmp_act < 0)
3589 return tmp_act;
3590
3591 min_current_uV = min(tmp_act, min_current_uV);
3592 max_current_uV = max(tmp_act, max_current_uV);
3593 }
3594
3595 /* There aren't any other regulators enabled */
3596 if (max_current_uV == 0) {
3597 possible_uV = target_uV;
3598 } else {
3599 /*
3600 * Correct target voltage, so as it currently isn't
3601 * violating max_spread
3602 */
3603 possible_uV = max(target_uV, max_current_uV - max_spread);
3604 possible_uV = min(possible_uV, min_current_uV + max_spread);
3605 }
3606
3607 if (possible_uV > desired_max_uV)
3608 return -EINVAL;
3609
3610 done = (possible_uV == target_uV);
3611 desired_min_uV = possible_uV;
3612
3613finish:
85254bcf
DO
3614 /* Apply max_uV_step constraint if necessary */
3615 if (state == PM_SUSPEND_ON) {
3616 ret = regulator_limit_voltage_step(rdev, current_uV,
3617 &desired_min_uV);
3618 if (ret < 0)
3619 return ret;
3620
3621 if (ret == 0)
3622 done = false;
3623 }
3624
c054c6c7
MP
3625 /* Set current_uV if wasn't done earlier in the code and if necessary */
3626 if (n_coupled > 1 && *current_uV == -1) {
3627
3628 if (_regulator_is_enabled(rdev)) {
d22b85a1 3629 ret = regulator_get_voltage_rdev(rdev);
c054c6c7
MP
3630 if (ret < 0)
3631 return ret;
3632
3633 *current_uV = ret;
3634 } else {
3635 *current_uV = desired_min_uV;
3636 }
3637 }
3638
3639 *min_uV = desired_min_uV;
3640 *max_uV = desired_max_uV;
3641
3642 return done;
3643}
3644
3645static int regulator_balance_voltage(struct regulator_dev *rdev,
3646 suspend_state_t state)
3647{
3648 struct regulator_dev **c_rdevs;
3649 struct regulator_dev *best_rdev;
3650 struct coupling_desc *c_desc = &rdev->coupling_desc;
d8ca7d18 3651 struct regulator_coupler *coupler = c_desc->coupler;
c054c6c7 3652 int i, ret, n_coupled, best_min_uV, best_max_uV, best_c_rdev;
c054c6c7 3653 unsigned int delta, best_delta;
d8ca7d18
DO
3654 unsigned long c_rdev_done = 0;
3655 bool best_c_rdev_done;
c054c6c7
MP
3656
3657 c_rdevs = c_desc->coupled_rdevs;
3658 n_coupled = c_desc->n_coupled;
3659
3660 /*
3661 * If system is in a state other than PM_SUSPEND_ON, don't check
3662 * other coupled regulators.
3663 */
3664 if (state != PM_SUSPEND_ON)
3665 n_coupled = 1;
3666
3667 if (c_desc->n_resolved < n_coupled) {
3668 rdev_err(rdev, "Not all coupled regulators registered\n");
3669 return -EPERM;
3670 }
3671
d8ca7d18
DO
3672 /* Invoke custom balancer for customized couplers */
3673 if (coupler && coupler->balance_voltage)
3674 return coupler->balance_voltage(coupler, rdev, state);
c054c6c7
MP
3675
3676 /*
3677 * Find the best possible voltage change on each loop. Leave the loop
3678 * if there isn't any possible change.
3679 */
3680 do {
3681 best_c_rdev_done = false;
3682 best_delta = 0;
3683 best_min_uV = 0;
3684 best_max_uV = 0;
3685 best_c_rdev = 0;
3686 best_rdev = NULL;
3687
3688 /*
3689 * Find highest difference between optimal voltage
3690 * and current voltage.
3691 */
3692 for (i = 0; i < n_coupled; i++) {
3693 /*
3694 * optimal_uV is the best voltage that can be set for
3695 * i-th regulator at the moment without violating
3696 * max_spread constraint in order to balance
3697 * the coupled voltages.
3698 */
3699 int optimal_uV = 0, optimal_max_uV = 0, current_uV = 0;
3700
d8ca7d18 3701 if (test_bit(i, &c_rdev_done))
c054c6c7
MP
3702 continue;
3703
3704 ret = regulator_get_optimal_voltage(c_rdevs[i],
3705 &current_uV,
3706 &optimal_uV,
3707 &optimal_max_uV,
3708 state, n_coupled);
3709 if (ret < 0)
3710 goto out;
3711
3712 delta = abs(optimal_uV - current_uV);
3713
3714 if (delta && best_delta <= delta) {
3715 best_c_rdev_done = ret;
3716 best_delta = delta;
3717 best_rdev = c_rdevs[i];
3718 best_min_uV = optimal_uV;
3719 best_max_uV = optimal_max_uV;
3720 best_c_rdev = i;
3721 }
3722 }
3723
3724 /* Nothing to change, return successfully */
3725 if (!best_rdev) {
3726 ret = 0;
3727 goto out;
3728 }
9243a195 3729
c054c6c7
MP
3730 ret = regulator_set_voltage_rdev(best_rdev, best_min_uV,
3731 best_max_uV, state);
9243a195 3732
c054c6c7
MP
3733 if (ret < 0)
3734 goto out;
3735
d8ca7d18
DO
3736 if (best_c_rdev_done)
3737 set_bit(best_c_rdev, &c_rdev_done);
c054c6c7
MP
3738
3739 } while (n_coupled > 1);
3740
3741out:
69686176
MP
3742 return ret;
3743}
3744
a9f226bc
SH
3745/**
3746 * regulator_set_voltage - set regulator output voltage
3747 * @regulator: regulator source
3748 * @min_uV: Minimum required voltage in uV
3749 * @max_uV: Maximum acceptable voltage in uV
3750 *
3751 * Sets a voltage regulator to the desired output voltage. This can be set
3752 * during any regulator state. IOW, regulator can be disabled or enabled.
3753 *
3754 * If the regulator is enabled then the voltage will change to the new value
3755 * immediately otherwise if the regulator is disabled the regulator will
3756 * output at the new voltage when enabled.
3757 *
3758 * NOTE: If the regulator is shared between several devices then the lowest
3759 * request voltage that meets the system constraints will be used.
3760 * Regulator system constraints must be set for this regulator before
3761 * calling this function otherwise this call will fail.
3762 */
3763int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
3764{
f8702f9e
DO
3765 struct ww_acquire_ctx ww_ctx;
3766 int ret;
a9f226bc 3767
f8702f9e 3768 regulator_lock_dependent(regulator->rdev, &ww_ctx);
a9f226bc 3769
c360a6df
CZ
3770 ret = regulator_set_voltage_unlocked(regulator, min_uV, max_uV,
3771 PM_SUSPEND_ON);
a9f226bc 3772
f8702f9e 3773 regulator_unlock_dependent(regulator->rdev, &ww_ctx);
a9f226bc 3774
414c70cb
LG
3775 return ret;
3776}
3777EXPORT_SYMBOL_GPL(regulator_set_voltage);
3778
f7efad10
CZ
3779static inline int regulator_suspend_toggle(struct regulator_dev *rdev,
3780 suspend_state_t state, bool en)
3781{
3782 struct regulator_state *rstate;
3783
3784 rstate = regulator_get_suspend_state(rdev, state);
3785 if (rstate == NULL)
3786 return -EINVAL;
3787
3788 if (!rstate->changeable)
3789 return -EPERM;
3790
3edd79cf 3791 rstate->enabled = (en) ? ENABLE_IN_SUSPEND : DISABLE_IN_SUSPEND;
f7efad10
CZ
3792
3793 return 0;
3794}
3795
3796int regulator_suspend_enable(struct regulator_dev *rdev,
3797 suspend_state_t state)
3798{
3799 return regulator_suspend_toggle(rdev, state, true);
3800}
3801EXPORT_SYMBOL_GPL(regulator_suspend_enable);
3802
3803int regulator_suspend_disable(struct regulator_dev *rdev,
3804 suspend_state_t state)
3805{
3806 struct regulator *regulator;
3807 struct regulator_voltage *voltage;
3808
3809 /*
3810 * if any consumer wants this regulator device keeping on in
3811 * suspend states, don't set it as disabled.
3812 */
3813 list_for_each_entry(regulator, &rdev->consumer_list, list) {
3814 voltage = &regulator->voltage[state];
3815 if (voltage->min_uV || voltage->max_uV)
3816 return 0;
3817 }
3818
3819 return regulator_suspend_toggle(rdev, state, false);
3820}
3821EXPORT_SYMBOL_GPL(regulator_suspend_disable);
3822
3823static int _regulator_set_suspend_voltage(struct regulator *regulator,
3824 int min_uV, int max_uV,
3825 suspend_state_t state)
3826{
3827 struct regulator_dev *rdev = regulator->rdev;
3828 struct regulator_state *rstate;
3829
3830 rstate = regulator_get_suspend_state(rdev, state);
3831 if (rstate == NULL)
3832 return -EINVAL;
3833
3834 if (rstate->min_uV == rstate->max_uV) {
3835 rdev_err(rdev, "The suspend voltage can't be changed!\n");
3836 return -EPERM;
3837 }
3838
3839 return regulator_set_voltage_unlocked(regulator, min_uV, max_uV, state);
3840}
3841
3842int regulator_set_suspend_voltage(struct regulator *regulator, int min_uV,
3843 int max_uV, suspend_state_t state)
3844{
f8702f9e
DO
3845 struct ww_acquire_ctx ww_ctx;
3846 int ret;
f7efad10
CZ
3847
3848 /* PM_SUSPEND_ON is handled by regulator_set_voltage() */
3849 if (regulator_check_states(state) || state == PM_SUSPEND_ON)
3850 return -EINVAL;
3851
f8702f9e 3852 regulator_lock_dependent(regulator->rdev, &ww_ctx);
f7efad10
CZ
3853
3854 ret = _regulator_set_suspend_voltage(regulator, min_uV,
3855 max_uV, state);
3856
f8702f9e 3857 regulator_unlock_dependent(regulator->rdev, &ww_ctx);
f7efad10
CZ
3858
3859 return ret;
3860}
3861EXPORT_SYMBOL_GPL(regulator_set_suspend_voltage);
3862
88cd222b
LW
3863/**
3864 * regulator_set_voltage_time - get raise/fall time
3865 * @regulator: regulator source
3866 * @old_uV: starting voltage in microvolts
3867 * @new_uV: target voltage in microvolts
3868 *
3869 * Provided with the starting and ending voltage, this function attempts to
3870 * calculate the time in microseconds required to rise or fall to this new
3871 * voltage.
3872 */
3873int regulator_set_voltage_time(struct regulator *regulator,
3874 int old_uV, int new_uV)
3875{
272e2315
GX
3876 struct regulator_dev *rdev = regulator->rdev;
3877 const struct regulator_ops *ops = rdev->desc->ops;
88cd222b
LW
3878 int old_sel = -1;
3879 int new_sel = -1;
3880 int voltage;
3881 int i;
3882
73e705bf
MK
3883 if (ops->set_voltage_time)
3884 return ops->set_voltage_time(rdev, old_uV, new_uV);
3885 else if (!ops->set_voltage_time_sel)
3886 return _regulator_set_voltage_time(rdev, old_uV, new_uV);
3887
88cd222b 3888 /* Currently requires operations to do this */
73e705bf 3889 if (!ops->list_voltage || !rdev->desc->n_voltages)
88cd222b
LW
3890 return -EINVAL;
3891
3892 for (i = 0; i < rdev->desc->n_voltages; i++) {
3893 /* We only look for exact voltage matches here */
3894 voltage = regulator_list_voltage(regulator, i);
3895 if (voltage < 0)
3896 return -EINVAL;
3897 if (voltage == 0)
3898 continue;
3899 if (voltage == old_uV)
3900 old_sel = i;
3901 if (voltage == new_uV)
3902 new_sel = i;
3903 }
3904
3905 if (old_sel < 0 || new_sel < 0)
3906 return -EINVAL;
3907
3908 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
3909}
3910EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
3911
98a175b6 3912/**
296c6566
RD
3913 * regulator_set_voltage_time_sel - get raise/fall time
3914 * @rdev: regulator source device
98a175b6
YSB
3915 * @old_selector: selector for starting voltage
3916 * @new_selector: selector for target voltage
3917 *
3918 * Provided with the starting and target voltage selectors, this function
3919 * returns time in microseconds required to rise or fall to this new voltage
3920 *
f11d08c3 3921 * Drivers providing ramp_delay in regulation_constraints can use this as their
398715ab 3922 * set_voltage_time_sel() operation.
98a175b6
YSB
3923 */
3924int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
3925 unsigned int old_selector,
3926 unsigned int new_selector)
3927{
f11d08c3 3928 int old_volt, new_volt;
398715ab 3929
f11d08c3
AL
3930 /* sanity check */
3931 if (!rdev->desc->ops->list_voltage)
3932 return -EINVAL;
398715ab 3933
f11d08c3
AL
3934 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
3935 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
3936
73e705bf
MK
3937 if (rdev->desc->ops->set_voltage_time)
3938 return rdev->desc->ops->set_voltage_time(rdev, old_volt,
3939 new_volt);
3940 else
3941 return _regulator_set_voltage_time(rdev, old_volt, new_volt);
98a175b6 3942}
b19dbf71 3943EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
98a175b6 3944
606a2562
MB
3945/**
3946 * regulator_sync_voltage - re-apply last regulator output voltage
3947 * @regulator: regulator source
3948 *
3949 * Re-apply the last configured voltage. This is intended to be used
3950 * where some external control source the consumer is cooperating with
3951 * has caused the configured voltage to change.
3952 */
3953int regulator_sync_voltage(struct regulator *regulator)
3954{
3955 struct regulator_dev *rdev = regulator->rdev;
c360a6df 3956 struct regulator_voltage *voltage = &regulator->voltage[PM_SUSPEND_ON];
606a2562
MB
3957 int ret, min_uV, max_uV;
3958
66cf9a7e 3959 regulator_lock(rdev);
606a2562
MB
3960
3961 if (!rdev->desc->ops->set_voltage &&
3962 !rdev->desc->ops->set_voltage_sel) {
3963 ret = -EINVAL;
3964 goto out;
3965 }
3966
3967 /* This is only going to work if we've had a voltage configured. */
c360a6df 3968 if (!voltage->min_uV && !voltage->max_uV) {
606a2562
MB
3969 ret = -EINVAL;
3970 goto out;
3971 }
3972
c360a6df
CZ
3973 min_uV = voltage->min_uV;
3974 max_uV = voltage->max_uV;
606a2562
MB
3975
3976 /* This should be a paranoia check... */
3977 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
3978 if (ret < 0)
3979 goto out;
3980
c360a6df 3981 ret = regulator_check_consumers(rdev, &min_uV, &max_uV, 0);
606a2562
MB
3982 if (ret < 0)
3983 goto out;
3984
3985 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
3986
3987out:
66cf9a7e 3988 regulator_unlock(rdev);
606a2562
MB
3989 return ret;
3990}
3991EXPORT_SYMBOL_GPL(regulator_sync_voltage);
3992
d22b85a1 3993int regulator_get_voltage_rdev(struct regulator_dev *rdev)
414c70cb 3994{
bf5892a8 3995 int sel, ret;
fef95019
MB
3996 bool bypassed;
3997
3998 if (rdev->desc->ops->get_bypass) {
3999 ret = rdev->desc->ops->get_bypass(rdev, &bypassed);
4000 if (ret < 0)
4001 return ret;
4002 if (bypassed) {
4003 /* if bypassed the regulator must have a supply */
45389c47
JH
4004 if (!rdev->supply) {
4005 rdev_err(rdev,
4006 "bypassed regulator has no supply!\n");
4007 return -EPROBE_DEFER;
4008 }
fef95019 4009
d22b85a1 4010 return regulator_get_voltage_rdev(rdev->supply->rdev);
fef95019
MB
4011 }
4012 }
476c2d83
MB
4013
4014 if (rdev->desc->ops->get_voltage_sel) {
4015 sel = rdev->desc->ops->get_voltage_sel(rdev);
4016 if (sel < 0)
4017 return sel;
bf5892a8 4018 ret = rdev->desc->ops->list_voltage(rdev, sel);
cb220d16 4019 } else if (rdev->desc->ops->get_voltage) {
bf5892a8 4020 ret = rdev->desc->ops->get_voltage(rdev);
f7df20ec
MB
4021 } else if (rdev->desc->ops->list_voltage) {
4022 ret = rdev->desc->ops->list_voltage(rdev, 0);
5a523605
LD
4023 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
4024 ret = rdev->desc->fixed_uV;
e303996e 4025 } else if (rdev->supply) {
d22b85a1 4026 ret = regulator_get_voltage_rdev(rdev->supply->rdev);
cb220d16 4027 } else {
414c70cb 4028 return -EINVAL;
cb220d16 4029 }
bf5892a8 4030
cb220d16
AL
4031 if (ret < 0)
4032 return ret;
bf5892a8 4033 return ret - rdev->constraints->uV_offset;
414c70cb 4034}
3d7610e8 4035EXPORT_SYMBOL_GPL(regulator_get_voltage_rdev);
414c70cb
LG
4036
4037/**
4038 * regulator_get_voltage - get regulator output voltage
4039 * @regulator: regulator source
4040 *
4041 * This returns the current regulator voltage in uV.
4042 *
4043 * NOTE: If the regulator is disabled it will return the voltage value. This
4044 * function should not be used to determine regulator state.
4045 */
4046int regulator_get_voltage(struct regulator *regulator)
4047{
f8702f9e 4048 struct ww_acquire_ctx ww_ctx;
414c70cb
LG
4049 int ret;
4050
f8702f9e 4051 regulator_lock_dependent(regulator->rdev, &ww_ctx);
d22b85a1 4052 ret = regulator_get_voltage_rdev(regulator->rdev);
f8702f9e 4053 regulator_unlock_dependent(regulator->rdev, &ww_ctx);
414c70cb
LG
4054
4055 return ret;
4056}
4057EXPORT_SYMBOL_GPL(regulator_get_voltage);
4058
4059/**
4060 * regulator_set_current_limit - set regulator output current limit
4061 * @regulator: regulator source
ce0d10f8 4062 * @min_uA: Minimum supported current in uA
414c70cb
LG
4063 * @max_uA: Maximum supported current in uA
4064 *
4065 * Sets current sink to the desired output current. This can be set during
4066 * any regulator state. IOW, regulator can be disabled or enabled.
4067 *
4068 * If the regulator is enabled then the current will change to the new value
4069 * immediately otherwise if the regulator is disabled the regulator will
4070 * output at the new current when enabled.
4071 *
4072 * NOTE: Regulator system constraints must be set for this regulator before
4073 * calling this function otherwise this call will fail.
4074 */
4075int regulator_set_current_limit(struct regulator *regulator,
4076 int min_uA, int max_uA)
4077{
4078 struct regulator_dev *rdev = regulator->rdev;
4079 int ret;
4080
66cf9a7e 4081 regulator_lock(rdev);
414c70cb
LG
4082
4083 /* sanity check */
4084 if (!rdev->desc->ops->set_current_limit) {
4085 ret = -EINVAL;
4086 goto out;
4087 }
4088
4089 /* constraints check */
4090 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
4091 if (ret < 0)
4092 goto out;
4093
4094 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
4095out:
66cf9a7e 4096 regulator_unlock(rdev);
414c70cb
LG
4097 return ret;
4098}
4099EXPORT_SYMBOL_GPL(regulator_set_current_limit);
4100
7e4d9683
DA
4101static int _regulator_get_current_limit_unlocked(struct regulator_dev *rdev)
4102{
4103 /* sanity check */
4104 if (!rdev->desc->ops->get_current_limit)
4105 return -EINVAL;
4106
4107 return rdev->desc->ops->get_current_limit(rdev);
4108}
4109
414c70cb
LG
4110static int _regulator_get_current_limit(struct regulator_dev *rdev)
4111{
4112 int ret;
4113
66cf9a7e 4114 regulator_lock(rdev);
7e4d9683 4115 ret = _regulator_get_current_limit_unlocked(rdev);
66cf9a7e 4116 regulator_unlock(rdev);
7e4d9683 4117
414c70cb
LG
4118 return ret;
4119}
4120
4121/**
4122 * regulator_get_current_limit - get regulator output current
4123 * @regulator: regulator source
4124 *
4125 * This returns the current supplied by the specified current sink in uA.
4126 *
4127 * NOTE: If the regulator is disabled it will return the current value. This
4128 * function should not be used to determine regulator state.
4129 */
4130int regulator_get_current_limit(struct regulator *regulator)
4131{
4132 return _regulator_get_current_limit(regulator->rdev);
4133}
4134EXPORT_SYMBOL_GPL(regulator_get_current_limit);
4135
4136/**
4137 * regulator_set_mode - set regulator operating mode
4138 * @regulator: regulator source
4139 * @mode: operating mode - one of the REGULATOR_MODE constants
4140 *
4141 * Set regulator operating mode to increase regulator efficiency or improve
4142 * regulation performance.
4143 *
4144 * NOTE: Regulator system constraints must be set for this regulator before
4145 * calling this function otherwise this call will fail.
4146 */
4147int regulator_set_mode(struct regulator *regulator, unsigned int mode)
4148{
4149 struct regulator_dev *rdev = regulator->rdev;
4150 int ret;
500b4ac9 4151 int regulator_curr_mode;
414c70cb 4152
66cf9a7e 4153 regulator_lock(rdev);
414c70cb
LG
4154
4155 /* sanity check */
4156 if (!rdev->desc->ops->set_mode) {
4157 ret = -EINVAL;
4158 goto out;
4159 }
4160
500b4ac9
SI
4161 /* return if the same mode is requested */
4162 if (rdev->desc->ops->get_mode) {
4163 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
4164 if (regulator_curr_mode == mode) {
4165 ret = 0;
4166 goto out;
4167 }
4168 }
4169
414c70cb 4170 /* constraints check */
22c51b47 4171 ret = regulator_mode_constrain(rdev, &mode);
414c70cb
LG
4172 if (ret < 0)
4173 goto out;
4174
4175 ret = rdev->desc->ops->set_mode(rdev, mode);
4176out:
66cf9a7e 4177 regulator_unlock(rdev);
414c70cb
LG
4178 return ret;
4179}
4180EXPORT_SYMBOL_GPL(regulator_set_mode);
4181
7e4d9683
DA
4182static unsigned int _regulator_get_mode_unlocked(struct regulator_dev *rdev)
4183{
4184 /* sanity check */
4185 if (!rdev->desc->ops->get_mode)
4186 return -EINVAL;
4187
4188 return rdev->desc->ops->get_mode(rdev);
4189}
4190
414c70cb
LG
4191static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
4192{
4193 int ret;
4194
66cf9a7e 4195 regulator_lock(rdev);
7e4d9683 4196 ret = _regulator_get_mode_unlocked(rdev);
66cf9a7e 4197 regulator_unlock(rdev);
7e4d9683 4198
414c70cb
LG
4199 return ret;
4200}
4201
4202/**
4203 * regulator_get_mode - get regulator operating mode
4204 * @regulator: regulator source
4205 *
4206 * Get the current regulator operating mode.
4207 */
4208unsigned int regulator_get_mode(struct regulator *regulator)
4209{
4210 return _regulator_get_mode(regulator->rdev);
4211}
4212EXPORT_SYMBOL_GPL(regulator_get_mode);
4213
1b5b4221
AH
4214static int _regulator_get_error_flags(struct regulator_dev *rdev,
4215 unsigned int *flags)
4216{
4217 int ret;
4218
66cf9a7e 4219 regulator_lock(rdev);
1b5b4221
AH
4220
4221 /* sanity check */
4222 if (!rdev->desc->ops->get_error_flags) {
4223 ret = -EINVAL;
4224 goto out;
4225 }
4226
4227 ret = rdev->desc->ops->get_error_flags(rdev, flags);
4228out:
66cf9a7e 4229 regulator_unlock(rdev);
1b5b4221
AH
4230 return ret;
4231}
4232
4233/**
4234 * regulator_get_error_flags - get regulator error information
4235 * @regulator: regulator source
4236 * @flags: pointer to store error flags
4237 *
4238 * Get the current regulator error information.
4239 */
4240int regulator_get_error_flags(struct regulator *regulator,
4241 unsigned int *flags)
4242{
4243 return _regulator_get_error_flags(regulator->rdev, flags);
4244}
4245EXPORT_SYMBOL_GPL(regulator_get_error_flags);
4246
414c70cb 4247/**
e39ce48f 4248 * regulator_set_load - set regulator load
414c70cb
LG
4249 * @regulator: regulator source
4250 * @uA_load: load current
4251 *
4252 * Notifies the regulator core of a new device load. This is then used by
4253 * DRMS (if enabled by constraints) to set the most efficient regulator
4254 * operating mode for the new regulator loading.
4255 *
4256 * Consumer devices notify their supply regulator of the maximum power
4257 * they will require (can be taken from device datasheet in the power
4258 * consumption tables) when they change operational status and hence power
4259 * state. Examples of operational state changes that can affect power
4260 * consumption are :-
4261 *
4262 * o Device is opened / closed.
4263 * o Device I/O is about to begin or has just finished.
4264 * o Device is idling in between work.
4265 *
4266 * This information is also exported via sysfs to userspace.
4267 *
4268 * DRMS will sum the total requested load on the regulator and change
4269 * to the most efficient operating mode if platform constraints allow.
4270 *
5451781d
DA
4271 * NOTE: when a regulator consumer requests to have a regulator
4272 * disabled then any load that consumer requested no longer counts
4273 * toward the total requested load. If the regulator is re-enabled
4274 * then the previously requested load will start counting again.
4275 *
4276 * If a regulator is an always-on regulator then an individual consumer's
4277 * load will still be removed if that consumer is fully disabled.
4278 *
e39ce48f 4279 * On error a negative errno is returned.
414c70cb 4280 */
e39ce48f 4281int regulator_set_load(struct regulator *regulator, int uA_load)
414c70cb
LG
4282{
4283 struct regulator_dev *rdev = regulator->rdev;
5451781d
DA
4284 int old_uA_load;
4285 int ret = 0;
d92d95b6 4286
66cf9a7e 4287 regulator_lock(rdev);
5451781d 4288 old_uA_load = regulator->uA_load;
414c70cb 4289 regulator->uA_load = uA_load;
5451781d
DA
4290 if (regulator->enable_count && old_uA_load != uA_load) {
4291 ret = drms_uA_update(rdev);
4292 if (ret < 0)
4293 regulator->uA_load = old_uA_load;
4294 }
66cf9a7e 4295 regulator_unlock(rdev);
8460ef38 4296
414c70cb
LG
4297 return ret;
4298}
e39ce48f 4299EXPORT_SYMBOL_GPL(regulator_set_load);
414c70cb 4300
f59c8f9f
MB
4301/**
4302 * regulator_allow_bypass - allow the regulator to go into bypass mode
4303 *
4304 * @regulator: Regulator to configure
9345dfb8 4305 * @enable: enable or disable bypass mode
f59c8f9f
MB
4306 *
4307 * Allow the regulator to go into bypass mode if all other consumers
4308 * for the regulator also enable bypass mode and the machine
4309 * constraints allow this. Bypass mode means that the regulator is
4310 * simply passing the input directly to the output with no regulation.
4311 */
4312int regulator_allow_bypass(struct regulator *regulator, bool enable)
4313{
4314 struct regulator_dev *rdev = regulator->rdev;
4315 int ret = 0;
4316
4317 if (!rdev->desc->ops->set_bypass)
4318 return 0;
4319
8a34e979 4320 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_BYPASS))
f59c8f9f
MB
4321 return 0;
4322
66cf9a7e 4323 regulator_lock(rdev);
f59c8f9f
MB
4324
4325 if (enable && !regulator->bypass) {
4326 rdev->bypass_count++;
4327
4328 if (rdev->bypass_count == rdev->open_count) {
4329 ret = rdev->desc->ops->set_bypass(rdev, enable);
4330 if (ret != 0)
4331 rdev->bypass_count--;
4332 }
4333
4334 } else if (!enable && regulator->bypass) {
4335 rdev->bypass_count--;
4336
4337 if (rdev->bypass_count != rdev->open_count) {
4338 ret = rdev->desc->ops->set_bypass(rdev, enable);
4339 if (ret != 0)
4340 rdev->bypass_count++;
4341 }
4342 }
4343
4344 if (ret == 0)
4345 regulator->bypass = enable;
4346
66cf9a7e 4347 regulator_unlock(rdev);
f59c8f9f
MB
4348
4349 return ret;
4350}
4351EXPORT_SYMBOL_GPL(regulator_allow_bypass);
4352
414c70cb
LG
4353/**
4354 * regulator_register_notifier - register regulator event notifier
4355 * @regulator: regulator source
69279fb9 4356 * @nb: notifier block
414c70cb
LG
4357 *
4358 * Register notifier block to receive regulator events.
4359 */
4360int regulator_register_notifier(struct regulator *regulator,
4361 struct notifier_block *nb)
4362{
4363 return blocking_notifier_chain_register(&regulator->rdev->notifier,
4364 nb);
4365}
4366EXPORT_SYMBOL_GPL(regulator_register_notifier);
4367
4368/**
4369 * regulator_unregister_notifier - unregister regulator event notifier
4370 * @regulator: regulator source
69279fb9 4371 * @nb: notifier block
414c70cb
LG
4372 *
4373 * Unregister regulator event notifier block.
4374 */
4375int regulator_unregister_notifier(struct regulator *regulator,
4376 struct notifier_block *nb)
4377{
4378 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
4379 nb);
4380}
4381EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
4382
b136fb44
JC
4383/* notify regulator consumers and downstream regulator consumers.
4384 * Note mutex must be held by caller.
4385 */
7179569a 4386static int _notifier_call_chain(struct regulator_dev *rdev,
414c70cb
LG
4387 unsigned long event, void *data)
4388{
414c70cb 4389 /* call rdev chain first */
7179569a 4390 return blocking_notifier_call_chain(&rdev->notifier, event, data);
414c70cb
LG
4391}
4392
4393/**
4394 * regulator_bulk_get - get multiple regulator consumers
4395 *
4396 * @dev: Device to supply
4397 * @num_consumers: Number of consumers to register
4398 * @consumers: Configuration of consumers; clients are stored here.
4399 *
4400 * @return 0 on success, an errno on failure.
4401 *
4402 * This helper function allows drivers to get several regulator
4403 * consumers in one operation. If any of the regulators cannot be
4404 * acquired then any regulators that were allocated will be freed
4405 * before returning to the caller.
4406 */
4407int regulator_bulk_get(struct device *dev, int num_consumers,
4408 struct regulator_bulk_data *consumers)
4409{
4410 int i;
4411 int ret;
4412
4413 for (i = 0; i < num_consumers; i++)
4414 consumers[i].consumer = NULL;
4415
4416 for (i = 0; i < num_consumers; i++) {
565f9b07
BA
4417 consumers[i].consumer = regulator_get(dev,
4418 consumers[i].supply);
414c70cb 4419 if (IS_ERR(consumers[i].consumer)) {
414c70cb
LG
4420 ret = PTR_ERR(consumers[i].consumer);
4421 consumers[i].consumer = NULL;
4422 goto err;
4423 }
4424 }
4425
4426 return 0;
4427
4428err:
b9816363
JRO
4429 if (ret != -EPROBE_DEFER)
4430 dev_err(dev, "Failed to get supply '%s': %d\n",
4431 consumers[i].supply, ret);
4432 else
4433 dev_dbg(dev, "Failed to get supply '%s', deferring\n",
4434 consumers[i].supply);
4435
b29c7690 4436 while (--i >= 0)
414c70cb
LG
4437 regulator_put(consumers[i].consumer);
4438
4439 return ret;
4440}
4441EXPORT_SYMBOL_GPL(regulator_bulk_get);
4442
f21e0e81
MB
4443static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
4444{
4445 struct regulator_bulk_data *bulk = data;
4446
4447 bulk->ret = regulator_enable(bulk->consumer);
4448}
4449
414c70cb
LG
4450/**
4451 * regulator_bulk_enable - enable multiple regulator consumers
4452 *
4453 * @num_consumers: Number of consumers
4454 * @consumers: Consumer data; clients are stored here.
4455 * @return 0 on success, an errno on failure
4456 *
4457 * This convenience API allows consumers to enable multiple regulator
4458 * clients in a single API call. If any consumers cannot be enabled
4459 * then any others that were enabled will be disabled again prior to
4460 * return.
4461 */
4462int regulator_bulk_enable(int num_consumers,
4463 struct regulator_bulk_data *consumers)
4464{
2955b47d 4465 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
414c70cb 4466 int i;
f21e0e81 4467 int ret = 0;
414c70cb 4468
6492bc1b 4469 for (i = 0; i < num_consumers; i++) {
5451781d
DA
4470 async_schedule_domain(regulator_bulk_enable_async,
4471 &consumers[i], &async_domain);
6492bc1b 4472 }
f21e0e81
MB
4473
4474 async_synchronize_full_domain(&async_domain);
4475
4476 /* If any consumer failed we need to unwind any that succeeded */
414c70cb 4477 for (i = 0; i < num_consumers; i++) {
f21e0e81
MB
4478 if (consumers[i].ret != 0) {
4479 ret = consumers[i].ret;
414c70cb 4480 goto err;
f21e0e81 4481 }
414c70cb
LG
4482 }
4483
4484 return 0;
4485
4486err:
fbe31057
AH
4487 for (i = 0; i < num_consumers; i++) {
4488 if (consumers[i].ret < 0)
4489 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
4490 consumers[i].ret);
4491 else
4492 regulator_disable(consumers[i].consumer);
4493 }
414c70cb
LG
4494
4495 return ret;
4496}
4497EXPORT_SYMBOL_GPL(regulator_bulk_enable);
4498
4499/**
4500 * regulator_bulk_disable - disable multiple regulator consumers
4501 *
4502 * @num_consumers: Number of consumers
4503 * @consumers: Consumer data; clients are stored here.
4504 * @return 0 on success, an errno on failure
4505 *
4506 * This convenience API allows consumers to disable multiple regulator
49e22632
SN
4507 * clients in a single API call. If any consumers cannot be disabled
4508 * then any others that were disabled will be enabled again prior to
414c70cb
LG
4509 * return.
4510 */
4511int regulator_bulk_disable(int num_consumers,
4512 struct regulator_bulk_data *consumers)
4513{
4514 int i;
01e86f49 4515 int ret, r;
414c70cb 4516
49e22632 4517 for (i = num_consumers - 1; i >= 0; --i) {
414c70cb
LG
4518 ret = regulator_disable(consumers[i].consumer);
4519 if (ret != 0)
4520 goto err;
4521 }
4522
4523 return 0;
4524
4525err:
5da84fd9 4526 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
01e86f49
MB
4527 for (++i; i < num_consumers; ++i) {
4528 r = regulator_enable(consumers[i].consumer);
4529 if (r != 0)
d1642ea7 4530 pr_err("Failed to re-enable %s: %d\n",
01e86f49
MB
4531 consumers[i].supply, r);
4532 }
414c70cb
LG
4533
4534 return ret;
4535}
4536EXPORT_SYMBOL_GPL(regulator_bulk_disable);
4537
e1de2f42
DK
4538/**
4539 * regulator_bulk_force_disable - force disable multiple regulator consumers
4540 *
4541 * @num_consumers: Number of consumers
4542 * @consumers: Consumer data; clients are stored here.
4543 * @return 0 on success, an errno on failure
4544 *
4545 * This convenience API allows consumers to forcibly disable multiple regulator
4546 * clients in a single API call.
4547 * NOTE: This should be used for situations when device damage will
4548 * likely occur if the regulators are not disabled (e.g. over temp).
4549 * Although regulator_force_disable function call for some consumers can
4550 * return error numbers, the function is called for all consumers.
4551 */
4552int regulator_bulk_force_disable(int num_consumers,
4553 struct regulator_bulk_data *consumers)
4554{
4555 int i;
b8c77ff6 4556 int ret = 0;
e1de2f42 4557
b8c77ff6 4558 for (i = 0; i < num_consumers; i++) {
e1de2f42
DK
4559 consumers[i].ret =
4560 regulator_force_disable(consumers[i].consumer);
4561
b8c77ff6
DT
4562 /* Store first error for reporting */
4563 if (consumers[i].ret && !ret)
e1de2f42 4564 ret = consumers[i].ret;
e1de2f42
DK
4565 }
4566
e1de2f42
DK
4567 return ret;
4568}
4569EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
4570
414c70cb
LG
4571/**
4572 * regulator_bulk_free - free multiple regulator consumers
4573 *
4574 * @num_consumers: Number of consumers
4575 * @consumers: Consumer data; clients are stored here.
4576 *
4577 * This convenience API allows consumers to free multiple regulator
4578 * clients in a single API call.
4579 */
4580void regulator_bulk_free(int num_consumers,
4581 struct regulator_bulk_data *consumers)
4582{
4583 int i;
4584
4585 for (i = 0; i < num_consumers; i++) {
4586 regulator_put(consumers[i].consumer);
4587 consumers[i].consumer = NULL;
4588 }
4589}
4590EXPORT_SYMBOL_GPL(regulator_bulk_free);
4591
4592/**
4593 * regulator_notifier_call_chain - call regulator event notifier
69279fb9 4594 * @rdev: regulator source
414c70cb 4595 * @event: notifier block
69279fb9 4596 * @data: callback-specific data.
414c70cb
LG
4597 *
4598 * Called by regulator drivers to notify clients a regulator event has
4599 * occurred. We also notify regulator clients downstream.
b136fb44 4600 * Note lock must be held by caller.
414c70cb
LG
4601 */
4602int regulator_notifier_call_chain(struct regulator_dev *rdev,
4603 unsigned long event, void *data)
4604{
f8702f9e 4605 lockdep_assert_held_once(&rdev->mutex.base);
70cfef26 4606
414c70cb
LG
4607 _notifier_call_chain(rdev, event, data);
4608 return NOTIFY_DONE;
4609
4610}
4611EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
4612
be721979
MB
4613/**
4614 * regulator_mode_to_status - convert a regulator mode into a status
4615 *
4616 * @mode: Mode to convert
4617 *
4618 * Convert a regulator mode into a status.
4619 */
4620int regulator_mode_to_status(unsigned int mode)
4621{
4622 switch (mode) {
4623 case REGULATOR_MODE_FAST:
4624 return REGULATOR_STATUS_FAST;
4625 case REGULATOR_MODE_NORMAL:
4626 return REGULATOR_STATUS_NORMAL;
4627 case REGULATOR_MODE_IDLE:
4628 return REGULATOR_STATUS_IDLE;
03ffcf3d 4629 case REGULATOR_MODE_STANDBY:
be721979
MB
4630 return REGULATOR_STATUS_STANDBY;
4631 default:
1beaf762 4632 return REGULATOR_STATUS_UNDEFINED;
be721979
MB
4633 }
4634}
4635EXPORT_SYMBOL_GPL(regulator_mode_to_status);
4636
39f802d6
TI
4637static struct attribute *regulator_dev_attrs[] = {
4638 &dev_attr_name.attr,
4639 &dev_attr_num_users.attr,
4640 &dev_attr_type.attr,
4641 &dev_attr_microvolts.attr,
4642 &dev_attr_microamps.attr,
4643 &dev_attr_opmode.attr,
4644 &dev_attr_state.attr,
4645 &dev_attr_status.attr,
4646 &dev_attr_bypass.attr,
4647 &dev_attr_requested_microamps.attr,
4648 &dev_attr_min_microvolts.attr,
4649 &dev_attr_max_microvolts.attr,
4650 &dev_attr_min_microamps.attr,
4651 &dev_attr_max_microamps.attr,
4652 &dev_attr_suspend_standby_state.attr,
4653 &dev_attr_suspend_mem_state.attr,
4654 &dev_attr_suspend_disk_state.attr,
4655 &dev_attr_suspend_standby_microvolts.attr,
4656 &dev_attr_suspend_mem_microvolts.attr,
4657 &dev_attr_suspend_disk_microvolts.attr,
4658 &dev_attr_suspend_standby_mode.attr,
4659 &dev_attr_suspend_mem_mode.attr,
4660 &dev_attr_suspend_disk_mode.attr,
4661 NULL
4662};
4663
7ad68e2f
DB
4664/*
4665 * To avoid cluttering sysfs (and memory) with useless state, only
4666 * create attributes that can be meaningfully displayed.
4667 */
39f802d6
TI
4668static umode_t regulator_attr_is_visible(struct kobject *kobj,
4669 struct attribute *attr, int idx)
7ad68e2f 4670{
39f802d6 4671 struct device *dev = kobj_to_dev(kobj);
83080a14 4672 struct regulator_dev *rdev = dev_to_rdev(dev);
272e2315 4673 const struct regulator_ops *ops = rdev->desc->ops;
39f802d6
TI
4674 umode_t mode = attr->mode;
4675
4676 /* these three are always present */
4677 if (attr == &dev_attr_name.attr ||
4678 attr == &dev_attr_num_users.attr ||
4679 attr == &dev_attr_type.attr)
4680 return mode;
7ad68e2f
DB
4681
4682 /* some attributes need specific methods to be displayed */
39f802d6
TI
4683 if (attr == &dev_attr_microvolts.attr) {
4684 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
4685 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
4686 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
4687 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
4688 return mode;
4689 return 0;
f59c8f9f 4690 }
7ad68e2f 4691
39f802d6
TI
4692 if (attr == &dev_attr_microamps.attr)
4693 return ops->get_current_limit ? mode : 0;
4694
4695 if (attr == &dev_attr_opmode.attr)
4696 return ops->get_mode ? mode : 0;
4697
4698 if (attr == &dev_attr_state.attr)
4699 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
4700
4701 if (attr == &dev_attr_status.attr)
4702 return ops->get_status ? mode : 0;
4703
4704 if (attr == &dev_attr_bypass.attr)
4705 return ops->get_bypass ? mode : 0;
4706
7ad68e2f 4707 /* constraints need specific supporting methods */
39f802d6
TI
4708 if (attr == &dev_attr_min_microvolts.attr ||
4709 attr == &dev_attr_max_microvolts.attr)
4710 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
4711
4712 if (attr == &dev_attr_min_microamps.attr ||
4713 attr == &dev_attr_max_microamps.attr)
4714 return ops->set_current_limit ? mode : 0;
4715
4716 if (attr == &dev_attr_suspend_standby_state.attr ||
4717 attr == &dev_attr_suspend_mem_state.attr ||
4718 attr == &dev_attr_suspend_disk_state.attr)
4719 return mode;
4720
4721 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
4722 attr == &dev_attr_suspend_mem_microvolts.attr ||
4723 attr == &dev_attr_suspend_disk_microvolts.attr)
4724 return ops->set_suspend_voltage ? mode : 0;
4725
4726 if (attr == &dev_attr_suspend_standby_mode.attr ||
4727 attr == &dev_attr_suspend_mem_mode.attr ||
4728 attr == &dev_attr_suspend_disk_mode.attr)
4729 return ops->set_suspend_mode ? mode : 0;
4730
4731 return mode;
4732}
4733
4734static const struct attribute_group regulator_dev_group = {
4735 .attrs = regulator_dev_attrs,
4736 .is_visible = regulator_attr_is_visible,
4737};
4738
4739static const struct attribute_group *regulator_dev_groups[] = {
4740 &regulator_dev_group,
4741 NULL
4742};
7ad68e2f 4743
39f802d6
TI
4744static void regulator_dev_release(struct device *dev)
4745{
4746 struct regulator_dev *rdev = dev_get_drvdata(dev);
29f5f486
MB
4747
4748 kfree(rdev->constraints);
4749 of_node_put(rdev->dev.of_node);
39f802d6 4750 kfree(rdev);
7ad68e2f
DB
4751}
4752
1130e5b3
MB
4753static void rdev_init_debugfs(struct regulator_dev *rdev)
4754{
a9eaa813
GR
4755 struct device *parent = rdev->dev.parent;
4756 const char *rname = rdev_get_name(rdev);
4757 char name[NAME_MAX];
4758
4759 /* Avoid duplicate debugfs directory names */
4760 if (parent && rname == rdev->desc->name) {
4761 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
4762 rname);
4763 rname = name;
4764 }
4765
4766 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
24751434 4767 if (!rdev->debugfs) {
1130e5b3 4768 rdev_warn(rdev, "Failed to create debugfs directory\n");
1130e5b3
MB
4769 return;
4770 }
4771
4772 debugfs_create_u32("use_count", 0444, rdev->debugfs,
4773 &rdev->use_count);
4774 debugfs_create_u32("open_count", 0444, rdev->debugfs,
4775 &rdev->open_count);
f59c8f9f
MB
4776 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
4777 &rdev->bypass_count);
1130e5b3
MB
4778}
4779
5e3ca2b3
JMC
4780static int regulator_register_resolve_supply(struct device *dev, void *data)
4781{
7ddede6a
JH
4782 struct regulator_dev *rdev = dev_to_rdev(dev);
4783
4784 if (regulator_resolve_supply(rdev))
4785 rdev_dbg(rdev, "unable to resolve supply\n");
4786
4787 return 0;
5e3ca2b3
JMC
4788}
4789
d8ca7d18
DO
4790int regulator_coupler_register(struct regulator_coupler *coupler)
4791{
4792 mutex_lock(&regulator_list_mutex);
4793 list_add_tail(&coupler->list, &regulator_coupler_list);
4794 mutex_unlock(&regulator_list_mutex);
4795
4796 return 0;
4797}
4798
4799static struct regulator_coupler *
4800regulator_find_coupler(struct regulator_dev *rdev)
4801{
4802 struct regulator_coupler *coupler;
4803 int err;
4804
4805 /*
4806 * Note that regulators are appended to the list and the generic
4807 * coupler is registered first, hence it will be attached at last
4808 * if nobody cared.
4809 */
4810 list_for_each_entry_reverse(coupler, &regulator_coupler_list, list) {
4811 err = coupler->attach_regulator(coupler, rdev);
4812 if (!err) {
4813 if (!coupler->balance_voltage &&
4814 rdev->coupling_desc.n_coupled > 2)
4815 goto err_unsupported;
4816
4817 return coupler;
4818 }
4819
4820 if (err < 0)
4821 return ERR_PTR(err);
4822
4823 if (err == 1)
4824 continue;
4825
4826 break;
4827 }
4828
4829 return ERR_PTR(-EINVAL);
4830
4831err_unsupported:
4832 if (coupler->detach_regulator)
4833 coupler->detach_regulator(coupler, rdev);
4834
4835 rdev_err(rdev,
4836 "Voltage balancing for multiple regulator couples is unimplemented\n");
4837
4838 return ERR_PTR(-EPERM);
4839}
4840
f9503385 4841static void regulator_resolve_coupling(struct regulator_dev *rdev)
d3d64537 4842{
d8ca7d18 4843 struct regulator_coupler *coupler = rdev->coupling_desc.coupler;
d3d64537
MP
4844 struct coupling_desc *c_desc = &rdev->coupling_desc;
4845 int n_coupled = c_desc->n_coupled;
4846 struct regulator_dev *c_rdev;
4847 int i;
4848
4849 for (i = 1; i < n_coupled; i++) {
4850 /* already resolved */
4851 if (c_desc->coupled_rdevs[i])
4852 continue;
4853
4854 c_rdev = of_parse_coupled_regulator(rdev, i - 1);
4855
f9503385
DO
4856 if (!c_rdev)
4857 continue;
d3d64537 4858
d8ca7d18
DO
4859 if (c_rdev->coupling_desc.coupler != coupler) {
4860 rdev_err(rdev, "coupler mismatch with %s\n",
4861 rdev_get_name(c_rdev));
4862 return;
4863 }
4864
f9503385 4865 regulator_lock(c_rdev);
d3d64537 4866
f9503385
DO
4867 c_desc->coupled_rdevs[i] = c_rdev;
4868 c_desc->n_resolved++;
d3d64537 4869
f9503385 4870 regulator_unlock(c_rdev);
d3d64537 4871
f9503385
DO
4872 regulator_resolve_coupling(c_rdev);
4873 }
d3d64537
MP
4874}
4875
6303f3e7 4876static void regulator_remove_coupling(struct regulator_dev *rdev)
d3d64537 4877{
d8ca7d18 4878 struct regulator_coupler *coupler = rdev->coupling_desc.coupler;
6303f3e7
DO
4879 struct coupling_desc *__c_desc, *c_desc = &rdev->coupling_desc;
4880 struct regulator_dev *__c_rdev, *c_rdev;
4881 unsigned int __n_coupled, n_coupled;
4882 int i, k;
d8ca7d18 4883 int err;
d3d64537 4884
6303f3e7 4885 n_coupled = c_desc->n_coupled;
d3d64537 4886
6303f3e7
DO
4887 for (i = 1; i < n_coupled; i++) {
4888 c_rdev = c_desc->coupled_rdevs[i];
d3d64537 4889
6303f3e7
DO
4890 if (!c_rdev)
4891 continue;
4892
4893 regulator_lock(c_rdev);
4894
4895 __c_desc = &c_rdev->coupling_desc;
4896 __n_coupled = __c_desc->n_coupled;
4897
4898 for (k = 1; k < __n_coupled; k++) {
4899 __c_rdev = __c_desc->coupled_rdevs[k];
4900
4901 if (__c_rdev == rdev) {
4902 __c_desc->coupled_rdevs[k] = NULL;
4903 __c_desc->n_resolved--;
4904 break;
4905 }
4906 }
4907
4908 regulator_unlock(c_rdev);
4909
4910 c_desc->coupled_rdevs[i] = NULL;
4911 c_desc->n_resolved--;
4912 }
d8ca7d18
DO
4913
4914 if (coupler && coupler->detach_regulator) {
4915 err = coupler->detach_regulator(coupler, rdev);
4916 if (err)
4917 rdev_err(rdev, "failed to detach from coupler: %d\n",
4918 err);
4919 }
4920
4921 kfree(rdev->coupling_desc.coupled_rdevs);
4922 rdev->coupling_desc.coupled_rdevs = NULL;
d3d64537
MP
4923}
4924
f9503385 4925static int regulator_init_coupling(struct regulator_dev *rdev)
d3d64537 4926{
d8ca7d18
DO
4927 int err, n_phandles;
4928 size_t alloc_size;
d3d64537
MP
4929
4930 if (!IS_ENABLED(CONFIG_OF))
4931 n_phandles = 0;
4932 else
4933 n_phandles = of_get_n_coupled(rdev);
4934
d8ca7d18
DO
4935 alloc_size = sizeof(*rdev) * (n_phandles + 1);
4936
4937 rdev->coupling_desc.coupled_rdevs = kzalloc(alloc_size, GFP_KERNEL);
4938 if (!rdev->coupling_desc.coupled_rdevs)
4939 return -ENOMEM;
d3d64537
MP
4940
4941 /*
4942 * Every regulator should always have coupling descriptor filled with
4943 * at least pointer to itself.
4944 */
4945 rdev->coupling_desc.coupled_rdevs[0] = rdev;
4946 rdev->coupling_desc.n_coupled = n_phandles + 1;
4947 rdev->coupling_desc.n_resolved++;
4948
4949 /* regulator isn't coupled */
4950 if (n_phandles == 0)
4951 return 0;
4952
d8ca7d18 4953 if (!of_check_coupling_data(rdev))
d3d64537 4954 return -EPERM;
d3d64537 4955
d8ca7d18
DO
4956 rdev->coupling_desc.coupler = regulator_find_coupler(rdev);
4957 if (IS_ERR(rdev->coupling_desc.coupler)) {
4958 err = PTR_ERR(rdev->coupling_desc.coupler);
4959 rdev_err(rdev, "failed to get coupler: %d\n", err);
4960 return err;
d3d64537
MP
4961 }
4962
d8ca7d18
DO
4963 return 0;
4964}
4965
4966static int generic_coupler_attach(struct regulator_coupler *coupler,
4967 struct regulator_dev *rdev)
4968{
4969 if (rdev->coupling_desc.n_coupled > 2) {
4970 rdev_err(rdev,
4971 "Voltage balancing for multiple regulator couples is unimplemented\n");
d3d64537 4972 return -EPERM;
d8ca7d18 4973 }
d3d64537 4974
e381bfe4
DO
4975 if (!rdev->constraints->always_on) {
4976 rdev_err(rdev,
4977 "Coupling of a non always-on regulator is unimplemented\n");
4978 return -ENOTSUPP;
4979 }
4980
d3d64537
MP
4981 return 0;
4982}
4983
d8ca7d18
DO
4984static struct regulator_coupler generic_regulator_coupler = {
4985 .attach_regulator = generic_coupler_attach,
4986};
4987
414c70cb
LG
4988/**
4989 * regulator_register - register regulator
69279fb9 4990 * @regulator_desc: regulator to register
f47531b1 4991 * @cfg: runtime configuration for regulator
414c70cb
LG
4992 *
4993 * Called by regulator drivers to register a regulator.
0384618a
AL
4994 * Returns a valid pointer to struct regulator_dev on success
4995 * or an ERR_PTR() on error.
414c70cb 4996 */
65f26846
MB
4997struct regulator_dev *
4998regulator_register(const struct regulator_desc *regulator_desc,
1b3de223 4999 const struct regulator_config *cfg)
414c70cb 5000{
9a8f5e07 5001 const struct regulation_constraints *constraints = NULL;
c172708d 5002 const struct regulator_init_data *init_data;
1b3de223 5003 struct regulator_config *config = NULL;
72dca06f 5004 static atomic_t regulator_no = ATOMIC_INIT(-1);
414c70cb 5005 struct regulator_dev *rdev;
0edb040d
LW
5006 bool dangling_cfg_gpiod = false;
5007 bool dangling_of_gpiod = false;
a3cde953 5008 bool reg_device_fail = false;
32c8fad4 5009 struct device *dev;
a5766f11 5010 int ret, i;
414c70cb 5011
0edb040d 5012 if (cfg == NULL)
414c70cb 5013 return ERR_PTR(-EINVAL);
0edb040d
LW
5014 if (cfg->ena_gpiod)
5015 dangling_cfg_gpiod = true;
5016 if (regulator_desc == NULL) {
5017 ret = -EINVAL;
5018 goto rinse;
5019 }
414c70cb 5020
1b3de223 5021 dev = cfg->dev;
dcf70112 5022 WARN_ON(!dev);
32c8fad4 5023
0edb040d
LW
5024 if (regulator_desc->name == NULL || regulator_desc->ops == NULL) {
5025 ret = -EINVAL;
5026 goto rinse;
5027 }
414c70cb 5028
cd78dfc6 5029 if (regulator_desc->type != REGULATOR_VOLTAGE &&
0edb040d
LW
5030 regulator_desc->type != REGULATOR_CURRENT) {
5031 ret = -EINVAL;
5032 goto rinse;
5033 }
414c70cb 5034
476c2d83
MB
5035 /* Only one of each should be implemented */
5036 WARN_ON(regulator_desc->ops->get_voltage &&
5037 regulator_desc->ops->get_voltage_sel);
e8eef82b
MB
5038 WARN_ON(regulator_desc->ops->set_voltage &&
5039 regulator_desc->ops->set_voltage_sel);
476c2d83
MB
5040
5041 /* If we're using selectors we must implement list_voltage. */
5042 if (regulator_desc->ops->get_voltage_sel &&
5043 !regulator_desc->ops->list_voltage) {
0edb040d
LW
5044 ret = -EINVAL;
5045 goto rinse;
476c2d83 5046 }
e8eef82b
MB
5047 if (regulator_desc->ops->set_voltage_sel &&
5048 !regulator_desc->ops->list_voltage) {
0edb040d
LW
5049 ret = -EINVAL;
5050 goto rinse;
e8eef82b 5051 }
476c2d83 5052
414c70cb 5053 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
0edb040d
LW
5054 if (rdev == NULL) {
5055 ret = -ENOMEM;
5056 goto rinse;
5057 }
414c70cb 5058
1b3de223
KK
5059 /*
5060 * Duplicate the config so the driver could override it after
5061 * parsing init data.
5062 */
5063 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
5064 if (config == NULL) {
5065 kfree(rdev);
0edb040d
LW
5066 ret = -ENOMEM;
5067 goto rinse;
1b3de223
KK
5068 }
5069
bfa21a0d 5070 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
a0c7b164 5071 &rdev->dev.of_node);
f8970d34
MF
5072
5073 /*
5074 * Sometimes not all resources are probed already so we need to take
5075 * that into account. This happens most the time if the ena_gpiod comes
5076 * from a gpio extender or something else.
5077 */
5078 if (PTR_ERR(init_data) == -EPROBE_DEFER) {
5079 kfree(config);
5080 kfree(rdev);
5081 ret = -EPROBE_DEFER;
5082 goto rinse;
5083 }
5084
0edb040d
LW
5085 /*
5086 * We need to keep track of any GPIO descriptor coming from the
5087 * device tree until we have handled it over to the core. If the
5088 * config that was passed in to this function DOES NOT contain
5089 * a descriptor, and the config after this call DOES contain
48f1b4ef 5090 * a descriptor, we definitely got one from parsing the device
0edb040d
LW
5091 * tree.
5092 */
5093 if (!cfg->ena_gpiod && config->ena_gpiod)
5094 dangling_of_gpiod = true;
a0c7b164
MB
5095 if (!init_data) {
5096 init_data = config->init_data;
5097 rdev->dev.of_node = of_node_get(config->of_node);
5098 }
5099
f8702f9e 5100 ww_mutex_init(&rdev->mutex, &regulator_ww_class);
c172708d 5101 rdev->reg_data = config->driver_data;
414c70cb
LG
5102 rdev->owner = regulator_desc->owner;
5103 rdev->desc = regulator_desc;
3a4b0a07
MB
5104 if (config->regmap)
5105 rdev->regmap = config->regmap;
52b84dac 5106 else if (dev_get_regmap(dev, NULL))
3a4b0a07 5107 rdev->regmap = dev_get_regmap(dev, NULL);
52b84dac
AC
5108 else if (dev->parent)
5109 rdev->regmap = dev_get_regmap(dev->parent, NULL);
414c70cb 5110 INIT_LIST_HEAD(&rdev->consumer_list);
414c70cb 5111 INIT_LIST_HEAD(&rdev->list);
414c70cb 5112 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
da07ecd9 5113 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
414c70cb 5114
a5766f11 5115 /* preform any regulator specific init */
9a8f5e07 5116 if (init_data && init_data->regulator_init) {
a5766f11 5117 ret = init_data->regulator_init(rdev->reg_data);
4fca9545
DB
5118 if (ret < 0)
5119 goto clean;
a5766f11
LG
5120 }
5121
541d052d 5122 if (config->ena_gpiod) {
45389c47 5123 mutex_lock(&regulator_list_mutex);
daad134d 5124 ret = regulator_ena_gpio_request(rdev, config);
45389c47 5125 mutex_unlock(&regulator_list_mutex);
daad134d 5126 if (ret != 0) {
541d052d
LW
5127 rdev_err(rdev, "Failed to request enable GPIO: %d\n",
5128 ret);
32165230 5129 goto clean;
daad134d 5130 }
0edb040d
LW
5131 /* The regulator core took over the GPIO descriptor */
5132 dangling_cfg_gpiod = false;
5133 dangling_of_gpiod = false;
daad134d
KA
5134 }
5135
a5766f11 5136 /* register with sysfs */
414c70cb 5137 rdev->dev.class = &regulator_class;
a5766f11 5138 rdev->dev.parent = dev;
72dca06f 5139 dev_set_name(&rdev->dev, "regulator.%lu",
39138818 5140 (unsigned long) atomic_inc_return(&regulator_no));
a5766f11 5141
74f544c1 5142 /* set regulator constraints */
9a8f5e07
MB
5143 if (init_data)
5144 constraints = &init_data->constraints;
5145
9a8f5e07 5146 if (init_data && init_data->supply_regulator)
6261b06d 5147 rdev->supply_name = init_data->supply_regulator;
69511a45 5148 else if (regulator_desc->supply_name)
6261b06d 5149 rdev->supply_name = regulator_desc->supply_name;
0178f3e2 5150
45389c47
JH
5151 /*
5152 * Attempt to resolve the regulator supply, if specified,
5153 * but don't return an error if we fail because we will try
5154 * to resolve it again later as more regulators are added.
5155 */
5156 if (regulator_resolve_supply(rdev))
5157 rdev_dbg(rdev, "unable to resolve supply\n");
5158
5159 ret = set_machine_constraints(rdev, constraints);
5160 if (ret < 0)
5161 goto wash;
5162
d8ca7d18 5163 mutex_lock(&regulator_list_mutex);
f9503385 5164 ret = regulator_init_coupling(rdev);
d8ca7d18 5165 mutex_unlock(&regulator_list_mutex);
f9503385 5166 if (ret < 0)
d3d64537
MP
5167 goto wash;
5168
a5766f11 5169 /* add consumers devices */
9a8f5e07 5170 if (init_data) {
45389c47 5171 mutex_lock(&regulator_list_mutex);
9a8f5e07
MB
5172 for (i = 0; i < init_data->num_consumer_supplies; i++) {
5173 ret = set_consumer_device_supply(rdev,
9a8f5e07 5174 init_data->consumer_supplies[i].dev_name,
23c2f041 5175 init_data->consumer_supplies[i].supply);
9a8f5e07 5176 if (ret < 0) {
45389c47 5177 mutex_unlock(&regulator_list_mutex);
9a8f5e07
MB
5178 dev_err(dev, "Failed to set supply %s\n",
5179 init_data->consumer_supplies[i].supply);
5180 goto unset_supplies;
5181 }
23c2f041 5182 }
45389c47 5183 mutex_unlock(&regulator_list_mutex);
414c70cb 5184 }
a5766f11 5185
fd086045
MK
5186 if (!rdev->desc->ops->get_voltage &&
5187 !rdev->desc->ops->list_voltage &&
5188 !rdev->desc->fixed_uV)
5189 rdev->is_switch = true;
5190
fb6de923 5191 dev_set_drvdata(&rdev->dev, rdev);
c438b9d0
JH
5192 ret = device_register(&rdev->dev);
5193 if (ret != 0) {
a3cde953 5194 reg_device_fail = true;
c438b9d0
JH
5195 goto unset_supplies;
5196 }
5197
1130e5b3 5198 rdev_init_debugfs(rdev);
5e3ca2b3 5199
f9503385
DO
5200 /* try to resolve regulators coupling since a new one was registered */
5201 mutex_lock(&regulator_list_mutex);
5202 regulator_resolve_coupling(rdev);
5203 mutex_unlock(&regulator_list_mutex);
5204
5e3ca2b3
JMC
5205 /* try to resolve regulators supply since a new one was registered */
5206 class_for_each_device(&regulator_class, NULL, NULL,
5207 regulator_register_resolve_supply);
1b3de223 5208 kfree(config);
414c70cb 5209 return rdev;
4fca9545 5210
d4033b54 5211unset_supplies:
45389c47 5212 mutex_lock(&regulator_list_mutex);
d4033b54 5213 unset_regulator_supplies(rdev);
d8ca7d18 5214 regulator_remove_coupling(rdev);
45389c47 5215 mutex_unlock(&regulator_list_mutex);
32165230 5216wash:
26c2c997 5217 kfree(rdev->coupling_desc.coupled_rdevs);
469b640e 5218 kfree(rdev->constraints);
45389c47 5219 mutex_lock(&regulator_list_mutex);
32165230 5220 regulator_ena_gpio_free(rdev);
45389c47 5221 mutex_unlock(&regulator_list_mutex);
4fca9545 5222clean:
0edb040d
LW
5223 if (dangling_of_gpiod)
5224 gpiod_put(config->ena_gpiod);
a3cde953
WY
5225 if (reg_device_fail)
5226 put_device(&rdev->dev);
5227 else
5228 kfree(rdev);
a2151374 5229 kfree(config);
0edb040d
LW
5230rinse:
5231 if (dangling_cfg_gpiod)
5232 gpiod_put(cfg->ena_gpiod);
a2151374 5233 return ERR_PTR(ret);
414c70cb
LG
5234}
5235EXPORT_SYMBOL_GPL(regulator_register);
5236
5237/**
5238 * regulator_unregister - unregister regulator
69279fb9 5239 * @rdev: regulator to unregister
414c70cb
LG
5240 *
5241 * Called by regulator drivers to unregister a regulator.
5242 */
5243void regulator_unregister(struct regulator_dev *rdev)
5244{
5245 if (rdev == NULL)
5246 return;
5247
891636ea
MB
5248 if (rdev->supply) {
5249 while (rdev->use_count--)
5250 regulator_disable(rdev->supply);
e032b376 5251 regulator_put(rdev->supply);
891636ea 5252 }
ff9b34b6 5253
06377301
CK
5254 flush_work(&rdev->disable_work.work);
5255
414c70cb 5256 mutex_lock(&regulator_list_mutex);
ff9b34b6 5257
1130e5b3 5258 debugfs_remove_recursive(rdev->debugfs);
6bf87d17 5259 WARN_ON(rdev->open_count);
6303f3e7 5260 regulator_remove_coupling(rdev);
0f1d747b 5261 unset_regulator_supplies(rdev);
414c70cb 5262 list_del(&rdev->list);
f19b00da 5263 regulator_ena_gpio_free(rdev);
58fb5cf5 5264 device_unregister(&rdev->dev);
ff9b34b6
DO
5265
5266 mutex_unlock(&regulator_list_mutex);
414c70cb
LG
5267}
5268EXPORT_SYMBOL_GPL(regulator_unregister);
5269
f7efad10 5270#ifdef CONFIG_SUSPEND
414c70cb 5271/**
0380cf7d 5272 * regulator_suspend - prepare regulators for system wide suspend
1efef7cc 5273 * @dev: ``&struct device`` pointer that is passed to _regulator_suspend()
414c70cb
LG
5274 *
5275 * Configure each regulator with it's suspend operating parameters for state.
414c70cb 5276 */
0380cf7d 5277static int regulator_suspend(struct device *dev)
414c70cb 5278{
cd7e36ab 5279 struct regulator_dev *rdev = dev_to_rdev(dev);
f7efad10 5280 suspend_state_t state = pm_suspend_target_state;
cd7e36ab
MS
5281 int ret;
5282
5283 regulator_lock(rdev);
5284 ret = suspend_set_state(rdev, state);
5285 regulator_unlock(rdev);
414c70cb 5286
cd7e36ab 5287 return ret;
85f3b431 5288}
d3e4eccb 5289
cd7e36ab 5290static int regulator_resume(struct device *dev)
85f3b431 5291{
cd7e36ab 5292 suspend_state_t state = pm_suspend_target_state;
85f3b431 5293 struct regulator_dev *rdev = dev_to_rdev(dev);
f7efad10 5294 struct regulator_state *rstate;
cd7e36ab 5295 int ret = 0;
f7efad10 5296
cd7e36ab 5297 rstate = regulator_get_suspend_state(rdev, state);
f7efad10 5298 if (rstate == NULL)
35b5f14e 5299 return 0;
414c70cb 5300
66cf9a7e 5301 regulator_lock(rdev);
85f3b431 5302
0380cf7d 5303 if (rdev->desc->ops->resume &&
f7efad10
CZ
5304 (rstate->enabled == ENABLE_IN_SUSPEND ||
5305 rstate->enabled == DISABLE_IN_SUSPEND))
0380cf7d 5306 ret = rdev->desc->ops->resume(rdev);
f7efad10 5307
66cf9a7e 5308 regulator_unlock(rdev);
85f3b431 5309
f7efad10 5310 return ret;
414c70cb 5311}
f7efad10
CZ
5312#else /* !CONFIG_SUSPEND */
5313
0380cf7d 5314#define regulator_suspend NULL
5315#define regulator_resume NULL
f7efad10
CZ
5316
5317#endif /* !CONFIG_SUSPEND */
5318
5319#ifdef CONFIG_PM
5320static const struct dev_pm_ops __maybe_unused regulator_pm_ops = {
0380cf7d 5321 .suspend = regulator_suspend,
5322 .resume = regulator_resume,
f7efad10
CZ
5323};
5324#endif
5325
285c22de 5326struct class regulator_class = {
f7efad10
CZ
5327 .name = "regulator",
5328 .dev_release = regulator_dev_release,
5329 .dev_groups = regulator_dev_groups,
5330#ifdef CONFIG_PM
5331 .pm = &regulator_pm_ops,
5332#endif
5333};
ca725561
MB
5334/**
5335 * regulator_has_full_constraints - the system has fully specified constraints
5336 *
5337 * Calling this function will cause the regulator API to disable all
5338 * regulators which have a zero use count and don't have an always_on
5339 * constraint in a late_initcall.
5340 *
5341 * The intention is that this will become the default behaviour in a
5342 * future kernel release so users are encouraged to use this facility
5343 * now.
5344 */
5345void regulator_has_full_constraints(void)
5346{
5347 has_full_constraints = 1;
5348}
5349EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
5350
414c70cb
LG
5351/**
5352 * rdev_get_drvdata - get rdev regulator driver data
69279fb9 5353 * @rdev: regulator
414c70cb
LG
5354 *
5355 * Get rdev regulator driver private data. This call can be used in the
5356 * regulator driver context.
5357 */
5358void *rdev_get_drvdata(struct regulator_dev *rdev)
5359{
5360 return rdev->reg_data;
5361}
5362EXPORT_SYMBOL_GPL(rdev_get_drvdata);
5363
5364/**
5365 * regulator_get_drvdata - get regulator driver data
5366 * @regulator: regulator
5367 *
5368 * Get regulator driver private data. This call can be used in the consumer
5369 * driver context when non API regulator specific functions need to be called.
5370 */
5371void *regulator_get_drvdata(struct regulator *regulator)
5372{
5373 return regulator->rdev->reg_data;
5374}
5375EXPORT_SYMBOL_GPL(regulator_get_drvdata);
5376
5377/**
5378 * regulator_set_drvdata - set regulator driver data
5379 * @regulator: regulator
5380 * @data: data
5381 */
5382void regulator_set_drvdata(struct regulator *regulator, void *data)
5383{
5384 regulator->rdev->reg_data = data;
5385}
5386EXPORT_SYMBOL_GPL(regulator_set_drvdata);
5387
5388/**
5389 * regulator_get_id - get regulator ID
69279fb9 5390 * @rdev: regulator
414c70cb
LG
5391 */
5392int rdev_get_id(struct regulator_dev *rdev)
5393{
5394 return rdev->desc->id;
5395}
5396EXPORT_SYMBOL_GPL(rdev_get_id);
5397
a5766f11
LG
5398struct device *rdev_get_dev(struct regulator_dev *rdev)
5399{
5400 return &rdev->dev;
5401}
5402EXPORT_SYMBOL_GPL(rdev_get_dev);
5403
03c87b95
BG
5404struct regmap *rdev_get_regmap(struct regulator_dev *rdev)
5405{
5406 return rdev->regmap;
5407}
5408EXPORT_SYMBOL_GPL(rdev_get_regmap);
5409
a5766f11
LG
5410void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
5411{
5412 return reg_init_data->driver_data;
5413}
5414EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
5415
ba55a974 5416#ifdef CONFIG_DEBUG_FS
dbc55955 5417static int supply_map_show(struct seq_file *sf, void *data)
ba55a974 5418{
ba55a974
MB
5419 struct regulator_map *map;
5420
ba55a974 5421 list_for_each_entry(map, &regulator_map_list, list) {
dbc55955
HZ
5422 seq_printf(sf, "%s -> %s.%s\n",
5423 rdev_get_name(map->regulator), map->dev_name,
5424 map->supply);
ba55a974
MB
5425 }
5426
dbc55955
HZ
5427 return 0;
5428}
3e60b4fc 5429DEFINE_SHOW_ATTRIBUTE(supply_map);
ba55a974 5430
85f3b431
TV
5431struct summary_data {
5432 struct seq_file *s;
5433 struct regulator_dev *parent;
5434 int level;
5435};
5436
5437static void regulator_summary_show_subtree(struct seq_file *s,
5438 struct regulator_dev *rdev,
5439 int level);
5440
5441static int regulator_summary_show_children(struct device *dev, void *data)
5442{
5443 struct regulator_dev *rdev = dev_to_rdev(dev);
5444 struct summary_data *summary_data = data;
5445
5446 if (rdev->supply && rdev->supply->rdev == summary_data->parent)
5447 regulator_summary_show_subtree(summary_data->s, rdev,
5448 summary_data->level + 1);
5449
5450 return 0;
5451}
5452
7c225ec9
HS
5453static void regulator_summary_show_subtree(struct seq_file *s,
5454 struct regulator_dev *rdev,
5455 int level)
5456{
7c225ec9
HS
5457 struct regulation_constraints *c;
5458 struct regulator *consumer;
85f3b431 5459 struct summary_data summary_data;
7e4d9683 5460 unsigned int opmode;
7c225ec9
HS
5461
5462 if (!rdev)
5463 return;
5464
7e4d9683 5465 opmode = _regulator_get_mode_unlocked(rdev);
01de19d0 5466 seq_printf(s, "%*s%-*s %3d %4d %6d %7s ",
7c225ec9
HS
5467 level * 3 + 1, "",
5468 30 - level * 3, rdev_get_name(rdev),
01de19d0 5469 rdev->use_count, rdev->open_count, rdev->bypass_count,
7e4d9683 5470 regulator_opmode_to_str(opmode));
7c225ec9 5471
d22b85a1 5472 seq_printf(s, "%5dmV ", regulator_get_voltage_rdev(rdev) / 1000);
7e4d9683
DA
5473 seq_printf(s, "%5dmA ",
5474 _regulator_get_current_limit_unlocked(rdev) / 1000);
7c225ec9
HS
5475
5476 c = rdev->constraints;
5477 if (c) {
5478 switch (rdev->desc->type) {
5479 case REGULATOR_VOLTAGE:
5480 seq_printf(s, "%5dmV %5dmV ",
5481 c->min_uV / 1000, c->max_uV / 1000);
5482 break;
5483 case REGULATOR_CURRENT:
5484 seq_printf(s, "%5dmA %5dmA ",
5485 c->min_uA / 1000, c->max_uA / 1000);
5486 break;
5487 }
5488 }
5489
5490 seq_puts(s, "\n");
5491
5492 list_for_each_entry(consumer, &rdev->consumer_list, list) {
e42a46b6 5493 if (consumer->dev && consumer->dev->class == &regulator_class)
7c225ec9
HS
5494 continue;
5495
5496 seq_printf(s, "%*s%-*s ",
5497 (level + 1) * 3 + 1, "",
e42a46b6
LC
5498 30 - (level + 1) * 3,
5499 consumer->dev ? dev_name(consumer->dev) : "deviceless");
7c225ec9
HS
5500
5501 switch (rdev->desc->type) {
5502 case REGULATOR_VOLTAGE:
5451781d
DA
5503 seq_printf(s, "%3d %33dmA%c%5dmV %5dmV",
5504 consumer->enable_count,
7d3827b5 5505 consumer->uA_load / 1000,
5451781d
DA
5506 consumer->uA_load && !consumer->enable_count ?
5507 '*' : ' ',
c360a6df
CZ
5508 consumer->voltage[PM_SUSPEND_ON].min_uV / 1000,
5509 consumer->voltage[PM_SUSPEND_ON].max_uV / 1000);
7c225ec9
HS
5510 break;
5511 case REGULATOR_CURRENT:
7c225ec9
HS
5512 break;
5513 }
5514
5515 seq_puts(s, "\n");
5516 }
5517
85f3b431
TV
5518 summary_data.s = s;
5519 summary_data.level = level;
5520 summary_data.parent = rdev;
7c225ec9 5521
85f3b431
TV
5522 class_for_each_device(&regulator_class, NULL, &summary_data,
5523 regulator_summary_show_children);
f8702f9e
DO
5524}
5525
5526struct summary_lock_data {
5527 struct ww_acquire_ctx *ww_ctx;
5528 struct regulator_dev **new_contended_rdev;
5529 struct regulator_dev **old_contended_rdev;
5530};
5531
5532static int regulator_summary_lock_one(struct device *dev, void *data)
5533{
5534 struct regulator_dev *rdev = dev_to_rdev(dev);
5535 struct summary_lock_data *lock_data = data;
5536 int ret = 0;
5537
5538 if (rdev != *lock_data->old_contended_rdev) {
5539 ret = regulator_lock_nested(rdev, lock_data->ww_ctx);
5540
5541 if (ret == -EDEADLK)
5542 *lock_data->new_contended_rdev = rdev;
5543 else
5544 WARN_ON_ONCE(ret);
5545 } else {
5546 *lock_data->old_contended_rdev = NULL;
5547 }
5548
5549 return ret;
5550}
5551
5552static int regulator_summary_unlock_one(struct device *dev, void *data)
5553{
5554 struct regulator_dev *rdev = dev_to_rdev(dev);
5555 struct summary_lock_data *lock_data = data;
5556
5557 if (lock_data) {
5558 if (rdev == *lock_data->new_contended_rdev)
5559 return -EDEADLK;
5560 }
7e4d9683
DA
5561
5562 regulator_unlock(rdev);
f8702f9e
DO
5563
5564 return 0;
5565}
5566
5567static int regulator_summary_lock_all(struct ww_acquire_ctx *ww_ctx,
5568 struct regulator_dev **new_contended_rdev,
5569 struct regulator_dev **old_contended_rdev)
5570{
5571 struct summary_lock_data lock_data;
5572 int ret;
5573
5574 lock_data.ww_ctx = ww_ctx;
5575 lock_data.new_contended_rdev = new_contended_rdev;
5576 lock_data.old_contended_rdev = old_contended_rdev;
5577
5578 ret = class_for_each_device(&regulator_class, NULL, &lock_data,
5579 regulator_summary_lock_one);
5580 if (ret)
5581 class_for_each_device(&regulator_class, NULL, &lock_data,
5582 regulator_summary_unlock_one);
5583
5584 return ret;
5585}
5586
5587static void regulator_summary_lock(struct ww_acquire_ctx *ww_ctx)
5588{
5589 struct regulator_dev *new_contended_rdev = NULL;
5590 struct regulator_dev *old_contended_rdev = NULL;
5591 int err;
5592
ff9b34b6
DO
5593 mutex_lock(&regulator_list_mutex);
5594
f8702f9e
DO
5595 ww_acquire_init(ww_ctx, &regulator_ww_class);
5596
5597 do {
5598 if (new_contended_rdev) {
5599 ww_mutex_lock_slow(&new_contended_rdev->mutex, ww_ctx);
5600 old_contended_rdev = new_contended_rdev;
5601 old_contended_rdev->ref_cnt++;
5602 }
5603
5604 err = regulator_summary_lock_all(ww_ctx,
5605 &new_contended_rdev,
5606 &old_contended_rdev);
5607
5608 if (old_contended_rdev)
5609 regulator_unlock(old_contended_rdev);
5610
5611 } while (err == -EDEADLK);
5612
5613 ww_acquire_done(ww_ctx);
5614}
5615
5616static void regulator_summary_unlock(struct ww_acquire_ctx *ww_ctx)
5617{
5618 class_for_each_device(&regulator_class, NULL, NULL,
5619 regulator_summary_unlock_one);
5620 ww_acquire_fini(ww_ctx);
ff9b34b6
DO
5621
5622 mutex_unlock(&regulator_list_mutex);
7c225ec9
HS
5623}
5624
85f3b431 5625static int regulator_summary_show_roots(struct device *dev, void *data)
7c225ec9 5626{
85f3b431
TV
5627 struct regulator_dev *rdev = dev_to_rdev(dev);
5628 struct seq_file *s = data;
7c225ec9 5629
85f3b431
TV
5630 if (!rdev->supply)
5631 regulator_summary_show_subtree(s, rdev, 0);
7c225ec9 5632
85f3b431
TV
5633 return 0;
5634}
7c225ec9 5635
85f3b431
TV
5636static int regulator_summary_show(struct seq_file *s, void *data)
5637{
f8702f9e
DO
5638 struct ww_acquire_ctx ww_ctx;
5639
01de19d0
DA
5640 seq_puts(s, " regulator use open bypass opmode voltage current min max\n");
5641 seq_puts(s, "---------------------------------------------------------------------------------------\n");
7c225ec9 5642
f8702f9e
DO
5643 regulator_summary_lock(&ww_ctx);
5644
85f3b431
TV
5645 class_for_each_device(&regulator_class, NULL, s,
5646 regulator_summary_show_roots);
7c225ec9 5647
f8702f9e
DO
5648 regulator_summary_unlock(&ww_ctx);
5649
7c225ec9
HS
5650 return 0;
5651}
3e60b4fc
YL
5652DEFINE_SHOW_ATTRIBUTE(regulator_summary);
5653#endif /* CONFIG_DEBUG_FS */
7c225ec9 5654
414c70cb
LG
5655static int __init regulator_init(void)
5656{
34abbd68
MB
5657 int ret;
5658
34abbd68
MB
5659 ret = class_register(&regulator_class);
5660
1130e5b3 5661 debugfs_root = debugfs_create_dir("regulator", NULL);
24751434 5662 if (!debugfs_root)
1130e5b3 5663 pr_warn("regulator: Failed to create debugfs directory\n");
ba55a974 5664
3e60b4fc 5665#ifdef CONFIG_DEBUG_FS
f4d562c6
MB
5666 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
5667 &supply_map_fops);
1130e5b3 5668
7c225ec9 5669 debugfs_create_file("regulator_summary", 0444, debugfs_root,
85f3b431 5670 NULL, &regulator_summary_fops);
3e60b4fc 5671#endif
34abbd68
MB
5672 regulator_dummy_init();
5673
d8ca7d18
DO
5674 regulator_coupler_register(&generic_regulator_coupler);
5675
34abbd68 5676 return ret;
414c70cb
LG
5677}
5678
5679/* init early to allow our consumers to complete system booting */
5680core_initcall(regulator_init);
ca725561 5681
55576cf1 5682static int regulator_late_cleanup(struct device *dev, void *data)
ca725561 5683{
609ca5f3
MB
5684 struct regulator_dev *rdev = dev_to_rdev(dev);
5685 const struct regulator_ops *ops = rdev->desc->ops;
5686 struct regulation_constraints *c = rdev->constraints;
ca725561 5687 int enabled, ret;
ca725561 5688
609ca5f3
MB
5689 if (c && c->always_on)
5690 return 0;
5691
8a34e979 5692 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS))
609ca5f3
MB
5693 return 0;
5694
66cf9a7e 5695 regulator_lock(rdev);
609ca5f3
MB
5696
5697 if (rdev->use_count)
5698 goto unlock;
5699
5700 /* If we can't read the status assume it's on. */
5701 if (ops->is_enabled)
5702 enabled = ops->is_enabled(rdev);
5703 else
5704 enabled = 1;
5705
5706 if (!enabled)
5707 goto unlock;
5708
5709 if (have_full_constraints()) {
5710 /* We log since this may kill the system if it goes
5711 * wrong. */
5712 rdev_info(rdev, "disabling\n");
5713 ret = _regulator_do_disable(rdev);
5714 if (ret != 0)
5715 rdev_err(rdev, "couldn't disable: %d\n", ret);
5716 } else {
5717 /* The intention is that in future we will
5718 * assume that full constraints are provided
5719 * so warn even if we aren't going to do
5720 * anything here.
5721 */
5722 rdev_warn(rdev, "incomplete constraints, leaving on\n");
5723 }
5724
5725unlock:
66cf9a7e 5726 regulator_unlock(rdev);
609ca5f3
MB
5727
5728 return 0;
5729}
5730
55576cf1 5731static void regulator_init_complete_work_function(struct work_struct *work)
609ca5f3 5732{
3827b64d
JMC
5733 /*
5734 * Regulators may had failed to resolve their input supplies
5735 * when were registered, either because the input supply was
5736 * not registered yet or because its parent device was not
5737 * bound yet. So attempt to resolve the input supplies for
5738 * pending regulators before trying to disable unused ones.
5739 */
5740 class_for_each_device(&regulator_class, NULL, NULL,
5741 regulator_register_resolve_supply);
5742
ca725561 5743 /* If we have a full configuration then disable any regulators
e9535834
MB
5744 * we have permission to change the status for and which are
5745 * not in use or always_on. This is effectively the default
5746 * for DT and ACPI as they have full constraints.
ca725561 5747 */
609ca5f3
MB
5748 class_for_each_device(&regulator_class, NULL, NULL,
5749 regulator_late_cleanup);
55576cf1
MB
5750}
5751
5752static DECLARE_DELAYED_WORK(regulator_init_complete_work,
5753 regulator_init_complete_work_function);
5754
5755static int __init regulator_init_complete(void)
5756{
5757 /*
5758 * Since DT doesn't provide an idiomatic mechanism for
5759 * enabling full constraints and since it's much more natural
5760 * with DT to provide them just assume that a DT enabled
5761 * system has full constraints.
5762 */
5763 if (of_have_populated_dt())
5764 has_full_constraints = true;
5765
5766 /*
2a15483b
JS
5767 * We punt completion for an arbitrary amount of time since
5768 * systems like distros will load many drivers from userspace
5769 * so consumers might not always be ready yet, this is
5770 * particularly an issue with laptops where this might bounce
5771 * the display off then on. Ideally we'd get a notification
5772 * from userspace when this happens but we don't so just wait
5773 * a bit and hope we waited long enough. It'd be better if
5774 * we'd only do this on systems that need it, and a kernel
5775 * command line option might be useful.
55576cf1 5776 */
2a15483b
JS
5777 schedule_delayed_work(&regulator_init_complete_work,
5778 msecs_to_jiffies(30000));
ca725561
MB
5779
5780 return 0;
5781}
fd482a3e 5782late_initcall_sync(regulator_init_complete);