blob: 388397bb3192100724917d0d38c88deea4b0687f [file] [log] [blame]
Liam Girdwood414c70c2008-04-30 15:59:04 +01001/*
2 * core.c -- Voltage/Current Regulator framework.
3 *
4 * Copyright 2007, 2008 Wolfson Microelectronics PLC.
Liam Girdwooda5766f12008-10-10 13:22:20 +01005 * Copyright 2008 SlimLogic Ltd.
Liam Girdwood414c70c2008-04-30 15:59:04 +01006 *
Liam Girdwooda5766f12008-10-10 13:22:20 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood414c70c2008-04-30 15:59:04 +01008 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
15
16#include <linux/kernel.h>
17#include <linux/init.h>
Mark Brown1130e5b2010-12-21 23:49:31 +000018#include <linux/debugfs.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010019#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Mark Brownf21e0e82011-05-24 08:12:40 +080021#include <linux/async.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010022#include <linux/err.h>
23#include <linux/mutex.h>
24#include <linux/suspend.h>
Mark Brown31aae2b2009-12-21 12:21:52 +000025#include <linux/delay.h>
Mark Brown65f73502012-06-27 14:14:38 +010026#include <linux/gpio.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053027#include <linux/of.h>
Mark Brown65b19ce2012-04-15 11:16:05 +010028#include <linux/regmap.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053029#include <linux/regulator/of_regulator.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010030#include <linux/regulator/consumer.h>
31#include <linux/regulator/driver.h>
32#include <linux/regulator/machine.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040033#include <linux/module.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010034
Mark Brown02fa3ec2010-11-10 14:38:30 +000035#define CREATE_TRACE_POINTS
36#include <trace/events/regulator.h>
37
Mark Brown34abbd62010-02-12 10:18:08 +000038#include "dummy.h"
39
Mark Brown7d51a0d2011-06-09 16:06:37 +010040#define rdev_crit(rdev, fmt, ...) \
41 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
Joe Perches5da84fd2010-11-30 05:53:48 -080042#define rdev_err(rdev, fmt, ...) \
43 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
44#define rdev_warn(rdev, fmt, ...) \
45 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
46#define rdev_info(rdev, fmt, ...) \
47 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
48#define rdev_dbg(rdev, fmt, ...) \
49 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
50
Liam Girdwood414c70c2008-04-30 15:59:04 +010051static DEFINE_MUTEX(regulator_list_mutex);
52static LIST_HEAD(regulator_list);
53static LIST_HEAD(regulator_map_list);
Kim, Milof19b00d2013-02-18 06:50:39 +000054static LIST_HEAD(regulator_ena_gpio_list);
Mark Brown21cf8912010-12-21 23:30:07 +000055static bool has_full_constraints;
Mark Brown688fe992010-10-05 19:18:32 -070056static bool board_wants_dummy_regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010057
Mark Brown1130e5b2010-12-21 23:49:31 +000058static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000059
Mark Brown8dc53902008-12-31 12:52:40 +000060/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010061 * struct regulator_map
62 *
63 * Used to provide symbolic supply names to devices.
64 */
65struct regulator_map {
66 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010067 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010068 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010069 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010070};
71
Liam Girdwood414c70c2008-04-30 15:59:04 +010072/*
Kim, Milof19b00d2013-02-18 06:50:39 +000073 * struct regulator_enable_gpio
74 *
75 * Management for shared enable GPIO pin
76 */
77struct regulator_enable_gpio {
78 struct list_head list;
79 int gpio;
80 u32 enable_count; /* a number of enabled shared GPIO */
81 u32 request_count; /* a number of requested shared GPIO */
82 unsigned int ena_gpio_invert:1;
83};
84
85/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010086 * struct regulator
87 *
88 * One for each consumer device.
89 */
90struct regulator {
91 struct device *dev;
92 struct list_head list;
Mark Brown6492bc12012-04-19 13:19:07 +010093 unsigned int always_on:1;
Mark Brownf59c8f92012-08-31 10:36:37 -070094 unsigned int bypass:1;
Liam Girdwood414c70c2008-04-30 15:59:04 +010095 int uA_load;
96 int min_uV;
97 int max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +010098 char *supply_name;
99 struct device_attribute dev_attr;
100 struct regulator_dev *rdev;
Mark Brown5de70512011-06-19 13:33:16 +0100101 struct dentry *debugfs;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100102};
103
104static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +0100105static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100106static int _regulator_get_voltage(struct regulator_dev *rdev);
107static int _regulator_get_current_limit(struct regulator_dev *rdev);
108static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
109static void _notifier_call_chain(struct regulator_dev *rdev,
110 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +0000111static int _regulator_do_set_voltage(struct regulator_dev *rdev,
112 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +0100113static struct regulator *create_regulator(struct regulator_dev *rdev,
114 struct device *dev,
115 const char *supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100116
Mark Brown1083c392009-10-22 16:31:32 +0100117static const char *rdev_get_name(struct regulator_dev *rdev)
118{
119 if (rdev->constraints && rdev->constraints->name)
120 return rdev->constraints->name;
121 else if (rdev->desc->name)
122 return rdev->desc->name;
123 else
124 return "";
125}
126
Rajendra Nayak69511a42011-11-18 16:47:20 +0530127/**
128 * of_get_regulator - get a regulator device node based on supply name
129 * @dev: Device pointer for the consumer (of regulator) device
130 * @supply: regulator supply name
131 *
132 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100133 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530134 * returns NULL.
135 */
136static struct device_node *of_get_regulator(struct device *dev, const char *supply)
137{
138 struct device_node *regnode = NULL;
139 char prop_name[32]; /* 32 is max size of property name */
140
141 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
142
143 snprintf(prop_name, 32, "%s-supply", supply);
144 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
145
146 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530147 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530148 prop_name, dev->of_node->full_name);
149 return NULL;
150 }
151 return regnode;
152}
153
Mark Brown6492bc12012-04-19 13:19:07 +0100154static int _regulator_can_change_status(struct regulator_dev *rdev)
155{
156 if (!rdev->constraints)
157 return 0;
158
159 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
160 return 1;
161 else
162 return 0;
163}
164
Liam Girdwood414c70c2008-04-30 15:59:04 +0100165/* Platform voltage constraint check */
166static int regulator_check_voltage(struct regulator_dev *rdev,
167 int *min_uV, int *max_uV)
168{
169 BUG_ON(*min_uV > *max_uV);
170
171 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800172 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100173 return -ENODEV;
174 }
175 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800176 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100177 return -EPERM;
178 }
179
180 if (*max_uV > rdev->constraints->max_uV)
181 *max_uV = rdev->constraints->max_uV;
182 if (*min_uV < rdev->constraints->min_uV)
183 *min_uV = rdev->constraints->min_uV;
184
Mark Brown89f425e2011-07-12 11:20:37 +0900185 if (*min_uV > *max_uV) {
186 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100187 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100188 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900189 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100190
191 return 0;
192}
193
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100194/* Make sure we select a voltage that suits the needs of all
195 * regulator consumers
196 */
197static int regulator_check_consumers(struct regulator_dev *rdev,
198 int *min_uV, int *max_uV)
199{
200 struct regulator *regulator;
201
202 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700203 /*
204 * Assume consumers that didn't say anything are OK
205 * with anything in the constraint range.
206 */
207 if (!regulator->min_uV && !regulator->max_uV)
208 continue;
209
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100210 if (*max_uV > regulator->max_uV)
211 *max_uV = regulator->max_uV;
212 if (*min_uV < regulator->min_uV)
213 *min_uV = regulator->min_uV;
214 }
215
Mark Browndd8004a2012-11-28 17:09:27 +0000216 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800217 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
218 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100219 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000220 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100221
222 return 0;
223}
224
Liam Girdwood414c70c2008-04-30 15:59:04 +0100225/* current constraint check */
226static int regulator_check_current_limit(struct regulator_dev *rdev,
227 int *min_uA, int *max_uA)
228{
229 BUG_ON(*min_uA > *max_uA);
230
231 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800232 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100233 return -ENODEV;
234 }
235 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800236 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100237 return -EPERM;
238 }
239
240 if (*max_uA > rdev->constraints->max_uA)
241 *max_uA = rdev->constraints->max_uA;
242 if (*min_uA < rdev->constraints->min_uA)
243 *min_uA = rdev->constraints->min_uA;
244
Mark Brown89f425e2011-07-12 11:20:37 +0900245 if (*min_uA > *max_uA) {
246 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100247 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100248 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900249 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100250
251 return 0;
252}
253
254/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900255static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100256{
Mark Brown2c608232011-03-30 06:29:12 +0900257 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800258 case REGULATOR_MODE_FAST:
259 case REGULATOR_MODE_NORMAL:
260 case REGULATOR_MODE_IDLE:
261 case REGULATOR_MODE_STANDBY:
262 break;
263 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900264 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800265 return -EINVAL;
266 }
267
Liam Girdwood414c70c2008-04-30 15:59:04 +0100268 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800269 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100270 return -ENODEV;
271 }
272 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800273 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100274 return -EPERM;
275 }
Mark Brown2c608232011-03-30 06:29:12 +0900276
277 /* The modes are bitmasks, the most power hungry modes having
278 * the lowest values. If the requested mode isn't supported
279 * try higher modes. */
280 while (*mode) {
281 if (rdev->constraints->valid_modes_mask & *mode)
282 return 0;
283 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100284 }
Mark Brown2c608232011-03-30 06:29:12 +0900285
286 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100287}
288
289/* dynamic regulator mode switching constraint check */
290static int regulator_check_drms(struct regulator_dev *rdev)
291{
292 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800293 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100294 return -ENODEV;
295 }
296 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800297 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100298 return -EPERM;
299 }
300 return 0;
301}
302
Liam Girdwood414c70c2008-04-30 15:59:04 +0100303static ssize_t regulator_uV_show(struct device *dev,
304 struct device_attribute *attr, char *buf)
305{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100306 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100307 ssize_t ret;
308
309 mutex_lock(&rdev->mutex);
310 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
311 mutex_unlock(&rdev->mutex);
312
313 return ret;
314}
David Brownell7ad68e22008-11-11 17:39:02 -0800315static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100316
317static ssize_t regulator_uA_show(struct device *dev,
318 struct device_attribute *attr, char *buf)
319{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100320 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100321
322 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
323}
David Brownell7ad68e22008-11-11 17:39:02 -0800324static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100325
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700326static ssize_t name_show(struct device *dev, struct device_attribute *attr,
327 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100328{
329 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100330
Mark Brown1083c392009-10-22 16:31:32 +0100331 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100332}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700333static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100334
David Brownell4fca9542008-11-11 17:38:53 -0800335static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100336{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100337 switch (mode) {
338 case REGULATOR_MODE_FAST:
339 return sprintf(buf, "fast\n");
340 case REGULATOR_MODE_NORMAL:
341 return sprintf(buf, "normal\n");
342 case REGULATOR_MODE_IDLE:
343 return sprintf(buf, "idle\n");
344 case REGULATOR_MODE_STANDBY:
345 return sprintf(buf, "standby\n");
346 }
347 return sprintf(buf, "unknown\n");
348}
349
David Brownell4fca9542008-11-11 17:38:53 -0800350static ssize_t regulator_opmode_show(struct device *dev,
351 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100352{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100353 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100354
David Brownell4fca9542008-11-11 17:38:53 -0800355 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
356}
David Brownell7ad68e22008-11-11 17:39:02 -0800357static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800358
359static ssize_t regulator_print_state(char *buf, int state)
360{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100361 if (state > 0)
362 return sprintf(buf, "enabled\n");
363 else if (state == 0)
364 return sprintf(buf, "disabled\n");
365 else
366 return sprintf(buf, "unknown\n");
367}
368
David Brownell4fca9542008-11-11 17:38:53 -0800369static ssize_t regulator_state_show(struct device *dev,
370 struct device_attribute *attr, char *buf)
371{
372 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100373 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800374
Mark Brown93325462009-08-03 18:49:56 +0100375 mutex_lock(&rdev->mutex);
376 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
377 mutex_unlock(&rdev->mutex);
378
379 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800380}
David Brownell7ad68e22008-11-11 17:39:02 -0800381static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800382
David Brownell853116a2009-01-14 23:03:17 -0800383static ssize_t regulator_status_show(struct device *dev,
384 struct device_attribute *attr, char *buf)
385{
386 struct regulator_dev *rdev = dev_get_drvdata(dev);
387 int status;
388 char *label;
389
390 status = rdev->desc->ops->get_status(rdev);
391 if (status < 0)
392 return status;
393
394 switch (status) {
395 case REGULATOR_STATUS_OFF:
396 label = "off";
397 break;
398 case REGULATOR_STATUS_ON:
399 label = "on";
400 break;
401 case REGULATOR_STATUS_ERROR:
402 label = "error";
403 break;
404 case REGULATOR_STATUS_FAST:
405 label = "fast";
406 break;
407 case REGULATOR_STATUS_NORMAL:
408 label = "normal";
409 break;
410 case REGULATOR_STATUS_IDLE:
411 label = "idle";
412 break;
413 case REGULATOR_STATUS_STANDBY:
414 label = "standby";
415 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700416 case REGULATOR_STATUS_BYPASS:
417 label = "bypass";
418 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100419 case REGULATOR_STATUS_UNDEFINED:
420 label = "undefined";
421 break;
David Brownell853116a2009-01-14 23:03:17 -0800422 default:
423 return -ERANGE;
424 }
425
426 return sprintf(buf, "%s\n", label);
427}
428static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
429
Liam Girdwood414c70c2008-04-30 15:59:04 +0100430static ssize_t regulator_min_uA_show(struct device *dev,
431 struct device_attribute *attr, char *buf)
432{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100433 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100434
435 if (!rdev->constraints)
436 return sprintf(buf, "constraint not defined\n");
437
438 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
439}
David Brownell7ad68e22008-11-11 17:39:02 -0800440static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100441
442static ssize_t regulator_max_uA_show(struct device *dev,
443 struct device_attribute *attr, char *buf)
444{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100445 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100446
447 if (!rdev->constraints)
448 return sprintf(buf, "constraint not defined\n");
449
450 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
451}
David Brownell7ad68e22008-11-11 17:39:02 -0800452static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100453
454static ssize_t regulator_min_uV_show(struct device *dev,
455 struct device_attribute *attr, char *buf)
456{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100457 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100458
459 if (!rdev->constraints)
460 return sprintf(buf, "constraint not defined\n");
461
462 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
463}
David Brownell7ad68e22008-11-11 17:39:02 -0800464static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100465
466static ssize_t regulator_max_uV_show(struct device *dev,
467 struct device_attribute *attr, char *buf)
468{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100469 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100470
471 if (!rdev->constraints)
472 return sprintf(buf, "constraint not defined\n");
473
474 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
475}
David Brownell7ad68e22008-11-11 17:39:02 -0800476static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100477
478static ssize_t regulator_total_uA_show(struct device *dev,
479 struct device_attribute *attr, char *buf)
480{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100481 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100482 struct regulator *regulator;
483 int uA = 0;
484
485 mutex_lock(&rdev->mutex);
486 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100487 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100488 mutex_unlock(&rdev->mutex);
489 return sprintf(buf, "%d\n", uA);
490}
David Brownell7ad68e22008-11-11 17:39:02 -0800491static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100492
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700493static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
494 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100495{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100496 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100497 return sprintf(buf, "%d\n", rdev->use_count);
498}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700499static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100500
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700501static ssize_t type_show(struct device *dev, struct device_attribute *attr,
502 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100503{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100504 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100505
506 switch (rdev->desc->type) {
507 case REGULATOR_VOLTAGE:
508 return sprintf(buf, "voltage\n");
509 case REGULATOR_CURRENT:
510 return sprintf(buf, "current\n");
511 }
512 return sprintf(buf, "unknown\n");
513}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700514static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100515
516static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
517 struct device_attribute *attr, char *buf)
518{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100519 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100520
Liam Girdwood414c70c2008-04-30 15:59:04 +0100521 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
522}
David Brownell7ad68e22008-11-11 17:39:02 -0800523static DEVICE_ATTR(suspend_mem_microvolts, 0444,
524 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100525
526static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
527 struct device_attribute *attr, char *buf)
528{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100529 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100530
Liam Girdwood414c70c2008-04-30 15:59:04 +0100531 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
532}
David Brownell7ad68e22008-11-11 17:39:02 -0800533static DEVICE_ATTR(suspend_disk_microvolts, 0444,
534 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100535
536static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
537 struct device_attribute *attr, char *buf)
538{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100539 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100540
Liam Girdwood414c70c2008-04-30 15:59:04 +0100541 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
542}
David Brownell7ad68e22008-11-11 17:39:02 -0800543static DEVICE_ATTR(suspend_standby_microvolts, 0444,
544 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100545
Liam Girdwood414c70c2008-04-30 15:59:04 +0100546static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
547 struct device_attribute *attr, char *buf)
548{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100549 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100550
David Brownell4fca9542008-11-11 17:38:53 -0800551 return regulator_print_opmode(buf,
552 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100553}
David Brownell7ad68e22008-11-11 17:39:02 -0800554static DEVICE_ATTR(suspend_mem_mode, 0444,
555 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100556
557static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
558 struct device_attribute *attr, char *buf)
559{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100560 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100561
David Brownell4fca9542008-11-11 17:38:53 -0800562 return regulator_print_opmode(buf,
563 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100564}
David Brownell7ad68e22008-11-11 17:39:02 -0800565static DEVICE_ATTR(suspend_disk_mode, 0444,
566 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100567
568static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
569 struct device_attribute *attr, char *buf)
570{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100571 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100572
David Brownell4fca9542008-11-11 17:38:53 -0800573 return regulator_print_opmode(buf,
574 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100575}
David Brownell7ad68e22008-11-11 17:39:02 -0800576static DEVICE_ATTR(suspend_standby_mode, 0444,
577 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100578
579static ssize_t regulator_suspend_mem_state_show(struct device *dev,
580 struct device_attribute *attr, char *buf)
581{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100582 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100583
David Brownell4fca9542008-11-11 17:38:53 -0800584 return regulator_print_state(buf,
585 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100586}
David Brownell7ad68e22008-11-11 17:39:02 -0800587static DEVICE_ATTR(suspend_mem_state, 0444,
588 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100589
590static ssize_t regulator_suspend_disk_state_show(struct device *dev,
591 struct device_attribute *attr, char *buf)
592{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100593 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100594
David Brownell4fca9542008-11-11 17:38:53 -0800595 return regulator_print_state(buf,
596 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100597}
David Brownell7ad68e22008-11-11 17:39:02 -0800598static DEVICE_ATTR(suspend_disk_state, 0444,
599 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100600
601static ssize_t regulator_suspend_standby_state_show(struct device *dev,
602 struct device_attribute *attr, char *buf)
603{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100604 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100605
David Brownell4fca9542008-11-11 17:38:53 -0800606 return regulator_print_state(buf,
607 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100608}
David Brownell7ad68e22008-11-11 17:39:02 -0800609static DEVICE_ATTR(suspend_standby_state, 0444,
610 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100611
Mark Brownf59c8f92012-08-31 10:36:37 -0700612static ssize_t regulator_bypass_show(struct device *dev,
613 struct device_attribute *attr, char *buf)
614{
615 struct regulator_dev *rdev = dev_get_drvdata(dev);
616 const char *report;
617 bool bypass;
618 int ret;
619
620 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
621
622 if (ret != 0)
623 report = "unknown";
624 else if (bypass)
625 report = "enabled";
626 else
627 report = "disabled";
628
629 return sprintf(buf, "%s\n", report);
630}
631static DEVICE_ATTR(bypass, 0444,
632 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800633
634/*
635 * These are the only attributes are present for all regulators.
636 * Other attributes are a function of regulator functionality.
637 */
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700638static struct attribute *regulator_dev_attrs[] = {
639 &dev_attr_name.attr,
640 &dev_attr_num_users.attr,
641 &dev_attr_type.attr,
642 NULL,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100643};
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700644ATTRIBUTE_GROUPS(regulator_dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100645
646static void regulator_dev_release(struct device *dev)
647{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100648 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100649 kfree(rdev);
650}
651
652static struct class regulator_class = {
653 .name = "regulator",
654 .dev_release = regulator_dev_release,
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700655 .dev_groups = regulator_dev_groups,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100656};
657
658/* Calculate the new optimum regulator operating mode based on the new total
659 * consumer load. All locks held by caller */
660static void drms_uA_update(struct regulator_dev *rdev)
661{
662 struct regulator *sibling;
663 int current_uA = 0, output_uV, input_uV, err;
664 unsigned int mode;
665
666 err = regulator_check_drms(rdev);
667 if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
Mark Brown476c2d82010-12-10 17:28:07 +0000668 (!rdev->desc->ops->get_voltage &&
669 !rdev->desc->ops->get_voltage_sel) ||
670 !rdev->desc->ops->set_mode)
Dan Carpenter036de8e2009-04-08 13:52:39 +0300671 return;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100672
673 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000674 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100675 if (output_uV <= 0)
676 return;
677
678 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000679 input_uV = 0;
680 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800681 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000682 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100683 input_uV = rdev->constraints->input_uV;
684 if (input_uV <= 0)
685 return;
686
687 /* calc total requested load */
688 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100689 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100690
691 /* now get the optimum mode for our new total regulator load */
692 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
693 output_uV, current_uA);
694
695 /* check the new mode is allowed */
Mark Brown2c608232011-03-30 06:29:12 +0900696 err = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100697 if (err == 0)
698 rdev->desc->ops->set_mode(rdev, mode);
699}
700
701static int suspend_set_state(struct regulator_dev *rdev,
702 struct regulator_state *rstate)
703{
704 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100705
706 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800707 * only warn if the driver implements set_suspend_voltage or
708 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100709 */
710 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800711 if (rdev->desc->ops->set_suspend_voltage ||
712 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800713 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100714 return 0;
715 }
716
717 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800718 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100719 return -EINVAL;
720 }
721
Axel Lin8ac0e952012-04-14 09:14:34 +0800722 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100723 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800724 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100725 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800726 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
727 ret = 0;
728
Liam Girdwood414c70c2008-04-30 15:59:04 +0100729 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800730 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100731 return ret;
732 }
733
734 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
735 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
736 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800737 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100738 return ret;
739 }
740 }
741
742 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
743 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
744 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800745 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100746 return ret;
747 }
748 }
749 return ret;
750}
751
752/* locks held by caller */
753static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
754{
755 if (!rdev->constraints)
756 return -EINVAL;
757
758 switch (state) {
759 case PM_SUSPEND_STANDBY:
760 return suspend_set_state(rdev,
761 &rdev->constraints->state_standby);
762 case PM_SUSPEND_MEM:
763 return suspend_set_state(rdev,
764 &rdev->constraints->state_mem);
765 case PM_SUSPEND_MAX:
766 return suspend_set_state(rdev,
767 &rdev->constraints->state_disk);
768 default:
769 return -EINVAL;
770 }
771}
772
773static void print_constraints(struct regulator_dev *rdev)
774{
775 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000776 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100777 int count = 0;
778 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100779
Mark Brown8f031b42009-10-22 16:31:31 +0100780 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100781 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100782 count += sprintf(buf + count, "%d mV ",
783 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100784 else
Mark Brown8f031b42009-10-22 16:31:31 +0100785 count += sprintf(buf + count, "%d <--> %d mV ",
786 constraints->min_uV / 1000,
787 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100788 }
Mark Brown8f031b42009-10-22 16:31:31 +0100789
790 if (!constraints->min_uV ||
791 constraints->min_uV != constraints->max_uV) {
792 ret = _regulator_get_voltage(rdev);
793 if (ret > 0)
794 count += sprintf(buf + count, "at %d mV ", ret / 1000);
795 }
796
Mark Brownbf5892a2011-05-08 22:13:37 +0100797 if (constraints->uV_offset)
798 count += sprintf(buf, "%dmV offset ",
799 constraints->uV_offset / 1000);
800
Mark Brown8f031b42009-10-22 16:31:31 +0100801 if (constraints->min_uA && constraints->max_uA) {
802 if (constraints->min_uA == constraints->max_uA)
803 count += sprintf(buf + count, "%d mA ",
804 constraints->min_uA / 1000);
805 else
806 count += sprintf(buf + count, "%d <--> %d mA ",
807 constraints->min_uA / 1000,
808 constraints->max_uA / 1000);
809 }
810
811 if (!constraints->min_uA ||
812 constraints->min_uA != constraints->max_uA) {
813 ret = _regulator_get_current_limit(rdev);
814 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400815 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100816 }
817
Liam Girdwood414c70c2008-04-30 15:59:04 +0100818 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
819 count += sprintf(buf + count, "fast ");
820 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
821 count += sprintf(buf + count, "normal ");
822 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
823 count += sprintf(buf + count, "idle ");
824 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
825 count += sprintf(buf + count, "standby");
826
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200827 if (!count)
828 sprintf(buf, "no parameters");
829
Mark Brown13ce29f2010-12-17 16:04:12 +0000830 rdev_info(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000831
832 if ((constraints->min_uV != constraints->max_uV) &&
833 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
834 rdev_warn(rdev,
835 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100836}
837
Mark Browne79055d2009-10-19 15:53:50 +0100838static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100839 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100840{
841 struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100842 int ret;
843
844 /* do we need to apply the constraint voltage */
845 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000846 rdev->constraints->min_uV == rdev->constraints->max_uV) {
847 ret = _regulator_do_set_voltage(rdev,
848 rdev->constraints->min_uV,
849 rdev->constraints->max_uV);
850 if (ret < 0) {
851 rdev_err(rdev, "failed to apply %duV constraint\n",
852 rdev->constraints->min_uV);
Mark Brown75790252010-12-12 14:25:50 +0000853 return ret;
854 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100855 }
Mark Browne79055d2009-10-19 15:53:50 +0100856
857 /* constrain machine-level voltage specs to fit
858 * the actual range supported by this regulator.
859 */
860 if (ops->list_voltage && rdev->desc->n_voltages) {
861 int count = rdev->desc->n_voltages;
862 int i;
863 int min_uV = INT_MAX;
864 int max_uV = INT_MIN;
865 int cmin = constraints->min_uV;
866 int cmax = constraints->max_uV;
867
868 /* it's safe to autoconfigure fixed-voltage supplies
869 and the constraints are used by list_voltage. */
870 if (count == 1 && !cmin) {
871 cmin = 1;
872 cmax = INT_MAX;
873 constraints->min_uV = cmin;
874 constraints->max_uV = cmax;
875 }
876
877 /* voltage constraints are optional */
878 if ((cmin == 0) && (cmax == 0))
879 return 0;
880
881 /* else require explicit machine-level constraints */
882 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800883 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100884 return -EINVAL;
885 }
886
887 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
888 for (i = 0; i < count; i++) {
889 int value;
890
891 value = ops->list_voltage(rdev, i);
892 if (value <= 0)
893 continue;
894
895 /* maybe adjust [min_uV..max_uV] */
896 if (value >= cmin && value < min_uV)
897 min_uV = value;
898 if (value <= cmax && value > max_uV)
899 max_uV = value;
900 }
901
902 /* final: [min_uV..max_uV] valid iff constraints valid */
903 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000904 rdev_err(rdev,
905 "unsupportable voltage constraints %u-%uuV\n",
906 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100907 return -EINVAL;
908 }
909
910 /* use regulator's subset of machine constraints */
911 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800912 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
913 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100914 constraints->min_uV = min_uV;
915 }
916 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800917 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
918 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100919 constraints->max_uV = max_uV;
920 }
921 }
922
923 return 0;
924}
925
Liam Girdwooda5766f12008-10-10 13:22:20 +0100926/**
927 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000928 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000929 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100930 *
931 * Allows platform initialisation code to define and constrain
932 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
933 * Constraints *must* be set by platform code in order for some
934 * regulator operations to proceed i.e. set_voltage, set_current_limit,
935 * set_mode.
936 */
937static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000938 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100939{
940 int ret = 0;
Mark Browne5fda26c2008-09-09 16:21:20 +0100941 struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100942
Mark Brown9a8f5e02011-11-29 18:11:19 +0000943 if (constraints)
944 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
945 GFP_KERNEL);
946 else
947 rdev->constraints = kzalloc(sizeof(*constraints),
948 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +0000949 if (!rdev->constraints)
950 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100951
Mark Brownf8c12fe2010-11-29 15:55:17 +0000952 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100953 if (ret != 0)
954 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800955
Liam Girdwooda5766f12008-10-10 13:22:20 +0100956 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +0000957 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +0000958 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +0100959 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800960 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +0100961 goto out;
962 }
963 }
Liam Girdwooda5766f12008-10-10 13:22:20 +0100964
Mark Brown9a8f5e02011-11-29 18:11:19 +0000965 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +0000966 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800967 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +0000968 ret = -EINVAL;
969 goto out;
970 }
971
Mark Brownf8c12fe2010-11-29 15:55:17 +0000972 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +0000973 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800974 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +0000975 goto out;
976 }
977 }
978
Mark Browncacf90f2009-03-02 16:32:46 +0000979 /* If the constraints say the regulator should be on at this point
980 * and we have control then make sure it is enabled.
981 */
Mark Brownf8c12fe2010-11-29 15:55:17 +0000982 if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
983 ops->enable) {
Mark Browne5fda26c2008-09-09 16:21:20 +0100984 ret = ops->enable(rdev);
985 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800986 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda26c2008-09-09 16:21:20 +0100987 goto out;
988 }
989 }
990
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +0530991 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
992 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +0530993 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
994 if (ret < 0) {
995 rdev_err(rdev, "failed to set ramp_delay\n");
996 goto out;
997 }
998 }
999
Liam Girdwooda5766f12008-10-10 13:22:20 +01001000 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001001 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001002out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001003 kfree(rdev->constraints);
1004 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001005 return ret;
1006}
1007
1008/**
1009 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001010 * @rdev: regulator name
1011 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001012 *
1013 * Called by platform initialisation code to set the supply regulator for this
1014 * regulator. This ensures that a regulators supply will also be enabled by the
1015 * core if it's child is enabled.
1016 */
1017static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001018 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001019{
1020 int err;
1021
Mark Brown3801b862011-06-09 16:22:22 +01001022 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1023
1024 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001025 if (rdev->supply == NULL) {
1026 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001027 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001028 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301029 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001030
1031 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001032}
1033
1034/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001035 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001036 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001037 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001038 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001039 *
1040 * Allows platform initialisation code to map physical regulator
1041 * sources to symbolic names for supplies for use by devices. Devices
1042 * should use these symbolic names to request regulators, avoiding the
1043 * need to provide board-specific regulator names as platform data.
1044 */
1045static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001046 const char *consumer_dev_name,
1047 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001048{
1049 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001050 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001051
1052 if (supply == NULL)
1053 return -EINVAL;
1054
Mark Brown9ed20992009-07-21 16:00:26 +01001055 if (consumer_dev_name != NULL)
1056 has_dev = 1;
1057 else
1058 has_dev = 0;
1059
David Brownell6001e132008-12-31 12:54:19 +00001060 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001061 if (node->dev_name && consumer_dev_name) {
1062 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1063 continue;
1064 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001065 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001066 }
1067
David Brownell6001e132008-12-31 12:54:19 +00001068 if (strcmp(node->supply, supply) != 0)
1069 continue;
1070
Mark Brown737f3602012-02-02 00:10:51 +00001071 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1072 consumer_dev_name,
1073 dev_name(&node->regulator->dev),
1074 node->regulator->desc->name,
1075 supply,
1076 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001077 return -EBUSY;
1078 }
1079
Mark Brown9ed20992009-07-21 16:00:26 +01001080 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001081 if (node == NULL)
1082 return -ENOMEM;
1083
1084 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001085 node->supply = supply;
1086
Mark Brown9ed20992009-07-21 16:00:26 +01001087 if (has_dev) {
1088 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1089 if (node->dev_name == NULL) {
1090 kfree(node);
1091 return -ENOMEM;
1092 }
Mark Brown40f92442009-06-17 17:56:39 +01001093 }
1094
Liam Girdwooda5766f12008-10-10 13:22:20 +01001095 list_add(&node->list, &regulator_map_list);
1096 return 0;
1097}
1098
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001099static void unset_regulator_supplies(struct regulator_dev *rdev)
1100{
1101 struct regulator_map *node, *n;
1102
1103 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1104 if (rdev == node->regulator) {
1105 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001106 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001107 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001108 }
1109 }
1110}
1111
Mark Brownf5726ae2011-06-09 16:22:20 +01001112#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001113
1114static struct regulator *create_regulator(struct regulator_dev *rdev,
1115 struct device *dev,
1116 const char *supply_name)
1117{
1118 struct regulator *regulator;
1119 char buf[REG_STR_SIZE];
1120 int err, size;
1121
1122 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1123 if (regulator == NULL)
1124 return NULL;
1125
1126 mutex_lock(&rdev->mutex);
1127 regulator->rdev = rdev;
1128 list_add(&regulator->list, &rdev->consumer_list);
1129
1130 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001131 regulator->dev = dev;
1132
Mark Brown222cc7b2012-06-22 11:39:16 +01001133 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001134 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1135 dev->kobj.name, supply_name);
1136 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001137 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001138
1139 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1140 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001141 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001142
1143 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1144 buf);
1145 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001146 rdev_warn(rdev, "could not add device link %s err %d\n",
1147 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001148 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001149 }
Mark Brown5de70512011-06-19 13:33:16 +01001150 } else {
1151 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1152 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001153 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001154 }
Mark Brown5de70512011-06-19 13:33:16 +01001155
Mark Brown5de70512011-06-19 13:33:16 +01001156 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1157 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001158 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001159 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001160 } else {
1161 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1162 &regulator->uA_load);
1163 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1164 &regulator->min_uV);
1165 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1166 &regulator->max_uV);
1167 }
Mark Brown5de70512011-06-19 13:33:16 +01001168
Mark Brown6492bc12012-04-19 13:19:07 +01001169 /*
1170 * Check now if the regulator is an always on regulator - if
1171 * it is then we don't need to do nearly so much work for
1172 * enable/disable calls.
1173 */
1174 if (!_regulator_can_change_status(rdev) &&
1175 _regulator_is_enabled(rdev))
1176 regulator->always_on = true;
1177
Liam Girdwood414c70c2008-04-30 15:59:04 +01001178 mutex_unlock(&rdev->mutex);
1179 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001180overflow_err:
1181 list_del(&regulator->list);
1182 kfree(regulator);
1183 mutex_unlock(&rdev->mutex);
1184 return NULL;
1185}
1186
Mark Brown31aae2b2009-12-21 12:21:52 +00001187static int _regulator_get_enable_time(struct regulator_dev *rdev)
1188{
1189 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001190 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001191 return rdev->desc->ops->enable_time(rdev);
1192}
1193
Rajendra Nayak69511a42011-11-18 16:47:20 +05301194static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001195 const char *supply,
1196 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301197{
1198 struct regulator_dev *r;
1199 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001200 struct regulator_map *map;
1201 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301202
1203 /* first do a dt based lookup */
1204 if (dev && dev->of_node) {
1205 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001206 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301207 list_for_each_entry(r, &regulator_list, list)
1208 if (r->dev.parent &&
1209 node == r->dev.of_node)
1210 return r;
Mark Brown6d191a52012-03-29 14:19:02 +01001211 } else {
1212 /*
1213 * If we couldn't even get the node then it's
1214 * not just that the device didn't register
1215 * yet, there's no node and we'll never
1216 * succeed.
1217 */
1218 *ret = -ENODEV;
1219 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301220 }
1221
1222 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001223 if (dev)
1224 devname = dev_name(dev);
1225
Rajendra Nayak69511a42011-11-18 16:47:20 +05301226 list_for_each_entry(r, &regulator_list, list)
1227 if (strcmp(rdev_get_name(r), supply) == 0)
1228 return r;
1229
Mark Brown576ca4362012-03-30 12:24:37 +01001230 list_for_each_entry(map, &regulator_map_list, list) {
1231 /* If the mapping has a device set up it must match */
1232 if (map->dev_name &&
1233 (!devname || strcmp(map->dev_name, devname)))
1234 continue;
1235
1236 if (strcmp(map->supply, supply) == 0)
1237 return map->regulator;
1238 }
1239
1240
Rajendra Nayak69511a42011-11-18 16:47:20 +05301241 return NULL;
1242}
1243
Mark Brown5ffbd132009-07-21 16:00:23 +01001244/* Internal regulator request function */
1245static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown84fcf442013-08-18 18:03:22 +01001246 bool exclusive)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001247{
1248 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001249 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001250 const char *devname = NULL;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001251 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001252
1253 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001254 pr_err("get() with no identifier\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001255 return regulator;
1256 }
1257
Mark Brown40f92442009-06-17 17:56:39 +01001258 if (dev)
1259 devname = dev_name(dev);
1260
Liam Girdwood414c70c2008-04-30 15:59:04 +01001261 mutex_lock(&regulator_list_mutex);
1262
Mark Brown6d191a52012-03-29 14:19:02 +01001263 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301264 if (rdev)
1265 goto found;
1266
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001267 /*
1268 * If we have return value from dev_lookup fail, we do not expect to
1269 * succeed, so, quit with appropriate error value
1270 */
1271 if (ret) {
1272 regulator = ERR_PTR(ret);
1273 goto out;
1274 }
1275
Mark Brown688fe992010-10-05 19:18:32 -07001276 if (board_wants_dummy_regulator) {
1277 rdev = dummy_regulator_rdev;
1278 goto found;
1279 }
1280
Mark Brown34abbd62010-02-12 10:18:08 +00001281#ifdef CONFIG_REGULATOR_DUMMY
1282 if (!devname)
1283 devname = "deviceless";
1284
1285 /* If the board didn't flag that it was fully constrained then
1286 * substitute in a dummy regulator so consumers can continue.
1287 */
1288 if (!has_full_constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001289 pr_warn("%s supply %s not found, using dummy regulator\n",
1290 devname, id);
Mark Brown34abbd62010-02-12 10:18:08 +00001291 rdev = dummy_regulator_rdev;
1292 goto found;
1293 }
1294#endif
1295
Liam Girdwood414c70c2008-04-30 15:59:04 +01001296 mutex_unlock(&regulator_list_mutex);
1297 return regulator;
1298
1299found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001300 if (rdev->exclusive) {
1301 regulator = ERR_PTR(-EPERM);
1302 goto out;
1303 }
1304
1305 if (exclusive && rdev->open_count) {
1306 regulator = ERR_PTR(-EBUSY);
1307 goto out;
1308 }
1309
Liam Girdwooda5766f12008-10-10 13:22:20 +01001310 if (!try_module_get(rdev->owner))
1311 goto out;
1312
Liam Girdwood414c70c2008-04-30 15:59:04 +01001313 regulator = create_regulator(rdev, dev, id);
1314 if (regulator == NULL) {
1315 regulator = ERR_PTR(-ENOMEM);
1316 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001317 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001318 }
1319
Mark Brown5ffbd132009-07-21 16:00:23 +01001320 rdev->open_count++;
1321 if (exclusive) {
1322 rdev->exclusive = 1;
1323
1324 ret = _regulator_is_enabled(rdev);
1325 if (ret > 0)
1326 rdev->use_count = 1;
1327 else
1328 rdev->use_count = 0;
1329 }
1330
Liam Girdwooda5766f12008-10-10 13:22:20 +01001331out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001332 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001333
Liam Girdwood414c70c2008-04-30 15:59:04 +01001334 return regulator;
1335}
Mark Brown5ffbd132009-07-21 16:00:23 +01001336
Axel Lincee8e352013-09-01 12:24:17 +08001337enum {
1338 NORMAL_GET,
1339 EXCLUSIVE_GET,
1340 OPTIONAL_GET,
1341};
1342
1343static void devm_regulator_release(struct device *dev, void *res)
1344{
1345 regulator_put(*(struct regulator **)res);
1346}
1347
1348static struct regulator *_devm_regulator_get(struct device *dev, const char *id,
1349 int get_type)
1350{
1351 struct regulator **ptr, *regulator;
1352
1353 ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
1354 if (!ptr)
1355 return ERR_PTR(-ENOMEM);
1356
1357 switch (get_type) {
1358 case NORMAL_GET:
1359 regulator = regulator_get(dev, id);
1360 break;
1361 case EXCLUSIVE_GET:
1362 regulator = regulator_get_exclusive(dev, id);
1363 break;
1364 case OPTIONAL_GET:
1365 regulator = regulator_get_optional(dev, id);
1366 break;
1367 default:
1368 regulator = ERR_PTR(-EINVAL);
1369 }
1370
1371 if (!IS_ERR(regulator)) {
1372 *ptr = regulator;
1373 devres_add(dev, ptr);
1374 } else {
1375 devres_free(ptr);
1376 }
1377
1378 return regulator;
1379}
1380
Mark Brown5ffbd132009-07-21 16:00:23 +01001381/**
1382 * regulator_get - lookup and obtain a reference to a regulator.
1383 * @dev: device for regulator "consumer"
1384 * @id: Supply name or regulator ID.
1385 *
1386 * Returns a struct regulator corresponding to the regulator producer,
1387 * or IS_ERR() condition containing errno.
1388 *
1389 * Use of supply names configured via regulator_set_device_supply() is
1390 * strongly encouraged. It is recommended that the supply name used
1391 * should match the name used for the supply and/or the relevant
1392 * device pins in the datasheet.
1393 */
1394struct regulator *regulator_get(struct device *dev, const char *id)
1395{
Mark Brown84fcf442013-08-18 18:03:22 +01001396 return _regulator_get(dev, id, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001397}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001398EXPORT_SYMBOL_GPL(regulator_get);
1399
Stephen Boyd070b9072012-01-16 19:39:58 -08001400/**
1401 * devm_regulator_get - Resource managed regulator_get()
1402 * @dev: device for regulator "consumer"
1403 * @id: Supply name or regulator ID.
1404 *
1405 * Managed regulator_get(). Regulators returned from this function are
1406 * automatically regulator_put() on driver detach. See regulator_get() for more
1407 * information.
1408 */
1409struct regulator *devm_regulator_get(struct device *dev, const char *id)
1410{
Axel Lincee8e352013-09-01 12:24:17 +08001411 return _devm_regulator_get(dev, id, NORMAL_GET);
Stephen Boyd070b9072012-01-16 19:39:58 -08001412}
1413EXPORT_SYMBOL_GPL(devm_regulator_get);
1414
Liam Girdwood414c70c2008-04-30 15:59:04 +01001415/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001416 * regulator_get_exclusive - obtain exclusive access to a regulator.
1417 * @dev: device for regulator "consumer"
1418 * @id: Supply name or regulator ID.
1419 *
1420 * Returns a struct regulator corresponding to the regulator producer,
1421 * or IS_ERR() condition containing errno. Other consumers will be
1422 * unable to obtain this reference is held and the use count for the
1423 * regulator will be initialised to reflect the current state of the
1424 * regulator.
1425 *
1426 * This is intended for use by consumers which cannot tolerate shared
1427 * use of the regulator such as those which need to force the
1428 * regulator off for correct operation of the hardware they are
1429 * controlling.
1430 *
1431 * Use of supply names configured via regulator_set_device_supply() is
1432 * strongly encouraged. It is recommended that the supply name used
1433 * should match the name used for the supply and/or the relevant
1434 * device pins in the datasheet.
1435 */
1436struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1437{
Mark Brown84fcf442013-08-18 18:03:22 +01001438 return _regulator_get(dev, id, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001439}
1440EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1441
Mark Brownde1dd9f2013-07-29 21:42:42 +01001442/**
Axel Lincee8e352013-09-01 12:24:17 +08001443 * devm_regulator_get_exclusive - Resource managed regulator_get_exclusive()
1444 * @dev: device for regulator "consumer"
1445 * @id: Supply name or regulator ID.
1446 *
1447 * Managed regulator_get_exclusive(). Regulators returned from this function
1448 * are automatically regulator_put() on driver detach. See regulator_get() for
1449 * more information.
1450 */
1451struct regulator *devm_regulator_get_exclusive(struct device *dev,
1452 const char *id)
1453{
1454 return _devm_regulator_get(dev, id, EXCLUSIVE_GET);
1455}
1456EXPORT_SYMBOL_GPL(devm_regulator_get_exclusive);
1457
1458/**
Mark Brownde1dd9f2013-07-29 21:42:42 +01001459 * regulator_get_optional - obtain optional access to a regulator.
1460 * @dev: device for regulator "consumer"
1461 * @id: Supply name or regulator ID.
1462 *
1463 * Returns a struct regulator corresponding to the regulator producer,
1464 * or IS_ERR() condition containing errno. Other consumers will be
1465 * unable to obtain this reference is held and the use count for the
1466 * regulator will be initialised to reflect the current state of the
1467 * regulator.
1468 *
1469 * This is intended for use by consumers for devices which can have
1470 * some supplies unconnected in normal use, such as some MMC devices.
1471 * It can allow the regulator core to provide stub supplies for other
1472 * supplies requested using normal regulator_get() calls without
1473 * disrupting the operation of drivers that can handle absent
1474 * supplies.
1475 *
1476 * Use of supply names configured via regulator_set_device_supply() is
1477 * strongly encouraged. It is recommended that the supply name used
1478 * should match the name used for the supply and/or the relevant
1479 * device pins in the datasheet.
1480 */
1481struct regulator *regulator_get_optional(struct device *dev, const char *id)
1482{
1483 return _regulator_get(dev, id, 0);
1484}
1485EXPORT_SYMBOL_GPL(regulator_get_optional);
1486
1487/**
1488 * devm_regulator_get_optional - Resource managed regulator_get_optional()
1489 * @dev: device for regulator "consumer"
1490 * @id: Supply name or regulator ID.
1491 *
1492 * Managed regulator_get_optional(). Regulators returned from this
1493 * function are automatically regulator_put() on driver detach. See
1494 * regulator_get_optional() for more information.
1495 */
1496struct regulator *devm_regulator_get_optional(struct device *dev,
1497 const char *id)
1498{
Axel Lincee8e352013-09-01 12:24:17 +08001499 return _devm_regulator_get(dev, id, OPTIONAL_GET);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001500}
1501EXPORT_SYMBOL_GPL(devm_regulator_get_optional);
1502
Charles Keepax23ff2f02012-11-14 09:39:31 +00001503/* Locks held by regulator_put() */
1504static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001505{
1506 struct regulator_dev *rdev;
1507
1508 if (regulator == NULL || IS_ERR(regulator))
1509 return;
1510
Liam Girdwood414c70c2008-04-30 15:59:04 +01001511 rdev = regulator->rdev;
1512
Mark Brown5de70512011-06-19 13:33:16 +01001513 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001514
Liam Girdwood414c70c2008-04-30 15:59:04 +01001515 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001516 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001517 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Mark Brown5de70512011-06-19 13:33:16 +01001518 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001519 list_del(&regulator->list);
1520 kfree(regulator);
1521
Mark Brown5ffbd132009-07-21 16:00:23 +01001522 rdev->open_count--;
1523 rdev->exclusive = 0;
1524
Liam Girdwood414c70c2008-04-30 15:59:04 +01001525 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001526}
1527
1528/**
1529 * regulator_put - "free" the regulator source
1530 * @regulator: regulator source
1531 *
1532 * Note: drivers must ensure that all regulator_enable calls made on this
1533 * regulator source are balanced by regulator_disable calls prior to calling
1534 * this function.
1535 */
1536void regulator_put(struct regulator *regulator)
1537{
1538 mutex_lock(&regulator_list_mutex);
1539 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001540 mutex_unlock(&regulator_list_mutex);
1541}
1542EXPORT_SYMBOL_GPL(regulator_put);
1543
Mark Brownd5ad34f2012-01-20 20:09:18 +00001544static int devm_regulator_match(struct device *dev, void *res, void *data)
1545{
1546 struct regulator **r = res;
1547 if (!r || !*r) {
1548 WARN_ON(!r || !*r);
1549 return 0;
1550 }
1551 return *r == data;
1552}
1553
1554/**
1555 * devm_regulator_put - Resource managed regulator_put()
1556 * @regulator: regulator to free
1557 *
1558 * Deallocate a regulator allocated with devm_regulator_get(). Normally
1559 * this function will not need to be called and the resource management
1560 * code will ensure that the resource is freed.
1561 */
1562void devm_regulator_put(struct regulator *regulator)
1563{
1564 int rc;
1565
Mark Brown361ff502012-05-07 14:14:30 +01001566 rc = devres_release(regulator->dev, devm_regulator_release,
Mark Brownd5ad34f2012-01-20 20:09:18 +00001567 devm_regulator_match, regulator);
Mark Brown230a5a1c2012-06-15 18:25:08 +01001568 if (rc != 0)
Mark Brown968c2c12012-05-07 11:34:52 +01001569 WARN_ON(rc);
Mark Brownd5ad34f2012-01-20 20:09:18 +00001570}
1571EXPORT_SYMBOL_GPL(devm_regulator_put);
1572
Kim, Milof19b00d2013-02-18 06:50:39 +00001573/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1574static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1575 const struct regulator_config *config)
1576{
1577 struct regulator_enable_gpio *pin;
1578 int ret;
1579
1580 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
1581 if (pin->gpio == config->ena_gpio) {
1582 rdev_dbg(rdev, "GPIO %d is already used\n",
1583 config->ena_gpio);
1584 goto update_ena_gpio_to_rdev;
1585 }
1586 }
1587
1588 ret = gpio_request_one(config->ena_gpio,
1589 GPIOF_DIR_OUT | config->ena_gpio_flags,
1590 rdev_get_name(rdev));
1591 if (ret)
1592 return ret;
1593
1594 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1595 if (pin == NULL) {
1596 gpio_free(config->ena_gpio);
1597 return -ENOMEM;
1598 }
1599
1600 pin->gpio = config->ena_gpio;
1601 pin->ena_gpio_invert = config->ena_gpio_invert;
1602 list_add(&pin->list, &regulator_ena_gpio_list);
1603
1604update_ena_gpio_to_rdev:
1605 pin->request_count++;
1606 rdev->ena_pin = pin;
1607 return 0;
1608}
1609
1610static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1611{
1612 struct regulator_enable_gpio *pin, *n;
1613
1614 if (!rdev->ena_pin)
1615 return;
1616
1617 /* Free the GPIO only in case of no use */
1618 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
1619 if (pin->gpio == rdev->ena_pin->gpio) {
1620 if (pin->request_count <= 1) {
1621 pin->request_count = 0;
1622 gpio_free(pin->gpio);
1623 list_del(&pin->list);
1624 kfree(pin);
1625 } else {
1626 pin->request_count--;
1627 }
1628 }
1629 }
1630}
1631
Kim, Milo967cfb12013-02-18 06:50:48 +00001632/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001633 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1634 * @rdev: regulator_dev structure
1635 * @enable: enable GPIO at initial use?
1636 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001637 * GPIO is enabled in case of initial use. (enable_count is 0)
1638 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1639 */
1640static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1641{
1642 struct regulator_enable_gpio *pin = rdev->ena_pin;
1643
1644 if (!pin)
1645 return -EINVAL;
1646
1647 if (enable) {
1648 /* Enable GPIO at initial use */
1649 if (pin->enable_count == 0)
1650 gpio_set_value_cansleep(pin->gpio,
1651 !pin->ena_gpio_invert);
1652
1653 pin->enable_count++;
1654 } else {
1655 if (pin->enable_count > 1) {
1656 pin->enable_count--;
1657 return 0;
1658 }
1659
1660 /* Disable GPIO if not used */
1661 if (pin->enable_count <= 1) {
1662 gpio_set_value_cansleep(pin->gpio,
1663 pin->ena_gpio_invert);
1664 pin->enable_count = 0;
1665 }
1666 }
1667
1668 return 0;
1669}
1670
Mark Brown5c5659d2012-06-27 13:21:26 +01001671static int _regulator_do_enable(struct regulator_dev *rdev)
1672{
1673 int ret, delay;
1674
1675 /* Query before enabling in case configuration dependent. */
1676 ret = _regulator_get_enable_time(rdev);
1677 if (ret >= 0) {
1678 delay = ret;
1679 } else {
1680 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1681 delay = 0;
1682 }
1683
1684 trace_regulator_enable(rdev_get_name(rdev));
1685
Kim, Milo967cfb12013-02-18 06:50:48 +00001686 if (rdev->ena_pin) {
1687 ret = regulator_ena_gpio_ctrl(rdev, true);
1688 if (ret < 0)
1689 return ret;
Mark Brown65f73502012-06-27 14:14:38 +01001690 rdev->ena_gpio_state = 1;
1691 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001692 ret = rdev->desc->ops->enable(rdev);
1693 if (ret < 0)
1694 return ret;
1695 } else {
1696 return -EINVAL;
1697 }
1698
1699 /* Allow the regulator to ramp; it would be useful to extend
1700 * this for bulk operations so that the regulators can ramp
1701 * together. */
1702 trace_regulator_enable_delay(rdev_get_name(rdev));
1703
1704 if (delay >= 1000) {
1705 mdelay(delay / 1000);
1706 udelay(delay % 1000);
1707 } else if (delay) {
1708 udelay(delay);
1709 }
1710
1711 trace_regulator_enable_complete(rdev_get_name(rdev));
1712
1713 return 0;
1714}
1715
Liam Girdwood414c70c2008-04-30 15:59:04 +01001716/* locks held by regulator_enable() */
1717static int _regulator_enable(struct regulator_dev *rdev)
1718{
Mark Brown5c5659d2012-06-27 13:21:26 +01001719 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001720
Liam Girdwood414c70c2008-04-30 15:59:04 +01001721 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001722 if (rdev->constraints &&
1723 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1724 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001725
Mark Brown9a2372f2009-08-03 18:49:57 +01001726 if (rdev->use_count == 0) {
1727 /* The regulator may on if it's not switchable or left on */
1728 ret = _regulator_is_enabled(rdev);
1729 if (ret == -EINVAL || ret == 0) {
1730 if (!_regulator_can_change_status(rdev))
1731 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001732
Mark Brown5c5659d2012-06-27 13:21:26 +01001733 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001734 if (ret < 0)
1735 return ret;
1736
Linus Walleija7433cf2009-08-26 12:54:04 +02001737 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001738 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001739 return ret;
1740 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001741 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001742 }
1743
Mark Brown9a2372f2009-08-03 18:49:57 +01001744 rdev->use_count++;
1745
1746 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001747}
1748
1749/**
1750 * regulator_enable - enable regulator output
1751 * @regulator: regulator source
1752 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001753 * Request that the regulator be enabled with the regulator output at
1754 * the predefined voltage or current value. Calls to regulator_enable()
1755 * must be balanced with calls to regulator_disable().
1756 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001757 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001758 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001759 */
1760int regulator_enable(struct regulator *regulator)
1761{
David Brownell412aec62008-11-16 11:44:46 -08001762 struct regulator_dev *rdev = regulator->rdev;
1763 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001764
Mark Brown6492bc12012-04-19 13:19:07 +01001765 if (regulator->always_on)
1766 return 0;
1767
Mark Brown3801b862011-06-09 16:22:22 +01001768 if (rdev->supply) {
1769 ret = regulator_enable(rdev->supply);
1770 if (ret != 0)
1771 return ret;
1772 }
1773
David Brownell412aec62008-11-16 11:44:46 -08001774 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001775 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001776 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001777
Heiko Stübnerd1685e42011-10-14 18:00:29 +02001778 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01001779 regulator_disable(rdev->supply);
1780
Liam Girdwood414c70c2008-04-30 15:59:04 +01001781 return ret;
1782}
1783EXPORT_SYMBOL_GPL(regulator_enable);
1784
Mark Brown5c5659d2012-06-27 13:21:26 +01001785static int _regulator_do_disable(struct regulator_dev *rdev)
1786{
1787 int ret;
1788
1789 trace_regulator_disable(rdev_get_name(rdev));
1790
Kim, Milo967cfb12013-02-18 06:50:48 +00001791 if (rdev->ena_pin) {
1792 ret = regulator_ena_gpio_ctrl(rdev, false);
1793 if (ret < 0)
1794 return ret;
Mark Brown5c5659d2012-06-27 13:21:26 +01001795 rdev->ena_gpio_state = 0;
1796
1797 } else if (rdev->desc->ops->disable) {
1798 ret = rdev->desc->ops->disable(rdev);
1799 if (ret != 0)
1800 return ret;
1801 }
1802
1803 trace_regulator_disable_complete(rdev_get_name(rdev));
1804
1805 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1806 NULL);
1807 return 0;
1808}
1809
Liam Girdwood414c70c2008-04-30 15:59:04 +01001810/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001811static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001812{
1813 int ret = 0;
1814
David Brownellcd94b502009-03-11 16:43:34 -08001815 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001816 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001817 return -EIO;
1818
Liam Girdwood414c70c2008-04-30 15:59:04 +01001819 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001820 if (rdev->use_count == 1 &&
1821 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001822
1823 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01001824 if (_regulator_can_change_status(rdev)) {
1825 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001826 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001827 rdev_err(rdev, "failed to disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001828 return ret;
1829 }
1830 }
1831
Liam Girdwood414c70c2008-04-30 15:59:04 +01001832 rdev->use_count = 0;
1833 } else if (rdev->use_count > 1) {
1834
1835 if (rdev->constraints &&
1836 (rdev->constraints->valid_ops_mask &
1837 REGULATOR_CHANGE_DRMS))
1838 drms_uA_update(rdev);
1839
1840 rdev->use_count--;
1841 }
Mark Brown3801b862011-06-09 16:22:22 +01001842
Liam Girdwood414c70c2008-04-30 15:59:04 +01001843 return ret;
1844}
1845
1846/**
1847 * regulator_disable - disable regulator output
1848 * @regulator: regulator source
1849 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001850 * Disable the regulator output voltage or current. Calls to
1851 * regulator_enable() must be balanced with calls to
1852 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00001853 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001854 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00001855 * devices have it enabled, the regulator device supports disabling and
1856 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001857 */
1858int regulator_disable(struct regulator *regulator)
1859{
David Brownell412aec62008-11-16 11:44:46 -08001860 struct regulator_dev *rdev = regulator->rdev;
1861 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001862
Mark Brown6492bc12012-04-19 13:19:07 +01001863 if (regulator->always_on)
1864 return 0;
1865
David Brownell412aec62008-11-16 11:44:46 -08001866 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001867 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001868 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf811d2010-10-08 14:49:19 -05001869
Mark Brown3801b862011-06-09 16:22:22 +01001870 if (ret == 0 && rdev->supply)
1871 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf811d2010-10-08 14:49:19 -05001872
Liam Girdwood414c70c2008-04-30 15:59:04 +01001873 return ret;
1874}
1875EXPORT_SYMBOL_GPL(regulator_disable);
1876
1877/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001878static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001879{
1880 int ret = 0;
1881
1882 /* force disable */
1883 if (rdev->desc->ops->disable) {
1884 /* ah well, who wants to live forever... */
1885 ret = rdev->desc->ops->disable(rdev);
1886 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001887 rdev_err(rdev, "failed to force disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001888 return ret;
1889 }
1890 /* notify other consumers that power has been forced off */
Mark Brown84b68262009-12-01 21:12:27 +00001891 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
1892 REGULATOR_EVENT_DISABLE, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001893 }
1894
Liam Girdwood414c70c2008-04-30 15:59:04 +01001895 return ret;
1896}
1897
1898/**
1899 * regulator_force_disable - force disable regulator output
1900 * @regulator: regulator source
1901 *
1902 * Forcibly disable the regulator output voltage or current.
1903 * NOTE: this *will* disable the regulator output even if other consumer
1904 * devices have it enabled. This should be used for situations when device
1905 * damage will likely occur if the regulator is not disabled (e.g. over temp).
1906 */
1907int regulator_force_disable(struct regulator *regulator)
1908{
Mark Brown82d15832011-05-09 11:41:02 +02001909 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001910 int ret;
1911
Mark Brown82d15832011-05-09 11:41:02 +02001912 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001913 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01001914 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02001915 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf811d2010-10-08 14:49:19 -05001916
Mark Brown3801b862011-06-09 16:22:22 +01001917 if (rdev->supply)
1918 while (rdev->open_count--)
1919 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf811d2010-10-08 14:49:19 -05001920
Liam Girdwood414c70c2008-04-30 15:59:04 +01001921 return ret;
1922}
1923EXPORT_SYMBOL_GPL(regulator_force_disable);
1924
Mark Brownda07ecd2011-09-11 09:53:50 +01001925static void regulator_disable_work(struct work_struct *work)
1926{
1927 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
1928 disable_work.work);
1929 int count, i, ret;
1930
1931 mutex_lock(&rdev->mutex);
1932
1933 BUG_ON(!rdev->deferred_disables);
1934
1935 count = rdev->deferred_disables;
1936 rdev->deferred_disables = 0;
1937
1938 for (i = 0; i < count; i++) {
1939 ret = _regulator_disable(rdev);
1940 if (ret != 0)
1941 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
1942 }
1943
1944 mutex_unlock(&rdev->mutex);
1945
1946 if (rdev->supply) {
1947 for (i = 0; i < count; i++) {
1948 ret = regulator_disable(rdev->supply);
1949 if (ret != 0) {
1950 rdev_err(rdev,
1951 "Supply disable failed: %d\n", ret);
1952 }
1953 }
1954 }
1955}
1956
1957/**
1958 * regulator_disable_deferred - disable regulator output with delay
1959 * @regulator: regulator source
1960 * @ms: miliseconds until the regulator is disabled
1961 *
1962 * Execute regulator_disable() on the regulator after a delay. This
1963 * is intended for use with devices that require some time to quiesce.
1964 *
1965 * NOTE: this will only disable the regulator output if no other consumer
1966 * devices have it enabled, the regulator device supports disabling and
1967 * machine constraints permit this operation.
1968 */
1969int regulator_disable_deferred(struct regulator *regulator, int ms)
1970{
1971 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01001972 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01001973
Mark Brown6492bc12012-04-19 13:19:07 +01001974 if (regulator->always_on)
1975 return 0;
1976
Mark Brown2b5a24a2012-09-07 11:00:53 +08001977 if (!ms)
1978 return regulator_disable(regulator);
1979
Mark Brownda07ecd2011-09-11 09:53:50 +01001980 mutex_lock(&rdev->mutex);
1981 rdev->deferred_disables++;
1982 mutex_unlock(&rdev->mutex);
1983
Mark Brown070260f2013-07-18 11:52:04 +01001984 ret = queue_delayed_work(system_power_efficient_wq,
1985 &rdev->disable_work,
1986 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01001987 if (ret < 0)
1988 return ret;
1989 else
1990 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01001991}
1992EXPORT_SYMBOL_GPL(regulator_disable_deferred);
1993
Liam Girdwood414c70c2008-04-30 15:59:04 +01001994static int _regulator_is_enabled(struct regulator_dev *rdev)
1995{
Mark Brown65f73502012-06-27 14:14:38 +01001996 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00001997 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01001998 return rdev->ena_gpio_state;
1999
Mark Brown9a7f6a42010-02-11 17:22:45 +00002000 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002001 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002002 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002003
Mark Brown93325462009-08-03 18:49:56 +01002004 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002005}
2006
2007/**
2008 * regulator_is_enabled - is the regulator output enabled
2009 * @regulator: regulator source
2010 *
David Brownell412aec62008-11-16 11:44:46 -08002011 * Returns positive if the regulator driver backing the source/client
2012 * has requested that the device be enabled, zero if it hasn't, else a
2013 * negative errno code.
2014 *
2015 * Note that the device backing this regulator handle can have multiple
2016 * users, so it might be enabled even if regulator_enable() was never
2017 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002018 */
2019int regulator_is_enabled(struct regulator *regulator)
2020{
Mark Brown93325462009-08-03 18:49:56 +01002021 int ret;
2022
Mark Brown6492bc12012-04-19 13:19:07 +01002023 if (regulator->always_on)
2024 return 1;
2025
Mark Brown93325462009-08-03 18:49:56 +01002026 mutex_lock(&regulator->rdev->mutex);
2027 ret = _regulator_is_enabled(regulator->rdev);
2028 mutex_unlock(&regulator->rdev->mutex);
2029
2030 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002031}
2032EXPORT_SYMBOL_GPL(regulator_is_enabled);
2033
2034/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002035 * regulator_can_change_voltage - check if regulator can change voltage
2036 * @regulator: regulator source
2037 *
2038 * Returns positive if the regulator driver backing the source/client
2039 * can change its voltage, false otherwise. Usefull for detecting fixed
2040 * or dummy regulators and disabling voltage change logic in the client
2041 * driver.
2042 */
2043int regulator_can_change_voltage(struct regulator *regulator)
2044{
2045 struct regulator_dev *rdev = regulator->rdev;
2046
2047 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002048 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2049 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2050 return 1;
2051
2052 if (rdev->desc->continuous_voltage_range &&
2053 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2054 rdev->constraints->min_uV != rdev->constraints->max_uV)
2055 return 1;
2056 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002057
2058 return 0;
2059}
2060EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2061
2062/**
David Brownell4367cfd2009-02-26 11:48:36 -08002063 * regulator_count_voltages - count regulator_list_voltage() selectors
2064 * @regulator: regulator source
2065 *
2066 * Returns number of selectors, or negative errno. Selectors are
2067 * numbered starting at zero, and typically correspond to bitfields
2068 * in hardware registers.
2069 */
2070int regulator_count_voltages(struct regulator *regulator)
2071{
2072 struct regulator_dev *rdev = regulator->rdev;
2073
2074 return rdev->desc->n_voltages ? : -EINVAL;
2075}
2076EXPORT_SYMBOL_GPL(regulator_count_voltages);
2077
2078/**
2079 * regulator_list_voltage - enumerate supported voltages
2080 * @regulator: regulator source
2081 * @selector: identify voltage to list
2082 * Context: can sleep
2083 *
2084 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002085 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002086 * negative errno.
2087 */
2088int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2089{
2090 struct regulator_dev *rdev = regulator->rdev;
2091 struct regulator_ops *ops = rdev->desc->ops;
2092 int ret;
2093
2094 if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
2095 return -EINVAL;
2096
2097 mutex_lock(&rdev->mutex);
2098 ret = ops->list_voltage(rdev, selector);
2099 mutex_unlock(&rdev->mutex);
2100
2101 if (ret > 0) {
2102 if (ret < rdev->constraints->min_uV)
2103 ret = 0;
2104 else if (ret > rdev->constraints->max_uV)
2105 ret = 0;
2106 }
2107
2108 return ret;
2109}
2110EXPORT_SYMBOL_GPL(regulator_list_voltage);
2111
2112/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002113 * regulator_get_linear_step - return the voltage step size between VSEL values
2114 * @regulator: regulator source
2115 *
2116 * Returns the voltage step size between VSEL values for linear
2117 * regulators, or return 0 if the regulator isn't a linear regulator.
2118 */
2119unsigned int regulator_get_linear_step(struct regulator *regulator)
2120{
2121 struct regulator_dev *rdev = regulator->rdev;
2122
2123 return rdev->desc->uV_step;
2124}
2125EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2126
2127/**
Mark Browna7a1ad902009-07-21 16:00:24 +01002128 * regulator_is_supported_voltage - check if a voltage range can be supported
2129 *
2130 * @regulator: Regulator to check.
2131 * @min_uV: Minimum required voltage in uV.
2132 * @max_uV: Maximum required voltage in uV.
2133 *
2134 * Returns a boolean or a negative error code.
2135 */
2136int regulator_is_supported_voltage(struct regulator *regulator,
2137 int min_uV, int max_uV)
2138{
Mark Brownc5f39392012-07-02 15:00:18 +01002139 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad902009-07-21 16:00:24 +01002140 int i, voltages, ret;
2141
Mark Brownc5f39392012-07-02 15:00:18 +01002142 /* If we can't change voltage check the current voltage */
2143 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2144 ret = regulator_get_voltage(regulator);
2145 if (ret >= 0)
Marek Szyprowskif0f98b12012-11-13 09:48:51 +01002146 return (min_uV <= ret && ret <= max_uV);
Mark Brownc5f39392012-07-02 15:00:18 +01002147 else
2148 return ret;
2149 }
2150
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002151 /* Any voltage within constrains range is fine? */
2152 if (rdev->desc->continuous_voltage_range)
2153 return min_uV >= rdev->constraints->min_uV &&
2154 max_uV <= rdev->constraints->max_uV;
2155
Mark Browna7a1ad902009-07-21 16:00:24 +01002156 ret = regulator_count_voltages(regulator);
2157 if (ret < 0)
2158 return ret;
2159 voltages = ret;
2160
2161 for (i = 0; i < voltages; i++) {
2162 ret = regulator_list_voltage(regulator, i);
2163
2164 if (ret >= min_uV && ret <= max_uV)
2165 return 1;
2166 }
2167
2168 return 0;
2169}
Mark Browna398eaa2011-12-28 12:48:45 +00002170EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad902009-07-21 16:00:24 +01002171
Mark Brown75790252010-12-12 14:25:50 +00002172static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2173 int min_uV, int max_uV)
2174{
2175 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002176 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002177 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002178 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002179 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002180
2181 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2182
Mark Brownbf5892a2011-05-08 22:13:37 +01002183 min_uV += rdev->constraints->uV_offset;
2184 max_uV += rdev->constraints->uV_offset;
2185
Axel Lineba41a52012-04-04 10:32:10 +08002186 /*
2187 * If we can't obtain the old selector there is not enough
2188 * info to call set_voltage_time_sel().
2189 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002190 if (_regulator_is_enabled(rdev) &&
2191 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002192 rdev->desc->ops->get_voltage_sel) {
2193 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2194 if (old_selector < 0)
2195 return old_selector;
2196 }
2197
Mark Brown75790252010-12-12 14:25:50 +00002198 if (rdev->desc->ops->set_voltage) {
2199 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
2200 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002201
2202 if (ret >= 0) {
2203 if (rdev->desc->ops->list_voltage)
2204 best_val = rdev->desc->ops->list_voltage(rdev,
2205 selector);
2206 else
2207 best_val = _regulator_get_voltage(rdev);
2208 }
2209
Mark Browne8eef822010-12-12 14:36:17 +00002210 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002211 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002212 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2213 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002214 } else {
2215 if (rdev->desc->ops->list_voltage ==
2216 regulator_list_voltage_linear)
2217 ret = regulator_map_voltage_linear(rdev,
2218 min_uV, max_uV);
2219 else
2220 ret = regulator_map_voltage_iterate(rdev,
2221 min_uV, max_uV);
2222 }
Mark Browne8eef822010-12-12 14:36:17 +00002223
Mark Browne843fc42012-05-09 21:16:06 +01002224 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002225 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2226 if (min_uV <= best_val && max_uV >= best_val) {
2227 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002228 if (old_selector == selector)
2229 ret = 0;
2230 else
2231 ret = rdev->desc->ops->set_voltage_sel(
2232 rdev, ret);
Mark Browne113d792012-06-26 10:57:51 +01002233 } else {
2234 ret = -EINVAL;
2235 }
Mark Browne8eef822010-12-12 14:36:17 +00002236 }
Mark Brown75790252010-12-12 14:25:50 +00002237 } else {
2238 ret = -EINVAL;
2239 }
2240
Axel Lineba41a52012-04-04 10:32:10 +08002241 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302242 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2243 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002244
2245 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2246 old_selector, selector);
2247 if (delay < 0) {
2248 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2249 delay);
2250 delay = 0;
2251 }
Axel Lineba41a52012-04-04 10:32:10 +08002252
Philip Rakity8b96de32012-06-14 15:07:56 -07002253 /* Insert any necessary delays */
2254 if (delay >= 1000) {
2255 mdelay(delay / 1000);
2256 udelay(delay % 1000);
2257 } else if (delay) {
2258 udelay(delay);
2259 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002260 }
2261
Axel Lin2f6c7972012-08-06 23:44:19 +08002262 if (ret == 0 && best_val >= 0) {
2263 unsigned long data = best_val;
2264
Mark Brownded06a52010-12-16 13:59:10 +00002265 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002266 (void *)data);
2267 }
Mark Brownded06a52010-12-16 13:59:10 +00002268
Axel Lineba41a52012-04-04 10:32:10 +08002269 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002270
2271 return ret;
2272}
2273
Mark Browna7a1ad902009-07-21 16:00:24 +01002274/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002275 * regulator_set_voltage - set regulator output voltage
2276 * @regulator: regulator source
2277 * @min_uV: Minimum required voltage in uV
2278 * @max_uV: Maximum acceptable voltage in uV
2279 *
2280 * Sets a voltage regulator to the desired output voltage. This can be set
2281 * during any regulator state. IOW, regulator can be disabled or enabled.
2282 *
2283 * If the regulator is enabled then the voltage will change to the new value
2284 * immediately otherwise if the regulator is disabled the regulator will
2285 * output at the new voltage when enabled.
2286 *
2287 * NOTE: If the regulator is shared between several devices then the lowest
2288 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002289 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002290 * calling this function otherwise this call will fail.
2291 */
2292int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2293{
2294 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002295 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002296 int old_min_uV, old_max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002297
2298 mutex_lock(&rdev->mutex);
2299
Mark Brown95a3c232010-12-16 15:49:37 +00002300 /* If we're setting the same range as last time the change
2301 * should be a noop (some cpufreq implementations use the same
2302 * voltage for multiple frequencies, for example).
2303 */
2304 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2305 goto out;
2306
Liam Girdwood414c70c2008-04-30 15:59:04 +01002307 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002308 if (!rdev->desc->ops->set_voltage &&
2309 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002310 ret = -EINVAL;
2311 goto out;
2312 }
2313
2314 /* constraints check */
2315 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2316 if (ret < 0)
2317 goto out;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002318
2319 /* restore original values in case of error */
2320 old_min_uV = regulator->min_uV;
2321 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002322 regulator->min_uV = min_uV;
2323 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002324
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002325 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2326 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002327 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002328
Mark Brown75790252010-12-12 14:25:50 +00002329 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002330 if (ret < 0)
2331 goto out2;
2332
Liam Girdwood414c70c2008-04-30 15:59:04 +01002333out:
2334 mutex_unlock(&rdev->mutex);
2335 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002336out2:
2337 regulator->min_uV = old_min_uV;
2338 regulator->max_uV = old_max_uV;
2339 mutex_unlock(&rdev->mutex);
2340 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002341}
2342EXPORT_SYMBOL_GPL(regulator_set_voltage);
2343
Mark Brown606a2562010-12-16 15:49:36 +00002344/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002345 * regulator_set_voltage_time - get raise/fall time
2346 * @regulator: regulator source
2347 * @old_uV: starting voltage in microvolts
2348 * @new_uV: target voltage in microvolts
2349 *
2350 * Provided with the starting and ending voltage, this function attempts to
2351 * calculate the time in microseconds required to rise or fall to this new
2352 * voltage.
2353 */
2354int regulator_set_voltage_time(struct regulator *regulator,
2355 int old_uV, int new_uV)
2356{
2357 struct regulator_dev *rdev = regulator->rdev;
2358 struct regulator_ops *ops = rdev->desc->ops;
2359 int old_sel = -1;
2360 int new_sel = -1;
2361 int voltage;
2362 int i;
2363
2364 /* Currently requires operations to do this */
2365 if (!ops->list_voltage || !ops->set_voltage_time_sel
2366 || !rdev->desc->n_voltages)
2367 return -EINVAL;
2368
2369 for (i = 0; i < rdev->desc->n_voltages; i++) {
2370 /* We only look for exact voltage matches here */
2371 voltage = regulator_list_voltage(regulator, i);
2372 if (voltage < 0)
2373 return -EINVAL;
2374 if (voltage == 0)
2375 continue;
2376 if (voltage == old_uV)
2377 old_sel = i;
2378 if (voltage == new_uV)
2379 new_sel = i;
2380 }
2381
2382 if (old_sel < 0 || new_sel < 0)
2383 return -EINVAL;
2384
2385 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2386}
2387EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2388
2389/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002390 * regulator_set_voltage_time_sel - get raise/fall time
2391 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302392 * @old_selector: selector for starting voltage
2393 * @new_selector: selector for target voltage
2394 *
2395 * Provided with the starting and target voltage selectors, this function
2396 * returns time in microseconds required to rise or fall to this new voltage
2397 *
Axel Linf11d08c2012-06-19 09:38:45 +08002398 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002399 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302400 */
2401int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2402 unsigned int old_selector,
2403 unsigned int new_selector)
2404{
Axel Lin398715a2012-06-18 10:11:28 +08002405 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002406 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002407
2408 if (rdev->constraints->ramp_delay)
2409 ramp_delay = rdev->constraints->ramp_delay;
2410 else if (rdev->desc->ramp_delay)
2411 ramp_delay = rdev->desc->ramp_delay;
2412
2413 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302414 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002415 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302416 }
Axel Lin398715a2012-06-18 10:11:28 +08002417
Axel Linf11d08c2012-06-19 09:38:45 +08002418 /* sanity check */
2419 if (!rdev->desc->ops->list_voltage)
2420 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002421
Axel Linf11d08c2012-06-19 09:38:45 +08002422 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2423 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2424
2425 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302426}
Mark Brownb19dbf72012-06-23 11:34:20 +01002427EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302428
2429/**
Mark Brown606a2562010-12-16 15:49:36 +00002430 * regulator_sync_voltage - re-apply last regulator output voltage
2431 * @regulator: regulator source
2432 *
2433 * Re-apply the last configured voltage. This is intended to be used
2434 * where some external control source the consumer is cooperating with
2435 * has caused the configured voltage to change.
2436 */
2437int regulator_sync_voltage(struct regulator *regulator)
2438{
2439 struct regulator_dev *rdev = regulator->rdev;
2440 int ret, min_uV, max_uV;
2441
2442 mutex_lock(&rdev->mutex);
2443
2444 if (!rdev->desc->ops->set_voltage &&
2445 !rdev->desc->ops->set_voltage_sel) {
2446 ret = -EINVAL;
2447 goto out;
2448 }
2449
2450 /* This is only going to work if we've had a voltage configured. */
2451 if (!regulator->min_uV && !regulator->max_uV) {
2452 ret = -EINVAL;
2453 goto out;
2454 }
2455
2456 min_uV = regulator->min_uV;
2457 max_uV = regulator->max_uV;
2458
2459 /* This should be a paranoia check... */
2460 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2461 if (ret < 0)
2462 goto out;
2463
2464 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2465 if (ret < 0)
2466 goto out;
2467
2468 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2469
2470out:
2471 mutex_unlock(&rdev->mutex);
2472 return ret;
2473}
2474EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2475
Liam Girdwood414c70c2008-04-30 15:59:04 +01002476static int _regulator_get_voltage(struct regulator_dev *rdev)
2477{
Mark Brownbf5892a2011-05-08 22:13:37 +01002478 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002479
2480 if (rdev->desc->ops->get_voltage_sel) {
2481 sel = rdev->desc->ops->get_voltage_sel(rdev);
2482 if (sel < 0)
2483 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002484 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002485 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002486 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002487 } else if (rdev->desc->ops->list_voltage) {
2488 ret = rdev->desc->ops->list_voltage(rdev, 0);
Axel Lincb220d12011-05-23 20:08:10 +08002489 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002490 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002491 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002492
Axel Lincb220d12011-05-23 20:08:10 +08002493 if (ret < 0)
2494 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002495 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002496}
2497
2498/**
2499 * regulator_get_voltage - get regulator output voltage
2500 * @regulator: regulator source
2501 *
2502 * This returns the current regulator voltage in uV.
2503 *
2504 * NOTE: If the regulator is disabled it will return the voltage value. This
2505 * function should not be used to determine regulator state.
2506 */
2507int regulator_get_voltage(struct regulator *regulator)
2508{
2509 int ret;
2510
2511 mutex_lock(&regulator->rdev->mutex);
2512
2513 ret = _regulator_get_voltage(regulator->rdev);
2514
2515 mutex_unlock(&regulator->rdev->mutex);
2516
2517 return ret;
2518}
2519EXPORT_SYMBOL_GPL(regulator_get_voltage);
2520
2521/**
2522 * regulator_set_current_limit - set regulator output current limit
2523 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002524 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002525 * @max_uA: Maximum supported current in uA
2526 *
2527 * Sets current sink to the desired output current. This can be set during
2528 * any regulator state. IOW, regulator can be disabled or enabled.
2529 *
2530 * If the regulator is enabled then the current will change to the new value
2531 * immediately otherwise if the regulator is disabled the regulator will
2532 * output at the new current when enabled.
2533 *
2534 * NOTE: Regulator system constraints must be set for this regulator before
2535 * calling this function otherwise this call will fail.
2536 */
2537int regulator_set_current_limit(struct regulator *regulator,
2538 int min_uA, int max_uA)
2539{
2540 struct regulator_dev *rdev = regulator->rdev;
2541 int ret;
2542
2543 mutex_lock(&rdev->mutex);
2544
2545 /* sanity check */
2546 if (!rdev->desc->ops->set_current_limit) {
2547 ret = -EINVAL;
2548 goto out;
2549 }
2550
2551 /* constraints check */
2552 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2553 if (ret < 0)
2554 goto out;
2555
2556 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2557out:
2558 mutex_unlock(&rdev->mutex);
2559 return ret;
2560}
2561EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2562
2563static int _regulator_get_current_limit(struct regulator_dev *rdev)
2564{
2565 int ret;
2566
2567 mutex_lock(&rdev->mutex);
2568
2569 /* sanity check */
2570 if (!rdev->desc->ops->get_current_limit) {
2571 ret = -EINVAL;
2572 goto out;
2573 }
2574
2575 ret = rdev->desc->ops->get_current_limit(rdev);
2576out:
2577 mutex_unlock(&rdev->mutex);
2578 return ret;
2579}
2580
2581/**
2582 * regulator_get_current_limit - get regulator output current
2583 * @regulator: regulator source
2584 *
2585 * This returns the current supplied by the specified current sink in uA.
2586 *
2587 * NOTE: If the regulator is disabled it will return the current value. This
2588 * function should not be used to determine regulator state.
2589 */
2590int regulator_get_current_limit(struct regulator *regulator)
2591{
2592 return _regulator_get_current_limit(regulator->rdev);
2593}
2594EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2595
2596/**
2597 * regulator_set_mode - set regulator operating mode
2598 * @regulator: regulator source
2599 * @mode: operating mode - one of the REGULATOR_MODE constants
2600 *
2601 * Set regulator operating mode to increase regulator efficiency or improve
2602 * regulation performance.
2603 *
2604 * NOTE: Regulator system constraints must be set for this regulator before
2605 * calling this function otherwise this call will fail.
2606 */
2607int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2608{
2609 struct regulator_dev *rdev = regulator->rdev;
2610 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302611 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002612
2613 mutex_lock(&rdev->mutex);
2614
2615 /* sanity check */
2616 if (!rdev->desc->ops->set_mode) {
2617 ret = -EINVAL;
2618 goto out;
2619 }
2620
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302621 /* return if the same mode is requested */
2622 if (rdev->desc->ops->get_mode) {
2623 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2624 if (regulator_curr_mode == mode) {
2625 ret = 0;
2626 goto out;
2627 }
2628 }
2629
Liam Girdwood414c70c2008-04-30 15:59:04 +01002630 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08002631 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002632 if (ret < 0)
2633 goto out;
2634
2635 ret = rdev->desc->ops->set_mode(rdev, mode);
2636out:
2637 mutex_unlock(&rdev->mutex);
2638 return ret;
2639}
2640EXPORT_SYMBOL_GPL(regulator_set_mode);
2641
2642static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2643{
2644 int ret;
2645
2646 mutex_lock(&rdev->mutex);
2647
2648 /* sanity check */
2649 if (!rdev->desc->ops->get_mode) {
2650 ret = -EINVAL;
2651 goto out;
2652 }
2653
2654 ret = rdev->desc->ops->get_mode(rdev);
2655out:
2656 mutex_unlock(&rdev->mutex);
2657 return ret;
2658}
2659
2660/**
2661 * regulator_get_mode - get regulator operating mode
2662 * @regulator: regulator source
2663 *
2664 * Get the current regulator operating mode.
2665 */
2666unsigned int regulator_get_mode(struct regulator *regulator)
2667{
2668 return _regulator_get_mode(regulator->rdev);
2669}
2670EXPORT_SYMBOL_GPL(regulator_get_mode);
2671
2672/**
2673 * regulator_set_optimum_mode - set regulator optimum operating mode
2674 * @regulator: regulator source
2675 * @uA_load: load current
2676 *
2677 * Notifies the regulator core of a new device load. This is then used by
2678 * DRMS (if enabled by constraints) to set the most efficient regulator
2679 * operating mode for the new regulator loading.
2680 *
2681 * Consumer devices notify their supply regulator of the maximum power
2682 * they will require (can be taken from device datasheet in the power
2683 * consumption tables) when they change operational status and hence power
2684 * state. Examples of operational state changes that can affect power
2685 * consumption are :-
2686 *
2687 * o Device is opened / closed.
2688 * o Device I/O is about to begin or has just finished.
2689 * o Device is idling in between work.
2690 *
2691 * This information is also exported via sysfs to userspace.
2692 *
2693 * DRMS will sum the total requested load on the regulator and change
2694 * to the most efficient operating mode if platform constraints allow.
2695 *
2696 * Returns the new regulator mode or error.
2697 */
2698int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
2699{
2700 struct regulator_dev *rdev = regulator->rdev;
2701 struct regulator *consumer;
Stephen Boydd92d95b62012-07-02 19:21:06 -07002702 int ret, output_uV, input_uV = 0, total_uA_load = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002703 unsigned int mode;
2704
Stephen Boydd92d95b62012-07-02 19:21:06 -07002705 if (rdev->supply)
2706 input_uV = regulator_get_voltage(rdev->supply);
2707
Liam Girdwood414c70c2008-04-30 15:59:04 +01002708 mutex_lock(&rdev->mutex);
2709
Mark Browna4b41482011-05-14 11:19:45 -07002710 /*
2711 * first check to see if we can set modes at all, otherwise just
2712 * tell the consumer everything is OK.
2713 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002714 regulator->uA_load = uA_load;
2715 ret = regulator_check_drms(rdev);
Mark Browna4b41482011-05-14 11:19:45 -07002716 if (ret < 0) {
2717 ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002718 goto out;
Mark Browna4b41482011-05-14 11:19:45 -07002719 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002720
Liam Girdwood414c70c2008-04-30 15:59:04 +01002721 if (!rdev->desc->ops->get_optimum_mode)
2722 goto out;
2723
Mark Browna4b41482011-05-14 11:19:45 -07002724 /*
2725 * we can actually do this so any errors are indicators of
2726 * potential real failure.
2727 */
2728 ret = -EINVAL;
2729
Axel Lin854ccba2012-04-16 18:44:23 +08002730 if (!rdev->desc->ops->set_mode)
2731 goto out;
2732
Liam Girdwood414c70c2008-04-30 15:59:04 +01002733 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002734 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002735 if (output_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002736 rdev_err(rdev, "invalid output voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002737 goto out;
2738 }
2739
Stephen Boydd92d95b62012-07-02 19:21:06 -07002740 /* No supply? Use constraint voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002741 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002742 input_uV = rdev->constraints->input_uV;
2743 if (input_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002744 rdev_err(rdev, "invalid input voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002745 goto out;
2746 }
2747
2748 /* calc total requested load for this regulator */
2749 list_for_each_entry(consumer, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +01002750 total_uA_load += consumer->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002751
2752 mode = rdev->desc->ops->get_optimum_mode(rdev,
2753 input_uV, output_uV,
2754 total_uA_load);
Mark Brown2c608232011-03-30 06:29:12 +09002755 ret = regulator_mode_constrain(rdev, &mode);
David Brownelle5735202008-11-16 11:46:56 -08002756 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002757 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
2758 total_uA_load, input_uV, output_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002759 goto out;
2760 }
2761
2762 ret = rdev->desc->ops->set_mode(rdev, mode);
David Brownelle5735202008-11-16 11:46:56 -08002763 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002764 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002765 goto out;
2766 }
2767 ret = mode;
2768out:
2769 mutex_unlock(&rdev->mutex);
2770 return ret;
2771}
2772EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
2773
2774/**
Mark Brownf59c8f92012-08-31 10:36:37 -07002775 * regulator_allow_bypass - allow the regulator to go into bypass mode
2776 *
2777 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06002778 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07002779 *
2780 * Allow the regulator to go into bypass mode if all other consumers
2781 * for the regulator also enable bypass mode and the machine
2782 * constraints allow this. Bypass mode means that the regulator is
2783 * simply passing the input directly to the output with no regulation.
2784 */
2785int regulator_allow_bypass(struct regulator *regulator, bool enable)
2786{
2787 struct regulator_dev *rdev = regulator->rdev;
2788 int ret = 0;
2789
2790 if (!rdev->desc->ops->set_bypass)
2791 return 0;
2792
2793 if (rdev->constraints &&
2794 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
2795 return 0;
2796
2797 mutex_lock(&rdev->mutex);
2798
2799 if (enable && !regulator->bypass) {
2800 rdev->bypass_count++;
2801
2802 if (rdev->bypass_count == rdev->open_count) {
2803 ret = rdev->desc->ops->set_bypass(rdev, enable);
2804 if (ret != 0)
2805 rdev->bypass_count--;
2806 }
2807
2808 } else if (!enable && regulator->bypass) {
2809 rdev->bypass_count--;
2810
2811 if (rdev->bypass_count != rdev->open_count) {
2812 ret = rdev->desc->ops->set_bypass(rdev, enable);
2813 if (ret != 0)
2814 rdev->bypass_count++;
2815 }
2816 }
2817
2818 if (ret == 0)
2819 regulator->bypass = enable;
2820
2821 mutex_unlock(&rdev->mutex);
2822
2823 return ret;
2824}
2825EXPORT_SYMBOL_GPL(regulator_allow_bypass);
2826
2827/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002828 * regulator_register_notifier - register regulator event notifier
2829 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002830 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002831 *
2832 * Register notifier block to receive regulator events.
2833 */
2834int regulator_register_notifier(struct regulator *regulator,
2835 struct notifier_block *nb)
2836{
2837 return blocking_notifier_chain_register(&regulator->rdev->notifier,
2838 nb);
2839}
2840EXPORT_SYMBOL_GPL(regulator_register_notifier);
2841
2842/**
2843 * regulator_unregister_notifier - unregister regulator event notifier
2844 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002845 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002846 *
2847 * Unregister regulator event notifier block.
2848 */
2849int regulator_unregister_notifier(struct regulator *regulator,
2850 struct notifier_block *nb)
2851{
2852 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
2853 nb);
2854}
2855EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
2856
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002857/* notify regulator consumers and downstream regulator consumers.
2858 * Note mutex must be held by caller.
2859 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002860static void _notifier_call_chain(struct regulator_dev *rdev,
2861 unsigned long event, void *data)
2862{
Liam Girdwood414c70c2008-04-30 15:59:04 +01002863 /* call rdev chain first */
Mark Brownd8493d22012-06-15 19:09:09 +01002864 blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002865}
2866
2867/**
2868 * regulator_bulk_get - get multiple regulator consumers
2869 *
2870 * @dev: Device to supply
2871 * @num_consumers: Number of consumers to register
2872 * @consumers: Configuration of consumers; clients are stored here.
2873 *
2874 * @return 0 on success, an errno on failure.
2875 *
2876 * This helper function allows drivers to get several regulator
2877 * consumers in one operation. If any of the regulators cannot be
2878 * acquired then any regulators that were allocated will be freed
2879 * before returning to the caller.
2880 */
2881int regulator_bulk_get(struct device *dev, int num_consumers,
2882 struct regulator_bulk_data *consumers)
2883{
2884 int i;
2885 int ret;
2886
2887 for (i = 0; i < num_consumers; i++)
2888 consumers[i].consumer = NULL;
2889
2890 for (i = 0; i < num_consumers; i++) {
2891 consumers[i].consumer = regulator_get(dev,
2892 consumers[i].supply);
2893 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002894 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01002895 dev_err(dev, "Failed to get supply '%s': %d\n",
2896 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002897 consumers[i].consumer = NULL;
2898 goto err;
2899 }
2900 }
2901
2902 return 0;
2903
2904err:
Axel Linb29c7692012-02-20 10:32:16 +08002905 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002906 regulator_put(consumers[i].consumer);
2907
2908 return ret;
2909}
2910EXPORT_SYMBOL_GPL(regulator_bulk_get);
2911
Mark Browne6e74032012-01-20 20:10:08 +00002912/**
2913 * devm_regulator_bulk_get - managed get multiple regulator consumers
2914 *
2915 * @dev: Device to supply
2916 * @num_consumers: Number of consumers to register
2917 * @consumers: Configuration of consumers; clients are stored here.
2918 *
2919 * @return 0 on success, an errno on failure.
2920 *
2921 * This helper function allows drivers to get several regulator
2922 * consumers in one operation with management, the regulators will
2923 * automatically be freed when the device is unbound. If any of the
2924 * regulators cannot be acquired then any regulators that were
2925 * allocated will be freed before returning to the caller.
2926 */
2927int devm_regulator_bulk_get(struct device *dev, int num_consumers,
2928 struct regulator_bulk_data *consumers)
2929{
2930 int i;
2931 int ret;
2932
2933 for (i = 0; i < num_consumers; i++)
2934 consumers[i].consumer = NULL;
2935
2936 for (i = 0; i < num_consumers; i++) {
2937 consumers[i].consumer = devm_regulator_get(dev,
2938 consumers[i].supply);
2939 if (IS_ERR(consumers[i].consumer)) {
2940 ret = PTR_ERR(consumers[i].consumer);
2941 dev_err(dev, "Failed to get supply '%s': %d\n",
2942 consumers[i].supply, ret);
2943 consumers[i].consumer = NULL;
2944 goto err;
2945 }
2946 }
2947
2948 return 0;
2949
2950err:
2951 for (i = 0; i < num_consumers && consumers[i].consumer; i++)
2952 devm_regulator_put(consumers[i].consumer);
2953
2954 return ret;
2955}
2956EXPORT_SYMBOL_GPL(devm_regulator_bulk_get);
2957
Mark Brownf21e0e82011-05-24 08:12:40 +08002958static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
2959{
2960 struct regulator_bulk_data *bulk = data;
2961
2962 bulk->ret = regulator_enable(bulk->consumer);
2963}
2964
Liam Girdwood414c70c2008-04-30 15:59:04 +01002965/**
2966 * regulator_bulk_enable - enable multiple regulator consumers
2967 *
2968 * @num_consumers: Number of consumers
2969 * @consumers: Consumer data; clients are stored here.
2970 * @return 0 on success, an errno on failure
2971 *
2972 * This convenience API allows consumers to enable multiple regulator
2973 * clients in a single API call. If any consumers cannot be enabled
2974 * then any others that were enabled will be disabled again prior to
2975 * return.
2976 */
2977int regulator_bulk_enable(int num_consumers,
2978 struct regulator_bulk_data *consumers)
2979{
Dan Williams2955b472012-07-09 19:33:25 -07002980 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002981 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08002982 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002983
Mark Brown6492bc12012-04-19 13:19:07 +01002984 for (i = 0; i < num_consumers; i++) {
2985 if (consumers[i].consumer->always_on)
2986 consumers[i].ret = 0;
2987 else
2988 async_schedule_domain(regulator_bulk_enable_async,
2989 &consumers[i], &async_domain);
2990 }
Mark Brownf21e0e82011-05-24 08:12:40 +08002991
2992 async_synchronize_full_domain(&async_domain);
2993
2994 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002995 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08002996 if (consumers[i].ret != 0) {
2997 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002998 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08002999 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003000 }
3001
3002 return 0;
3003
3004err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003005 for (i = 0; i < num_consumers; i++) {
3006 if (consumers[i].ret < 0)
3007 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3008 consumers[i].ret);
3009 else
3010 regulator_disable(consumers[i].consumer);
3011 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003012
3013 return ret;
3014}
3015EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3016
3017/**
3018 * regulator_bulk_disable - disable multiple regulator consumers
3019 *
3020 * @num_consumers: Number of consumers
3021 * @consumers: Consumer data; clients are stored here.
3022 * @return 0 on success, an errno on failure
3023 *
3024 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003025 * clients in a single API call. If any consumers cannot be disabled
3026 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003027 * return.
3028 */
3029int regulator_bulk_disable(int num_consumers,
3030 struct regulator_bulk_data *consumers)
3031{
3032 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003033 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003034
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003035 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003036 ret = regulator_disable(consumers[i].consumer);
3037 if (ret != 0)
3038 goto err;
3039 }
3040
3041 return 0;
3042
3043err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003044 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003045 for (++i; i < num_consumers; ++i) {
3046 r = regulator_enable(consumers[i].consumer);
3047 if (r != 0)
3048 pr_err("Failed to reename %s: %d\n",
3049 consumers[i].supply, r);
3050 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003051
3052 return ret;
3053}
3054EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3055
3056/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003057 * regulator_bulk_force_disable - force disable multiple regulator consumers
3058 *
3059 * @num_consumers: Number of consumers
3060 * @consumers: Consumer data; clients are stored here.
3061 * @return 0 on success, an errno on failure
3062 *
3063 * This convenience API allows consumers to forcibly disable multiple regulator
3064 * clients in a single API call.
3065 * NOTE: This should be used for situations when device damage will
3066 * likely occur if the regulators are not disabled (e.g. over temp).
3067 * Although regulator_force_disable function call for some consumers can
3068 * return error numbers, the function is called for all consumers.
3069 */
3070int regulator_bulk_force_disable(int num_consumers,
3071 struct regulator_bulk_data *consumers)
3072{
3073 int i;
3074 int ret;
3075
3076 for (i = 0; i < num_consumers; i++)
3077 consumers[i].ret =
3078 regulator_force_disable(consumers[i].consumer);
3079
3080 for (i = 0; i < num_consumers; i++) {
3081 if (consumers[i].ret != 0) {
3082 ret = consumers[i].ret;
3083 goto out;
3084 }
3085 }
3086
3087 return 0;
3088out:
3089 return ret;
3090}
3091EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3092
3093/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003094 * regulator_bulk_free - free multiple regulator consumers
3095 *
3096 * @num_consumers: Number of consumers
3097 * @consumers: Consumer data; clients are stored here.
3098 *
3099 * This convenience API allows consumers to free multiple regulator
3100 * clients in a single API call.
3101 */
3102void regulator_bulk_free(int num_consumers,
3103 struct regulator_bulk_data *consumers)
3104{
3105 int i;
3106
3107 for (i = 0; i < num_consumers; i++) {
3108 regulator_put(consumers[i].consumer);
3109 consumers[i].consumer = NULL;
3110 }
3111}
3112EXPORT_SYMBOL_GPL(regulator_bulk_free);
3113
3114/**
3115 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003116 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003117 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003118 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003119 *
3120 * Called by regulator drivers to notify clients a regulator event has
3121 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003122 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003123 */
3124int regulator_notifier_call_chain(struct regulator_dev *rdev,
3125 unsigned long event, void *data)
3126{
3127 _notifier_call_chain(rdev, event, data);
3128 return NOTIFY_DONE;
3129
3130}
3131EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3132
Mark Brownbe721972009-08-04 20:09:52 +02003133/**
3134 * regulator_mode_to_status - convert a regulator mode into a status
3135 *
3136 * @mode: Mode to convert
3137 *
3138 * Convert a regulator mode into a status.
3139 */
3140int regulator_mode_to_status(unsigned int mode)
3141{
3142 switch (mode) {
3143 case REGULATOR_MODE_FAST:
3144 return REGULATOR_STATUS_FAST;
3145 case REGULATOR_MODE_NORMAL:
3146 return REGULATOR_STATUS_NORMAL;
3147 case REGULATOR_MODE_IDLE:
3148 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003149 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003150 return REGULATOR_STATUS_STANDBY;
3151 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003152 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003153 }
3154}
3155EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3156
David Brownell7ad68e22008-11-11 17:39:02 -08003157/*
3158 * To avoid cluttering sysfs (and memory) with useless state, only
3159 * create attributes that can be meaningfully displayed.
3160 */
3161static int add_regulator_attributes(struct regulator_dev *rdev)
3162{
3163 struct device *dev = &rdev->dev;
3164 struct regulator_ops *ops = rdev->desc->ops;
3165 int status = 0;
3166
3167 /* some attributes need specific methods to be displayed */
Mark Brown4c788992011-11-02 11:39:09 +00003168 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
Mark Brownf2889e62012-08-27 11:37:04 -07003169 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3170 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0)) {
David Brownell7ad68e22008-11-11 17:39:02 -08003171 status = device_create_file(dev, &dev_attr_microvolts);
3172 if (status < 0)
3173 return status;
3174 }
3175 if (ops->get_current_limit) {
3176 status = device_create_file(dev, &dev_attr_microamps);
3177 if (status < 0)
3178 return status;
3179 }
3180 if (ops->get_mode) {
3181 status = device_create_file(dev, &dev_attr_opmode);
3182 if (status < 0)
3183 return status;
3184 }
Kim, Milo7b74d142013-02-18 06:50:55 +00003185 if (rdev->ena_pin || ops->is_enabled) {
David Brownell7ad68e22008-11-11 17:39:02 -08003186 status = device_create_file(dev, &dev_attr_state);
3187 if (status < 0)
3188 return status;
3189 }
David Brownell853116a2009-01-14 23:03:17 -08003190 if (ops->get_status) {
3191 status = device_create_file(dev, &dev_attr_status);
3192 if (status < 0)
3193 return status;
3194 }
Mark Brownf59c8f92012-08-31 10:36:37 -07003195 if (ops->get_bypass) {
3196 status = device_create_file(dev, &dev_attr_bypass);
3197 if (status < 0)
3198 return status;
3199 }
David Brownell7ad68e22008-11-11 17:39:02 -08003200
3201 /* some attributes are type-specific */
3202 if (rdev->desc->type == REGULATOR_CURRENT) {
3203 status = device_create_file(dev, &dev_attr_requested_microamps);
3204 if (status < 0)
3205 return status;
3206 }
3207
3208 /* all the other attributes exist to support constraints;
3209 * don't show them if there are no constraints, or if the
3210 * relevant supporting methods are missing.
3211 */
3212 if (!rdev->constraints)
3213 return status;
3214
3215 /* constraints need specific supporting methods */
Mark Browne8eef822010-12-12 14:36:17 +00003216 if (ops->set_voltage || ops->set_voltage_sel) {
David Brownell7ad68e22008-11-11 17:39:02 -08003217 status = device_create_file(dev, &dev_attr_min_microvolts);
3218 if (status < 0)
3219 return status;
3220 status = device_create_file(dev, &dev_attr_max_microvolts);
3221 if (status < 0)
3222 return status;
3223 }
3224 if (ops->set_current_limit) {
3225 status = device_create_file(dev, &dev_attr_min_microamps);
3226 if (status < 0)
3227 return status;
3228 status = device_create_file(dev, &dev_attr_max_microamps);
3229 if (status < 0)
3230 return status;
3231 }
3232
David Brownell7ad68e22008-11-11 17:39:02 -08003233 status = device_create_file(dev, &dev_attr_suspend_standby_state);
3234 if (status < 0)
3235 return status;
3236 status = device_create_file(dev, &dev_attr_suspend_mem_state);
3237 if (status < 0)
3238 return status;
3239 status = device_create_file(dev, &dev_attr_suspend_disk_state);
3240 if (status < 0)
3241 return status;
3242
3243 if (ops->set_suspend_voltage) {
3244 status = device_create_file(dev,
3245 &dev_attr_suspend_standby_microvolts);
3246 if (status < 0)
3247 return status;
3248 status = device_create_file(dev,
3249 &dev_attr_suspend_mem_microvolts);
3250 if (status < 0)
3251 return status;
3252 status = device_create_file(dev,
3253 &dev_attr_suspend_disk_microvolts);
3254 if (status < 0)
3255 return status;
3256 }
3257
3258 if (ops->set_suspend_mode) {
3259 status = device_create_file(dev,
3260 &dev_attr_suspend_standby_mode);
3261 if (status < 0)
3262 return status;
3263 status = device_create_file(dev,
3264 &dev_attr_suspend_mem_mode);
3265 if (status < 0)
3266 return status;
3267 status = device_create_file(dev,
3268 &dev_attr_suspend_disk_mode);
3269 if (status < 0)
3270 return status;
3271 }
3272
3273 return status;
3274}
3275
Mark Brown1130e5b2010-12-21 23:49:31 +00003276static void rdev_init_debugfs(struct regulator_dev *rdev)
3277{
Mark Brown1130e5b2010-12-21 23:49:31 +00003278 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003279 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003280 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003281 return;
3282 }
3283
3284 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3285 &rdev->use_count);
3286 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3287 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003288 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3289 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003290}
3291
Liam Girdwood414c70c2008-04-30 15:59:04 +01003292/**
3293 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003294 * @regulator_desc: regulator to register
Mark Brownc172708d2012-04-04 00:50:22 +01003295 * @config: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003296 *
3297 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003298 * Returns a valid pointer to struct regulator_dev on success
3299 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003300 */
Mark Brown65f26842012-04-03 20:46:53 +01003301struct regulator_dev *
3302regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc172708d2012-04-04 00:50:22 +01003303 const struct regulator_config *config)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003304{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003305 const struct regulation_constraints *constraints = NULL;
Mark Brownc172708d2012-04-04 00:50:22 +01003306 const struct regulator_init_data *init_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003307 static atomic_t regulator_no = ATOMIC_INIT(0);
3308 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003309 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003310 int ret, i;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303311 const char *supply = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003312
Mark Brownc172708d2012-04-04 00:50:22 +01003313 if (regulator_desc == NULL || config == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003314 return ERR_PTR(-EINVAL);
3315
Mark Brown32c8fad2012-04-11 10:19:12 +01003316 dev = config->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003317 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003318
Liam Girdwood414c70c2008-04-30 15:59:04 +01003319 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3320 return ERR_PTR(-EINVAL);
3321
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003322 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3323 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003324 return ERR_PTR(-EINVAL);
3325
Mark Brown476c2d82010-12-10 17:28:07 +00003326 /* Only one of each should be implemented */
3327 WARN_ON(regulator_desc->ops->get_voltage &&
3328 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003329 WARN_ON(regulator_desc->ops->set_voltage &&
3330 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003331
3332 /* If we're using selectors we must implement list_voltage. */
3333 if (regulator_desc->ops->get_voltage_sel &&
3334 !regulator_desc->ops->list_voltage) {
3335 return ERR_PTR(-EINVAL);
3336 }
Mark Browne8eef822010-12-12 14:36:17 +00003337 if (regulator_desc->ops->set_voltage_sel &&
3338 !regulator_desc->ops->list_voltage) {
3339 return ERR_PTR(-EINVAL);
3340 }
Mark Brown476c2d82010-12-10 17:28:07 +00003341
Mark Brownc172708d2012-04-04 00:50:22 +01003342 init_data = config->init_data;
3343
Liam Girdwood414c70c2008-04-30 15:59:04 +01003344 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3345 if (rdev == NULL)
3346 return ERR_PTR(-ENOMEM);
3347
3348 mutex_lock(&regulator_list_mutex);
3349
3350 mutex_init(&rdev->mutex);
Mark Brownc172708d2012-04-04 00:50:22 +01003351 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003352 rdev->owner = regulator_desc->owner;
3353 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003354 if (config->regmap)
3355 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303356 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003357 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303358 else if (dev->parent)
3359 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003360 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003361 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003362 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003363 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003364
Liam Girdwooda5766f12008-10-10 13:22:20 +01003365 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003366 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003367 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003368 if (ret < 0)
3369 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003370 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003371
Liam Girdwooda5766f12008-10-10 13:22:20 +01003372 /* register with sysfs */
3373 rdev->dev.class = &regulator_class;
Mark Brownc172708d2012-04-04 00:50:22 +01003374 rdev->dev.of_node = config->of_node;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003375 rdev->dev.parent = dev;
Kay Sievers812460a2008-11-02 03:55:10 +01003376 dev_set_name(&rdev->dev, "regulator.%d",
3377 atomic_inc_return(&regulator_no) - 1);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003378 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003379 if (ret != 0) {
3380 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003381 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003382 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003383
3384 dev_set_drvdata(&rdev->dev, rdev);
3385
Marek Szyprowskib2a1ef42012-08-09 16:33:00 +02003386 if (config->ena_gpio && gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003387 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003388 if (ret != 0) {
3389 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3390 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003391 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003392 }
3393
Mark Brown65f73502012-06-27 14:14:38 +01003394 if (config->ena_gpio_flags & GPIOF_OUT_INIT_HIGH)
3395 rdev->ena_gpio_state = 1;
3396
Kim, Milo7b74d142013-02-18 06:50:55 +00003397 if (config->ena_gpio_invert)
Mark Brown65f73502012-06-27 14:14:38 +01003398 rdev->ena_gpio_state = !rdev->ena_gpio_state;
3399 }
3400
Mike Rapoport74f544c2008-11-25 14:53:53 +02003401 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003402 if (init_data)
3403 constraints = &init_data->constraints;
3404
3405 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003406 if (ret < 0)
3407 goto scrub;
3408
David Brownell7ad68e22008-11-11 17:39:02 -08003409 /* add attributes supported by this regulator */
3410 ret = add_regulator_attributes(rdev);
3411 if (ret < 0)
3412 goto scrub;
3413
Mark Brown9a8f5e02011-11-29 18:11:19 +00003414 if (init_data && init_data->supply_regulator)
Rajendra Nayak69511a42011-11-18 16:47:20 +05303415 supply = init_data->supply_regulator;
3416 else if (regulator_desc->supply_name)
3417 supply = regulator_desc->supply_name;
3418
3419 if (supply) {
Mark Brown0178f3e2010-04-26 15:18:14 +01003420 struct regulator_dev *r;
Mark Brown0178f3e2010-04-26 15:18:14 +01003421
Mark Brown6d191a52012-03-29 14:19:02 +01003422 r = regulator_dev_lookup(dev, supply, &ret);
Mark Brown0178f3e2010-04-26 15:18:14 +01003423
Andrew Bresticker0f7b87f2013-04-04 15:27:47 -07003424 if (ret == -ENODEV) {
3425 /*
3426 * No supply was specified for this regulator and
3427 * there will never be one.
3428 */
3429 ret = 0;
3430 goto add_dev;
3431 } else if (!r) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05303432 dev_err(dev, "Failed to find supply %s\n", supply);
Mark Brown04bf3012012-03-11 13:07:56 +00003433 ret = -EPROBE_DEFER;
Mark Brown0178f3e2010-04-26 15:18:14 +01003434 goto scrub;
3435 }
3436
3437 ret = set_supply(rdev, r);
3438 if (ret < 0)
3439 goto scrub;
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303440
3441 /* Enable supply if rail is enabled */
Mark Brownb1a86832012-05-14 00:40:14 +01003442 if (_regulator_is_enabled(rdev)) {
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303443 ret = regulator_enable(rdev->supply);
3444 if (ret < 0)
3445 goto scrub;
3446 }
Mark Brown0178f3e2010-04-26 15:18:14 +01003447 }
3448
Andrew Bresticker0f7b87f2013-04-04 15:27:47 -07003449add_dev:
Liam Girdwooda5766f12008-10-10 13:22:20 +01003450 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003451 if (init_data) {
3452 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3453 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003454 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003455 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003456 if (ret < 0) {
3457 dev_err(dev, "Failed to set supply %s\n",
3458 init_data->consumer_supplies[i].supply);
3459 goto unset_supplies;
3460 }
Mark Brown23c2f042011-02-24 17:39:09 +00003461 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003462 }
3463
3464 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003465
3466 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003467out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003468 mutex_unlock(&regulator_list_mutex);
3469 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003470
Jani Nikulad4033b52010-04-29 10:55:11 +03003471unset_supplies:
3472 unset_regulator_supplies(rdev);
3473
David Brownell4fca9542008-11-11 17:38:53 -08003474scrub:
Mark Browne81dba852012-05-13 18:35:56 +01003475 if (rdev->supply)
Charles Keepax23ff2f02012-11-14 09:39:31 +00003476 _regulator_put(rdev->supply);
Kim, Milof19b00d2013-02-18 06:50:39 +00003477 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003478 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003479wash:
David Brownell4fca9542008-11-11 17:38:53 -08003480 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003481 /* device core frees rdev */
3482 rdev = ERR_PTR(ret);
3483 goto out;
3484
David Brownell4fca9542008-11-11 17:38:53 -08003485clean:
3486 kfree(rdev);
3487 rdev = ERR_PTR(ret);
3488 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003489}
3490EXPORT_SYMBOL_GPL(regulator_register);
3491
Mark Brownb33e46b2013-08-31 11:58:26 +01003492static void devm_rdev_release(struct device *dev, void *res)
3493{
3494 regulator_unregister(*(struct regulator_dev **)res);
3495}
3496
3497/**
3498 * devm_regulator_register - Resource managed regulator_register()
3499 * @regulator_desc: regulator to register
3500 * @config: runtime configuration for regulator
3501 *
3502 * Called by regulator drivers to register a regulator. Returns a
3503 * valid pointer to struct regulator_dev on success or an ERR_PTR() on
Sachin Kamat42141f22013-09-05 09:22:02 +05303504 * error. The regulator will automatically be released when the device
Mark Brownb33e46b2013-08-31 11:58:26 +01003505 * is unbound.
3506 */
3507struct regulator_dev *devm_regulator_register(struct device *dev,
3508 const struct regulator_desc *regulator_desc,
3509 const struct regulator_config *config)
3510{
3511 struct regulator_dev **ptr, *rdev;
3512
3513 ptr = devres_alloc(devm_rdev_release, sizeof(*ptr),
3514 GFP_KERNEL);
3515 if (!ptr)
3516 return ERR_PTR(-ENOMEM);
3517
3518 rdev = regulator_register(regulator_desc, config);
3519 if (!IS_ERR(rdev)) {
3520 *ptr = rdev;
3521 devres_add(dev, ptr);
3522 } else {
3523 devres_free(ptr);
3524 }
3525
3526 return rdev;
3527}
3528EXPORT_SYMBOL_GPL(devm_regulator_register);
3529
Liam Girdwood414c70c2008-04-30 15:59:04 +01003530/**
3531 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003532 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003533 *
3534 * Called by regulator drivers to unregister a regulator.
3535 */
3536void regulator_unregister(struct regulator_dev *rdev)
3537{
3538 if (rdev == NULL)
3539 return;
3540
Mark Brown891636e2013-07-08 09:14:45 +01003541 if (rdev->supply) {
3542 while (rdev->use_count--)
3543 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003544 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003545 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003546 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003547 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003548 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003549 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003550 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003551 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003552 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003553 regulator_ena_gpio_free(rdev);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003554 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003555 mutex_unlock(&regulator_list_mutex);
3556}
3557EXPORT_SYMBOL_GPL(regulator_unregister);
3558
Mark Brownb33e46b2013-08-31 11:58:26 +01003559static int devm_rdev_match(struct device *dev, void *res, void *data)
3560{
3561 struct regulator_dev **r = res;
3562 if (!r || !*r) {
3563 WARN_ON(!r || !*r);
3564 return 0;
3565 }
3566 return *r == data;
3567}
3568
3569/**
3570 * devm_regulator_unregister - Resource managed regulator_unregister()
3571 * @regulator: regulator to free
3572 *
3573 * Unregister a regulator registered with devm_regulator_register().
3574 * Normally this function will not need to be called and the resource
3575 * management code will ensure that the resource is freed.
3576 */
3577void devm_regulator_unregister(struct device *dev, struct regulator_dev *rdev)
3578{
3579 int rc;
3580
3581 rc = devres_release(dev, devm_rdev_release, devm_rdev_match, rdev);
3582 if (rc != 0)
3583 WARN_ON(rc);
3584}
3585EXPORT_SYMBOL_GPL(devm_regulator_unregister);
3586
Liam Girdwood414c70c2008-04-30 15:59:04 +01003587/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003588 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003589 * @state: system suspend state
3590 *
3591 * Configure each regulator with it's suspend operating parameters for state.
3592 * This will usually be called by machine suspend code prior to supending.
3593 */
3594int regulator_suspend_prepare(suspend_state_t state)
3595{
3596 struct regulator_dev *rdev;
3597 int ret = 0;
3598
3599 /* ON is handled by regulator active state */
3600 if (state == PM_SUSPEND_ON)
3601 return -EINVAL;
3602
3603 mutex_lock(&regulator_list_mutex);
3604 list_for_each_entry(rdev, &regulator_list, list) {
3605
3606 mutex_lock(&rdev->mutex);
3607 ret = suspend_prepare(rdev, state);
3608 mutex_unlock(&rdev->mutex);
3609
3610 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003611 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003612 goto out;
3613 }
3614 }
3615out:
3616 mutex_unlock(&regulator_list_mutex);
3617 return ret;
3618}
3619EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3620
3621/**
MyungJoo Ham7a32b5892011-03-11 10:13:59 +09003622 * regulator_suspend_finish - resume regulators from system wide suspend
3623 *
3624 * Turn on regulators that might be turned off by regulator_suspend_prepare
3625 * and that should be turned on according to the regulators properties.
3626 */
3627int regulator_suspend_finish(void)
3628{
3629 struct regulator_dev *rdev;
3630 int ret = 0, error;
3631
3632 mutex_lock(&regulator_list_mutex);
3633 list_for_each_entry(rdev, &regulator_list, list) {
3634 struct regulator_ops *ops = rdev->desc->ops;
3635
3636 mutex_lock(&rdev->mutex);
3637 if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
3638 ops->enable) {
3639 error = ops->enable(rdev);
3640 if (error)
3641 ret = error;
3642 } else {
3643 if (!has_full_constraints)
3644 goto unlock;
3645 if (!ops->disable)
3646 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003647 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b5892011-03-11 10:13:59 +09003648 goto unlock;
3649
3650 error = ops->disable(rdev);
3651 if (error)
3652 ret = error;
3653 }
3654unlock:
3655 mutex_unlock(&rdev->mutex);
3656 }
3657 mutex_unlock(&regulator_list_mutex);
3658 return ret;
3659}
3660EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3661
3662/**
Mark Brownca725562009-03-16 19:36:34 +00003663 * regulator_has_full_constraints - the system has fully specified constraints
3664 *
3665 * Calling this function will cause the regulator API to disable all
3666 * regulators which have a zero use count and don't have an always_on
3667 * constraint in a late_initcall.
3668 *
3669 * The intention is that this will become the default behaviour in a
3670 * future kernel release so users are encouraged to use this facility
3671 * now.
3672 */
3673void regulator_has_full_constraints(void)
3674{
3675 has_full_constraints = 1;
3676}
3677EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3678
3679/**
Mark Brown688fe992010-10-05 19:18:32 -07003680 * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
3681 *
3682 * Calling this function will cause the regulator API to provide a
3683 * dummy regulator to consumers if no physical regulator is found,
3684 * allowing most consumers to proceed as though a regulator were
3685 * configured. This allows systems such as those with software
3686 * controllable regulators for the CPU core only to be brought up more
3687 * readily.
3688 */
3689void regulator_use_dummy_regulator(void)
3690{
3691 board_wants_dummy_regulator = true;
3692}
3693EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
3694
3695/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003696 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003697 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003698 *
3699 * Get rdev regulator driver private data. This call can be used in the
3700 * regulator driver context.
3701 */
3702void *rdev_get_drvdata(struct regulator_dev *rdev)
3703{
3704 return rdev->reg_data;
3705}
3706EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3707
3708/**
3709 * regulator_get_drvdata - get regulator driver data
3710 * @regulator: regulator
3711 *
3712 * Get regulator driver private data. This call can be used in the consumer
3713 * driver context when non API regulator specific functions need to be called.
3714 */
3715void *regulator_get_drvdata(struct regulator *regulator)
3716{
3717 return regulator->rdev->reg_data;
3718}
3719EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3720
3721/**
3722 * regulator_set_drvdata - set regulator driver data
3723 * @regulator: regulator
3724 * @data: data
3725 */
3726void regulator_set_drvdata(struct regulator *regulator, void *data)
3727{
3728 regulator->rdev->reg_data = data;
3729}
3730EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3731
3732/**
3733 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003734 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003735 */
3736int rdev_get_id(struct regulator_dev *rdev)
3737{
3738 return rdev->desc->id;
3739}
3740EXPORT_SYMBOL_GPL(rdev_get_id);
3741
Liam Girdwooda5766f12008-10-10 13:22:20 +01003742struct device *rdev_get_dev(struct regulator_dev *rdev)
3743{
3744 return &rdev->dev;
3745}
3746EXPORT_SYMBOL_GPL(rdev_get_dev);
3747
3748void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3749{
3750 return reg_init_data->driver_data;
3751}
3752EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3753
Mark Brownba55a972011-08-23 17:39:10 +01003754#ifdef CONFIG_DEBUG_FS
3755static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3756 size_t count, loff_t *ppos)
3757{
3758 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3759 ssize_t len, ret = 0;
3760 struct regulator_map *map;
3761
3762 if (!buf)
3763 return -ENOMEM;
3764
3765 list_for_each_entry(map, &regulator_map_list, list) {
3766 len = snprintf(buf + ret, PAGE_SIZE - ret,
3767 "%s -> %s.%s\n",
3768 rdev_get_name(map->regulator), map->dev_name,
3769 map->supply);
3770 if (len >= 0)
3771 ret += len;
3772 if (ret > PAGE_SIZE) {
3773 ret = PAGE_SIZE;
3774 break;
3775 }
3776 }
3777
3778 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3779
3780 kfree(buf);
3781
3782 return ret;
3783}
Stephen Boyd24751432012-02-20 22:50:42 -08003784#endif
Mark Brownba55a972011-08-23 17:39:10 +01003785
3786static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003787#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003788 .read = supply_map_read_file,
3789 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003790#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003791};
Mark Brownba55a972011-08-23 17:39:10 +01003792
Liam Girdwood414c70c2008-04-30 15:59:04 +01003793static int __init regulator_init(void)
3794{
Mark Brown34abbd62010-02-12 10:18:08 +00003795 int ret;
3796
Mark Brown34abbd62010-02-12 10:18:08 +00003797 ret = class_register(&regulator_class);
3798
Mark Brown1130e5b2010-12-21 23:49:31 +00003799 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08003800 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00003801 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01003802
Mark Brownf4d562c2012-02-20 21:01:04 +00003803 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
3804 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00003805
Mark Brown34abbd62010-02-12 10:18:08 +00003806 regulator_dummy_init();
3807
3808 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003809}
3810
3811/* init early to allow our consumers to complete system booting */
3812core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00003813
3814static int __init regulator_init_complete(void)
3815{
3816 struct regulator_dev *rdev;
3817 struct regulator_ops *ops;
3818 struct regulation_constraints *c;
3819 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00003820
Mark Brown86f5fcf2012-07-06 18:19:13 +01003821 /*
3822 * Since DT doesn't provide an idiomatic mechanism for
3823 * enabling full constraints and since it's much more natural
3824 * with DT to provide them just assume that a DT enabled
3825 * system has full constraints.
3826 */
3827 if (of_have_populated_dt())
3828 has_full_constraints = true;
3829
Mark Brownca725562009-03-16 19:36:34 +00003830 mutex_lock(&regulator_list_mutex);
3831
3832 /* If we have a full configuration then disable any regulators
3833 * which are not in use or always_on. This will become the
3834 * default behaviour in the future.
3835 */
3836 list_for_each_entry(rdev, &regulator_list, list) {
3837 ops = rdev->desc->ops;
3838 c = rdev->constraints;
3839
Mark Brownf25e0b42009-08-03 18:49:55 +01003840 if (!ops->disable || (c && c->always_on))
Mark Brownca725562009-03-16 19:36:34 +00003841 continue;
3842
3843 mutex_lock(&rdev->mutex);
3844
3845 if (rdev->use_count)
3846 goto unlock;
3847
3848 /* If we can't read the status assume it's on. */
3849 if (ops->is_enabled)
3850 enabled = ops->is_enabled(rdev);
3851 else
3852 enabled = 1;
3853
3854 if (!enabled)
3855 goto unlock;
3856
3857 if (has_full_constraints) {
3858 /* We log since this may kill the system if it
3859 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08003860 rdev_info(rdev, "disabling\n");
Mark Brownca725562009-03-16 19:36:34 +00003861 ret = ops->disable(rdev);
3862 if (ret != 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003863 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00003864 }
3865 } else {
3866 /* The intention is that in future we will
3867 * assume that full constraints are provided
3868 * so warn even if we aren't going to do
3869 * anything here.
3870 */
Joe Perches5da84fd2010-11-30 05:53:48 -08003871 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00003872 }
3873
3874unlock:
3875 mutex_unlock(&rdev->mutex);
3876 }
3877
3878 mutex_unlock(&regulator_list_mutex);
3879
3880 return 0;
3881}
3882late_initcall(regulator_init_complete);