blob: 5f2221095a461c11c49f34d5cfd91f8c4fc8ec38 [file] [log] [blame]
Liam Girdwood414c70c2008-04-30 15:59:04 +01001/*
2 * core.c -- Voltage/Current Regulator framework.
3 *
4 * Copyright 2007, 2008 Wolfson Microelectronics PLC.
Liam Girdwooda5766f12008-10-10 13:22:20 +01005 * Copyright 2008 SlimLogic Ltd.
Liam Girdwood414c70c2008-04-30 15:59:04 +01006 *
Liam Girdwooda5766f12008-10-10 13:22:20 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood414c70c2008-04-30 15:59:04 +01008 *
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>
Mark Brown1130e5b2010-12-21 23:49:31 +000018#include <linux/debugfs.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010019#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Mark Brownf21e0e82011-05-24 08:12:40 +080021#include <linux/async.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010022#include <linux/err.h>
23#include <linux/mutex.h>
24#include <linux/suspend.h>
Mark Brown31aae2b2009-12-21 12:21:52 +000025#include <linux/delay.h>
Mark Brown65f73502012-06-27 14:14:38 +010026#include <linux/gpio.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053027#include <linux/of.h>
Mark Brown65b19ce2012-04-15 11:16:05 +010028#include <linux/regmap.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053029#include <linux/regulator/of_regulator.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010030#include <linux/regulator/consumer.h>
31#include <linux/regulator/driver.h>
32#include <linux/regulator/machine.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040033#include <linux/module.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010034
Mark Brown02fa3ec2010-11-10 14:38:30 +000035#define CREATE_TRACE_POINTS
36#include <trace/events/regulator.h>
37
Mark Brown34abbd62010-02-12 10:18:08 +000038#include "dummy.h"
39
Mark Brown7d51a0d2011-06-09 16:06:37 +010040#define rdev_crit(rdev, fmt, ...) \
41 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
Joe Perches5da84fd2010-11-30 05:53:48 -080042#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
Liam Girdwood414c70c2008-04-30 15:59:04 +010051static DEFINE_MUTEX(regulator_list_mutex);
52static LIST_HEAD(regulator_list);
53static LIST_HEAD(regulator_map_list);
Mark Brown21cf8912010-12-21 23:30:07 +000054static bool has_full_constraints;
Mark Brown688fe992010-10-05 19:18:32 -070055static bool board_wants_dummy_regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010056
Mark Brown1130e5b2010-12-21 23:49:31 +000057static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000058
Mark Brown8dc53902008-12-31 12:52:40 +000059/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010060 * struct regulator_map
61 *
62 * Used to provide symbolic supply names to devices.
63 */
64struct regulator_map {
65 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010066 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010067 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010068 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010069};
70
Liam Girdwood414c70c2008-04-30 15:59:04 +010071/*
72 * struct regulator
73 *
74 * One for each consumer device.
75 */
76struct regulator {
77 struct device *dev;
78 struct list_head list;
Mark Brown6492bc12012-04-19 13:19:07 +010079 unsigned int always_on:1;
Liam Girdwood414c70c2008-04-30 15:59:04 +010080 int uA_load;
81 int min_uV;
82 int max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +010083 char *supply_name;
84 struct device_attribute dev_attr;
85 struct regulator_dev *rdev;
Mark Brown5de70512011-06-19 13:33:16 +010086 struct dentry *debugfs;
Liam Girdwood414c70c2008-04-30 15:59:04 +010087};
88
89static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +010090static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +010091static int _regulator_get_voltage(struct regulator_dev *rdev);
92static int _regulator_get_current_limit(struct regulator_dev *rdev);
93static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
94static void _notifier_call_chain(struct regulator_dev *rdev,
95 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +000096static int _regulator_do_set_voltage(struct regulator_dev *rdev,
97 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +010098static struct regulator *create_regulator(struct regulator_dev *rdev,
99 struct device *dev,
100 const char *supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100101
Mark Brown1083c392009-10-22 16:31:32 +0100102static const char *rdev_get_name(struct regulator_dev *rdev)
103{
104 if (rdev->constraints && rdev->constraints->name)
105 return rdev->constraints->name;
106 else if (rdev->desc->name)
107 return rdev->desc->name;
108 else
109 return "";
110}
111
Rajendra Nayak69511a42011-11-18 16:47:20 +0530112/**
113 * of_get_regulator - get a regulator device node based on supply name
114 * @dev: Device pointer for the consumer (of regulator) device
115 * @supply: regulator supply name
116 *
117 * Extract the regulator device node corresponding to the supply name.
118 * retruns the device node corresponding to the regulator if found, else
119 * returns NULL.
120 */
121static struct device_node *of_get_regulator(struct device *dev, const char *supply)
122{
123 struct device_node *regnode = NULL;
124 char prop_name[32]; /* 32 is max size of property name */
125
126 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
127
128 snprintf(prop_name, 32, "%s-supply", supply);
129 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
130
131 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530132 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530133 prop_name, dev->of_node->full_name);
134 return NULL;
135 }
136 return regnode;
137}
138
Mark Brown6492bc12012-04-19 13:19:07 +0100139static int _regulator_can_change_status(struct regulator_dev *rdev)
140{
141 if (!rdev->constraints)
142 return 0;
143
144 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
145 return 1;
146 else
147 return 0;
148}
149
Liam Girdwood414c70c2008-04-30 15:59:04 +0100150/* Platform voltage constraint check */
151static int regulator_check_voltage(struct regulator_dev *rdev,
152 int *min_uV, int *max_uV)
153{
154 BUG_ON(*min_uV > *max_uV);
155
156 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800157 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100158 return -ENODEV;
159 }
160 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800161 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100162 return -EPERM;
163 }
164
165 if (*max_uV > rdev->constraints->max_uV)
166 *max_uV = rdev->constraints->max_uV;
167 if (*min_uV < rdev->constraints->min_uV)
168 *min_uV = rdev->constraints->min_uV;
169
Mark Brown89f425e2011-07-12 11:20:37 +0900170 if (*min_uV > *max_uV) {
171 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100172 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100173 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900174 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100175
176 return 0;
177}
178
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100179/* Make sure we select a voltage that suits the needs of all
180 * regulator consumers
181 */
182static int regulator_check_consumers(struct regulator_dev *rdev,
183 int *min_uV, int *max_uV)
184{
185 struct regulator *regulator;
186
187 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700188 /*
189 * Assume consumers that didn't say anything are OK
190 * with anything in the constraint range.
191 */
192 if (!regulator->min_uV && !regulator->max_uV)
193 continue;
194
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100195 if (*max_uV > regulator->max_uV)
196 *max_uV = regulator->max_uV;
197 if (*min_uV < regulator->min_uV)
198 *min_uV = regulator->min_uV;
199 }
200
201 if (*min_uV > *max_uV)
202 return -EINVAL;
203
204 return 0;
205}
206
Liam Girdwood414c70c2008-04-30 15:59:04 +0100207/* current constraint check */
208static int regulator_check_current_limit(struct regulator_dev *rdev,
209 int *min_uA, int *max_uA)
210{
211 BUG_ON(*min_uA > *max_uA);
212
213 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800214 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100215 return -ENODEV;
216 }
217 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800218 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100219 return -EPERM;
220 }
221
222 if (*max_uA > rdev->constraints->max_uA)
223 *max_uA = rdev->constraints->max_uA;
224 if (*min_uA < rdev->constraints->min_uA)
225 *min_uA = rdev->constraints->min_uA;
226
Mark Brown89f425e2011-07-12 11:20:37 +0900227 if (*min_uA > *max_uA) {
228 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100229 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100230 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900231 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100232
233 return 0;
234}
235
236/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900237static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100238{
Mark Brown2c608232011-03-30 06:29:12 +0900239 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800240 case REGULATOR_MODE_FAST:
241 case REGULATOR_MODE_NORMAL:
242 case REGULATOR_MODE_IDLE:
243 case REGULATOR_MODE_STANDBY:
244 break;
245 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900246 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800247 return -EINVAL;
248 }
249
Liam Girdwood414c70c2008-04-30 15:59:04 +0100250 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800251 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100252 return -ENODEV;
253 }
254 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800255 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100256 return -EPERM;
257 }
Mark Brown2c608232011-03-30 06:29:12 +0900258
259 /* The modes are bitmasks, the most power hungry modes having
260 * the lowest values. If the requested mode isn't supported
261 * try higher modes. */
262 while (*mode) {
263 if (rdev->constraints->valid_modes_mask & *mode)
264 return 0;
265 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100266 }
Mark Brown2c608232011-03-30 06:29:12 +0900267
268 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100269}
270
271/* dynamic regulator mode switching constraint check */
272static int regulator_check_drms(struct regulator_dev *rdev)
273{
274 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800275 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100276 return -ENODEV;
277 }
278 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800279 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100280 return -EPERM;
281 }
282 return 0;
283}
284
Liam Girdwood414c70c2008-04-30 15:59:04 +0100285static ssize_t regulator_uV_show(struct device *dev,
286 struct device_attribute *attr, char *buf)
287{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100288 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100289 ssize_t ret;
290
291 mutex_lock(&rdev->mutex);
292 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
293 mutex_unlock(&rdev->mutex);
294
295 return ret;
296}
David Brownell7ad68e22008-11-11 17:39:02 -0800297static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100298
299static ssize_t regulator_uA_show(struct device *dev,
300 struct device_attribute *attr, char *buf)
301{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100302 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100303
304 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
305}
David Brownell7ad68e22008-11-11 17:39:02 -0800306static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100307
Mark Brownbc558a62008-10-10 15:33:20 +0100308static ssize_t regulator_name_show(struct device *dev,
309 struct device_attribute *attr, char *buf)
310{
311 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100312
Mark Brown1083c392009-10-22 16:31:32 +0100313 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100314}
315
David Brownell4fca9542008-11-11 17:38:53 -0800316static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100317{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100318 switch (mode) {
319 case REGULATOR_MODE_FAST:
320 return sprintf(buf, "fast\n");
321 case REGULATOR_MODE_NORMAL:
322 return sprintf(buf, "normal\n");
323 case REGULATOR_MODE_IDLE:
324 return sprintf(buf, "idle\n");
325 case REGULATOR_MODE_STANDBY:
326 return sprintf(buf, "standby\n");
327 }
328 return sprintf(buf, "unknown\n");
329}
330
David Brownell4fca9542008-11-11 17:38:53 -0800331static ssize_t regulator_opmode_show(struct device *dev,
332 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100333{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100334 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100335
David Brownell4fca9542008-11-11 17:38:53 -0800336 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
337}
David Brownell7ad68e22008-11-11 17:39:02 -0800338static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800339
340static ssize_t regulator_print_state(char *buf, int state)
341{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100342 if (state > 0)
343 return sprintf(buf, "enabled\n");
344 else if (state == 0)
345 return sprintf(buf, "disabled\n");
346 else
347 return sprintf(buf, "unknown\n");
348}
349
David Brownell4fca9542008-11-11 17:38:53 -0800350static ssize_t regulator_state_show(struct device *dev,
351 struct device_attribute *attr, char *buf)
352{
353 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100354 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800355
Mark Brown93325462009-08-03 18:49:56 +0100356 mutex_lock(&rdev->mutex);
357 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
358 mutex_unlock(&rdev->mutex);
359
360 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800361}
David Brownell7ad68e22008-11-11 17:39:02 -0800362static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800363
David Brownell853116a2009-01-14 23:03:17 -0800364static ssize_t regulator_status_show(struct device *dev,
365 struct device_attribute *attr, char *buf)
366{
367 struct regulator_dev *rdev = dev_get_drvdata(dev);
368 int status;
369 char *label;
370
371 status = rdev->desc->ops->get_status(rdev);
372 if (status < 0)
373 return status;
374
375 switch (status) {
376 case REGULATOR_STATUS_OFF:
377 label = "off";
378 break;
379 case REGULATOR_STATUS_ON:
380 label = "on";
381 break;
382 case REGULATOR_STATUS_ERROR:
383 label = "error";
384 break;
385 case REGULATOR_STATUS_FAST:
386 label = "fast";
387 break;
388 case REGULATOR_STATUS_NORMAL:
389 label = "normal";
390 break;
391 case REGULATOR_STATUS_IDLE:
392 label = "idle";
393 break;
394 case REGULATOR_STATUS_STANDBY:
395 label = "standby";
396 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100397 case REGULATOR_STATUS_UNDEFINED:
398 label = "undefined";
399 break;
David Brownell853116a2009-01-14 23:03:17 -0800400 default:
401 return -ERANGE;
402 }
403
404 return sprintf(buf, "%s\n", label);
405}
406static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
407
Liam Girdwood414c70c2008-04-30 15:59:04 +0100408static ssize_t regulator_min_uA_show(struct device *dev,
409 struct device_attribute *attr, char *buf)
410{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100411 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100412
413 if (!rdev->constraints)
414 return sprintf(buf, "constraint not defined\n");
415
416 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
417}
David Brownell7ad68e22008-11-11 17:39:02 -0800418static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100419
420static ssize_t regulator_max_uA_show(struct device *dev,
421 struct device_attribute *attr, char *buf)
422{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100423 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100424
425 if (!rdev->constraints)
426 return sprintf(buf, "constraint not defined\n");
427
428 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
429}
David Brownell7ad68e22008-11-11 17:39:02 -0800430static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100431
432static ssize_t regulator_min_uV_show(struct device *dev,
433 struct device_attribute *attr, char *buf)
434{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100435 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100436
437 if (!rdev->constraints)
438 return sprintf(buf, "constraint not defined\n");
439
440 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
441}
David Brownell7ad68e22008-11-11 17:39:02 -0800442static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100443
444static ssize_t regulator_max_uV_show(struct device *dev,
445 struct device_attribute *attr, char *buf)
446{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100447 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100448
449 if (!rdev->constraints)
450 return sprintf(buf, "constraint not defined\n");
451
452 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
453}
David Brownell7ad68e22008-11-11 17:39:02 -0800454static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100455
456static ssize_t regulator_total_uA_show(struct device *dev,
457 struct device_attribute *attr, char *buf)
458{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100459 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100460 struct regulator *regulator;
461 int uA = 0;
462
463 mutex_lock(&rdev->mutex);
464 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100465 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100466 mutex_unlock(&rdev->mutex);
467 return sprintf(buf, "%d\n", uA);
468}
David Brownell7ad68e22008-11-11 17:39:02 -0800469static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100470
471static ssize_t regulator_num_users_show(struct device *dev,
472 struct device_attribute *attr, char *buf)
473{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100474 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100475 return sprintf(buf, "%d\n", rdev->use_count);
476}
477
478static ssize_t regulator_type_show(struct device *dev,
479 struct device_attribute *attr, char *buf)
480{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100481 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100482
483 switch (rdev->desc->type) {
484 case REGULATOR_VOLTAGE:
485 return sprintf(buf, "voltage\n");
486 case REGULATOR_CURRENT:
487 return sprintf(buf, "current\n");
488 }
489 return sprintf(buf, "unknown\n");
490}
491
492static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
493 struct device_attribute *attr, char *buf)
494{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100495 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100496
Liam Girdwood414c70c2008-04-30 15:59:04 +0100497 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
498}
David Brownell7ad68e22008-11-11 17:39:02 -0800499static DEVICE_ATTR(suspend_mem_microvolts, 0444,
500 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100501
502static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
503 struct device_attribute *attr, char *buf)
504{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100505 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100506
Liam Girdwood414c70c2008-04-30 15:59:04 +0100507 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
508}
David Brownell7ad68e22008-11-11 17:39:02 -0800509static DEVICE_ATTR(suspend_disk_microvolts, 0444,
510 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100511
512static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
513 struct device_attribute *attr, char *buf)
514{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100515 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100516
Liam Girdwood414c70c2008-04-30 15:59:04 +0100517 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
518}
David Brownell7ad68e22008-11-11 17:39:02 -0800519static DEVICE_ATTR(suspend_standby_microvolts, 0444,
520 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100521
Liam Girdwood414c70c2008-04-30 15:59:04 +0100522static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
523 struct device_attribute *attr, char *buf)
524{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100525 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100526
David Brownell4fca9542008-11-11 17:38:53 -0800527 return regulator_print_opmode(buf,
528 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100529}
David Brownell7ad68e22008-11-11 17:39:02 -0800530static DEVICE_ATTR(suspend_mem_mode, 0444,
531 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100532
533static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
534 struct device_attribute *attr, char *buf)
535{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100536 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100537
David Brownell4fca9542008-11-11 17:38:53 -0800538 return regulator_print_opmode(buf,
539 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100540}
David Brownell7ad68e22008-11-11 17:39:02 -0800541static DEVICE_ATTR(suspend_disk_mode, 0444,
542 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100543
544static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
545 struct device_attribute *attr, char *buf)
546{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100547 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100548
David Brownell4fca9542008-11-11 17:38:53 -0800549 return regulator_print_opmode(buf,
550 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100551}
David Brownell7ad68e22008-11-11 17:39:02 -0800552static DEVICE_ATTR(suspend_standby_mode, 0444,
553 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100554
555static ssize_t regulator_suspend_mem_state_show(struct device *dev,
556 struct device_attribute *attr, char *buf)
557{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100558 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100559
David Brownell4fca9542008-11-11 17:38:53 -0800560 return regulator_print_state(buf,
561 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100562}
David Brownell7ad68e22008-11-11 17:39:02 -0800563static DEVICE_ATTR(suspend_mem_state, 0444,
564 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100565
566static ssize_t regulator_suspend_disk_state_show(struct device *dev,
567 struct device_attribute *attr, char *buf)
568{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100569 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100570
David Brownell4fca9542008-11-11 17:38:53 -0800571 return regulator_print_state(buf,
572 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100573}
David Brownell7ad68e22008-11-11 17:39:02 -0800574static DEVICE_ATTR(suspend_disk_state, 0444,
575 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100576
577static ssize_t regulator_suspend_standby_state_show(struct device *dev,
578 struct device_attribute *attr, char *buf)
579{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100580 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100581
David Brownell4fca9542008-11-11 17:38:53 -0800582 return regulator_print_state(buf,
583 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100584}
David Brownell7ad68e22008-11-11 17:39:02 -0800585static DEVICE_ATTR(suspend_standby_state, 0444,
586 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100587
David Brownell7ad68e22008-11-11 17:39:02 -0800588
589/*
590 * These are the only attributes are present for all regulators.
591 * Other attributes are a function of regulator functionality.
592 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100593static struct device_attribute regulator_dev_attrs[] = {
Mark Brownbc558a62008-10-10 15:33:20 +0100594 __ATTR(name, 0444, regulator_name_show, NULL),
Liam Girdwood414c70c2008-04-30 15:59:04 +0100595 __ATTR(num_users, 0444, regulator_num_users_show, NULL),
596 __ATTR(type, 0444, regulator_type_show, NULL),
Liam Girdwood414c70c2008-04-30 15:59:04 +0100597 __ATTR_NULL,
598};
599
600static void regulator_dev_release(struct device *dev)
601{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100602 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100603 kfree(rdev);
604}
605
606static struct class regulator_class = {
607 .name = "regulator",
608 .dev_release = regulator_dev_release,
609 .dev_attrs = regulator_dev_attrs,
610};
611
612/* Calculate the new optimum regulator operating mode based on the new total
613 * consumer load. All locks held by caller */
614static void drms_uA_update(struct regulator_dev *rdev)
615{
616 struct regulator *sibling;
617 int current_uA = 0, output_uV, input_uV, err;
618 unsigned int mode;
619
620 err = regulator_check_drms(rdev);
621 if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
Mark Brown476c2d82010-12-10 17:28:07 +0000622 (!rdev->desc->ops->get_voltage &&
623 !rdev->desc->ops->get_voltage_sel) ||
624 !rdev->desc->ops->set_mode)
Dan Carpenter036de8e2009-04-08 13:52:39 +0300625 return;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100626
627 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000628 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100629 if (output_uV <= 0)
630 return;
631
632 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000633 input_uV = 0;
634 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800635 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000636 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100637 input_uV = rdev->constraints->input_uV;
638 if (input_uV <= 0)
639 return;
640
641 /* calc total requested load */
642 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100643 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100644
645 /* now get the optimum mode for our new total regulator load */
646 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
647 output_uV, current_uA);
648
649 /* check the new mode is allowed */
Mark Brown2c608232011-03-30 06:29:12 +0900650 err = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100651 if (err == 0)
652 rdev->desc->ops->set_mode(rdev, mode);
653}
654
655static int suspend_set_state(struct regulator_dev *rdev,
656 struct regulator_state *rstate)
657{
658 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100659
660 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800661 * only warn if the driver implements set_suspend_voltage or
662 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100663 */
664 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800665 if (rdev->desc->ops->set_suspend_voltage ||
666 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800667 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100668 return 0;
669 }
670
671 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800672 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100673 return -EINVAL;
674 }
675
Axel Lin8ac0e952012-04-14 09:14:34 +0800676 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100677 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800678 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100679 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800680 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
681 ret = 0;
682
Liam Girdwood414c70c2008-04-30 15:59:04 +0100683 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800684 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100685 return ret;
686 }
687
688 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
689 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
690 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800691 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100692 return ret;
693 }
694 }
695
696 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
697 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
698 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800699 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100700 return ret;
701 }
702 }
703 return ret;
704}
705
706/* locks held by caller */
707static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
708{
709 if (!rdev->constraints)
710 return -EINVAL;
711
712 switch (state) {
713 case PM_SUSPEND_STANDBY:
714 return suspend_set_state(rdev,
715 &rdev->constraints->state_standby);
716 case PM_SUSPEND_MEM:
717 return suspend_set_state(rdev,
718 &rdev->constraints->state_mem);
719 case PM_SUSPEND_MAX:
720 return suspend_set_state(rdev,
721 &rdev->constraints->state_disk);
722 default:
723 return -EINVAL;
724 }
725}
726
727static void print_constraints(struct regulator_dev *rdev)
728{
729 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000730 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100731 int count = 0;
732 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100733
Mark Brown8f031b42009-10-22 16:31:31 +0100734 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100735 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100736 count += sprintf(buf + count, "%d mV ",
737 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100738 else
Mark Brown8f031b42009-10-22 16:31:31 +0100739 count += sprintf(buf + count, "%d <--> %d mV ",
740 constraints->min_uV / 1000,
741 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100742 }
Mark Brown8f031b42009-10-22 16:31:31 +0100743
744 if (!constraints->min_uV ||
745 constraints->min_uV != constraints->max_uV) {
746 ret = _regulator_get_voltage(rdev);
747 if (ret > 0)
748 count += sprintf(buf + count, "at %d mV ", ret / 1000);
749 }
750
Mark Brownbf5892a2011-05-08 22:13:37 +0100751 if (constraints->uV_offset)
752 count += sprintf(buf, "%dmV offset ",
753 constraints->uV_offset / 1000);
754
Mark Brown8f031b42009-10-22 16:31:31 +0100755 if (constraints->min_uA && constraints->max_uA) {
756 if (constraints->min_uA == constraints->max_uA)
757 count += sprintf(buf + count, "%d mA ",
758 constraints->min_uA / 1000);
759 else
760 count += sprintf(buf + count, "%d <--> %d mA ",
761 constraints->min_uA / 1000,
762 constraints->max_uA / 1000);
763 }
764
765 if (!constraints->min_uA ||
766 constraints->min_uA != constraints->max_uA) {
767 ret = _regulator_get_current_limit(rdev);
768 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400769 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100770 }
771
Liam Girdwood414c70c2008-04-30 15:59:04 +0100772 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
773 count += sprintf(buf + count, "fast ");
774 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
775 count += sprintf(buf + count, "normal ");
776 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
777 count += sprintf(buf + count, "idle ");
778 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
779 count += sprintf(buf + count, "standby");
780
Mark Brown13ce29f2010-12-17 16:04:12 +0000781 rdev_info(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000782
783 if ((constraints->min_uV != constraints->max_uV) &&
784 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
785 rdev_warn(rdev,
786 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100787}
788
Mark Browne79055d2009-10-19 15:53:50 +0100789static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100790 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100791{
792 struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100793 int ret;
794
795 /* do we need to apply the constraint voltage */
796 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000797 rdev->constraints->min_uV == rdev->constraints->max_uV) {
798 ret = _regulator_do_set_voltage(rdev,
799 rdev->constraints->min_uV,
800 rdev->constraints->max_uV);
801 if (ret < 0) {
802 rdev_err(rdev, "failed to apply %duV constraint\n",
803 rdev->constraints->min_uV);
Mark Brown75790252010-12-12 14:25:50 +0000804 return ret;
805 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100806 }
Mark Browne79055d2009-10-19 15:53:50 +0100807
808 /* constrain machine-level voltage specs to fit
809 * the actual range supported by this regulator.
810 */
811 if (ops->list_voltage && rdev->desc->n_voltages) {
812 int count = rdev->desc->n_voltages;
813 int i;
814 int min_uV = INT_MAX;
815 int max_uV = INT_MIN;
816 int cmin = constraints->min_uV;
817 int cmax = constraints->max_uV;
818
819 /* it's safe to autoconfigure fixed-voltage supplies
820 and the constraints are used by list_voltage. */
821 if (count == 1 && !cmin) {
822 cmin = 1;
823 cmax = INT_MAX;
824 constraints->min_uV = cmin;
825 constraints->max_uV = cmax;
826 }
827
828 /* voltage constraints are optional */
829 if ((cmin == 0) && (cmax == 0))
830 return 0;
831
832 /* else require explicit machine-level constraints */
833 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800834 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100835 return -EINVAL;
836 }
837
838 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
839 for (i = 0; i < count; i++) {
840 int value;
841
842 value = ops->list_voltage(rdev, i);
843 if (value <= 0)
844 continue;
845
846 /* maybe adjust [min_uV..max_uV] */
847 if (value >= cmin && value < min_uV)
848 min_uV = value;
849 if (value <= cmax && value > max_uV)
850 max_uV = value;
851 }
852
853 /* final: [min_uV..max_uV] valid iff constraints valid */
854 if (max_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800855 rdev_err(rdev, "unsupportable voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100856 return -EINVAL;
857 }
858
859 /* use regulator's subset of machine constraints */
860 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800861 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
862 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100863 constraints->min_uV = min_uV;
864 }
865 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800866 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
867 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100868 constraints->max_uV = max_uV;
869 }
870 }
871
872 return 0;
873}
874
Liam Girdwooda5766f12008-10-10 13:22:20 +0100875/**
876 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000877 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000878 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100879 *
880 * Allows platform initialisation code to define and constrain
881 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
882 * Constraints *must* be set by platform code in order for some
883 * regulator operations to proceed i.e. set_voltage, set_current_limit,
884 * set_mode.
885 */
886static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000887 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100888{
889 int ret = 0;
Mark Browne5fda262008-09-09 16:21:20 +0100890 struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100891
Mark Brown9a8f5e02011-11-29 18:11:19 +0000892 if (constraints)
893 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
894 GFP_KERNEL);
895 else
896 rdev->constraints = kzalloc(sizeof(*constraints),
897 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +0000898 if (!rdev->constraints)
899 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100900
Mark Brownf8c12fe2010-11-29 15:55:17 +0000901 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100902 if (ret != 0)
903 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800904
Liam Girdwooda5766f12008-10-10 13:22:20 +0100905 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +0000906 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +0000907 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +0100908 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800909 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +0100910 goto out;
911 }
912 }
Liam Girdwooda5766f12008-10-10 13:22:20 +0100913
Mark Brown9a8f5e02011-11-29 18:11:19 +0000914 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +0000915 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800916 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +0000917 ret = -EINVAL;
918 goto out;
919 }
920
Mark Brownf8c12fe2010-11-29 15:55:17 +0000921 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +0000922 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800923 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +0000924 goto out;
925 }
926 }
927
Mark Browncacf90f2009-03-02 16:32:46 +0000928 /* If the constraints say the regulator should be on at this point
929 * and we have control then make sure it is enabled.
930 */
Mark Brownf8c12fe2010-11-29 15:55:17 +0000931 if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
932 ops->enable) {
Mark Browne5fda262008-09-09 16:21:20 +0100933 ret = ops->enable(rdev);
934 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800935 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +0100936 goto out;
937 }
938 }
939
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +0530940 if (rdev->constraints->ramp_delay && ops->set_ramp_delay) {
941 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
942 if (ret < 0) {
943 rdev_err(rdev, "failed to set ramp_delay\n");
944 goto out;
945 }
946 }
947
Liam Girdwooda5766f12008-10-10 13:22:20 +0100948 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +0800949 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100950out:
Axel Lin1a6958e72011-07-15 10:50:43 +0800951 kfree(rdev->constraints);
952 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100953 return ret;
954}
955
956/**
957 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +0000958 * @rdev: regulator name
959 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +0100960 *
961 * Called by platform initialisation code to set the supply regulator for this
962 * regulator. This ensures that a regulators supply will also be enabled by the
963 * core if it's child is enabled.
964 */
965static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +0100966 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100967{
968 int err;
969
Mark Brown3801b862011-06-09 16:22:22 +0100970 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
971
972 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +0800973 if (rdev->supply == NULL) {
974 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +0100975 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100976 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +0530977 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +0100978
979 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100980}
981
982/**
Randy Dunlap06c63f92010-11-18 15:02:26 -0800983 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +0000984 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +0100985 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +0000986 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100987 *
988 * Allows platform initialisation code to map physical regulator
989 * sources to symbolic names for supplies for use by devices. Devices
990 * should use these symbolic names to request regulators, avoiding the
991 * need to provide board-specific regulator names as platform data.
992 */
993static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +0000994 const char *consumer_dev_name,
995 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100996{
997 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +0100998 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100999
1000 if (supply == NULL)
1001 return -EINVAL;
1002
Mark Brown9ed20992009-07-21 16:00:26 +01001003 if (consumer_dev_name != NULL)
1004 has_dev = 1;
1005 else
1006 has_dev = 0;
1007
David Brownell6001e132008-12-31 12:54:19 +00001008 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001009 if (node->dev_name && consumer_dev_name) {
1010 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1011 continue;
1012 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001013 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001014 }
1015
David Brownell6001e132008-12-31 12:54:19 +00001016 if (strcmp(node->supply, supply) != 0)
1017 continue;
1018
Mark Brown737f3602012-02-02 00:10:51 +00001019 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1020 consumer_dev_name,
1021 dev_name(&node->regulator->dev),
1022 node->regulator->desc->name,
1023 supply,
1024 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001025 return -EBUSY;
1026 }
1027
Mark Brown9ed20992009-07-21 16:00:26 +01001028 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001029 if (node == NULL)
1030 return -ENOMEM;
1031
1032 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001033 node->supply = supply;
1034
Mark Brown9ed20992009-07-21 16:00:26 +01001035 if (has_dev) {
1036 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1037 if (node->dev_name == NULL) {
1038 kfree(node);
1039 return -ENOMEM;
1040 }
Mark Brown40f92442009-06-17 17:56:39 +01001041 }
1042
Liam Girdwooda5766f12008-10-10 13:22:20 +01001043 list_add(&node->list, &regulator_map_list);
1044 return 0;
1045}
1046
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001047static void unset_regulator_supplies(struct regulator_dev *rdev)
1048{
1049 struct regulator_map *node, *n;
1050
1051 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1052 if (rdev == node->regulator) {
1053 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001054 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001055 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001056 }
1057 }
1058}
1059
Mark Brownf5726ae2011-06-09 16:22:20 +01001060#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001061
1062static struct regulator *create_regulator(struct regulator_dev *rdev,
1063 struct device *dev,
1064 const char *supply_name)
1065{
1066 struct regulator *regulator;
1067 char buf[REG_STR_SIZE];
1068 int err, size;
1069
1070 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1071 if (regulator == NULL)
1072 return NULL;
1073
1074 mutex_lock(&rdev->mutex);
1075 regulator->rdev = rdev;
1076 list_add(&regulator->list, &rdev->consumer_list);
1077
1078 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001079 regulator->dev = dev;
1080
Mark Brown222cc7b2012-06-22 11:39:16 +01001081 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001082 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1083 dev->kobj.name, supply_name);
1084 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001085 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001086
1087 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1088 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001089 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001090
1091 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1092 buf);
1093 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001094 rdev_warn(rdev, "could not add device link %s err %d\n",
1095 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001096 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001097 }
Mark Brown5de70512011-06-19 13:33:16 +01001098 } else {
1099 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1100 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001101 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001102 }
Mark Brown5de70512011-06-19 13:33:16 +01001103
Mark Brown5de70512011-06-19 13:33:16 +01001104 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1105 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001106 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001107 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001108 } else {
1109 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1110 &regulator->uA_load);
1111 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1112 &regulator->min_uV);
1113 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1114 &regulator->max_uV);
1115 }
Mark Brown5de70512011-06-19 13:33:16 +01001116
Mark Brown6492bc12012-04-19 13:19:07 +01001117 /*
1118 * Check now if the regulator is an always on regulator - if
1119 * it is then we don't need to do nearly so much work for
1120 * enable/disable calls.
1121 */
1122 if (!_regulator_can_change_status(rdev) &&
1123 _regulator_is_enabled(rdev))
1124 regulator->always_on = true;
1125
Liam Girdwood414c70c2008-04-30 15:59:04 +01001126 mutex_unlock(&rdev->mutex);
1127 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001128overflow_err:
1129 list_del(&regulator->list);
1130 kfree(regulator);
1131 mutex_unlock(&rdev->mutex);
1132 return NULL;
1133}
1134
Mark Brown31aae2b2009-12-21 12:21:52 +00001135static int _regulator_get_enable_time(struct regulator_dev *rdev)
1136{
1137 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001138 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001139 return rdev->desc->ops->enable_time(rdev);
1140}
1141
Rajendra Nayak69511a42011-11-18 16:47:20 +05301142static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001143 const char *supply,
1144 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301145{
1146 struct regulator_dev *r;
1147 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001148 struct regulator_map *map;
1149 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301150
1151 /* first do a dt based lookup */
1152 if (dev && dev->of_node) {
1153 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001154 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301155 list_for_each_entry(r, &regulator_list, list)
1156 if (r->dev.parent &&
1157 node == r->dev.of_node)
1158 return r;
Mark Brown6d191a52012-03-29 14:19:02 +01001159 } else {
1160 /*
1161 * If we couldn't even get the node then it's
1162 * not just that the device didn't register
1163 * yet, there's no node and we'll never
1164 * succeed.
1165 */
1166 *ret = -ENODEV;
1167 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301168 }
1169
1170 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001171 if (dev)
1172 devname = dev_name(dev);
1173
Rajendra Nayak69511a42011-11-18 16:47:20 +05301174 list_for_each_entry(r, &regulator_list, list)
1175 if (strcmp(rdev_get_name(r), supply) == 0)
1176 return r;
1177
Mark Brown576ca4362012-03-30 12:24:37 +01001178 list_for_each_entry(map, &regulator_map_list, list) {
1179 /* If the mapping has a device set up it must match */
1180 if (map->dev_name &&
1181 (!devname || strcmp(map->dev_name, devname)))
1182 continue;
1183
1184 if (strcmp(map->supply, supply) == 0)
1185 return map->regulator;
1186 }
1187
1188
Rajendra Nayak69511a42011-11-18 16:47:20 +05301189 return NULL;
1190}
1191
Mark Brown5ffbd132009-07-21 16:00:23 +01001192/* Internal regulator request function */
1193static struct regulator *_regulator_get(struct device *dev, const char *id,
1194 int exclusive)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001195{
1196 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001197 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001198 const char *devname = NULL;
Mark Brown5ffbd132009-07-21 16:00:23 +01001199 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001200
1201 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001202 pr_err("get() with no identifier\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001203 return regulator;
1204 }
1205
Mark Brown40f92442009-06-17 17:56:39 +01001206 if (dev)
1207 devname = dev_name(dev);
1208
Liam Girdwood414c70c2008-04-30 15:59:04 +01001209 mutex_lock(&regulator_list_mutex);
1210
Mark Brown6d191a52012-03-29 14:19:02 +01001211 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301212 if (rdev)
1213 goto found;
1214
Mark Brown688fe992010-10-05 19:18:32 -07001215 if (board_wants_dummy_regulator) {
1216 rdev = dummy_regulator_rdev;
1217 goto found;
1218 }
1219
Mark Brown34abbd62010-02-12 10:18:08 +00001220#ifdef CONFIG_REGULATOR_DUMMY
1221 if (!devname)
1222 devname = "deviceless";
1223
1224 /* If the board didn't flag that it was fully constrained then
1225 * substitute in a dummy regulator so consumers can continue.
1226 */
1227 if (!has_full_constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001228 pr_warn("%s supply %s not found, using dummy regulator\n",
1229 devname, id);
Mark Brown34abbd62010-02-12 10:18:08 +00001230 rdev = dummy_regulator_rdev;
1231 goto found;
1232 }
1233#endif
1234
Liam Girdwood414c70c2008-04-30 15:59:04 +01001235 mutex_unlock(&regulator_list_mutex);
1236 return regulator;
1237
1238found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001239 if (rdev->exclusive) {
1240 regulator = ERR_PTR(-EPERM);
1241 goto out;
1242 }
1243
1244 if (exclusive && rdev->open_count) {
1245 regulator = ERR_PTR(-EBUSY);
1246 goto out;
1247 }
1248
Liam Girdwooda5766f12008-10-10 13:22:20 +01001249 if (!try_module_get(rdev->owner))
1250 goto out;
1251
Liam Girdwood414c70c2008-04-30 15:59:04 +01001252 regulator = create_regulator(rdev, dev, id);
1253 if (regulator == NULL) {
1254 regulator = ERR_PTR(-ENOMEM);
1255 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001256 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001257 }
1258
Mark Brown5ffbd132009-07-21 16:00:23 +01001259 rdev->open_count++;
1260 if (exclusive) {
1261 rdev->exclusive = 1;
1262
1263 ret = _regulator_is_enabled(rdev);
1264 if (ret > 0)
1265 rdev->use_count = 1;
1266 else
1267 rdev->use_count = 0;
1268 }
1269
Liam Girdwooda5766f12008-10-10 13:22:20 +01001270out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001271 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001272
Liam Girdwood414c70c2008-04-30 15:59:04 +01001273 return regulator;
1274}
Mark Brown5ffbd132009-07-21 16:00:23 +01001275
1276/**
1277 * regulator_get - lookup and obtain a reference to a regulator.
1278 * @dev: device for regulator "consumer"
1279 * @id: Supply name or regulator ID.
1280 *
1281 * Returns a struct regulator corresponding to the regulator producer,
1282 * or IS_ERR() condition containing errno.
1283 *
1284 * Use of supply names configured via regulator_set_device_supply() is
1285 * strongly encouraged. It is recommended that the supply name used
1286 * should match the name used for the supply and/or the relevant
1287 * device pins in the datasheet.
1288 */
1289struct regulator *regulator_get(struct device *dev, const char *id)
1290{
1291 return _regulator_get(dev, id, 0);
1292}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001293EXPORT_SYMBOL_GPL(regulator_get);
1294
Stephen Boyd070b9072012-01-16 19:39:58 -08001295static void devm_regulator_release(struct device *dev, void *res)
1296{
1297 regulator_put(*(struct regulator **)res);
1298}
1299
1300/**
1301 * devm_regulator_get - Resource managed regulator_get()
1302 * @dev: device for regulator "consumer"
1303 * @id: Supply name or regulator ID.
1304 *
1305 * Managed regulator_get(). Regulators returned from this function are
1306 * automatically regulator_put() on driver detach. See regulator_get() for more
1307 * information.
1308 */
1309struct regulator *devm_regulator_get(struct device *dev, const char *id)
1310{
1311 struct regulator **ptr, *regulator;
1312
1313 ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
1314 if (!ptr)
1315 return ERR_PTR(-ENOMEM);
1316
1317 regulator = regulator_get(dev, id);
1318 if (!IS_ERR(regulator)) {
1319 *ptr = regulator;
1320 devres_add(dev, ptr);
1321 } else {
1322 devres_free(ptr);
1323 }
1324
1325 return regulator;
1326}
1327EXPORT_SYMBOL_GPL(devm_regulator_get);
1328
Liam Girdwood414c70c2008-04-30 15:59:04 +01001329/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001330 * regulator_get_exclusive - obtain exclusive access to a regulator.
1331 * @dev: device for regulator "consumer"
1332 * @id: Supply name or regulator ID.
1333 *
1334 * Returns a struct regulator corresponding to the regulator producer,
1335 * or IS_ERR() condition containing errno. Other consumers will be
1336 * unable to obtain this reference is held and the use count for the
1337 * regulator will be initialised to reflect the current state of the
1338 * regulator.
1339 *
1340 * This is intended for use by consumers which cannot tolerate shared
1341 * use of the regulator such as those which need to force the
1342 * regulator off for correct operation of the hardware they are
1343 * controlling.
1344 *
1345 * Use of supply names configured via regulator_set_device_supply() is
1346 * strongly encouraged. It is recommended that the supply name used
1347 * should match the name used for the supply and/or the relevant
1348 * device pins in the datasheet.
1349 */
1350struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1351{
1352 return _regulator_get(dev, id, 1);
1353}
1354EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1355
1356/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01001357 * regulator_put - "free" the regulator source
1358 * @regulator: regulator source
1359 *
1360 * Note: drivers must ensure that all regulator_enable calls made on this
1361 * regulator source are balanced by regulator_disable calls prior to calling
1362 * this function.
1363 */
1364void regulator_put(struct regulator *regulator)
1365{
1366 struct regulator_dev *rdev;
1367
1368 if (regulator == NULL || IS_ERR(regulator))
1369 return;
1370
Liam Girdwood414c70c2008-04-30 15:59:04 +01001371 mutex_lock(&regulator_list_mutex);
1372 rdev = regulator->rdev;
1373
Mark Brown5de70512011-06-19 13:33:16 +01001374 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001375
Liam Girdwood414c70c2008-04-30 15:59:04 +01001376 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001377 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001378 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Mark Brown5de70512011-06-19 13:33:16 +01001379 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001380 list_del(&regulator->list);
1381 kfree(regulator);
1382
Mark Brown5ffbd132009-07-21 16:00:23 +01001383 rdev->open_count--;
1384 rdev->exclusive = 0;
1385
Liam Girdwood414c70c2008-04-30 15:59:04 +01001386 module_put(rdev->owner);
1387 mutex_unlock(&regulator_list_mutex);
1388}
1389EXPORT_SYMBOL_GPL(regulator_put);
1390
Mark Brownd5ad34f2012-01-20 20:09:18 +00001391static int devm_regulator_match(struct device *dev, void *res, void *data)
1392{
1393 struct regulator **r = res;
1394 if (!r || !*r) {
1395 WARN_ON(!r || !*r);
1396 return 0;
1397 }
1398 return *r == data;
1399}
1400
1401/**
1402 * devm_regulator_put - Resource managed regulator_put()
1403 * @regulator: regulator to free
1404 *
1405 * Deallocate a regulator allocated with devm_regulator_get(). Normally
1406 * this function will not need to be called and the resource management
1407 * code will ensure that the resource is freed.
1408 */
1409void devm_regulator_put(struct regulator *regulator)
1410{
1411 int rc;
1412
Mark Brown361ff502012-05-07 14:14:30 +01001413 rc = devres_release(regulator->dev, devm_regulator_release,
Mark Brownd5ad34f2012-01-20 20:09:18 +00001414 devm_regulator_match, regulator);
Mark Brown230a5a1c2012-06-15 18:25:08 +01001415 if (rc != 0)
Mark Brown968c2c12012-05-07 11:34:52 +01001416 WARN_ON(rc);
Mark Brownd5ad34f2012-01-20 20:09:18 +00001417}
1418EXPORT_SYMBOL_GPL(devm_regulator_put);
1419
Mark Brown5c5659d2012-06-27 13:21:26 +01001420static int _regulator_do_enable(struct regulator_dev *rdev)
1421{
1422 int ret, delay;
1423
1424 /* Query before enabling in case configuration dependent. */
1425 ret = _regulator_get_enable_time(rdev);
1426 if (ret >= 0) {
1427 delay = ret;
1428 } else {
1429 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1430 delay = 0;
1431 }
1432
1433 trace_regulator_enable(rdev_get_name(rdev));
1434
Mark Brown65f73502012-06-27 14:14:38 +01001435 if (rdev->ena_gpio) {
1436 gpio_set_value_cansleep(rdev->ena_gpio,
1437 !rdev->ena_gpio_invert);
1438 rdev->ena_gpio_state = 1;
1439 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001440 ret = rdev->desc->ops->enable(rdev);
1441 if (ret < 0)
1442 return ret;
1443 } else {
1444 return -EINVAL;
1445 }
1446
1447 /* Allow the regulator to ramp; it would be useful to extend
1448 * this for bulk operations so that the regulators can ramp
1449 * together. */
1450 trace_regulator_enable_delay(rdev_get_name(rdev));
1451
1452 if (delay >= 1000) {
1453 mdelay(delay / 1000);
1454 udelay(delay % 1000);
1455 } else if (delay) {
1456 udelay(delay);
1457 }
1458
1459 trace_regulator_enable_complete(rdev_get_name(rdev));
1460
1461 return 0;
1462}
1463
Liam Girdwood414c70c2008-04-30 15:59:04 +01001464/* locks held by regulator_enable() */
1465static int _regulator_enable(struct regulator_dev *rdev)
1466{
Mark Brown5c5659d2012-06-27 13:21:26 +01001467 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001468
Liam Girdwood414c70c2008-04-30 15:59:04 +01001469 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001470 if (rdev->constraints &&
1471 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1472 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001473
Mark Brown9a2372f2009-08-03 18:49:57 +01001474 if (rdev->use_count == 0) {
1475 /* The regulator may on if it's not switchable or left on */
1476 ret = _regulator_is_enabled(rdev);
1477 if (ret == -EINVAL || ret == 0) {
1478 if (!_regulator_can_change_status(rdev))
1479 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001480
Mark Brown5c5659d2012-06-27 13:21:26 +01001481 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001482 if (ret < 0)
1483 return ret;
1484
Linus Walleija7433cf2009-08-26 12:54:04 +02001485 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001486 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001487 return ret;
1488 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001489 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001490 }
1491
Mark Brown9a2372f2009-08-03 18:49:57 +01001492 rdev->use_count++;
1493
1494 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001495}
1496
1497/**
1498 * regulator_enable - enable regulator output
1499 * @regulator: regulator source
1500 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001501 * Request that the regulator be enabled with the regulator output at
1502 * the predefined voltage or current value. Calls to regulator_enable()
1503 * must be balanced with calls to regulator_disable().
1504 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001505 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001506 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001507 */
1508int regulator_enable(struct regulator *regulator)
1509{
David Brownell412aec62008-11-16 11:44:46 -08001510 struct regulator_dev *rdev = regulator->rdev;
1511 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001512
Mark Brown6492bc12012-04-19 13:19:07 +01001513 if (regulator->always_on)
1514 return 0;
1515
Mark Brown3801b862011-06-09 16:22:22 +01001516 if (rdev->supply) {
1517 ret = regulator_enable(rdev->supply);
1518 if (ret != 0)
1519 return ret;
1520 }
1521
David Brownell412aec62008-11-16 11:44:46 -08001522 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001523 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001524 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001525
Heiko Stübnerd1685e42011-10-14 18:00:29 +02001526 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01001527 regulator_disable(rdev->supply);
1528
Liam Girdwood414c70c2008-04-30 15:59:04 +01001529 return ret;
1530}
1531EXPORT_SYMBOL_GPL(regulator_enable);
1532
Mark Brown5c5659d2012-06-27 13:21:26 +01001533static int _regulator_do_disable(struct regulator_dev *rdev)
1534{
1535 int ret;
1536
1537 trace_regulator_disable(rdev_get_name(rdev));
1538
1539 if (rdev->ena_gpio) {
1540 gpio_set_value_cansleep(rdev->ena_gpio,
1541 rdev->ena_gpio_invert);
1542 rdev->ena_gpio_state = 0;
1543
1544 } else if (rdev->desc->ops->disable) {
1545 ret = rdev->desc->ops->disable(rdev);
1546 if (ret != 0)
1547 return ret;
1548 }
1549
1550 trace_regulator_disable_complete(rdev_get_name(rdev));
1551
1552 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1553 NULL);
1554 return 0;
1555}
1556
Liam Girdwood414c70c2008-04-30 15:59:04 +01001557/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001558static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001559{
1560 int ret = 0;
1561
David Brownellcd94b502009-03-11 16:43:34 -08001562 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001563 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001564 return -EIO;
1565
Liam Girdwood414c70c2008-04-30 15:59:04 +01001566 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001567 if (rdev->use_count == 1 &&
1568 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001569
1570 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01001571 if (_regulator_can_change_status(rdev)) {
1572 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001573 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001574 rdev_err(rdev, "failed to disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001575 return ret;
1576 }
1577 }
1578
Liam Girdwood414c70c2008-04-30 15:59:04 +01001579 rdev->use_count = 0;
1580 } else if (rdev->use_count > 1) {
1581
1582 if (rdev->constraints &&
1583 (rdev->constraints->valid_ops_mask &
1584 REGULATOR_CHANGE_DRMS))
1585 drms_uA_update(rdev);
1586
1587 rdev->use_count--;
1588 }
Mark Brown3801b862011-06-09 16:22:22 +01001589
Liam Girdwood414c70c2008-04-30 15:59:04 +01001590 return ret;
1591}
1592
1593/**
1594 * regulator_disable - disable regulator output
1595 * @regulator: regulator source
1596 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001597 * Disable the regulator output voltage or current. Calls to
1598 * regulator_enable() must be balanced with calls to
1599 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00001600 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001601 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00001602 * devices have it enabled, the regulator device supports disabling and
1603 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001604 */
1605int regulator_disable(struct regulator *regulator)
1606{
David Brownell412aec62008-11-16 11:44:46 -08001607 struct regulator_dev *rdev = regulator->rdev;
1608 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001609
Mark Brown6492bc12012-04-19 13:19:07 +01001610 if (regulator->always_on)
1611 return 0;
1612
David Brownell412aec62008-11-16 11:44:46 -08001613 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001614 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001615 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001616
Mark Brown3801b862011-06-09 16:22:22 +01001617 if (ret == 0 && rdev->supply)
1618 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001619
Liam Girdwood414c70c2008-04-30 15:59:04 +01001620 return ret;
1621}
1622EXPORT_SYMBOL_GPL(regulator_disable);
1623
1624/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001625static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001626{
1627 int ret = 0;
1628
1629 /* force disable */
1630 if (rdev->desc->ops->disable) {
1631 /* ah well, who wants to live forever... */
1632 ret = rdev->desc->ops->disable(rdev);
1633 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001634 rdev_err(rdev, "failed to force disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001635 return ret;
1636 }
1637 /* notify other consumers that power has been forced off */
Mark Brown84b68262009-12-01 21:12:27 +00001638 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
1639 REGULATOR_EVENT_DISABLE, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001640 }
1641
Liam Girdwood414c70c2008-04-30 15:59:04 +01001642 return ret;
1643}
1644
1645/**
1646 * regulator_force_disable - force disable regulator output
1647 * @regulator: regulator source
1648 *
1649 * Forcibly disable the regulator output voltage or current.
1650 * NOTE: this *will* disable the regulator output even if other consumer
1651 * devices have it enabled. This should be used for situations when device
1652 * damage will likely occur if the regulator is not disabled (e.g. over temp).
1653 */
1654int regulator_force_disable(struct regulator *regulator)
1655{
Mark Brown82d15832011-05-09 11:41:02 +02001656 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001657 int ret;
1658
Mark Brown82d15832011-05-09 11:41:02 +02001659 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001660 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01001661 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02001662 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001663
Mark Brown3801b862011-06-09 16:22:22 +01001664 if (rdev->supply)
1665 while (rdev->open_count--)
1666 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001667
Liam Girdwood414c70c2008-04-30 15:59:04 +01001668 return ret;
1669}
1670EXPORT_SYMBOL_GPL(regulator_force_disable);
1671
Mark Brownda07ecd2011-09-11 09:53:50 +01001672static void regulator_disable_work(struct work_struct *work)
1673{
1674 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
1675 disable_work.work);
1676 int count, i, ret;
1677
1678 mutex_lock(&rdev->mutex);
1679
1680 BUG_ON(!rdev->deferred_disables);
1681
1682 count = rdev->deferred_disables;
1683 rdev->deferred_disables = 0;
1684
1685 for (i = 0; i < count; i++) {
1686 ret = _regulator_disable(rdev);
1687 if (ret != 0)
1688 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
1689 }
1690
1691 mutex_unlock(&rdev->mutex);
1692
1693 if (rdev->supply) {
1694 for (i = 0; i < count; i++) {
1695 ret = regulator_disable(rdev->supply);
1696 if (ret != 0) {
1697 rdev_err(rdev,
1698 "Supply disable failed: %d\n", ret);
1699 }
1700 }
1701 }
1702}
1703
1704/**
1705 * regulator_disable_deferred - disable regulator output with delay
1706 * @regulator: regulator source
1707 * @ms: miliseconds until the regulator is disabled
1708 *
1709 * Execute regulator_disable() on the regulator after a delay. This
1710 * is intended for use with devices that require some time to quiesce.
1711 *
1712 * NOTE: this will only disable the regulator output if no other consumer
1713 * devices have it enabled, the regulator device supports disabling and
1714 * machine constraints permit this operation.
1715 */
1716int regulator_disable_deferred(struct regulator *regulator, int ms)
1717{
1718 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01001719 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01001720
Mark Brown6492bc12012-04-19 13:19:07 +01001721 if (regulator->always_on)
1722 return 0;
1723
Mark Brownda07ecd2011-09-11 09:53:50 +01001724 mutex_lock(&rdev->mutex);
1725 rdev->deferred_disables++;
1726 mutex_unlock(&rdev->mutex);
1727
Mark Brownaa598022011-10-03 22:42:43 +01001728 ret = schedule_delayed_work(&rdev->disable_work,
1729 msecs_to_jiffies(ms));
1730 if (ret < 0)
1731 return ret;
1732 else
1733 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01001734}
1735EXPORT_SYMBOL_GPL(regulator_disable_deferred);
1736
Mark Browncd6dffb2012-04-15 12:37:47 +01001737/**
1738 * regulator_is_enabled_regmap - standard is_enabled() for regmap users
1739 *
1740 * @rdev: regulator to operate on
1741 *
1742 * Regulators that use regmap for their register I/O can set the
1743 * enable_reg and enable_mask fields in their descriptor and then use
1744 * this as their is_enabled operation, saving some code.
1745 */
1746int regulator_is_enabled_regmap(struct regulator_dev *rdev)
1747{
1748 unsigned int val;
1749 int ret;
1750
1751 ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val);
1752 if (ret != 0)
1753 return ret;
1754
1755 return (val & rdev->desc->enable_mask) != 0;
1756}
1757EXPORT_SYMBOL_GPL(regulator_is_enabled_regmap);
1758
1759/**
1760 * regulator_enable_regmap - standard enable() for regmap users
1761 *
1762 * @rdev: regulator to operate on
1763 *
1764 * Regulators that use regmap for their register I/O can set the
1765 * enable_reg and enable_mask fields in their descriptor and then use
1766 * this as their enable() operation, saving some code.
1767 */
1768int regulator_enable_regmap(struct regulator_dev *rdev)
1769{
1770 return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
1771 rdev->desc->enable_mask,
1772 rdev->desc->enable_mask);
1773}
1774EXPORT_SYMBOL_GPL(regulator_enable_regmap);
1775
1776/**
1777 * regulator_disable_regmap - standard disable() for regmap users
1778 *
1779 * @rdev: regulator to operate on
1780 *
1781 * Regulators that use regmap for their register I/O can set the
1782 * enable_reg and enable_mask fields in their descriptor and then use
1783 * this as their disable() operation, saving some code.
1784 */
1785int regulator_disable_regmap(struct regulator_dev *rdev)
1786{
1787 return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
1788 rdev->desc->enable_mask, 0);
1789}
1790EXPORT_SYMBOL_GPL(regulator_disable_regmap);
1791
Liam Girdwood414c70c2008-04-30 15:59:04 +01001792static int _regulator_is_enabled(struct regulator_dev *rdev)
1793{
Mark Brown65f73502012-06-27 14:14:38 +01001794 /* A GPIO control always takes precedence */
1795 if (rdev->ena_gpio)
1796 return rdev->ena_gpio_state;
1797
Mark Brown9a7f6a42010-02-11 17:22:45 +00001798 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01001799 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00001800 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001801
Mark Brown93325462009-08-03 18:49:56 +01001802 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001803}
1804
1805/**
1806 * regulator_is_enabled - is the regulator output enabled
1807 * @regulator: regulator source
1808 *
David Brownell412aec62008-11-16 11:44:46 -08001809 * Returns positive if the regulator driver backing the source/client
1810 * has requested that the device be enabled, zero if it hasn't, else a
1811 * negative errno code.
1812 *
1813 * Note that the device backing this regulator handle can have multiple
1814 * users, so it might be enabled even if regulator_enable() was never
1815 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001816 */
1817int regulator_is_enabled(struct regulator *regulator)
1818{
Mark Brown93325462009-08-03 18:49:56 +01001819 int ret;
1820
Mark Brown6492bc12012-04-19 13:19:07 +01001821 if (regulator->always_on)
1822 return 1;
1823
Mark Brown93325462009-08-03 18:49:56 +01001824 mutex_lock(&regulator->rdev->mutex);
1825 ret = _regulator_is_enabled(regulator->rdev);
1826 mutex_unlock(&regulator->rdev->mutex);
1827
1828 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001829}
1830EXPORT_SYMBOL_GPL(regulator_is_enabled);
1831
1832/**
David Brownell4367cfd2009-02-26 11:48:36 -08001833 * regulator_count_voltages - count regulator_list_voltage() selectors
1834 * @regulator: regulator source
1835 *
1836 * Returns number of selectors, or negative errno. Selectors are
1837 * numbered starting at zero, and typically correspond to bitfields
1838 * in hardware registers.
1839 */
1840int regulator_count_voltages(struct regulator *regulator)
1841{
1842 struct regulator_dev *rdev = regulator->rdev;
1843
1844 return rdev->desc->n_voltages ? : -EINVAL;
1845}
1846EXPORT_SYMBOL_GPL(regulator_count_voltages);
1847
1848/**
Mark Brownbca7bbf2012-05-09 21:38:33 +01001849 * regulator_list_voltage_linear - List voltages with simple calculation
1850 *
1851 * @rdev: Regulator device
1852 * @selector: Selector to convert into a voltage
1853 *
1854 * Regulators with a simple linear mapping between voltages and
1855 * selectors can set min_uV and uV_step in the regulator descriptor
1856 * and then use this function as their list_voltage() operation,
1857 */
1858int regulator_list_voltage_linear(struct regulator_dev *rdev,
1859 unsigned int selector)
1860{
1861 if (selector >= rdev->desc->n_voltages)
1862 return -EINVAL;
1863
1864 return rdev->desc->min_uV + (rdev->desc->uV_step * selector);
1865}
1866EXPORT_SYMBOL_GPL(regulator_list_voltage_linear);
1867
1868/**
Axel Lincffc9592012-05-20 10:30:21 +08001869 * regulator_list_voltage_table - List voltages with table based mapping
1870 *
1871 * @rdev: Regulator device
1872 * @selector: Selector to convert into a voltage
1873 *
1874 * Regulators with table based mapping between voltages and
1875 * selectors can set volt_table in the regulator descriptor
1876 * and then use this function as their list_voltage() operation.
1877 */
1878int regulator_list_voltage_table(struct regulator_dev *rdev,
1879 unsigned int selector)
1880{
1881 if (!rdev->desc->volt_table) {
1882 BUG_ON(!rdev->desc->volt_table);
1883 return -EINVAL;
1884 }
1885
1886 if (selector >= rdev->desc->n_voltages)
1887 return -EINVAL;
1888
1889 return rdev->desc->volt_table[selector];
1890}
1891EXPORT_SYMBOL_GPL(regulator_list_voltage_table);
1892
1893/**
David Brownell4367cfd2009-02-26 11:48:36 -08001894 * regulator_list_voltage - enumerate supported voltages
1895 * @regulator: regulator source
1896 * @selector: identify voltage to list
1897 * Context: can sleep
1898 *
1899 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01001900 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08001901 * negative errno.
1902 */
1903int regulator_list_voltage(struct regulator *regulator, unsigned selector)
1904{
1905 struct regulator_dev *rdev = regulator->rdev;
1906 struct regulator_ops *ops = rdev->desc->ops;
1907 int ret;
1908
1909 if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
1910 return -EINVAL;
1911
1912 mutex_lock(&rdev->mutex);
1913 ret = ops->list_voltage(rdev, selector);
1914 mutex_unlock(&rdev->mutex);
1915
1916 if (ret > 0) {
1917 if (ret < rdev->constraints->min_uV)
1918 ret = 0;
1919 else if (ret > rdev->constraints->max_uV)
1920 ret = 0;
1921 }
1922
1923 return ret;
1924}
1925EXPORT_SYMBOL_GPL(regulator_list_voltage);
1926
1927/**
Mark Browna7a1ad92009-07-21 16:00:24 +01001928 * regulator_is_supported_voltage - check if a voltage range can be supported
1929 *
1930 * @regulator: Regulator to check.
1931 * @min_uV: Minimum required voltage in uV.
1932 * @max_uV: Maximum required voltage in uV.
1933 *
1934 * Returns a boolean or a negative error code.
1935 */
1936int regulator_is_supported_voltage(struct regulator *regulator,
1937 int min_uV, int max_uV)
1938{
Mark Brownc5f39392012-07-02 15:00:18 +01001939 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01001940 int i, voltages, ret;
1941
Mark Brownc5f39392012-07-02 15:00:18 +01001942 /* If we can't change voltage check the current voltage */
1943 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
1944 ret = regulator_get_voltage(regulator);
1945 if (ret >= 0)
1946 return (min_uV >= ret && ret <= max_uV);
1947 else
1948 return ret;
1949 }
1950
Mark Browna7a1ad92009-07-21 16:00:24 +01001951 ret = regulator_count_voltages(regulator);
1952 if (ret < 0)
1953 return ret;
1954 voltages = ret;
1955
1956 for (i = 0; i < voltages; i++) {
1957 ret = regulator_list_voltage(regulator, i);
1958
1959 if (ret >= min_uV && ret <= max_uV)
1960 return 1;
1961 }
1962
1963 return 0;
1964}
Mark Browna398eaa2011-12-28 12:48:45 +00001965EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01001966
Mark Brown4ab5b3d2012-04-15 11:23:30 +01001967/**
1968 * regulator_get_voltage_sel_regmap - standard get_voltage_sel for regmap users
1969 *
1970 * @rdev: regulator to operate on
1971 *
1972 * Regulators that use regmap for their register I/O can set the
1973 * vsel_reg and vsel_mask fields in their descriptor and then use this
1974 * as their get_voltage_vsel operation, saving some code.
1975 */
1976int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev)
1977{
1978 unsigned int val;
1979 int ret;
1980
1981 ret = regmap_read(rdev->regmap, rdev->desc->vsel_reg, &val);
1982 if (ret != 0)
1983 return ret;
1984
1985 val &= rdev->desc->vsel_mask;
1986 val >>= ffs(rdev->desc->vsel_mask) - 1;
1987
1988 return val;
1989}
1990EXPORT_SYMBOL_GPL(regulator_get_voltage_sel_regmap);
1991
1992/**
1993 * regulator_set_voltage_sel_regmap - standard set_voltage_sel for regmap users
1994 *
1995 * @rdev: regulator to operate on
1996 * @sel: Selector to set
1997 *
1998 * Regulators that use regmap for their register I/O can set the
1999 * vsel_reg and vsel_mask fields in their descriptor and then use this
2000 * as their set_voltage_vsel operation, saving some code.
2001 */
2002int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel)
2003{
2004 sel <<= ffs(rdev->desc->vsel_mask) - 1;
2005
2006 return regmap_update_bits(rdev->regmap, rdev->desc->vsel_reg,
2007 rdev->desc->vsel_mask, sel);
2008}
2009EXPORT_SYMBOL_GPL(regulator_set_voltage_sel_regmap);
2010
Mark Browne843fc42012-05-09 21:16:06 +01002011/**
2012 * regulator_map_voltage_iterate - map_voltage() based on list_voltage()
2013 *
2014 * @rdev: Regulator to operate on
2015 * @min_uV: Lower bound for voltage
2016 * @max_uV: Upper bound for voltage
2017 *
2018 * Drivers implementing set_voltage_sel() and list_voltage() can use
2019 * this as their map_voltage() operation. It will find a suitable
2020 * voltage by calling list_voltage() until it gets something in bounds
2021 * for the requested voltages.
2022 */
2023int regulator_map_voltage_iterate(struct regulator_dev *rdev,
2024 int min_uV, int max_uV)
2025{
2026 int best_val = INT_MAX;
2027 int selector = 0;
2028 int i, ret;
2029
2030 /* Find the smallest voltage that falls within the specified
2031 * range.
2032 */
2033 for (i = 0; i < rdev->desc->n_voltages; i++) {
2034 ret = rdev->desc->ops->list_voltage(rdev, i);
2035 if (ret < 0)
2036 continue;
2037
2038 if (ret < best_val && ret >= min_uV && ret <= max_uV) {
2039 best_val = ret;
2040 selector = i;
2041 }
2042 }
2043
2044 if (best_val != INT_MAX)
2045 return selector;
2046 else
2047 return -EINVAL;
2048}
2049EXPORT_SYMBOL_GPL(regulator_map_voltage_iterate);
2050
Mark Brownbca7bbf2012-05-09 21:38:33 +01002051/**
2052 * regulator_map_voltage_linear - map_voltage() for simple linear mappings
2053 *
2054 * @rdev: Regulator to operate on
2055 * @min_uV: Lower bound for voltage
2056 * @max_uV: Upper bound for voltage
2057 *
2058 * Drivers providing min_uV and uV_step in their regulator_desc can
2059 * use this as their map_voltage() operation.
2060 */
2061int regulator_map_voltage_linear(struct regulator_dev *rdev,
2062 int min_uV, int max_uV)
2063{
2064 int ret, voltage;
2065
Axel Lin5a6881e2012-06-07 10:05:14 +08002066 /* Allow uV_step to be 0 for fixed voltage */
2067 if (rdev->desc->n_voltages == 1 && rdev->desc->uV_step == 0) {
2068 if (min_uV <= rdev->desc->min_uV && rdev->desc->min_uV <= max_uV)
2069 return 0;
2070 else
2071 return -EINVAL;
2072 }
2073
Mark Brownbca7bbf2012-05-09 21:38:33 +01002074 if (!rdev->desc->uV_step) {
2075 BUG_ON(!rdev->desc->uV_step);
2076 return -EINVAL;
2077 }
2078
Axel Lin0bdc81e2012-06-07 09:52:12 +08002079 if (min_uV < rdev->desc->min_uV)
2080 min_uV = rdev->desc->min_uV;
2081
Axel Linccfcb1c2012-05-14 10:33:37 +08002082 ret = DIV_ROUND_UP(min_uV - rdev->desc->min_uV, rdev->desc->uV_step);
Mark Brownbca7bbf2012-05-09 21:38:33 +01002083 if (ret < 0)
2084 return ret;
2085
2086 /* Map back into a voltage to verify we're still in bounds */
2087 voltage = rdev->desc->ops->list_voltage(rdev, ret);
2088 if (voltage < min_uV || voltage > max_uV)
2089 return -EINVAL;
2090
2091 return ret;
2092}
2093EXPORT_SYMBOL_GPL(regulator_map_voltage_linear);
2094
Mark Brown75790252010-12-12 14:25:50 +00002095static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2096 int min_uV, int max_uV)
2097{
2098 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002099 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002100 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002101 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002102 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002103
2104 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2105
Mark Brownbf5892a2011-05-08 22:13:37 +01002106 min_uV += rdev->constraints->uV_offset;
2107 max_uV += rdev->constraints->uV_offset;
2108
Axel Lineba41a52012-04-04 10:32:10 +08002109 /*
2110 * If we can't obtain the old selector there is not enough
2111 * info to call set_voltage_time_sel().
2112 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002113 if (_regulator_is_enabled(rdev) &&
2114 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002115 rdev->desc->ops->get_voltage_sel) {
2116 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2117 if (old_selector < 0)
2118 return old_selector;
2119 }
2120
Mark Brown75790252010-12-12 14:25:50 +00002121 if (rdev->desc->ops->set_voltage) {
2122 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
2123 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002124
2125 if (ret >= 0) {
2126 if (rdev->desc->ops->list_voltage)
2127 best_val = rdev->desc->ops->list_voltage(rdev,
2128 selector);
2129 else
2130 best_val = _regulator_get_voltage(rdev);
2131 }
2132
Mark Browne8eef822010-12-12 14:36:17 +00002133 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002134 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002135 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2136 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002137 } else {
2138 if (rdev->desc->ops->list_voltage ==
2139 regulator_list_voltage_linear)
2140 ret = regulator_map_voltage_linear(rdev,
2141 min_uV, max_uV);
2142 else
2143 ret = regulator_map_voltage_iterate(rdev,
2144 min_uV, max_uV);
2145 }
Mark Browne8eef822010-12-12 14:36:17 +00002146
Mark Browne843fc42012-05-09 21:16:06 +01002147 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002148 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2149 if (min_uV <= best_val && max_uV >= best_val) {
2150 selector = ret;
2151 ret = rdev->desc->ops->set_voltage_sel(rdev,
2152 ret);
2153 } else {
2154 ret = -EINVAL;
2155 }
Mark Browne8eef822010-12-12 14:36:17 +00002156 }
Mark Brown75790252010-12-12 14:25:50 +00002157 } else {
2158 ret = -EINVAL;
2159 }
2160
Axel Lineba41a52012-04-04 10:32:10 +08002161 /* Call set_voltage_time_sel if successfully obtained old_selector */
Mark Brown5aff3a82012-06-26 11:16:58 +01002162 if (ret == 0 && _regulator_is_enabled(rdev) && old_selector >= 0 &&
Axel Lineba41a52012-04-04 10:32:10 +08002163 rdev->desc->ops->set_voltage_time_sel) {
2164
2165 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2166 old_selector, selector);
2167 if (delay < 0) {
2168 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2169 delay);
2170 delay = 0;
2171 }
Axel Lineba41a52012-04-04 10:32:10 +08002172
Philip Rakity8b96de32012-06-14 15:07:56 -07002173 /* Insert any necessary delays */
2174 if (delay >= 1000) {
2175 mdelay(delay / 1000);
2176 udelay(delay % 1000);
2177 } else if (delay) {
2178 udelay(delay);
2179 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002180 }
2181
Axel Lin2f6c7972012-08-06 23:44:19 +08002182 if (ret == 0 && best_val >= 0) {
2183 unsigned long data = best_val;
2184
Mark Brownded06a52010-12-16 13:59:10 +00002185 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002186 (void *)data);
2187 }
Mark Brownded06a52010-12-16 13:59:10 +00002188
Axel Lineba41a52012-04-04 10:32:10 +08002189 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002190
2191 return ret;
2192}
2193
Mark Browna7a1ad92009-07-21 16:00:24 +01002194/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002195 * regulator_set_voltage - set regulator output voltage
2196 * @regulator: regulator source
2197 * @min_uV: Minimum required voltage in uV
2198 * @max_uV: Maximum acceptable voltage in uV
2199 *
2200 * Sets a voltage regulator to the desired output voltage. This can be set
2201 * during any regulator state. IOW, regulator can be disabled or enabled.
2202 *
2203 * If the regulator is enabled then the voltage will change to the new value
2204 * immediately otherwise if the regulator is disabled the regulator will
2205 * output at the new voltage when enabled.
2206 *
2207 * NOTE: If the regulator is shared between several devices then the lowest
2208 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002209 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002210 * calling this function otherwise this call will fail.
2211 */
2212int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2213{
2214 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002215 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002216
2217 mutex_lock(&rdev->mutex);
2218
Mark Brown95a3c232010-12-16 15:49:37 +00002219 /* If we're setting the same range as last time the change
2220 * should be a noop (some cpufreq implementations use the same
2221 * voltage for multiple frequencies, for example).
2222 */
2223 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2224 goto out;
2225
Liam Girdwood414c70c2008-04-30 15:59:04 +01002226 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002227 if (!rdev->desc->ops->set_voltage &&
2228 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002229 ret = -EINVAL;
2230 goto out;
2231 }
2232
2233 /* constraints check */
2234 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2235 if (ret < 0)
2236 goto out;
2237 regulator->min_uV = min_uV;
2238 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002239
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002240 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2241 if (ret < 0)
2242 goto out;
2243
Mark Brown75790252010-12-12 14:25:50 +00002244 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Mark Brown02fa3ec2010-11-10 14:38:30 +00002245
Liam Girdwood414c70c2008-04-30 15:59:04 +01002246out:
2247 mutex_unlock(&rdev->mutex);
2248 return ret;
2249}
2250EXPORT_SYMBOL_GPL(regulator_set_voltage);
2251
Mark Brown606a2562010-12-16 15:49:36 +00002252/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002253 * regulator_set_voltage_time - get raise/fall time
2254 * @regulator: regulator source
2255 * @old_uV: starting voltage in microvolts
2256 * @new_uV: target voltage in microvolts
2257 *
2258 * Provided with the starting and ending voltage, this function attempts to
2259 * calculate the time in microseconds required to rise or fall to this new
2260 * voltage.
2261 */
2262int regulator_set_voltage_time(struct regulator *regulator,
2263 int old_uV, int new_uV)
2264{
2265 struct regulator_dev *rdev = regulator->rdev;
2266 struct regulator_ops *ops = rdev->desc->ops;
2267 int old_sel = -1;
2268 int new_sel = -1;
2269 int voltage;
2270 int i;
2271
2272 /* Currently requires operations to do this */
2273 if (!ops->list_voltage || !ops->set_voltage_time_sel
2274 || !rdev->desc->n_voltages)
2275 return -EINVAL;
2276
2277 for (i = 0; i < rdev->desc->n_voltages; i++) {
2278 /* We only look for exact voltage matches here */
2279 voltage = regulator_list_voltage(regulator, i);
2280 if (voltage < 0)
2281 return -EINVAL;
2282 if (voltage == 0)
2283 continue;
2284 if (voltage == old_uV)
2285 old_sel = i;
2286 if (voltage == new_uV)
2287 new_sel = i;
2288 }
2289
2290 if (old_sel < 0 || new_sel < 0)
2291 return -EINVAL;
2292
2293 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2294}
2295EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2296
2297/**
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302298 *regulator_set_voltage_time_sel - get raise/fall time
2299 * @regulator: regulator source
2300 * @old_selector: selector for starting voltage
2301 * @new_selector: selector for target voltage
2302 *
2303 * Provided with the starting and target voltage selectors, this function
2304 * returns time in microseconds required to rise or fall to this new voltage
2305 *
Axel Linf11d08c2012-06-19 09:38:45 +08002306 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002307 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302308 */
2309int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2310 unsigned int old_selector,
2311 unsigned int new_selector)
2312{
Axel Lin398715a2012-06-18 10:11:28 +08002313 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002314 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002315
2316 if (rdev->constraints->ramp_delay)
2317 ramp_delay = rdev->constraints->ramp_delay;
2318 else if (rdev->desc->ramp_delay)
2319 ramp_delay = rdev->desc->ramp_delay;
2320
2321 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302322 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002323 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302324 }
Axel Lin398715a2012-06-18 10:11:28 +08002325
Axel Linf11d08c2012-06-19 09:38:45 +08002326 /* sanity check */
2327 if (!rdev->desc->ops->list_voltage)
2328 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002329
Axel Linf11d08c2012-06-19 09:38:45 +08002330 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2331 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2332
2333 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302334}
Mark Brownb19dbf72012-06-23 11:34:20 +01002335EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302336
2337/**
Mark Brown606a2562010-12-16 15:49:36 +00002338 * regulator_sync_voltage - re-apply last regulator output voltage
2339 * @regulator: regulator source
2340 *
2341 * Re-apply the last configured voltage. This is intended to be used
2342 * where some external control source the consumer is cooperating with
2343 * has caused the configured voltage to change.
2344 */
2345int regulator_sync_voltage(struct regulator *regulator)
2346{
2347 struct regulator_dev *rdev = regulator->rdev;
2348 int ret, min_uV, max_uV;
2349
2350 mutex_lock(&rdev->mutex);
2351
2352 if (!rdev->desc->ops->set_voltage &&
2353 !rdev->desc->ops->set_voltage_sel) {
2354 ret = -EINVAL;
2355 goto out;
2356 }
2357
2358 /* This is only going to work if we've had a voltage configured. */
2359 if (!regulator->min_uV && !regulator->max_uV) {
2360 ret = -EINVAL;
2361 goto out;
2362 }
2363
2364 min_uV = regulator->min_uV;
2365 max_uV = regulator->max_uV;
2366
2367 /* This should be a paranoia check... */
2368 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2369 if (ret < 0)
2370 goto out;
2371
2372 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2373 if (ret < 0)
2374 goto out;
2375
2376 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2377
2378out:
2379 mutex_unlock(&rdev->mutex);
2380 return ret;
2381}
2382EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2383
Liam Girdwood414c70c2008-04-30 15:59:04 +01002384static int _regulator_get_voltage(struct regulator_dev *rdev)
2385{
Mark Brownbf5892a2011-05-08 22:13:37 +01002386 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002387
2388 if (rdev->desc->ops->get_voltage_sel) {
2389 sel = rdev->desc->ops->get_voltage_sel(rdev);
2390 if (sel < 0)
2391 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002392 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002393 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002394 ret = rdev->desc->ops->get_voltage(rdev);
Axel Lincb220d12011-05-23 20:08:10 +08002395 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002396 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002397 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002398
Axel Lincb220d12011-05-23 20:08:10 +08002399 if (ret < 0)
2400 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002401 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002402}
2403
2404/**
2405 * regulator_get_voltage - get regulator output voltage
2406 * @regulator: regulator source
2407 *
2408 * This returns the current regulator voltage in uV.
2409 *
2410 * NOTE: If the regulator is disabled it will return the voltage value. This
2411 * function should not be used to determine regulator state.
2412 */
2413int regulator_get_voltage(struct regulator *regulator)
2414{
2415 int ret;
2416
2417 mutex_lock(&regulator->rdev->mutex);
2418
2419 ret = _regulator_get_voltage(regulator->rdev);
2420
2421 mutex_unlock(&regulator->rdev->mutex);
2422
2423 return ret;
2424}
2425EXPORT_SYMBOL_GPL(regulator_get_voltage);
2426
2427/**
2428 * regulator_set_current_limit - set regulator output current limit
2429 * @regulator: regulator source
2430 * @min_uA: Minimuum supported current in uA
2431 * @max_uA: Maximum supported current in uA
2432 *
2433 * Sets current sink to the desired output current. This can be set during
2434 * any regulator state. IOW, regulator can be disabled or enabled.
2435 *
2436 * If the regulator is enabled then the current will change to the new value
2437 * immediately otherwise if the regulator is disabled the regulator will
2438 * output at the new current when enabled.
2439 *
2440 * NOTE: Regulator system constraints must be set for this regulator before
2441 * calling this function otherwise this call will fail.
2442 */
2443int regulator_set_current_limit(struct regulator *regulator,
2444 int min_uA, int max_uA)
2445{
2446 struct regulator_dev *rdev = regulator->rdev;
2447 int ret;
2448
2449 mutex_lock(&rdev->mutex);
2450
2451 /* sanity check */
2452 if (!rdev->desc->ops->set_current_limit) {
2453 ret = -EINVAL;
2454 goto out;
2455 }
2456
2457 /* constraints check */
2458 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2459 if (ret < 0)
2460 goto out;
2461
2462 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2463out:
2464 mutex_unlock(&rdev->mutex);
2465 return ret;
2466}
2467EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2468
2469static int _regulator_get_current_limit(struct regulator_dev *rdev)
2470{
2471 int ret;
2472
2473 mutex_lock(&rdev->mutex);
2474
2475 /* sanity check */
2476 if (!rdev->desc->ops->get_current_limit) {
2477 ret = -EINVAL;
2478 goto out;
2479 }
2480
2481 ret = rdev->desc->ops->get_current_limit(rdev);
2482out:
2483 mutex_unlock(&rdev->mutex);
2484 return ret;
2485}
2486
2487/**
2488 * regulator_get_current_limit - get regulator output current
2489 * @regulator: regulator source
2490 *
2491 * This returns the current supplied by the specified current sink in uA.
2492 *
2493 * NOTE: If the regulator is disabled it will return the current value. This
2494 * function should not be used to determine regulator state.
2495 */
2496int regulator_get_current_limit(struct regulator *regulator)
2497{
2498 return _regulator_get_current_limit(regulator->rdev);
2499}
2500EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2501
2502/**
2503 * regulator_set_mode - set regulator operating mode
2504 * @regulator: regulator source
2505 * @mode: operating mode - one of the REGULATOR_MODE constants
2506 *
2507 * Set regulator operating mode to increase regulator efficiency or improve
2508 * regulation performance.
2509 *
2510 * NOTE: Regulator system constraints must be set for this regulator before
2511 * calling this function otherwise this call will fail.
2512 */
2513int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2514{
2515 struct regulator_dev *rdev = regulator->rdev;
2516 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302517 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002518
2519 mutex_lock(&rdev->mutex);
2520
2521 /* sanity check */
2522 if (!rdev->desc->ops->set_mode) {
2523 ret = -EINVAL;
2524 goto out;
2525 }
2526
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302527 /* return if the same mode is requested */
2528 if (rdev->desc->ops->get_mode) {
2529 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2530 if (regulator_curr_mode == mode) {
2531 ret = 0;
2532 goto out;
2533 }
2534 }
2535
Liam Girdwood414c70c2008-04-30 15:59:04 +01002536 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08002537 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002538 if (ret < 0)
2539 goto out;
2540
2541 ret = rdev->desc->ops->set_mode(rdev, mode);
2542out:
2543 mutex_unlock(&rdev->mutex);
2544 return ret;
2545}
2546EXPORT_SYMBOL_GPL(regulator_set_mode);
2547
2548static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2549{
2550 int ret;
2551
2552 mutex_lock(&rdev->mutex);
2553
2554 /* sanity check */
2555 if (!rdev->desc->ops->get_mode) {
2556 ret = -EINVAL;
2557 goto out;
2558 }
2559
2560 ret = rdev->desc->ops->get_mode(rdev);
2561out:
2562 mutex_unlock(&rdev->mutex);
2563 return ret;
2564}
2565
2566/**
2567 * regulator_get_mode - get regulator operating mode
2568 * @regulator: regulator source
2569 *
2570 * Get the current regulator operating mode.
2571 */
2572unsigned int regulator_get_mode(struct regulator *regulator)
2573{
2574 return _regulator_get_mode(regulator->rdev);
2575}
2576EXPORT_SYMBOL_GPL(regulator_get_mode);
2577
2578/**
2579 * regulator_set_optimum_mode - set regulator optimum operating mode
2580 * @regulator: regulator source
2581 * @uA_load: load current
2582 *
2583 * Notifies the regulator core of a new device load. This is then used by
2584 * DRMS (if enabled by constraints) to set the most efficient regulator
2585 * operating mode for the new regulator loading.
2586 *
2587 * Consumer devices notify their supply regulator of the maximum power
2588 * they will require (can be taken from device datasheet in the power
2589 * consumption tables) when they change operational status and hence power
2590 * state. Examples of operational state changes that can affect power
2591 * consumption are :-
2592 *
2593 * o Device is opened / closed.
2594 * o Device I/O is about to begin or has just finished.
2595 * o Device is idling in between work.
2596 *
2597 * This information is also exported via sysfs to userspace.
2598 *
2599 * DRMS will sum the total requested load on the regulator and change
2600 * to the most efficient operating mode if platform constraints allow.
2601 *
2602 * Returns the new regulator mode or error.
2603 */
2604int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
2605{
2606 struct regulator_dev *rdev = regulator->rdev;
2607 struct regulator *consumer;
Stephen Boydd92d95b62012-07-02 19:21:06 -07002608 int ret, output_uV, input_uV = 0, total_uA_load = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002609 unsigned int mode;
2610
Stephen Boydd92d95b62012-07-02 19:21:06 -07002611 if (rdev->supply)
2612 input_uV = regulator_get_voltage(rdev->supply);
2613
Liam Girdwood414c70c2008-04-30 15:59:04 +01002614 mutex_lock(&rdev->mutex);
2615
Mark Browna4b41482011-05-14 11:19:45 -07002616 /*
2617 * first check to see if we can set modes at all, otherwise just
2618 * tell the consumer everything is OK.
2619 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002620 regulator->uA_load = uA_load;
2621 ret = regulator_check_drms(rdev);
Mark Browna4b41482011-05-14 11:19:45 -07002622 if (ret < 0) {
2623 ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002624 goto out;
Mark Browna4b41482011-05-14 11:19:45 -07002625 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002626
Liam Girdwood414c70c2008-04-30 15:59:04 +01002627 if (!rdev->desc->ops->get_optimum_mode)
2628 goto out;
2629
Mark Browna4b41482011-05-14 11:19:45 -07002630 /*
2631 * we can actually do this so any errors are indicators of
2632 * potential real failure.
2633 */
2634 ret = -EINVAL;
2635
Axel Lin854ccba2012-04-16 18:44:23 +08002636 if (!rdev->desc->ops->set_mode)
2637 goto out;
2638
Liam Girdwood414c70c2008-04-30 15:59:04 +01002639 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002640 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002641 if (output_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002642 rdev_err(rdev, "invalid output voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002643 goto out;
2644 }
2645
Stephen Boydd92d95b62012-07-02 19:21:06 -07002646 /* No supply? Use constraint voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002647 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002648 input_uV = rdev->constraints->input_uV;
2649 if (input_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002650 rdev_err(rdev, "invalid input voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002651 goto out;
2652 }
2653
2654 /* calc total requested load for this regulator */
2655 list_for_each_entry(consumer, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +01002656 total_uA_load += consumer->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002657
2658 mode = rdev->desc->ops->get_optimum_mode(rdev,
2659 input_uV, output_uV,
2660 total_uA_load);
Mark Brown2c608232011-03-30 06:29:12 +09002661 ret = regulator_mode_constrain(rdev, &mode);
David Brownelle5735202008-11-16 11:46:56 -08002662 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002663 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
2664 total_uA_load, input_uV, output_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002665 goto out;
2666 }
2667
2668 ret = rdev->desc->ops->set_mode(rdev, mode);
David Brownelle5735202008-11-16 11:46:56 -08002669 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002670 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002671 goto out;
2672 }
2673 ret = mode;
2674out:
2675 mutex_unlock(&rdev->mutex);
2676 return ret;
2677}
2678EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
2679
2680/**
2681 * regulator_register_notifier - register regulator event notifier
2682 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002683 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002684 *
2685 * Register notifier block to receive regulator events.
2686 */
2687int regulator_register_notifier(struct regulator *regulator,
2688 struct notifier_block *nb)
2689{
2690 return blocking_notifier_chain_register(&regulator->rdev->notifier,
2691 nb);
2692}
2693EXPORT_SYMBOL_GPL(regulator_register_notifier);
2694
2695/**
2696 * regulator_unregister_notifier - unregister regulator event notifier
2697 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002698 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002699 *
2700 * Unregister regulator event notifier block.
2701 */
2702int regulator_unregister_notifier(struct regulator *regulator,
2703 struct notifier_block *nb)
2704{
2705 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
2706 nb);
2707}
2708EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
2709
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002710/* notify regulator consumers and downstream regulator consumers.
2711 * Note mutex must be held by caller.
2712 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002713static void _notifier_call_chain(struct regulator_dev *rdev,
2714 unsigned long event, void *data)
2715{
Liam Girdwood414c70c2008-04-30 15:59:04 +01002716 /* call rdev chain first */
Mark Brownd8493d22012-06-15 19:09:09 +01002717 blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002718}
2719
2720/**
2721 * regulator_bulk_get - get multiple regulator consumers
2722 *
2723 * @dev: Device to supply
2724 * @num_consumers: Number of consumers to register
2725 * @consumers: Configuration of consumers; clients are stored here.
2726 *
2727 * @return 0 on success, an errno on failure.
2728 *
2729 * This helper function allows drivers to get several regulator
2730 * consumers in one operation. If any of the regulators cannot be
2731 * acquired then any regulators that were allocated will be freed
2732 * before returning to the caller.
2733 */
2734int regulator_bulk_get(struct device *dev, int num_consumers,
2735 struct regulator_bulk_data *consumers)
2736{
2737 int i;
2738 int ret;
2739
2740 for (i = 0; i < num_consumers; i++)
2741 consumers[i].consumer = NULL;
2742
2743 for (i = 0; i < num_consumers; i++) {
2744 consumers[i].consumer = regulator_get(dev,
2745 consumers[i].supply);
2746 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002747 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01002748 dev_err(dev, "Failed to get supply '%s': %d\n",
2749 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002750 consumers[i].consumer = NULL;
2751 goto err;
2752 }
2753 }
2754
2755 return 0;
2756
2757err:
Axel Linb29c7692012-02-20 10:32:16 +08002758 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002759 regulator_put(consumers[i].consumer);
2760
2761 return ret;
2762}
2763EXPORT_SYMBOL_GPL(regulator_bulk_get);
2764
Mark Browne6e74032012-01-20 20:10:08 +00002765/**
2766 * devm_regulator_bulk_get - managed get multiple regulator consumers
2767 *
2768 * @dev: Device to supply
2769 * @num_consumers: Number of consumers to register
2770 * @consumers: Configuration of consumers; clients are stored here.
2771 *
2772 * @return 0 on success, an errno on failure.
2773 *
2774 * This helper function allows drivers to get several regulator
2775 * consumers in one operation with management, the regulators will
2776 * automatically be freed when the device is unbound. If any of the
2777 * regulators cannot be acquired then any regulators that were
2778 * allocated will be freed before returning to the caller.
2779 */
2780int devm_regulator_bulk_get(struct device *dev, int num_consumers,
2781 struct regulator_bulk_data *consumers)
2782{
2783 int i;
2784 int ret;
2785
2786 for (i = 0; i < num_consumers; i++)
2787 consumers[i].consumer = NULL;
2788
2789 for (i = 0; i < num_consumers; i++) {
2790 consumers[i].consumer = devm_regulator_get(dev,
2791 consumers[i].supply);
2792 if (IS_ERR(consumers[i].consumer)) {
2793 ret = PTR_ERR(consumers[i].consumer);
2794 dev_err(dev, "Failed to get supply '%s': %d\n",
2795 consumers[i].supply, ret);
2796 consumers[i].consumer = NULL;
2797 goto err;
2798 }
2799 }
2800
2801 return 0;
2802
2803err:
2804 for (i = 0; i < num_consumers && consumers[i].consumer; i++)
2805 devm_regulator_put(consumers[i].consumer);
2806
2807 return ret;
2808}
2809EXPORT_SYMBOL_GPL(devm_regulator_bulk_get);
2810
Mark Brownf21e0e82011-05-24 08:12:40 +08002811static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
2812{
2813 struct regulator_bulk_data *bulk = data;
2814
2815 bulk->ret = regulator_enable(bulk->consumer);
2816}
2817
Liam Girdwood414c70c2008-04-30 15:59:04 +01002818/**
2819 * regulator_bulk_enable - enable multiple regulator consumers
2820 *
2821 * @num_consumers: Number of consumers
2822 * @consumers: Consumer data; clients are stored here.
2823 * @return 0 on success, an errno on failure
2824 *
2825 * This convenience API allows consumers to enable multiple regulator
2826 * clients in a single API call. If any consumers cannot be enabled
2827 * then any others that were enabled will be disabled again prior to
2828 * return.
2829 */
2830int regulator_bulk_enable(int num_consumers,
2831 struct regulator_bulk_data *consumers)
2832{
Dan Williams2955b472012-07-09 19:33:25 -07002833 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002834 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08002835 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002836
Mark Brown6492bc12012-04-19 13:19:07 +01002837 for (i = 0; i < num_consumers; i++) {
2838 if (consumers[i].consumer->always_on)
2839 consumers[i].ret = 0;
2840 else
2841 async_schedule_domain(regulator_bulk_enable_async,
2842 &consumers[i], &async_domain);
2843 }
Mark Brownf21e0e82011-05-24 08:12:40 +08002844
2845 async_synchronize_full_domain(&async_domain);
2846
2847 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002848 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08002849 if (consumers[i].ret != 0) {
2850 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002851 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08002852 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002853 }
2854
2855 return 0;
2856
2857err:
Axel Linb29c7692012-02-20 10:32:16 +08002858 pr_err("Failed to enable %s: %d\n", consumers[i].supply, ret);
2859 while (--i >= 0)
2860 regulator_disable(consumers[i].consumer);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002861
2862 return ret;
2863}
2864EXPORT_SYMBOL_GPL(regulator_bulk_enable);
2865
2866/**
2867 * regulator_bulk_disable - disable multiple regulator consumers
2868 *
2869 * @num_consumers: Number of consumers
2870 * @consumers: Consumer data; clients are stored here.
2871 * @return 0 on success, an errno on failure
2872 *
2873 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01002874 * clients in a single API call. If any consumers cannot be disabled
2875 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01002876 * return.
2877 */
2878int regulator_bulk_disable(int num_consumers,
2879 struct regulator_bulk_data *consumers)
2880{
2881 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01002882 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002883
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01002884 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002885 ret = regulator_disable(consumers[i].consumer);
2886 if (ret != 0)
2887 goto err;
2888 }
2889
2890 return 0;
2891
2892err:
Joe Perches5da84fd2010-11-30 05:53:48 -08002893 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01002894 for (++i; i < num_consumers; ++i) {
2895 r = regulator_enable(consumers[i].consumer);
2896 if (r != 0)
2897 pr_err("Failed to reename %s: %d\n",
2898 consumers[i].supply, r);
2899 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002900
2901 return ret;
2902}
2903EXPORT_SYMBOL_GPL(regulator_bulk_disable);
2904
2905/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09002906 * regulator_bulk_force_disable - force disable multiple regulator consumers
2907 *
2908 * @num_consumers: Number of consumers
2909 * @consumers: Consumer data; clients are stored here.
2910 * @return 0 on success, an errno on failure
2911 *
2912 * This convenience API allows consumers to forcibly disable multiple regulator
2913 * clients in a single API call.
2914 * NOTE: This should be used for situations when device damage will
2915 * likely occur if the regulators are not disabled (e.g. over temp).
2916 * Although regulator_force_disable function call for some consumers can
2917 * return error numbers, the function is called for all consumers.
2918 */
2919int regulator_bulk_force_disable(int num_consumers,
2920 struct regulator_bulk_data *consumers)
2921{
2922 int i;
2923 int ret;
2924
2925 for (i = 0; i < num_consumers; i++)
2926 consumers[i].ret =
2927 regulator_force_disable(consumers[i].consumer);
2928
2929 for (i = 0; i < num_consumers; i++) {
2930 if (consumers[i].ret != 0) {
2931 ret = consumers[i].ret;
2932 goto out;
2933 }
2934 }
2935
2936 return 0;
2937out:
2938 return ret;
2939}
2940EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
2941
2942/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002943 * regulator_bulk_free - free multiple regulator consumers
2944 *
2945 * @num_consumers: Number of consumers
2946 * @consumers: Consumer data; clients are stored here.
2947 *
2948 * This convenience API allows consumers to free multiple regulator
2949 * clients in a single API call.
2950 */
2951void regulator_bulk_free(int num_consumers,
2952 struct regulator_bulk_data *consumers)
2953{
2954 int i;
2955
2956 for (i = 0; i < num_consumers; i++) {
2957 regulator_put(consumers[i].consumer);
2958 consumers[i].consumer = NULL;
2959 }
2960}
2961EXPORT_SYMBOL_GPL(regulator_bulk_free);
2962
2963/**
2964 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00002965 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01002966 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00002967 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002968 *
2969 * Called by regulator drivers to notify clients a regulator event has
2970 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002971 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002972 */
2973int regulator_notifier_call_chain(struct regulator_dev *rdev,
2974 unsigned long event, void *data)
2975{
2976 _notifier_call_chain(rdev, event, data);
2977 return NOTIFY_DONE;
2978
2979}
2980EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
2981
Mark Brownbe721972009-08-04 20:09:52 +02002982/**
2983 * regulator_mode_to_status - convert a regulator mode into a status
2984 *
2985 * @mode: Mode to convert
2986 *
2987 * Convert a regulator mode into a status.
2988 */
2989int regulator_mode_to_status(unsigned int mode)
2990{
2991 switch (mode) {
2992 case REGULATOR_MODE_FAST:
2993 return REGULATOR_STATUS_FAST;
2994 case REGULATOR_MODE_NORMAL:
2995 return REGULATOR_STATUS_NORMAL;
2996 case REGULATOR_MODE_IDLE:
2997 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01002998 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02002999 return REGULATOR_STATUS_STANDBY;
3000 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003001 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003002 }
3003}
3004EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3005
David Brownell7ad68e22008-11-11 17:39:02 -08003006/*
3007 * To avoid cluttering sysfs (and memory) with useless state, only
3008 * create attributes that can be meaningfully displayed.
3009 */
3010static int add_regulator_attributes(struct regulator_dev *rdev)
3011{
3012 struct device *dev = &rdev->dev;
3013 struct regulator_ops *ops = rdev->desc->ops;
3014 int status = 0;
3015
3016 /* some attributes need specific methods to be displayed */
Mark Brown4c788992011-11-02 11:39:09 +00003017 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3018 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0)) {
David Brownell7ad68e22008-11-11 17:39:02 -08003019 status = device_create_file(dev, &dev_attr_microvolts);
3020 if (status < 0)
3021 return status;
3022 }
3023 if (ops->get_current_limit) {
3024 status = device_create_file(dev, &dev_attr_microamps);
3025 if (status < 0)
3026 return status;
3027 }
3028 if (ops->get_mode) {
3029 status = device_create_file(dev, &dev_attr_opmode);
3030 if (status < 0)
3031 return status;
3032 }
3033 if (ops->is_enabled) {
3034 status = device_create_file(dev, &dev_attr_state);
3035 if (status < 0)
3036 return status;
3037 }
David Brownell853116a2009-01-14 23:03:17 -08003038 if (ops->get_status) {
3039 status = device_create_file(dev, &dev_attr_status);
3040 if (status < 0)
3041 return status;
3042 }
David Brownell7ad68e22008-11-11 17:39:02 -08003043
3044 /* some attributes are type-specific */
3045 if (rdev->desc->type == REGULATOR_CURRENT) {
3046 status = device_create_file(dev, &dev_attr_requested_microamps);
3047 if (status < 0)
3048 return status;
3049 }
3050
3051 /* all the other attributes exist to support constraints;
3052 * don't show them if there are no constraints, or if the
3053 * relevant supporting methods are missing.
3054 */
3055 if (!rdev->constraints)
3056 return status;
3057
3058 /* constraints need specific supporting methods */
Mark Browne8eef822010-12-12 14:36:17 +00003059 if (ops->set_voltage || ops->set_voltage_sel) {
David Brownell7ad68e22008-11-11 17:39:02 -08003060 status = device_create_file(dev, &dev_attr_min_microvolts);
3061 if (status < 0)
3062 return status;
3063 status = device_create_file(dev, &dev_attr_max_microvolts);
3064 if (status < 0)
3065 return status;
3066 }
3067 if (ops->set_current_limit) {
3068 status = device_create_file(dev, &dev_attr_min_microamps);
3069 if (status < 0)
3070 return status;
3071 status = device_create_file(dev, &dev_attr_max_microamps);
3072 if (status < 0)
3073 return status;
3074 }
3075
David Brownell7ad68e22008-11-11 17:39:02 -08003076 status = device_create_file(dev, &dev_attr_suspend_standby_state);
3077 if (status < 0)
3078 return status;
3079 status = device_create_file(dev, &dev_attr_suspend_mem_state);
3080 if (status < 0)
3081 return status;
3082 status = device_create_file(dev, &dev_attr_suspend_disk_state);
3083 if (status < 0)
3084 return status;
3085
3086 if (ops->set_suspend_voltage) {
3087 status = device_create_file(dev,
3088 &dev_attr_suspend_standby_microvolts);
3089 if (status < 0)
3090 return status;
3091 status = device_create_file(dev,
3092 &dev_attr_suspend_mem_microvolts);
3093 if (status < 0)
3094 return status;
3095 status = device_create_file(dev,
3096 &dev_attr_suspend_disk_microvolts);
3097 if (status < 0)
3098 return status;
3099 }
3100
3101 if (ops->set_suspend_mode) {
3102 status = device_create_file(dev,
3103 &dev_attr_suspend_standby_mode);
3104 if (status < 0)
3105 return status;
3106 status = device_create_file(dev,
3107 &dev_attr_suspend_mem_mode);
3108 if (status < 0)
3109 return status;
3110 status = device_create_file(dev,
3111 &dev_attr_suspend_disk_mode);
3112 if (status < 0)
3113 return status;
3114 }
3115
3116 return status;
3117}
3118
Mark Brown1130e5b2010-12-21 23:49:31 +00003119static void rdev_init_debugfs(struct regulator_dev *rdev)
3120{
Mark Brown1130e5b2010-12-21 23:49:31 +00003121 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003122 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003123 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003124 return;
3125 }
3126
3127 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3128 &rdev->use_count);
3129 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3130 &rdev->open_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003131}
3132
Liam Girdwood414c70c2008-04-30 15:59:04 +01003133/**
3134 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003135 * @regulator_desc: regulator to register
Mark Brownc1727082012-04-04 00:50:22 +01003136 * @config: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003137 *
3138 * Called by regulator drivers to register a regulator.
3139 * Returns 0 on success.
3140 */
Mark Brown65f26842012-04-03 20:46:53 +01003141struct regulator_dev *
3142regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc1727082012-04-04 00:50:22 +01003143 const struct regulator_config *config)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003144{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003145 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003146 const struct regulator_init_data *init_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003147 static atomic_t regulator_no = ATOMIC_INIT(0);
3148 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003149 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003150 int ret, i;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303151 const char *supply = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003152
Mark Brownc1727082012-04-04 00:50:22 +01003153 if (regulator_desc == NULL || config == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003154 return ERR_PTR(-EINVAL);
3155
Mark Brown32c8fad2012-04-11 10:19:12 +01003156 dev = config->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003157 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003158
Liam Girdwood414c70c2008-04-30 15:59:04 +01003159 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3160 return ERR_PTR(-EINVAL);
3161
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003162 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3163 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003164 return ERR_PTR(-EINVAL);
3165
Mark Brown476c2d82010-12-10 17:28:07 +00003166 /* Only one of each should be implemented */
3167 WARN_ON(regulator_desc->ops->get_voltage &&
3168 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003169 WARN_ON(regulator_desc->ops->set_voltage &&
3170 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003171
3172 /* If we're using selectors we must implement list_voltage. */
3173 if (regulator_desc->ops->get_voltage_sel &&
3174 !regulator_desc->ops->list_voltage) {
3175 return ERR_PTR(-EINVAL);
3176 }
Mark Browne8eef822010-12-12 14:36:17 +00003177 if (regulator_desc->ops->set_voltage_sel &&
3178 !regulator_desc->ops->list_voltage) {
3179 return ERR_PTR(-EINVAL);
3180 }
Mark Brown476c2d82010-12-10 17:28:07 +00003181
Mark Brownc1727082012-04-04 00:50:22 +01003182 init_data = config->init_data;
3183
Liam Girdwood414c70c2008-04-30 15:59:04 +01003184 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3185 if (rdev == NULL)
3186 return ERR_PTR(-ENOMEM);
3187
3188 mutex_lock(&regulator_list_mutex);
3189
3190 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003191 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003192 rdev->owner = regulator_desc->owner;
3193 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003194 if (config->regmap)
3195 rdev->regmap = config->regmap;
3196 else
3197 rdev->regmap = dev_get_regmap(dev, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003198 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003199 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003200 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003201 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003202
Liam Girdwooda5766f12008-10-10 13:22:20 +01003203 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003204 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003205 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003206 if (ret < 0)
3207 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003208 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003209
Liam Girdwooda5766f12008-10-10 13:22:20 +01003210 /* register with sysfs */
3211 rdev->dev.class = &regulator_class;
Mark Brownc1727082012-04-04 00:50:22 +01003212 rdev->dev.of_node = config->of_node;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003213 rdev->dev.parent = dev;
Kay Sievers812460a2008-11-02 03:55:10 +01003214 dev_set_name(&rdev->dev, "regulator.%d",
3215 atomic_inc_return(&regulator_no) - 1);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003216 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003217 if (ret != 0) {
3218 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003219 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003220 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003221
3222 dev_set_drvdata(&rdev->dev, rdev);
3223
Mark Brown65f73502012-06-27 14:14:38 +01003224 if (config->ena_gpio) {
3225 ret = gpio_request_one(config->ena_gpio,
3226 GPIOF_DIR_OUT | config->ena_gpio_flags,
3227 rdev_get_name(rdev));
3228 if (ret != 0) {
3229 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3230 config->ena_gpio, ret);
3231 goto clean;
3232 }
3233
3234 rdev->ena_gpio = config->ena_gpio;
3235 rdev->ena_gpio_invert = config->ena_gpio_invert;
3236
3237 if (config->ena_gpio_flags & GPIOF_OUT_INIT_HIGH)
3238 rdev->ena_gpio_state = 1;
3239
3240 if (rdev->ena_gpio_invert)
3241 rdev->ena_gpio_state = !rdev->ena_gpio_state;
3242 }
3243
Mike Rapoport74f544c2008-11-25 14:53:53 +02003244 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003245 if (init_data)
3246 constraints = &init_data->constraints;
3247
3248 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003249 if (ret < 0)
3250 goto scrub;
3251
David Brownell7ad68e22008-11-11 17:39:02 -08003252 /* add attributes supported by this regulator */
3253 ret = add_regulator_attributes(rdev);
3254 if (ret < 0)
3255 goto scrub;
3256
Mark Brown9a8f5e02011-11-29 18:11:19 +00003257 if (init_data && init_data->supply_regulator)
Rajendra Nayak69511a42011-11-18 16:47:20 +05303258 supply = init_data->supply_regulator;
3259 else if (regulator_desc->supply_name)
3260 supply = regulator_desc->supply_name;
3261
3262 if (supply) {
Mark Brown0178f3e2010-04-26 15:18:14 +01003263 struct regulator_dev *r;
Mark Brown0178f3e2010-04-26 15:18:14 +01003264
Mark Brown6d191a52012-03-29 14:19:02 +01003265 r = regulator_dev_lookup(dev, supply, &ret);
Mark Brown0178f3e2010-04-26 15:18:14 +01003266
Rajendra Nayak69511a42011-11-18 16:47:20 +05303267 if (!r) {
3268 dev_err(dev, "Failed to find supply %s\n", supply);
Mark Brown04bf3012012-03-11 13:07:56 +00003269 ret = -EPROBE_DEFER;
Mark Brown0178f3e2010-04-26 15:18:14 +01003270 goto scrub;
3271 }
3272
3273 ret = set_supply(rdev, r);
3274 if (ret < 0)
3275 goto scrub;
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303276
3277 /* Enable supply if rail is enabled */
Mark Brownb1a86832012-05-14 00:40:14 +01003278 if (_regulator_is_enabled(rdev)) {
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303279 ret = regulator_enable(rdev->supply);
3280 if (ret < 0)
3281 goto scrub;
3282 }
Mark Brown0178f3e2010-04-26 15:18:14 +01003283 }
3284
Liam Girdwooda5766f12008-10-10 13:22:20 +01003285 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003286 if (init_data) {
3287 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3288 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003289 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003290 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003291 if (ret < 0) {
3292 dev_err(dev, "Failed to set supply %s\n",
3293 init_data->consumer_supplies[i].supply);
3294 goto unset_supplies;
3295 }
Mark Brown23c2f042011-02-24 17:39:09 +00003296 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003297 }
3298
3299 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003300
3301 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003302out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003303 mutex_unlock(&regulator_list_mutex);
3304 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003305
Jani Nikulad4033b52010-04-29 10:55:11 +03003306unset_supplies:
3307 unset_regulator_supplies(rdev);
3308
David Brownell4fca9542008-11-11 17:38:53 -08003309scrub:
Mark Browne81dba852012-05-13 18:35:56 +01003310 if (rdev->supply)
3311 regulator_put(rdev->supply);
Mark Brown65f73502012-06-27 14:14:38 +01003312 if (rdev->ena_gpio)
3313 gpio_free(rdev->ena_gpio);
Axel Lin1a6958e72011-07-15 10:50:43 +08003314 kfree(rdev->constraints);
David Brownell4fca9542008-11-11 17:38:53 -08003315 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003316 /* device core frees rdev */
3317 rdev = ERR_PTR(ret);
3318 goto out;
3319
David Brownell4fca9542008-11-11 17:38:53 -08003320clean:
3321 kfree(rdev);
3322 rdev = ERR_PTR(ret);
3323 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003324}
3325EXPORT_SYMBOL_GPL(regulator_register);
3326
3327/**
3328 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003329 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003330 *
3331 * Called by regulator drivers to unregister a regulator.
3332 */
3333void regulator_unregister(struct regulator_dev *rdev)
3334{
3335 if (rdev == NULL)
3336 return;
3337
Mark Browne032b372012-03-28 21:17:55 +01003338 if (rdev->supply)
3339 regulator_put(rdev->supply);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003340 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003341 debugfs_remove_recursive(rdev->debugfs);
Mark Brownda07ecd2011-09-11 09:53:50 +01003342 flush_work_sync(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003343 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003344 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003345 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003346 kfree(rdev->constraints);
Mark Brown65f73502012-06-27 14:14:38 +01003347 if (rdev->ena_gpio)
3348 gpio_free(rdev->ena_gpio);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003349 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003350 mutex_unlock(&regulator_list_mutex);
3351}
3352EXPORT_SYMBOL_GPL(regulator_unregister);
3353
3354/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003355 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003356 * @state: system suspend state
3357 *
3358 * Configure each regulator with it's suspend operating parameters for state.
3359 * This will usually be called by machine suspend code prior to supending.
3360 */
3361int regulator_suspend_prepare(suspend_state_t state)
3362{
3363 struct regulator_dev *rdev;
3364 int ret = 0;
3365
3366 /* ON is handled by regulator active state */
3367 if (state == PM_SUSPEND_ON)
3368 return -EINVAL;
3369
3370 mutex_lock(&regulator_list_mutex);
3371 list_for_each_entry(rdev, &regulator_list, list) {
3372
3373 mutex_lock(&rdev->mutex);
3374 ret = suspend_prepare(rdev, state);
3375 mutex_unlock(&rdev->mutex);
3376
3377 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003378 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003379 goto out;
3380 }
3381 }
3382out:
3383 mutex_unlock(&regulator_list_mutex);
3384 return ret;
3385}
3386EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3387
3388/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003389 * regulator_suspend_finish - resume regulators from system wide suspend
3390 *
3391 * Turn on regulators that might be turned off by regulator_suspend_prepare
3392 * and that should be turned on according to the regulators properties.
3393 */
3394int regulator_suspend_finish(void)
3395{
3396 struct regulator_dev *rdev;
3397 int ret = 0, error;
3398
3399 mutex_lock(&regulator_list_mutex);
3400 list_for_each_entry(rdev, &regulator_list, list) {
3401 struct regulator_ops *ops = rdev->desc->ops;
3402
3403 mutex_lock(&rdev->mutex);
3404 if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
3405 ops->enable) {
3406 error = ops->enable(rdev);
3407 if (error)
3408 ret = error;
3409 } else {
3410 if (!has_full_constraints)
3411 goto unlock;
3412 if (!ops->disable)
3413 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003414 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003415 goto unlock;
3416
3417 error = ops->disable(rdev);
3418 if (error)
3419 ret = error;
3420 }
3421unlock:
3422 mutex_unlock(&rdev->mutex);
3423 }
3424 mutex_unlock(&regulator_list_mutex);
3425 return ret;
3426}
3427EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3428
3429/**
Mark Brownca725562009-03-16 19:36:34 +00003430 * regulator_has_full_constraints - the system has fully specified constraints
3431 *
3432 * Calling this function will cause the regulator API to disable all
3433 * regulators which have a zero use count and don't have an always_on
3434 * constraint in a late_initcall.
3435 *
3436 * The intention is that this will become the default behaviour in a
3437 * future kernel release so users are encouraged to use this facility
3438 * now.
3439 */
3440void regulator_has_full_constraints(void)
3441{
3442 has_full_constraints = 1;
3443}
3444EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3445
3446/**
Mark Brown688fe992010-10-05 19:18:32 -07003447 * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
3448 *
3449 * Calling this function will cause the regulator API to provide a
3450 * dummy regulator to consumers if no physical regulator is found,
3451 * allowing most consumers to proceed as though a regulator were
3452 * configured. This allows systems such as those with software
3453 * controllable regulators for the CPU core only to be brought up more
3454 * readily.
3455 */
3456void regulator_use_dummy_regulator(void)
3457{
3458 board_wants_dummy_regulator = true;
3459}
3460EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
3461
3462/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003463 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003464 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003465 *
3466 * Get rdev regulator driver private data. This call can be used in the
3467 * regulator driver context.
3468 */
3469void *rdev_get_drvdata(struct regulator_dev *rdev)
3470{
3471 return rdev->reg_data;
3472}
3473EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3474
3475/**
3476 * regulator_get_drvdata - get regulator driver data
3477 * @regulator: regulator
3478 *
3479 * Get regulator driver private data. This call can be used in the consumer
3480 * driver context when non API regulator specific functions need to be called.
3481 */
3482void *regulator_get_drvdata(struct regulator *regulator)
3483{
3484 return regulator->rdev->reg_data;
3485}
3486EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3487
3488/**
3489 * regulator_set_drvdata - set regulator driver data
3490 * @regulator: regulator
3491 * @data: data
3492 */
3493void regulator_set_drvdata(struct regulator *regulator, void *data)
3494{
3495 regulator->rdev->reg_data = data;
3496}
3497EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3498
3499/**
3500 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003501 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003502 */
3503int rdev_get_id(struct regulator_dev *rdev)
3504{
3505 return rdev->desc->id;
3506}
3507EXPORT_SYMBOL_GPL(rdev_get_id);
3508
Liam Girdwooda5766f12008-10-10 13:22:20 +01003509struct device *rdev_get_dev(struct regulator_dev *rdev)
3510{
3511 return &rdev->dev;
3512}
3513EXPORT_SYMBOL_GPL(rdev_get_dev);
3514
3515void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3516{
3517 return reg_init_data->driver_data;
3518}
3519EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3520
Mark Brownba55a972011-08-23 17:39:10 +01003521#ifdef CONFIG_DEBUG_FS
3522static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3523 size_t count, loff_t *ppos)
3524{
3525 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3526 ssize_t len, ret = 0;
3527 struct regulator_map *map;
3528
3529 if (!buf)
3530 return -ENOMEM;
3531
3532 list_for_each_entry(map, &regulator_map_list, list) {
3533 len = snprintf(buf + ret, PAGE_SIZE - ret,
3534 "%s -> %s.%s\n",
3535 rdev_get_name(map->regulator), map->dev_name,
3536 map->supply);
3537 if (len >= 0)
3538 ret += len;
3539 if (ret > PAGE_SIZE) {
3540 ret = PAGE_SIZE;
3541 break;
3542 }
3543 }
3544
3545 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3546
3547 kfree(buf);
3548
3549 return ret;
3550}
Stephen Boyd24751432012-02-20 22:50:42 -08003551#endif
Mark Brownba55a972011-08-23 17:39:10 +01003552
3553static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003554#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003555 .read = supply_map_read_file,
3556 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003557#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003558};
Mark Brownba55a972011-08-23 17:39:10 +01003559
Liam Girdwood414c70c2008-04-30 15:59:04 +01003560static int __init regulator_init(void)
3561{
Mark Brown34abbd62010-02-12 10:18:08 +00003562 int ret;
3563
Mark Brown34abbd62010-02-12 10:18:08 +00003564 ret = class_register(&regulator_class);
3565
Mark Brown1130e5b2010-12-21 23:49:31 +00003566 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08003567 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00003568 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01003569
Mark Brownf4d562c2012-02-20 21:01:04 +00003570 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
3571 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00003572
Mark Brown34abbd62010-02-12 10:18:08 +00003573 regulator_dummy_init();
3574
3575 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003576}
3577
3578/* init early to allow our consumers to complete system booting */
3579core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00003580
3581static int __init regulator_init_complete(void)
3582{
3583 struct regulator_dev *rdev;
3584 struct regulator_ops *ops;
3585 struct regulation_constraints *c;
3586 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00003587
Mark Brown86f5fcf2012-07-06 18:19:13 +01003588 /*
3589 * Since DT doesn't provide an idiomatic mechanism for
3590 * enabling full constraints and since it's much more natural
3591 * with DT to provide them just assume that a DT enabled
3592 * system has full constraints.
3593 */
3594 if (of_have_populated_dt())
3595 has_full_constraints = true;
3596
Mark Brownca725562009-03-16 19:36:34 +00003597 mutex_lock(&regulator_list_mutex);
3598
3599 /* If we have a full configuration then disable any regulators
3600 * which are not in use or always_on. This will become the
3601 * default behaviour in the future.
3602 */
3603 list_for_each_entry(rdev, &regulator_list, list) {
3604 ops = rdev->desc->ops;
3605 c = rdev->constraints;
3606
Mark Brownf25e0b42009-08-03 18:49:55 +01003607 if (!ops->disable || (c && c->always_on))
Mark Brownca725562009-03-16 19:36:34 +00003608 continue;
3609
3610 mutex_lock(&rdev->mutex);
3611
3612 if (rdev->use_count)
3613 goto unlock;
3614
3615 /* If we can't read the status assume it's on. */
3616 if (ops->is_enabled)
3617 enabled = ops->is_enabled(rdev);
3618 else
3619 enabled = 1;
3620
3621 if (!enabled)
3622 goto unlock;
3623
3624 if (has_full_constraints) {
3625 /* We log since this may kill the system if it
3626 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08003627 rdev_info(rdev, "disabling\n");
Mark Brownca725562009-03-16 19:36:34 +00003628 ret = ops->disable(rdev);
3629 if (ret != 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003630 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00003631 }
3632 } else {
3633 /* The intention is that in future we will
3634 * assume that full constraints are provided
3635 * so warn even if we aren't going to do
3636 * anything here.
3637 */
Joe Perches5da84fd2010-11-30 05:53:48 -08003638 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00003639 }
3640
3641unlock:
3642 mutex_unlock(&rdev->mutex);
3643 }
3644
3645 mutex_unlock(&regulator_list_mutex);
3646
3647 return 0;
3648}
3649late_initcall(regulator_init_complete);