blob: f98a8ee299337fc8f58c9b9408565b3baee90466 [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>
Rajendra Nayak69511a42011-11-18 16:47:20 +053026#include <linux/of.h>
Mark Brown65b19ce2012-04-15 11:16:05 +010027#include <linux/regmap.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053028#include <linux/regulator/of_regulator.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010029#include <linux/regulator/consumer.h>
30#include <linux/regulator/driver.h>
31#include <linux/regulator/machine.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040032#include <linux/module.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010033
Mark Brown02fa3ec2010-11-10 14:38:30 +000034#define CREATE_TRACE_POINTS
35#include <trace/events/regulator.h>
36
Mark Brown34abbd62010-02-12 10:18:08 +000037#include "dummy.h"
38
Mark Brown7d51a0d2011-06-09 16:06:37 +010039#define rdev_crit(rdev, fmt, ...) \
40 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
Joe Perches5da84fd2010-11-30 05:53:48 -080041#define rdev_err(rdev, fmt, ...) \
42 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
43#define rdev_warn(rdev, fmt, ...) \
44 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
45#define rdev_info(rdev, fmt, ...) \
46 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
47#define rdev_dbg(rdev, fmt, ...) \
48 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
49
Liam Girdwood414c70c2008-04-30 15:59:04 +010050static DEFINE_MUTEX(regulator_list_mutex);
51static LIST_HEAD(regulator_list);
52static LIST_HEAD(regulator_map_list);
Mark Brown21cf8912010-12-21 23:30:07 +000053static bool has_full_constraints;
Mark Brown688fe992010-10-05 19:18:32 -070054static bool board_wants_dummy_regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010055
Mark Brown1130e5b2010-12-21 23:49:31 +000056static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000057
Mark Brown8dc53902008-12-31 12:52:40 +000058/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010059 * struct regulator_map
60 *
61 * Used to provide symbolic supply names to devices.
62 */
63struct regulator_map {
64 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010065 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010066 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010067 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010068};
69
Liam Girdwood414c70c2008-04-30 15:59:04 +010070/*
71 * struct regulator
72 *
73 * One for each consumer device.
74 */
75struct regulator {
76 struct device *dev;
77 struct list_head list;
Mark Brown6492bc12012-04-19 13:19:07 +010078 unsigned int always_on:1;
Liam Girdwood414c70c2008-04-30 15:59:04 +010079 int uA_load;
80 int min_uV;
81 int max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +010082 char *supply_name;
83 struct device_attribute dev_attr;
84 struct regulator_dev *rdev;
Mark Brown5de70512011-06-19 13:33:16 +010085 struct dentry *debugfs;
Liam Girdwood414c70c2008-04-30 15:59:04 +010086};
87
88static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +010089static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +010090static int _regulator_get_voltage(struct regulator_dev *rdev);
91static int _regulator_get_current_limit(struct regulator_dev *rdev);
92static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
93static void _notifier_call_chain(struct regulator_dev *rdev,
94 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +000095static int _regulator_do_set_voltage(struct regulator_dev *rdev,
96 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +010097static struct regulator *create_regulator(struct regulator_dev *rdev,
98 struct device *dev,
99 const char *supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100100
Mark Brown1083c392009-10-22 16:31:32 +0100101static const char *rdev_get_name(struct regulator_dev *rdev)
102{
103 if (rdev->constraints && rdev->constraints->name)
104 return rdev->constraints->name;
105 else if (rdev->desc->name)
106 return rdev->desc->name;
107 else
108 return "";
109}
110
Rajendra Nayak69511a42011-11-18 16:47:20 +0530111/**
112 * of_get_regulator - get a regulator device node based on supply name
113 * @dev: Device pointer for the consumer (of regulator) device
114 * @supply: regulator supply name
115 *
116 * Extract the regulator device node corresponding to the supply name.
117 * retruns the device node corresponding to the regulator if found, else
118 * returns NULL.
119 */
120static struct device_node *of_get_regulator(struct device *dev, const char *supply)
121{
122 struct device_node *regnode = NULL;
123 char prop_name[32]; /* 32 is max size of property name */
124
125 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
126
127 snprintf(prop_name, 32, "%s-supply", supply);
128 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
129
130 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530131 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530132 prop_name, dev->of_node->full_name);
133 return NULL;
134 }
135 return regnode;
136}
137
Mark Brown6492bc12012-04-19 13:19:07 +0100138static int _regulator_can_change_status(struct regulator_dev *rdev)
139{
140 if (!rdev->constraints)
141 return 0;
142
143 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
144 return 1;
145 else
146 return 0;
147}
148
Liam Girdwood414c70c2008-04-30 15:59:04 +0100149/* Platform voltage constraint check */
150static int regulator_check_voltage(struct regulator_dev *rdev,
151 int *min_uV, int *max_uV)
152{
153 BUG_ON(*min_uV > *max_uV);
154
155 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800156 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100157 return -ENODEV;
158 }
159 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800160 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100161 return -EPERM;
162 }
163
164 if (*max_uV > rdev->constraints->max_uV)
165 *max_uV = rdev->constraints->max_uV;
166 if (*min_uV < rdev->constraints->min_uV)
167 *min_uV = rdev->constraints->min_uV;
168
Mark Brown89f425e2011-07-12 11:20:37 +0900169 if (*min_uV > *max_uV) {
170 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100171 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100172 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900173 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100174
175 return 0;
176}
177
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100178/* Make sure we select a voltage that suits the needs of all
179 * regulator consumers
180 */
181static int regulator_check_consumers(struct regulator_dev *rdev,
182 int *min_uV, int *max_uV)
183{
184 struct regulator *regulator;
185
186 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700187 /*
188 * Assume consumers that didn't say anything are OK
189 * with anything in the constraint range.
190 */
191 if (!regulator->min_uV && !regulator->max_uV)
192 continue;
193
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100194 if (*max_uV > regulator->max_uV)
195 *max_uV = regulator->max_uV;
196 if (*min_uV < regulator->min_uV)
197 *min_uV = regulator->min_uV;
198 }
199
200 if (*min_uV > *max_uV)
201 return -EINVAL;
202
203 return 0;
204}
205
Liam Girdwood414c70c2008-04-30 15:59:04 +0100206/* current constraint check */
207static int regulator_check_current_limit(struct regulator_dev *rdev,
208 int *min_uA, int *max_uA)
209{
210 BUG_ON(*min_uA > *max_uA);
211
212 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800213 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100214 return -ENODEV;
215 }
216 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800217 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100218 return -EPERM;
219 }
220
221 if (*max_uA > rdev->constraints->max_uA)
222 *max_uA = rdev->constraints->max_uA;
223 if (*min_uA < rdev->constraints->min_uA)
224 *min_uA = rdev->constraints->min_uA;
225
Mark Brown89f425e2011-07-12 11:20:37 +0900226 if (*min_uA > *max_uA) {
227 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100228 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100229 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900230 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100231
232 return 0;
233}
234
235/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900236static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100237{
Mark Brown2c608232011-03-30 06:29:12 +0900238 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800239 case REGULATOR_MODE_FAST:
240 case REGULATOR_MODE_NORMAL:
241 case REGULATOR_MODE_IDLE:
242 case REGULATOR_MODE_STANDBY:
243 break;
244 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900245 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800246 return -EINVAL;
247 }
248
Liam Girdwood414c70c2008-04-30 15:59:04 +0100249 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800250 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100251 return -ENODEV;
252 }
253 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800254 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100255 return -EPERM;
256 }
Mark Brown2c608232011-03-30 06:29:12 +0900257
258 /* The modes are bitmasks, the most power hungry modes having
259 * the lowest values. If the requested mode isn't supported
260 * try higher modes. */
261 while (*mode) {
262 if (rdev->constraints->valid_modes_mask & *mode)
263 return 0;
264 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100265 }
Mark Brown2c608232011-03-30 06:29:12 +0900266
267 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100268}
269
270/* dynamic regulator mode switching constraint check */
271static int regulator_check_drms(struct regulator_dev *rdev)
272{
273 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800274 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100275 return -ENODEV;
276 }
277 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800278 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100279 return -EPERM;
280 }
281 return 0;
282}
283
Liam Girdwood414c70c2008-04-30 15:59:04 +0100284static ssize_t regulator_uV_show(struct device *dev,
285 struct device_attribute *attr, char *buf)
286{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100287 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100288 ssize_t ret;
289
290 mutex_lock(&rdev->mutex);
291 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
292 mutex_unlock(&rdev->mutex);
293
294 return ret;
295}
David Brownell7ad68e22008-11-11 17:39:02 -0800296static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100297
298static ssize_t regulator_uA_show(struct device *dev,
299 struct device_attribute *attr, char *buf)
300{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100301 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100302
303 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
304}
David Brownell7ad68e22008-11-11 17:39:02 -0800305static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100306
Mark Brownbc558a62008-10-10 15:33:20 +0100307static ssize_t regulator_name_show(struct device *dev,
308 struct device_attribute *attr, char *buf)
309{
310 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100311
Mark Brown1083c392009-10-22 16:31:32 +0100312 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100313}
314
David Brownell4fca9542008-11-11 17:38:53 -0800315static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100316{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100317 switch (mode) {
318 case REGULATOR_MODE_FAST:
319 return sprintf(buf, "fast\n");
320 case REGULATOR_MODE_NORMAL:
321 return sprintf(buf, "normal\n");
322 case REGULATOR_MODE_IDLE:
323 return sprintf(buf, "idle\n");
324 case REGULATOR_MODE_STANDBY:
325 return sprintf(buf, "standby\n");
326 }
327 return sprintf(buf, "unknown\n");
328}
329
David Brownell4fca9542008-11-11 17:38:53 -0800330static ssize_t regulator_opmode_show(struct device *dev,
331 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100332{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100333 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100334
David Brownell4fca9542008-11-11 17:38:53 -0800335 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
336}
David Brownell7ad68e22008-11-11 17:39:02 -0800337static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800338
339static ssize_t regulator_print_state(char *buf, int state)
340{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100341 if (state > 0)
342 return sprintf(buf, "enabled\n");
343 else if (state == 0)
344 return sprintf(buf, "disabled\n");
345 else
346 return sprintf(buf, "unknown\n");
347}
348
David Brownell4fca9542008-11-11 17:38:53 -0800349static ssize_t regulator_state_show(struct device *dev,
350 struct device_attribute *attr, char *buf)
351{
352 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100353 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800354
Mark Brown93325462009-08-03 18:49:56 +0100355 mutex_lock(&rdev->mutex);
356 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
357 mutex_unlock(&rdev->mutex);
358
359 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800360}
David Brownell7ad68e22008-11-11 17:39:02 -0800361static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800362
David Brownell853116a2009-01-14 23:03:17 -0800363static ssize_t regulator_status_show(struct device *dev,
364 struct device_attribute *attr, char *buf)
365{
366 struct regulator_dev *rdev = dev_get_drvdata(dev);
367 int status;
368 char *label;
369
370 status = rdev->desc->ops->get_status(rdev);
371 if (status < 0)
372 return status;
373
374 switch (status) {
375 case REGULATOR_STATUS_OFF:
376 label = "off";
377 break;
378 case REGULATOR_STATUS_ON:
379 label = "on";
380 break;
381 case REGULATOR_STATUS_ERROR:
382 label = "error";
383 break;
384 case REGULATOR_STATUS_FAST:
385 label = "fast";
386 break;
387 case REGULATOR_STATUS_NORMAL:
388 label = "normal";
389 break;
390 case REGULATOR_STATUS_IDLE:
391 label = "idle";
392 break;
393 case REGULATOR_STATUS_STANDBY:
394 label = "standby";
395 break;
396 default:
397 return -ERANGE;
398 }
399
400 return sprintf(buf, "%s\n", label);
401}
402static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
403
Liam Girdwood414c70c2008-04-30 15:59:04 +0100404static ssize_t regulator_min_uA_show(struct device *dev,
405 struct device_attribute *attr, char *buf)
406{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100407 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100408
409 if (!rdev->constraints)
410 return sprintf(buf, "constraint not defined\n");
411
412 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
413}
David Brownell7ad68e22008-11-11 17:39:02 -0800414static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100415
416static ssize_t regulator_max_uA_show(struct device *dev,
417 struct device_attribute *attr, char *buf)
418{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100419 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100420
421 if (!rdev->constraints)
422 return sprintf(buf, "constraint not defined\n");
423
424 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
425}
David Brownell7ad68e22008-11-11 17:39:02 -0800426static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100427
428static ssize_t regulator_min_uV_show(struct device *dev,
429 struct device_attribute *attr, char *buf)
430{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100431 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100432
433 if (!rdev->constraints)
434 return sprintf(buf, "constraint not defined\n");
435
436 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
437}
David Brownell7ad68e22008-11-11 17:39:02 -0800438static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100439
440static ssize_t regulator_max_uV_show(struct device *dev,
441 struct device_attribute *attr, char *buf)
442{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100443 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100444
445 if (!rdev->constraints)
446 return sprintf(buf, "constraint not defined\n");
447
448 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
449}
David Brownell7ad68e22008-11-11 17:39:02 -0800450static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100451
452static ssize_t regulator_total_uA_show(struct device *dev,
453 struct device_attribute *attr, char *buf)
454{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100455 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100456 struct regulator *regulator;
457 int uA = 0;
458
459 mutex_lock(&rdev->mutex);
460 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100461 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100462 mutex_unlock(&rdev->mutex);
463 return sprintf(buf, "%d\n", uA);
464}
David Brownell7ad68e22008-11-11 17:39:02 -0800465static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100466
467static ssize_t regulator_num_users_show(struct device *dev,
468 struct device_attribute *attr, char *buf)
469{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100470 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100471 return sprintf(buf, "%d\n", rdev->use_count);
472}
473
474static ssize_t regulator_type_show(struct device *dev,
475 struct device_attribute *attr, char *buf)
476{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100477 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100478
479 switch (rdev->desc->type) {
480 case REGULATOR_VOLTAGE:
481 return sprintf(buf, "voltage\n");
482 case REGULATOR_CURRENT:
483 return sprintf(buf, "current\n");
484 }
485 return sprintf(buf, "unknown\n");
486}
487
488static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
489 struct device_attribute *attr, char *buf)
490{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100491 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100492
Liam Girdwood414c70c2008-04-30 15:59:04 +0100493 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
494}
David Brownell7ad68e22008-11-11 17:39:02 -0800495static DEVICE_ATTR(suspend_mem_microvolts, 0444,
496 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100497
498static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
499 struct device_attribute *attr, char *buf)
500{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100501 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100502
Liam Girdwood414c70c2008-04-30 15:59:04 +0100503 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
504}
David Brownell7ad68e22008-11-11 17:39:02 -0800505static DEVICE_ATTR(suspend_disk_microvolts, 0444,
506 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100507
508static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
509 struct device_attribute *attr, char *buf)
510{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100511 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100512
Liam Girdwood414c70c2008-04-30 15:59:04 +0100513 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
514}
David Brownell7ad68e22008-11-11 17:39:02 -0800515static DEVICE_ATTR(suspend_standby_microvolts, 0444,
516 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100517
Liam Girdwood414c70c2008-04-30 15:59:04 +0100518static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
519 struct device_attribute *attr, char *buf)
520{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100521 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100522
David Brownell4fca9542008-11-11 17:38:53 -0800523 return regulator_print_opmode(buf,
524 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100525}
David Brownell7ad68e22008-11-11 17:39:02 -0800526static DEVICE_ATTR(suspend_mem_mode, 0444,
527 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100528
529static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
530 struct device_attribute *attr, char *buf)
531{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100532 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100533
David Brownell4fca9542008-11-11 17:38:53 -0800534 return regulator_print_opmode(buf,
535 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100536}
David Brownell7ad68e22008-11-11 17:39:02 -0800537static DEVICE_ATTR(suspend_disk_mode, 0444,
538 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100539
540static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
541 struct device_attribute *attr, char *buf)
542{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100543 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100544
David Brownell4fca9542008-11-11 17:38:53 -0800545 return regulator_print_opmode(buf,
546 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100547}
David Brownell7ad68e22008-11-11 17:39:02 -0800548static DEVICE_ATTR(suspend_standby_mode, 0444,
549 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100550
551static ssize_t regulator_suspend_mem_state_show(struct device *dev,
552 struct device_attribute *attr, char *buf)
553{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100554 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100555
David Brownell4fca9542008-11-11 17:38:53 -0800556 return regulator_print_state(buf,
557 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100558}
David Brownell7ad68e22008-11-11 17:39:02 -0800559static DEVICE_ATTR(suspend_mem_state, 0444,
560 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100561
562static ssize_t regulator_suspend_disk_state_show(struct device *dev,
563 struct device_attribute *attr, char *buf)
564{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100565 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100566
David Brownell4fca9542008-11-11 17:38:53 -0800567 return regulator_print_state(buf,
568 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100569}
David Brownell7ad68e22008-11-11 17:39:02 -0800570static DEVICE_ATTR(suspend_disk_state, 0444,
571 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100572
573static ssize_t regulator_suspend_standby_state_show(struct device *dev,
574 struct device_attribute *attr, char *buf)
575{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100576 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100577
David Brownell4fca9542008-11-11 17:38:53 -0800578 return regulator_print_state(buf,
579 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100580}
David Brownell7ad68e22008-11-11 17:39:02 -0800581static DEVICE_ATTR(suspend_standby_state, 0444,
582 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100583
David Brownell7ad68e22008-11-11 17:39:02 -0800584
585/*
586 * These are the only attributes are present for all regulators.
587 * Other attributes are a function of regulator functionality.
588 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100589static struct device_attribute regulator_dev_attrs[] = {
Mark Brownbc558a62008-10-10 15:33:20 +0100590 __ATTR(name, 0444, regulator_name_show, NULL),
Liam Girdwood414c70c2008-04-30 15:59:04 +0100591 __ATTR(num_users, 0444, regulator_num_users_show, NULL),
592 __ATTR(type, 0444, regulator_type_show, NULL),
Liam Girdwood414c70c2008-04-30 15:59:04 +0100593 __ATTR_NULL,
594};
595
596static void regulator_dev_release(struct device *dev)
597{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100598 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100599 kfree(rdev);
600}
601
602static struct class regulator_class = {
603 .name = "regulator",
604 .dev_release = regulator_dev_release,
605 .dev_attrs = regulator_dev_attrs,
606};
607
608/* Calculate the new optimum regulator operating mode based on the new total
609 * consumer load. All locks held by caller */
610static void drms_uA_update(struct regulator_dev *rdev)
611{
612 struct regulator *sibling;
613 int current_uA = 0, output_uV, input_uV, err;
614 unsigned int mode;
615
616 err = regulator_check_drms(rdev);
617 if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
Mark Brown476c2d82010-12-10 17:28:07 +0000618 (!rdev->desc->ops->get_voltage &&
619 !rdev->desc->ops->get_voltage_sel) ||
620 !rdev->desc->ops->set_mode)
Dan Carpenter036de8e2009-04-08 13:52:39 +0300621 return;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100622
623 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000624 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100625 if (output_uV <= 0)
626 return;
627
628 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000629 input_uV = 0;
630 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800631 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000632 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100633 input_uV = rdev->constraints->input_uV;
634 if (input_uV <= 0)
635 return;
636
637 /* calc total requested load */
638 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100639 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100640
641 /* now get the optimum mode for our new total regulator load */
642 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
643 output_uV, current_uA);
644
645 /* check the new mode is allowed */
Mark Brown2c608232011-03-30 06:29:12 +0900646 err = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100647 if (err == 0)
648 rdev->desc->ops->set_mode(rdev, mode);
649}
650
651static int suspend_set_state(struct regulator_dev *rdev,
652 struct regulator_state *rstate)
653{
654 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100655
656 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800657 * only warn if the driver implements set_suspend_voltage or
658 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100659 */
660 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800661 if (rdev->desc->ops->set_suspend_voltage ||
662 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800663 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100664 return 0;
665 }
666
667 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800668 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100669 return -EINVAL;
670 }
671
Axel Lin8ac0e952012-04-14 09:14:34 +0800672 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100673 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800674 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100675 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800676 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
677 ret = 0;
678
Liam Girdwood414c70c2008-04-30 15:59:04 +0100679 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800680 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100681 return ret;
682 }
683
684 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
685 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
686 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800687 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100688 return ret;
689 }
690 }
691
692 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
693 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
694 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800695 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100696 return ret;
697 }
698 }
699 return ret;
700}
701
702/* locks held by caller */
703static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
704{
705 if (!rdev->constraints)
706 return -EINVAL;
707
708 switch (state) {
709 case PM_SUSPEND_STANDBY:
710 return suspend_set_state(rdev,
711 &rdev->constraints->state_standby);
712 case PM_SUSPEND_MEM:
713 return suspend_set_state(rdev,
714 &rdev->constraints->state_mem);
715 case PM_SUSPEND_MAX:
716 return suspend_set_state(rdev,
717 &rdev->constraints->state_disk);
718 default:
719 return -EINVAL;
720 }
721}
722
723static void print_constraints(struct regulator_dev *rdev)
724{
725 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000726 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100727 int count = 0;
728 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100729
Mark Brown8f031b42009-10-22 16:31:31 +0100730 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100731 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100732 count += sprintf(buf + count, "%d mV ",
733 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100734 else
Mark Brown8f031b42009-10-22 16:31:31 +0100735 count += sprintf(buf + count, "%d <--> %d mV ",
736 constraints->min_uV / 1000,
737 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100738 }
Mark Brown8f031b42009-10-22 16:31:31 +0100739
740 if (!constraints->min_uV ||
741 constraints->min_uV != constraints->max_uV) {
742 ret = _regulator_get_voltage(rdev);
743 if (ret > 0)
744 count += sprintf(buf + count, "at %d mV ", ret / 1000);
745 }
746
Mark Brownbf5892a2011-05-08 22:13:37 +0100747 if (constraints->uV_offset)
748 count += sprintf(buf, "%dmV offset ",
749 constraints->uV_offset / 1000);
750
Mark Brown8f031b42009-10-22 16:31:31 +0100751 if (constraints->min_uA && constraints->max_uA) {
752 if (constraints->min_uA == constraints->max_uA)
753 count += sprintf(buf + count, "%d mA ",
754 constraints->min_uA / 1000);
755 else
756 count += sprintf(buf + count, "%d <--> %d mA ",
757 constraints->min_uA / 1000,
758 constraints->max_uA / 1000);
759 }
760
761 if (!constraints->min_uA ||
762 constraints->min_uA != constraints->max_uA) {
763 ret = _regulator_get_current_limit(rdev);
764 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400765 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100766 }
767
Liam Girdwood414c70c2008-04-30 15:59:04 +0100768 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
769 count += sprintf(buf + count, "fast ");
770 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
771 count += sprintf(buf + count, "normal ");
772 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
773 count += sprintf(buf + count, "idle ");
774 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
775 count += sprintf(buf + count, "standby");
776
Mark Brown13ce29f2010-12-17 16:04:12 +0000777 rdev_info(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000778
779 if ((constraints->min_uV != constraints->max_uV) &&
780 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
781 rdev_warn(rdev,
782 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100783}
784
Mark Browne79055d2009-10-19 15:53:50 +0100785static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100786 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100787{
788 struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100789 int ret;
790
791 /* do we need to apply the constraint voltage */
792 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000793 rdev->constraints->min_uV == rdev->constraints->max_uV) {
794 ret = _regulator_do_set_voltage(rdev,
795 rdev->constraints->min_uV,
796 rdev->constraints->max_uV);
797 if (ret < 0) {
798 rdev_err(rdev, "failed to apply %duV constraint\n",
799 rdev->constraints->min_uV);
Mark Brown75790252010-12-12 14:25:50 +0000800 return ret;
801 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100802 }
Mark Browne79055d2009-10-19 15:53:50 +0100803
804 /* constrain machine-level voltage specs to fit
805 * the actual range supported by this regulator.
806 */
807 if (ops->list_voltage && rdev->desc->n_voltages) {
808 int count = rdev->desc->n_voltages;
809 int i;
810 int min_uV = INT_MAX;
811 int max_uV = INT_MIN;
812 int cmin = constraints->min_uV;
813 int cmax = constraints->max_uV;
814
815 /* it's safe to autoconfigure fixed-voltage supplies
816 and the constraints are used by list_voltage. */
817 if (count == 1 && !cmin) {
818 cmin = 1;
819 cmax = INT_MAX;
820 constraints->min_uV = cmin;
821 constraints->max_uV = cmax;
822 }
823
824 /* voltage constraints are optional */
825 if ((cmin == 0) && (cmax == 0))
826 return 0;
827
828 /* else require explicit machine-level constraints */
829 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800830 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100831 return -EINVAL;
832 }
833
834 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
835 for (i = 0; i < count; i++) {
836 int value;
837
838 value = ops->list_voltage(rdev, i);
839 if (value <= 0)
840 continue;
841
842 /* maybe adjust [min_uV..max_uV] */
843 if (value >= cmin && value < min_uV)
844 min_uV = value;
845 if (value <= cmax && value > max_uV)
846 max_uV = value;
847 }
848
849 /* final: [min_uV..max_uV] valid iff constraints valid */
850 if (max_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800851 rdev_err(rdev, "unsupportable voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100852 return -EINVAL;
853 }
854
855 /* use regulator's subset of machine constraints */
856 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800857 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
858 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100859 constraints->min_uV = min_uV;
860 }
861 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800862 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
863 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100864 constraints->max_uV = max_uV;
865 }
866 }
867
868 return 0;
869}
870
Liam Girdwooda5766f12008-10-10 13:22:20 +0100871/**
872 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000873 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000874 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100875 *
876 * Allows platform initialisation code to define and constrain
877 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
878 * Constraints *must* be set by platform code in order for some
879 * regulator operations to proceed i.e. set_voltage, set_current_limit,
880 * set_mode.
881 */
882static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000883 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100884{
885 int ret = 0;
Mark Browne5fda262008-09-09 16:21:20 +0100886 struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100887
Mark Brown9a8f5e02011-11-29 18:11:19 +0000888 if (constraints)
889 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
890 GFP_KERNEL);
891 else
892 rdev->constraints = kzalloc(sizeof(*constraints),
893 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +0000894 if (!rdev->constraints)
895 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100896
Mark Brownf8c12fe2010-11-29 15:55:17 +0000897 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100898 if (ret != 0)
899 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800900
Liam Girdwooda5766f12008-10-10 13:22:20 +0100901 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +0000902 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +0000903 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +0100904 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800905 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +0100906 goto out;
907 }
908 }
Liam Girdwooda5766f12008-10-10 13:22:20 +0100909
Mark Brown9a8f5e02011-11-29 18:11:19 +0000910 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +0000911 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800912 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +0000913 ret = -EINVAL;
914 goto out;
915 }
916
Mark Brownf8c12fe2010-11-29 15:55:17 +0000917 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +0000918 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800919 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +0000920 goto out;
921 }
922 }
923
Mark Browncacf90f2009-03-02 16:32:46 +0000924 /* If the constraints say the regulator should be on at this point
925 * and we have control then make sure it is enabled.
926 */
Mark Brownf8c12fe2010-11-29 15:55:17 +0000927 if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
928 ops->enable) {
Mark Browne5fda262008-09-09 16:21:20 +0100929 ret = ops->enable(rdev);
930 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800931 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +0100932 goto out;
933 }
934 }
935
Liam Girdwooda5766f12008-10-10 13:22:20 +0100936 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +0800937 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100938out:
Axel Lin1a6958e72011-07-15 10:50:43 +0800939 kfree(rdev->constraints);
940 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100941 return ret;
942}
943
944/**
945 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +0000946 * @rdev: regulator name
947 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +0100948 *
949 * Called by platform initialisation code to set the supply regulator for this
950 * regulator. This ensures that a regulators supply will also be enabled by the
951 * core if it's child is enabled.
952 */
953static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +0100954 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100955{
956 int err;
957
Mark Brown3801b862011-06-09 16:22:22 +0100958 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
959
960 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +0800961 if (rdev->supply == NULL) {
962 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +0100963 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100964 }
Mark Brown3801b862011-06-09 16:22:22 +0100965
966 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100967}
968
969/**
Randy Dunlap06c63f92010-11-18 15:02:26 -0800970 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +0000971 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +0100972 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +0000973 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100974 *
975 * Allows platform initialisation code to map physical regulator
976 * sources to symbolic names for supplies for use by devices. Devices
977 * should use these symbolic names to request regulators, avoiding the
978 * need to provide board-specific regulator names as platform data.
979 */
980static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +0000981 const char *consumer_dev_name,
982 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100983{
984 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +0100985 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100986
987 if (supply == NULL)
988 return -EINVAL;
989
Mark Brown9ed20992009-07-21 16:00:26 +0100990 if (consumer_dev_name != NULL)
991 has_dev = 1;
992 else
993 has_dev = 0;
994
David Brownell6001e132008-12-31 12:54:19 +0000995 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +0300996 if (node->dev_name && consumer_dev_name) {
997 if (strcmp(node->dev_name, consumer_dev_name) != 0)
998 continue;
999 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001000 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001001 }
1002
David Brownell6001e132008-12-31 12:54:19 +00001003 if (strcmp(node->supply, supply) != 0)
1004 continue;
1005
Mark Brown737f3602012-02-02 00:10:51 +00001006 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1007 consumer_dev_name,
1008 dev_name(&node->regulator->dev),
1009 node->regulator->desc->name,
1010 supply,
1011 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001012 return -EBUSY;
1013 }
1014
Mark Brown9ed20992009-07-21 16:00:26 +01001015 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001016 if (node == NULL)
1017 return -ENOMEM;
1018
1019 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001020 node->supply = supply;
1021
Mark Brown9ed20992009-07-21 16:00:26 +01001022 if (has_dev) {
1023 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1024 if (node->dev_name == NULL) {
1025 kfree(node);
1026 return -ENOMEM;
1027 }
Mark Brown40f92442009-06-17 17:56:39 +01001028 }
1029
Liam Girdwooda5766f12008-10-10 13:22:20 +01001030 list_add(&node->list, &regulator_map_list);
1031 return 0;
1032}
1033
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001034static void unset_regulator_supplies(struct regulator_dev *rdev)
1035{
1036 struct regulator_map *node, *n;
1037
1038 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1039 if (rdev == node->regulator) {
1040 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001041 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001042 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001043 }
1044 }
1045}
1046
Mark Brownf5726ae2011-06-09 16:22:20 +01001047#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001048
1049static struct regulator *create_regulator(struct regulator_dev *rdev,
1050 struct device *dev,
1051 const char *supply_name)
1052{
1053 struct regulator *regulator;
1054 char buf[REG_STR_SIZE];
1055 int err, size;
1056
1057 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1058 if (regulator == NULL)
1059 return NULL;
1060
1061 mutex_lock(&rdev->mutex);
1062 regulator->rdev = rdev;
1063 list_add(&regulator->list, &rdev->consumer_list);
1064
1065 if (dev) {
Mark Brown222cc7b2012-06-22 11:39:16 +01001066 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001067 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1068 dev->kobj.name, supply_name);
1069 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001070 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001071
1072 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1073 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001074 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001075
1076 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1077 buf);
1078 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001079 rdev_warn(rdev, "could not add device link %s err %d\n",
1080 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001081 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001082 }
Mark Brown5de70512011-06-19 13:33:16 +01001083 } else {
1084 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1085 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001086 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001087 }
Mark Brown5de70512011-06-19 13:33:16 +01001088
Mark Brown5de70512011-06-19 13:33:16 +01001089 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1090 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001091 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001092 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001093 } else {
1094 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1095 &regulator->uA_load);
1096 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1097 &regulator->min_uV);
1098 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1099 &regulator->max_uV);
1100 }
Mark Brown5de70512011-06-19 13:33:16 +01001101
Mark Brown6492bc12012-04-19 13:19:07 +01001102 /*
1103 * Check now if the regulator is an always on regulator - if
1104 * it is then we don't need to do nearly so much work for
1105 * enable/disable calls.
1106 */
1107 if (!_regulator_can_change_status(rdev) &&
1108 _regulator_is_enabled(rdev))
1109 regulator->always_on = true;
1110
Liam Girdwood414c70c2008-04-30 15:59:04 +01001111 mutex_unlock(&rdev->mutex);
1112 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001113overflow_err:
1114 list_del(&regulator->list);
1115 kfree(regulator);
1116 mutex_unlock(&rdev->mutex);
1117 return NULL;
1118}
1119
Mark Brown31aae2b2009-12-21 12:21:52 +00001120static int _regulator_get_enable_time(struct regulator_dev *rdev)
1121{
1122 if (!rdev->desc->ops->enable_time)
1123 return 0;
1124 return rdev->desc->ops->enable_time(rdev);
1125}
1126
Rajendra Nayak69511a42011-11-18 16:47:20 +05301127static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001128 const char *supply,
1129 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301130{
1131 struct regulator_dev *r;
1132 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001133 struct regulator_map *map;
1134 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301135
1136 /* first do a dt based lookup */
1137 if (dev && dev->of_node) {
1138 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001139 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301140 list_for_each_entry(r, &regulator_list, list)
1141 if (r->dev.parent &&
1142 node == r->dev.of_node)
1143 return r;
Mark Brown6d191a52012-03-29 14:19:02 +01001144 } else {
1145 /*
1146 * If we couldn't even get the node then it's
1147 * not just that the device didn't register
1148 * yet, there's no node and we'll never
1149 * succeed.
1150 */
1151 *ret = -ENODEV;
1152 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301153 }
1154
1155 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001156 if (dev)
1157 devname = dev_name(dev);
1158
Rajendra Nayak69511a42011-11-18 16:47:20 +05301159 list_for_each_entry(r, &regulator_list, list)
1160 if (strcmp(rdev_get_name(r), supply) == 0)
1161 return r;
1162
Mark Brown576ca4362012-03-30 12:24:37 +01001163 list_for_each_entry(map, &regulator_map_list, list) {
1164 /* If the mapping has a device set up it must match */
1165 if (map->dev_name &&
1166 (!devname || strcmp(map->dev_name, devname)))
1167 continue;
1168
1169 if (strcmp(map->supply, supply) == 0)
1170 return map->regulator;
1171 }
1172
1173
Rajendra Nayak69511a42011-11-18 16:47:20 +05301174 return NULL;
1175}
1176
Mark Brown5ffbd132009-07-21 16:00:23 +01001177/* Internal regulator request function */
1178static struct regulator *_regulator_get(struct device *dev, const char *id,
1179 int exclusive)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001180{
1181 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001182 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001183 const char *devname = NULL;
Mark Brown5ffbd132009-07-21 16:00:23 +01001184 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001185
1186 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001187 pr_err("get() with no identifier\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001188 return regulator;
1189 }
1190
Mark Brown40f92442009-06-17 17:56:39 +01001191 if (dev)
1192 devname = dev_name(dev);
1193
Liam Girdwood414c70c2008-04-30 15:59:04 +01001194 mutex_lock(&regulator_list_mutex);
1195
Mark Brown6d191a52012-03-29 14:19:02 +01001196 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301197 if (rdev)
1198 goto found;
1199
Mark Brown688fe992010-10-05 19:18:32 -07001200 if (board_wants_dummy_regulator) {
1201 rdev = dummy_regulator_rdev;
1202 goto found;
1203 }
1204
Mark Brown34abbd62010-02-12 10:18:08 +00001205#ifdef CONFIG_REGULATOR_DUMMY
1206 if (!devname)
1207 devname = "deviceless";
1208
1209 /* If the board didn't flag that it was fully constrained then
1210 * substitute in a dummy regulator so consumers can continue.
1211 */
1212 if (!has_full_constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001213 pr_warn("%s supply %s not found, using dummy regulator\n",
1214 devname, id);
Mark Brown34abbd62010-02-12 10:18:08 +00001215 rdev = dummy_regulator_rdev;
1216 goto found;
1217 }
1218#endif
1219
Liam Girdwood414c70c2008-04-30 15:59:04 +01001220 mutex_unlock(&regulator_list_mutex);
1221 return regulator;
1222
1223found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001224 if (rdev->exclusive) {
1225 regulator = ERR_PTR(-EPERM);
1226 goto out;
1227 }
1228
1229 if (exclusive && rdev->open_count) {
1230 regulator = ERR_PTR(-EBUSY);
1231 goto out;
1232 }
1233
Liam Girdwooda5766f12008-10-10 13:22:20 +01001234 if (!try_module_get(rdev->owner))
1235 goto out;
1236
Liam Girdwood414c70c2008-04-30 15:59:04 +01001237 regulator = create_regulator(rdev, dev, id);
1238 if (regulator == NULL) {
1239 regulator = ERR_PTR(-ENOMEM);
1240 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001241 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001242 }
1243
Mark Brown5ffbd132009-07-21 16:00:23 +01001244 rdev->open_count++;
1245 if (exclusive) {
1246 rdev->exclusive = 1;
1247
1248 ret = _regulator_is_enabled(rdev);
1249 if (ret > 0)
1250 rdev->use_count = 1;
1251 else
1252 rdev->use_count = 0;
1253 }
1254
Liam Girdwooda5766f12008-10-10 13:22:20 +01001255out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001256 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001257
Liam Girdwood414c70c2008-04-30 15:59:04 +01001258 return regulator;
1259}
Mark Brown5ffbd132009-07-21 16:00:23 +01001260
1261/**
1262 * regulator_get - lookup and obtain a reference to a regulator.
1263 * @dev: device for regulator "consumer"
1264 * @id: Supply name or regulator ID.
1265 *
1266 * Returns a struct regulator corresponding to the regulator producer,
1267 * or IS_ERR() condition containing errno.
1268 *
1269 * Use of supply names configured via regulator_set_device_supply() is
1270 * strongly encouraged. It is recommended that the supply name used
1271 * should match the name used for the supply and/or the relevant
1272 * device pins in the datasheet.
1273 */
1274struct regulator *regulator_get(struct device *dev, const char *id)
1275{
1276 return _regulator_get(dev, id, 0);
1277}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001278EXPORT_SYMBOL_GPL(regulator_get);
1279
Stephen Boyd070b9072012-01-16 19:39:58 -08001280static void devm_regulator_release(struct device *dev, void *res)
1281{
1282 regulator_put(*(struct regulator **)res);
1283}
1284
1285/**
1286 * devm_regulator_get - Resource managed regulator_get()
1287 * @dev: device for regulator "consumer"
1288 * @id: Supply name or regulator ID.
1289 *
1290 * Managed regulator_get(). Regulators returned from this function are
1291 * automatically regulator_put() on driver detach. See regulator_get() for more
1292 * information.
1293 */
1294struct regulator *devm_regulator_get(struct device *dev, const char *id)
1295{
1296 struct regulator **ptr, *regulator;
1297
1298 ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
1299 if (!ptr)
1300 return ERR_PTR(-ENOMEM);
1301
1302 regulator = regulator_get(dev, id);
1303 if (!IS_ERR(regulator)) {
1304 *ptr = regulator;
1305 devres_add(dev, ptr);
1306 } else {
1307 devres_free(ptr);
1308 }
1309
1310 return regulator;
1311}
1312EXPORT_SYMBOL_GPL(devm_regulator_get);
1313
Liam Girdwood414c70c2008-04-30 15:59:04 +01001314/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001315 * regulator_get_exclusive - obtain exclusive access to a regulator.
1316 * @dev: device for regulator "consumer"
1317 * @id: Supply name or regulator ID.
1318 *
1319 * Returns a struct regulator corresponding to the regulator producer,
1320 * or IS_ERR() condition containing errno. Other consumers will be
1321 * unable to obtain this reference is held and the use count for the
1322 * regulator will be initialised to reflect the current state of the
1323 * regulator.
1324 *
1325 * This is intended for use by consumers which cannot tolerate shared
1326 * use of the regulator such as those which need to force the
1327 * regulator off for correct operation of the hardware they are
1328 * controlling.
1329 *
1330 * Use of supply names configured via regulator_set_device_supply() is
1331 * strongly encouraged. It is recommended that the supply name used
1332 * should match the name used for the supply and/or the relevant
1333 * device pins in the datasheet.
1334 */
1335struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1336{
1337 return _regulator_get(dev, id, 1);
1338}
1339EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1340
1341/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01001342 * regulator_put - "free" the regulator source
1343 * @regulator: regulator source
1344 *
1345 * Note: drivers must ensure that all regulator_enable calls made on this
1346 * regulator source are balanced by regulator_disable calls prior to calling
1347 * this function.
1348 */
1349void regulator_put(struct regulator *regulator)
1350{
1351 struct regulator_dev *rdev;
1352
1353 if (regulator == NULL || IS_ERR(regulator))
1354 return;
1355
Liam Girdwood414c70c2008-04-30 15:59:04 +01001356 mutex_lock(&regulator_list_mutex);
1357 rdev = regulator->rdev;
1358
Mark Brown5de70512011-06-19 13:33:16 +01001359 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001360
Liam Girdwood414c70c2008-04-30 15:59:04 +01001361 /* remove any sysfs entries */
1362 if (regulator->dev) {
1363 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001364 device_remove_file(regulator->dev, &regulator->dev_attr);
1365 kfree(regulator->dev_attr.attr.name);
1366 }
Mark Brown5de70512011-06-19 13:33:16 +01001367 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001368 list_del(&regulator->list);
1369 kfree(regulator);
1370
Mark Brown5ffbd132009-07-21 16:00:23 +01001371 rdev->open_count--;
1372 rdev->exclusive = 0;
1373
Liam Girdwood414c70c2008-04-30 15:59:04 +01001374 module_put(rdev->owner);
1375 mutex_unlock(&regulator_list_mutex);
1376}
1377EXPORT_SYMBOL_GPL(regulator_put);
1378
Mark Brownd5ad34f2012-01-20 20:09:18 +00001379static int devm_regulator_match(struct device *dev, void *res, void *data)
1380{
1381 struct regulator **r = res;
1382 if (!r || !*r) {
1383 WARN_ON(!r || !*r);
1384 return 0;
1385 }
1386 return *r == data;
1387}
1388
1389/**
1390 * devm_regulator_put - Resource managed regulator_put()
1391 * @regulator: regulator to free
1392 *
1393 * Deallocate a regulator allocated with devm_regulator_get(). Normally
1394 * this function will not need to be called and the resource management
1395 * code will ensure that the resource is freed.
1396 */
1397void devm_regulator_put(struct regulator *regulator)
1398{
1399 int rc;
1400
Mark Brown361ff502012-05-07 14:14:30 +01001401 rc = devres_release(regulator->dev, devm_regulator_release,
Mark Brownd5ad34f2012-01-20 20:09:18 +00001402 devm_regulator_match, regulator);
Mark Brown230a5a1c2012-06-15 18:25:08 +01001403 if (rc != 0)
Mark Brown968c2c12012-05-07 11:34:52 +01001404 WARN_ON(rc);
Mark Brownd5ad34f2012-01-20 20:09:18 +00001405}
1406EXPORT_SYMBOL_GPL(devm_regulator_put);
1407
Liam Girdwood414c70c2008-04-30 15:59:04 +01001408/* locks held by regulator_enable() */
1409static int _regulator_enable(struct regulator_dev *rdev)
1410{
Mark Brown31aae2b2009-12-21 12:21:52 +00001411 int ret, delay;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001412
Liam Girdwood414c70c2008-04-30 15:59:04 +01001413 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001414 if (rdev->constraints &&
1415 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1416 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001417
Mark Brown9a2372f2009-08-03 18:49:57 +01001418 if (rdev->use_count == 0) {
1419 /* The regulator may on if it's not switchable or left on */
1420 ret = _regulator_is_enabled(rdev);
1421 if (ret == -EINVAL || ret == 0) {
1422 if (!_regulator_can_change_status(rdev))
1423 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001424
Mark Brown31aae2b2009-12-21 12:21:52 +00001425 if (!rdev->desc->ops->enable)
Mark Brown9a2372f2009-08-03 18:49:57 +01001426 return -EINVAL;
Mark Brown31aae2b2009-12-21 12:21:52 +00001427
1428 /* Query before enabling in case configuration
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001429 * dependent. */
Mark Brown31aae2b2009-12-21 12:21:52 +00001430 ret = _regulator_get_enable_time(rdev);
1431 if (ret >= 0) {
1432 delay = ret;
1433 } else {
Joe Perches5da84fd2010-11-30 05:53:48 -08001434 rdev_warn(rdev, "enable_time() failed: %d\n",
Daniel Walker1d7372e2010-11-17 15:30:28 -08001435 ret);
Mark Brown31aae2b2009-12-21 12:21:52 +00001436 delay = 0;
Mark Brown9a2372f2009-08-03 18:49:57 +01001437 }
Mark Brown31aae2b2009-12-21 12:21:52 +00001438
Mark Brown02fa3ec2010-11-10 14:38:30 +00001439 trace_regulator_enable(rdev_get_name(rdev));
1440
Mark Brown31aae2b2009-12-21 12:21:52 +00001441 /* Allow the regulator to ramp; it would be useful
1442 * to extend this for bulk operations so that the
1443 * regulators can ramp together. */
1444 ret = rdev->desc->ops->enable(rdev);
1445 if (ret < 0)
1446 return ret;
1447
Mark Brown02fa3ec2010-11-10 14:38:30 +00001448 trace_regulator_enable_delay(rdev_get_name(rdev));
1449
Axel Line36c1df2010-11-05 21:51:32 +08001450 if (delay >= 1000) {
Mark Brown31aae2b2009-12-21 12:21:52 +00001451 mdelay(delay / 1000);
Axel Line36c1df2010-11-05 21:51:32 +08001452 udelay(delay % 1000);
1453 } else if (delay) {
Mark Brown31aae2b2009-12-21 12:21:52 +00001454 udelay(delay);
Axel Line36c1df2010-11-05 21:51:32 +08001455 }
Mark Brown31aae2b2009-12-21 12:21:52 +00001456
Mark Brown02fa3ec2010-11-10 14:38:30 +00001457 trace_regulator_enable_complete(rdev_get_name(rdev));
1458
Linus Walleija7433cf2009-08-26 12:54:04 +02001459 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001460 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001461 return ret;
1462 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001463 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001464 }
1465
Mark Brown9a2372f2009-08-03 18:49:57 +01001466 rdev->use_count++;
1467
1468 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001469}
1470
1471/**
1472 * regulator_enable - enable regulator output
1473 * @regulator: regulator source
1474 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001475 * Request that the regulator be enabled with the regulator output at
1476 * the predefined voltage or current value. Calls to regulator_enable()
1477 * must be balanced with calls to regulator_disable().
1478 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001479 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001480 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001481 */
1482int regulator_enable(struct regulator *regulator)
1483{
David Brownell412aec62008-11-16 11:44:46 -08001484 struct regulator_dev *rdev = regulator->rdev;
1485 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001486
Mark Brown6492bc12012-04-19 13:19:07 +01001487 if (regulator->always_on)
1488 return 0;
1489
Mark Brown3801b862011-06-09 16:22:22 +01001490 if (rdev->supply) {
1491 ret = regulator_enable(rdev->supply);
1492 if (ret != 0)
1493 return ret;
1494 }
1495
David Brownell412aec62008-11-16 11:44:46 -08001496 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001497 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001498 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001499
Heiko Stübnerd1685e42011-10-14 18:00:29 +02001500 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01001501 regulator_disable(rdev->supply);
1502
Liam Girdwood414c70c2008-04-30 15:59:04 +01001503 return ret;
1504}
1505EXPORT_SYMBOL_GPL(regulator_enable);
1506
1507/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001508static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001509{
1510 int ret = 0;
1511
David Brownellcd94b502009-03-11 16:43:34 -08001512 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001513 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001514 return -EIO;
1515
Liam Girdwood414c70c2008-04-30 15:59:04 +01001516 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001517 if (rdev->use_count == 1 &&
1518 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001519
1520 /* we are last user */
Mark Brown9a2372f2009-08-03 18:49:57 +01001521 if (_regulator_can_change_status(rdev) &&
1522 rdev->desc->ops->disable) {
Mark Brown02fa3ec2010-11-10 14:38:30 +00001523 trace_regulator_disable(rdev_get_name(rdev));
1524
Liam Girdwood414c70c2008-04-30 15:59:04 +01001525 ret = rdev->desc->ops->disable(rdev);
1526 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001527 rdev_err(rdev, "failed to disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001528 return ret;
1529 }
Mark Brown84b68262009-12-01 21:12:27 +00001530
Mark Brown02fa3ec2010-11-10 14:38:30 +00001531 trace_regulator_disable_complete(rdev_get_name(rdev));
1532
Mark Brown84b68262009-12-01 21:12:27 +00001533 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1534 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001535 }
1536
Liam Girdwood414c70c2008-04-30 15:59:04 +01001537 rdev->use_count = 0;
1538 } else if (rdev->use_count > 1) {
1539
1540 if (rdev->constraints &&
1541 (rdev->constraints->valid_ops_mask &
1542 REGULATOR_CHANGE_DRMS))
1543 drms_uA_update(rdev);
1544
1545 rdev->use_count--;
1546 }
Mark Brown3801b862011-06-09 16:22:22 +01001547
Liam Girdwood414c70c2008-04-30 15:59:04 +01001548 return ret;
1549}
1550
1551/**
1552 * regulator_disable - disable regulator output
1553 * @regulator: regulator source
1554 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001555 * Disable the regulator output voltage or current. Calls to
1556 * regulator_enable() must be balanced with calls to
1557 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00001558 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001559 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00001560 * devices have it enabled, the regulator device supports disabling and
1561 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001562 */
1563int regulator_disable(struct regulator *regulator)
1564{
David Brownell412aec62008-11-16 11:44:46 -08001565 struct regulator_dev *rdev = regulator->rdev;
1566 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001567
Mark Brown6492bc12012-04-19 13:19:07 +01001568 if (regulator->always_on)
1569 return 0;
1570
David Brownell412aec62008-11-16 11:44:46 -08001571 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001572 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001573 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001574
Mark Brown3801b862011-06-09 16:22:22 +01001575 if (ret == 0 && rdev->supply)
1576 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001577
Liam Girdwood414c70c2008-04-30 15:59:04 +01001578 return ret;
1579}
1580EXPORT_SYMBOL_GPL(regulator_disable);
1581
1582/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001583static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001584{
1585 int ret = 0;
1586
1587 /* force disable */
1588 if (rdev->desc->ops->disable) {
1589 /* ah well, who wants to live forever... */
1590 ret = rdev->desc->ops->disable(rdev);
1591 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001592 rdev_err(rdev, "failed to force disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001593 return ret;
1594 }
1595 /* notify other consumers that power has been forced off */
Mark Brown84b68262009-12-01 21:12:27 +00001596 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
1597 REGULATOR_EVENT_DISABLE, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001598 }
1599
Liam Girdwood414c70c2008-04-30 15:59:04 +01001600 return ret;
1601}
1602
1603/**
1604 * regulator_force_disable - force disable regulator output
1605 * @regulator: regulator source
1606 *
1607 * Forcibly disable the regulator output voltage or current.
1608 * NOTE: this *will* disable the regulator output even if other consumer
1609 * devices have it enabled. This should be used for situations when device
1610 * damage will likely occur if the regulator is not disabled (e.g. over temp).
1611 */
1612int regulator_force_disable(struct regulator *regulator)
1613{
Mark Brown82d15832011-05-09 11:41:02 +02001614 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001615 int ret;
1616
Mark Brown82d15832011-05-09 11:41:02 +02001617 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001618 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01001619 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02001620 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001621
Mark Brown3801b862011-06-09 16:22:22 +01001622 if (rdev->supply)
1623 while (rdev->open_count--)
1624 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001625
Liam Girdwood414c70c2008-04-30 15:59:04 +01001626 return ret;
1627}
1628EXPORT_SYMBOL_GPL(regulator_force_disable);
1629
Mark Brownda07ecd2011-09-11 09:53:50 +01001630static void regulator_disable_work(struct work_struct *work)
1631{
1632 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
1633 disable_work.work);
1634 int count, i, ret;
1635
1636 mutex_lock(&rdev->mutex);
1637
1638 BUG_ON(!rdev->deferred_disables);
1639
1640 count = rdev->deferred_disables;
1641 rdev->deferred_disables = 0;
1642
1643 for (i = 0; i < count; i++) {
1644 ret = _regulator_disable(rdev);
1645 if (ret != 0)
1646 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
1647 }
1648
1649 mutex_unlock(&rdev->mutex);
1650
1651 if (rdev->supply) {
1652 for (i = 0; i < count; i++) {
1653 ret = regulator_disable(rdev->supply);
1654 if (ret != 0) {
1655 rdev_err(rdev,
1656 "Supply disable failed: %d\n", ret);
1657 }
1658 }
1659 }
1660}
1661
1662/**
1663 * regulator_disable_deferred - disable regulator output with delay
1664 * @regulator: regulator source
1665 * @ms: miliseconds until the regulator is disabled
1666 *
1667 * Execute regulator_disable() on the regulator after a delay. This
1668 * is intended for use with devices that require some time to quiesce.
1669 *
1670 * NOTE: this will only disable the regulator output if no other consumer
1671 * devices have it enabled, the regulator device supports disabling and
1672 * machine constraints permit this operation.
1673 */
1674int regulator_disable_deferred(struct regulator *regulator, int ms)
1675{
1676 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01001677 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01001678
Mark Brown6492bc12012-04-19 13:19:07 +01001679 if (regulator->always_on)
1680 return 0;
1681
Mark Brownda07ecd2011-09-11 09:53:50 +01001682 mutex_lock(&rdev->mutex);
1683 rdev->deferred_disables++;
1684 mutex_unlock(&rdev->mutex);
1685
Mark Brownaa598022011-10-03 22:42:43 +01001686 ret = schedule_delayed_work(&rdev->disable_work,
1687 msecs_to_jiffies(ms));
1688 if (ret < 0)
1689 return ret;
1690 else
1691 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01001692}
1693EXPORT_SYMBOL_GPL(regulator_disable_deferred);
1694
Mark Browncd6dffb2012-04-15 12:37:47 +01001695/**
1696 * regulator_is_enabled_regmap - standard is_enabled() for regmap users
1697 *
1698 * @rdev: regulator to operate on
1699 *
1700 * Regulators that use regmap for their register I/O can set the
1701 * enable_reg and enable_mask fields in their descriptor and then use
1702 * this as their is_enabled operation, saving some code.
1703 */
1704int regulator_is_enabled_regmap(struct regulator_dev *rdev)
1705{
1706 unsigned int val;
1707 int ret;
1708
1709 ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val);
1710 if (ret != 0)
1711 return ret;
1712
1713 return (val & rdev->desc->enable_mask) != 0;
1714}
1715EXPORT_SYMBOL_GPL(regulator_is_enabled_regmap);
1716
1717/**
1718 * regulator_enable_regmap - standard enable() for regmap users
1719 *
1720 * @rdev: regulator to operate on
1721 *
1722 * Regulators that use regmap for their register I/O can set the
1723 * enable_reg and enable_mask fields in their descriptor and then use
1724 * this as their enable() operation, saving some code.
1725 */
1726int regulator_enable_regmap(struct regulator_dev *rdev)
1727{
1728 return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
1729 rdev->desc->enable_mask,
1730 rdev->desc->enable_mask);
1731}
1732EXPORT_SYMBOL_GPL(regulator_enable_regmap);
1733
1734/**
1735 * regulator_disable_regmap - standard disable() for regmap users
1736 *
1737 * @rdev: regulator to operate on
1738 *
1739 * Regulators that use regmap for their register I/O can set the
1740 * enable_reg and enable_mask fields in their descriptor and then use
1741 * this as their disable() operation, saving some code.
1742 */
1743int regulator_disable_regmap(struct regulator_dev *rdev)
1744{
1745 return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
1746 rdev->desc->enable_mask, 0);
1747}
1748EXPORT_SYMBOL_GPL(regulator_disable_regmap);
1749
Liam Girdwood414c70c2008-04-30 15:59:04 +01001750static int _regulator_is_enabled(struct regulator_dev *rdev)
1751{
Mark Brown9a7f6a42010-02-11 17:22:45 +00001752 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01001753 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00001754 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001755
Mark Brown93325462009-08-03 18:49:56 +01001756 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001757}
1758
1759/**
1760 * regulator_is_enabled - is the regulator output enabled
1761 * @regulator: regulator source
1762 *
David Brownell412aec62008-11-16 11:44:46 -08001763 * Returns positive if the regulator driver backing the source/client
1764 * has requested that the device be enabled, zero if it hasn't, else a
1765 * negative errno code.
1766 *
1767 * Note that the device backing this regulator handle can have multiple
1768 * users, so it might be enabled even if regulator_enable() was never
1769 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001770 */
1771int regulator_is_enabled(struct regulator *regulator)
1772{
Mark Brown93325462009-08-03 18:49:56 +01001773 int ret;
1774
Mark Brown6492bc12012-04-19 13:19:07 +01001775 if (regulator->always_on)
1776 return 1;
1777
Mark Brown93325462009-08-03 18:49:56 +01001778 mutex_lock(&regulator->rdev->mutex);
1779 ret = _regulator_is_enabled(regulator->rdev);
1780 mutex_unlock(&regulator->rdev->mutex);
1781
1782 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001783}
1784EXPORT_SYMBOL_GPL(regulator_is_enabled);
1785
1786/**
David Brownell4367cfd2009-02-26 11:48:36 -08001787 * regulator_count_voltages - count regulator_list_voltage() selectors
1788 * @regulator: regulator source
1789 *
1790 * Returns number of selectors, or negative errno. Selectors are
1791 * numbered starting at zero, and typically correspond to bitfields
1792 * in hardware registers.
1793 */
1794int regulator_count_voltages(struct regulator *regulator)
1795{
1796 struct regulator_dev *rdev = regulator->rdev;
1797
1798 return rdev->desc->n_voltages ? : -EINVAL;
1799}
1800EXPORT_SYMBOL_GPL(regulator_count_voltages);
1801
1802/**
Mark Brownbca7bbf2012-05-09 21:38:33 +01001803 * regulator_list_voltage_linear - List voltages with simple calculation
1804 *
1805 * @rdev: Regulator device
1806 * @selector: Selector to convert into a voltage
1807 *
1808 * Regulators with a simple linear mapping between voltages and
1809 * selectors can set min_uV and uV_step in the regulator descriptor
1810 * and then use this function as their list_voltage() operation,
1811 */
1812int regulator_list_voltage_linear(struct regulator_dev *rdev,
1813 unsigned int selector)
1814{
1815 if (selector >= rdev->desc->n_voltages)
1816 return -EINVAL;
1817
1818 return rdev->desc->min_uV + (rdev->desc->uV_step * selector);
1819}
1820EXPORT_SYMBOL_GPL(regulator_list_voltage_linear);
1821
1822/**
Axel Lincffc9592012-05-20 10:30:21 +08001823 * regulator_list_voltage_table - List voltages with table based mapping
1824 *
1825 * @rdev: Regulator device
1826 * @selector: Selector to convert into a voltage
1827 *
1828 * Regulators with table based mapping between voltages and
1829 * selectors can set volt_table in the regulator descriptor
1830 * and then use this function as their list_voltage() operation.
1831 */
1832int regulator_list_voltage_table(struct regulator_dev *rdev,
1833 unsigned int selector)
1834{
1835 if (!rdev->desc->volt_table) {
1836 BUG_ON(!rdev->desc->volt_table);
1837 return -EINVAL;
1838 }
1839
1840 if (selector >= rdev->desc->n_voltages)
1841 return -EINVAL;
1842
1843 return rdev->desc->volt_table[selector];
1844}
1845EXPORT_SYMBOL_GPL(regulator_list_voltage_table);
1846
1847/**
David Brownell4367cfd2009-02-26 11:48:36 -08001848 * regulator_list_voltage - enumerate supported voltages
1849 * @regulator: regulator source
1850 * @selector: identify voltage to list
1851 * Context: can sleep
1852 *
1853 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01001854 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08001855 * negative errno.
1856 */
1857int regulator_list_voltage(struct regulator *regulator, unsigned selector)
1858{
1859 struct regulator_dev *rdev = regulator->rdev;
1860 struct regulator_ops *ops = rdev->desc->ops;
1861 int ret;
1862
1863 if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
1864 return -EINVAL;
1865
1866 mutex_lock(&rdev->mutex);
1867 ret = ops->list_voltage(rdev, selector);
1868 mutex_unlock(&rdev->mutex);
1869
1870 if (ret > 0) {
1871 if (ret < rdev->constraints->min_uV)
1872 ret = 0;
1873 else if (ret > rdev->constraints->max_uV)
1874 ret = 0;
1875 }
1876
1877 return ret;
1878}
1879EXPORT_SYMBOL_GPL(regulator_list_voltage);
1880
1881/**
Mark Browna7a1ad92009-07-21 16:00:24 +01001882 * regulator_is_supported_voltage - check if a voltage range can be supported
1883 *
1884 * @regulator: Regulator to check.
1885 * @min_uV: Minimum required voltage in uV.
1886 * @max_uV: Maximum required voltage in uV.
1887 *
1888 * Returns a boolean or a negative error code.
1889 */
1890int regulator_is_supported_voltage(struct regulator *regulator,
1891 int min_uV, int max_uV)
1892{
Mark Brownc5f39392012-07-02 15:00:18 +01001893 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01001894 int i, voltages, ret;
1895
Mark Brownc5f39392012-07-02 15:00:18 +01001896 /* If we can't change voltage check the current voltage */
1897 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
1898 ret = regulator_get_voltage(regulator);
1899 if (ret >= 0)
1900 return (min_uV >= ret && ret <= max_uV);
1901 else
1902 return ret;
1903 }
1904
Mark Browna7a1ad92009-07-21 16:00:24 +01001905 ret = regulator_count_voltages(regulator);
1906 if (ret < 0)
1907 return ret;
1908 voltages = ret;
1909
1910 for (i = 0; i < voltages; i++) {
1911 ret = regulator_list_voltage(regulator, i);
1912
1913 if (ret >= min_uV && ret <= max_uV)
1914 return 1;
1915 }
1916
1917 return 0;
1918}
Mark Browna398eaa2011-12-28 12:48:45 +00001919EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01001920
Mark Brown4ab5b3d2012-04-15 11:23:30 +01001921/**
1922 * regulator_get_voltage_sel_regmap - standard get_voltage_sel for regmap users
1923 *
1924 * @rdev: regulator to operate on
1925 *
1926 * Regulators that use regmap for their register I/O can set the
1927 * vsel_reg and vsel_mask fields in their descriptor and then use this
1928 * as their get_voltage_vsel operation, saving some code.
1929 */
1930int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev)
1931{
1932 unsigned int val;
1933 int ret;
1934
1935 ret = regmap_read(rdev->regmap, rdev->desc->vsel_reg, &val);
1936 if (ret != 0)
1937 return ret;
1938
1939 val &= rdev->desc->vsel_mask;
1940 val >>= ffs(rdev->desc->vsel_mask) - 1;
1941
1942 return val;
1943}
1944EXPORT_SYMBOL_GPL(regulator_get_voltage_sel_regmap);
1945
1946/**
1947 * regulator_set_voltage_sel_regmap - standard set_voltage_sel for regmap users
1948 *
1949 * @rdev: regulator to operate on
1950 * @sel: Selector to set
1951 *
1952 * Regulators that use regmap for their register I/O can set the
1953 * vsel_reg and vsel_mask fields in their descriptor and then use this
1954 * as their set_voltage_vsel operation, saving some code.
1955 */
1956int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel)
1957{
1958 sel <<= ffs(rdev->desc->vsel_mask) - 1;
1959
1960 return regmap_update_bits(rdev->regmap, rdev->desc->vsel_reg,
1961 rdev->desc->vsel_mask, sel);
1962}
1963EXPORT_SYMBOL_GPL(regulator_set_voltage_sel_regmap);
1964
Mark Browne843fc42012-05-09 21:16:06 +01001965/**
1966 * regulator_map_voltage_iterate - map_voltage() based on list_voltage()
1967 *
1968 * @rdev: Regulator to operate on
1969 * @min_uV: Lower bound for voltage
1970 * @max_uV: Upper bound for voltage
1971 *
1972 * Drivers implementing set_voltage_sel() and list_voltage() can use
1973 * this as their map_voltage() operation. It will find a suitable
1974 * voltage by calling list_voltage() until it gets something in bounds
1975 * for the requested voltages.
1976 */
1977int regulator_map_voltage_iterate(struct regulator_dev *rdev,
1978 int min_uV, int max_uV)
1979{
1980 int best_val = INT_MAX;
1981 int selector = 0;
1982 int i, ret;
1983
1984 /* Find the smallest voltage that falls within the specified
1985 * range.
1986 */
1987 for (i = 0; i < rdev->desc->n_voltages; i++) {
1988 ret = rdev->desc->ops->list_voltage(rdev, i);
1989 if (ret < 0)
1990 continue;
1991
1992 if (ret < best_val && ret >= min_uV && ret <= max_uV) {
1993 best_val = ret;
1994 selector = i;
1995 }
1996 }
1997
1998 if (best_val != INT_MAX)
1999 return selector;
2000 else
2001 return -EINVAL;
2002}
2003EXPORT_SYMBOL_GPL(regulator_map_voltage_iterate);
2004
Mark Brownbca7bbf2012-05-09 21:38:33 +01002005/**
2006 * regulator_map_voltage_linear - map_voltage() for simple linear mappings
2007 *
2008 * @rdev: Regulator to operate on
2009 * @min_uV: Lower bound for voltage
2010 * @max_uV: Upper bound for voltage
2011 *
2012 * Drivers providing min_uV and uV_step in their regulator_desc can
2013 * use this as their map_voltage() operation.
2014 */
2015int regulator_map_voltage_linear(struct regulator_dev *rdev,
2016 int min_uV, int max_uV)
2017{
2018 int ret, voltage;
2019
2020 if (!rdev->desc->uV_step) {
2021 BUG_ON(!rdev->desc->uV_step);
2022 return -EINVAL;
2023 }
2024
Axel Linccfcb1c2012-05-14 10:33:37 +08002025 ret = DIV_ROUND_UP(min_uV - rdev->desc->min_uV, rdev->desc->uV_step);
Mark Brownbca7bbf2012-05-09 21:38:33 +01002026 if (ret < 0)
2027 return ret;
2028
2029 /* Map back into a voltage to verify we're still in bounds */
2030 voltage = rdev->desc->ops->list_voltage(rdev, ret);
2031 if (voltage < min_uV || voltage > max_uV)
2032 return -EINVAL;
2033
2034 return ret;
2035}
2036EXPORT_SYMBOL_GPL(regulator_map_voltage_linear);
2037
Mark Brown75790252010-12-12 14:25:50 +00002038static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2039 int min_uV, int max_uV)
2040{
2041 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002042 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002043 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002044 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002045 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002046
2047 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2048
Mark Brownbf5892a2011-05-08 22:13:37 +01002049 min_uV += rdev->constraints->uV_offset;
2050 max_uV += rdev->constraints->uV_offset;
2051
Axel Lineba41a52012-04-04 10:32:10 +08002052 /*
2053 * If we can't obtain the old selector there is not enough
2054 * info to call set_voltage_time_sel().
2055 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002056 if (_regulator_is_enabled(rdev) &&
2057 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002058 rdev->desc->ops->get_voltage_sel) {
2059 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2060 if (old_selector < 0)
2061 return old_selector;
2062 }
2063
Mark Brown75790252010-12-12 14:25:50 +00002064 if (rdev->desc->ops->set_voltage) {
2065 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
2066 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002067
2068 if (ret >= 0) {
2069 if (rdev->desc->ops->list_voltage)
2070 best_val = rdev->desc->ops->list_voltage(rdev,
2071 selector);
2072 else
2073 best_val = _regulator_get_voltage(rdev);
2074 }
2075
Mark Browne8eef822010-12-12 14:36:17 +00002076 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002077 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002078 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2079 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002080 } else {
2081 if (rdev->desc->ops->list_voltage ==
2082 regulator_list_voltage_linear)
2083 ret = regulator_map_voltage_linear(rdev,
2084 min_uV, max_uV);
2085 else
2086 ret = regulator_map_voltage_iterate(rdev,
2087 min_uV, max_uV);
2088 }
Mark Browne8eef822010-12-12 14:36:17 +00002089
Mark Browne843fc42012-05-09 21:16:06 +01002090 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002091 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2092 if (min_uV <= best_val && max_uV >= best_val) {
2093 selector = ret;
2094 ret = rdev->desc->ops->set_voltage_sel(rdev,
2095 ret);
2096 } else {
2097 ret = -EINVAL;
2098 }
Mark Browne8eef822010-12-12 14:36:17 +00002099 }
Mark Brown75790252010-12-12 14:25:50 +00002100 } else {
2101 ret = -EINVAL;
2102 }
2103
Axel Lineba41a52012-04-04 10:32:10 +08002104 /* Call set_voltage_time_sel if successfully obtained old_selector */
Mark Brown5aff3a82012-06-26 11:16:58 +01002105 if (ret == 0 && _regulator_is_enabled(rdev) && old_selector >= 0 &&
Axel Lineba41a52012-04-04 10:32:10 +08002106 rdev->desc->ops->set_voltage_time_sel) {
2107
2108 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2109 old_selector, selector);
2110 if (delay < 0) {
2111 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2112 delay);
2113 delay = 0;
2114 }
Axel Lineba41a52012-04-04 10:32:10 +08002115
Philip Rakity8b96de32012-06-14 15:07:56 -07002116 /* Insert any necessary delays */
2117 if (delay >= 1000) {
2118 mdelay(delay / 1000);
2119 udelay(delay % 1000);
2120 } else if (delay) {
2121 udelay(delay);
2122 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002123 }
2124
Philip Rakity2f7baf82012-06-15 11:27:36 -07002125 if (ret == 0 && best_val >= 0)
Mark Brownded06a52010-12-16 13:59:10 +00002126 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Philip Rakity2f7baf82012-06-15 11:27:36 -07002127 (void *)best_val);
Mark Brownded06a52010-12-16 13:59:10 +00002128
Axel Lineba41a52012-04-04 10:32:10 +08002129 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002130
2131 return ret;
2132}
2133
Mark Browna7a1ad92009-07-21 16:00:24 +01002134/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002135 * regulator_set_voltage - set regulator output voltage
2136 * @regulator: regulator source
2137 * @min_uV: Minimum required voltage in uV
2138 * @max_uV: Maximum acceptable voltage in uV
2139 *
2140 * Sets a voltage regulator to the desired output voltage. This can be set
2141 * during any regulator state. IOW, regulator can be disabled or enabled.
2142 *
2143 * If the regulator is enabled then the voltage will change to the new value
2144 * immediately otherwise if the regulator is disabled the regulator will
2145 * output at the new voltage when enabled.
2146 *
2147 * NOTE: If the regulator is shared between several devices then the lowest
2148 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002149 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002150 * calling this function otherwise this call will fail.
2151 */
2152int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2153{
2154 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002155 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002156
2157 mutex_lock(&rdev->mutex);
2158
Mark Brown95a3c232010-12-16 15:49:37 +00002159 /* If we're setting the same range as last time the change
2160 * should be a noop (some cpufreq implementations use the same
2161 * voltage for multiple frequencies, for example).
2162 */
2163 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2164 goto out;
2165
Liam Girdwood414c70c2008-04-30 15:59:04 +01002166 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002167 if (!rdev->desc->ops->set_voltage &&
2168 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002169 ret = -EINVAL;
2170 goto out;
2171 }
2172
2173 /* constraints check */
2174 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2175 if (ret < 0)
2176 goto out;
2177 regulator->min_uV = min_uV;
2178 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002179
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002180 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2181 if (ret < 0)
2182 goto out;
2183
Mark Brown75790252010-12-12 14:25:50 +00002184 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Mark Brown02fa3ec2010-11-10 14:38:30 +00002185
Liam Girdwood414c70c2008-04-30 15:59:04 +01002186out:
2187 mutex_unlock(&rdev->mutex);
2188 return ret;
2189}
2190EXPORT_SYMBOL_GPL(regulator_set_voltage);
2191
Mark Brown606a2562010-12-16 15:49:36 +00002192/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002193 * regulator_set_voltage_time - get raise/fall time
2194 * @regulator: regulator source
2195 * @old_uV: starting voltage in microvolts
2196 * @new_uV: target voltage in microvolts
2197 *
2198 * Provided with the starting and ending voltage, this function attempts to
2199 * calculate the time in microseconds required to rise or fall to this new
2200 * voltage.
2201 */
2202int regulator_set_voltage_time(struct regulator *regulator,
2203 int old_uV, int new_uV)
2204{
2205 struct regulator_dev *rdev = regulator->rdev;
2206 struct regulator_ops *ops = rdev->desc->ops;
2207 int old_sel = -1;
2208 int new_sel = -1;
2209 int voltage;
2210 int i;
2211
2212 /* Currently requires operations to do this */
2213 if (!ops->list_voltage || !ops->set_voltage_time_sel
2214 || !rdev->desc->n_voltages)
2215 return -EINVAL;
2216
2217 for (i = 0; i < rdev->desc->n_voltages; i++) {
2218 /* We only look for exact voltage matches here */
2219 voltage = regulator_list_voltage(regulator, i);
2220 if (voltage < 0)
2221 return -EINVAL;
2222 if (voltage == 0)
2223 continue;
2224 if (voltage == old_uV)
2225 old_sel = i;
2226 if (voltage == new_uV)
2227 new_sel = i;
2228 }
2229
2230 if (old_sel < 0 || new_sel < 0)
2231 return -EINVAL;
2232
2233 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2234}
2235EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2236
2237/**
Mark Brown606a2562010-12-16 15:49:36 +00002238 * regulator_sync_voltage - re-apply last regulator output voltage
2239 * @regulator: regulator source
2240 *
2241 * Re-apply the last configured voltage. This is intended to be used
2242 * where some external control source the consumer is cooperating with
2243 * has caused the configured voltage to change.
2244 */
2245int regulator_sync_voltage(struct regulator *regulator)
2246{
2247 struct regulator_dev *rdev = regulator->rdev;
2248 int ret, min_uV, max_uV;
2249
2250 mutex_lock(&rdev->mutex);
2251
2252 if (!rdev->desc->ops->set_voltage &&
2253 !rdev->desc->ops->set_voltage_sel) {
2254 ret = -EINVAL;
2255 goto out;
2256 }
2257
2258 /* This is only going to work if we've had a voltage configured. */
2259 if (!regulator->min_uV && !regulator->max_uV) {
2260 ret = -EINVAL;
2261 goto out;
2262 }
2263
2264 min_uV = regulator->min_uV;
2265 max_uV = regulator->max_uV;
2266
2267 /* This should be a paranoia check... */
2268 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2269 if (ret < 0)
2270 goto out;
2271
2272 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2273 if (ret < 0)
2274 goto out;
2275
2276 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2277
2278out:
2279 mutex_unlock(&rdev->mutex);
2280 return ret;
2281}
2282EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2283
Liam Girdwood414c70c2008-04-30 15:59:04 +01002284static int _regulator_get_voltage(struct regulator_dev *rdev)
2285{
Mark Brownbf5892a2011-05-08 22:13:37 +01002286 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002287
2288 if (rdev->desc->ops->get_voltage_sel) {
2289 sel = rdev->desc->ops->get_voltage_sel(rdev);
2290 if (sel < 0)
2291 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002292 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002293 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002294 ret = rdev->desc->ops->get_voltage(rdev);
Axel Lincb220d12011-05-23 20:08:10 +08002295 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002296 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002297 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002298
Axel Lincb220d12011-05-23 20:08:10 +08002299 if (ret < 0)
2300 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002301 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002302}
2303
2304/**
2305 * regulator_get_voltage - get regulator output voltage
2306 * @regulator: regulator source
2307 *
2308 * This returns the current regulator voltage in uV.
2309 *
2310 * NOTE: If the regulator is disabled it will return the voltage value. This
2311 * function should not be used to determine regulator state.
2312 */
2313int regulator_get_voltage(struct regulator *regulator)
2314{
2315 int ret;
2316
2317 mutex_lock(&regulator->rdev->mutex);
2318
2319 ret = _regulator_get_voltage(regulator->rdev);
2320
2321 mutex_unlock(&regulator->rdev->mutex);
2322
2323 return ret;
2324}
2325EXPORT_SYMBOL_GPL(regulator_get_voltage);
2326
2327/**
2328 * regulator_set_current_limit - set regulator output current limit
2329 * @regulator: regulator source
2330 * @min_uA: Minimuum supported current in uA
2331 * @max_uA: Maximum supported current in uA
2332 *
2333 * Sets current sink to the desired output current. This can be set during
2334 * any regulator state. IOW, regulator can be disabled or enabled.
2335 *
2336 * If the regulator is enabled then the current will change to the new value
2337 * immediately otherwise if the regulator is disabled the regulator will
2338 * output at the new current when enabled.
2339 *
2340 * NOTE: Regulator system constraints must be set for this regulator before
2341 * calling this function otherwise this call will fail.
2342 */
2343int regulator_set_current_limit(struct regulator *regulator,
2344 int min_uA, int max_uA)
2345{
2346 struct regulator_dev *rdev = regulator->rdev;
2347 int ret;
2348
2349 mutex_lock(&rdev->mutex);
2350
2351 /* sanity check */
2352 if (!rdev->desc->ops->set_current_limit) {
2353 ret = -EINVAL;
2354 goto out;
2355 }
2356
2357 /* constraints check */
2358 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2359 if (ret < 0)
2360 goto out;
2361
2362 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2363out:
2364 mutex_unlock(&rdev->mutex);
2365 return ret;
2366}
2367EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2368
2369static int _regulator_get_current_limit(struct regulator_dev *rdev)
2370{
2371 int ret;
2372
2373 mutex_lock(&rdev->mutex);
2374
2375 /* sanity check */
2376 if (!rdev->desc->ops->get_current_limit) {
2377 ret = -EINVAL;
2378 goto out;
2379 }
2380
2381 ret = rdev->desc->ops->get_current_limit(rdev);
2382out:
2383 mutex_unlock(&rdev->mutex);
2384 return ret;
2385}
2386
2387/**
2388 * regulator_get_current_limit - get regulator output current
2389 * @regulator: regulator source
2390 *
2391 * This returns the current supplied by the specified current sink in uA.
2392 *
2393 * NOTE: If the regulator is disabled it will return the current value. This
2394 * function should not be used to determine regulator state.
2395 */
2396int regulator_get_current_limit(struct regulator *regulator)
2397{
2398 return _regulator_get_current_limit(regulator->rdev);
2399}
2400EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2401
2402/**
2403 * regulator_set_mode - set regulator operating mode
2404 * @regulator: regulator source
2405 * @mode: operating mode - one of the REGULATOR_MODE constants
2406 *
2407 * Set regulator operating mode to increase regulator efficiency or improve
2408 * regulation performance.
2409 *
2410 * NOTE: Regulator system constraints must be set for this regulator before
2411 * calling this function otherwise this call will fail.
2412 */
2413int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2414{
2415 struct regulator_dev *rdev = regulator->rdev;
2416 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302417 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002418
2419 mutex_lock(&rdev->mutex);
2420
2421 /* sanity check */
2422 if (!rdev->desc->ops->set_mode) {
2423 ret = -EINVAL;
2424 goto out;
2425 }
2426
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302427 /* return if the same mode is requested */
2428 if (rdev->desc->ops->get_mode) {
2429 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2430 if (regulator_curr_mode == mode) {
2431 ret = 0;
2432 goto out;
2433 }
2434 }
2435
Liam Girdwood414c70c2008-04-30 15:59:04 +01002436 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08002437 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002438 if (ret < 0)
2439 goto out;
2440
2441 ret = rdev->desc->ops->set_mode(rdev, mode);
2442out:
2443 mutex_unlock(&rdev->mutex);
2444 return ret;
2445}
2446EXPORT_SYMBOL_GPL(regulator_set_mode);
2447
2448static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2449{
2450 int ret;
2451
2452 mutex_lock(&rdev->mutex);
2453
2454 /* sanity check */
2455 if (!rdev->desc->ops->get_mode) {
2456 ret = -EINVAL;
2457 goto out;
2458 }
2459
2460 ret = rdev->desc->ops->get_mode(rdev);
2461out:
2462 mutex_unlock(&rdev->mutex);
2463 return ret;
2464}
2465
2466/**
2467 * regulator_get_mode - get regulator operating mode
2468 * @regulator: regulator source
2469 *
2470 * Get the current regulator operating mode.
2471 */
2472unsigned int regulator_get_mode(struct regulator *regulator)
2473{
2474 return _regulator_get_mode(regulator->rdev);
2475}
2476EXPORT_SYMBOL_GPL(regulator_get_mode);
2477
2478/**
2479 * regulator_set_optimum_mode - set regulator optimum operating mode
2480 * @regulator: regulator source
2481 * @uA_load: load current
2482 *
2483 * Notifies the regulator core of a new device load. This is then used by
2484 * DRMS (if enabled by constraints) to set the most efficient regulator
2485 * operating mode for the new regulator loading.
2486 *
2487 * Consumer devices notify their supply regulator of the maximum power
2488 * they will require (can be taken from device datasheet in the power
2489 * consumption tables) when they change operational status and hence power
2490 * state. Examples of operational state changes that can affect power
2491 * consumption are :-
2492 *
2493 * o Device is opened / closed.
2494 * o Device I/O is about to begin or has just finished.
2495 * o Device is idling in between work.
2496 *
2497 * This information is also exported via sysfs to userspace.
2498 *
2499 * DRMS will sum the total requested load on the regulator and change
2500 * to the most efficient operating mode if platform constraints allow.
2501 *
2502 * Returns the new regulator mode or error.
2503 */
2504int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
2505{
2506 struct regulator_dev *rdev = regulator->rdev;
2507 struct regulator *consumer;
2508 int ret, output_uV, input_uV, total_uA_load = 0;
2509 unsigned int mode;
2510
2511 mutex_lock(&rdev->mutex);
2512
Mark Browna4b41482011-05-14 11:19:45 -07002513 /*
2514 * first check to see if we can set modes at all, otherwise just
2515 * tell the consumer everything is OK.
2516 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002517 regulator->uA_load = uA_load;
2518 ret = regulator_check_drms(rdev);
Mark Browna4b41482011-05-14 11:19:45 -07002519 if (ret < 0) {
2520 ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002521 goto out;
Mark Browna4b41482011-05-14 11:19:45 -07002522 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002523
Liam Girdwood414c70c2008-04-30 15:59:04 +01002524 if (!rdev->desc->ops->get_optimum_mode)
2525 goto out;
2526
Mark Browna4b41482011-05-14 11:19:45 -07002527 /*
2528 * we can actually do this so any errors are indicators of
2529 * potential real failure.
2530 */
2531 ret = -EINVAL;
2532
Axel Lin854ccba2012-04-16 18:44:23 +08002533 if (!rdev->desc->ops->set_mode)
2534 goto out;
2535
Liam Girdwood414c70c2008-04-30 15:59:04 +01002536 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002537 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002538 if (output_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002539 rdev_err(rdev, "invalid output voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002540 goto out;
2541 }
2542
2543 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002544 input_uV = 0;
2545 if (rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002546 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002547 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002548 input_uV = rdev->constraints->input_uV;
2549 if (input_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002550 rdev_err(rdev, "invalid input voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002551 goto out;
2552 }
2553
2554 /* calc total requested load for this regulator */
2555 list_for_each_entry(consumer, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +01002556 total_uA_load += consumer->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002557
2558 mode = rdev->desc->ops->get_optimum_mode(rdev,
2559 input_uV, output_uV,
2560 total_uA_load);
Mark Brown2c608232011-03-30 06:29:12 +09002561 ret = regulator_mode_constrain(rdev, &mode);
David Brownelle5735202008-11-16 11:46:56 -08002562 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002563 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
2564 total_uA_load, input_uV, output_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002565 goto out;
2566 }
2567
2568 ret = rdev->desc->ops->set_mode(rdev, mode);
David Brownelle5735202008-11-16 11:46:56 -08002569 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002570 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002571 goto out;
2572 }
2573 ret = mode;
2574out:
2575 mutex_unlock(&rdev->mutex);
2576 return ret;
2577}
2578EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
2579
2580/**
2581 * regulator_register_notifier - register regulator event notifier
2582 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002583 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002584 *
2585 * Register notifier block to receive regulator events.
2586 */
2587int regulator_register_notifier(struct regulator *regulator,
2588 struct notifier_block *nb)
2589{
2590 return blocking_notifier_chain_register(&regulator->rdev->notifier,
2591 nb);
2592}
2593EXPORT_SYMBOL_GPL(regulator_register_notifier);
2594
2595/**
2596 * regulator_unregister_notifier - unregister regulator event notifier
2597 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002598 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002599 *
2600 * Unregister regulator event notifier block.
2601 */
2602int regulator_unregister_notifier(struct regulator *regulator,
2603 struct notifier_block *nb)
2604{
2605 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
2606 nb);
2607}
2608EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
2609
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002610/* notify regulator consumers and downstream regulator consumers.
2611 * Note mutex must be held by caller.
2612 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002613static void _notifier_call_chain(struct regulator_dev *rdev,
2614 unsigned long event, void *data)
2615{
Liam Girdwood414c70c2008-04-30 15:59:04 +01002616 /* call rdev chain first */
Mark Brownd8493d22012-06-15 19:09:09 +01002617 blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002618}
2619
2620/**
2621 * regulator_bulk_get - get multiple regulator consumers
2622 *
2623 * @dev: Device to supply
2624 * @num_consumers: Number of consumers to register
2625 * @consumers: Configuration of consumers; clients are stored here.
2626 *
2627 * @return 0 on success, an errno on failure.
2628 *
2629 * This helper function allows drivers to get several regulator
2630 * consumers in one operation. If any of the regulators cannot be
2631 * acquired then any regulators that were allocated will be freed
2632 * before returning to the caller.
2633 */
2634int regulator_bulk_get(struct device *dev, int num_consumers,
2635 struct regulator_bulk_data *consumers)
2636{
2637 int i;
2638 int ret;
2639
2640 for (i = 0; i < num_consumers; i++)
2641 consumers[i].consumer = NULL;
2642
2643 for (i = 0; i < num_consumers; i++) {
2644 consumers[i].consumer = regulator_get(dev,
2645 consumers[i].supply);
2646 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002647 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01002648 dev_err(dev, "Failed to get supply '%s': %d\n",
2649 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002650 consumers[i].consumer = NULL;
2651 goto err;
2652 }
2653 }
2654
2655 return 0;
2656
2657err:
Axel Linb29c7692012-02-20 10:32:16 +08002658 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002659 regulator_put(consumers[i].consumer);
2660
2661 return ret;
2662}
2663EXPORT_SYMBOL_GPL(regulator_bulk_get);
2664
Mark Browne6e74032012-01-20 20:10:08 +00002665/**
2666 * devm_regulator_bulk_get - managed get multiple regulator consumers
2667 *
2668 * @dev: Device to supply
2669 * @num_consumers: Number of consumers to register
2670 * @consumers: Configuration of consumers; clients are stored here.
2671 *
2672 * @return 0 on success, an errno on failure.
2673 *
2674 * This helper function allows drivers to get several regulator
2675 * consumers in one operation with management, the regulators will
2676 * automatically be freed when the device is unbound. If any of the
2677 * regulators cannot be acquired then any regulators that were
2678 * allocated will be freed before returning to the caller.
2679 */
2680int devm_regulator_bulk_get(struct device *dev, int num_consumers,
2681 struct regulator_bulk_data *consumers)
2682{
2683 int i;
2684 int ret;
2685
2686 for (i = 0; i < num_consumers; i++)
2687 consumers[i].consumer = NULL;
2688
2689 for (i = 0; i < num_consumers; i++) {
2690 consumers[i].consumer = devm_regulator_get(dev,
2691 consumers[i].supply);
2692 if (IS_ERR(consumers[i].consumer)) {
2693 ret = PTR_ERR(consumers[i].consumer);
2694 dev_err(dev, "Failed to get supply '%s': %d\n",
2695 consumers[i].supply, ret);
2696 consumers[i].consumer = NULL;
2697 goto err;
2698 }
2699 }
2700
2701 return 0;
2702
2703err:
2704 for (i = 0; i < num_consumers && consumers[i].consumer; i++)
2705 devm_regulator_put(consumers[i].consumer);
2706
2707 return ret;
2708}
2709EXPORT_SYMBOL_GPL(devm_regulator_bulk_get);
2710
Mark Brownf21e0e82011-05-24 08:12:40 +08002711static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
2712{
2713 struct regulator_bulk_data *bulk = data;
2714
2715 bulk->ret = regulator_enable(bulk->consumer);
2716}
2717
Liam Girdwood414c70c2008-04-30 15:59:04 +01002718/**
2719 * regulator_bulk_enable - enable multiple regulator consumers
2720 *
2721 * @num_consumers: Number of consumers
2722 * @consumers: Consumer data; clients are stored here.
2723 * @return 0 on success, an errno on failure
2724 *
2725 * This convenience API allows consumers to enable multiple regulator
2726 * clients in a single API call. If any consumers cannot be enabled
2727 * then any others that were enabled will be disabled again prior to
2728 * return.
2729 */
2730int regulator_bulk_enable(int num_consumers,
2731 struct regulator_bulk_data *consumers)
2732{
Mark Brownf21e0e82011-05-24 08:12:40 +08002733 LIST_HEAD(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002734 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08002735 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002736
Mark Brown6492bc12012-04-19 13:19:07 +01002737 for (i = 0; i < num_consumers; i++) {
2738 if (consumers[i].consumer->always_on)
2739 consumers[i].ret = 0;
2740 else
2741 async_schedule_domain(regulator_bulk_enable_async,
2742 &consumers[i], &async_domain);
2743 }
Mark Brownf21e0e82011-05-24 08:12:40 +08002744
2745 async_synchronize_full_domain(&async_domain);
2746
2747 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002748 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08002749 if (consumers[i].ret != 0) {
2750 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002751 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08002752 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002753 }
2754
2755 return 0;
2756
2757err:
Axel Linb29c7692012-02-20 10:32:16 +08002758 pr_err("Failed to enable %s: %d\n", consumers[i].supply, ret);
2759 while (--i >= 0)
2760 regulator_disable(consumers[i].consumer);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002761
2762 return ret;
2763}
2764EXPORT_SYMBOL_GPL(regulator_bulk_enable);
2765
2766/**
2767 * regulator_bulk_disable - disable multiple regulator consumers
2768 *
2769 * @num_consumers: Number of consumers
2770 * @consumers: Consumer data; clients are stored here.
2771 * @return 0 on success, an errno on failure
2772 *
2773 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01002774 * clients in a single API call. If any consumers cannot be disabled
2775 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01002776 * return.
2777 */
2778int regulator_bulk_disable(int num_consumers,
2779 struct regulator_bulk_data *consumers)
2780{
2781 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01002782 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002783
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01002784 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002785 ret = regulator_disable(consumers[i].consumer);
2786 if (ret != 0)
2787 goto err;
2788 }
2789
2790 return 0;
2791
2792err:
Joe Perches5da84fd2010-11-30 05:53:48 -08002793 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01002794 for (++i; i < num_consumers; ++i) {
2795 r = regulator_enable(consumers[i].consumer);
2796 if (r != 0)
2797 pr_err("Failed to reename %s: %d\n",
2798 consumers[i].supply, r);
2799 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002800
2801 return ret;
2802}
2803EXPORT_SYMBOL_GPL(regulator_bulk_disable);
2804
2805/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09002806 * regulator_bulk_force_disable - force disable multiple regulator consumers
2807 *
2808 * @num_consumers: Number of consumers
2809 * @consumers: Consumer data; clients are stored here.
2810 * @return 0 on success, an errno on failure
2811 *
2812 * This convenience API allows consumers to forcibly disable multiple regulator
2813 * clients in a single API call.
2814 * NOTE: This should be used for situations when device damage will
2815 * likely occur if the regulators are not disabled (e.g. over temp).
2816 * Although regulator_force_disable function call for some consumers can
2817 * return error numbers, the function is called for all consumers.
2818 */
2819int regulator_bulk_force_disable(int num_consumers,
2820 struct regulator_bulk_data *consumers)
2821{
2822 int i;
2823 int ret;
2824
2825 for (i = 0; i < num_consumers; i++)
2826 consumers[i].ret =
2827 regulator_force_disable(consumers[i].consumer);
2828
2829 for (i = 0; i < num_consumers; i++) {
2830 if (consumers[i].ret != 0) {
2831 ret = consumers[i].ret;
2832 goto out;
2833 }
2834 }
2835
2836 return 0;
2837out:
2838 return ret;
2839}
2840EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
2841
2842/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002843 * regulator_bulk_free - free multiple regulator consumers
2844 *
2845 * @num_consumers: Number of consumers
2846 * @consumers: Consumer data; clients are stored here.
2847 *
2848 * This convenience API allows consumers to free multiple regulator
2849 * clients in a single API call.
2850 */
2851void regulator_bulk_free(int num_consumers,
2852 struct regulator_bulk_data *consumers)
2853{
2854 int i;
2855
2856 for (i = 0; i < num_consumers; i++) {
2857 regulator_put(consumers[i].consumer);
2858 consumers[i].consumer = NULL;
2859 }
2860}
2861EXPORT_SYMBOL_GPL(regulator_bulk_free);
2862
2863/**
2864 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00002865 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01002866 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00002867 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002868 *
2869 * Called by regulator drivers to notify clients a regulator event has
2870 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002871 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002872 */
2873int regulator_notifier_call_chain(struct regulator_dev *rdev,
2874 unsigned long event, void *data)
2875{
2876 _notifier_call_chain(rdev, event, data);
2877 return NOTIFY_DONE;
2878
2879}
2880EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
2881
Mark Brownbe721972009-08-04 20:09:52 +02002882/**
2883 * regulator_mode_to_status - convert a regulator mode into a status
2884 *
2885 * @mode: Mode to convert
2886 *
2887 * Convert a regulator mode into a status.
2888 */
2889int regulator_mode_to_status(unsigned int mode)
2890{
2891 switch (mode) {
2892 case REGULATOR_MODE_FAST:
2893 return REGULATOR_STATUS_FAST;
2894 case REGULATOR_MODE_NORMAL:
2895 return REGULATOR_STATUS_NORMAL;
2896 case REGULATOR_MODE_IDLE:
2897 return REGULATOR_STATUS_IDLE;
2898 case REGULATOR_STATUS_STANDBY:
2899 return REGULATOR_STATUS_STANDBY;
2900 default:
2901 return 0;
2902 }
2903}
2904EXPORT_SYMBOL_GPL(regulator_mode_to_status);
2905
David Brownell7ad68e22008-11-11 17:39:02 -08002906/*
2907 * To avoid cluttering sysfs (and memory) with useless state, only
2908 * create attributes that can be meaningfully displayed.
2909 */
2910static int add_regulator_attributes(struct regulator_dev *rdev)
2911{
2912 struct device *dev = &rdev->dev;
2913 struct regulator_ops *ops = rdev->desc->ops;
2914 int status = 0;
2915
2916 /* some attributes need specific methods to be displayed */
Mark Brown4c788992011-11-02 11:39:09 +00002917 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
2918 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0)) {
David Brownell7ad68e22008-11-11 17:39:02 -08002919 status = device_create_file(dev, &dev_attr_microvolts);
2920 if (status < 0)
2921 return status;
2922 }
2923 if (ops->get_current_limit) {
2924 status = device_create_file(dev, &dev_attr_microamps);
2925 if (status < 0)
2926 return status;
2927 }
2928 if (ops->get_mode) {
2929 status = device_create_file(dev, &dev_attr_opmode);
2930 if (status < 0)
2931 return status;
2932 }
2933 if (ops->is_enabled) {
2934 status = device_create_file(dev, &dev_attr_state);
2935 if (status < 0)
2936 return status;
2937 }
David Brownell853116a2009-01-14 23:03:17 -08002938 if (ops->get_status) {
2939 status = device_create_file(dev, &dev_attr_status);
2940 if (status < 0)
2941 return status;
2942 }
David Brownell7ad68e22008-11-11 17:39:02 -08002943
2944 /* some attributes are type-specific */
2945 if (rdev->desc->type == REGULATOR_CURRENT) {
2946 status = device_create_file(dev, &dev_attr_requested_microamps);
2947 if (status < 0)
2948 return status;
2949 }
2950
2951 /* all the other attributes exist to support constraints;
2952 * don't show them if there are no constraints, or if the
2953 * relevant supporting methods are missing.
2954 */
2955 if (!rdev->constraints)
2956 return status;
2957
2958 /* constraints need specific supporting methods */
Mark Browne8eef822010-12-12 14:36:17 +00002959 if (ops->set_voltage || ops->set_voltage_sel) {
David Brownell7ad68e22008-11-11 17:39:02 -08002960 status = device_create_file(dev, &dev_attr_min_microvolts);
2961 if (status < 0)
2962 return status;
2963 status = device_create_file(dev, &dev_attr_max_microvolts);
2964 if (status < 0)
2965 return status;
2966 }
2967 if (ops->set_current_limit) {
2968 status = device_create_file(dev, &dev_attr_min_microamps);
2969 if (status < 0)
2970 return status;
2971 status = device_create_file(dev, &dev_attr_max_microamps);
2972 if (status < 0)
2973 return status;
2974 }
2975
David Brownell7ad68e22008-11-11 17:39:02 -08002976 status = device_create_file(dev, &dev_attr_suspend_standby_state);
2977 if (status < 0)
2978 return status;
2979 status = device_create_file(dev, &dev_attr_suspend_mem_state);
2980 if (status < 0)
2981 return status;
2982 status = device_create_file(dev, &dev_attr_suspend_disk_state);
2983 if (status < 0)
2984 return status;
2985
2986 if (ops->set_suspend_voltage) {
2987 status = device_create_file(dev,
2988 &dev_attr_suspend_standby_microvolts);
2989 if (status < 0)
2990 return status;
2991 status = device_create_file(dev,
2992 &dev_attr_suspend_mem_microvolts);
2993 if (status < 0)
2994 return status;
2995 status = device_create_file(dev,
2996 &dev_attr_suspend_disk_microvolts);
2997 if (status < 0)
2998 return status;
2999 }
3000
3001 if (ops->set_suspend_mode) {
3002 status = device_create_file(dev,
3003 &dev_attr_suspend_standby_mode);
3004 if (status < 0)
3005 return status;
3006 status = device_create_file(dev,
3007 &dev_attr_suspend_mem_mode);
3008 if (status < 0)
3009 return status;
3010 status = device_create_file(dev,
3011 &dev_attr_suspend_disk_mode);
3012 if (status < 0)
3013 return status;
3014 }
3015
3016 return status;
3017}
3018
Mark Brown1130e5b2010-12-21 23:49:31 +00003019static void rdev_init_debugfs(struct regulator_dev *rdev)
3020{
Mark Brown1130e5b2010-12-21 23:49:31 +00003021 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003022 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003023 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003024 return;
3025 }
3026
3027 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3028 &rdev->use_count);
3029 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3030 &rdev->open_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003031}
3032
Liam Girdwood414c70c2008-04-30 15:59:04 +01003033/**
3034 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003035 * @regulator_desc: regulator to register
Mark Brownc1727082012-04-04 00:50:22 +01003036 * @config: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003037 *
3038 * Called by regulator drivers to register a regulator.
3039 * Returns 0 on success.
3040 */
Mark Brown65f26842012-04-03 20:46:53 +01003041struct regulator_dev *
3042regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc1727082012-04-04 00:50:22 +01003043 const struct regulator_config *config)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003044{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003045 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003046 const struct regulator_init_data *init_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003047 static atomic_t regulator_no = ATOMIC_INIT(0);
3048 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003049 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003050 int ret, i;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303051 const char *supply = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003052
Mark Brownc1727082012-04-04 00:50:22 +01003053 if (regulator_desc == NULL || config == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003054 return ERR_PTR(-EINVAL);
3055
Mark Brown32c8fad2012-04-11 10:19:12 +01003056 dev = config->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003057 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003058
Liam Girdwood414c70c2008-04-30 15:59:04 +01003059 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3060 return ERR_PTR(-EINVAL);
3061
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003062 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3063 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003064 return ERR_PTR(-EINVAL);
3065
Mark Brown476c2d82010-12-10 17:28:07 +00003066 /* Only one of each should be implemented */
3067 WARN_ON(regulator_desc->ops->get_voltage &&
3068 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003069 WARN_ON(regulator_desc->ops->set_voltage &&
3070 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003071
3072 /* If we're using selectors we must implement list_voltage. */
3073 if (regulator_desc->ops->get_voltage_sel &&
3074 !regulator_desc->ops->list_voltage) {
3075 return ERR_PTR(-EINVAL);
3076 }
Mark Browne8eef822010-12-12 14:36:17 +00003077 if (regulator_desc->ops->set_voltage_sel &&
3078 !regulator_desc->ops->list_voltage) {
3079 return ERR_PTR(-EINVAL);
3080 }
Mark Brown476c2d82010-12-10 17:28:07 +00003081
Mark Brownc1727082012-04-04 00:50:22 +01003082 init_data = config->init_data;
3083
Liam Girdwood414c70c2008-04-30 15:59:04 +01003084 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3085 if (rdev == NULL)
3086 return ERR_PTR(-ENOMEM);
3087
3088 mutex_lock(&regulator_list_mutex);
3089
3090 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003091 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003092 rdev->owner = regulator_desc->owner;
3093 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003094 if (config->regmap)
3095 rdev->regmap = config->regmap;
3096 else
3097 rdev->regmap = dev_get_regmap(dev, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003098 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003099 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003100 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003101 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003102
Liam Girdwooda5766f12008-10-10 13:22:20 +01003103 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003104 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003105 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003106 if (ret < 0)
3107 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003108 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003109
Liam Girdwooda5766f12008-10-10 13:22:20 +01003110 /* register with sysfs */
3111 rdev->dev.class = &regulator_class;
Mark Brownc1727082012-04-04 00:50:22 +01003112 rdev->dev.of_node = config->of_node;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003113 rdev->dev.parent = dev;
Kay Sievers812460a2008-11-02 03:55:10 +01003114 dev_set_name(&rdev->dev, "regulator.%d",
3115 atomic_inc_return(&regulator_no) - 1);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003116 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003117 if (ret != 0) {
3118 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003119 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003120 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003121
3122 dev_set_drvdata(&rdev->dev, rdev);
3123
Mike Rapoport74f544c2008-11-25 14:53:53 +02003124 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003125 if (init_data)
3126 constraints = &init_data->constraints;
3127
3128 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003129 if (ret < 0)
3130 goto scrub;
3131
David Brownell7ad68e22008-11-11 17:39:02 -08003132 /* add attributes supported by this regulator */
3133 ret = add_regulator_attributes(rdev);
3134 if (ret < 0)
3135 goto scrub;
3136
Mark Brown9a8f5e02011-11-29 18:11:19 +00003137 if (init_data && init_data->supply_regulator)
Rajendra Nayak69511a42011-11-18 16:47:20 +05303138 supply = init_data->supply_regulator;
3139 else if (regulator_desc->supply_name)
3140 supply = regulator_desc->supply_name;
3141
3142 if (supply) {
Mark Brown0178f3e2010-04-26 15:18:14 +01003143 struct regulator_dev *r;
Mark Brown0178f3e2010-04-26 15:18:14 +01003144
Mark Brown6d191a52012-03-29 14:19:02 +01003145 r = regulator_dev_lookup(dev, supply, &ret);
Mark Brown0178f3e2010-04-26 15:18:14 +01003146
Rajendra Nayak69511a42011-11-18 16:47:20 +05303147 if (!r) {
3148 dev_err(dev, "Failed to find supply %s\n", supply);
Mark Brown04bf3012012-03-11 13:07:56 +00003149 ret = -EPROBE_DEFER;
Mark Brown0178f3e2010-04-26 15:18:14 +01003150 goto scrub;
3151 }
3152
3153 ret = set_supply(rdev, r);
3154 if (ret < 0)
3155 goto scrub;
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303156
3157 /* Enable supply if rail is enabled */
Mark Brownb1a86832012-05-14 00:40:14 +01003158 if (_regulator_is_enabled(rdev)) {
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303159 ret = regulator_enable(rdev->supply);
3160 if (ret < 0)
3161 goto scrub;
3162 }
Mark Brown0178f3e2010-04-26 15:18:14 +01003163 }
3164
Liam Girdwooda5766f12008-10-10 13:22:20 +01003165 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003166 if (init_data) {
3167 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3168 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003169 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003170 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003171 if (ret < 0) {
3172 dev_err(dev, "Failed to set supply %s\n",
3173 init_data->consumer_supplies[i].supply);
3174 goto unset_supplies;
3175 }
Mark Brown23c2f042011-02-24 17:39:09 +00003176 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003177 }
3178
3179 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003180
3181 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003182out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003183 mutex_unlock(&regulator_list_mutex);
3184 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003185
Jani Nikulad4033b52010-04-29 10:55:11 +03003186unset_supplies:
3187 unset_regulator_supplies(rdev);
3188
David Brownell4fca9542008-11-11 17:38:53 -08003189scrub:
Mark Browne81dba852012-05-13 18:35:56 +01003190 if (rdev->supply)
3191 regulator_put(rdev->supply);
Axel Lin1a6958e72011-07-15 10:50:43 +08003192 kfree(rdev->constraints);
David Brownell4fca9542008-11-11 17:38:53 -08003193 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003194 /* device core frees rdev */
3195 rdev = ERR_PTR(ret);
3196 goto out;
3197
David Brownell4fca9542008-11-11 17:38:53 -08003198clean:
3199 kfree(rdev);
3200 rdev = ERR_PTR(ret);
3201 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003202}
3203EXPORT_SYMBOL_GPL(regulator_register);
3204
3205/**
3206 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003207 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003208 *
3209 * Called by regulator drivers to unregister a regulator.
3210 */
3211void regulator_unregister(struct regulator_dev *rdev)
3212{
3213 if (rdev == NULL)
3214 return;
3215
Mark Browne032b372012-03-28 21:17:55 +01003216 if (rdev->supply)
3217 regulator_put(rdev->supply);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003218 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003219 debugfs_remove_recursive(rdev->debugfs);
Mark Brownda07ecd2011-09-11 09:53:50 +01003220 flush_work_sync(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003221 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003222 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003223 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003224 kfree(rdev->constraints);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003225 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003226 mutex_unlock(&regulator_list_mutex);
3227}
3228EXPORT_SYMBOL_GPL(regulator_unregister);
3229
3230/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003231 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003232 * @state: system suspend state
3233 *
3234 * Configure each regulator with it's suspend operating parameters for state.
3235 * This will usually be called by machine suspend code prior to supending.
3236 */
3237int regulator_suspend_prepare(suspend_state_t state)
3238{
3239 struct regulator_dev *rdev;
3240 int ret = 0;
3241
3242 /* ON is handled by regulator active state */
3243 if (state == PM_SUSPEND_ON)
3244 return -EINVAL;
3245
3246 mutex_lock(&regulator_list_mutex);
3247 list_for_each_entry(rdev, &regulator_list, list) {
3248
3249 mutex_lock(&rdev->mutex);
3250 ret = suspend_prepare(rdev, state);
3251 mutex_unlock(&rdev->mutex);
3252
3253 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003254 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003255 goto out;
3256 }
3257 }
3258out:
3259 mutex_unlock(&regulator_list_mutex);
3260 return ret;
3261}
3262EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3263
3264/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003265 * regulator_suspend_finish - resume regulators from system wide suspend
3266 *
3267 * Turn on regulators that might be turned off by regulator_suspend_prepare
3268 * and that should be turned on according to the regulators properties.
3269 */
3270int regulator_suspend_finish(void)
3271{
3272 struct regulator_dev *rdev;
3273 int ret = 0, error;
3274
3275 mutex_lock(&regulator_list_mutex);
3276 list_for_each_entry(rdev, &regulator_list, list) {
3277 struct regulator_ops *ops = rdev->desc->ops;
3278
3279 mutex_lock(&rdev->mutex);
3280 if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
3281 ops->enable) {
3282 error = ops->enable(rdev);
3283 if (error)
3284 ret = error;
3285 } else {
3286 if (!has_full_constraints)
3287 goto unlock;
3288 if (!ops->disable)
3289 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003290 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003291 goto unlock;
3292
3293 error = ops->disable(rdev);
3294 if (error)
3295 ret = error;
3296 }
3297unlock:
3298 mutex_unlock(&rdev->mutex);
3299 }
3300 mutex_unlock(&regulator_list_mutex);
3301 return ret;
3302}
3303EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3304
3305/**
Mark Brownca725562009-03-16 19:36:34 +00003306 * regulator_has_full_constraints - the system has fully specified constraints
3307 *
3308 * Calling this function will cause the regulator API to disable all
3309 * regulators which have a zero use count and don't have an always_on
3310 * constraint in a late_initcall.
3311 *
3312 * The intention is that this will become the default behaviour in a
3313 * future kernel release so users are encouraged to use this facility
3314 * now.
3315 */
3316void regulator_has_full_constraints(void)
3317{
3318 has_full_constraints = 1;
3319}
3320EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3321
3322/**
Mark Brown688fe992010-10-05 19:18:32 -07003323 * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
3324 *
3325 * Calling this function will cause the regulator API to provide a
3326 * dummy regulator to consumers if no physical regulator is found,
3327 * allowing most consumers to proceed as though a regulator were
3328 * configured. This allows systems such as those with software
3329 * controllable regulators for the CPU core only to be brought up more
3330 * readily.
3331 */
3332void regulator_use_dummy_regulator(void)
3333{
3334 board_wants_dummy_regulator = true;
3335}
3336EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
3337
3338/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003339 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003340 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003341 *
3342 * Get rdev regulator driver private data. This call can be used in the
3343 * regulator driver context.
3344 */
3345void *rdev_get_drvdata(struct regulator_dev *rdev)
3346{
3347 return rdev->reg_data;
3348}
3349EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3350
3351/**
3352 * regulator_get_drvdata - get regulator driver data
3353 * @regulator: regulator
3354 *
3355 * Get regulator driver private data. This call can be used in the consumer
3356 * driver context when non API regulator specific functions need to be called.
3357 */
3358void *regulator_get_drvdata(struct regulator *regulator)
3359{
3360 return regulator->rdev->reg_data;
3361}
3362EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3363
3364/**
3365 * regulator_set_drvdata - set regulator driver data
3366 * @regulator: regulator
3367 * @data: data
3368 */
3369void regulator_set_drvdata(struct regulator *regulator, void *data)
3370{
3371 regulator->rdev->reg_data = data;
3372}
3373EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3374
3375/**
3376 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003377 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003378 */
3379int rdev_get_id(struct regulator_dev *rdev)
3380{
3381 return rdev->desc->id;
3382}
3383EXPORT_SYMBOL_GPL(rdev_get_id);
3384
Liam Girdwooda5766f12008-10-10 13:22:20 +01003385struct device *rdev_get_dev(struct regulator_dev *rdev)
3386{
3387 return &rdev->dev;
3388}
3389EXPORT_SYMBOL_GPL(rdev_get_dev);
3390
3391void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3392{
3393 return reg_init_data->driver_data;
3394}
3395EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3396
Mark Brownba55a972011-08-23 17:39:10 +01003397#ifdef CONFIG_DEBUG_FS
3398static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3399 size_t count, loff_t *ppos)
3400{
3401 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3402 ssize_t len, ret = 0;
3403 struct regulator_map *map;
3404
3405 if (!buf)
3406 return -ENOMEM;
3407
3408 list_for_each_entry(map, &regulator_map_list, list) {
3409 len = snprintf(buf + ret, PAGE_SIZE - ret,
3410 "%s -> %s.%s\n",
3411 rdev_get_name(map->regulator), map->dev_name,
3412 map->supply);
3413 if (len >= 0)
3414 ret += len;
3415 if (ret > PAGE_SIZE) {
3416 ret = PAGE_SIZE;
3417 break;
3418 }
3419 }
3420
3421 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3422
3423 kfree(buf);
3424
3425 return ret;
3426}
Stephen Boyd24751432012-02-20 22:50:42 -08003427#endif
Mark Brownba55a972011-08-23 17:39:10 +01003428
3429static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003430#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003431 .read = supply_map_read_file,
3432 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003433#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003434};
Mark Brownba55a972011-08-23 17:39:10 +01003435
Liam Girdwood414c70c2008-04-30 15:59:04 +01003436static int __init regulator_init(void)
3437{
Mark Brown34abbd62010-02-12 10:18:08 +00003438 int ret;
3439
Mark Brown34abbd62010-02-12 10:18:08 +00003440 ret = class_register(&regulator_class);
3441
Mark Brown1130e5b2010-12-21 23:49:31 +00003442 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08003443 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00003444 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01003445
Mark Brownf4d562c2012-02-20 21:01:04 +00003446 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
3447 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00003448
Mark Brown34abbd62010-02-12 10:18:08 +00003449 regulator_dummy_init();
3450
3451 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003452}
3453
3454/* init early to allow our consumers to complete system booting */
3455core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00003456
3457static int __init regulator_init_complete(void)
3458{
3459 struct regulator_dev *rdev;
3460 struct regulator_ops *ops;
3461 struct regulation_constraints *c;
3462 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00003463
3464 mutex_lock(&regulator_list_mutex);
3465
3466 /* If we have a full configuration then disable any regulators
3467 * which are not in use or always_on. This will become the
3468 * default behaviour in the future.
3469 */
3470 list_for_each_entry(rdev, &regulator_list, list) {
3471 ops = rdev->desc->ops;
3472 c = rdev->constraints;
3473
Mark Brownf25e0b42009-08-03 18:49:55 +01003474 if (!ops->disable || (c && c->always_on))
Mark Brownca725562009-03-16 19:36:34 +00003475 continue;
3476
3477 mutex_lock(&rdev->mutex);
3478
3479 if (rdev->use_count)
3480 goto unlock;
3481
3482 /* If we can't read the status assume it's on. */
3483 if (ops->is_enabled)
3484 enabled = ops->is_enabled(rdev);
3485 else
3486 enabled = 1;
3487
3488 if (!enabled)
3489 goto unlock;
3490
3491 if (has_full_constraints) {
3492 /* We log since this may kill the system if it
3493 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08003494 rdev_info(rdev, "disabling\n");
Mark Brownca725562009-03-16 19:36:34 +00003495 ret = ops->disable(rdev);
3496 if (ret != 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003497 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00003498 }
3499 } else {
3500 /* The intention is that in future we will
3501 * assume that full constraints are provided
3502 * so warn even if we aren't going to do
3503 * anything here.
3504 */
Joe Perches5da84fd2010-11-30 05:53:48 -08003505 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00003506 }
3507
3508unlock:
3509 mutex_unlock(&rdev->mutex);
3510 }
3511
3512 mutex_unlock(&regulator_list_mutex);
3513
3514 return 0;
3515}
3516late_initcall(regulator_init_complete);