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