blob: 157def15ed783d1f12c692e57a9e2d30bdf8976a [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
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200781 if (!count)
782 sprintf(buf, "no parameters");
783
Mark Brown13ce29f2010-12-17 16:04:12 +0000784 rdev_info(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000785
786 if ((constraints->min_uV != constraints->max_uV) &&
787 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
788 rdev_warn(rdev,
789 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100790}
791
Mark Browne79055d2009-10-19 15:53:50 +0100792static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100793 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100794{
795 struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100796 int ret;
797
798 /* do we need to apply the constraint voltage */
799 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000800 rdev->constraints->min_uV == rdev->constraints->max_uV) {
801 ret = _regulator_do_set_voltage(rdev,
802 rdev->constraints->min_uV,
803 rdev->constraints->max_uV);
804 if (ret < 0) {
805 rdev_err(rdev, "failed to apply %duV constraint\n",
806 rdev->constraints->min_uV);
Mark Brown75790252010-12-12 14:25:50 +0000807 return ret;
808 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100809 }
Mark Browne79055d2009-10-19 15:53:50 +0100810
811 /* constrain machine-level voltage specs to fit
812 * the actual range supported by this regulator.
813 */
814 if (ops->list_voltage && rdev->desc->n_voltages) {
815 int count = rdev->desc->n_voltages;
816 int i;
817 int min_uV = INT_MAX;
818 int max_uV = INT_MIN;
819 int cmin = constraints->min_uV;
820 int cmax = constraints->max_uV;
821
822 /* it's safe to autoconfigure fixed-voltage supplies
823 and the constraints are used by list_voltage. */
824 if (count == 1 && !cmin) {
825 cmin = 1;
826 cmax = INT_MAX;
827 constraints->min_uV = cmin;
828 constraints->max_uV = cmax;
829 }
830
831 /* voltage constraints are optional */
832 if ((cmin == 0) && (cmax == 0))
833 return 0;
834
835 /* else require explicit machine-level constraints */
836 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800837 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100838 return -EINVAL;
839 }
840
841 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
842 for (i = 0; i < count; i++) {
843 int value;
844
845 value = ops->list_voltage(rdev, i);
846 if (value <= 0)
847 continue;
848
849 /* maybe adjust [min_uV..max_uV] */
850 if (value >= cmin && value < min_uV)
851 min_uV = value;
852 if (value <= cmax && value > max_uV)
853 max_uV = value;
854 }
855
856 /* final: [min_uV..max_uV] valid iff constraints valid */
857 if (max_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800858 rdev_err(rdev, "unsupportable voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100859 return -EINVAL;
860 }
861
862 /* use regulator's subset of machine constraints */
863 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800864 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
865 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100866 constraints->min_uV = min_uV;
867 }
868 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800869 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
870 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100871 constraints->max_uV = max_uV;
872 }
873 }
874
875 return 0;
876}
877
Liam Girdwooda5766f12008-10-10 13:22:20 +0100878/**
879 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000880 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000881 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100882 *
883 * Allows platform initialisation code to define and constrain
884 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
885 * Constraints *must* be set by platform code in order for some
886 * regulator operations to proceed i.e. set_voltage, set_current_limit,
887 * set_mode.
888 */
889static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000890 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100891{
892 int ret = 0;
Mark Browne5fda262008-09-09 16:21:20 +0100893 struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100894
Mark Brown9a8f5e02011-11-29 18:11:19 +0000895 if (constraints)
896 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
897 GFP_KERNEL);
898 else
899 rdev->constraints = kzalloc(sizeof(*constraints),
900 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +0000901 if (!rdev->constraints)
902 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100903
Mark Brownf8c12fe2010-11-29 15:55:17 +0000904 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100905 if (ret != 0)
906 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800907
Liam Girdwooda5766f12008-10-10 13:22:20 +0100908 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +0000909 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +0000910 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +0100911 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800912 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +0100913 goto out;
914 }
915 }
Liam Girdwooda5766f12008-10-10 13:22:20 +0100916
Mark Brown9a8f5e02011-11-29 18:11:19 +0000917 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +0000918 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800919 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +0000920 ret = -EINVAL;
921 goto out;
922 }
923
Mark Brownf8c12fe2010-11-29 15:55:17 +0000924 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +0000925 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800926 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +0000927 goto out;
928 }
929 }
930
Mark Browncacf90f2009-03-02 16:32:46 +0000931 /* If the constraints say the regulator should be on at this point
932 * and we have control then make sure it is enabled.
933 */
Mark Brownf8c12fe2010-11-29 15:55:17 +0000934 if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
935 ops->enable) {
Mark Browne5fda262008-09-09 16:21:20 +0100936 ret = ops->enable(rdev);
937 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800938 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +0100939 goto out;
940 }
941 }
942
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +0530943 if (rdev->constraints->ramp_delay && ops->set_ramp_delay) {
944 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
945 if (ret < 0) {
946 rdev_err(rdev, "failed to set ramp_delay\n");
947 goto out;
948 }
949 }
950
Liam Girdwooda5766f12008-10-10 13:22:20 +0100951 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +0800952 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100953out:
Axel Lin1a6958e72011-07-15 10:50:43 +0800954 kfree(rdev->constraints);
955 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100956 return ret;
957}
958
959/**
960 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +0000961 * @rdev: regulator name
962 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +0100963 *
964 * Called by platform initialisation code to set the supply regulator for this
965 * regulator. This ensures that a regulators supply will also be enabled by the
966 * core if it's child is enabled.
967 */
968static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +0100969 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100970{
971 int err;
972
Mark Brown3801b862011-06-09 16:22:22 +0100973 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
974
975 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +0800976 if (rdev->supply == NULL) {
977 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +0100978 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100979 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +0530980 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +0100981
982 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100983}
984
985/**
Randy Dunlap06c63f92010-11-18 15:02:26 -0800986 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +0000987 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +0100988 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +0000989 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100990 *
991 * Allows platform initialisation code to map physical regulator
992 * sources to symbolic names for supplies for use by devices. Devices
993 * should use these symbolic names to request regulators, avoiding the
994 * need to provide board-specific regulator names as platform data.
995 */
996static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +0000997 const char *consumer_dev_name,
998 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100999{
1000 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001001 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001002
1003 if (supply == NULL)
1004 return -EINVAL;
1005
Mark Brown9ed20992009-07-21 16:00:26 +01001006 if (consumer_dev_name != NULL)
1007 has_dev = 1;
1008 else
1009 has_dev = 0;
1010
David Brownell6001e132008-12-31 12:54:19 +00001011 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001012 if (node->dev_name && consumer_dev_name) {
1013 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1014 continue;
1015 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001016 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001017 }
1018
David Brownell6001e132008-12-31 12:54:19 +00001019 if (strcmp(node->supply, supply) != 0)
1020 continue;
1021
Mark Brown737f3602012-02-02 00:10:51 +00001022 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1023 consumer_dev_name,
1024 dev_name(&node->regulator->dev),
1025 node->regulator->desc->name,
1026 supply,
1027 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001028 return -EBUSY;
1029 }
1030
Mark Brown9ed20992009-07-21 16:00:26 +01001031 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001032 if (node == NULL)
1033 return -ENOMEM;
1034
1035 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001036 node->supply = supply;
1037
Mark Brown9ed20992009-07-21 16:00:26 +01001038 if (has_dev) {
1039 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1040 if (node->dev_name == NULL) {
1041 kfree(node);
1042 return -ENOMEM;
1043 }
Mark Brown40f92442009-06-17 17:56:39 +01001044 }
1045
Liam Girdwooda5766f12008-10-10 13:22:20 +01001046 list_add(&node->list, &regulator_map_list);
1047 return 0;
1048}
1049
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001050static void unset_regulator_supplies(struct regulator_dev *rdev)
1051{
1052 struct regulator_map *node, *n;
1053
1054 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1055 if (rdev == node->regulator) {
1056 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001057 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001058 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001059 }
1060 }
1061}
1062
Mark Brownf5726ae2011-06-09 16:22:20 +01001063#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001064
1065static struct regulator *create_regulator(struct regulator_dev *rdev,
1066 struct device *dev,
1067 const char *supply_name)
1068{
1069 struct regulator *regulator;
1070 char buf[REG_STR_SIZE];
1071 int err, size;
1072
1073 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1074 if (regulator == NULL)
1075 return NULL;
1076
1077 mutex_lock(&rdev->mutex);
1078 regulator->rdev = rdev;
1079 list_add(&regulator->list, &rdev->consumer_list);
1080
1081 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001082 regulator->dev = dev;
1083
Mark Brown222cc7b2012-06-22 11:39:16 +01001084 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001085 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1086 dev->kobj.name, supply_name);
1087 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001088 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001089
1090 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1091 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001092 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001093
1094 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1095 buf);
1096 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001097 rdev_warn(rdev, "could not add device link %s err %d\n",
1098 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001099 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001100 }
Mark Brown5de70512011-06-19 13:33:16 +01001101 } else {
1102 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1103 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001104 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001105 }
Mark Brown5de70512011-06-19 13:33:16 +01001106
Mark Brown5de70512011-06-19 13:33:16 +01001107 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1108 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001109 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001110 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001111 } else {
1112 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1113 &regulator->uA_load);
1114 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1115 &regulator->min_uV);
1116 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1117 &regulator->max_uV);
1118 }
Mark Brown5de70512011-06-19 13:33:16 +01001119
Mark Brown6492bc12012-04-19 13:19:07 +01001120 /*
1121 * Check now if the regulator is an always on regulator - if
1122 * it is then we don't need to do nearly so much work for
1123 * enable/disable calls.
1124 */
1125 if (!_regulator_can_change_status(rdev) &&
1126 _regulator_is_enabled(rdev))
1127 regulator->always_on = true;
1128
Liam Girdwood414c70c2008-04-30 15:59:04 +01001129 mutex_unlock(&rdev->mutex);
1130 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001131overflow_err:
1132 list_del(&regulator->list);
1133 kfree(regulator);
1134 mutex_unlock(&rdev->mutex);
1135 return NULL;
1136}
1137
Mark Brown31aae2b2009-12-21 12:21:52 +00001138static int _regulator_get_enable_time(struct regulator_dev *rdev)
1139{
1140 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001141 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001142 return rdev->desc->ops->enable_time(rdev);
1143}
1144
Rajendra Nayak69511a42011-11-18 16:47:20 +05301145static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001146 const char *supply,
1147 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301148{
1149 struct regulator_dev *r;
1150 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001151 struct regulator_map *map;
1152 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301153
1154 /* first do a dt based lookup */
1155 if (dev && dev->of_node) {
1156 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001157 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301158 list_for_each_entry(r, &regulator_list, list)
1159 if (r->dev.parent &&
1160 node == r->dev.of_node)
1161 return r;
Mark Brown6d191a52012-03-29 14:19:02 +01001162 } else {
1163 /*
1164 * If we couldn't even get the node then it's
1165 * not just that the device didn't register
1166 * yet, there's no node and we'll never
1167 * succeed.
1168 */
1169 *ret = -ENODEV;
1170 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301171 }
1172
1173 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001174 if (dev)
1175 devname = dev_name(dev);
1176
Rajendra Nayak69511a42011-11-18 16:47:20 +05301177 list_for_each_entry(r, &regulator_list, list)
1178 if (strcmp(rdev_get_name(r), supply) == 0)
1179 return r;
1180
Mark Brown576ca4362012-03-30 12:24:37 +01001181 list_for_each_entry(map, &regulator_map_list, list) {
1182 /* If the mapping has a device set up it must match */
1183 if (map->dev_name &&
1184 (!devname || strcmp(map->dev_name, devname)))
1185 continue;
1186
1187 if (strcmp(map->supply, supply) == 0)
1188 return map->regulator;
1189 }
1190
1191
Rajendra Nayak69511a42011-11-18 16:47:20 +05301192 return NULL;
1193}
1194
Mark Brown5ffbd132009-07-21 16:00:23 +01001195/* Internal regulator request function */
1196static struct regulator *_regulator_get(struct device *dev, const char *id,
1197 int exclusive)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001198{
1199 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001200 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001201 const char *devname = NULL;
Mark Brown5ffbd132009-07-21 16:00:23 +01001202 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001203
1204 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001205 pr_err("get() with no identifier\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001206 return regulator;
1207 }
1208
Mark Brown40f92442009-06-17 17:56:39 +01001209 if (dev)
1210 devname = dev_name(dev);
1211
Liam Girdwood414c70c2008-04-30 15:59:04 +01001212 mutex_lock(&regulator_list_mutex);
1213
Mark Brown6d191a52012-03-29 14:19:02 +01001214 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301215 if (rdev)
1216 goto found;
1217
Mark Brown688fe992010-10-05 19:18:32 -07001218 if (board_wants_dummy_regulator) {
1219 rdev = dummy_regulator_rdev;
1220 goto found;
1221 }
1222
Mark Brown34abbd62010-02-12 10:18:08 +00001223#ifdef CONFIG_REGULATOR_DUMMY
1224 if (!devname)
1225 devname = "deviceless";
1226
1227 /* If the board didn't flag that it was fully constrained then
1228 * substitute in a dummy regulator so consumers can continue.
1229 */
1230 if (!has_full_constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001231 pr_warn("%s supply %s not found, using dummy regulator\n",
1232 devname, id);
Mark Brown34abbd62010-02-12 10:18:08 +00001233 rdev = dummy_regulator_rdev;
1234 goto found;
1235 }
1236#endif
1237
Liam Girdwood414c70c2008-04-30 15:59:04 +01001238 mutex_unlock(&regulator_list_mutex);
1239 return regulator;
1240
1241found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001242 if (rdev->exclusive) {
1243 regulator = ERR_PTR(-EPERM);
1244 goto out;
1245 }
1246
1247 if (exclusive && rdev->open_count) {
1248 regulator = ERR_PTR(-EBUSY);
1249 goto out;
1250 }
1251
Liam Girdwooda5766f12008-10-10 13:22:20 +01001252 if (!try_module_get(rdev->owner))
1253 goto out;
1254
Liam Girdwood414c70c2008-04-30 15:59:04 +01001255 regulator = create_regulator(rdev, dev, id);
1256 if (regulator == NULL) {
1257 regulator = ERR_PTR(-ENOMEM);
1258 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001259 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001260 }
1261
Mark Brown5ffbd132009-07-21 16:00:23 +01001262 rdev->open_count++;
1263 if (exclusive) {
1264 rdev->exclusive = 1;
1265
1266 ret = _regulator_is_enabled(rdev);
1267 if (ret > 0)
1268 rdev->use_count = 1;
1269 else
1270 rdev->use_count = 0;
1271 }
1272
Liam Girdwooda5766f12008-10-10 13:22:20 +01001273out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001274 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001275
Liam Girdwood414c70c2008-04-30 15:59:04 +01001276 return regulator;
1277}
Mark Brown5ffbd132009-07-21 16:00:23 +01001278
1279/**
1280 * regulator_get - lookup and obtain a reference to a regulator.
1281 * @dev: device for regulator "consumer"
1282 * @id: Supply name or regulator ID.
1283 *
1284 * Returns a struct regulator corresponding to the regulator producer,
1285 * or IS_ERR() condition containing errno.
1286 *
1287 * Use of supply names configured via regulator_set_device_supply() is
1288 * strongly encouraged. It is recommended that the supply name used
1289 * should match the name used for the supply and/or the relevant
1290 * device pins in the datasheet.
1291 */
1292struct regulator *regulator_get(struct device *dev, const char *id)
1293{
1294 return _regulator_get(dev, id, 0);
1295}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001296EXPORT_SYMBOL_GPL(regulator_get);
1297
Stephen Boyd070b9072012-01-16 19:39:58 -08001298static void devm_regulator_release(struct device *dev, void *res)
1299{
1300 regulator_put(*(struct regulator **)res);
1301}
1302
1303/**
1304 * devm_regulator_get - Resource managed regulator_get()
1305 * @dev: device for regulator "consumer"
1306 * @id: Supply name or regulator ID.
1307 *
1308 * Managed regulator_get(). Regulators returned from this function are
1309 * automatically regulator_put() on driver detach. See regulator_get() for more
1310 * information.
1311 */
1312struct regulator *devm_regulator_get(struct device *dev, const char *id)
1313{
1314 struct regulator **ptr, *regulator;
1315
1316 ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
1317 if (!ptr)
1318 return ERR_PTR(-ENOMEM);
1319
1320 regulator = regulator_get(dev, id);
1321 if (!IS_ERR(regulator)) {
1322 *ptr = regulator;
1323 devres_add(dev, ptr);
1324 } else {
1325 devres_free(ptr);
1326 }
1327
1328 return regulator;
1329}
1330EXPORT_SYMBOL_GPL(devm_regulator_get);
1331
Liam Girdwood414c70c2008-04-30 15:59:04 +01001332/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001333 * regulator_get_exclusive - obtain exclusive access to a regulator.
1334 * @dev: device for regulator "consumer"
1335 * @id: Supply name or regulator ID.
1336 *
1337 * Returns a struct regulator corresponding to the regulator producer,
1338 * or IS_ERR() condition containing errno. Other consumers will be
1339 * unable to obtain this reference is held and the use count for the
1340 * regulator will be initialised to reflect the current state of the
1341 * regulator.
1342 *
1343 * This is intended for use by consumers which cannot tolerate shared
1344 * use of the regulator such as those which need to force the
1345 * regulator off for correct operation of the hardware they are
1346 * controlling.
1347 *
1348 * Use of supply names configured via regulator_set_device_supply() is
1349 * strongly encouraged. It is recommended that the supply name used
1350 * should match the name used for the supply and/or the relevant
1351 * device pins in the datasheet.
1352 */
1353struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1354{
1355 return _regulator_get(dev, id, 1);
1356}
1357EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1358
1359/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01001360 * regulator_put - "free" the regulator source
1361 * @regulator: regulator source
1362 *
1363 * Note: drivers must ensure that all regulator_enable calls made on this
1364 * regulator source are balanced by regulator_disable calls prior to calling
1365 * this function.
1366 */
1367void regulator_put(struct regulator *regulator)
1368{
1369 struct regulator_dev *rdev;
1370
1371 if (regulator == NULL || IS_ERR(regulator))
1372 return;
1373
Liam Girdwood414c70c2008-04-30 15:59:04 +01001374 mutex_lock(&regulator_list_mutex);
1375 rdev = regulator->rdev;
1376
Mark Brown5de70512011-06-19 13:33:16 +01001377 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001378
Liam Girdwood414c70c2008-04-30 15:59:04 +01001379 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001380 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001381 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Mark Brown5de70512011-06-19 13:33:16 +01001382 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001383 list_del(&regulator->list);
1384 kfree(regulator);
1385
Mark Brown5ffbd132009-07-21 16:00:23 +01001386 rdev->open_count--;
1387 rdev->exclusive = 0;
1388
Liam Girdwood414c70c2008-04-30 15:59:04 +01001389 module_put(rdev->owner);
1390 mutex_unlock(&regulator_list_mutex);
1391}
1392EXPORT_SYMBOL_GPL(regulator_put);
1393
Mark Brownd5ad34f2012-01-20 20:09:18 +00001394static int devm_regulator_match(struct device *dev, void *res, void *data)
1395{
1396 struct regulator **r = res;
1397 if (!r || !*r) {
1398 WARN_ON(!r || !*r);
1399 return 0;
1400 }
1401 return *r == data;
1402}
1403
1404/**
1405 * devm_regulator_put - Resource managed regulator_put()
1406 * @regulator: regulator to free
1407 *
1408 * Deallocate a regulator allocated with devm_regulator_get(). Normally
1409 * this function will not need to be called and the resource management
1410 * code will ensure that the resource is freed.
1411 */
1412void devm_regulator_put(struct regulator *regulator)
1413{
1414 int rc;
1415
Mark Brown361ff502012-05-07 14:14:30 +01001416 rc = devres_release(regulator->dev, devm_regulator_release,
Mark Brownd5ad34f2012-01-20 20:09:18 +00001417 devm_regulator_match, regulator);
Mark Brown230a5a1c2012-06-15 18:25:08 +01001418 if (rc != 0)
Mark Brown968c2c12012-05-07 11:34:52 +01001419 WARN_ON(rc);
Mark Brownd5ad34f2012-01-20 20:09:18 +00001420}
1421EXPORT_SYMBOL_GPL(devm_regulator_put);
1422
Mark Brown5c5659d2012-06-27 13:21:26 +01001423static int _regulator_do_enable(struct regulator_dev *rdev)
1424{
1425 int ret, delay;
1426
1427 /* Query before enabling in case configuration dependent. */
1428 ret = _regulator_get_enable_time(rdev);
1429 if (ret >= 0) {
1430 delay = ret;
1431 } else {
1432 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1433 delay = 0;
1434 }
1435
1436 trace_regulator_enable(rdev_get_name(rdev));
1437
Mark Brown65f73502012-06-27 14:14:38 +01001438 if (rdev->ena_gpio) {
1439 gpio_set_value_cansleep(rdev->ena_gpio,
1440 !rdev->ena_gpio_invert);
1441 rdev->ena_gpio_state = 1;
1442 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001443 ret = rdev->desc->ops->enable(rdev);
1444 if (ret < 0)
1445 return ret;
1446 } else {
1447 return -EINVAL;
1448 }
1449
1450 /* Allow the regulator to ramp; it would be useful to extend
1451 * this for bulk operations so that the regulators can ramp
1452 * together. */
1453 trace_regulator_enable_delay(rdev_get_name(rdev));
1454
1455 if (delay >= 1000) {
1456 mdelay(delay / 1000);
1457 udelay(delay % 1000);
1458 } else if (delay) {
1459 udelay(delay);
1460 }
1461
1462 trace_regulator_enable_complete(rdev_get_name(rdev));
1463
1464 return 0;
1465}
1466
Liam Girdwood414c70c2008-04-30 15:59:04 +01001467/* locks held by regulator_enable() */
1468static int _regulator_enable(struct regulator_dev *rdev)
1469{
Mark Brown5c5659d2012-06-27 13:21:26 +01001470 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001471
Liam Girdwood414c70c2008-04-30 15:59:04 +01001472 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001473 if (rdev->constraints &&
1474 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1475 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001476
Mark Brown9a2372f2009-08-03 18:49:57 +01001477 if (rdev->use_count == 0) {
1478 /* The regulator may on if it's not switchable or left on */
1479 ret = _regulator_is_enabled(rdev);
1480 if (ret == -EINVAL || ret == 0) {
1481 if (!_regulator_can_change_status(rdev))
1482 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001483
Mark Brown5c5659d2012-06-27 13:21:26 +01001484 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001485 if (ret < 0)
1486 return ret;
1487
Linus Walleija7433cf2009-08-26 12:54:04 +02001488 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001489 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001490 return ret;
1491 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001492 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001493 }
1494
Mark Brown9a2372f2009-08-03 18:49:57 +01001495 rdev->use_count++;
1496
1497 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001498}
1499
1500/**
1501 * regulator_enable - enable regulator output
1502 * @regulator: regulator source
1503 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001504 * Request that the regulator be enabled with the regulator output at
1505 * the predefined voltage or current value. Calls to regulator_enable()
1506 * must be balanced with calls to regulator_disable().
1507 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001508 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001509 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001510 */
1511int regulator_enable(struct regulator *regulator)
1512{
David Brownell412aec62008-11-16 11:44:46 -08001513 struct regulator_dev *rdev = regulator->rdev;
1514 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001515
Mark Brown6492bc12012-04-19 13:19:07 +01001516 if (regulator->always_on)
1517 return 0;
1518
Mark Brown3801b862011-06-09 16:22:22 +01001519 if (rdev->supply) {
1520 ret = regulator_enable(rdev->supply);
1521 if (ret != 0)
1522 return ret;
1523 }
1524
David Brownell412aec62008-11-16 11:44:46 -08001525 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001526 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001527 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001528
Heiko Stübnerd1685e42011-10-14 18:00:29 +02001529 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01001530 regulator_disable(rdev->supply);
1531
Liam Girdwood414c70c2008-04-30 15:59:04 +01001532 return ret;
1533}
1534EXPORT_SYMBOL_GPL(regulator_enable);
1535
Mark Brown5c5659d2012-06-27 13:21:26 +01001536static int _regulator_do_disable(struct regulator_dev *rdev)
1537{
1538 int ret;
1539
1540 trace_regulator_disable(rdev_get_name(rdev));
1541
1542 if (rdev->ena_gpio) {
1543 gpio_set_value_cansleep(rdev->ena_gpio,
1544 rdev->ena_gpio_invert);
1545 rdev->ena_gpio_state = 0;
1546
1547 } else if (rdev->desc->ops->disable) {
1548 ret = rdev->desc->ops->disable(rdev);
1549 if (ret != 0)
1550 return ret;
1551 }
1552
1553 trace_regulator_disable_complete(rdev_get_name(rdev));
1554
1555 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1556 NULL);
1557 return 0;
1558}
1559
Liam Girdwood414c70c2008-04-30 15:59:04 +01001560/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001561static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001562{
1563 int ret = 0;
1564
David Brownellcd94b502009-03-11 16:43:34 -08001565 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001566 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001567 return -EIO;
1568
Liam Girdwood414c70c2008-04-30 15:59:04 +01001569 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001570 if (rdev->use_count == 1 &&
1571 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001572
1573 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01001574 if (_regulator_can_change_status(rdev)) {
1575 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001576 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001577 rdev_err(rdev, "failed to disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001578 return ret;
1579 }
1580 }
1581
Liam Girdwood414c70c2008-04-30 15:59:04 +01001582 rdev->use_count = 0;
1583 } else if (rdev->use_count > 1) {
1584
1585 if (rdev->constraints &&
1586 (rdev->constraints->valid_ops_mask &
1587 REGULATOR_CHANGE_DRMS))
1588 drms_uA_update(rdev);
1589
1590 rdev->use_count--;
1591 }
Mark Brown3801b862011-06-09 16:22:22 +01001592
Liam Girdwood414c70c2008-04-30 15:59:04 +01001593 return ret;
1594}
1595
1596/**
1597 * regulator_disable - disable regulator output
1598 * @regulator: regulator source
1599 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001600 * Disable the regulator output voltage or current. Calls to
1601 * regulator_enable() must be balanced with calls to
1602 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00001603 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001604 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00001605 * devices have it enabled, the regulator device supports disabling and
1606 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001607 */
1608int regulator_disable(struct regulator *regulator)
1609{
David Brownell412aec62008-11-16 11:44:46 -08001610 struct regulator_dev *rdev = regulator->rdev;
1611 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001612
Mark Brown6492bc12012-04-19 13:19:07 +01001613 if (regulator->always_on)
1614 return 0;
1615
David Brownell412aec62008-11-16 11:44:46 -08001616 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001617 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001618 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001619
Mark Brown3801b862011-06-09 16:22:22 +01001620 if (ret == 0 && rdev->supply)
1621 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001622
Liam Girdwood414c70c2008-04-30 15:59:04 +01001623 return ret;
1624}
1625EXPORT_SYMBOL_GPL(regulator_disable);
1626
1627/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001628static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001629{
1630 int ret = 0;
1631
1632 /* force disable */
1633 if (rdev->desc->ops->disable) {
1634 /* ah well, who wants to live forever... */
1635 ret = rdev->desc->ops->disable(rdev);
1636 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001637 rdev_err(rdev, "failed to force disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001638 return ret;
1639 }
1640 /* notify other consumers that power has been forced off */
Mark Brown84b68262009-12-01 21:12:27 +00001641 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
1642 REGULATOR_EVENT_DISABLE, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001643 }
1644
Liam Girdwood414c70c2008-04-30 15:59:04 +01001645 return ret;
1646}
1647
1648/**
1649 * regulator_force_disable - force disable regulator output
1650 * @regulator: regulator source
1651 *
1652 * Forcibly disable the regulator output voltage or current.
1653 * NOTE: this *will* disable the regulator output even if other consumer
1654 * devices have it enabled. This should be used for situations when device
1655 * damage will likely occur if the regulator is not disabled (e.g. over temp).
1656 */
1657int regulator_force_disable(struct regulator *regulator)
1658{
Mark Brown82d15832011-05-09 11:41:02 +02001659 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001660 int ret;
1661
Mark Brown82d15832011-05-09 11:41:02 +02001662 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001663 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01001664 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02001665 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001666
Mark Brown3801b862011-06-09 16:22:22 +01001667 if (rdev->supply)
1668 while (rdev->open_count--)
1669 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001670
Liam Girdwood414c70c2008-04-30 15:59:04 +01001671 return ret;
1672}
1673EXPORT_SYMBOL_GPL(regulator_force_disable);
1674
Mark Brownda07ecd2011-09-11 09:53:50 +01001675static void regulator_disable_work(struct work_struct *work)
1676{
1677 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
1678 disable_work.work);
1679 int count, i, ret;
1680
1681 mutex_lock(&rdev->mutex);
1682
1683 BUG_ON(!rdev->deferred_disables);
1684
1685 count = rdev->deferred_disables;
1686 rdev->deferred_disables = 0;
1687
1688 for (i = 0; i < count; i++) {
1689 ret = _regulator_disable(rdev);
1690 if (ret != 0)
1691 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
1692 }
1693
1694 mutex_unlock(&rdev->mutex);
1695
1696 if (rdev->supply) {
1697 for (i = 0; i < count; i++) {
1698 ret = regulator_disable(rdev->supply);
1699 if (ret != 0) {
1700 rdev_err(rdev,
1701 "Supply disable failed: %d\n", ret);
1702 }
1703 }
1704 }
1705}
1706
1707/**
1708 * regulator_disable_deferred - disable regulator output with delay
1709 * @regulator: regulator source
1710 * @ms: miliseconds until the regulator is disabled
1711 *
1712 * Execute regulator_disable() on the regulator after a delay. This
1713 * is intended for use with devices that require some time to quiesce.
1714 *
1715 * NOTE: this will only disable the regulator output if no other consumer
1716 * devices have it enabled, the regulator device supports disabling and
1717 * machine constraints permit this operation.
1718 */
1719int regulator_disable_deferred(struct regulator *regulator, int ms)
1720{
1721 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01001722 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01001723
Mark Brown6492bc12012-04-19 13:19:07 +01001724 if (regulator->always_on)
1725 return 0;
1726
Mark Brownda07ecd2011-09-11 09:53:50 +01001727 mutex_lock(&rdev->mutex);
1728 rdev->deferred_disables++;
1729 mutex_unlock(&rdev->mutex);
1730
Mark Brownaa598022011-10-03 22:42:43 +01001731 ret = schedule_delayed_work(&rdev->disable_work,
1732 msecs_to_jiffies(ms));
1733 if (ret < 0)
1734 return ret;
1735 else
1736 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01001737}
1738EXPORT_SYMBOL_GPL(regulator_disable_deferred);
1739
Mark Browncd6dffb2012-04-15 12:37:47 +01001740/**
1741 * regulator_is_enabled_regmap - standard is_enabled() for regmap users
1742 *
1743 * @rdev: regulator to operate on
1744 *
1745 * Regulators that use regmap for their register I/O can set the
1746 * enable_reg and enable_mask fields in their descriptor and then use
1747 * this as their is_enabled operation, saving some code.
1748 */
1749int regulator_is_enabled_regmap(struct regulator_dev *rdev)
1750{
1751 unsigned int val;
1752 int ret;
1753
1754 ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val);
1755 if (ret != 0)
1756 return ret;
1757
1758 return (val & rdev->desc->enable_mask) != 0;
1759}
1760EXPORT_SYMBOL_GPL(regulator_is_enabled_regmap);
1761
1762/**
1763 * regulator_enable_regmap - standard enable() for regmap users
1764 *
1765 * @rdev: regulator to operate on
1766 *
1767 * Regulators that use regmap for their register I/O can set the
1768 * enable_reg and enable_mask fields in their descriptor and then use
1769 * this as their enable() operation, saving some code.
1770 */
1771int regulator_enable_regmap(struct regulator_dev *rdev)
1772{
1773 return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
1774 rdev->desc->enable_mask,
1775 rdev->desc->enable_mask);
1776}
1777EXPORT_SYMBOL_GPL(regulator_enable_regmap);
1778
1779/**
1780 * regulator_disable_regmap - standard disable() for regmap users
1781 *
1782 * @rdev: regulator to operate on
1783 *
1784 * Regulators that use regmap for their register I/O can set the
1785 * enable_reg and enable_mask fields in their descriptor and then use
1786 * this as their disable() operation, saving some code.
1787 */
1788int regulator_disable_regmap(struct regulator_dev *rdev)
1789{
1790 return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
1791 rdev->desc->enable_mask, 0);
1792}
1793EXPORT_SYMBOL_GPL(regulator_disable_regmap);
1794
Liam Girdwood414c70c2008-04-30 15:59:04 +01001795static int _regulator_is_enabled(struct regulator_dev *rdev)
1796{
Mark Brown65f73502012-06-27 14:14:38 +01001797 /* A GPIO control always takes precedence */
1798 if (rdev->ena_gpio)
1799 return rdev->ena_gpio_state;
1800
Mark Brown9a7f6a42010-02-11 17:22:45 +00001801 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01001802 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00001803 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001804
Mark Brown93325462009-08-03 18:49:56 +01001805 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001806}
1807
1808/**
1809 * regulator_is_enabled - is the regulator output enabled
1810 * @regulator: regulator source
1811 *
David Brownell412aec62008-11-16 11:44:46 -08001812 * Returns positive if the regulator driver backing the source/client
1813 * has requested that the device be enabled, zero if it hasn't, else a
1814 * negative errno code.
1815 *
1816 * Note that the device backing this regulator handle can have multiple
1817 * users, so it might be enabled even if regulator_enable() was never
1818 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001819 */
1820int regulator_is_enabled(struct regulator *regulator)
1821{
Mark Brown93325462009-08-03 18:49:56 +01001822 int ret;
1823
Mark Brown6492bc12012-04-19 13:19:07 +01001824 if (regulator->always_on)
1825 return 1;
1826
Mark Brown93325462009-08-03 18:49:56 +01001827 mutex_lock(&regulator->rdev->mutex);
1828 ret = _regulator_is_enabled(regulator->rdev);
1829 mutex_unlock(&regulator->rdev->mutex);
1830
1831 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001832}
1833EXPORT_SYMBOL_GPL(regulator_is_enabled);
1834
1835/**
David Brownell4367cfd2009-02-26 11:48:36 -08001836 * regulator_count_voltages - count regulator_list_voltage() selectors
1837 * @regulator: regulator source
1838 *
1839 * Returns number of selectors, or negative errno. Selectors are
1840 * numbered starting at zero, and typically correspond to bitfields
1841 * in hardware registers.
1842 */
1843int regulator_count_voltages(struct regulator *regulator)
1844{
1845 struct regulator_dev *rdev = regulator->rdev;
1846
1847 return rdev->desc->n_voltages ? : -EINVAL;
1848}
1849EXPORT_SYMBOL_GPL(regulator_count_voltages);
1850
1851/**
Mark Brownbca7bbf2012-05-09 21:38:33 +01001852 * regulator_list_voltage_linear - List voltages with simple calculation
1853 *
1854 * @rdev: Regulator device
1855 * @selector: Selector to convert into a voltage
1856 *
1857 * Regulators with a simple linear mapping between voltages and
1858 * selectors can set min_uV and uV_step in the regulator descriptor
1859 * and then use this function as their list_voltage() operation,
1860 */
1861int regulator_list_voltage_linear(struct regulator_dev *rdev,
1862 unsigned int selector)
1863{
1864 if (selector >= rdev->desc->n_voltages)
1865 return -EINVAL;
1866
1867 return rdev->desc->min_uV + (rdev->desc->uV_step * selector);
1868}
1869EXPORT_SYMBOL_GPL(regulator_list_voltage_linear);
1870
1871/**
Axel Lincffc9592012-05-20 10:30:21 +08001872 * regulator_list_voltage_table - List voltages with table based mapping
1873 *
1874 * @rdev: Regulator device
1875 * @selector: Selector to convert into a voltage
1876 *
1877 * Regulators with table based mapping between voltages and
1878 * selectors can set volt_table in the regulator descriptor
1879 * and then use this function as their list_voltage() operation.
1880 */
1881int regulator_list_voltage_table(struct regulator_dev *rdev,
1882 unsigned int selector)
1883{
1884 if (!rdev->desc->volt_table) {
1885 BUG_ON(!rdev->desc->volt_table);
1886 return -EINVAL;
1887 }
1888
1889 if (selector >= rdev->desc->n_voltages)
1890 return -EINVAL;
1891
1892 return rdev->desc->volt_table[selector];
1893}
1894EXPORT_SYMBOL_GPL(regulator_list_voltage_table);
1895
1896/**
David Brownell4367cfd2009-02-26 11:48:36 -08001897 * regulator_list_voltage - enumerate supported voltages
1898 * @regulator: regulator source
1899 * @selector: identify voltage to list
1900 * Context: can sleep
1901 *
1902 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01001903 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08001904 * negative errno.
1905 */
1906int regulator_list_voltage(struct regulator *regulator, unsigned selector)
1907{
1908 struct regulator_dev *rdev = regulator->rdev;
1909 struct regulator_ops *ops = rdev->desc->ops;
1910 int ret;
1911
1912 if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
1913 return -EINVAL;
1914
1915 mutex_lock(&rdev->mutex);
1916 ret = ops->list_voltage(rdev, selector);
1917 mutex_unlock(&rdev->mutex);
1918
1919 if (ret > 0) {
1920 if (ret < rdev->constraints->min_uV)
1921 ret = 0;
1922 else if (ret > rdev->constraints->max_uV)
1923 ret = 0;
1924 }
1925
1926 return ret;
1927}
1928EXPORT_SYMBOL_GPL(regulator_list_voltage);
1929
1930/**
Mark Browna7a1ad92009-07-21 16:00:24 +01001931 * regulator_is_supported_voltage - check if a voltage range can be supported
1932 *
1933 * @regulator: Regulator to check.
1934 * @min_uV: Minimum required voltage in uV.
1935 * @max_uV: Maximum required voltage in uV.
1936 *
1937 * Returns a boolean or a negative error code.
1938 */
1939int regulator_is_supported_voltage(struct regulator *regulator,
1940 int min_uV, int max_uV)
1941{
Mark Brownc5f39392012-07-02 15:00:18 +01001942 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01001943 int i, voltages, ret;
1944
Mark Brownc5f39392012-07-02 15:00:18 +01001945 /* If we can't change voltage check the current voltage */
1946 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
1947 ret = regulator_get_voltage(regulator);
1948 if (ret >= 0)
1949 return (min_uV >= ret && ret <= max_uV);
1950 else
1951 return ret;
1952 }
1953
Mark Browna7a1ad92009-07-21 16:00:24 +01001954 ret = regulator_count_voltages(regulator);
1955 if (ret < 0)
1956 return ret;
1957 voltages = ret;
1958
1959 for (i = 0; i < voltages; i++) {
1960 ret = regulator_list_voltage(regulator, i);
1961
1962 if (ret >= min_uV && ret <= max_uV)
1963 return 1;
1964 }
1965
1966 return 0;
1967}
Mark Browna398eaa2011-12-28 12:48:45 +00001968EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01001969
Mark Brown4ab5b3d2012-04-15 11:23:30 +01001970/**
1971 * regulator_get_voltage_sel_regmap - standard get_voltage_sel for regmap users
1972 *
1973 * @rdev: regulator to operate on
1974 *
1975 * Regulators that use regmap for their register I/O can set the
1976 * vsel_reg and vsel_mask fields in their descriptor and then use this
1977 * as their get_voltage_vsel operation, saving some code.
1978 */
1979int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev)
1980{
1981 unsigned int val;
1982 int ret;
1983
1984 ret = regmap_read(rdev->regmap, rdev->desc->vsel_reg, &val);
1985 if (ret != 0)
1986 return ret;
1987
1988 val &= rdev->desc->vsel_mask;
1989 val >>= ffs(rdev->desc->vsel_mask) - 1;
1990
1991 return val;
1992}
1993EXPORT_SYMBOL_GPL(regulator_get_voltage_sel_regmap);
1994
1995/**
1996 * regulator_set_voltage_sel_regmap - standard set_voltage_sel for regmap users
1997 *
1998 * @rdev: regulator to operate on
1999 * @sel: Selector to set
2000 *
2001 * Regulators that use regmap for their register I/O can set the
2002 * vsel_reg and vsel_mask fields in their descriptor and then use this
2003 * as their set_voltage_vsel operation, saving some code.
2004 */
2005int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel)
2006{
2007 sel <<= ffs(rdev->desc->vsel_mask) - 1;
2008
2009 return regmap_update_bits(rdev->regmap, rdev->desc->vsel_reg,
2010 rdev->desc->vsel_mask, sel);
2011}
2012EXPORT_SYMBOL_GPL(regulator_set_voltage_sel_regmap);
2013
Mark Browne843fc42012-05-09 21:16:06 +01002014/**
2015 * regulator_map_voltage_iterate - map_voltage() based on list_voltage()
2016 *
2017 * @rdev: Regulator to operate on
2018 * @min_uV: Lower bound for voltage
2019 * @max_uV: Upper bound for voltage
2020 *
2021 * Drivers implementing set_voltage_sel() and list_voltage() can use
2022 * this as their map_voltage() operation. It will find a suitable
2023 * voltage by calling list_voltage() until it gets something in bounds
2024 * for the requested voltages.
2025 */
2026int regulator_map_voltage_iterate(struct regulator_dev *rdev,
2027 int min_uV, int max_uV)
2028{
2029 int best_val = INT_MAX;
2030 int selector = 0;
2031 int i, ret;
2032
2033 /* Find the smallest voltage that falls within the specified
2034 * range.
2035 */
2036 for (i = 0; i < rdev->desc->n_voltages; i++) {
2037 ret = rdev->desc->ops->list_voltage(rdev, i);
2038 if (ret < 0)
2039 continue;
2040
2041 if (ret < best_val && ret >= min_uV && ret <= max_uV) {
2042 best_val = ret;
2043 selector = i;
2044 }
2045 }
2046
2047 if (best_val != INT_MAX)
2048 return selector;
2049 else
2050 return -EINVAL;
2051}
2052EXPORT_SYMBOL_GPL(regulator_map_voltage_iterate);
2053
Mark Brownbca7bbf2012-05-09 21:38:33 +01002054/**
2055 * regulator_map_voltage_linear - map_voltage() for simple linear mappings
2056 *
2057 * @rdev: Regulator to operate on
2058 * @min_uV: Lower bound for voltage
2059 * @max_uV: Upper bound for voltage
2060 *
2061 * Drivers providing min_uV and uV_step in their regulator_desc can
2062 * use this as their map_voltage() operation.
2063 */
2064int regulator_map_voltage_linear(struct regulator_dev *rdev,
2065 int min_uV, int max_uV)
2066{
2067 int ret, voltage;
2068
Axel Lin5a6881e2012-06-07 10:05:14 +08002069 /* Allow uV_step to be 0 for fixed voltage */
2070 if (rdev->desc->n_voltages == 1 && rdev->desc->uV_step == 0) {
2071 if (min_uV <= rdev->desc->min_uV && rdev->desc->min_uV <= max_uV)
2072 return 0;
2073 else
2074 return -EINVAL;
2075 }
2076
Mark Brownbca7bbf2012-05-09 21:38:33 +01002077 if (!rdev->desc->uV_step) {
2078 BUG_ON(!rdev->desc->uV_step);
2079 return -EINVAL;
2080 }
2081
Axel Lin0bdc81e2012-06-07 09:52:12 +08002082 if (min_uV < rdev->desc->min_uV)
2083 min_uV = rdev->desc->min_uV;
2084
Axel Linccfcb1c2012-05-14 10:33:37 +08002085 ret = DIV_ROUND_UP(min_uV - rdev->desc->min_uV, rdev->desc->uV_step);
Mark Brownbca7bbf2012-05-09 21:38:33 +01002086 if (ret < 0)
2087 return ret;
2088
2089 /* Map back into a voltage to verify we're still in bounds */
2090 voltage = rdev->desc->ops->list_voltage(rdev, ret);
2091 if (voltage < min_uV || voltage > max_uV)
2092 return -EINVAL;
2093
2094 return ret;
2095}
2096EXPORT_SYMBOL_GPL(regulator_map_voltage_linear);
2097
Mark Brown75790252010-12-12 14:25:50 +00002098static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2099 int min_uV, int max_uV)
2100{
2101 int ret;
Linus Walleij77af1b22011-03-17 13:24:36 +01002102 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002103 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002104 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002105 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002106
2107 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2108
Mark Brownbf5892a2011-05-08 22:13:37 +01002109 min_uV += rdev->constraints->uV_offset;
2110 max_uV += rdev->constraints->uV_offset;
2111
Axel Lineba41a52012-04-04 10:32:10 +08002112 /*
2113 * If we can't obtain the old selector there is not enough
2114 * info to call set_voltage_time_sel().
2115 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002116 if (_regulator_is_enabled(rdev) &&
2117 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002118 rdev->desc->ops->get_voltage_sel) {
2119 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2120 if (old_selector < 0)
2121 return old_selector;
2122 }
2123
Mark Brown75790252010-12-12 14:25:50 +00002124 if (rdev->desc->ops->set_voltage) {
2125 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
2126 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002127
2128 if (ret >= 0) {
2129 if (rdev->desc->ops->list_voltage)
2130 best_val = rdev->desc->ops->list_voltage(rdev,
2131 selector);
2132 else
2133 best_val = _regulator_get_voltage(rdev);
2134 }
2135
Mark Browne8eef822010-12-12 14:36:17 +00002136 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002137 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002138 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2139 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002140 } else {
2141 if (rdev->desc->ops->list_voltage ==
2142 regulator_list_voltage_linear)
2143 ret = regulator_map_voltage_linear(rdev,
2144 min_uV, max_uV);
2145 else
2146 ret = regulator_map_voltage_iterate(rdev,
2147 min_uV, max_uV);
2148 }
Mark Browne8eef822010-12-12 14:36:17 +00002149
Mark Browne843fc42012-05-09 21:16:06 +01002150 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002151 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2152 if (min_uV <= best_val && max_uV >= best_val) {
2153 selector = ret;
2154 ret = rdev->desc->ops->set_voltage_sel(rdev,
2155 ret);
2156 } else {
2157 ret = -EINVAL;
2158 }
Mark Browne8eef822010-12-12 14:36:17 +00002159 }
Mark Brown75790252010-12-12 14:25:50 +00002160 } else {
2161 ret = -EINVAL;
2162 }
2163
Axel Lineba41a52012-04-04 10:32:10 +08002164 /* Call set_voltage_time_sel if successfully obtained old_selector */
Mark Brown5aff3a82012-06-26 11:16:58 +01002165 if (ret == 0 && _regulator_is_enabled(rdev) && old_selector >= 0 &&
Axel Lineba41a52012-04-04 10:32:10 +08002166 rdev->desc->ops->set_voltage_time_sel) {
2167
2168 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2169 old_selector, selector);
2170 if (delay < 0) {
2171 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2172 delay);
2173 delay = 0;
2174 }
Axel Lineba41a52012-04-04 10:32:10 +08002175
Philip Rakity8b96de32012-06-14 15:07:56 -07002176 /* Insert any necessary delays */
2177 if (delay >= 1000) {
2178 mdelay(delay / 1000);
2179 udelay(delay % 1000);
2180 } else if (delay) {
2181 udelay(delay);
2182 }
Linus Walleij77af1b22011-03-17 13:24:36 +01002183 }
2184
Axel Lin2f6c7972012-08-06 23:44:19 +08002185 if (ret == 0 && best_val >= 0) {
2186 unsigned long data = best_val;
2187
Mark Brownded06a52010-12-16 13:59:10 +00002188 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002189 (void *)data);
2190 }
Mark Brownded06a52010-12-16 13:59:10 +00002191
Axel Lineba41a52012-04-04 10:32:10 +08002192 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002193
2194 return ret;
2195}
2196
Mark Browna7a1ad92009-07-21 16:00:24 +01002197/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002198 * regulator_set_voltage - set regulator output voltage
2199 * @regulator: regulator source
2200 * @min_uV: Minimum required voltage in uV
2201 * @max_uV: Maximum acceptable voltage in uV
2202 *
2203 * Sets a voltage regulator to the desired output voltage. This can be set
2204 * during any regulator state. IOW, regulator can be disabled or enabled.
2205 *
2206 * If the regulator is enabled then the voltage will change to the new value
2207 * immediately otherwise if the regulator is disabled the regulator will
2208 * output at the new voltage when enabled.
2209 *
2210 * NOTE: If the regulator is shared between several devices then the lowest
2211 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002212 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002213 * calling this function otherwise this call will fail.
2214 */
2215int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2216{
2217 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002218 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002219
2220 mutex_lock(&rdev->mutex);
2221
Mark Brown95a3c232010-12-16 15:49:37 +00002222 /* If we're setting the same range as last time the change
2223 * should be a noop (some cpufreq implementations use the same
2224 * voltage for multiple frequencies, for example).
2225 */
2226 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2227 goto out;
2228
Liam Girdwood414c70c2008-04-30 15:59:04 +01002229 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002230 if (!rdev->desc->ops->set_voltage &&
2231 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002232 ret = -EINVAL;
2233 goto out;
2234 }
2235
2236 /* constraints check */
2237 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2238 if (ret < 0)
2239 goto out;
2240 regulator->min_uV = min_uV;
2241 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002242
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002243 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2244 if (ret < 0)
2245 goto out;
2246
Mark Brown75790252010-12-12 14:25:50 +00002247 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Mark Brown02fa3ec2010-11-10 14:38:30 +00002248
Liam Girdwood414c70c2008-04-30 15:59:04 +01002249out:
2250 mutex_unlock(&rdev->mutex);
2251 return ret;
2252}
2253EXPORT_SYMBOL_GPL(regulator_set_voltage);
2254
Mark Brown606a2562010-12-16 15:49:36 +00002255/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002256 * regulator_set_voltage_time - get raise/fall time
2257 * @regulator: regulator source
2258 * @old_uV: starting voltage in microvolts
2259 * @new_uV: target voltage in microvolts
2260 *
2261 * Provided with the starting and ending voltage, this function attempts to
2262 * calculate the time in microseconds required to rise or fall to this new
2263 * voltage.
2264 */
2265int regulator_set_voltage_time(struct regulator *regulator,
2266 int old_uV, int new_uV)
2267{
2268 struct regulator_dev *rdev = regulator->rdev;
2269 struct regulator_ops *ops = rdev->desc->ops;
2270 int old_sel = -1;
2271 int new_sel = -1;
2272 int voltage;
2273 int i;
2274
2275 /* Currently requires operations to do this */
2276 if (!ops->list_voltage || !ops->set_voltage_time_sel
2277 || !rdev->desc->n_voltages)
2278 return -EINVAL;
2279
2280 for (i = 0; i < rdev->desc->n_voltages; i++) {
2281 /* We only look for exact voltage matches here */
2282 voltage = regulator_list_voltage(regulator, i);
2283 if (voltage < 0)
2284 return -EINVAL;
2285 if (voltage == 0)
2286 continue;
2287 if (voltage == old_uV)
2288 old_sel = i;
2289 if (voltage == new_uV)
2290 new_sel = i;
2291 }
2292
2293 if (old_sel < 0 || new_sel < 0)
2294 return -EINVAL;
2295
2296 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2297}
2298EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2299
2300/**
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302301 *regulator_set_voltage_time_sel - get raise/fall time
2302 * @regulator: regulator source
2303 * @old_selector: selector for starting voltage
2304 * @new_selector: selector for target voltage
2305 *
2306 * Provided with the starting and target voltage selectors, this function
2307 * returns time in microseconds required to rise or fall to this new voltage
2308 *
Axel Linf11d08c2012-06-19 09:38:45 +08002309 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002310 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302311 */
2312int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2313 unsigned int old_selector,
2314 unsigned int new_selector)
2315{
Axel Lin398715a2012-06-18 10:11:28 +08002316 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002317 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002318
2319 if (rdev->constraints->ramp_delay)
2320 ramp_delay = rdev->constraints->ramp_delay;
2321 else if (rdev->desc->ramp_delay)
2322 ramp_delay = rdev->desc->ramp_delay;
2323
2324 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302325 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002326 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302327 }
Axel Lin398715a2012-06-18 10:11:28 +08002328
Axel Linf11d08c2012-06-19 09:38:45 +08002329 /* sanity check */
2330 if (!rdev->desc->ops->list_voltage)
2331 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002332
Axel Linf11d08c2012-06-19 09:38:45 +08002333 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2334 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2335
2336 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302337}
Mark Brownb19dbf72012-06-23 11:34:20 +01002338EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302339
2340/**
Mark Brown606a2562010-12-16 15:49:36 +00002341 * regulator_sync_voltage - re-apply last regulator output voltage
2342 * @regulator: regulator source
2343 *
2344 * Re-apply the last configured voltage. This is intended to be used
2345 * where some external control source the consumer is cooperating with
2346 * has caused the configured voltage to change.
2347 */
2348int regulator_sync_voltage(struct regulator *regulator)
2349{
2350 struct regulator_dev *rdev = regulator->rdev;
2351 int ret, min_uV, max_uV;
2352
2353 mutex_lock(&rdev->mutex);
2354
2355 if (!rdev->desc->ops->set_voltage &&
2356 !rdev->desc->ops->set_voltage_sel) {
2357 ret = -EINVAL;
2358 goto out;
2359 }
2360
2361 /* This is only going to work if we've had a voltage configured. */
2362 if (!regulator->min_uV && !regulator->max_uV) {
2363 ret = -EINVAL;
2364 goto out;
2365 }
2366
2367 min_uV = regulator->min_uV;
2368 max_uV = regulator->max_uV;
2369
2370 /* This should be a paranoia check... */
2371 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2372 if (ret < 0)
2373 goto out;
2374
2375 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2376 if (ret < 0)
2377 goto out;
2378
2379 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2380
2381out:
2382 mutex_unlock(&rdev->mutex);
2383 return ret;
2384}
2385EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2386
Liam Girdwood414c70c2008-04-30 15:59:04 +01002387static int _regulator_get_voltage(struct regulator_dev *rdev)
2388{
Mark Brownbf5892a2011-05-08 22:13:37 +01002389 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002390
2391 if (rdev->desc->ops->get_voltage_sel) {
2392 sel = rdev->desc->ops->get_voltage_sel(rdev);
2393 if (sel < 0)
2394 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002395 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002396 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002397 ret = rdev->desc->ops->get_voltage(rdev);
Axel Lincb220d12011-05-23 20:08:10 +08002398 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002399 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002400 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002401
Axel Lincb220d12011-05-23 20:08:10 +08002402 if (ret < 0)
2403 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002404 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002405}
2406
2407/**
2408 * regulator_get_voltage - get regulator output voltage
2409 * @regulator: regulator source
2410 *
2411 * This returns the current regulator voltage in uV.
2412 *
2413 * NOTE: If the regulator is disabled it will return the voltage value. This
2414 * function should not be used to determine regulator state.
2415 */
2416int regulator_get_voltage(struct regulator *regulator)
2417{
2418 int ret;
2419
2420 mutex_lock(&regulator->rdev->mutex);
2421
2422 ret = _regulator_get_voltage(regulator->rdev);
2423
2424 mutex_unlock(&regulator->rdev->mutex);
2425
2426 return ret;
2427}
2428EXPORT_SYMBOL_GPL(regulator_get_voltage);
2429
2430/**
2431 * regulator_set_current_limit - set regulator output current limit
2432 * @regulator: regulator source
2433 * @min_uA: Minimuum supported current in uA
2434 * @max_uA: Maximum supported current in uA
2435 *
2436 * Sets current sink to the desired output current. This can be set during
2437 * any regulator state. IOW, regulator can be disabled or enabled.
2438 *
2439 * If the regulator is enabled then the current will change to the new value
2440 * immediately otherwise if the regulator is disabled the regulator will
2441 * output at the new current when enabled.
2442 *
2443 * NOTE: Regulator system constraints must be set for this regulator before
2444 * calling this function otherwise this call will fail.
2445 */
2446int regulator_set_current_limit(struct regulator *regulator,
2447 int min_uA, int max_uA)
2448{
2449 struct regulator_dev *rdev = regulator->rdev;
2450 int ret;
2451
2452 mutex_lock(&rdev->mutex);
2453
2454 /* sanity check */
2455 if (!rdev->desc->ops->set_current_limit) {
2456 ret = -EINVAL;
2457 goto out;
2458 }
2459
2460 /* constraints check */
2461 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2462 if (ret < 0)
2463 goto out;
2464
2465 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2466out:
2467 mutex_unlock(&rdev->mutex);
2468 return ret;
2469}
2470EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2471
2472static int _regulator_get_current_limit(struct regulator_dev *rdev)
2473{
2474 int ret;
2475
2476 mutex_lock(&rdev->mutex);
2477
2478 /* sanity check */
2479 if (!rdev->desc->ops->get_current_limit) {
2480 ret = -EINVAL;
2481 goto out;
2482 }
2483
2484 ret = rdev->desc->ops->get_current_limit(rdev);
2485out:
2486 mutex_unlock(&rdev->mutex);
2487 return ret;
2488}
2489
2490/**
2491 * regulator_get_current_limit - get regulator output current
2492 * @regulator: regulator source
2493 *
2494 * This returns the current supplied by the specified current sink in uA.
2495 *
2496 * NOTE: If the regulator is disabled it will return the current value. This
2497 * function should not be used to determine regulator state.
2498 */
2499int regulator_get_current_limit(struct regulator *regulator)
2500{
2501 return _regulator_get_current_limit(regulator->rdev);
2502}
2503EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2504
2505/**
2506 * regulator_set_mode - set regulator operating mode
2507 * @regulator: regulator source
2508 * @mode: operating mode - one of the REGULATOR_MODE constants
2509 *
2510 * Set regulator operating mode to increase regulator efficiency or improve
2511 * regulation performance.
2512 *
2513 * NOTE: Regulator system constraints must be set for this regulator before
2514 * calling this function otherwise this call will fail.
2515 */
2516int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2517{
2518 struct regulator_dev *rdev = regulator->rdev;
2519 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302520 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002521
2522 mutex_lock(&rdev->mutex);
2523
2524 /* sanity check */
2525 if (!rdev->desc->ops->set_mode) {
2526 ret = -EINVAL;
2527 goto out;
2528 }
2529
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302530 /* return if the same mode is requested */
2531 if (rdev->desc->ops->get_mode) {
2532 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2533 if (regulator_curr_mode == mode) {
2534 ret = 0;
2535 goto out;
2536 }
2537 }
2538
Liam Girdwood414c70c2008-04-30 15:59:04 +01002539 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08002540 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002541 if (ret < 0)
2542 goto out;
2543
2544 ret = rdev->desc->ops->set_mode(rdev, mode);
2545out:
2546 mutex_unlock(&rdev->mutex);
2547 return ret;
2548}
2549EXPORT_SYMBOL_GPL(regulator_set_mode);
2550
2551static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2552{
2553 int ret;
2554
2555 mutex_lock(&rdev->mutex);
2556
2557 /* sanity check */
2558 if (!rdev->desc->ops->get_mode) {
2559 ret = -EINVAL;
2560 goto out;
2561 }
2562
2563 ret = rdev->desc->ops->get_mode(rdev);
2564out:
2565 mutex_unlock(&rdev->mutex);
2566 return ret;
2567}
2568
2569/**
2570 * regulator_get_mode - get regulator operating mode
2571 * @regulator: regulator source
2572 *
2573 * Get the current regulator operating mode.
2574 */
2575unsigned int regulator_get_mode(struct regulator *regulator)
2576{
2577 return _regulator_get_mode(regulator->rdev);
2578}
2579EXPORT_SYMBOL_GPL(regulator_get_mode);
2580
2581/**
2582 * regulator_set_optimum_mode - set regulator optimum operating mode
2583 * @regulator: regulator source
2584 * @uA_load: load current
2585 *
2586 * Notifies the regulator core of a new device load. This is then used by
2587 * DRMS (if enabled by constraints) to set the most efficient regulator
2588 * operating mode for the new regulator loading.
2589 *
2590 * Consumer devices notify their supply regulator of the maximum power
2591 * they will require (can be taken from device datasheet in the power
2592 * consumption tables) when they change operational status and hence power
2593 * state. Examples of operational state changes that can affect power
2594 * consumption are :-
2595 *
2596 * o Device is opened / closed.
2597 * o Device I/O is about to begin or has just finished.
2598 * o Device is idling in between work.
2599 *
2600 * This information is also exported via sysfs to userspace.
2601 *
2602 * DRMS will sum the total requested load on the regulator and change
2603 * to the most efficient operating mode if platform constraints allow.
2604 *
2605 * Returns the new regulator mode or error.
2606 */
2607int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
2608{
2609 struct regulator_dev *rdev = regulator->rdev;
2610 struct regulator *consumer;
Stephen Boydd92d95b62012-07-02 19:21:06 -07002611 int ret, output_uV, input_uV = 0, total_uA_load = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002612 unsigned int mode;
2613
Stephen Boydd92d95b62012-07-02 19:21:06 -07002614 if (rdev->supply)
2615 input_uV = regulator_get_voltage(rdev->supply);
2616
Liam Girdwood414c70c2008-04-30 15:59:04 +01002617 mutex_lock(&rdev->mutex);
2618
Mark Browna4b41482011-05-14 11:19:45 -07002619 /*
2620 * first check to see if we can set modes at all, otherwise just
2621 * tell the consumer everything is OK.
2622 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002623 regulator->uA_load = uA_load;
2624 ret = regulator_check_drms(rdev);
Mark Browna4b41482011-05-14 11:19:45 -07002625 if (ret < 0) {
2626 ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002627 goto out;
Mark Browna4b41482011-05-14 11:19:45 -07002628 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002629
Liam Girdwood414c70c2008-04-30 15:59:04 +01002630 if (!rdev->desc->ops->get_optimum_mode)
2631 goto out;
2632
Mark Browna4b41482011-05-14 11:19:45 -07002633 /*
2634 * we can actually do this so any errors are indicators of
2635 * potential real failure.
2636 */
2637 ret = -EINVAL;
2638
Axel Lin854ccba2012-04-16 18:44:23 +08002639 if (!rdev->desc->ops->set_mode)
2640 goto out;
2641
Liam Girdwood414c70c2008-04-30 15:59:04 +01002642 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002643 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002644 if (output_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002645 rdev_err(rdev, "invalid output voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002646 goto out;
2647 }
2648
Stephen Boydd92d95b62012-07-02 19:21:06 -07002649 /* No supply? Use constraint voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002650 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002651 input_uV = rdev->constraints->input_uV;
2652 if (input_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002653 rdev_err(rdev, "invalid input voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002654 goto out;
2655 }
2656
2657 /* calc total requested load for this regulator */
2658 list_for_each_entry(consumer, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +01002659 total_uA_load += consumer->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002660
2661 mode = rdev->desc->ops->get_optimum_mode(rdev,
2662 input_uV, output_uV,
2663 total_uA_load);
Mark Brown2c608232011-03-30 06:29:12 +09002664 ret = regulator_mode_constrain(rdev, &mode);
David Brownelle5735202008-11-16 11:46:56 -08002665 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002666 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
2667 total_uA_load, input_uV, output_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002668 goto out;
2669 }
2670
2671 ret = rdev->desc->ops->set_mode(rdev, mode);
David Brownelle5735202008-11-16 11:46:56 -08002672 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002673 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002674 goto out;
2675 }
2676 ret = mode;
2677out:
2678 mutex_unlock(&rdev->mutex);
2679 return ret;
2680}
2681EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
2682
2683/**
2684 * regulator_register_notifier - register regulator event notifier
2685 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002686 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002687 *
2688 * Register notifier block to receive regulator events.
2689 */
2690int regulator_register_notifier(struct regulator *regulator,
2691 struct notifier_block *nb)
2692{
2693 return blocking_notifier_chain_register(&regulator->rdev->notifier,
2694 nb);
2695}
2696EXPORT_SYMBOL_GPL(regulator_register_notifier);
2697
2698/**
2699 * regulator_unregister_notifier - unregister regulator event notifier
2700 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002701 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002702 *
2703 * Unregister regulator event notifier block.
2704 */
2705int regulator_unregister_notifier(struct regulator *regulator,
2706 struct notifier_block *nb)
2707{
2708 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
2709 nb);
2710}
2711EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
2712
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002713/* notify regulator consumers and downstream regulator consumers.
2714 * Note mutex must be held by caller.
2715 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002716static void _notifier_call_chain(struct regulator_dev *rdev,
2717 unsigned long event, void *data)
2718{
Liam Girdwood414c70c2008-04-30 15:59:04 +01002719 /* call rdev chain first */
Mark Brownd8493d22012-06-15 19:09:09 +01002720 blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002721}
2722
2723/**
2724 * regulator_bulk_get - get multiple regulator consumers
2725 *
2726 * @dev: Device to supply
2727 * @num_consumers: Number of consumers to register
2728 * @consumers: Configuration of consumers; clients are stored here.
2729 *
2730 * @return 0 on success, an errno on failure.
2731 *
2732 * This helper function allows drivers to get several regulator
2733 * consumers in one operation. If any of the regulators cannot be
2734 * acquired then any regulators that were allocated will be freed
2735 * before returning to the caller.
2736 */
2737int regulator_bulk_get(struct device *dev, int num_consumers,
2738 struct regulator_bulk_data *consumers)
2739{
2740 int i;
2741 int ret;
2742
2743 for (i = 0; i < num_consumers; i++)
2744 consumers[i].consumer = NULL;
2745
2746 for (i = 0; i < num_consumers; i++) {
2747 consumers[i].consumer = regulator_get(dev,
2748 consumers[i].supply);
2749 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002750 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01002751 dev_err(dev, "Failed to get supply '%s': %d\n",
2752 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002753 consumers[i].consumer = NULL;
2754 goto err;
2755 }
2756 }
2757
2758 return 0;
2759
2760err:
Axel Linb29c7692012-02-20 10:32:16 +08002761 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002762 regulator_put(consumers[i].consumer);
2763
2764 return ret;
2765}
2766EXPORT_SYMBOL_GPL(regulator_bulk_get);
2767
Mark Browne6e74032012-01-20 20:10:08 +00002768/**
2769 * devm_regulator_bulk_get - managed get multiple regulator consumers
2770 *
2771 * @dev: Device to supply
2772 * @num_consumers: Number of consumers to register
2773 * @consumers: Configuration of consumers; clients are stored here.
2774 *
2775 * @return 0 on success, an errno on failure.
2776 *
2777 * This helper function allows drivers to get several regulator
2778 * consumers in one operation with management, the regulators will
2779 * automatically be freed when the device is unbound. If any of the
2780 * regulators cannot be acquired then any regulators that were
2781 * allocated will be freed before returning to the caller.
2782 */
2783int devm_regulator_bulk_get(struct device *dev, int num_consumers,
2784 struct regulator_bulk_data *consumers)
2785{
2786 int i;
2787 int ret;
2788
2789 for (i = 0; i < num_consumers; i++)
2790 consumers[i].consumer = NULL;
2791
2792 for (i = 0; i < num_consumers; i++) {
2793 consumers[i].consumer = devm_regulator_get(dev,
2794 consumers[i].supply);
2795 if (IS_ERR(consumers[i].consumer)) {
2796 ret = PTR_ERR(consumers[i].consumer);
2797 dev_err(dev, "Failed to get supply '%s': %d\n",
2798 consumers[i].supply, ret);
2799 consumers[i].consumer = NULL;
2800 goto err;
2801 }
2802 }
2803
2804 return 0;
2805
2806err:
2807 for (i = 0; i < num_consumers && consumers[i].consumer; i++)
2808 devm_regulator_put(consumers[i].consumer);
2809
2810 return ret;
2811}
2812EXPORT_SYMBOL_GPL(devm_regulator_bulk_get);
2813
Mark Brownf21e0e82011-05-24 08:12:40 +08002814static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
2815{
2816 struct regulator_bulk_data *bulk = data;
2817
2818 bulk->ret = regulator_enable(bulk->consumer);
2819}
2820
Liam Girdwood414c70c2008-04-30 15:59:04 +01002821/**
2822 * regulator_bulk_enable - enable multiple regulator consumers
2823 *
2824 * @num_consumers: Number of consumers
2825 * @consumers: Consumer data; clients are stored here.
2826 * @return 0 on success, an errno on failure
2827 *
2828 * This convenience API allows consumers to enable multiple regulator
2829 * clients in a single API call. If any consumers cannot be enabled
2830 * then any others that were enabled will be disabled again prior to
2831 * return.
2832 */
2833int regulator_bulk_enable(int num_consumers,
2834 struct regulator_bulk_data *consumers)
2835{
Dan Williams2955b472012-07-09 19:33:25 -07002836 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002837 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08002838 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002839
Mark Brown6492bc12012-04-19 13:19:07 +01002840 for (i = 0; i < num_consumers; i++) {
2841 if (consumers[i].consumer->always_on)
2842 consumers[i].ret = 0;
2843 else
2844 async_schedule_domain(regulator_bulk_enable_async,
2845 &consumers[i], &async_domain);
2846 }
Mark Brownf21e0e82011-05-24 08:12:40 +08002847
2848 async_synchronize_full_domain(&async_domain);
2849
2850 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002851 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08002852 if (consumers[i].ret != 0) {
2853 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002854 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08002855 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002856 }
2857
2858 return 0;
2859
2860err:
Axel Linb29c7692012-02-20 10:32:16 +08002861 pr_err("Failed to enable %s: %d\n", consumers[i].supply, ret);
2862 while (--i >= 0)
2863 regulator_disable(consumers[i].consumer);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002864
2865 return ret;
2866}
2867EXPORT_SYMBOL_GPL(regulator_bulk_enable);
2868
2869/**
2870 * regulator_bulk_disable - disable multiple regulator consumers
2871 *
2872 * @num_consumers: Number of consumers
2873 * @consumers: Consumer data; clients are stored here.
2874 * @return 0 on success, an errno on failure
2875 *
2876 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01002877 * clients in a single API call. If any consumers cannot be disabled
2878 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01002879 * return.
2880 */
2881int regulator_bulk_disable(int num_consumers,
2882 struct regulator_bulk_data *consumers)
2883{
2884 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01002885 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002886
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01002887 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002888 ret = regulator_disable(consumers[i].consumer);
2889 if (ret != 0)
2890 goto err;
2891 }
2892
2893 return 0;
2894
2895err:
Joe Perches5da84fd2010-11-30 05:53:48 -08002896 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01002897 for (++i; i < num_consumers; ++i) {
2898 r = regulator_enable(consumers[i].consumer);
2899 if (r != 0)
2900 pr_err("Failed to reename %s: %d\n",
2901 consumers[i].supply, r);
2902 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002903
2904 return ret;
2905}
2906EXPORT_SYMBOL_GPL(regulator_bulk_disable);
2907
2908/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09002909 * regulator_bulk_force_disable - force disable multiple regulator consumers
2910 *
2911 * @num_consumers: Number of consumers
2912 * @consumers: Consumer data; clients are stored here.
2913 * @return 0 on success, an errno on failure
2914 *
2915 * This convenience API allows consumers to forcibly disable multiple regulator
2916 * clients in a single API call.
2917 * NOTE: This should be used for situations when device damage will
2918 * likely occur if the regulators are not disabled (e.g. over temp).
2919 * Although regulator_force_disable function call for some consumers can
2920 * return error numbers, the function is called for all consumers.
2921 */
2922int regulator_bulk_force_disable(int num_consumers,
2923 struct regulator_bulk_data *consumers)
2924{
2925 int i;
2926 int ret;
2927
2928 for (i = 0; i < num_consumers; i++)
2929 consumers[i].ret =
2930 regulator_force_disable(consumers[i].consumer);
2931
2932 for (i = 0; i < num_consumers; i++) {
2933 if (consumers[i].ret != 0) {
2934 ret = consumers[i].ret;
2935 goto out;
2936 }
2937 }
2938
2939 return 0;
2940out:
2941 return ret;
2942}
2943EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
2944
2945/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002946 * regulator_bulk_free - free multiple regulator consumers
2947 *
2948 * @num_consumers: Number of consumers
2949 * @consumers: Consumer data; clients are stored here.
2950 *
2951 * This convenience API allows consumers to free multiple regulator
2952 * clients in a single API call.
2953 */
2954void regulator_bulk_free(int num_consumers,
2955 struct regulator_bulk_data *consumers)
2956{
2957 int i;
2958
2959 for (i = 0; i < num_consumers; i++) {
2960 regulator_put(consumers[i].consumer);
2961 consumers[i].consumer = NULL;
2962 }
2963}
2964EXPORT_SYMBOL_GPL(regulator_bulk_free);
2965
2966/**
2967 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00002968 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01002969 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00002970 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002971 *
2972 * Called by regulator drivers to notify clients a regulator event has
2973 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002974 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002975 */
2976int regulator_notifier_call_chain(struct regulator_dev *rdev,
2977 unsigned long event, void *data)
2978{
2979 _notifier_call_chain(rdev, event, data);
2980 return NOTIFY_DONE;
2981
2982}
2983EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
2984
Mark Brownbe721972009-08-04 20:09:52 +02002985/**
2986 * regulator_mode_to_status - convert a regulator mode into a status
2987 *
2988 * @mode: Mode to convert
2989 *
2990 * Convert a regulator mode into a status.
2991 */
2992int regulator_mode_to_status(unsigned int mode)
2993{
2994 switch (mode) {
2995 case REGULATOR_MODE_FAST:
2996 return REGULATOR_STATUS_FAST;
2997 case REGULATOR_MODE_NORMAL:
2998 return REGULATOR_STATUS_NORMAL;
2999 case REGULATOR_MODE_IDLE:
3000 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003001 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003002 return REGULATOR_STATUS_STANDBY;
3003 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003004 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003005 }
3006}
3007EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3008
David Brownell7ad68e22008-11-11 17:39:02 -08003009/*
3010 * To avoid cluttering sysfs (and memory) with useless state, only
3011 * create attributes that can be meaningfully displayed.
3012 */
3013static int add_regulator_attributes(struct regulator_dev *rdev)
3014{
3015 struct device *dev = &rdev->dev;
3016 struct regulator_ops *ops = rdev->desc->ops;
3017 int status = 0;
3018
3019 /* some attributes need specific methods to be displayed */
Mark Brown4c788992011-11-02 11:39:09 +00003020 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3021 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0)) {
David Brownell7ad68e22008-11-11 17:39:02 -08003022 status = device_create_file(dev, &dev_attr_microvolts);
3023 if (status < 0)
3024 return status;
3025 }
3026 if (ops->get_current_limit) {
3027 status = device_create_file(dev, &dev_attr_microamps);
3028 if (status < 0)
3029 return status;
3030 }
3031 if (ops->get_mode) {
3032 status = device_create_file(dev, &dev_attr_opmode);
3033 if (status < 0)
3034 return status;
3035 }
3036 if (ops->is_enabled) {
3037 status = device_create_file(dev, &dev_attr_state);
3038 if (status < 0)
3039 return status;
3040 }
David Brownell853116a2009-01-14 23:03:17 -08003041 if (ops->get_status) {
3042 status = device_create_file(dev, &dev_attr_status);
3043 if (status < 0)
3044 return status;
3045 }
David Brownell7ad68e22008-11-11 17:39:02 -08003046
3047 /* some attributes are type-specific */
3048 if (rdev->desc->type == REGULATOR_CURRENT) {
3049 status = device_create_file(dev, &dev_attr_requested_microamps);
3050 if (status < 0)
3051 return status;
3052 }
3053
3054 /* all the other attributes exist to support constraints;
3055 * don't show them if there are no constraints, or if the
3056 * relevant supporting methods are missing.
3057 */
3058 if (!rdev->constraints)
3059 return status;
3060
3061 /* constraints need specific supporting methods */
Mark Browne8eef822010-12-12 14:36:17 +00003062 if (ops->set_voltage || ops->set_voltage_sel) {
David Brownell7ad68e22008-11-11 17:39:02 -08003063 status = device_create_file(dev, &dev_attr_min_microvolts);
3064 if (status < 0)
3065 return status;
3066 status = device_create_file(dev, &dev_attr_max_microvolts);
3067 if (status < 0)
3068 return status;
3069 }
3070 if (ops->set_current_limit) {
3071 status = device_create_file(dev, &dev_attr_min_microamps);
3072 if (status < 0)
3073 return status;
3074 status = device_create_file(dev, &dev_attr_max_microamps);
3075 if (status < 0)
3076 return status;
3077 }
3078
David Brownell7ad68e22008-11-11 17:39:02 -08003079 status = device_create_file(dev, &dev_attr_suspend_standby_state);
3080 if (status < 0)
3081 return status;
3082 status = device_create_file(dev, &dev_attr_suspend_mem_state);
3083 if (status < 0)
3084 return status;
3085 status = device_create_file(dev, &dev_attr_suspend_disk_state);
3086 if (status < 0)
3087 return status;
3088
3089 if (ops->set_suspend_voltage) {
3090 status = device_create_file(dev,
3091 &dev_attr_suspend_standby_microvolts);
3092 if (status < 0)
3093 return status;
3094 status = device_create_file(dev,
3095 &dev_attr_suspend_mem_microvolts);
3096 if (status < 0)
3097 return status;
3098 status = device_create_file(dev,
3099 &dev_attr_suspend_disk_microvolts);
3100 if (status < 0)
3101 return status;
3102 }
3103
3104 if (ops->set_suspend_mode) {
3105 status = device_create_file(dev,
3106 &dev_attr_suspend_standby_mode);
3107 if (status < 0)
3108 return status;
3109 status = device_create_file(dev,
3110 &dev_attr_suspend_mem_mode);
3111 if (status < 0)
3112 return status;
3113 status = device_create_file(dev,
3114 &dev_attr_suspend_disk_mode);
3115 if (status < 0)
3116 return status;
3117 }
3118
3119 return status;
3120}
3121
Mark Brown1130e5b2010-12-21 23:49:31 +00003122static void rdev_init_debugfs(struct regulator_dev *rdev)
3123{
Mark Brown1130e5b2010-12-21 23:49:31 +00003124 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003125 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003126 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003127 return;
3128 }
3129
3130 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3131 &rdev->use_count);
3132 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3133 &rdev->open_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003134}
3135
Liam Girdwood414c70c2008-04-30 15:59:04 +01003136/**
3137 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003138 * @regulator_desc: regulator to register
Mark Brownc1727082012-04-04 00:50:22 +01003139 * @config: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003140 *
3141 * Called by regulator drivers to register a regulator.
3142 * Returns 0 on success.
3143 */
Mark Brown65f26842012-04-03 20:46:53 +01003144struct regulator_dev *
3145regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc1727082012-04-04 00:50:22 +01003146 const struct regulator_config *config)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003147{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003148 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003149 const struct regulator_init_data *init_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003150 static atomic_t regulator_no = ATOMIC_INIT(0);
3151 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003152 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003153 int ret, i;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303154 const char *supply = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003155
Mark Brownc1727082012-04-04 00:50:22 +01003156 if (regulator_desc == NULL || config == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003157 return ERR_PTR(-EINVAL);
3158
Mark Brown32c8fad2012-04-11 10:19:12 +01003159 dev = config->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003160 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003161
Liam Girdwood414c70c2008-04-30 15:59:04 +01003162 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3163 return ERR_PTR(-EINVAL);
3164
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003165 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3166 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003167 return ERR_PTR(-EINVAL);
3168
Mark Brown476c2d82010-12-10 17:28:07 +00003169 /* Only one of each should be implemented */
3170 WARN_ON(regulator_desc->ops->get_voltage &&
3171 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003172 WARN_ON(regulator_desc->ops->set_voltage &&
3173 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003174
3175 /* If we're using selectors we must implement list_voltage. */
3176 if (regulator_desc->ops->get_voltage_sel &&
3177 !regulator_desc->ops->list_voltage) {
3178 return ERR_PTR(-EINVAL);
3179 }
Mark Browne8eef822010-12-12 14:36:17 +00003180 if (regulator_desc->ops->set_voltage_sel &&
3181 !regulator_desc->ops->list_voltage) {
3182 return ERR_PTR(-EINVAL);
3183 }
Mark Brown476c2d82010-12-10 17:28:07 +00003184
Mark Brownc1727082012-04-04 00:50:22 +01003185 init_data = config->init_data;
3186
Liam Girdwood414c70c2008-04-30 15:59:04 +01003187 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3188 if (rdev == NULL)
3189 return ERR_PTR(-ENOMEM);
3190
3191 mutex_lock(&regulator_list_mutex);
3192
3193 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003194 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003195 rdev->owner = regulator_desc->owner;
3196 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003197 if (config->regmap)
3198 rdev->regmap = config->regmap;
3199 else
3200 rdev->regmap = dev_get_regmap(dev, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003201 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003202 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003203 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003204 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003205
Liam Girdwooda5766f12008-10-10 13:22:20 +01003206 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003207 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003208 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003209 if (ret < 0)
3210 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003211 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003212
Liam Girdwooda5766f12008-10-10 13:22:20 +01003213 /* register with sysfs */
3214 rdev->dev.class = &regulator_class;
Mark Brownc1727082012-04-04 00:50:22 +01003215 rdev->dev.of_node = config->of_node;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003216 rdev->dev.parent = dev;
Kay Sievers812460a2008-11-02 03:55:10 +01003217 dev_set_name(&rdev->dev, "regulator.%d",
3218 atomic_inc_return(&regulator_no) - 1);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003219 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003220 if (ret != 0) {
3221 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003222 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003223 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003224
3225 dev_set_drvdata(&rdev->dev, rdev);
3226
Mark Brown65f73502012-06-27 14:14:38 +01003227 if (config->ena_gpio) {
3228 ret = gpio_request_one(config->ena_gpio,
3229 GPIOF_DIR_OUT | config->ena_gpio_flags,
3230 rdev_get_name(rdev));
3231 if (ret != 0) {
3232 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3233 config->ena_gpio, ret);
3234 goto clean;
3235 }
3236
3237 rdev->ena_gpio = config->ena_gpio;
3238 rdev->ena_gpio_invert = config->ena_gpio_invert;
3239
3240 if (config->ena_gpio_flags & GPIOF_OUT_INIT_HIGH)
3241 rdev->ena_gpio_state = 1;
3242
3243 if (rdev->ena_gpio_invert)
3244 rdev->ena_gpio_state = !rdev->ena_gpio_state;
3245 }
3246
Mike Rapoport74f544c2008-11-25 14:53:53 +02003247 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003248 if (init_data)
3249 constraints = &init_data->constraints;
3250
3251 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003252 if (ret < 0)
3253 goto scrub;
3254
David Brownell7ad68e22008-11-11 17:39:02 -08003255 /* add attributes supported by this regulator */
3256 ret = add_regulator_attributes(rdev);
3257 if (ret < 0)
3258 goto scrub;
3259
Mark Brown9a8f5e02011-11-29 18:11:19 +00003260 if (init_data && init_data->supply_regulator)
Rajendra Nayak69511a42011-11-18 16:47:20 +05303261 supply = init_data->supply_regulator;
3262 else if (regulator_desc->supply_name)
3263 supply = regulator_desc->supply_name;
3264
3265 if (supply) {
Mark Brown0178f3e2010-04-26 15:18:14 +01003266 struct regulator_dev *r;
Mark Brown0178f3e2010-04-26 15:18:14 +01003267
Mark Brown6d191a52012-03-29 14:19:02 +01003268 r = regulator_dev_lookup(dev, supply, &ret);
Mark Brown0178f3e2010-04-26 15:18:14 +01003269
Rajendra Nayak69511a42011-11-18 16:47:20 +05303270 if (!r) {
3271 dev_err(dev, "Failed to find supply %s\n", supply);
Mark Brown04bf3012012-03-11 13:07:56 +00003272 ret = -EPROBE_DEFER;
Mark Brown0178f3e2010-04-26 15:18:14 +01003273 goto scrub;
3274 }
3275
3276 ret = set_supply(rdev, r);
3277 if (ret < 0)
3278 goto scrub;
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303279
3280 /* Enable supply if rail is enabled */
Mark Brownb1a86832012-05-14 00:40:14 +01003281 if (_regulator_is_enabled(rdev)) {
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303282 ret = regulator_enable(rdev->supply);
3283 if (ret < 0)
3284 goto scrub;
3285 }
Mark Brown0178f3e2010-04-26 15:18:14 +01003286 }
3287
Liam Girdwooda5766f12008-10-10 13:22:20 +01003288 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003289 if (init_data) {
3290 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3291 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003292 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003293 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003294 if (ret < 0) {
3295 dev_err(dev, "Failed to set supply %s\n",
3296 init_data->consumer_supplies[i].supply);
3297 goto unset_supplies;
3298 }
Mark Brown23c2f042011-02-24 17:39:09 +00003299 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003300 }
3301
3302 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003303
3304 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003305out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003306 mutex_unlock(&regulator_list_mutex);
3307 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003308
Jani Nikulad4033b52010-04-29 10:55:11 +03003309unset_supplies:
3310 unset_regulator_supplies(rdev);
3311
David Brownell4fca9542008-11-11 17:38:53 -08003312scrub:
Mark Browne81dba852012-05-13 18:35:56 +01003313 if (rdev->supply)
3314 regulator_put(rdev->supply);
Mark Brown65f73502012-06-27 14:14:38 +01003315 if (rdev->ena_gpio)
3316 gpio_free(rdev->ena_gpio);
Axel Lin1a6958e72011-07-15 10:50:43 +08003317 kfree(rdev->constraints);
David Brownell4fca9542008-11-11 17:38:53 -08003318 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003319 /* device core frees rdev */
3320 rdev = ERR_PTR(ret);
3321 goto out;
3322
David Brownell4fca9542008-11-11 17:38:53 -08003323clean:
3324 kfree(rdev);
3325 rdev = ERR_PTR(ret);
3326 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003327}
3328EXPORT_SYMBOL_GPL(regulator_register);
3329
3330/**
3331 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003332 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003333 *
3334 * Called by regulator drivers to unregister a regulator.
3335 */
3336void regulator_unregister(struct regulator_dev *rdev)
3337{
3338 if (rdev == NULL)
3339 return;
3340
Mark Browne032b372012-03-28 21:17:55 +01003341 if (rdev->supply)
3342 regulator_put(rdev->supply);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003343 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003344 debugfs_remove_recursive(rdev->debugfs);
Mark Brownda07ecd2011-09-11 09:53:50 +01003345 flush_work_sync(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003346 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003347 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003348 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003349 kfree(rdev->constraints);
Mark Brown65f73502012-06-27 14:14:38 +01003350 if (rdev->ena_gpio)
3351 gpio_free(rdev->ena_gpio);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003352 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003353 mutex_unlock(&regulator_list_mutex);
3354}
3355EXPORT_SYMBOL_GPL(regulator_unregister);
3356
3357/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003358 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003359 * @state: system suspend state
3360 *
3361 * Configure each regulator with it's suspend operating parameters for state.
3362 * This will usually be called by machine suspend code prior to supending.
3363 */
3364int regulator_suspend_prepare(suspend_state_t state)
3365{
3366 struct regulator_dev *rdev;
3367 int ret = 0;
3368
3369 /* ON is handled by regulator active state */
3370 if (state == PM_SUSPEND_ON)
3371 return -EINVAL;
3372
3373 mutex_lock(&regulator_list_mutex);
3374 list_for_each_entry(rdev, &regulator_list, list) {
3375
3376 mutex_lock(&rdev->mutex);
3377 ret = suspend_prepare(rdev, state);
3378 mutex_unlock(&rdev->mutex);
3379
3380 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003381 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003382 goto out;
3383 }
3384 }
3385out:
3386 mutex_unlock(&regulator_list_mutex);
3387 return ret;
3388}
3389EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3390
3391/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003392 * regulator_suspend_finish - resume regulators from system wide suspend
3393 *
3394 * Turn on regulators that might be turned off by regulator_suspend_prepare
3395 * and that should be turned on according to the regulators properties.
3396 */
3397int regulator_suspend_finish(void)
3398{
3399 struct regulator_dev *rdev;
3400 int ret = 0, error;
3401
3402 mutex_lock(&regulator_list_mutex);
3403 list_for_each_entry(rdev, &regulator_list, list) {
3404 struct regulator_ops *ops = rdev->desc->ops;
3405
3406 mutex_lock(&rdev->mutex);
3407 if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
3408 ops->enable) {
3409 error = ops->enable(rdev);
3410 if (error)
3411 ret = error;
3412 } else {
3413 if (!has_full_constraints)
3414 goto unlock;
3415 if (!ops->disable)
3416 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003417 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003418 goto unlock;
3419
3420 error = ops->disable(rdev);
3421 if (error)
3422 ret = error;
3423 }
3424unlock:
3425 mutex_unlock(&rdev->mutex);
3426 }
3427 mutex_unlock(&regulator_list_mutex);
3428 return ret;
3429}
3430EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3431
3432/**
Mark Brownca725562009-03-16 19:36:34 +00003433 * regulator_has_full_constraints - the system has fully specified constraints
3434 *
3435 * Calling this function will cause the regulator API to disable all
3436 * regulators which have a zero use count and don't have an always_on
3437 * constraint in a late_initcall.
3438 *
3439 * The intention is that this will become the default behaviour in a
3440 * future kernel release so users are encouraged to use this facility
3441 * now.
3442 */
3443void regulator_has_full_constraints(void)
3444{
3445 has_full_constraints = 1;
3446}
3447EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3448
3449/**
Mark Brown688fe992010-10-05 19:18:32 -07003450 * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
3451 *
3452 * Calling this function will cause the regulator API to provide a
3453 * dummy regulator to consumers if no physical regulator is found,
3454 * allowing most consumers to proceed as though a regulator were
3455 * configured. This allows systems such as those with software
3456 * controllable regulators for the CPU core only to be brought up more
3457 * readily.
3458 */
3459void regulator_use_dummy_regulator(void)
3460{
3461 board_wants_dummy_regulator = true;
3462}
3463EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
3464
3465/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003466 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003467 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003468 *
3469 * Get rdev regulator driver private data. This call can be used in the
3470 * regulator driver context.
3471 */
3472void *rdev_get_drvdata(struct regulator_dev *rdev)
3473{
3474 return rdev->reg_data;
3475}
3476EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3477
3478/**
3479 * regulator_get_drvdata - get regulator driver data
3480 * @regulator: regulator
3481 *
3482 * Get regulator driver private data. This call can be used in the consumer
3483 * driver context when non API regulator specific functions need to be called.
3484 */
3485void *regulator_get_drvdata(struct regulator *regulator)
3486{
3487 return regulator->rdev->reg_data;
3488}
3489EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3490
3491/**
3492 * regulator_set_drvdata - set regulator driver data
3493 * @regulator: regulator
3494 * @data: data
3495 */
3496void regulator_set_drvdata(struct regulator *regulator, void *data)
3497{
3498 regulator->rdev->reg_data = data;
3499}
3500EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3501
3502/**
3503 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003504 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003505 */
3506int rdev_get_id(struct regulator_dev *rdev)
3507{
3508 return rdev->desc->id;
3509}
3510EXPORT_SYMBOL_GPL(rdev_get_id);
3511
Liam Girdwooda5766f12008-10-10 13:22:20 +01003512struct device *rdev_get_dev(struct regulator_dev *rdev)
3513{
3514 return &rdev->dev;
3515}
3516EXPORT_SYMBOL_GPL(rdev_get_dev);
3517
3518void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3519{
3520 return reg_init_data->driver_data;
3521}
3522EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3523
Mark Brownba55a972011-08-23 17:39:10 +01003524#ifdef CONFIG_DEBUG_FS
3525static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3526 size_t count, loff_t *ppos)
3527{
3528 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3529 ssize_t len, ret = 0;
3530 struct regulator_map *map;
3531
3532 if (!buf)
3533 return -ENOMEM;
3534
3535 list_for_each_entry(map, &regulator_map_list, list) {
3536 len = snprintf(buf + ret, PAGE_SIZE - ret,
3537 "%s -> %s.%s\n",
3538 rdev_get_name(map->regulator), map->dev_name,
3539 map->supply);
3540 if (len >= 0)
3541 ret += len;
3542 if (ret > PAGE_SIZE) {
3543 ret = PAGE_SIZE;
3544 break;
3545 }
3546 }
3547
3548 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3549
3550 kfree(buf);
3551
3552 return ret;
3553}
Stephen Boyd24751432012-02-20 22:50:42 -08003554#endif
Mark Brownba55a972011-08-23 17:39:10 +01003555
3556static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003557#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003558 .read = supply_map_read_file,
3559 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003560#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003561};
Mark Brownba55a972011-08-23 17:39:10 +01003562
Liam Girdwood414c70c2008-04-30 15:59:04 +01003563static int __init regulator_init(void)
3564{
Mark Brown34abbd62010-02-12 10:18:08 +00003565 int ret;
3566
Mark Brown34abbd62010-02-12 10:18:08 +00003567 ret = class_register(&regulator_class);
3568
Mark Brown1130e5b2010-12-21 23:49:31 +00003569 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08003570 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00003571 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01003572
Mark Brownf4d562c2012-02-20 21:01:04 +00003573 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
3574 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00003575
Mark Brown34abbd62010-02-12 10:18:08 +00003576 regulator_dummy_init();
3577
3578 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003579}
3580
3581/* init early to allow our consumers to complete system booting */
3582core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00003583
3584static int __init regulator_init_complete(void)
3585{
3586 struct regulator_dev *rdev;
3587 struct regulator_ops *ops;
3588 struct regulation_constraints *c;
3589 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00003590
Mark Brown86f5fcf2012-07-06 18:19:13 +01003591 /*
3592 * Since DT doesn't provide an idiomatic mechanism for
3593 * enabling full constraints and since it's much more natural
3594 * with DT to provide them just assume that a DT enabled
3595 * system has full constraints.
3596 */
3597 if (of_have_populated_dt())
3598 has_full_constraints = true;
3599
Mark Brownca725562009-03-16 19:36:34 +00003600 mutex_lock(&regulator_list_mutex);
3601
3602 /* If we have a full configuration then disable any regulators
3603 * which are not in use or always_on. This will become the
3604 * default behaviour in the future.
3605 */
3606 list_for_each_entry(rdev, &regulator_list, list) {
3607 ops = rdev->desc->ops;
3608 c = rdev->constraints;
3609
Mark Brownf25e0b42009-08-03 18:49:55 +01003610 if (!ops->disable || (c && c->always_on))
Mark Brownca725562009-03-16 19:36:34 +00003611 continue;
3612
3613 mutex_lock(&rdev->mutex);
3614
3615 if (rdev->use_count)
3616 goto unlock;
3617
3618 /* If we can't read the status assume it's on. */
3619 if (ops->is_enabled)
3620 enabled = ops->is_enabled(rdev);
3621 else
3622 enabled = 1;
3623
3624 if (!enabled)
3625 goto unlock;
3626
3627 if (has_full_constraints) {
3628 /* We log since this may kill the system if it
3629 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08003630 rdev_info(rdev, "disabling\n");
Mark Brownca725562009-03-16 19:36:34 +00003631 ret = ops->disable(rdev);
3632 if (ret != 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003633 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00003634 }
3635 } else {
3636 /* The intention is that in future we will
3637 * assume that full constraints are provided
3638 * so warn even if we aren't going to do
3639 * anything here.
3640 */
Joe Perches5da84fd2010-11-30 05:53:48 -08003641 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00003642 }
3643
3644unlock:
3645 mutex_unlock(&rdev->mutex);
3646 }
3647
3648 mutex_unlock(&regulator_list_mutex);
3649
3650 return 0;
3651}
3652late_initcall(regulator_init_complete);