1 // SPDX-License-Identifier: GPL-2.0-or-later
3 // core.c -- Voltage/Current Regulator framework.
5 // Copyright 2007, 2008 Wolfson Microelectronics PLC.
6 // Copyright 2008 SlimLogic Ltd.
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <linux/debugfs.h>
13 #include <linux/device.h>
14 #include <linux/slab.h>
15 #include <linux/async.h>
16 #include <linux/err.h>
17 #include <linux/mutex.h>
18 #include <linux/suspend.h>
19 #include <linux/delay.h>
20 #include <linux/gpio/consumer.h>
22 #include <linux/reboot.h>
23 #include <linux/regmap.h>
24 #include <linux/regulator/of_regulator.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/regulator/coupler.h>
27 #include <linux/regulator/driver.h>
28 #include <linux/regulator/machine.h>
29 #include <linux/module.h>
31 #define CREATE_TRACE_POINTS
32 #include <trace/events/regulator.h>
38 static DEFINE_WW_CLASS(regulator_ww_class);
39 static DEFINE_MUTEX(regulator_nesting_mutex);
40 static DEFINE_MUTEX(regulator_list_mutex);
41 static LIST_HEAD(regulator_map_list);
42 static LIST_HEAD(regulator_ena_gpio_list);
43 static LIST_HEAD(regulator_supply_alias_list);
44 static LIST_HEAD(regulator_coupler_list);
45 static bool has_full_constraints;
47 static struct dentry *debugfs_root;
50 * struct regulator_map
52 * Used to provide symbolic supply names to devices.
54 struct regulator_map {
55 struct list_head list;
56 const char *dev_name; /* The dev_name() for the consumer */
58 struct regulator_dev *regulator;
62 * struct regulator_enable_gpio
64 * Management for shared enable GPIO pin
66 struct regulator_enable_gpio {
67 struct list_head list;
68 struct gpio_desc *gpiod;
69 u32 enable_count; /* a number of enabled shared GPIO */
70 u32 request_count; /* a number of requested shared GPIO */
74 * struct regulator_supply_alias
76 * Used to map lookups for a supply onto an alternative device.
78 struct regulator_supply_alias {
79 struct list_head list;
80 struct device *src_dev;
81 const char *src_supply;
82 struct device *alias_dev;
83 const char *alias_supply;
86 static int _regulator_is_enabled(struct regulator_dev *rdev);
87 static int _regulator_disable(struct regulator *regulator);
88 static int _regulator_get_error_flags(struct regulator_dev *rdev, unsigned int *flags);
89 static int _regulator_get_current_limit(struct regulator_dev *rdev);
90 static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
91 static int _notifier_call_chain(struct regulator_dev *rdev,
92 unsigned long event, void *data);
93 static int _regulator_do_set_voltage(struct regulator_dev *rdev,
94 int min_uV, int max_uV);
95 static int regulator_balance_voltage(struct regulator_dev *rdev,
96 suspend_state_t state);
97 static struct regulator *create_regulator(struct regulator_dev *rdev,
99 const char *supply_name);
100 static void destroy_regulator(struct regulator *regulator);
101 static void _regulator_put(struct regulator *regulator);
103 const char *rdev_get_name(struct regulator_dev *rdev)
105 if (rdev->constraints && rdev->constraints->name)
106 return rdev->constraints->name;
107 else if (rdev->desc->name)
108 return rdev->desc->name;
112 EXPORT_SYMBOL_GPL(rdev_get_name);
114 static bool have_full_constraints(void)
116 return has_full_constraints || of_have_populated_dt();
119 static bool regulator_ops_is_valid(struct regulator_dev *rdev, int ops)
121 if (!rdev->constraints) {
122 rdev_err(rdev, "no constraints\n");
126 if (rdev->constraints->valid_ops_mask & ops)
133 * regulator_lock_nested - lock a single regulator
134 * @rdev: regulator source
135 * @ww_ctx: w/w mutex acquire context
137 * This function can be called many times by one task on
138 * a single regulator and its mutex will be locked only
139 * once. If a task, which is calling this function is other
140 * than the one, which initially locked the mutex, it will
143 static inline int regulator_lock_nested(struct regulator_dev *rdev,
144 struct ww_acquire_ctx *ww_ctx)
149 mutex_lock(®ulator_nesting_mutex);
151 if (!ww_mutex_trylock(&rdev->mutex, ww_ctx)) {
152 if (rdev->mutex_owner == current)
158 mutex_unlock(®ulator_nesting_mutex);
159 ret = ww_mutex_lock(&rdev->mutex, ww_ctx);
160 mutex_lock(®ulator_nesting_mutex);
166 if (lock && ret != -EDEADLK) {
168 rdev->mutex_owner = current;
171 mutex_unlock(®ulator_nesting_mutex);
177 * regulator_lock - lock a single regulator
178 * @rdev: regulator source
180 * This function can be called many times by one task on
181 * a single regulator and its mutex will be locked only
182 * once. If a task, which is calling this function is other
183 * than the one, which initially locked the mutex, it will
186 static void regulator_lock(struct regulator_dev *rdev)
188 regulator_lock_nested(rdev, NULL);
192 * regulator_unlock - unlock a single regulator
193 * @rdev: regulator_source
195 * This function unlocks the mutex when the
196 * reference counter reaches 0.
198 static void regulator_unlock(struct regulator_dev *rdev)
200 mutex_lock(®ulator_nesting_mutex);
202 if (--rdev->ref_cnt == 0) {
203 rdev->mutex_owner = NULL;
204 ww_mutex_unlock(&rdev->mutex);
207 WARN_ON_ONCE(rdev->ref_cnt < 0);
209 mutex_unlock(®ulator_nesting_mutex);
213 * regulator_lock_two - lock two regulators
214 * @rdev1: first regulator
215 * @rdev2: second regulator
216 * @ww_ctx: w/w mutex acquire context
218 * Locks both rdevs using the regulator_ww_class.
220 static void regulator_lock_two(struct regulator_dev *rdev1,
221 struct regulator_dev *rdev2,
222 struct ww_acquire_ctx *ww_ctx)
224 struct regulator_dev *held, *contended;
227 ww_acquire_init(ww_ctx, ®ulator_ww_class);
229 /* Try to just grab both of them */
230 ret = regulator_lock_nested(rdev1, ww_ctx);
232 ret = regulator_lock_nested(rdev2, ww_ctx);
233 if (ret != -EDEADLOCK) {
241 regulator_unlock(held);
243 ww_mutex_lock_slow(&contended->mutex, ww_ctx);
244 contended->ref_cnt++;
245 contended->mutex_owner = current;
246 swap(held, contended);
247 ret = regulator_lock_nested(contended, ww_ctx);
249 if (ret != -EDEADLOCK) {
256 ww_acquire_done(ww_ctx);
260 * regulator_unlock_two - unlock two regulators
261 * @rdev1: first regulator
262 * @rdev2: second regulator
263 * @ww_ctx: w/w mutex acquire context
265 * The inverse of regulator_lock_two().
268 static void regulator_unlock_two(struct regulator_dev *rdev1,
269 struct regulator_dev *rdev2,
270 struct ww_acquire_ctx *ww_ctx)
272 regulator_unlock(rdev2);
273 regulator_unlock(rdev1);
274 ww_acquire_fini(ww_ctx);
277 static bool regulator_supply_is_couple(struct regulator_dev *rdev)
279 struct regulator_dev *c_rdev;
282 for (i = 1; i < rdev->coupling_desc.n_coupled; i++) {
283 c_rdev = rdev->coupling_desc.coupled_rdevs[i];
285 if (rdev->supply->rdev == c_rdev)
292 static void regulator_unlock_recursive(struct regulator_dev *rdev,
293 unsigned int n_coupled)
295 struct regulator_dev *c_rdev, *supply_rdev;
296 int i, supply_n_coupled;
298 for (i = n_coupled; i > 0; i--) {
299 c_rdev = rdev->coupling_desc.coupled_rdevs[i - 1];
304 if (c_rdev->supply && !regulator_supply_is_couple(c_rdev)) {
305 supply_rdev = c_rdev->supply->rdev;
306 supply_n_coupled = supply_rdev->coupling_desc.n_coupled;
308 regulator_unlock_recursive(supply_rdev,
312 regulator_unlock(c_rdev);
316 static int regulator_lock_recursive(struct regulator_dev *rdev,
317 struct regulator_dev **new_contended_rdev,
318 struct regulator_dev **old_contended_rdev,
319 struct ww_acquire_ctx *ww_ctx)
321 struct regulator_dev *c_rdev;
324 for (i = 0; i < rdev->coupling_desc.n_coupled; i++) {
325 c_rdev = rdev->coupling_desc.coupled_rdevs[i];
330 if (c_rdev != *old_contended_rdev) {
331 err = regulator_lock_nested(c_rdev, ww_ctx);
333 if (err == -EDEADLK) {
334 *new_contended_rdev = c_rdev;
338 /* shouldn't happen */
339 WARN_ON_ONCE(err != -EALREADY);
342 *old_contended_rdev = NULL;
345 if (c_rdev->supply && !regulator_supply_is_couple(c_rdev)) {
346 err = regulator_lock_recursive(c_rdev->supply->rdev,
351 regulator_unlock(c_rdev);
360 regulator_unlock_recursive(rdev, i);
366 * regulator_unlock_dependent - unlock regulator's suppliers and coupled
368 * @rdev: regulator source
369 * @ww_ctx: w/w mutex acquire context
371 * Unlock all regulators related with rdev by coupling or supplying.
373 static void regulator_unlock_dependent(struct regulator_dev *rdev,
374 struct ww_acquire_ctx *ww_ctx)
376 regulator_unlock_recursive(rdev, rdev->coupling_desc.n_coupled);
377 ww_acquire_fini(ww_ctx);
381 * regulator_lock_dependent - lock regulator's suppliers and coupled regulators
382 * @rdev: regulator source
383 * @ww_ctx: w/w mutex acquire context
385 * This function as a wrapper on regulator_lock_recursive(), which locks
386 * all regulators related with rdev by coupling or supplying.
388 static void regulator_lock_dependent(struct regulator_dev *rdev,
389 struct ww_acquire_ctx *ww_ctx)
391 struct regulator_dev *new_contended_rdev = NULL;
392 struct regulator_dev *old_contended_rdev = NULL;
395 mutex_lock(®ulator_list_mutex);
397 ww_acquire_init(ww_ctx, ®ulator_ww_class);
400 if (new_contended_rdev) {
401 ww_mutex_lock_slow(&new_contended_rdev->mutex, ww_ctx);
402 old_contended_rdev = new_contended_rdev;
403 old_contended_rdev->ref_cnt++;
404 old_contended_rdev->mutex_owner = current;
407 err = regulator_lock_recursive(rdev,
412 if (old_contended_rdev)
413 regulator_unlock(old_contended_rdev);
415 } while (err == -EDEADLK);
417 ww_acquire_done(ww_ctx);
419 mutex_unlock(®ulator_list_mutex);
423 * of_get_child_regulator - get a child regulator device node
424 * based on supply name
425 * @parent: Parent device node
426 * @prop_name: Combination regulator supply name and "-supply"
428 * Traverse all child nodes.
429 * Extract the child regulator device node corresponding to the supply name.
430 * returns the device node corresponding to the regulator if found, else
433 static struct device_node *of_get_child_regulator(struct device_node *parent,
434 const char *prop_name)
436 struct device_node *regnode = NULL;
437 struct device_node *child = NULL;
439 for_each_child_of_node(parent, child) {
440 regnode = of_parse_phandle(child, prop_name, 0);
443 regnode = of_get_child_regulator(child, prop_name);
458 * of_get_regulator - get a regulator device node based on supply name
459 * @dev: Device pointer for the consumer (of regulator) device
460 * @supply: regulator supply name
462 * Extract the regulator device node corresponding to the supply name.
463 * returns the device node corresponding to the regulator if found, else
466 static struct device_node *of_get_regulator(struct device *dev, const char *supply)
468 struct device_node *regnode = NULL;
469 char prop_name[64]; /* 64 is max size of property name */
471 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
473 snprintf(prop_name, 64, "%s-supply", supply);
474 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
477 regnode = of_get_child_regulator(dev->of_node, prop_name);
481 dev_dbg(dev, "Looking up %s property in node %pOF failed\n",
482 prop_name, dev->of_node);
488 /* Platform voltage constraint check */
489 int regulator_check_voltage(struct regulator_dev *rdev,
490 int *min_uV, int *max_uV)
492 BUG_ON(*min_uV > *max_uV);
494 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
495 rdev_err(rdev, "voltage operation not allowed\n");
499 if (*max_uV > rdev->constraints->max_uV)
500 *max_uV = rdev->constraints->max_uV;
501 if (*min_uV < rdev->constraints->min_uV)
502 *min_uV = rdev->constraints->min_uV;
504 if (*min_uV > *max_uV) {
505 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
513 /* return 0 if the state is valid */
514 static int regulator_check_states(suspend_state_t state)
516 return (state > PM_SUSPEND_MAX || state == PM_SUSPEND_TO_IDLE);
519 /* Make sure we select a voltage that suits the needs of all
520 * regulator consumers
522 int regulator_check_consumers(struct regulator_dev *rdev,
523 int *min_uV, int *max_uV,
524 suspend_state_t state)
526 struct regulator *regulator;
527 struct regulator_voltage *voltage;
529 list_for_each_entry(regulator, &rdev->consumer_list, list) {
530 voltage = ®ulator->voltage[state];
532 * Assume consumers that didn't say anything are OK
533 * with anything in the constraint range.
535 if (!voltage->min_uV && !voltage->max_uV)
538 if (*max_uV > voltage->max_uV)
539 *max_uV = voltage->max_uV;
540 if (*min_uV < voltage->min_uV)
541 *min_uV = voltage->min_uV;
544 if (*min_uV > *max_uV) {
545 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
553 /* current constraint check */
554 static int regulator_check_current_limit(struct regulator_dev *rdev,
555 int *min_uA, int *max_uA)
557 BUG_ON(*min_uA > *max_uA);
559 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_CURRENT)) {
560 rdev_err(rdev, "current operation not allowed\n");
564 if (*max_uA > rdev->constraints->max_uA)
565 *max_uA = rdev->constraints->max_uA;
566 if (*min_uA < rdev->constraints->min_uA)
567 *min_uA = rdev->constraints->min_uA;
569 if (*min_uA > *max_uA) {
570 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
578 /* operating mode constraint check */
579 static int regulator_mode_constrain(struct regulator_dev *rdev,
583 case REGULATOR_MODE_FAST:
584 case REGULATOR_MODE_NORMAL:
585 case REGULATOR_MODE_IDLE:
586 case REGULATOR_MODE_STANDBY:
589 rdev_err(rdev, "invalid mode %x specified\n", *mode);
593 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_MODE)) {
594 rdev_err(rdev, "mode operation not allowed\n");
598 /* The modes are bitmasks, the most power hungry modes having
599 * the lowest values. If the requested mode isn't supported
603 if (rdev->constraints->valid_modes_mask & *mode)
611 static inline struct regulator_state *
612 regulator_get_suspend_state(struct regulator_dev *rdev, suspend_state_t state)
614 if (rdev->constraints == NULL)
618 case PM_SUSPEND_STANDBY:
619 return &rdev->constraints->state_standby;
621 return &rdev->constraints->state_mem;
623 return &rdev->constraints->state_disk;
629 static const struct regulator_state *
630 regulator_get_suspend_state_check(struct regulator_dev *rdev, suspend_state_t state)
632 const struct regulator_state *rstate;
634 rstate = regulator_get_suspend_state(rdev, state);
638 /* If we have no suspend mode configuration don't set anything;
639 * only warn if the driver implements set_suspend_voltage or
640 * set_suspend_mode callback.
642 if (rstate->enabled != ENABLE_IN_SUSPEND &&
643 rstate->enabled != DISABLE_IN_SUSPEND) {
644 if (rdev->desc->ops->set_suspend_voltage ||
645 rdev->desc->ops->set_suspend_mode)
646 rdev_warn(rdev, "No configuration\n");
653 static ssize_t microvolts_show(struct device *dev,
654 struct device_attribute *attr, char *buf)
656 struct regulator_dev *rdev = dev_get_drvdata(dev);
659 regulator_lock(rdev);
660 uV = regulator_get_voltage_rdev(rdev);
661 regulator_unlock(rdev);
665 return sprintf(buf, "%d\n", uV);
667 static DEVICE_ATTR_RO(microvolts);
669 static ssize_t microamps_show(struct device *dev,
670 struct device_attribute *attr, char *buf)
672 struct regulator_dev *rdev = dev_get_drvdata(dev);
674 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
676 static DEVICE_ATTR_RO(microamps);
678 static ssize_t name_show(struct device *dev, struct device_attribute *attr,
681 struct regulator_dev *rdev = dev_get_drvdata(dev);
683 return sprintf(buf, "%s\n", rdev_get_name(rdev));
685 static DEVICE_ATTR_RO(name);
687 static const char *regulator_opmode_to_str(int mode)
690 case REGULATOR_MODE_FAST:
692 case REGULATOR_MODE_NORMAL:
694 case REGULATOR_MODE_IDLE:
696 case REGULATOR_MODE_STANDBY:
702 static ssize_t regulator_print_opmode(char *buf, int mode)
704 return sprintf(buf, "%s\n", regulator_opmode_to_str(mode));
707 static ssize_t opmode_show(struct device *dev,
708 struct device_attribute *attr, char *buf)
710 struct regulator_dev *rdev = dev_get_drvdata(dev);
712 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
714 static DEVICE_ATTR_RO(opmode);
716 static ssize_t regulator_print_state(char *buf, int state)
719 return sprintf(buf, "enabled\n");
721 return sprintf(buf, "disabled\n");
723 return sprintf(buf, "unknown\n");
726 static ssize_t state_show(struct device *dev,
727 struct device_attribute *attr, char *buf)
729 struct regulator_dev *rdev = dev_get_drvdata(dev);
732 regulator_lock(rdev);
733 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
734 regulator_unlock(rdev);
738 static DEVICE_ATTR_RO(state);
740 static ssize_t status_show(struct device *dev,
741 struct device_attribute *attr, char *buf)
743 struct regulator_dev *rdev = dev_get_drvdata(dev);
747 status = rdev->desc->ops->get_status(rdev);
752 case REGULATOR_STATUS_OFF:
755 case REGULATOR_STATUS_ON:
758 case REGULATOR_STATUS_ERROR:
761 case REGULATOR_STATUS_FAST:
764 case REGULATOR_STATUS_NORMAL:
767 case REGULATOR_STATUS_IDLE:
770 case REGULATOR_STATUS_STANDBY:
773 case REGULATOR_STATUS_BYPASS:
776 case REGULATOR_STATUS_UNDEFINED:
783 return sprintf(buf, "%s\n", label);
785 static DEVICE_ATTR_RO(status);
787 static ssize_t min_microamps_show(struct device *dev,
788 struct device_attribute *attr, char *buf)
790 struct regulator_dev *rdev = dev_get_drvdata(dev);
792 if (!rdev->constraints)
793 return sprintf(buf, "constraint not defined\n");
795 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
797 static DEVICE_ATTR_RO(min_microamps);
799 static ssize_t max_microamps_show(struct device *dev,
800 struct device_attribute *attr, char *buf)
802 struct regulator_dev *rdev = dev_get_drvdata(dev);
804 if (!rdev->constraints)
805 return sprintf(buf, "constraint not defined\n");
807 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
809 static DEVICE_ATTR_RO(max_microamps);
811 static ssize_t min_microvolts_show(struct device *dev,
812 struct device_attribute *attr, char *buf)
814 struct regulator_dev *rdev = dev_get_drvdata(dev);
816 if (!rdev->constraints)
817 return sprintf(buf, "constraint not defined\n");
819 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
821 static DEVICE_ATTR_RO(min_microvolts);
823 static ssize_t max_microvolts_show(struct device *dev,
824 struct device_attribute *attr, char *buf)
826 struct regulator_dev *rdev = dev_get_drvdata(dev);
828 if (!rdev->constraints)
829 return sprintf(buf, "constraint not defined\n");
831 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
833 static DEVICE_ATTR_RO(max_microvolts);
835 static ssize_t requested_microamps_show(struct device *dev,
836 struct device_attribute *attr, char *buf)
838 struct regulator_dev *rdev = dev_get_drvdata(dev);
839 struct regulator *regulator;
842 regulator_lock(rdev);
843 list_for_each_entry(regulator, &rdev->consumer_list, list) {
844 if (regulator->enable_count)
845 uA += regulator->uA_load;
847 regulator_unlock(rdev);
848 return sprintf(buf, "%d\n", uA);
850 static DEVICE_ATTR_RO(requested_microamps);
852 static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
855 struct regulator_dev *rdev = dev_get_drvdata(dev);
856 return sprintf(buf, "%d\n", rdev->use_count);
858 static DEVICE_ATTR_RO(num_users);
860 static ssize_t type_show(struct device *dev, struct device_attribute *attr,
863 struct regulator_dev *rdev = dev_get_drvdata(dev);
865 switch (rdev->desc->type) {
866 case REGULATOR_VOLTAGE:
867 return sprintf(buf, "voltage\n");
868 case REGULATOR_CURRENT:
869 return sprintf(buf, "current\n");
871 return sprintf(buf, "unknown\n");
873 static DEVICE_ATTR_RO(type);
875 static ssize_t suspend_mem_microvolts_show(struct device *dev,
876 struct device_attribute *attr, char *buf)
878 struct regulator_dev *rdev = dev_get_drvdata(dev);
880 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
882 static DEVICE_ATTR_RO(suspend_mem_microvolts);
884 static ssize_t suspend_disk_microvolts_show(struct device *dev,
885 struct device_attribute *attr, char *buf)
887 struct regulator_dev *rdev = dev_get_drvdata(dev);
889 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
891 static DEVICE_ATTR_RO(suspend_disk_microvolts);
893 static ssize_t suspend_standby_microvolts_show(struct device *dev,
894 struct device_attribute *attr, char *buf)
896 struct regulator_dev *rdev = dev_get_drvdata(dev);
898 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
900 static DEVICE_ATTR_RO(suspend_standby_microvolts);
902 static ssize_t suspend_mem_mode_show(struct device *dev,
903 struct device_attribute *attr, char *buf)
905 struct regulator_dev *rdev = dev_get_drvdata(dev);
907 return regulator_print_opmode(buf,
908 rdev->constraints->state_mem.mode);
910 static DEVICE_ATTR_RO(suspend_mem_mode);
912 static ssize_t suspend_disk_mode_show(struct device *dev,
913 struct device_attribute *attr, char *buf)
915 struct regulator_dev *rdev = dev_get_drvdata(dev);
917 return regulator_print_opmode(buf,
918 rdev->constraints->state_disk.mode);
920 static DEVICE_ATTR_RO(suspend_disk_mode);
922 static ssize_t suspend_standby_mode_show(struct device *dev,
923 struct device_attribute *attr, char *buf)
925 struct regulator_dev *rdev = dev_get_drvdata(dev);
927 return regulator_print_opmode(buf,
928 rdev->constraints->state_standby.mode);
930 static DEVICE_ATTR_RO(suspend_standby_mode);
932 static ssize_t suspend_mem_state_show(struct device *dev,
933 struct device_attribute *attr, char *buf)
935 struct regulator_dev *rdev = dev_get_drvdata(dev);
937 return regulator_print_state(buf,
938 rdev->constraints->state_mem.enabled);
940 static DEVICE_ATTR_RO(suspend_mem_state);
942 static ssize_t suspend_disk_state_show(struct device *dev,
943 struct device_attribute *attr, char *buf)
945 struct regulator_dev *rdev = dev_get_drvdata(dev);
947 return regulator_print_state(buf,
948 rdev->constraints->state_disk.enabled);
950 static DEVICE_ATTR_RO(suspend_disk_state);
952 static ssize_t suspend_standby_state_show(struct device *dev,
953 struct device_attribute *attr, char *buf)
955 struct regulator_dev *rdev = dev_get_drvdata(dev);
957 return regulator_print_state(buf,
958 rdev->constraints->state_standby.enabled);
960 static DEVICE_ATTR_RO(suspend_standby_state);
962 static ssize_t bypass_show(struct device *dev,
963 struct device_attribute *attr, char *buf)
965 struct regulator_dev *rdev = dev_get_drvdata(dev);
970 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
979 return sprintf(buf, "%s\n", report);
981 static DEVICE_ATTR_RO(bypass);
983 #define REGULATOR_ERROR_ATTR(name, bit) \
984 static ssize_t name##_show(struct device *dev, struct device_attribute *attr, \
988 unsigned int flags; \
989 struct regulator_dev *rdev = dev_get_drvdata(dev); \
990 ret = _regulator_get_error_flags(rdev, &flags); \
993 return sysfs_emit(buf, "%d\n", !!(flags & (bit))); \
995 static DEVICE_ATTR_RO(name)
997 REGULATOR_ERROR_ATTR(under_voltage, REGULATOR_ERROR_UNDER_VOLTAGE);
998 REGULATOR_ERROR_ATTR(over_current, REGULATOR_ERROR_OVER_CURRENT);
999 REGULATOR_ERROR_ATTR(regulation_out, REGULATOR_ERROR_REGULATION_OUT);
1000 REGULATOR_ERROR_ATTR(fail, REGULATOR_ERROR_FAIL);
1001 REGULATOR_ERROR_ATTR(over_temp, REGULATOR_ERROR_OVER_TEMP);
1002 REGULATOR_ERROR_ATTR(under_voltage_warn, REGULATOR_ERROR_UNDER_VOLTAGE_WARN);
1003 REGULATOR_ERROR_ATTR(over_current_warn, REGULATOR_ERROR_OVER_CURRENT_WARN);
1004 REGULATOR_ERROR_ATTR(over_voltage_warn, REGULATOR_ERROR_OVER_VOLTAGE_WARN);
1005 REGULATOR_ERROR_ATTR(over_temp_warn, REGULATOR_ERROR_OVER_TEMP_WARN);
1007 /* Calculate the new optimum regulator operating mode based on the new total
1008 * consumer load. All locks held by caller
1010 static int drms_uA_update(struct regulator_dev *rdev)
1012 struct regulator *sibling;
1013 int current_uA = 0, output_uV, input_uV, err;
1017 * first check to see if we can set modes at all, otherwise just
1018 * tell the consumer everything is OK.
1020 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_DRMS)) {
1021 rdev_dbg(rdev, "DRMS operation not allowed\n");
1025 if (!rdev->desc->ops->get_optimum_mode &&
1026 !rdev->desc->ops->set_load)
1029 if (!rdev->desc->ops->set_mode &&
1030 !rdev->desc->ops->set_load)
1033 /* calc total requested load */
1034 list_for_each_entry(sibling, &rdev->consumer_list, list) {
1035 if (sibling->enable_count)
1036 current_uA += sibling->uA_load;
1039 current_uA += rdev->constraints->system_load;
1041 if (rdev->desc->ops->set_load) {
1042 /* set the optimum mode for our new total regulator load */
1043 err = rdev->desc->ops->set_load(rdev, current_uA);
1045 rdev_err(rdev, "failed to set load %d: %pe\n",
1046 current_uA, ERR_PTR(err));
1049 * Unfortunately in some cases the constraints->valid_ops has
1050 * REGULATOR_CHANGE_DRMS but there are no valid modes listed.
1051 * That's not really legit but we won't consider it a fatal
1052 * error here. We'll treat it as if REGULATOR_CHANGE_DRMS
1055 if (!rdev->constraints->valid_modes_mask) {
1056 rdev_dbg(rdev, "Can change modes; but no valid mode\n");
1060 /* get output voltage */
1061 output_uV = regulator_get_voltage_rdev(rdev);
1064 * Don't return an error; if regulator driver cares about
1065 * output_uV then it's up to the driver to validate.
1068 rdev_dbg(rdev, "invalid output voltage found\n");
1070 /* get input voltage */
1073 input_uV = regulator_get_voltage_rdev(rdev->supply->rdev);
1075 input_uV = rdev->constraints->input_uV;
1078 * Don't return an error; if regulator driver cares about
1079 * input_uV then it's up to the driver to validate.
1082 rdev_dbg(rdev, "invalid input voltage found\n");
1084 /* now get the optimum mode for our new total regulator load */
1085 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
1086 output_uV, current_uA);
1088 /* check the new mode is allowed */
1089 err = regulator_mode_constrain(rdev, &mode);
1091 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV: %pe\n",
1092 current_uA, input_uV, output_uV, ERR_PTR(err));
1096 err = rdev->desc->ops->set_mode(rdev, mode);
1098 rdev_err(rdev, "failed to set optimum mode %x: %pe\n",
1099 mode, ERR_PTR(err));
1105 static int __suspend_set_state(struct regulator_dev *rdev,
1106 const struct regulator_state *rstate)
1110 if (rstate->enabled == ENABLE_IN_SUSPEND &&
1111 rdev->desc->ops->set_suspend_enable)
1112 ret = rdev->desc->ops->set_suspend_enable(rdev);
1113 else if (rstate->enabled == DISABLE_IN_SUSPEND &&
1114 rdev->desc->ops->set_suspend_disable)
1115 ret = rdev->desc->ops->set_suspend_disable(rdev);
1116 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
1120 rdev_err(rdev, "failed to enabled/disable: %pe\n", ERR_PTR(ret));
1124 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
1125 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
1127 rdev_err(rdev, "failed to set voltage: %pe\n", ERR_PTR(ret));
1132 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
1133 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
1135 rdev_err(rdev, "failed to set mode: %pe\n", ERR_PTR(ret));
1143 static int suspend_set_initial_state(struct regulator_dev *rdev)
1145 const struct regulator_state *rstate;
1147 rstate = regulator_get_suspend_state_check(rdev,
1148 rdev->constraints->initial_state);
1152 return __suspend_set_state(rdev, rstate);
1155 #if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
1156 static void print_constraints_debug(struct regulator_dev *rdev)
1158 struct regulation_constraints *constraints = rdev->constraints;
1160 size_t len = sizeof(buf) - 1;
1164 if (constraints->min_uV && constraints->max_uV) {
1165 if (constraints->min_uV == constraints->max_uV)
1166 count += scnprintf(buf + count, len - count, "%d mV ",
1167 constraints->min_uV / 1000);
1169 count += scnprintf(buf + count, len - count,
1171 constraints->min_uV / 1000,
1172 constraints->max_uV / 1000);
1175 if (!constraints->min_uV ||
1176 constraints->min_uV != constraints->max_uV) {
1177 ret = regulator_get_voltage_rdev(rdev);
1179 count += scnprintf(buf + count, len - count,
1180 "at %d mV ", ret / 1000);
1183 if (constraints->uV_offset)
1184 count += scnprintf(buf + count, len - count, "%dmV offset ",
1185 constraints->uV_offset / 1000);
1187 if (constraints->min_uA && constraints->max_uA) {
1188 if (constraints->min_uA == constraints->max_uA)
1189 count += scnprintf(buf + count, len - count, "%d mA ",
1190 constraints->min_uA / 1000);
1192 count += scnprintf(buf + count, len - count,
1194 constraints->min_uA / 1000,
1195 constraints->max_uA / 1000);
1198 if (!constraints->min_uA ||
1199 constraints->min_uA != constraints->max_uA) {
1200 ret = _regulator_get_current_limit(rdev);
1202 count += scnprintf(buf + count, len - count,
1203 "at %d mA ", ret / 1000);
1206 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
1207 count += scnprintf(buf + count, len - count, "fast ");
1208 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
1209 count += scnprintf(buf + count, len - count, "normal ");
1210 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
1211 count += scnprintf(buf + count, len - count, "idle ");
1212 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
1213 count += scnprintf(buf + count, len - count, "standby ");
1216 count = scnprintf(buf, len, "no parameters");
1220 count += scnprintf(buf + count, len - count, ", %s",
1221 _regulator_is_enabled(rdev) ? "enabled" : "disabled");
1223 rdev_dbg(rdev, "%s\n", buf);
1225 #else /* !DEBUG && !CONFIG_DYNAMIC_DEBUG */
1226 static inline void print_constraints_debug(struct regulator_dev *rdev) {}
1227 #endif /* !DEBUG && !CONFIG_DYNAMIC_DEBUG */
1229 static void print_constraints(struct regulator_dev *rdev)
1231 struct regulation_constraints *constraints = rdev->constraints;
1233 print_constraints_debug(rdev);
1235 if ((constraints->min_uV != constraints->max_uV) &&
1236 !regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE))
1238 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
1241 static int machine_constraints_voltage(struct regulator_dev *rdev,
1242 struct regulation_constraints *constraints)
1244 const struct regulator_ops *ops = rdev->desc->ops;
1247 /* do we need to apply the constraint voltage */
1248 if (rdev->constraints->apply_uV &&
1249 rdev->constraints->min_uV && rdev->constraints->max_uV) {
1250 int target_min, target_max;
1251 int current_uV = regulator_get_voltage_rdev(rdev);
1253 if (current_uV == -ENOTRECOVERABLE) {
1254 /* This regulator can't be read and must be initialized */
1255 rdev_info(rdev, "Setting %d-%duV\n",
1256 rdev->constraints->min_uV,
1257 rdev->constraints->max_uV);
1258 _regulator_do_set_voltage(rdev,
1259 rdev->constraints->min_uV,
1260 rdev->constraints->max_uV);
1261 current_uV = regulator_get_voltage_rdev(rdev);
1264 if (current_uV < 0) {
1265 if (current_uV != -EPROBE_DEFER)
1267 "failed to get the current voltage: %pe\n",
1268 ERR_PTR(current_uV));
1273 * If we're below the minimum voltage move up to the
1274 * minimum voltage, if we're above the maximum voltage
1275 * then move down to the maximum.
1277 target_min = current_uV;
1278 target_max = current_uV;
1280 if (current_uV < rdev->constraints->min_uV) {
1281 target_min = rdev->constraints->min_uV;
1282 target_max = rdev->constraints->min_uV;
1285 if (current_uV > rdev->constraints->max_uV) {
1286 target_min = rdev->constraints->max_uV;
1287 target_max = rdev->constraints->max_uV;
1290 if (target_min != current_uV || target_max != current_uV) {
1291 rdev_info(rdev, "Bringing %duV into %d-%duV\n",
1292 current_uV, target_min, target_max);
1293 ret = _regulator_do_set_voltage(
1294 rdev, target_min, target_max);
1297 "failed to apply %d-%duV constraint: %pe\n",
1298 target_min, target_max, ERR_PTR(ret));
1304 /* constrain machine-level voltage specs to fit
1305 * the actual range supported by this regulator.
1307 if (ops->list_voltage && rdev->desc->n_voltages) {
1308 int count = rdev->desc->n_voltages;
1310 int min_uV = INT_MAX;
1311 int max_uV = INT_MIN;
1312 int cmin = constraints->min_uV;
1313 int cmax = constraints->max_uV;
1315 /* it's safe to autoconfigure fixed-voltage supplies
1316 * and the constraints are used by list_voltage.
1318 if (count == 1 && !cmin) {
1321 constraints->min_uV = cmin;
1322 constraints->max_uV = cmax;
1325 /* voltage constraints are optional */
1326 if ((cmin == 0) && (cmax == 0))
1329 /* else require explicit machine-level constraints */
1330 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
1331 rdev_err(rdev, "invalid voltage constraints\n");
1335 /* no need to loop voltages if range is continuous */
1336 if (rdev->desc->continuous_voltage_range)
1339 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
1340 for (i = 0; i < count; i++) {
1343 value = ops->list_voltage(rdev, i);
1347 /* maybe adjust [min_uV..max_uV] */
1348 if (value >= cmin && value < min_uV)
1350 if (value <= cmax && value > max_uV)
1354 /* final: [min_uV..max_uV] valid iff constraints valid */
1355 if (max_uV < min_uV) {
1357 "unsupportable voltage constraints %u-%uuV\n",
1362 /* use regulator's subset of machine constraints */
1363 if (constraints->min_uV < min_uV) {
1364 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
1365 constraints->min_uV, min_uV);
1366 constraints->min_uV = min_uV;
1368 if (constraints->max_uV > max_uV) {
1369 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
1370 constraints->max_uV, max_uV);
1371 constraints->max_uV = max_uV;
1378 static int machine_constraints_current(struct regulator_dev *rdev,
1379 struct regulation_constraints *constraints)
1381 const struct regulator_ops *ops = rdev->desc->ops;
1384 if (!constraints->min_uA && !constraints->max_uA)
1387 if (constraints->min_uA > constraints->max_uA) {
1388 rdev_err(rdev, "Invalid current constraints\n");
1392 if (!ops->set_current_limit || !ops->get_current_limit) {
1393 rdev_warn(rdev, "Operation of current configuration missing\n");
1397 /* Set regulator current in constraints range */
1398 ret = ops->set_current_limit(rdev, constraints->min_uA,
1399 constraints->max_uA);
1401 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
1408 static int _regulator_do_enable(struct regulator_dev *rdev);
1410 static int notif_set_limit(struct regulator_dev *rdev,
1411 int (*set)(struct regulator_dev *, int, int, bool),
1412 int limit, int severity)
1416 if (limit == REGULATOR_NOTIF_LIMIT_DISABLE) {
1423 if (limit == REGULATOR_NOTIF_LIMIT_ENABLE)
1426 return set(rdev, limit, severity, enable);
1429 static int handle_notify_limits(struct regulator_dev *rdev,
1430 int (*set)(struct regulator_dev *, int, int, bool),
1431 struct notification_limit *limits)
1439 ret = notif_set_limit(rdev, set, limits->prot,
1440 REGULATOR_SEVERITY_PROT);
1445 ret = notif_set_limit(rdev, set, limits->err,
1446 REGULATOR_SEVERITY_ERR);
1451 ret = notif_set_limit(rdev, set, limits->warn,
1452 REGULATOR_SEVERITY_WARN);
1457 * set_machine_constraints - sets regulator constraints
1458 * @rdev: regulator source
1460 * Allows platform initialisation code to define and constrain
1461 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
1462 * Constraints *must* be set by platform code in order for some
1463 * regulator operations to proceed i.e. set_voltage, set_current_limit,
1466 static int set_machine_constraints(struct regulator_dev *rdev)
1469 const struct regulator_ops *ops = rdev->desc->ops;
1471 ret = machine_constraints_voltage(rdev, rdev->constraints);
1475 ret = machine_constraints_current(rdev, rdev->constraints);
1479 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1480 ret = ops->set_input_current_limit(rdev,
1481 rdev->constraints->ilim_uA);
1483 rdev_err(rdev, "failed to set input limit: %pe\n", ERR_PTR(ret));
1488 /* do we need to setup our suspend state */
1489 if (rdev->constraints->initial_state) {
1490 ret = suspend_set_initial_state(rdev);
1492 rdev_err(rdev, "failed to set suspend state: %pe\n", ERR_PTR(ret));
1497 if (rdev->constraints->initial_mode) {
1498 if (!ops->set_mode) {
1499 rdev_err(rdev, "no set_mode operation\n");
1503 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
1505 rdev_err(rdev, "failed to set initial mode: %pe\n", ERR_PTR(ret));
1508 } else if (rdev->constraints->system_load) {
1510 * We'll only apply the initial system load if an
1511 * initial mode wasn't specified.
1513 drms_uA_update(rdev);
1516 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1517 && ops->set_ramp_delay) {
1518 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1520 rdev_err(rdev, "failed to set ramp_delay: %pe\n", ERR_PTR(ret));
1525 if (rdev->constraints->pull_down && ops->set_pull_down) {
1526 ret = ops->set_pull_down(rdev);
1528 rdev_err(rdev, "failed to set pull down: %pe\n", ERR_PTR(ret));
1533 if (rdev->constraints->soft_start && ops->set_soft_start) {
1534 ret = ops->set_soft_start(rdev);
1536 rdev_err(rdev, "failed to set soft start: %pe\n", ERR_PTR(ret));
1542 * Existing logic does not warn if over_current_protection is given as
1543 * a constraint but driver does not support that. I think we should
1544 * warn about this type of issues as it is possible someone changes
1545 * PMIC on board to another type - and the another PMIC's driver does
1546 * not support setting protection. Board composer may happily believe
1547 * the DT limits are respected - especially if the new PMIC HW also
1548 * supports protection but the driver does not. I won't change the logic
1549 * without hearing more experienced opinion on this though.
1551 * If warning is seen as a good idea then we can merge handling the
1552 * over-curret protection and detection and get rid of this special
1555 if (rdev->constraints->over_current_protection
1556 && ops->set_over_current_protection) {
1557 int lim = rdev->constraints->over_curr_limits.prot;
1559 ret = ops->set_over_current_protection(rdev, lim,
1560 REGULATOR_SEVERITY_PROT,
1563 rdev_err(rdev, "failed to set over current protection: %pe\n",
1569 if (rdev->constraints->over_current_detection)
1570 ret = handle_notify_limits(rdev,
1571 ops->set_over_current_protection,
1572 &rdev->constraints->over_curr_limits);
1574 if (ret != -EOPNOTSUPP) {
1575 rdev_err(rdev, "failed to set over current limits: %pe\n",
1580 "IC does not support requested over-current limits\n");
1583 if (rdev->constraints->over_voltage_detection)
1584 ret = handle_notify_limits(rdev,
1585 ops->set_over_voltage_protection,
1586 &rdev->constraints->over_voltage_limits);
1588 if (ret != -EOPNOTSUPP) {
1589 rdev_err(rdev, "failed to set over voltage limits %pe\n",
1594 "IC does not support requested over voltage limits\n");
1597 if (rdev->constraints->under_voltage_detection)
1598 ret = handle_notify_limits(rdev,
1599 ops->set_under_voltage_protection,
1600 &rdev->constraints->under_voltage_limits);
1602 if (ret != -EOPNOTSUPP) {
1603 rdev_err(rdev, "failed to set under voltage limits %pe\n",
1608 "IC does not support requested under voltage limits\n");
1611 if (rdev->constraints->over_temp_detection)
1612 ret = handle_notify_limits(rdev,
1613 ops->set_thermal_protection,
1614 &rdev->constraints->temp_limits);
1616 if (ret != -EOPNOTSUPP) {
1617 rdev_err(rdev, "failed to set temperature limits %pe\n",
1622 "IC does not support requested temperature limits\n");
1625 if (rdev->constraints->active_discharge && ops->set_active_discharge) {
1626 bool ad_state = (rdev->constraints->active_discharge ==
1627 REGULATOR_ACTIVE_DISCHARGE_ENABLE) ? true : false;
1629 ret = ops->set_active_discharge(rdev, ad_state);
1631 rdev_err(rdev, "failed to set active discharge: %pe\n", ERR_PTR(ret));
1637 * If there is no mechanism for controlling the regulator then
1638 * flag it as always_on so we don't end up duplicating checks
1639 * for this so much. Note that we could control the state of
1640 * a supply to control the output on a regulator that has no
1643 if (!rdev->ena_pin && !ops->enable) {
1644 if (rdev->supply_name && !rdev->supply)
1645 return -EPROBE_DEFER;
1648 rdev->constraints->always_on =
1649 rdev->supply->rdev->constraints->always_on;
1651 rdev->constraints->always_on = true;
1654 /* If the constraints say the regulator should be on at this point
1655 * and we have control then make sure it is enabled.
1657 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1658 /* If we want to enable this regulator, make sure that we know
1659 * the supplying regulator.
1661 if (rdev->supply_name && !rdev->supply)
1662 return -EPROBE_DEFER;
1664 /* If supplying regulator has already been enabled,
1665 * it's not intended to have use_count increment
1666 * when rdev is only boot-on.
1669 (rdev->constraints->always_on ||
1670 !regulator_is_enabled(rdev->supply))) {
1671 ret = regulator_enable(rdev->supply);
1673 _regulator_put(rdev->supply);
1674 rdev->supply = NULL;
1679 ret = _regulator_do_enable(rdev);
1680 if (ret < 0 && ret != -EINVAL) {
1681 rdev_err(rdev, "failed to enable: %pe\n", ERR_PTR(ret));
1685 if (rdev->constraints->always_on)
1687 } else if (rdev->desc->off_on_delay) {
1688 rdev->last_off = ktime_get();
1691 print_constraints(rdev);
1696 * set_supply - set regulator supply regulator
1697 * @rdev: regulator (locked)
1698 * @supply_rdev: supply regulator (locked))
1700 * Called by platform initialisation code to set the supply regulator for this
1701 * regulator. This ensures that a regulators supply will also be enabled by the
1702 * core if it's child is enabled.
1704 static int set_supply(struct regulator_dev *rdev,
1705 struct regulator_dev *supply_rdev)
1709 rdev_dbg(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1711 if (!try_module_get(supply_rdev->owner))
1714 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
1715 if (rdev->supply == NULL) {
1716 module_put(supply_rdev->owner);
1720 supply_rdev->open_count++;
1726 * set_consumer_device_supply - Bind a regulator to a symbolic supply
1727 * @rdev: regulator source
1728 * @consumer_dev_name: dev_name() string for device supply applies to
1729 * @supply: symbolic name for supply
1731 * Allows platform initialisation code to map physical regulator
1732 * sources to symbolic names for supplies for use by devices. Devices
1733 * should use these symbolic names to request regulators, avoiding the
1734 * need to provide board-specific regulator names as platform data.
1736 static int set_consumer_device_supply(struct regulator_dev *rdev,
1737 const char *consumer_dev_name,
1740 struct regulator_map *node, *new_node;
1746 if (consumer_dev_name != NULL)
1751 new_node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
1752 if (new_node == NULL)
1755 new_node->regulator = rdev;
1756 new_node->supply = supply;
1759 new_node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1760 if (new_node->dev_name == NULL) {
1766 mutex_lock(®ulator_list_mutex);
1767 list_for_each_entry(node, ®ulator_map_list, list) {
1768 if (node->dev_name && consumer_dev_name) {
1769 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1771 } else if (node->dev_name || consumer_dev_name) {
1775 if (strcmp(node->supply, supply) != 0)
1778 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1780 dev_name(&node->regulator->dev),
1781 node->regulator->desc->name,
1783 dev_name(&rdev->dev), rdev_get_name(rdev));
1787 list_add(&new_node->list, ®ulator_map_list);
1788 mutex_unlock(®ulator_list_mutex);
1793 mutex_unlock(®ulator_list_mutex);
1794 kfree(new_node->dev_name);
1799 static void unset_regulator_supplies(struct regulator_dev *rdev)
1801 struct regulator_map *node, *n;
1803 list_for_each_entry_safe(node, n, ®ulator_map_list, list) {
1804 if (rdev == node->regulator) {
1805 list_del(&node->list);
1806 kfree(node->dev_name);
1812 #ifdef CONFIG_DEBUG_FS
1813 static ssize_t constraint_flags_read_file(struct file *file,
1814 char __user *user_buf,
1815 size_t count, loff_t *ppos)
1817 const struct regulator *regulator = file->private_data;
1818 const struct regulation_constraints *c = regulator->rdev->constraints;
1825 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1829 ret = snprintf(buf, PAGE_SIZE,
1833 "ramp_disable: %u\n"
1836 "over_current_protection: %u\n",
1843 c->over_current_protection);
1845 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1853 static const struct file_operations constraint_flags_fops = {
1854 #ifdef CONFIG_DEBUG_FS
1855 .open = simple_open,
1856 .read = constraint_flags_read_file,
1857 .llseek = default_llseek,
1861 #define REG_STR_SIZE 64
1863 static struct regulator *create_regulator(struct regulator_dev *rdev,
1865 const char *supply_name)
1867 struct regulator *regulator;
1870 lockdep_assert_held_once(&rdev->mutex.base);
1873 char buf[REG_STR_SIZE];
1876 size = snprintf(buf, REG_STR_SIZE, "%s-%s",
1877 dev->kobj.name, supply_name);
1878 if (size >= REG_STR_SIZE)
1881 supply_name = kstrdup(buf, GFP_KERNEL);
1882 if (supply_name == NULL)
1885 supply_name = kstrdup_const(supply_name, GFP_KERNEL);
1886 if (supply_name == NULL)
1890 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1891 if (regulator == NULL) {
1892 kfree_const(supply_name);
1896 regulator->rdev = rdev;
1897 regulator->supply_name = supply_name;
1899 list_add(®ulator->list, &rdev->consumer_list);
1902 regulator->dev = dev;
1904 /* Add a link to the device sysfs entry */
1905 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
1908 rdev_dbg(rdev, "could not add device link %s: %pe\n",
1909 dev->kobj.name, ERR_PTR(err));
1915 regulator->debugfs = debugfs_create_dir(supply_name, rdev->debugfs);
1916 if (IS_ERR(regulator->debugfs))
1917 rdev_dbg(rdev, "Failed to create debugfs directory\n");
1919 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1920 ®ulator->uA_load);
1921 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1922 ®ulator->voltage[PM_SUSPEND_ON].min_uV);
1923 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1924 ®ulator->voltage[PM_SUSPEND_ON].max_uV);
1925 debugfs_create_file("constraint_flags", 0444, regulator->debugfs,
1926 regulator, &constraint_flags_fops);
1929 * Check now if the regulator is an always on regulator - if
1930 * it is then we don't need to do nearly so much work for
1931 * enable/disable calls.
1933 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS) &&
1934 _regulator_is_enabled(rdev))
1935 regulator->always_on = true;
1940 static int _regulator_get_enable_time(struct regulator_dev *rdev)
1942 if (rdev->constraints && rdev->constraints->enable_time)
1943 return rdev->constraints->enable_time;
1944 if (rdev->desc->ops->enable_time)
1945 return rdev->desc->ops->enable_time(rdev);
1946 return rdev->desc->enable_time;
1949 static struct regulator_supply_alias *regulator_find_supply_alias(
1950 struct device *dev, const char *supply)
1952 struct regulator_supply_alias *map;
1954 list_for_each_entry(map, ®ulator_supply_alias_list, list)
1955 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1961 static void regulator_supply_alias(struct device **dev, const char **supply)
1963 struct regulator_supply_alias *map;
1965 map = regulator_find_supply_alias(*dev, *supply);
1967 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1968 *supply, map->alias_supply,
1969 dev_name(map->alias_dev));
1970 *dev = map->alias_dev;
1971 *supply = map->alias_supply;
1975 static int regulator_match(struct device *dev, const void *data)
1977 struct regulator_dev *r = dev_to_rdev(dev);
1979 return strcmp(rdev_get_name(r), data) == 0;
1982 static struct regulator_dev *regulator_lookup_by_name(const char *name)
1986 dev = class_find_device(®ulator_class, NULL, name, regulator_match);
1988 return dev ? dev_to_rdev(dev) : NULL;
1992 * regulator_dev_lookup - lookup a regulator device.
1993 * @dev: device for regulator "consumer".
1994 * @supply: Supply name or regulator ID.
1996 * If successful, returns a struct regulator_dev that corresponds to the name
1997 * @supply and with the embedded struct device refcount incremented by one.
1998 * The refcount must be dropped by calling put_device().
1999 * On failure one of the following ERR-PTR-encoded values is returned:
2000 * -ENODEV if lookup fails permanently, -EPROBE_DEFER if lookup could succeed
2003 static struct regulator_dev *regulator_dev_lookup(struct device *dev,
2006 struct regulator_dev *r = NULL;
2007 struct device_node *node;
2008 struct regulator_map *map;
2009 const char *devname = NULL;
2011 regulator_supply_alias(&dev, &supply);
2013 /* first do a dt based lookup */
2014 if (dev && dev->of_node) {
2015 node = of_get_regulator(dev, supply);
2017 r = of_find_regulator_by_node(node);
2023 * We have a node, but there is no device.
2024 * assume it has not registered yet.
2026 return ERR_PTR(-EPROBE_DEFER);
2030 /* if not found, try doing it non-dt way */
2032 devname = dev_name(dev);
2034 mutex_lock(®ulator_list_mutex);
2035 list_for_each_entry(map, ®ulator_map_list, list) {
2036 /* If the mapping has a device set up it must match */
2037 if (map->dev_name &&
2038 (!devname || strcmp(map->dev_name, devname)))
2041 if (strcmp(map->supply, supply) == 0 &&
2042 get_device(&map->regulator->dev)) {
2047 mutex_unlock(®ulator_list_mutex);
2052 r = regulator_lookup_by_name(supply);
2056 return ERR_PTR(-ENODEV);
2059 static int regulator_resolve_supply(struct regulator_dev *rdev)
2061 struct regulator_dev *r;
2062 struct device *dev = rdev->dev.parent;
2063 struct ww_acquire_ctx ww_ctx;
2066 /* No supply to resolve? */
2067 if (!rdev->supply_name)
2070 /* Supply already resolved? (fast-path without locking contention) */
2074 r = regulator_dev_lookup(dev, rdev->supply_name);
2078 /* Did the lookup explicitly defer for us? */
2079 if (ret == -EPROBE_DEFER)
2082 if (have_full_constraints()) {
2083 r = dummy_regulator_rdev;
2084 get_device(&r->dev);
2086 dev_err(dev, "Failed to resolve %s-supply for %s\n",
2087 rdev->supply_name, rdev->desc->name);
2088 ret = -EPROBE_DEFER;
2094 dev_err(dev, "Supply for %s (%s) resolved to itself\n",
2095 rdev->desc->name, rdev->supply_name);
2096 if (!have_full_constraints()) {
2100 r = dummy_regulator_rdev;
2101 get_device(&r->dev);
2105 * If the supply's parent device is not the same as the
2106 * regulator's parent device, then ensure the parent device
2107 * is bound before we resolve the supply, in case the parent
2108 * device get probe deferred and unregisters the supply.
2110 if (r->dev.parent && r->dev.parent != rdev->dev.parent) {
2111 if (!device_is_bound(r->dev.parent)) {
2112 put_device(&r->dev);
2113 ret = -EPROBE_DEFER;
2118 /* Recursively resolve the supply of the supply */
2119 ret = regulator_resolve_supply(r);
2121 put_device(&r->dev);
2126 * Recheck rdev->supply with rdev->mutex lock held to avoid a race
2127 * between rdev->supply null check and setting rdev->supply in
2128 * set_supply() from concurrent tasks.
2130 regulator_lock_two(rdev, r, &ww_ctx);
2132 /* Supply just resolved by a concurrent task? */
2134 regulator_unlock_two(rdev, r, &ww_ctx);
2135 put_device(&r->dev);
2139 ret = set_supply(rdev, r);
2141 regulator_unlock_two(rdev, r, &ww_ctx);
2142 put_device(&r->dev);
2146 regulator_unlock_two(rdev, r, &ww_ctx);
2149 * In set_machine_constraints() we may have turned this regulator on
2150 * but we couldn't propagate to the supply if it hadn't been resolved
2153 if (rdev->use_count) {
2154 ret = regulator_enable(rdev->supply);
2156 _regulator_put(rdev->supply);
2157 rdev->supply = NULL;
2166 /* Internal regulator request function */
2167 struct regulator *_regulator_get(struct device *dev, const char *id,
2168 enum regulator_get_type get_type)
2170 struct regulator_dev *rdev;
2171 struct regulator *regulator;
2172 struct device_link *link;
2175 if (get_type >= MAX_GET_TYPE) {
2176 dev_err(dev, "invalid type %d in %s\n", get_type, __func__);
2177 return ERR_PTR(-EINVAL);
2181 pr_err("get() with no identifier\n");
2182 return ERR_PTR(-EINVAL);
2185 rdev = regulator_dev_lookup(dev, id);
2187 ret = PTR_ERR(rdev);
2190 * If regulator_dev_lookup() fails with error other
2191 * than -ENODEV our job here is done, we simply return it.
2194 return ERR_PTR(ret);
2196 if (!have_full_constraints()) {
2198 "incomplete constraints, dummy supplies not allowed\n");
2199 return ERR_PTR(-ENODEV);
2205 * Assume that a regulator is physically present and
2206 * enabled, even if it isn't hooked up, and just
2209 dev_warn(dev, "supply %s not found, using dummy regulator\n", id);
2210 rdev = dummy_regulator_rdev;
2211 get_device(&rdev->dev);
2216 "dummy supplies not allowed for exclusive requests\n");
2220 return ERR_PTR(-ENODEV);
2224 if (rdev->exclusive) {
2225 regulator = ERR_PTR(-EPERM);
2226 put_device(&rdev->dev);
2230 if (get_type == EXCLUSIVE_GET && rdev->open_count) {
2231 regulator = ERR_PTR(-EBUSY);
2232 put_device(&rdev->dev);
2236 mutex_lock(®ulator_list_mutex);
2237 ret = (rdev->coupling_desc.n_resolved != rdev->coupling_desc.n_coupled);
2238 mutex_unlock(®ulator_list_mutex);
2241 regulator = ERR_PTR(-EPROBE_DEFER);
2242 put_device(&rdev->dev);
2246 ret = regulator_resolve_supply(rdev);
2248 regulator = ERR_PTR(ret);
2249 put_device(&rdev->dev);
2253 if (!try_module_get(rdev->owner)) {
2254 regulator = ERR_PTR(-EPROBE_DEFER);
2255 put_device(&rdev->dev);
2259 regulator_lock(rdev);
2260 regulator = create_regulator(rdev, dev, id);
2261 regulator_unlock(rdev);
2262 if (regulator == NULL) {
2263 regulator = ERR_PTR(-ENOMEM);
2264 module_put(rdev->owner);
2265 put_device(&rdev->dev);
2270 if (get_type == EXCLUSIVE_GET) {
2271 rdev->exclusive = 1;
2273 ret = _regulator_is_enabled(rdev);
2275 rdev->use_count = 1;
2276 regulator->enable_count = 1;
2278 /* Propagate the regulator state to its supply */
2280 ret = regulator_enable(rdev->supply);
2282 destroy_regulator(regulator);
2283 module_put(rdev->owner);
2284 put_device(&rdev->dev);
2285 return ERR_PTR(ret);
2289 rdev->use_count = 0;
2290 regulator->enable_count = 0;
2294 link = device_link_add(dev, &rdev->dev, DL_FLAG_STATELESS);
2295 if (!IS_ERR_OR_NULL(link))
2296 regulator->device_link = true;
2302 * regulator_get - lookup and obtain a reference to a regulator.
2303 * @dev: device for regulator "consumer"
2304 * @id: Supply name or regulator ID.
2306 * Returns a struct regulator corresponding to the regulator producer,
2307 * or IS_ERR() condition containing errno.
2309 * Use of supply names configured via set_consumer_device_supply() is
2310 * strongly encouraged. It is recommended that the supply name used
2311 * should match the name used for the supply and/or the relevant
2312 * device pins in the datasheet.
2314 struct regulator *regulator_get(struct device *dev, const char *id)
2316 return _regulator_get(dev, id, NORMAL_GET);
2318 EXPORT_SYMBOL_GPL(regulator_get);
2321 * regulator_get_exclusive - obtain exclusive access to a regulator.
2322 * @dev: device for regulator "consumer"
2323 * @id: Supply name or regulator ID.
2325 * Returns a struct regulator corresponding to the regulator producer,
2326 * or IS_ERR() condition containing errno. Other consumers will be
2327 * unable to obtain this regulator while this reference is held and the
2328 * use count for the regulator will be initialised to reflect the current
2329 * state of the regulator.
2331 * This is intended for use by consumers which cannot tolerate shared
2332 * use of the regulator such as those which need to force the
2333 * regulator off for correct operation of the hardware they are
2336 * Use of supply names configured via set_consumer_device_supply() is
2337 * strongly encouraged. It is recommended that the supply name used
2338 * should match the name used for the supply and/or the relevant
2339 * device pins in the datasheet.
2341 struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
2343 return _regulator_get(dev, id, EXCLUSIVE_GET);
2345 EXPORT_SYMBOL_GPL(regulator_get_exclusive);
2348 * regulator_get_optional - obtain optional access to a regulator.
2349 * @dev: device for regulator "consumer"
2350 * @id: Supply name or regulator ID.
2352 * Returns a struct regulator corresponding to the regulator producer,
2353 * or IS_ERR() condition containing errno.
2355 * This is intended for use by consumers for devices which can have
2356 * some supplies unconnected in normal use, such as some MMC devices.
2357 * It can allow the regulator core to provide stub supplies for other
2358 * supplies requested using normal regulator_get() calls without
2359 * disrupting the operation of drivers that can handle absent
2362 * Use of supply names configured via set_consumer_device_supply() is
2363 * strongly encouraged. It is recommended that the supply name used
2364 * should match the name used for the supply and/or the relevant
2365 * device pins in the datasheet.
2367 struct regulator *regulator_get_optional(struct device *dev, const char *id)
2369 return _regulator_get(dev, id, OPTIONAL_GET);
2371 EXPORT_SYMBOL_GPL(regulator_get_optional);
2373 static void destroy_regulator(struct regulator *regulator)
2375 struct regulator_dev *rdev = regulator->rdev;
2377 debugfs_remove_recursive(regulator->debugfs);
2379 if (regulator->dev) {
2380 if (regulator->device_link)
2381 device_link_remove(regulator->dev, &rdev->dev);
2383 /* remove any sysfs entries */
2384 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
2387 regulator_lock(rdev);
2388 list_del(®ulator->list);
2391 rdev->exclusive = 0;
2392 regulator_unlock(rdev);
2394 kfree_const(regulator->supply_name);
2398 /* regulator_list_mutex lock held by regulator_put() */
2399 static void _regulator_put(struct regulator *regulator)
2401 struct regulator_dev *rdev;
2403 if (IS_ERR_OR_NULL(regulator))
2406 lockdep_assert_held_once(®ulator_list_mutex);
2408 /* Docs say you must disable before calling regulator_put() */
2409 WARN_ON(regulator->enable_count);
2411 rdev = regulator->rdev;
2413 destroy_regulator(regulator);
2415 module_put(rdev->owner);
2416 put_device(&rdev->dev);
2420 * regulator_put - "free" the regulator source
2421 * @regulator: regulator source
2423 * Note: drivers must ensure that all regulator_enable calls made on this
2424 * regulator source are balanced by regulator_disable calls prior to calling
2427 void regulator_put(struct regulator *regulator)
2429 mutex_lock(®ulator_list_mutex);
2430 _regulator_put(regulator);
2431 mutex_unlock(®ulator_list_mutex);
2433 EXPORT_SYMBOL_GPL(regulator_put);
2436 * regulator_register_supply_alias - Provide device alias for supply lookup
2438 * @dev: device that will be given as the regulator "consumer"
2439 * @id: Supply name or regulator ID
2440 * @alias_dev: device that should be used to lookup the supply
2441 * @alias_id: Supply name or regulator ID that should be used to lookup the
2444 * All lookups for id on dev will instead be conducted for alias_id on
2447 int regulator_register_supply_alias(struct device *dev, const char *id,
2448 struct device *alias_dev,
2449 const char *alias_id)
2451 struct regulator_supply_alias *map;
2453 map = regulator_find_supply_alias(dev, id);
2457 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
2462 map->src_supply = id;
2463 map->alias_dev = alias_dev;
2464 map->alias_supply = alias_id;
2466 list_add(&map->list, ®ulator_supply_alias_list);
2468 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
2469 id, dev_name(dev), alias_id, dev_name(alias_dev));
2473 EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
2476 * regulator_unregister_supply_alias - Remove device alias
2478 * @dev: device that will be given as the regulator "consumer"
2479 * @id: Supply name or regulator ID
2481 * Remove a lookup alias if one exists for id on dev.
2483 void regulator_unregister_supply_alias(struct device *dev, const char *id)
2485 struct regulator_supply_alias *map;
2487 map = regulator_find_supply_alias(dev, id);
2489 list_del(&map->list);
2493 EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
2496 * regulator_bulk_register_supply_alias - register multiple aliases
2498 * @dev: device that will be given as the regulator "consumer"
2499 * @id: List of supply names or regulator IDs
2500 * @alias_dev: device that should be used to lookup the supply
2501 * @alias_id: List of supply names or regulator IDs that should be used to
2503 * @num_id: Number of aliases to register
2505 * @return 0 on success, an errno on failure.
2507 * This helper function allows drivers to register several supply
2508 * aliases in one operation. If any of the aliases cannot be
2509 * registered any aliases that were registered will be removed
2510 * before returning to the caller.
2512 int regulator_bulk_register_supply_alias(struct device *dev,
2513 const char *const *id,
2514 struct device *alias_dev,
2515 const char *const *alias_id,
2521 for (i = 0; i < num_id; ++i) {
2522 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
2532 "Failed to create supply alias %s,%s -> %s,%s\n",
2533 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
2536 regulator_unregister_supply_alias(dev, id[i]);
2540 EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
2543 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
2545 * @dev: device that will be given as the regulator "consumer"
2546 * @id: List of supply names or regulator IDs
2547 * @num_id: Number of aliases to unregister
2549 * This helper function allows drivers to unregister several supply
2550 * aliases in one operation.
2552 void regulator_bulk_unregister_supply_alias(struct device *dev,
2553 const char *const *id,
2558 for (i = 0; i < num_id; ++i)
2559 regulator_unregister_supply_alias(dev, id[i]);
2561 EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
2564 /* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
2565 static int regulator_ena_gpio_request(struct regulator_dev *rdev,
2566 const struct regulator_config *config)
2568 struct regulator_enable_gpio *pin, *new_pin;
2569 struct gpio_desc *gpiod;
2571 gpiod = config->ena_gpiod;
2572 new_pin = kzalloc(sizeof(*new_pin), GFP_KERNEL);
2574 mutex_lock(®ulator_list_mutex);
2576 list_for_each_entry(pin, ®ulator_ena_gpio_list, list) {
2577 if (pin->gpiod == gpiod) {
2578 rdev_dbg(rdev, "GPIO is already used\n");
2579 goto update_ena_gpio_to_rdev;
2583 if (new_pin == NULL) {
2584 mutex_unlock(®ulator_list_mutex);
2592 list_add(&pin->list, ®ulator_ena_gpio_list);
2594 update_ena_gpio_to_rdev:
2595 pin->request_count++;
2596 rdev->ena_pin = pin;
2598 mutex_unlock(®ulator_list_mutex);
2604 static void regulator_ena_gpio_free(struct regulator_dev *rdev)
2606 struct regulator_enable_gpio *pin, *n;
2611 /* Free the GPIO only in case of no use */
2612 list_for_each_entry_safe(pin, n, ®ulator_ena_gpio_list, list) {
2613 if (pin != rdev->ena_pin)
2616 if (--pin->request_count)
2619 gpiod_put(pin->gpiod);
2620 list_del(&pin->list);
2625 rdev->ena_pin = NULL;
2629 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
2630 * @rdev: regulator_dev structure
2631 * @enable: enable GPIO at initial use?
2633 * GPIO is enabled in case of initial use. (enable_count is 0)
2634 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
2636 static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
2638 struct regulator_enable_gpio *pin = rdev->ena_pin;
2644 /* Enable GPIO at initial use */
2645 if (pin->enable_count == 0)
2646 gpiod_set_value_cansleep(pin->gpiod, 1);
2648 pin->enable_count++;
2650 if (pin->enable_count > 1) {
2651 pin->enable_count--;
2655 /* Disable GPIO if not used */
2656 if (pin->enable_count <= 1) {
2657 gpiod_set_value_cansleep(pin->gpiod, 0);
2658 pin->enable_count = 0;
2666 * _regulator_delay_helper - a delay helper function
2667 * @delay: time to delay in microseconds
2669 * Delay for the requested amount of time as per the guidelines in:
2671 * Documentation/timers/timers-howto.rst
2673 * The assumption here is that these regulator operations will never used in
2674 * atomic context and therefore sleeping functions can be used.
2676 static void _regulator_delay_helper(unsigned int delay)
2678 unsigned int ms = delay / 1000;
2679 unsigned int us = delay % 1000;
2683 * For small enough values, handle super-millisecond
2684 * delays in the usleep_range() call below.
2693 * Give the scheduler some room to coalesce with any other
2694 * wakeup sources. For delays shorter than 10 us, don't even
2695 * bother setting up high-resolution timers and just busy-
2699 usleep_range(us, us + 100);
2705 * _regulator_check_status_enabled
2707 * A helper function to check if the regulator status can be interpreted
2708 * as 'regulator is enabled'.
2709 * @rdev: the regulator device to check
2712 * * 1 - if status shows regulator is in enabled state
2713 * * 0 - if not enabled state
2714 * * Error Value - as received from ops->get_status()
2716 static inline int _regulator_check_status_enabled(struct regulator_dev *rdev)
2718 int ret = rdev->desc->ops->get_status(rdev);
2721 rdev_info(rdev, "get_status returned error: %d\n", ret);
2726 case REGULATOR_STATUS_OFF:
2727 case REGULATOR_STATUS_ERROR:
2728 case REGULATOR_STATUS_UNDEFINED:
2735 static int _regulator_do_enable(struct regulator_dev *rdev)
2739 /* Query before enabling in case configuration dependent. */
2740 ret = _regulator_get_enable_time(rdev);
2744 rdev_warn(rdev, "enable_time() failed: %pe\n", ERR_PTR(ret));
2748 trace_regulator_enable(rdev_get_name(rdev));
2750 if (rdev->desc->off_on_delay) {
2751 /* if needed, keep a distance of off_on_delay from last time
2752 * this regulator was disabled.
2754 ktime_t end = ktime_add_us(rdev->last_off, rdev->desc->off_on_delay);
2755 s64 remaining = ktime_us_delta(end, ktime_get_boottime());
2758 _regulator_delay_helper(remaining);
2761 if (rdev->ena_pin) {
2762 if (!rdev->ena_gpio_state) {
2763 ret = regulator_ena_gpio_ctrl(rdev, true);
2766 rdev->ena_gpio_state = 1;
2768 } else if (rdev->desc->ops->enable) {
2769 ret = rdev->desc->ops->enable(rdev);
2776 /* Allow the regulator to ramp; it would be useful to extend
2777 * this for bulk operations so that the regulators can ramp
2780 trace_regulator_enable_delay(rdev_get_name(rdev));
2782 /* If poll_enabled_time is set, poll upto the delay calculated
2783 * above, delaying poll_enabled_time uS to check if the regulator
2784 * actually got enabled.
2785 * If the regulator isn't enabled after our delay helper has expired,
2786 * return -ETIMEDOUT.
2788 if (rdev->desc->poll_enabled_time) {
2789 int time_remaining = delay;
2791 while (time_remaining > 0) {
2792 _regulator_delay_helper(rdev->desc->poll_enabled_time);
2794 if (rdev->desc->ops->get_status) {
2795 ret = _regulator_check_status_enabled(rdev);
2800 } else if (rdev->desc->ops->is_enabled(rdev))
2803 time_remaining -= rdev->desc->poll_enabled_time;
2806 if (time_remaining <= 0) {
2807 rdev_err(rdev, "Enabled check timed out\n");
2811 _regulator_delay_helper(delay);
2814 trace_regulator_enable_complete(rdev_get_name(rdev));
2820 * _regulator_handle_consumer_enable - handle that a consumer enabled
2821 * @regulator: regulator source
2823 * Some things on a regulator consumer (like the contribution towards total
2824 * load on the regulator) only have an effect when the consumer wants the
2825 * regulator enabled. Explained in example with two consumers of the same
2827 * consumer A: set_load(100); => total load = 0
2828 * consumer A: regulator_enable(); => total load = 100
2829 * consumer B: set_load(1000); => total load = 100
2830 * consumer B: regulator_enable(); => total load = 1100
2831 * consumer A: regulator_disable(); => total_load = 1000
2833 * This function (together with _regulator_handle_consumer_disable) is
2834 * responsible for keeping track of the refcount for a given regulator consumer
2835 * and applying / unapplying these things.
2837 * Returns 0 upon no error; -error upon error.
2839 static int _regulator_handle_consumer_enable(struct regulator *regulator)
2842 struct regulator_dev *rdev = regulator->rdev;
2844 lockdep_assert_held_once(&rdev->mutex.base);
2846 regulator->enable_count++;
2847 if (regulator->uA_load && regulator->enable_count == 1) {
2848 ret = drms_uA_update(rdev);
2850 regulator->enable_count--;
2858 * _regulator_handle_consumer_disable - handle that a consumer disabled
2859 * @regulator: regulator source
2861 * The opposite of _regulator_handle_consumer_enable().
2863 * Returns 0 upon no error; -error upon error.
2865 static int _regulator_handle_consumer_disable(struct regulator *regulator)
2867 struct regulator_dev *rdev = regulator->rdev;
2869 lockdep_assert_held_once(&rdev->mutex.base);
2871 if (!regulator->enable_count) {
2872 rdev_err(rdev, "Underflow of regulator enable count\n");
2876 regulator->enable_count--;
2877 if (regulator->uA_load && regulator->enable_count == 0)
2878 return drms_uA_update(rdev);
2883 /* locks held by regulator_enable() */
2884 static int _regulator_enable(struct regulator *regulator)
2886 struct regulator_dev *rdev = regulator->rdev;
2889 lockdep_assert_held_once(&rdev->mutex.base);
2891 if (rdev->use_count == 0 && rdev->supply) {
2892 ret = _regulator_enable(rdev->supply);
2897 /* balance only if there are regulators coupled */
2898 if (rdev->coupling_desc.n_coupled > 1) {
2899 ret = regulator_balance_voltage(rdev, PM_SUSPEND_ON);
2901 goto err_disable_supply;
2904 ret = _regulator_handle_consumer_enable(regulator);
2906 goto err_disable_supply;
2908 if (rdev->use_count == 0) {
2910 * The regulator may already be enabled if it's not switchable
2913 ret = _regulator_is_enabled(rdev);
2914 if (ret == -EINVAL || ret == 0) {
2915 if (!regulator_ops_is_valid(rdev,
2916 REGULATOR_CHANGE_STATUS)) {
2918 goto err_consumer_disable;
2921 ret = _regulator_do_enable(rdev);
2923 goto err_consumer_disable;
2925 _notifier_call_chain(rdev, REGULATOR_EVENT_ENABLE,
2927 } else if (ret < 0) {
2928 rdev_err(rdev, "is_enabled() failed: %pe\n", ERR_PTR(ret));
2929 goto err_consumer_disable;
2931 /* Fallthrough on positive return values - already enabled */
2934 if (regulator->enable_count == 1)
2939 err_consumer_disable:
2940 _regulator_handle_consumer_disable(regulator);
2943 if (rdev->use_count == 0 && rdev->supply)
2944 _regulator_disable(rdev->supply);
2950 * regulator_enable - enable regulator output
2951 * @regulator: regulator source
2953 * Request that the regulator be enabled with the regulator output at
2954 * the predefined voltage or current value. Calls to regulator_enable()
2955 * must be balanced with calls to regulator_disable().
2957 * NOTE: the output value can be set by other drivers, boot loader or may be
2958 * hardwired in the regulator.
2960 int regulator_enable(struct regulator *regulator)
2962 struct regulator_dev *rdev = regulator->rdev;
2963 struct ww_acquire_ctx ww_ctx;
2966 regulator_lock_dependent(rdev, &ww_ctx);
2967 ret = _regulator_enable(regulator);
2968 regulator_unlock_dependent(rdev, &ww_ctx);
2972 EXPORT_SYMBOL_GPL(regulator_enable);
2974 static int _regulator_do_disable(struct regulator_dev *rdev)
2978 trace_regulator_disable(rdev_get_name(rdev));
2980 if (rdev->ena_pin) {
2981 if (rdev->ena_gpio_state) {
2982 ret = regulator_ena_gpio_ctrl(rdev, false);
2985 rdev->ena_gpio_state = 0;
2988 } else if (rdev->desc->ops->disable) {
2989 ret = rdev->desc->ops->disable(rdev);
2994 if (rdev->desc->off_on_delay)
2995 rdev->last_off = ktime_get_boottime();
2997 trace_regulator_disable_complete(rdev_get_name(rdev));
3002 /* locks held by regulator_disable() */
3003 static int _regulator_disable(struct regulator *regulator)
3005 struct regulator_dev *rdev = regulator->rdev;
3008 lockdep_assert_held_once(&rdev->mutex.base);
3010 if (WARN(regulator->enable_count == 0,
3011 "unbalanced disables for %s\n", rdev_get_name(rdev)))
3014 if (regulator->enable_count == 1) {
3015 /* disabling last enable_count from this regulator */
3016 /* are we the last user and permitted to disable ? */
3017 if (rdev->use_count == 1 &&
3018 (rdev->constraints && !rdev->constraints->always_on)) {
3020 /* we are last user */
3021 if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS)) {
3022 ret = _notifier_call_chain(rdev,
3023 REGULATOR_EVENT_PRE_DISABLE,
3025 if (ret & NOTIFY_STOP_MASK)
3028 ret = _regulator_do_disable(rdev);
3030 rdev_err(rdev, "failed to disable: %pe\n", ERR_PTR(ret));
3031 _notifier_call_chain(rdev,
3032 REGULATOR_EVENT_ABORT_DISABLE,
3036 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
3040 rdev->use_count = 0;
3041 } else if (rdev->use_count > 1) {
3047 ret = _regulator_handle_consumer_disable(regulator);
3049 if (ret == 0 && rdev->coupling_desc.n_coupled > 1)
3050 ret = regulator_balance_voltage(rdev, PM_SUSPEND_ON);
3052 if (ret == 0 && rdev->use_count == 0 && rdev->supply)
3053 ret = _regulator_disable(rdev->supply);
3059 * regulator_disable - disable regulator output
3060 * @regulator: regulator source
3062 * Disable the regulator output voltage or current. Calls to
3063 * regulator_enable() must be balanced with calls to
3064 * regulator_disable().
3066 * NOTE: this will only disable the regulator output if no other consumer
3067 * devices have it enabled, the regulator device supports disabling and
3068 * machine constraints permit this operation.
3070 int regulator_disable(struct regulator *regulator)
3072 struct regulator_dev *rdev = regulator->rdev;
3073 struct ww_acquire_ctx ww_ctx;
3076 regulator_lock_dependent(rdev, &ww_ctx);
3077 ret = _regulator_disable(regulator);
3078 regulator_unlock_dependent(rdev, &ww_ctx);
3082 EXPORT_SYMBOL_GPL(regulator_disable);
3084 /* locks held by regulator_force_disable() */
3085 static int _regulator_force_disable(struct regulator_dev *rdev)
3089 lockdep_assert_held_once(&rdev->mutex.base);
3091 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
3092 REGULATOR_EVENT_PRE_DISABLE, NULL);
3093 if (ret & NOTIFY_STOP_MASK)
3096 ret = _regulator_do_disable(rdev);
3098 rdev_err(rdev, "failed to force disable: %pe\n", ERR_PTR(ret));
3099 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
3100 REGULATOR_EVENT_ABORT_DISABLE, NULL);
3104 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
3105 REGULATOR_EVENT_DISABLE, NULL);
3111 * regulator_force_disable - force disable regulator output
3112 * @regulator: regulator source
3114 * Forcibly disable the regulator output voltage or current.
3115 * NOTE: this *will* disable the regulator output even if other consumer
3116 * devices have it enabled. This should be used for situations when device
3117 * damage will likely occur if the regulator is not disabled (e.g. over temp).
3119 int regulator_force_disable(struct regulator *regulator)
3121 struct regulator_dev *rdev = regulator->rdev;
3122 struct ww_acquire_ctx ww_ctx;
3125 regulator_lock_dependent(rdev, &ww_ctx);
3127 ret = _regulator_force_disable(regulator->rdev);
3129 if (rdev->coupling_desc.n_coupled > 1)
3130 regulator_balance_voltage(rdev, PM_SUSPEND_ON);
3132 if (regulator->uA_load) {
3133 regulator->uA_load = 0;
3134 ret = drms_uA_update(rdev);
3137 if (rdev->use_count != 0 && rdev->supply)
3138 _regulator_disable(rdev->supply);
3140 regulator_unlock_dependent(rdev, &ww_ctx);
3144 EXPORT_SYMBOL_GPL(regulator_force_disable);
3146 static void regulator_disable_work(struct work_struct *work)
3148 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
3150 struct ww_acquire_ctx ww_ctx;
3152 struct regulator *regulator;
3153 int total_count = 0;
3155 regulator_lock_dependent(rdev, &ww_ctx);
3158 * Workqueue functions queue the new work instance while the previous
3159 * work instance is being processed. Cancel the queued work instance
3160 * as the work instance under processing does the job of the queued
3163 cancel_delayed_work(&rdev->disable_work);
3165 list_for_each_entry(regulator, &rdev->consumer_list, list) {
3166 count = regulator->deferred_disables;
3171 total_count += count;
3172 regulator->deferred_disables = 0;
3174 for (i = 0; i < count; i++) {
3175 ret = _regulator_disable(regulator);
3177 rdev_err(rdev, "Deferred disable failed: %pe\n",
3181 WARN_ON(!total_count);
3183 if (rdev->coupling_desc.n_coupled > 1)
3184 regulator_balance_voltage(rdev, PM_SUSPEND_ON);
3186 regulator_unlock_dependent(rdev, &ww_ctx);
3190 * regulator_disable_deferred - disable regulator output with delay
3191 * @regulator: regulator source
3192 * @ms: milliseconds until the regulator is disabled
3194 * Execute regulator_disable() on the regulator after a delay. This
3195 * is intended for use with devices that require some time to quiesce.
3197 * NOTE: this will only disable the regulator output if no other consumer
3198 * devices have it enabled, the regulator device supports disabling and
3199 * machine constraints permit this operation.
3201 int regulator_disable_deferred(struct regulator *regulator, int ms)
3203 struct regulator_dev *rdev = regulator->rdev;
3206 return regulator_disable(regulator);
3208 regulator_lock(rdev);
3209 regulator->deferred_disables++;
3210 mod_delayed_work(system_power_efficient_wq, &rdev->disable_work,
3211 msecs_to_jiffies(ms));
3212 regulator_unlock(rdev);
3216 EXPORT_SYMBOL_GPL(regulator_disable_deferred);
3218 static int _regulator_is_enabled(struct regulator_dev *rdev)
3220 /* A GPIO control always takes precedence */
3222 return rdev->ena_gpio_state;
3224 /* If we don't know then assume that the regulator is always on */
3225 if (!rdev->desc->ops->is_enabled)
3228 return rdev->desc->ops->is_enabled(rdev);
3231 static int _regulator_list_voltage(struct regulator_dev *rdev,
3232 unsigned selector, int lock)
3234 const struct regulator_ops *ops = rdev->desc->ops;
3237 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
3238 return rdev->desc->fixed_uV;
3240 if (ops->list_voltage) {
3241 if (selector >= rdev->desc->n_voltages)
3243 if (selector < rdev->desc->linear_min_sel)
3246 regulator_lock(rdev);
3247 ret = ops->list_voltage(rdev, selector);
3249 regulator_unlock(rdev);
3250 } else if (rdev->is_switch && rdev->supply) {
3251 ret = _regulator_list_voltage(rdev->supply->rdev,
3258 if (ret < rdev->constraints->min_uV)
3260 else if (ret > rdev->constraints->max_uV)
3268 * regulator_is_enabled - is the regulator output enabled
3269 * @regulator: regulator source
3271 * Returns positive if the regulator driver backing the source/client
3272 * has requested that the device be enabled, zero if it hasn't, else a
3273 * negative errno code.
3275 * Note that the device backing this regulator handle can have multiple
3276 * users, so it might be enabled even if regulator_enable() was never
3277 * called for this particular source.
3279 int regulator_is_enabled(struct regulator *regulator)
3283 if (regulator->always_on)
3286 regulator_lock(regulator->rdev);
3287 ret = _regulator_is_enabled(regulator->rdev);
3288 regulator_unlock(regulator->rdev);
3292 EXPORT_SYMBOL_GPL(regulator_is_enabled);
3295 * regulator_count_voltages - count regulator_list_voltage() selectors
3296 * @regulator: regulator source
3298 * Returns number of selectors, or negative errno. Selectors are
3299 * numbered starting at zero, and typically correspond to bitfields
3300 * in hardware registers.
3302 int regulator_count_voltages(struct regulator *regulator)
3304 struct regulator_dev *rdev = regulator->rdev;
3306 if (rdev->desc->n_voltages)
3307 return rdev->desc->n_voltages;
3309 if (!rdev->is_switch || !rdev->supply)
3312 return regulator_count_voltages(rdev->supply);
3314 EXPORT_SYMBOL_GPL(regulator_count_voltages);
3317 * regulator_list_voltage - enumerate supported voltages
3318 * @regulator: regulator source
3319 * @selector: identify voltage to list
3320 * Context: can sleep
3322 * Returns a voltage that can be passed to @regulator_set_voltage(),
3323 * zero if this selector code can't be used on this system, or a
3326 int regulator_list_voltage(struct regulator *regulator, unsigned selector)
3328 return _regulator_list_voltage(regulator->rdev, selector, 1);
3330 EXPORT_SYMBOL_GPL(regulator_list_voltage);
3333 * regulator_get_regmap - get the regulator's register map
3334 * @regulator: regulator source
3336 * Returns the register map for the given regulator, or an ERR_PTR value
3337 * if the regulator doesn't use regmap.
3339 struct regmap *regulator_get_regmap(struct regulator *regulator)
3341 struct regmap *map = regulator->rdev->regmap;
3343 return map ? map : ERR_PTR(-EOPNOTSUPP);
3347 * regulator_get_hardware_vsel_register - get the HW voltage selector register
3348 * @regulator: regulator source
3349 * @vsel_reg: voltage selector register, output parameter
3350 * @vsel_mask: mask for voltage selector bitfield, output parameter
3352 * Returns the hardware register offset and bitmask used for setting the
3353 * regulator voltage. This might be useful when configuring voltage-scaling
3354 * hardware or firmware that can make I2C requests behind the kernel's back,
3357 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
3358 * and 0 is returned, otherwise a negative errno is returned.
3360 int regulator_get_hardware_vsel_register(struct regulator *regulator,
3362 unsigned *vsel_mask)
3364 struct regulator_dev *rdev = regulator->rdev;
3365 const struct regulator_ops *ops = rdev->desc->ops;
3367 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
3370 *vsel_reg = rdev->desc->vsel_reg;
3371 *vsel_mask = rdev->desc->vsel_mask;
3375 EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
3378 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
3379 * @regulator: regulator source
3380 * @selector: identify voltage to list
3382 * Converts the selector to a hardware-specific voltage selector that can be
3383 * directly written to the regulator registers. The address of the voltage
3384 * register can be determined by calling @regulator_get_hardware_vsel_register.
3386 * On error a negative errno is returned.
3388 int regulator_list_hardware_vsel(struct regulator *regulator,
3391 struct regulator_dev *rdev = regulator->rdev;
3392 const struct regulator_ops *ops = rdev->desc->ops;
3394 if (selector >= rdev->desc->n_voltages)
3396 if (selector < rdev->desc->linear_min_sel)
3398 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
3403 EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
3406 * regulator_get_linear_step - return the voltage step size between VSEL values
3407 * @regulator: regulator source
3409 * Returns the voltage step size between VSEL values for linear
3410 * regulators, or return 0 if the regulator isn't a linear regulator.
3412 unsigned int regulator_get_linear_step(struct regulator *regulator)
3414 struct regulator_dev *rdev = regulator->rdev;
3416 return rdev->desc->uV_step;
3418 EXPORT_SYMBOL_GPL(regulator_get_linear_step);
3421 * regulator_is_supported_voltage - check if a voltage range can be supported
3423 * @regulator: Regulator to check.
3424 * @min_uV: Minimum required voltage in uV.
3425 * @max_uV: Maximum required voltage in uV.
3427 * Returns a boolean.
3429 int regulator_is_supported_voltage(struct regulator *regulator,
3430 int min_uV, int max_uV)
3432 struct regulator_dev *rdev = regulator->rdev;
3433 int i, voltages, ret;
3435 /* If we can't change voltage check the current voltage */
3436 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
3437 ret = regulator_get_voltage(regulator);
3439 return min_uV <= ret && ret <= max_uV;
3444 /* Any voltage within constrains range is fine? */
3445 if (rdev->desc->continuous_voltage_range)
3446 return min_uV >= rdev->constraints->min_uV &&
3447 max_uV <= rdev->constraints->max_uV;
3449 ret = regulator_count_voltages(regulator);
3454 for (i = 0; i < voltages; i++) {
3455 ret = regulator_list_voltage(regulator, i);
3457 if (ret >= min_uV && ret <= max_uV)
3463 EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
3465 static int regulator_map_voltage(struct regulator_dev *rdev, int min_uV,
3468 const struct regulator_desc *desc = rdev->desc;
3470 if (desc->ops->map_voltage)
3471 return desc->ops->map_voltage(rdev, min_uV, max_uV);
3473 if (desc->ops->list_voltage == regulator_list_voltage_linear)
3474 return regulator_map_voltage_linear(rdev, min_uV, max_uV);
3476 if (desc->ops->list_voltage == regulator_list_voltage_linear_range)
3477 return regulator_map_voltage_linear_range(rdev, min_uV, max_uV);
3479 if (desc->ops->list_voltage ==
3480 regulator_list_voltage_pickable_linear_range)
3481 return regulator_map_voltage_pickable_linear_range(rdev,
3484 return regulator_map_voltage_iterate(rdev, min_uV, max_uV);
3487 static int _regulator_call_set_voltage(struct regulator_dev *rdev,
3488 int min_uV, int max_uV,
3491 struct pre_voltage_change_data data;
3494 data.old_uV = regulator_get_voltage_rdev(rdev);
3495 data.min_uV = min_uV;
3496 data.max_uV = max_uV;
3497 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
3499 if (ret & NOTIFY_STOP_MASK)
3502 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
3506 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
3507 (void *)data.old_uV);
3512 static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
3513 int uV, unsigned selector)
3515 struct pre_voltage_change_data data;
3518 data.old_uV = regulator_get_voltage_rdev(rdev);
3521 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
3523 if (ret & NOTIFY_STOP_MASK)
3526 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
3530 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
3531 (void *)data.old_uV);
3536 static int _regulator_set_voltage_sel_step(struct regulator_dev *rdev,
3537 int uV, int new_selector)
3539 const struct regulator_ops *ops = rdev->desc->ops;
3540 int diff, old_sel, curr_sel, ret;
3542 /* Stepping is only needed if the regulator is enabled. */
3543 if (!_regulator_is_enabled(rdev))
3546 if (!ops->get_voltage_sel)
3549 old_sel = ops->get_voltage_sel(rdev);
3553 diff = new_selector - old_sel;
3555 return 0; /* No change needed. */
3559 for (curr_sel = old_sel + rdev->desc->vsel_step;
3560 curr_sel < new_selector;
3561 curr_sel += rdev->desc->vsel_step) {
3563 * Call the callback directly instead of using
3564 * _regulator_call_set_voltage_sel() as we don't
3565 * want to notify anyone yet. Same in the branch
3568 ret = ops->set_voltage_sel(rdev, curr_sel);
3573 /* Stepping down. */
3574 for (curr_sel = old_sel - rdev->desc->vsel_step;
3575 curr_sel > new_selector;
3576 curr_sel -= rdev->desc->vsel_step) {
3577 ret = ops->set_voltage_sel(rdev, curr_sel);
3584 /* The final selector will trigger the notifiers. */
3585 return _regulator_call_set_voltage_sel(rdev, uV, new_selector);
3589 * At least try to return to the previous voltage if setting a new
3592 (void)ops->set_voltage_sel(rdev, old_sel);
3596 static int _regulator_set_voltage_time(struct regulator_dev *rdev,
3597 int old_uV, int new_uV)
3599 unsigned int ramp_delay = 0;
3601 if (rdev->constraints->ramp_delay)
3602 ramp_delay = rdev->constraints->ramp_delay;
3603 else if (rdev->desc->ramp_delay)
3604 ramp_delay = rdev->desc->ramp_delay;
3605 else if (rdev->constraints->settling_time)
3606 return rdev->constraints->settling_time;
3607 else if (rdev->constraints->settling_time_up &&
3609 return rdev->constraints->settling_time_up;
3610 else if (rdev->constraints->settling_time_down &&
3612 return rdev->constraints->settling_time_down;
3614 if (ramp_delay == 0)
3617 return DIV_ROUND_UP(abs(new_uV - old_uV), ramp_delay);
3620 static int _regulator_do_set_voltage(struct regulator_dev *rdev,
3621 int min_uV, int max_uV)
3626 unsigned int selector;
3627 int old_selector = -1;
3628 const struct regulator_ops *ops = rdev->desc->ops;
3629 int old_uV = regulator_get_voltage_rdev(rdev);
3631 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
3633 min_uV += rdev->constraints->uV_offset;
3634 max_uV += rdev->constraints->uV_offset;
3637 * If we can't obtain the old selector there is not enough
3638 * info to call set_voltage_time_sel().
3640 if (_regulator_is_enabled(rdev) &&
3641 ops->set_voltage_time_sel && ops->get_voltage_sel) {
3642 old_selector = ops->get_voltage_sel(rdev);
3643 if (old_selector < 0)
3644 return old_selector;
3647 if (ops->set_voltage) {
3648 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
3652 if (ops->list_voltage)
3653 best_val = ops->list_voltage(rdev,
3656 best_val = regulator_get_voltage_rdev(rdev);
3659 } else if (ops->set_voltage_sel) {
3660 ret = regulator_map_voltage(rdev, min_uV, max_uV);
3662 best_val = ops->list_voltage(rdev, ret);
3663 if (min_uV <= best_val && max_uV >= best_val) {
3665 if (old_selector == selector)
3667 else if (rdev->desc->vsel_step)
3668 ret = _regulator_set_voltage_sel_step(
3669 rdev, best_val, selector);
3671 ret = _regulator_call_set_voltage_sel(
3672 rdev, best_val, selector);
3684 if (ops->set_voltage_time_sel) {
3686 * Call set_voltage_time_sel if successfully obtained
3689 if (old_selector >= 0 && old_selector != selector)
3690 delay = ops->set_voltage_time_sel(rdev, old_selector,
3693 if (old_uV != best_val) {
3694 if (ops->set_voltage_time)
3695 delay = ops->set_voltage_time(rdev, old_uV,
3698 delay = _regulator_set_voltage_time(rdev,
3705 rdev_warn(rdev, "failed to get delay: %pe\n", ERR_PTR(delay));
3709 /* Insert any necessary delays */
3710 _regulator_delay_helper(delay);
3712 if (best_val >= 0) {
3713 unsigned long data = best_val;
3715 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
3720 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
3725 static int _regulator_do_set_suspend_voltage(struct regulator_dev *rdev,
3726 int min_uV, int max_uV, suspend_state_t state)
3728 struct regulator_state *rstate;
3731 rstate = regulator_get_suspend_state(rdev, state);
3735 if (min_uV < rstate->min_uV)
3736 min_uV = rstate->min_uV;
3737 if (max_uV > rstate->max_uV)
3738 max_uV = rstate->max_uV;
3740 sel = regulator_map_voltage(rdev, min_uV, max_uV);
3744 uV = rdev->desc->ops->list_voltage(rdev, sel);
3745 if (uV >= min_uV && uV <= max_uV)
3751 static int regulator_set_voltage_unlocked(struct regulator *regulator,
3752 int min_uV, int max_uV,
3753 suspend_state_t state)
3755 struct regulator_dev *rdev = regulator->rdev;
3756 struct regulator_voltage *voltage = ®ulator->voltage[state];
3758 int old_min_uV, old_max_uV;
3761 /* If we're setting the same range as last time the change
3762 * should be a noop (some cpufreq implementations use the same
3763 * voltage for multiple frequencies, for example).
3765 if (voltage->min_uV == min_uV && voltage->max_uV == max_uV)
3768 /* If we're trying to set a range that overlaps the current voltage,
3769 * return successfully even though the regulator does not support
3770 * changing the voltage.
3772 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
3773 current_uV = regulator_get_voltage_rdev(rdev);
3774 if (min_uV <= current_uV && current_uV <= max_uV) {
3775 voltage->min_uV = min_uV;
3776 voltage->max_uV = max_uV;
3782 if (!rdev->desc->ops->set_voltage &&
3783 !rdev->desc->ops->set_voltage_sel) {
3788 /* constraints check */
3789 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
3793 /* restore original values in case of error */
3794 old_min_uV = voltage->min_uV;
3795 old_max_uV = voltage->max_uV;
3796 voltage->min_uV = min_uV;
3797 voltage->max_uV = max_uV;
3799 /* for not coupled regulators this will just set the voltage */
3800 ret = regulator_balance_voltage(rdev, state);
3802 voltage->min_uV = old_min_uV;
3803 voltage->max_uV = old_max_uV;
3810 int regulator_set_voltage_rdev(struct regulator_dev *rdev, int min_uV,
3811 int max_uV, suspend_state_t state)
3813 int best_supply_uV = 0;
3814 int supply_change_uV = 0;
3818 regulator_ops_is_valid(rdev->supply->rdev,
3819 REGULATOR_CHANGE_VOLTAGE) &&
3820 (rdev->desc->min_dropout_uV || !(rdev->desc->ops->get_voltage ||
3821 rdev->desc->ops->get_voltage_sel))) {
3822 int current_supply_uV;
3825 selector = regulator_map_voltage(rdev, min_uV, max_uV);
3831 best_supply_uV = _regulator_list_voltage(rdev, selector, 0);
3832 if (best_supply_uV < 0) {
3833 ret = best_supply_uV;
3837 best_supply_uV += rdev->desc->min_dropout_uV;
3839 current_supply_uV = regulator_get_voltage_rdev(rdev->supply->rdev);
3840 if (current_supply_uV < 0) {
3841 ret = current_supply_uV;
3845 supply_change_uV = best_supply_uV - current_supply_uV;
3848 if (supply_change_uV > 0) {
3849 ret = regulator_set_voltage_unlocked(rdev->supply,
3850 best_supply_uV, INT_MAX, state);
3852 dev_err(&rdev->dev, "Failed to increase supply voltage: %pe\n",
3858 if (state == PM_SUSPEND_ON)
3859 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
3861 ret = _regulator_do_set_suspend_voltage(rdev, min_uV,
3866 if (supply_change_uV < 0) {
3867 ret = regulator_set_voltage_unlocked(rdev->supply,
3868 best_supply_uV, INT_MAX, state);
3870 dev_warn(&rdev->dev, "Failed to decrease supply voltage: %pe\n",
3872 /* No need to fail here */
3879 EXPORT_SYMBOL_GPL(regulator_set_voltage_rdev);
3881 static int regulator_limit_voltage_step(struct regulator_dev *rdev,
3882 int *current_uV, int *min_uV)
3884 struct regulation_constraints *constraints = rdev->constraints;
3886 /* Limit voltage change only if necessary */
3887 if (!constraints->max_uV_step || !_regulator_is_enabled(rdev))
3890 if (*current_uV < 0) {
3891 *current_uV = regulator_get_voltage_rdev(rdev);
3893 if (*current_uV < 0)
3897 if (abs(*current_uV - *min_uV) <= constraints->max_uV_step)
3900 /* Clamp target voltage within the given step */
3901 if (*current_uV < *min_uV)
3902 *min_uV = min(*current_uV + constraints->max_uV_step,
3905 *min_uV = max(*current_uV - constraints->max_uV_step,
3911 static int regulator_get_optimal_voltage(struct regulator_dev *rdev,
3913 int *min_uV, int *max_uV,
3914 suspend_state_t state,
3917 struct coupling_desc *c_desc = &rdev->coupling_desc;
3918 struct regulator_dev **c_rdevs = c_desc->coupled_rdevs;
3919 struct regulation_constraints *constraints = rdev->constraints;
3920 int desired_min_uV = 0, desired_max_uV = INT_MAX;
3921 int max_current_uV = 0, min_current_uV = INT_MAX;
3922 int highest_min_uV = 0, target_uV, possible_uV;
3923 int i, ret, max_spread;
3929 * If there are no coupled regulators, simply set the voltage
3930 * demanded by consumers.
3932 if (n_coupled == 1) {
3934 * If consumers don't provide any demands, set voltage
3937 desired_min_uV = constraints->min_uV;
3938 desired_max_uV = constraints->max_uV;
3940 ret = regulator_check_consumers(rdev,
3942 &desired_max_uV, state);
3951 /* Find highest min desired voltage */
3952 for (i = 0; i < n_coupled; i++) {
3954 int tmp_max = INT_MAX;
3956 lockdep_assert_held_once(&c_rdevs[i]->mutex.base);
3958 ret = regulator_check_consumers(c_rdevs[i],
3964 ret = regulator_check_voltage(c_rdevs[i], &tmp_min, &tmp_max);
3968 highest_min_uV = max(highest_min_uV, tmp_min);
3971 desired_min_uV = tmp_min;
3972 desired_max_uV = tmp_max;
3976 max_spread = constraints->max_spread[0];
3979 * Let target_uV be equal to the desired one if possible.
3980 * If not, set it to minimum voltage, allowed by other coupled
3983 target_uV = max(desired_min_uV, highest_min_uV - max_spread);
3986 * Find min and max voltages, which currently aren't violating
3989 for (i = 1; i < n_coupled; i++) {
3992 if (!_regulator_is_enabled(c_rdevs[i]))
3995 tmp_act = regulator_get_voltage_rdev(c_rdevs[i]);
3999 min_current_uV = min(tmp_act, min_current_uV);
4000 max_current_uV = max(tmp_act, max_current_uV);
4003 /* There aren't any other regulators enabled */
4004 if (max_current_uV == 0) {
4005 possible_uV = target_uV;
4008 * Correct target voltage, so as it currently isn't
4009 * violating max_spread
4011 possible_uV = max(target_uV, max_current_uV - max_spread);
4012 possible_uV = min(possible_uV, min_current_uV + max_spread);
4015 if (possible_uV > desired_max_uV)
4018 done = (possible_uV == target_uV);
4019 desired_min_uV = possible_uV;
4022 /* Apply max_uV_step constraint if necessary */
4023 if (state == PM_SUSPEND_ON) {
4024 ret = regulator_limit_voltage_step(rdev, current_uV,
4033 /* Set current_uV if wasn't done earlier in the code and if necessary */
4034 if (n_coupled > 1 && *current_uV == -1) {
4036 if (_regulator_is_enabled(rdev)) {
4037 ret = regulator_get_voltage_rdev(rdev);
4043 *current_uV = desired_min_uV;
4047 *min_uV = desired_min_uV;
4048 *max_uV = desired_max_uV;
4053 int regulator_do_balance_voltage(struct regulator_dev *rdev,
4054 suspend_state_t state, bool skip_coupled)
4056 struct regulator_dev **c_rdevs;
4057 struct regulator_dev *best_rdev;
4058 struct coupling_desc *c_desc = &rdev->coupling_desc;
4059 int i, ret, n_coupled, best_min_uV, best_max_uV, best_c_rdev;
4060 unsigned int delta, best_delta;
4061 unsigned long c_rdev_done = 0;
4062 bool best_c_rdev_done;
4064 c_rdevs = c_desc->coupled_rdevs;
4065 n_coupled = skip_coupled ? 1 : c_desc->n_coupled;
4068 * Find the best possible voltage change on each loop. Leave the loop
4069 * if there isn't any possible change.
4072 best_c_rdev_done = false;
4080 * Find highest difference between optimal voltage
4081 * and current voltage.
4083 for (i = 0; i < n_coupled; i++) {
4085 * optimal_uV is the best voltage that can be set for
4086 * i-th regulator at the moment without violating
4087 * max_spread constraint in order to balance
4088 * the coupled voltages.
4090 int optimal_uV = 0, optimal_max_uV = 0, current_uV = 0;
4092 if (test_bit(i, &c_rdev_done))
4095 ret = regulator_get_optimal_voltage(c_rdevs[i],
4103 delta = abs(optimal_uV - current_uV);
4105 if (delta && best_delta <= delta) {
4106 best_c_rdev_done = ret;
4108 best_rdev = c_rdevs[i];
4109 best_min_uV = optimal_uV;
4110 best_max_uV = optimal_max_uV;
4115 /* Nothing to change, return successfully */
4121 ret = regulator_set_voltage_rdev(best_rdev, best_min_uV,
4122 best_max_uV, state);
4127 if (best_c_rdev_done)
4128 set_bit(best_c_rdev, &c_rdev_done);
4130 } while (n_coupled > 1);
4136 static int regulator_balance_voltage(struct regulator_dev *rdev,
4137 suspend_state_t state)
4139 struct coupling_desc *c_desc = &rdev->coupling_desc;
4140 struct regulator_coupler *coupler = c_desc->coupler;
4141 bool skip_coupled = false;
4144 * If system is in a state other than PM_SUSPEND_ON, don't check
4145 * other coupled regulators.
4147 if (state != PM_SUSPEND_ON)
4148 skip_coupled = true;
4150 if (c_desc->n_resolved < c_desc->n_coupled) {
4151 rdev_err(rdev, "Not all coupled regulators registered\n");
4155 /* Invoke custom balancer for customized couplers */
4156 if (coupler && coupler->balance_voltage)
4157 return coupler->balance_voltage(coupler, rdev, state);
4159 return regulator_do_balance_voltage(rdev, state, skip_coupled);
4163 * regulator_set_voltage - set regulator output voltage
4164 * @regulator: regulator source
4165 * @min_uV: Minimum required voltage in uV
4166 * @max_uV: Maximum acceptable voltage in uV
4168 * Sets a voltage regulator to the desired output voltage. This can be set
4169 * during any regulator state. IOW, regulator can be disabled or enabled.
4171 * If the regulator is enabled then the voltage will change to the new value
4172 * immediately otherwise if the regulator is disabled the regulator will
4173 * output at the new voltage when enabled.
4175 * NOTE: If the regulator is shared between several devices then the lowest
4176 * request voltage that meets the system constraints will be used.
4177 * Regulator system constraints must be set for this regulator before
4178 * calling this function otherwise this call will fail.
4180 int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
4182 struct ww_acquire_ctx ww_ctx;
4185 regulator_lock_dependent(regulator->rdev, &ww_ctx);
4187 ret = regulator_set_voltage_unlocked(regulator, min_uV, max_uV,
4190 regulator_unlock_dependent(regulator->rdev, &ww_ctx);
4194 EXPORT_SYMBOL_GPL(regulator_set_voltage);
4196 static inline int regulator_suspend_toggle(struct regulator_dev *rdev,
4197 suspend_state_t state, bool en)
4199 struct regulator_state *rstate;
4201 rstate = regulator_get_suspend_state(rdev, state);
4205 if (!rstate->changeable)
4208 rstate->enabled = (en) ? ENABLE_IN_SUSPEND : DISABLE_IN_SUSPEND;
4213 int regulator_suspend_enable(struct regulator_dev *rdev,
4214 suspend_state_t state)
4216 return regulator_suspend_toggle(rdev, state, true);
4218 EXPORT_SYMBOL_GPL(regulator_suspend_enable);
4220 int regulator_suspend_disable(struct regulator_dev *rdev,
4221 suspend_state_t state)
4223 struct regulator *regulator;
4224 struct regulator_voltage *voltage;
4227 * if any consumer wants this regulator device keeping on in
4228 * suspend states, don't set it as disabled.
4230 list_for_each_entry(regulator, &rdev->consumer_list, list) {
4231 voltage = ®ulator->voltage[state];
4232 if (voltage->min_uV || voltage->max_uV)
4236 return regulator_suspend_toggle(rdev, state, false);
4238 EXPORT_SYMBOL_GPL(regulator_suspend_disable);
4240 static int _regulator_set_suspend_voltage(struct regulator *regulator,
4241 int min_uV, int max_uV,
4242 suspend_state_t state)
4244 struct regulator_dev *rdev = regulator->rdev;
4245 struct regulator_state *rstate;
4247 rstate = regulator_get_suspend_state(rdev, state);
4251 if (rstate->min_uV == rstate->max_uV) {
4252 rdev_err(rdev, "The suspend voltage can't be changed!\n");
4256 return regulator_set_voltage_unlocked(regulator, min_uV, max_uV, state);
4259 int regulator_set_suspend_voltage(struct regulator *regulator, int min_uV,
4260 int max_uV, suspend_state_t state)
4262 struct ww_acquire_ctx ww_ctx;
4265 /* PM_SUSPEND_ON is handled by regulator_set_voltage() */
4266 if (regulator_check_states(state) || state == PM_SUSPEND_ON)
4269 regulator_lock_dependent(regulator->rdev, &ww_ctx);
4271 ret = _regulator_set_suspend_voltage(regulator, min_uV,
4274 regulator_unlock_dependent(regulator->rdev, &ww_ctx);
4278 EXPORT_SYMBOL_GPL(regulator_set_suspend_voltage);
4281 * regulator_set_voltage_time - get raise/fall time
4282 * @regulator: regulator source
4283 * @old_uV: starting voltage in microvolts
4284 * @new_uV: target voltage in microvolts
4286 * Provided with the starting and ending voltage, this function attempts to
4287 * calculate the time in microseconds required to rise or fall to this new
4290 int regulator_set_voltage_time(struct regulator *regulator,
4291 int old_uV, int new_uV)
4293 struct regulator_dev *rdev = regulator->rdev;
4294 const struct regulator_ops *ops = rdev->desc->ops;
4300 if (ops->set_voltage_time)
4301 return ops->set_voltage_time(rdev, old_uV, new_uV);
4302 else if (!ops->set_voltage_time_sel)
4303 return _regulator_set_voltage_time(rdev, old_uV, new_uV);
4305 /* Currently requires operations to do this */
4306 if (!ops->list_voltage || !rdev->desc->n_voltages)
4309 for (i = 0; i < rdev->desc->n_voltages; i++) {
4310 /* We only look for exact voltage matches here */
4311 if (i < rdev->desc->linear_min_sel)
4314 if (old_sel >= 0 && new_sel >= 0)
4317 voltage = regulator_list_voltage(regulator, i);
4322 if (voltage == old_uV)
4324 if (voltage == new_uV)
4328 if (old_sel < 0 || new_sel < 0)
4331 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
4333 EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
4336 * regulator_set_voltage_time_sel - get raise/fall time
4337 * @rdev: regulator source device
4338 * @old_selector: selector for starting voltage
4339 * @new_selector: selector for target voltage
4341 * Provided with the starting and target voltage selectors, this function
4342 * returns time in microseconds required to rise or fall to this new voltage
4344 * Drivers providing ramp_delay in regulation_constraints can use this as their
4345 * set_voltage_time_sel() operation.
4347 int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
4348 unsigned int old_selector,
4349 unsigned int new_selector)
4351 int old_volt, new_volt;
4354 if (!rdev->desc->ops->list_voltage)
4357 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
4358 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
4360 if (rdev->desc->ops->set_voltage_time)
4361 return rdev->desc->ops->set_voltage_time(rdev, old_volt,
4364 return _regulator_set_voltage_time(rdev, old_volt, new_volt);
4366 EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
4368 int regulator_sync_voltage_rdev(struct regulator_dev *rdev)
4372 regulator_lock(rdev);
4374 if (!rdev->desc->ops->set_voltage &&
4375 !rdev->desc->ops->set_voltage_sel) {
4380 /* balance only, if regulator is coupled */
4381 if (rdev->coupling_desc.n_coupled > 1)
4382 ret = regulator_balance_voltage(rdev, PM_SUSPEND_ON);
4387 regulator_unlock(rdev);
4392 * regulator_sync_voltage - re-apply last regulator output voltage
4393 * @regulator: regulator source
4395 * Re-apply the last configured voltage. This is intended to be used
4396 * where some external control source the consumer is cooperating with
4397 * has caused the configured voltage to change.
4399 int regulator_sync_voltage(struct regulator *regulator)
4401 struct regulator_dev *rdev = regulator->rdev;
4402 struct regulator_voltage *voltage = ®ulator->voltage[PM_SUSPEND_ON];
4403 int ret, min_uV, max_uV;
4405 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE))
4408 regulator_lock(rdev);
4410 if (!rdev->desc->ops->set_voltage &&
4411 !rdev->desc->ops->set_voltage_sel) {
4416 /* This is only going to work if we've had a voltage configured. */
4417 if (!voltage->min_uV && !voltage->max_uV) {
4422 min_uV = voltage->min_uV;
4423 max_uV = voltage->max_uV;
4425 /* This should be a paranoia check... */
4426 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
4430 ret = regulator_check_consumers(rdev, &min_uV, &max_uV, 0);
4434 /* balance only, if regulator is coupled */
4435 if (rdev->coupling_desc.n_coupled > 1)
4436 ret = regulator_balance_voltage(rdev, PM_SUSPEND_ON);
4438 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
4441 regulator_unlock(rdev);
4444 EXPORT_SYMBOL_GPL(regulator_sync_voltage);
4446 int regulator_get_voltage_rdev(struct regulator_dev *rdev)
4451 if (rdev->desc->ops->get_bypass) {
4452 ret = rdev->desc->ops->get_bypass(rdev, &bypassed);
4456 /* if bypassed the regulator must have a supply */
4457 if (!rdev->supply) {
4459 "bypassed regulator has no supply!\n");
4460 return -EPROBE_DEFER;
4463 return regulator_get_voltage_rdev(rdev->supply->rdev);
4467 if (rdev->desc->ops->get_voltage_sel) {
4468 sel = rdev->desc->ops->get_voltage_sel(rdev);
4471 ret = rdev->desc->ops->list_voltage(rdev, sel);
4472 } else if (rdev->desc->ops->get_voltage) {
4473 ret = rdev->desc->ops->get_voltage(rdev);
4474 } else if (rdev->desc->ops->list_voltage) {
4475 ret = rdev->desc->ops->list_voltage(rdev, 0);
4476 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
4477 ret = rdev->desc->fixed_uV;
4478 } else if (rdev->supply) {
4479 ret = regulator_get_voltage_rdev(rdev->supply->rdev);
4480 } else if (rdev->supply_name) {
4481 return -EPROBE_DEFER;
4488 return ret - rdev->constraints->uV_offset;
4490 EXPORT_SYMBOL_GPL(regulator_get_voltage_rdev);
4493 * regulator_get_voltage - get regulator output voltage
4494 * @regulator: regulator source
4496 * This returns the current regulator voltage in uV.
4498 * NOTE: If the regulator is disabled it will return the voltage value. This
4499 * function should not be used to determine regulator state.
4501 int regulator_get_voltage(struct regulator *regulator)
4503 struct ww_acquire_ctx ww_ctx;
4506 regulator_lock_dependent(regulator->rdev, &ww_ctx);
4507 ret = regulator_get_voltage_rdev(regulator->rdev);
4508 regulator_unlock_dependent(regulator->rdev, &ww_ctx);
4512 EXPORT_SYMBOL_GPL(regulator_get_voltage);
4515 * regulator_set_current_limit - set regulator output current limit
4516 * @regulator: regulator source
4517 * @min_uA: Minimum supported current in uA
4518 * @max_uA: Maximum supported current in uA
4520 * Sets current sink to the desired output current. This can be set during
4521 * any regulator state. IOW, regulator can be disabled or enabled.
4523 * If the regulator is enabled then the current will change to the new value
4524 * immediately otherwise if the regulator is disabled the regulator will
4525 * output at the new current when enabled.
4527 * NOTE: Regulator system constraints must be set for this regulator before
4528 * calling this function otherwise this call will fail.
4530 int regulator_set_current_limit(struct regulator *regulator,
4531 int min_uA, int max_uA)
4533 struct regulator_dev *rdev = regulator->rdev;
4536 regulator_lock(rdev);
4539 if (!rdev->desc->ops->set_current_limit) {
4544 /* constraints check */
4545 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
4549 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
4551 regulator_unlock(rdev);
4554 EXPORT_SYMBOL_GPL(regulator_set_current_limit);
4556 static int _regulator_get_current_limit_unlocked(struct regulator_dev *rdev)
4559 if (!rdev->desc->ops->get_current_limit)
4562 return rdev->desc->ops->get_current_limit(rdev);
4565 static int _regulator_get_current_limit(struct regulator_dev *rdev)
4569 regulator_lock(rdev);
4570 ret = _regulator_get_current_limit_unlocked(rdev);
4571 regulator_unlock(rdev);
4577 * regulator_get_current_limit - get regulator output current
4578 * @regulator: regulator source
4580 * This returns the current supplied by the specified current sink in uA.
4582 * NOTE: If the regulator is disabled it will return the current value. This
4583 * function should not be used to determine regulator state.
4585 int regulator_get_current_limit(struct regulator *regulator)
4587 return _regulator_get_current_limit(regulator->rdev);
4589 EXPORT_SYMBOL_GPL(regulator_get_current_limit);
4592 * regulator_set_mode - set regulator operating mode
4593 * @regulator: regulator source
4594 * @mode: operating mode - one of the REGULATOR_MODE constants
4596 * Set regulator operating mode to increase regulator efficiency or improve
4597 * regulation performance.
4599 * NOTE: Regulator system constraints must be set for this regulator before
4600 * calling this function otherwise this call will fail.
4602 int regulator_set_mode(struct regulator *regulator, unsigned int mode)
4604 struct regulator_dev *rdev = regulator->rdev;
4606 int regulator_curr_mode;
4608 regulator_lock(rdev);
4611 if (!rdev->desc->ops->set_mode) {
4616 /* return if the same mode is requested */
4617 if (rdev->desc->ops->get_mode) {
4618 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
4619 if (regulator_curr_mode == mode) {
4625 /* constraints check */
4626 ret = regulator_mode_constrain(rdev, &mode);
4630 ret = rdev->desc->ops->set_mode(rdev, mode);
4632 regulator_unlock(rdev);
4635 EXPORT_SYMBOL_GPL(regulator_set_mode);
4637 static unsigned int _regulator_get_mode_unlocked(struct regulator_dev *rdev)
4640 if (!rdev->desc->ops->get_mode)
4643 return rdev->desc->ops->get_mode(rdev);
4646 static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
4650 regulator_lock(rdev);
4651 ret = _regulator_get_mode_unlocked(rdev);
4652 regulator_unlock(rdev);
4658 * regulator_get_mode - get regulator operating mode
4659 * @regulator: regulator source
4661 * Get the current regulator operating mode.
4663 unsigned int regulator_get_mode(struct regulator *regulator)
4665 return _regulator_get_mode(regulator->rdev);
4667 EXPORT_SYMBOL_GPL(regulator_get_mode);
4669 static int rdev_get_cached_err_flags(struct regulator_dev *rdev)
4673 if (rdev->use_cached_err) {
4674 spin_lock(&rdev->err_lock);
4675 ret = rdev->cached_err;
4676 spin_unlock(&rdev->err_lock);
4681 static int _regulator_get_error_flags(struct regulator_dev *rdev,
4682 unsigned int *flags)
4684 int cached_flags, ret = 0;
4686 regulator_lock(rdev);
4688 cached_flags = rdev_get_cached_err_flags(rdev);
4690 if (rdev->desc->ops->get_error_flags)
4691 ret = rdev->desc->ops->get_error_flags(rdev, flags);
4692 else if (!rdev->use_cached_err)
4695 *flags |= cached_flags;
4697 regulator_unlock(rdev);
4703 * regulator_get_error_flags - get regulator error information
4704 * @regulator: regulator source
4705 * @flags: pointer to store error flags
4707 * Get the current regulator error information.
4709 int regulator_get_error_flags(struct regulator *regulator,
4710 unsigned int *flags)
4712 return _regulator_get_error_flags(regulator->rdev, flags);
4714 EXPORT_SYMBOL_GPL(regulator_get_error_flags);
4717 * regulator_set_load - set regulator load
4718 * @regulator: regulator source
4719 * @uA_load: load current
4721 * Notifies the regulator core of a new device load. This is then used by
4722 * DRMS (if enabled by constraints) to set the most efficient regulator
4723 * operating mode for the new regulator loading.
4725 * Consumer devices notify their supply regulator of the maximum power
4726 * they will require (can be taken from device datasheet in the power
4727 * consumption tables) when they change operational status and hence power
4728 * state. Examples of operational state changes that can affect power
4729 * consumption are :-
4731 * o Device is opened / closed.
4732 * o Device I/O is about to begin or has just finished.
4733 * o Device is idling in between work.
4735 * This information is also exported via sysfs to userspace.
4737 * DRMS will sum the total requested load on the regulator and change
4738 * to the most efficient operating mode if platform constraints allow.
4740 * NOTE: when a regulator consumer requests to have a regulator
4741 * disabled then any load that consumer requested no longer counts
4742 * toward the total requested load. If the regulator is re-enabled
4743 * then the previously requested load will start counting again.
4745 * If a regulator is an always-on regulator then an individual consumer's
4746 * load will still be removed if that consumer is fully disabled.
4748 * On error a negative errno is returned.
4750 int regulator_set_load(struct regulator *regulator, int uA_load)
4752 struct regulator_dev *rdev = regulator->rdev;
4756 regulator_lock(rdev);
4757 old_uA_load = regulator->uA_load;
4758 regulator->uA_load = uA_load;
4759 if (regulator->enable_count && old_uA_load != uA_load) {
4760 ret = drms_uA_update(rdev);
4762 regulator->uA_load = old_uA_load;
4764 regulator_unlock(rdev);
4768 EXPORT_SYMBOL_GPL(regulator_set_load);
4771 * regulator_allow_bypass - allow the regulator to go into bypass mode
4773 * @regulator: Regulator to configure
4774 * @enable: enable or disable bypass mode
4776 * Allow the regulator to go into bypass mode if all other consumers
4777 * for the regulator also enable bypass mode and the machine
4778 * constraints allow this. Bypass mode means that the regulator is
4779 * simply passing the input directly to the output with no regulation.
4781 int regulator_allow_bypass(struct regulator *regulator, bool enable)
4783 struct regulator_dev *rdev = regulator->rdev;
4784 const char *name = rdev_get_name(rdev);
4787 if (!rdev->desc->ops->set_bypass)
4790 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_BYPASS))
4793 regulator_lock(rdev);
4795 if (enable && !regulator->bypass) {
4796 rdev->bypass_count++;
4798 if (rdev->bypass_count == rdev->open_count) {
4799 trace_regulator_bypass_enable(name);
4801 ret = rdev->desc->ops->set_bypass(rdev, enable);
4803 rdev->bypass_count--;
4805 trace_regulator_bypass_enable_complete(name);
4808 } else if (!enable && regulator->bypass) {
4809 rdev->bypass_count--;
4811 if (rdev->bypass_count != rdev->open_count) {
4812 trace_regulator_bypass_disable(name);
4814 ret = rdev->desc->ops->set_bypass(rdev, enable);
4816 rdev->bypass_count++;
4818 trace_regulator_bypass_disable_complete(name);
4823 regulator->bypass = enable;
4825 regulator_unlock(rdev);
4829 EXPORT_SYMBOL_GPL(regulator_allow_bypass);
4832 * regulator_register_notifier - register regulator event notifier
4833 * @regulator: regulator source
4834 * @nb: notifier block
4836 * Register notifier block to receive regulator events.
4838 int regulator_register_notifier(struct regulator *regulator,
4839 struct notifier_block *nb)
4841 return blocking_notifier_chain_register(®ulator->rdev->notifier,
4844 EXPORT_SYMBOL_GPL(regulator_register_notifier);
4847 * regulator_unregister_notifier - unregister regulator event notifier
4848 * @regulator: regulator source
4849 * @nb: notifier block
4851 * Unregister regulator event notifier block.
4853 int regulator_unregister_notifier(struct regulator *regulator,
4854 struct notifier_block *nb)
4856 return blocking_notifier_chain_unregister(®ulator->rdev->notifier,
4859 EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
4861 /* notify regulator consumers and downstream regulator consumers.
4862 * Note mutex must be held by caller.
4864 static int _notifier_call_chain(struct regulator_dev *rdev,
4865 unsigned long event, void *data)
4867 /* call rdev chain first */
4868 int ret = blocking_notifier_call_chain(&rdev->notifier, event, data);
4870 if (IS_REACHABLE(CONFIG_REGULATOR_NETLINK_EVENTS)) {
4871 struct device *parent = rdev->dev.parent;
4872 const char *rname = rdev_get_name(rdev);
4875 /* Avoid duplicate debugfs directory names */
4876 if (parent && rname == rdev->desc->name) {
4877 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
4881 reg_generate_netlink_event(rname, event);
4887 int _regulator_bulk_get(struct device *dev, int num_consumers,
4888 struct regulator_bulk_data *consumers, enum regulator_get_type get_type)
4893 for (i = 0; i < num_consumers; i++)
4894 consumers[i].consumer = NULL;
4896 for (i = 0; i < num_consumers; i++) {
4897 consumers[i].consumer = _regulator_get(dev,
4898 consumers[i].supply, get_type);
4899 if (IS_ERR(consumers[i].consumer)) {
4900 ret = dev_err_probe(dev, PTR_ERR(consumers[i].consumer),
4901 "Failed to get supply '%s'",
4902 consumers[i].supply);
4903 consumers[i].consumer = NULL;
4907 if (consumers[i].init_load_uA > 0) {
4908 ret = regulator_set_load(consumers[i].consumer,
4909 consumers[i].init_load_uA);
4921 regulator_put(consumers[i].consumer);
4927 * regulator_bulk_get - get multiple regulator consumers
4929 * @dev: Device to supply
4930 * @num_consumers: Number of consumers to register
4931 * @consumers: Configuration of consumers; clients are stored here.
4933 * @return 0 on success, an errno on failure.
4935 * This helper function allows drivers to get several regulator
4936 * consumers in one operation. If any of the regulators cannot be
4937 * acquired then any regulators that were allocated will be freed
4938 * before returning to the caller.
4940 int regulator_bulk_get(struct device *dev, int num_consumers,
4941 struct regulator_bulk_data *consumers)
4943 return _regulator_bulk_get(dev, num_consumers, consumers, NORMAL_GET);
4945 EXPORT_SYMBOL_GPL(regulator_bulk_get);
4947 static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
4949 struct regulator_bulk_data *bulk = data;
4951 bulk->ret = regulator_enable(bulk->consumer);
4955 * regulator_bulk_enable - enable multiple regulator consumers
4957 * @num_consumers: Number of consumers
4958 * @consumers: Consumer data; clients are stored here.
4959 * @return 0 on success, an errno on failure
4961 * This convenience API allows consumers to enable multiple regulator
4962 * clients in a single API call. If any consumers cannot be enabled
4963 * then any others that were enabled will be disabled again prior to
4966 int regulator_bulk_enable(int num_consumers,
4967 struct regulator_bulk_data *consumers)
4969 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
4973 for (i = 0; i < num_consumers; i++) {
4974 async_schedule_domain(regulator_bulk_enable_async,
4975 &consumers[i], &async_domain);
4978 async_synchronize_full_domain(&async_domain);
4980 /* If any consumer failed we need to unwind any that succeeded */
4981 for (i = 0; i < num_consumers; i++) {
4982 if (consumers[i].ret != 0) {
4983 ret = consumers[i].ret;
4991 for (i = 0; i < num_consumers; i++) {
4992 if (consumers[i].ret < 0)
4993 pr_err("Failed to enable %s: %pe\n", consumers[i].supply,
4994 ERR_PTR(consumers[i].ret));
4996 regulator_disable(consumers[i].consumer);
5001 EXPORT_SYMBOL_GPL(regulator_bulk_enable);
5004 * regulator_bulk_disable - disable multiple regulator consumers
5006 * @num_consumers: Number of consumers
5007 * @consumers: Consumer data; clients are stored here.
5008 * @return 0 on success, an errno on failure
5010 * This convenience API allows consumers to disable multiple regulator
5011 * clients in a single API call. If any consumers cannot be disabled
5012 * then any others that were disabled will be enabled again prior to
5015 int regulator_bulk_disable(int num_consumers,
5016 struct regulator_bulk_data *consumers)
5021 for (i = num_consumers - 1; i >= 0; --i) {
5022 ret = regulator_disable(consumers[i].consumer);
5030 pr_err("Failed to disable %s: %pe\n", consumers[i].supply, ERR_PTR(ret));
5031 for (++i; i < num_consumers; ++i) {
5032 r = regulator_enable(consumers[i].consumer);
5034 pr_err("Failed to re-enable %s: %pe\n",
5035 consumers[i].supply, ERR_PTR(r));
5040 EXPORT_SYMBOL_GPL(regulator_bulk_disable);
5043 * regulator_bulk_force_disable - force disable multiple regulator consumers
5045 * @num_consumers: Number of consumers
5046 * @consumers: Consumer data; clients are stored here.
5047 * @return 0 on success, an errno on failure
5049 * This convenience API allows consumers to forcibly disable multiple regulator
5050 * clients in a single API call.
5051 * NOTE: This should be used for situations when device damage will
5052 * likely occur if the regulators are not disabled (e.g. over temp).
5053 * Although regulator_force_disable function call for some consumers can
5054 * return error numbers, the function is called for all consumers.
5056 int regulator_bulk_force_disable(int num_consumers,
5057 struct regulator_bulk_data *consumers)
5062 for (i = 0; i < num_consumers; i++) {
5064 regulator_force_disable(consumers[i].consumer);
5066 /* Store first error for reporting */
5067 if (consumers[i].ret && !ret)
5068 ret = consumers[i].ret;
5073 EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
5076 * regulator_bulk_free - free multiple regulator consumers
5078 * @num_consumers: Number of consumers
5079 * @consumers: Consumer data; clients are stored here.
5081 * This convenience API allows consumers to free multiple regulator
5082 * clients in a single API call.
5084 void regulator_bulk_free(int num_consumers,
5085 struct regulator_bulk_data *consumers)
5089 for (i = 0; i < num_consumers; i++) {
5090 regulator_put(consumers[i].consumer);
5091 consumers[i].consumer = NULL;
5094 EXPORT_SYMBOL_GPL(regulator_bulk_free);
5097 * regulator_handle_critical - Handle events for system-critical regulators.
5098 * @rdev: The regulator device.
5099 * @event: The event being handled.
5101 * This function handles critical events such as under-voltage, over-current,
5102 * and unknown errors for regulators deemed system-critical. On detecting such
5103 * events, it triggers a hardware protection shutdown with a defined timeout.
5105 static void regulator_handle_critical(struct regulator_dev *rdev,
5106 unsigned long event)
5108 const char *reason = NULL;
5110 if (!rdev->constraints->system_critical)
5114 case REGULATOR_EVENT_UNDER_VOLTAGE:
5115 reason = "System critical regulator: voltage drop detected";
5117 case REGULATOR_EVENT_OVER_CURRENT:
5118 reason = "System critical regulator: over-current detected";
5120 case REGULATOR_EVENT_FAIL:
5121 reason = "System critical regulator: unknown error";
5127 hw_protection_shutdown(reason,
5128 rdev->constraints->uv_less_critical_window_ms);
5132 * regulator_notifier_call_chain - call regulator event notifier
5133 * @rdev: regulator source
5134 * @event: notifier block
5135 * @data: callback-specific data.
5137 * Called by regulator drivers to notify clients a regulator event has
5140 int regulator_notifier_call_chain(struct regulator_dev *rdev,
5141 unsigned long event, void *data)
5143 regulator_handle_critical(rdev, event);
5145 _notifier_call_chain(rdev, event, data);
5149 EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
5152 * regulator_mode_to_status - convert a regulator mode into a status
5154 * @mode: Mode to convert
5156 * Convert a regulator mode into a status.
5158 int regulator_mode_to_status(unsigned int mode)
5161 case REGULATOR_MODE_FAST:
5162 return REGULATOR_STATUS_FAST;
5163 case REGULATOR_MODE_NORMAL:
5164 return REGULATOR_STATUS_NORMAL;
5165 case REGULATOR_MODE_IDLE:
5166 return REGULATOR_STATUS_IDLE;
5167 case REGULATOR_MODE_STANDBY:
5168 return REGULATOR_STATUS_STANDBY;
5170 return REGULATOR_STATUS_UNDEFINED;
5173 EXPORT_SYMBOL_GPL(regulator_mode_to_status);
5175 static struct attribute *regulator_dev_attrs[] = {
5176 &dev_attr_name.attr,
5177 &dev_attr_num_users.attr,
5178 &dev_attr_type.attr,
5179 &dev_attr_microvolts.attr,
5180 &dev_attr_microamps.attr,
5181 &dev_attr_opmode.attr,
5182 &dev_attr_state.attr,
5183 &dev_attr_status.attr,
5184 &dev_attr_bypass.attr,
5185 &dev_attr_requested_microamps.attr,
5186 &dev_attr_min_microvolts.attr,
5187 &dev_attr_max_microvolts.attr,
5188 &dev_attr_min_microamps.attr,
5189 &dev_attr_max_microamps.attr,
5190 &dev_attr_under_voltage.attr,
5191 &dev_attr_over_current.attr,
5192 &dev_attr_regulation_out.attr,
5193 &dev_attr_fail.attr,
5194 &dev_attr_over_temp.attr,
5195 &dev_attr_under_voltage_warn.attr,
5196 &dev_attr_over_current_warn.attr,
5197 &dev_attr_over_voltage_warn.attr,
5198 &dev_attr_over_temp_warn.attr,
5199 &dev_attr_suspend_standby_state.attr,
5200 &dev_attr_suspend_mem_state.attr,
5201 &dev_attr_suspend_disk_state.attr,
5202 &dev_attr_suspend_standby_microvolts.attr,
5203 &dev_attr_suspend_mem_microvolts.attr,
5204 &dev_attr_suspend_disk_microvolts.attr,
5205 &dev_attr_suspend_standby_mode.attr,
5206 &dev_attr_suspend_mem_mode.attr,
5207 &dev_attr_suspend_disk_mode.attr,
5212 * To avoid cluttering sysfs (and memory) with useless state, only
5213 * create attributes that can be meaningfully displayed.
5215 static umode_t regulator_attr_is_visible(struct kobject *kobj,
5216 struct attribute *attr, int idx)
5218 struct device *dev = kobj_to_dev(kobj);
5219 struct regulator_dev *rdev = dev_to_rdev(dev);
5220 const struct regulator_ops *ops = rdev->desc->ops;
5221 umode_t mode = attr->mode;
5223 /* these three are always present */
5224 if (attr == &dev_attr_name.attr ||
5225 attr == &dev_attr_num_users.attr ||
5226 attr == &dev_attr_type.attr)
5229 /* some attributes need specific methods to be displayed */
5230 if (attr == &dev_attr_microvolts.attr) {
5231 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
5232 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
5233 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
5234 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
5239 if (attr == &dev_attr_microamps.attr)
5240 return ops->get_current_limit ? mode : 0;
5242 if (attr == &dev_attr_opmode.attr)
5243 return ops->get_mode ? mode : 0;
5245 if (attr == &dev_attr_state.attr)
5246 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
5248 if (attr == &dev_attr_status.attr)
5249 return ops->get_status ? mode : 0;
5251 if (attr == &dev_attr_bypass.attr)
5252 return ops->get_bypass ? mode : 0;
5254 if (attr == &dev_attr_under_voltage.attr ||
5255 attr == &dev_attr_over_current.attr ||
5256 attr == &dev_attr_regulation_out.attr ||
5257 attr == &dev_attr_fail.attr ||
5258 attr == &dev_attr_over_temp.attr ||
5259 attr == &dev_attr_under_voltage_warn.attr ||
5260 attr == &dev_attr_over_current_warn.attr ||
5261 attr == &dev_attr_over_voltage_warn.attr ||
5262 attr == &dev_attr_over_temp_warn.attr)
5263 return ops->get_error_flags ? mode : 0;
5265 /* constraints need specific supporting methods */
5266 if (attr == &dev_attr_min_microvolts.attr ||
5267 attr == &dev_attr_max_microvolts.attr)
5268 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
5270 if (attr == &dev_attr_min_microamps.attr ||
5271 attr == &dev_attr_max_microamps.attr)
5272 return ops->set_current_limit ? mode : 0;
5274 if (attr == &dev_attr_suspend_standby_state.attr ||
5275 attr == &dev_attr_suspend_mem_state.attr ||
5276 attr == &dev_attr_suspend_disk_state.attr)
5279 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
5280 attr == &dev_attr_suspend_mem_microvolts.attr ||
5281 attr == &dev_attr_suspend_disk_microvolts.attr)
5282 return ops->set_suspend_voltage ? mode : 0;
5284 if (attr == &dev_attr_suspend_standby_mode.attr ||
5285 attr == &dev_attr_suspend_mem_mode.attr ||
5286 attr == &dev_attr_suspend_disk_mode.attr)
5287 return ops->set_suspend_mode ? mode : 0;
5292 static const struct attribute_group regulator_dev_group = {
5293 .attrs = regulator_dev_attrs,
5294 .is_visible = regulator_attr_is_visible,
5297 static const struct attribute_group *regulator_dev_groups[] = {
5298 ®ulator_dev_group,
5302 static void regulator_dev_release(struct device *dev)
5304 struct regulator_dev *rdev = dev_get_drvdata(dev);
5306 debugfs_remove_recursive(rdev->debugfs);
5307 kfree(rdev->constraints);
5308 of_node_put(rdev->dev.of_node);
5312 static void rdev_init_debugfs(struct regulator_dev *rdev)
5314 struct device *parent = rdev->dev.parent;
5315 const char *rname = rdev_get_name(rdev);
5316 char name[NAME_MAX];
5318 /* Avoid duplicate debugfs directory names */
5319 if (parent && rname == rdev->desc->name) {
5320 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
5325 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
5326 if (IS_ERR(rdev->debugfs))
5327 rdev_dbg(rdev, "Failed to create debugfs directory\n");
5329 debugfs_create_u32("use_count", 0444, rdev->debugfs,
5331 debugfs_create_u32("open_count", 0444, rdev->debugfs,
5333 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
5334 &rdev->bypass_count);
5337 static int regulator_register_resolve_supply(struct device *dev, void *data)
5339 struct regulator_dev *rdev = dev_to_rdev(dev);
5341 if (regulator_resolve_supply(rdev))
5342 rdev_dbg(rdev, "unable to resolve supply\n");
5347 int regulator_coupler_register(struct regulator_coupler *coupler)
5349 mutex_lock(®ulator_list_mutex);
5350 list_add_tail(&coupler->list, ®ulator_coupler_list);
5351 mutex_unlock(®ulator_list_mutex);
5356 static struct regulator_coupler *
5357 regulator_find_coupler(struct regulator_dev *rdev)
5359 struct regulator_coupler *coupler;
5363 * Note that regulators are appended to the list and the generic
5364 * coupler is registered first, hence it will be attached at last
5367 list_for_each_entry_reverse(coupler, ®ulator_coupler_list, list) {
5368 err = coupler->attach_regulator(coupler, rdev);
5370 if (!coupler->balance_voltage &&
5371 rdev->coupling_desc.n_coupled > 2)
5372 goto err_unsupported;
5378 return ERR_PTR(err);
5386 return ERR_PTR(-EINVAL);
5389 if (coupler->detach_regulator)
5390 coupler->detach_regulator(coupler, rdev);
5393 "Voltage balancing for multiple regulator couples is unimplemented\n");
5395 return ERR_PTR(-EPERM);
5398 static void regulator_resolve_coupling(struct regulator_dev *rdev)
5400 struct regulator_coupler *coupler = rdev->coupling_desc.coupler;
5401 struct coupling_desc *c_desc = &rdev->coupling_desc;
5402 int n_coupled = c_desc->n_coupled;
5403 struct regulator_dev *c_rdev;
5406 for (i = 1; i < n_coupled; i++) {
5407 /* already resolved */
5408 if (c_desc->coupled_rdevs[i])
5411 c_rdev = of_parse_coupled_regulator(rdev, i - 1);
5416 if (c_rdev->coupling_desc.coupler != coupler) {
5417 rdev_err(rdev, "coupler mismatch with %s\n",
5418 rdev_get_name(c_rdev));
5422 c_desc->coupled_rdevs[i] = c_rdev;
5423 c_desc->n_resolved++;
5425 regulator_resolve_coupling(c_rdev);
5429 static void regulator_remove_coupling(struct regulator_dev *rdev)
5431 struct regulator_coupler *coupler = rdev->coupling_desc.coupler;
5432 struct coupling_desc *__c_desc, *c_desc = &rdev->coupling_desc;
5433 struct regulator_dev *__c_rdev, *c_rdev;
5434 unsigned int __n_coupled, n_coupled;
5438 n_coupled = c_desc->n_coupled;
5440 for (i = 1; i < n_coupled; i++) {
5441 c_rdev = c_desc->coupled_rdevs[i];
5446 regulator_lock(c_rdev);
5448 __c_desc = &c_rdev->coupling_desc;
5449 __n_coupled = __c_desc->n_coupled;
5451 for (k = 1; k < __n_coupled; k++) {
5452 __c_rdev = __c_desc->coupled_rdevs[k];
5454 if (__c_rdev == rdev) {
5455 __c_desc->coupled_rdevs[k] = NULL;
5456 __c_desc->n_resolved--;
5461 regulator_unlock(c_rdev);
5463 c_desc->coupled_rdevs[i] = NULL;
5464 c_desc->n_resolved--;
5467 if (coupler && coupler->detach_regulator) {
5468 err = coupler->detach_regulator(coupler, rdev);
5470 rdev_err(rdev, "failed to detach from coupler: %pe\n",
5474 kfree(rdev->coupling_desc.coupled_rdevs);
5475 rdev->coupling_desc.coupled_rdevs = NULL;
5478 static int regulator_init_coupling(struct regulator_dev *rdev)
5480 struct regulator_dev **coupled;
5481 int err, n_phandles;
5483 if (!IS_ENABLED(CONFIG_OF))
5486 n_phandles = of_get_n_coupled(rdev);
5488 coupled = kcalloc(n_phandles + 1, sizeof(*coupled), GFP_KERNEL);
5492 rdev->coupling_desc.coupled_rdevs = coupled;
5495 * Every regulator should always have coupling descriptor filled with
5496 * at least pointer to itself.
5498 rdev->coupling_desc.coupled_rdevs[0] = rdev;
5499 rdev->coupling_desc.n_coupled = n_phandles + 1;
5500 rdev->coupling_desc.n_resolved++;
5502 /* regulator isn't coupled */
5503 if (n_phandles == 0)
5506 if (!of_check_coupling_data(rdev))
5509 mutex_lock(®ulator_list_mutex);
5510 rdev->coupling_desc.coupler = regulator_find_coupler(rdev);
5511 mutex_unlock(®ulator_list_mutex);
5513 if (IS_ERR(rdev->coupling_desc.coupler)) {
5514 err = PTR_ERR(rdev->coupling_desc.coupler);
5515 rdev_err(rdev, "failed to get coupler: %pe\n", ERR_PTR(err));
5522 static int generic_coupler_attach(struct regulator_coupler *coupler,
5523 struct regulator_dev *rdev)
5525 if (rdev->coupling_desc.n_coupled > 2) {
5527 "Voltage balancing for multiple regulator couples is unimplemented\n");
5531 if (!rdev->constraints->always_on) {
5533 "Coupling of a non always-on regulator is unimplemented\n");
5540 static struct regulator_coupler generic_regulator_coupler = {
5541 .attach_regulator = generic_coupler_attach,
5545 * regulator_register - register regulator
5546 * @dev: the device that drive the regulator
5547 * @regulator_desc: regulator to register
5548 * @cfg: runtime configuration for regulator
5550 * Called by regulator drivers to register a regulator.
5551 * Returns a valid pointer to struct regulator_dev on success
5552 * or an ERR_PTR() on error.
5554 struct regulator_dev *
5555 regulator_register(struct device *dev,
5556 const struct regulator_desc *regulator_desc,
5557 const struct regulator_config *cfg)
5559 const struct regulator_init_data *init_data;
5560 struct regulator_config *config = NULL;
5561 static atomic_t regulator_no = ATOMIC_INIT(-1);
5562 struct regulator_dev *rdev;
5563 bool dangling_cfg_gpiod = false;
5564 bool dangling_of_gpiod = false;
5566 bool resolved_early = false;
5569 return ERR_PTR(-EINVAL);
5571 dangling_cfg_gpiod = true;
5572 if (regulator_desc == NULL) {
5577 WARN_ON(!dev || !cfg->dev);
5579 if (regulator_desc->name == NULL || regulator_desc->ops == NULL) {
5584 if (regulator_desc->type != REGULATOR_VOLTAGE &&
5585 regulator_desc->type != REGULATOR_CURRENT) {
5590 /* Only one of each should be implemented */
5591 WARN_ON(regulator_desc->ops->get_voltage &&
5592 regulator_desc->ops->get_voltage_sel);
5593 WARN_ON(regulator_desc->ops->set_voltage &&
5594 regulator_desc->ops->set_voltage_sel);
5596 /* If we're using selectors we must implement list_voltage. */
5597 if (regulator_desc->ops->get_voltage_sel &&
5598 !regulator_desc->ops->list_voltage) {
5602 if (regulator_desc->ops->set_voltage_sel &&
5603 !regulator_desc->ops->list_voltage) {
5608 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
5613 device_initialize(&rdev->dev);
5614 dev_set_drvdata(&rdev->dev, rdev);
5615 rdev->dev.class = ®ulator_class;
5616 spin_lock_init(&rdev->err_lock);
5619 * Duplicate the config so the driver could override it after
5620 * parsing init data.
5622 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
5623 if (config == NULL) {
5628 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
5629 &rdev->dev.of_node);
5632 * Sometimes not all resources are probed already so we need to take
5633 * that into account. This happens most the time if the ena_gpiod comes
5634 * from a gpio extender or something else.
5636 if (PTR_ERR(init_data) == -EPROBE_DEFER) {
5637 ret = -EPROBE_DEFER;
5642 * We need to keep track of any GPIO descriptor coming from the
5643 * device tree until we have handled it over to the core. If the
5644 * config that was passed in to this function DOES NOT contain
5645 * a descriptor, and the config after this call DOES contain
5646 * a descriptor, we definitely got one from parsing the device
5649 if (!cfg->ena_gpiod && config->ena_gpiod)
5650 dangling_of_gpiod = true;
5652 init_data = config->init_data;
5653 rdev->dev.of_node = of_node_get(config->of_node);
5656 ww_mutex_init(&rdev->mutex, ®ulator_ww_class);
5657 rdev->reg_data = config->driver_data;
5658 rdev->owner = regulator_desc->owner;
5659 rdev->desc = regulator_desc;
5661 rdev->regmap = config->regmap;
5662 else if (dev_get_regmap(dev, NULL))
5663 rdev->regmap = dev_get_regmap(dev, NULL);
5664 else if (dev->parent)
5665 rdev->regmap = dev_get_regmap(dev->parent, NULL);
5666 INIT_LIST_HEAD(&rdev->consumer_list);
5667 INIT_LIST_HEAD(&rdev->list);
5668 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
5669 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
5671 if (init_data && init_data->supply_regulator)
5672 rdev->supply_name = init_data->supply_regulator;
5673 else if (regulator_desc->supply_name)
5674 rdev->supply_name = regulator_desc->supply_name;
5676 /* register with sysfs */
5677 rdev->dev.parent = config->dev;
5678 dev_set_name(&rdev->dev, "regulator.%lu",
5679 (unsigned long) atomic_inc_return(®ulator_no));
5681 /* set regulator constraints */
5683 rdev->constraints = kmemdup(&init_data->constraints,
5684 sizeof(*rdev->constraints),
5687 rdev->constraints = kzalloc(sizeof(*rdev->constraints),
5689 if (!rdev->constraints) {
5694 if ((rdev->supply_name && !rdev->supply) &&
5695 (rdev->constraints->always_on ||
5696 rdev->constraints->boot_on)) {
5697 ret = regulator_resolve_supply(rdev);
5699 rdev_dbg(rdev, "unable to resolve supply early: %pe\n",
5702 resolved_early = true;
5705 /* perform any regulator specific init */
5706 if (init_data && init_data->regulator_init) {
5707 ret = init_data->regulator_init(rdev->reg_data);
5712 if (config->ena_gpiod) {
5713 ret = regulator_ena_gpio_request(rdev, config);
5715 rdev_err(rdev, "Failed to request enable GPIO: %pe\n",
5719 /* The regulator core took over the GPIO descriptor */
5720 dangling_cfg_gpiod = false;
5721 dangling_of_gpiod = false;
5724 ret = set_machine_constraints(rdev);
5725 if (ret == -EPROBE_DEFER && !resolved_early) {
5726 /* Regulator might be in bypass mode and so needs its supply
5727 * to set the constraints
5729 /* FIXME: this currently triggers a chicken-and-egg problem
5730 * when creating -SUPPLY symlink in sysfs to a regulator
5731 * that is just being created
5733 rdev_dbg(rdev, "will resolve supply early: %s\n",
5735 ret = regulator_resolve_supply(rdev);
5737 ret = set_machine_constraints(rdev);
5739 rdev_dbg(rdev, "unable to resolve supply early: %pe\n",
5745 ret = regulator_init_coupling(rdev);
5749 /* add consumers devices */
5751 for (i = 0; i < init_data->num_consumer_supplies; i++) {
5752 ret = set_consumer_device_supply(rdev,
5753 init_data->consumer_supplies[i].dev_name,
5754 init_data->consumer_supplies[i].supply);
5756 dev_err(dev, "Failed to set supply %s\n",
5757 init_data->consumer_supplies[i].supply);
5758 goto unset_supplies;
5763 if (!rdev->desc->ops->get_voltage &&
5764 !rdev->desc->ops->list_voltage &&
5765 !rdev->desc->fixed_uV)
5766 rdev->is_switch = true;
5768 ret = device_add(&rdev->dev);
5770 goto unset_supplies;
5772 rdev_init_debugfs(rdev);
5774 /* try to resolve regulators coupling since a new one was registered */
5775 mutex_lock(®ulator_list_mutex);
5776 regulator_resolve_coupling(rdev);
5777 mutex_unlock(®ulator_list_mutex);
5779 /* try to resolve regulators supply since a new one was registered */
5780 class_for_each_device(®ulator_class, NULL, NULL,
5781 regulator_register_resolve_supply);
5786 mutex_lock(®ulator_list_mutex);
5787 unset_regulator_supplies(rdev);
5788 regulator_remove_coupling(rdev);
5789 mutex_unlock(®ulator_list_mutex);
5791 regulator_put(rdev->supply);
5792 kfree(rdev->coupling_desc.coupled_rdevs);
5793 mutex_lock(®ulator_list_mutex);
5794 regulator_ena_gpio_free(rdev);
5795 mutex_unlock(®ulator_list_mutex);
5797 if (dangling_of_gpiod)
5798 gpiod_put(config->ena_gpiod);
5800 put_device(&rdev->dev);
5802 if (dangling_cfg_gpiod)
5803 gpiod_put(cfg->ena_gpiod);
5804 return ERR_PTR(ret);
5806 EXPORT_SYMBOL_GPL(regulator_register);
5809 * regulator_unregister - unregister regulator
5810 * @rdev: regulator to unregister
5812 * Called by regulator drivers to unregister a regulator.
5814 void regulator_unregister(struct regulator_dev *rdev)
5820 while (rdev->use_count--)
5821 regulator_disable(rdev->supply);
5822 regulator_put(rdev->supply);
5825 flush_work(&rdev->disable_work.work);
5827 mutex_lock(®ulator_list_mutex);
5829 WARN_ON(rdev->open_count);
5830 regulator_remove_coupling(rdev);
5831 unset_regulator_supplies(rdev);
5832 list_del(&rdev->list);
5833 regulator_ena_gpio_free(rdev);
5834 device_unregister(&rdev->dev);
5836 mutex_unlock(®ulator_list_mutex);
5838 EXPORT_SYMBOL_GPL(regulator_unregister);
5840 #ifdef CONFIG_SUSPEND
5842 * regulator_suspend - prepare regulators for system wide suspend
5843 * @dev: ``&struct device`` pointer that is passed to _regulator_suspend()
5845 * Configure each regulator with it's suspend operating parameters for state.
5847 static int regulator_suspend(struct device *dev)
5849 struct regulator_dev *rdev = dev_to_rdev(dev);
5850 suspend_state_t state = pm_suspend_target_state;
5852 const struct regulator_state *rstate;
5854 rstate = regulator_get_suspend_state_check(rdev, state);
5858 regulator_lock(rdev);
5859 ret = __suspend_set_state(rdev, rstate);
5860 regulator_unlock(rdev);
5865 static int regulator_resume(struct device *dev)
5867 suspend_state_t state = pm_suspend_target_state;
5868 struct regulator_dev *rdev = dev_to_rdev(dev);
5869 struct regulator_state *rstate;
5872 rstate = regulator_get_suspend_state(rdev, state);
5876 /* Avoid grabbing the lock if we don't need to */
5877 if (!rdev->desc->ops->resume)
5880 regulator_lock(rdev);
5882 if (rstate->enabled == ENABLE_IN_SUSPEND ||
5883 rstate->enabled == DISABLE_IN_SUSPEND)
5884 ret = rdev->desc->ops->resume(rdev);
5886 regulator_unlock(rdev);
5890 #else /* !CONFIG_SUSPEND */
5892 #define regulator_suspend NULL
5893 #define regulator_resume NULL
5895 #endif /* !CONFIG_SUSPEND */
5898 static const struct dev_pm_ops __maybe_unused regulator_pm_ops = {
5899 .suspend = regulator_suspend,
5900 .resume = regulator_resume,
5904 const struct class regulator_class = {
5905 .name = "regulator",
5906 .dev_release = regulator_dev_release,
5907 .dev_groups = regulator_dev_groups,
5909 .pm = ®ulator_pm_ops,
5913 * regulator_has_full_constraints - the system has fully specified constraints
5915 * Calling this function will cause the regulator API to disable all
5916 * regulators which have a zero use count and don't have an always_on
5917 * constraint in a late_initcall.
5919 * The intention is that this will become the default behaviour in a
5920 * future kernel release so users are encouraged to use this facility
5923 void regulator_has_full_constraints(void)
5925 has_full_constraints = 1;
5927 EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
5930 * rdev_get_drvdata - get rdev regulator driver data
5933 * Get rdev regulator driver private data. This call can be used in the
5934 * regulator driver context.
5936 void *rdev_get_drvdata(struct regulator_dev *rdev)
5938 return rdev->reg_data;
5940 EXPORT_SYMBOL_GPL(rdev_get_drvdata);
5943 * regulator_get_drvdata - get regulator driver data
5944 * @regulator: regulator
5946 * Get regulator driver private data. This call can be used in the consumer
5947 * driver context when non API regulator specific functions need to be called.
5949 void *regulator_get_drvdata(struct regulator *regulator)
5951 return regulator->rdev->reg_data;
5953 EXPORT_SYMBOL_GPL(regulator_get_drvdata);
5956 * regulator_set_drvdata - set regulator driver data
5957 * @regulator: regulator
5960 void regulator_set_drvdata(struct regulator *regulator, void *data)
5962 regulator->rdev->reg_data = data;
5964 EXPORT_SYMBOL_GPL(regulator_set_drvdata);
5967 * rdev_get_id - get regulator ID
5970 int rdev_get_id(struct regulator_dev *rdev)
5972 return rdev->desc->id;
5974 EXPORT_SYMBOL_GPL(rdev_get_id);
5976 struct device *rdev_get_dev(struct regulator_dev *rdev)
5980 EXPORT_SYMBOL_GPL(rdev_get_dev);
5982 struct regmap *rdev_get_regmap(struct regulator_dev *rdev)
5984 return rdev->regmap;
5986 EXPORT_SYMBOL_GPL(rdev_get_regmap);
5988 void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
5990 return reg_init_data->driver_data;
5992 EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
5994 #ifdef CONFIG_DEBUG_FS
5995 static int supply_map_show(struct seq_file *sf, void *data)
5997 struct regulator_map *map;
5999 list_for_each_entry(map, ®ulator_map_list, list) {
6000 seq_printf(sf, "%s -> %s.%s\n",
6001 rdev_get_name(map->regulator), map->dev_name,
6007 DEFINE_SHOW_ATTRIBUTE(supply_map);
6009 struct summary_data {
6011 struct regulator_dev *parent;
6015 static void regulator_summary_show_subtree(struct seq_file *s,
6016 struct regulator_dev *rdev,
6019 static int regulator_summary_show_children(struct device *dev, void *data)
6021 struct regulator_dev *rdev = dev_to_rdev(dev);
6022 struct summary_data *summary_data = data;
6024 if (rdev->supply && rdev->supply->rdev == summary_data->parent)
6025 regulator_summary_show_subtree(summary_data->s, rdev,
6026 summary_data->level + 1);
6031 static void regulator_summary_show_subtree(struct seq_file *s,
6032 struct regulator_dev *rdev,
6035 struct regulation_constraints *c;
6036 struct regulator *consumer;
6037 struct summary_data summary_data;
6038 unsigned int opmode;
6043 opmode = _regulator_get_mode_unlocked(rdev);
6044 seq_printf(s, "%*s%-*s %3d %4d %6d %7s ",
6046 30 - level * 3, rdev_get_name(rdev),
6047 rdev->use_count, rdev->open_count, rdev->bypass_count,
6048 regulator_opmode_to_str(opmode));
6050 seq_printf(s, "%5dmV ", regulator_get_voltage_rdev(rdev) / 1000);
6051 seq_printf(s, "%5dmA ",
6052 _regulator_get_current_limit_unlocked(rdev) / 1000);
6054 c = rdev->constraints;
6056 switch (rdev->desc->type) {
6057 case REGULATOR_VOLTAGE:
6058 seq_printf(s, "%5dmV %5dmV ",
6059 c->min_uV / 1000, c->max_uV / 1000);
6061 case REGULATOR_CURRENT:
6062 seq_printf(s, "%5dmA %5dmA ",
6063 c->min_uA / 1000, c->max_uA / 1000);
6070 list_for_each_entry(consumer, &rdev->consumer_list, list) {
6071 if (consumer->dev && consumer->dev->class == ®ulator_class)
6074 seq_printf(s, "%*s%-*s ",
6075 (level + 1) * 3 + 1, "",
6076 30 - (level + 1) * 3,
6077 consumer->supply_name ? consumer->supply_name :
6078 consumer->dev ? dev_name(consumer->dev) : "deviceless");
6080 switch (rdev->desc->type) {
6081 case REGULATOR_VOLTAGE:
6082 seq_printf(s, "%3d %33dmA%c%5dmV %5dmV",
6083 consumer->enable_count,
6084 consumer->uA_load / 1000,
6085 consumer->uA_load && !consumer->enable_count ?
6087 consumer->voltage[PM_SUSPEND_ON].min_uV / 1000,
6088 consumer->voltage[PM_SUSPEND_ON].max_uV / 1000);
6090 case REGULATOR_CURRENT:
6098 summary_data.level = level;
6099 summary_data.parent = rdev;
6101 class_for_each_device(®ulator_class, NULL, &summary_data,
6102 regulator_summary_show_children);
6105 struct summary_lock_data {
6106 struct ww_acquire_ctx *ww_ctx;
6107 struct regulator_dev **new_contended_rdev;
6108 struct regulator_dev **old_contended_rdev;
6111 static int regulator_summary_lock_one(struct device *dev, void *data)
6113 struct regulator_dev *rdev = dev_to_rdev(dev);
6114 struct summary_lock_data *lock_data = data;
6117 if (rdev != *lock_data->old_contended_rdev) {
6118 ret = regulator_lock_nested(rdev, lock_data->ww_ctx);
6120 if (ret == -EDEADLK)
6121 *lock_data->new_contended_rdev = rdev;
6125 *lock_data->old_contended_rdev = NULL;
6131 static int regulator_summary_unlock_one(struct device *dev, void *data)
6133 struct regulator_dev *rdev = dev_to_rdev(dev);
6134 struct summary_lock_data *lock_data = data;
6137 if (rdev == *lock_data->new_contended_rdev)
6141 regulator_unlock(rdev);
6146 static int regulator_summary_lock_all(struct ww_acquire_ctx *ww_ctx,
6147 struct regulator_dev **new_contended_rdev,
6148 struct regulator_dev **old_contended_rdev)
6150 struct summary_lock_data lock_data;
6153 lock_data.ww_ctx = ww_ctx;
6154 lock_data.new_contended_rdev = new_contended_rdev;
6155 lock_data.old_contended_rdev = old_contended_rdev;
6157 ret = class_for_each_device(®ulator_class, NULL, &lock_data,
6158 regulator_summary_lock_one);
6160 class_for_each_device(®ulator_class, NULL, &lock_data,
6161 regulator_summary_unlock_one);
6166 static void regulator_summary_lock(struct ww_acquire_ctx *ww_ctx)
6168 struct regulator_dev *new_contended_rdev = NULL;
6169 struct regulator_dev *old_contended_rdev = NULL;
6172 mutex_lock(®ulator_list_mutex);
6174 ww_acquire_init(ww_ctx, ®ulator_ww_class);
6177 if (new_contended_rdev) {
6178 ww_mutex_lock_slow(&new_contended_rdev->mutex, ww_ctx);
6179 old_contended_rdev = new_contended_rdev;
6180 old_contended_rdev->ref_cnt++;
6181 old_contended_rdev->mutex_owner = current;
6184 err = regulator_summary_lock_all(ww_ctx,
6185 &new_contended_rdev,
6186 &old_contended_rdev);
6188 if (old_contended_rdev)
6189 regulator_unlock(old_contended_rdev);
6191 } while (err == -EDEADLK);
6193 ww_acquire_done(ww_ctx);
6196 static void regulator_summary_unlock(struct ww_acquire_ctx *ww_ctx)
6198 class_for_each_device(®ulator_class, NULL, NULL,
6199 regulator_summary_unlock_one);
6200 ww_acquire_fini(ww_ctx);
6202 mutex_unlock(®ulator_list_mutex);
6205 static int regulator_summary_show_roots(struct device *dev, void *data)
6207 struct regulator_dev *rdev = dev_to_rdev(dev);
6208 struct seq_file *s = data;
6211 regulator_summary_show_subtree(s, rdev, 0);
6216 static int regulator_summary_show(struct seq_file *s, void *data)
6218 struct ww_acquire_ctx ww_ctx;
6220 seq_puts(s, " regulator use open bypass opmode voltage current min max\n");
6221 seq_puts(s, "---------------------------------------------------------------------------------------\n");
6223 regulator_summary_lock(&ww_ctx);
6225 class_for_each_device(®ulator_class, NULL, s,
6226 regulator_summary_show_roots);
6228 regulator_summary_unlock(&ww_ctx);
6232 DEFINE_SHOW_ATTRIBUTE(regulator_summary);
6233 #endif /* CONFIG_DEBUG_FS */
6235 static int __init regulator_init(void)
6239 ret = class_register(®ulator_class);
6241 debugfs_root = debugfs_create_dir("regulator", NULL);
6242 if (IS_ERR(debugfs_root))
6243 pr_debug("regulator: Failed to create debugfs directory\n");
6245 #ifdef CONFIG_DEBUG_FS
6246 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
6249 debugfs_create_file("regulator_summary", 0444, debugfs_root,
6250 NULL, ®ulator_summary_fops);
6252 regulator_dummy_init();
6254 regulator_coupler_register(&generic_regulator_coupler);
6259 /* init early to allow our consumers to complete system booting */
6260 core_initcall(regulator_init);
6262 static int regulator_late_cleanup(struct device *dev, void *data)
6264 struct regulator_dev *rdev = dev_to_rdev(dev);
6265 struct regulation_constraints *c = rdev->constraints;
6268 if (c && c->always_on)
6271 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS))
6274 regulator_lock(rdev);
6276 if (rdev->use_count)
6279 /* If reading the status failed, assume that it's off. */
6280 if (_regulator_is_enabled(rdev) <= 0)
6283 if (have_full_constraints()) {
6284 /* We log since this may kill the system if it goes
6287 rdev_info(rdev, "disabling\n");
6288 ret = _regulator_do_disable(rdev);
6290 rdev_err(rdev, "couldn't disable: %pe\n", ERR_PTR(ret));
6292 /* The intention is that in future we will
6293 * assume that full constraints are provided
6294 * so warn even if we aren't going to do
6297 rdev_warn(rdev, "incomplete constraints, leaving on\n");
6301 regulator_unlock(rdev);
6306 static bool regulator_ignore_unused;
6307 static int __init regulator_ignore_unused_setup(char *__unused)
6309 regulator_ignore_unused = true;
6312 __setup("regulator_ignore_unused", regulator_ignore_unused_setup);
6314 static void regulator_init_complete_work_function(struct work_struct *work)
6317 * Regulators may had failed to resolve their input supplies
6318 * when were registered, either because the input supply was
6319 * not registered yet or because its parent device was not
6320 * bound yet. So attempt to resolve the input supplies for
6321 * pending regulators before trying to disable unused ones.
6323 class_for_each_device(®ulator_class, NULL, NULL,
6324 regulator_register_resolve_supply);
6327 * For debugging purposes, it may be useful to prevent unused
6328 * regulators from being disabled.
6330 if (regulator_ignore_unused) {
6331 pr_warn("regulator: Not disabling unused regulators\n");
6335 /* If we have a full configuration then disable any regulators
6336 * we have permission to change the status for and which are
6337 * not in use or always_on. This is effectively the default
6338 * for DT and ACPI as they have full constraints.
6340 class_for_each_device(®ulator_class, NULL, NULL,
6341 regulator_late_cleanup);
6344 static DECLARE_DELAYED_WORK(regulator_init_complete_work,
6345 regulator_init_complete_work_function);
6347 static int __init regulator_init_complete(void)
6350 * Since DT doesn't provide an idiomatic mechanism for
6351 * enabling full constraints and since it's much more natural
6352 * with DT to provide them just assume that a DT enabled
6353 * system has full constraints.
6355 if (of_have_populated_dt())
6356 has_full_constraints = true;
6359 * We punt completion for an arbitrary amount of time since
6360 * systems like distros will load many drivers from userspace
6361 * so consumers might not always be ready yet, this is
6362 * particularly an issue with laptops where this might bounce
6363 * the display off then on. Ideally we'd get a notification
6364 * from userspace when this happens but we don't so just wait
6365 * a bit and hope we waited long enough. It'd be better if
6366 * we'd only do this on systems that need it, and a kernel
6367 * command line option might be useful.
6369 schedule_delayed_work(®ulator_init_complete_work,
6370 msecs_to_jiffies(30000));
6374 late_initcall_sync(regulator_init_complete);