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