blob: 91d79b84358b0935538424778d24838d964c0a59 [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>
Russell King778b28b2014-06-29 17:55:54 +010027#include <linux/gpio/consumer.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053028#include <linux/of.h>
Mark Brown65b19ce2012-04-15 11:16:05 +010029#include <linux/regmap.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053030#include <linux/regulator/of_regulator.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010031#include <linux/regulator/consumer.h>
32#include <linux/regulator/driver.h>
33#include <linux/regulator/machine.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040034#include <linux/module.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010035
Mark Brown02fa3ec2010-11-10 14:38:30 +000036#define CREATE_TRACE_POINTS
37#include <trace/events/regulator.h>
38
Mark Brown34abbd62010-02-12 10:18:08 +000039#include "dummy.h"
Mark Brown0cdfcc02013-09-11 13:15:40 +010040#include "internal.h"
Mark Brown34abbd62010-02-12 10:18:08 +000041
Mark Brown7d51a0d2011-06-09 16:06:37 +010042#define rdev_crit(rdev, fmt, ...) \
43 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
Joe Perches5da84fd2010-11-30 05:53:48 -080044#define rdev_err(rdev, fmt, ...) \
45 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
46#define rdev_warn(rdev, fmt, ...) \
47 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
48#define rdev_info(rdev, fmt, ...) \
49 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
50#define rdev_dbg(rdev, fmt, ...) \
51 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
52
Liam Girdwood414c70c2008-04-30 15:59:04 +010053static DEFINE_MUTEX(regulator_list_mutex);
54static LIST_HEAD(regulator_list);
55static LIST_HEAD(regulator_map_list);
Kim, Milof19b00d2013-02-18 06:50:39 +000056static LIST_HEAD(regulator_ena_gpio_list);
Charles Keepaxa06ccd92013-10-15 20:14:20 +010057static LIST_HEAD(regulator_supply_alias_list);
Mark Brown21cf8912010-12-21 23:30:07 +000058static bool has_full_constraints;
Liam Girdwood414c70c2008-04-30 15:59:04 +010059
Mark Brown1130e5b2010-12-21 23:49:31 +000060static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000061
Mark Brown8dc53902008-12-31 12:52:40 +000062/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010063 * struct regulator_map
64 *
65 * Used to provide symbolic supply names to devices.
66 */
67struct regulator_map {
68 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010069 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010070 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010071 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010072};
73
Liam Girdwood414c70c2008-04-30 15:59:04 +010074/*
Kim, Milof19b00d2013-02-18 06:50:39 +000075 * struct regulator_enable_gpio
76 *
77 * Management for shared enable GPIO pin
78 */
79struct regulator_enable_gpio {
80 struct list_head list;
Russell King778b28b2014-06-29 17:55:54 +010081 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +000082 u32 enable_count; /* a number of enabled shared GPIO */
83 u32 request_count; /* a number of requested shared GPIO */
84 unsigned int ena_gpio_invert:1;
85};
86
Charles Keepaxa06ccd92013-10-15 20:14:20 +010087/*
88 * struct regulator_supply_alias
89 *
90 * Used to map lookups for a supply onto an alternative device.
91 */
92struct regulator_supply_alias {
93 struct list_head list;
94 struct device *src_dev;
95 const char *src_supply;
96 struct device *alias_dev;
97 const char *alias_supply;
98};
99
Liam Girdwood414c70c2008-04-30 15:59:04 +0100100static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +0100101static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100102static int _regulator_get_voltage(struct regulator_dev *rdev);
103static int _regulator_get_current_limit(struct regulator_dev *rdev);
104static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
Heiko Stübner71795692014-08-28 12:36:04 -0700105static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100106 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +0000107static int _regulator_do_set_voltage(struct regulator_dev *rdev,
108 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +0100109static struct regulator *create_regulator(struct regulator_dev *rdev,
110 struct device *dev,
111 const char *supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100112
Mark Brown1083c392009-10-22 16:31:32 +0100113static const char *rdev_get_name(struct regulator_dev *rdev)
114{
115 if (rdev->constraints && rdev->constraints->name)
116 return rdev->constraints->name;
117 else if (rdev->desc->name)
118 return rdev->desc->name;
119 else
120 return "";
121}
122
Mark Brown87b28412013-11-27 16:13:10 +0000123static bool have_full_constraints(void)
124{
Mark Brown75bc9642013-11-27 16:22:53 +0000125 return has_full_constraints || of_have_populated_dt();
Mark Brown87b28412013-11-27 16:13:10 +0000126}
127
Rajendra Nayak69511a42011-11-18 16:47:20 +0530128/**
129 * of_get_regulator - get a regulator device node based on supply name
130 * @dev: Device pointer for the consumer (of regulator) device
131 * @supply: regulator supply name
132 *
133 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100134 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530135 * returns NULL.
136 */
137static struct device_node *of_get_regulator(struct device *dev, const char *supply)
138{
139 struct device_node *regnode = NULL;
140 char prop_name[32]; /* 32 is max size of property name */
141
142 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
143
144 snprintf(prop_name, 32, "%s-supply", supply);
145 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
146
147 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530148 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530149 prop_name, dev->of_node->full_name);
150 return NULL;
151 }
152 return regnode;
153}
154
Mark Brown6492bc12012-04-19 13:19:07 +0100155static int _regulator_can_change_status(struct regulator_dev *rdev)
156{
157 if (!rdev->constraints)
158 return 0;
159
160 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
161 return 1;
162 else
163 return 0;
164}
165
Liam Girdwood414c70c2008-04-30 15:59:04 +0100166/* Platform voltage constraint check */
167static int regulator_check_voltage(struct regulator_dev *rdev,
168 int *min_uV, int *max_uV)
169{
170 BUG_ON(*min_uV > *max_uV);
171
172 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800173 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100174 return -ENODEV;
175 }
176 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800177 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100178 return -EPERM;
179 }
180
181 if (*max_uV > rdev->constraints->max_uV)
182 *max_uV = rdev->constraints->max_uV;
183 if (*min_uV < rdev->constraints->min_uV)
184 *min_uV = rdev->constraints->min_uV;
185
Mark Brown89f425e2011-07-12 11:20:37 +0900186 if (*min_uV > *max_uV) {
187 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100188 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100189 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900190 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100191
192 return 0;
193}
194
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100195/* Make sure we select a voltage that suits the needs of all
196 * regulator consumers
197 */
198static int regulator_check_consumers(struct regulator_dev *rdev,
199 int *min_uV, int *max_uV)
200{
201 struct regulator *regulator;
202
203 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700204 /*
205 * Assume consumers that didn't say anything are OK
206 * with anything in the constraint range.
207 */
208 if (!regulator->min_uV && !regulator->max_uV)
209 continue;
210
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100211 if (*max_uV > regulator->max_uV)
212 *max_uV = regulator->max_uV;
213 if (*min_uV < regulator->min_uV)
214 *min_uV = regulator->min_uV;
215 }
216
Mark Browndd8004a2012-11-28 17:09:27 +0000217 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800218 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
219 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100220 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000221 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100222
223 return 0;
224}
225
Liam Girdwood414c70c2008-04-30 15:59:04 +0100226/* current constraint check */
227static int regulator_check_current_limit(struct regulator_dev *rdev,
228 int *min_uA, int *max_uA)
229{
230 BUG_ON(*min_uA > *max_uA);
231
232 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800233 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100234 return -ENODEV;
235 }
236 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800237 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100238 return -EPERM;
239 }
240
241 if (*max_uA > rdev->constraints->max_uA)
242 *max_uA = rdev->constraints->max_uA;
243 if (*min_uA < rdev->constraints->min_uA)
244 *min_uA = rdev->constraints->min_uA;
245
Mark Brown89f425e2011-07-12 11:20:37 +0900246 if (*min_uA > *max_uA) {
247 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100248 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100249 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900250 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100251
252 return 0;
253}
254
255/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900256static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100257{
Mark Brown2c608232011-03-30 06:29:12 +0900258 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800259 case REGULATOR_MODE_FAST:
260 case REGULATOR_MODE_NORMAL:
261 case REGULATOR_MODE_IDLE:
262 case REGULATOR_MODE_STANDBY:
263 break;
264 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900265 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800266 return -EINVAL;
267 }
268
Liam Girdwood414c70c2008-04-30 15:59:04 +0100269 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800270 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100271 return -ENODEV;
272 }
273 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800274 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100275 return -EPERM;
276 }
Mark Brown2c608232011-03-30 06:29:12 +0900277
278 /* The modes are bitmasks, the most power hungry modes having
279 * the lowest values. If the requested mode isn't supported
280 * try higher modes. */
281 while (*mode) {
282 if (rdev->constraints->valid_modes_mask & *mode)
283 return 0;
284 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100285 }
Mark Brown2c608232011-03-30 06:29:12 +0900286
287 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100288}
289
290/* dynamic regulator mode switching constraint check */
291static int regulator_check_drms(struct regulator_dev *rdev)
292{
293 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800294 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100295 return -ENODEV;
296 }
297 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800298 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100299 return -EPERM;
300 }
301 return 0;
302}
303
Liam Girdwood414c70c2008-04-30 15:59:04 +0100304static ssize_t regulator_uV_show(struct device *dev,
305 struct device_attribute *attr, char *buf)
306{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100307 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100308 ssize_t ret;
309
310 mutex_lock(&rdev->mutex);
311 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
312 mutex_unlock(&rdev->mutex);
313
314 return ret;
315}
David Brownell7ad68e22008-11-11 17:39:02 -0800316static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100317
318static ssize_t regulator_uA_show(struct device *dev,
319 struct device_attribute *attr, char *buf)
320{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100321 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100322
323 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
324}
David Brownell7ad68e22008-11-11 17:39:02 -0800325static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100326
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700327static ssize_t name_show(struct device *dev, struct device_attribute *attr,
328 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100329{
330 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100331
Mark Brown1083c392009-10-22 16:31:32 +0100332 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100333}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700334static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100335
David Brownell4fca9542008-11-11 17:38:53 -0800336static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100337{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100338 switch (mode) {
339 case REGULATOR_MODE_FAST:
340 return sprintf(buf, "fast\n");
341 case REGULATOR_MODE_NORMAL:
342 return sprintf(buf, "normal\n");
343 case REGULATOR_MODE_IDLE:
344 return sprintf(buf, "idle\n");
345 case REGULATOR_MODE_STANDBY:
346 return sprintf(buf, "standby\n");
347 }
348 return sprintf(buf, "unknown\n");
349}
350
David Brownell4fca9542008-11-11 17:38:53 -0800351static ssize_t regulator_opmode_show(struct device *dev,
352 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100353{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100354 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100355
David Brownell4fca9542008-11-11 17:38:53 -0800356 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
357}
David Brownell7ad68e22008-11-11 17:39:02 -0800358static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800359
360static ssize_t regulator_print_state(char *buf, int state)
361{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100362 if (state > 0)
363 return sprintf(buf, "enabled\n");
364 else if (state == 0)
365 return sprintf(buf, "disabled\n");
366 else
367 return sprintf(buf, "unknown\n");
368}
369
David Brownell4fca9542008-11-11 17:38:53 -0800370static ssize_t regulator_state_show(struct device *dev,
371 struct device_attribute *attr, char *buf)
372{
373 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100374 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800375
Mark Brown93325462009-08-03 18:49:56 +0100376 mutex_lock(&rdev->mutex);
377 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
378 mutex_unlock(&rdev->mutex);
379
380 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800381}
David Brownell7ad68e22008-11-11 17:39:02 -0800382static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800383
David Brownell853116a2009-01-14 23:03:17 -0800384static ssize_t regulator_status_show(struct device *dev,
385 struct device_attribute *attr, char *buf)
386{
387 struct regulator_dev *rdev = dev_get_drvdata(dev);
388 int status;
389 char *label;
390
391 status = rdev->desc->ops->get_status(rdev);
392 if (status < 0)
393 return status;
394
395 switch (status) {
396 case REGULATOR_STATUS_OFF:
397 label = "off";
398 break;
399 case REGULATOR_STATUS_ON:
400 label = "on";
401 break;
402 case REGULATOR_STATUS_ERROR:
403 label = "error";
404 break;
405 case REGULATOR_STATUS_FAST:
406 label = "fast";
407 break;
408 case REGULATOR_STATUS_NORMAL:
409 label = "normal";
410 break;
411 case REGULATOR_STATUS_IDLE:
412 label = "idle";
413 break;
414 case REGULATOR_STATUS_STANDBY:
415 label = "standby";
416 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700417 case REGULATOR_STATUS_BYPASS:
418 label = "bypass";
419 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100420 case REGULATOR_STATUS_UNDEFINED:
421 label = "undefined";
422 break;
David Brownell853116a2009-01-14 23:03:17 -0800423 default:
424 return -ERANGE;
425 }
426
427 return sprintf(buf, "%s\n", label);
428}
429static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
430
Liam Girdwood414c70c2008-04-30 15:59:04 +0100431static ssize_t regulator_min_uA_show(struct device *dev,
432 struct device_attribute *attr, char *buf)
433{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100434 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100435
436 if (!rdev->constraints)
437 return sprintf(buf, "constraint not defined\n");
438
439 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
440}
David Brownell7ad68e22008-11-11 17:39:02 -0800441static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100442
443static ssize_t regulator_max_uA_show(struct device *dev,
444 struct device_attribute *attr, char *buf)
445{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100446 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100447
448 if (!rdev->constraints)
449 return sprintf(buf, "constraint not defined\n");
450
451 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
452}
David Brownell7ad68e22008-11-11 17:39:02 -0800453static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100454
455static ssize_t regulator_min_uV_show(struct device *dev,
456 struct device_attribute *attr, char *buf)
457{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100458 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100459
460 if (!rdev->constraints)
461 return sprintf(buf, "constraint not defined\n");
462
463 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
464}
David Brownell7ad68e22008-11-11 17:39:02 -0800465static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100466
467static ssize_t regulator_max_uV_show(struct device *dev,
468 struct device_attribute *attr, char *buf)
469{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100470 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100471
472 if (!rdev->constraints)
473 return sprintf(buf, "constraint not defined\n");
474
475 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
476}
David Brownell7ad68e22008-11-11 17:39:02 -0800477static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100478
479static ssize_t regulator_total_uA_show(struct device *dev,
480 struct device_attribute *attr, char *buf)
481{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100482 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100483 struct regulator *regulator;
484 int uA = 0;
485
486 mutex_lock(&rdev->mutex);
487 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100488 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100489 mutex_unlock(&rdev->mutex);
490 return sprintf(buf, "%d\n", uA);
491}
David Brownell7ad68e22008-11-11 17:39:02 -0800492static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100493
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700494static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
495 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100496{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100497 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100498 return sprintf(buf, "%d\n", rdev->use_count);
499}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700500static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100501
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700502static ssize_t type_show(struct device *dev, struct device_attribute *attr,
503 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100504{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100505 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100506
507 switch (rdev->desc->type) {
508 case REGULATOR_VOLTAGE:
509 return sprintf(buf, "voltage\n");
510 case REGULATOR_CURRENT:
511 return sprintf(buf, "current\n");
512 }
513 return sprintf(buf, "unknown\n");
514}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700515static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100516
517static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
518 struct device_attribute *attr, char *buf)
519{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100520 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100521
Liam Girdwood414c70c2008-04-30 15:59:04 +0100522 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
523}
David Brownell7ad68e22008-11-11 17:39:02 -0800524static DEVICE_ATTR(suspend_mem_microvolts, 0444,
525 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100526
527static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
528 struct device_attribute *attr, char *buf)
529{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100530 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100531
Liam Girdwood414c70c2008-04-30 15:59:04 +0100532 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
533}
David Brownell7ad68e22008-11-11 17:39:02 -0800534static DEVICE_ATTR(suspend_disk_microvolts, 0444,
535 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100536
537static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
538 struct device_attribute *attr, char *buf)
539{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100540 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100541
Liam Girdwood414c70c2008-04-30 15:59:04 +0100542 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
543}
David Brownell7ad68e22008-11-11 17:39:02 -0800544static DEVICE_ATTR(suspend_standby_microvolts, 0444,
545 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100546
Liam Girdwood414c70c2008-04-30 15:59:04 +0100547static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
548 struct device_attribute *attr, char *buf)
549{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100550 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100551
David Brownell4fca9542008-11-11 17:38:53 -0800552 return regulator_print_opmode(buf,
553 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100554}
David Brownell7ad68e22008-11-11 17:39:02 -0800555static DEVICE_ATTR(suspend_mem_mode, 0444,
556 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100557
558static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
559 struct device_attribute *attr, char *buf)
560{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100561 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100562
David Brownell4fca9542008-11-11 17:38:53 -0800563 return regulator_print_opmode(buf,
564 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100565}
David Brownell7ad68e22008-11-11 17:39:02 -0800566static DEVICE_ATTR(suspend_disk_mode, 0444,
567 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100568
569static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
570 struct device_attribute *attr, char *buf)
571{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100572 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100573
David Brownell4fca9542008-11-11 17:38:53 -0800574 return regulator_print_opmode(buf,
575 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100576}
David Brownell7ad68e22008-11-11 17:39:02 -0800577static DEVICE_ATTR(suspend_standby_mode, 0444,
578 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100579
580static ssize_t regulator_suspend_mem_state_show(struct device *dev,
581 struct device_attribute *attr, char *buf)
582{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100583 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100584
David Brownell4fca9542008-11-11 17:38:53 -0800585 return regulator_print_state(buf,
586 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100587}
David Brownell7ad68e22008-11-11 17:39:02 -0800588static DEVICE_ATTR(suspend_mem_state, 0444,
589 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100590
591static ssize_t regulator_suspend_disk_state_show(struct device *dev,
592 struct device_attribute *attr, char *buf)
593{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100594 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100595
David Brownell4fca9542008-11-11 17:38:53 -0800596 return regulator_print_state(buf,
597 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100598}
David Brownell7ad68e22008-11-11 17:39:02 -0800599static DEVICE_ATTR(suspend_disk_state, 0444,
600 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100601
602static ssize_t regulator_suspend_standby_state_show(struct device *dev,
603 struct device_attribute *attr, char *buf)
604{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100605 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100606
David Brownell4fca9542008-11-11 17:38:53 -0800607 return regulator_print_state(buf,
608 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100609}
David Brownell7ad68e22008-11-11 17:39:02 -0800610static DEVICE_ATTR(suspend_standby_state, 0444,
611 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100612
Mark Brownf59c8f92012-08-31 10:36:37 -0700613static ssize_t regulator_bypass_show(struct device *dev,
614 struct device_attribute *attr, char *buf)
615{
616 struct regulator_dev *rdev = dev_get_drvdata(dev);
617 const char *report;
618 bool bypass;
619 int ret;
620
621 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
622
623 if (ret != 0)
624 report = "unknown";
625 else if (bypass)
626 report = "enabled";
627 else
628 report = "disabled";
629
630 return sprintf(buf, "%s\n", report);
631}
632static DEVICE_ATTR(bypass, 0444,
633 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800634
Liam Girdwood414c70c2008-04-30 15:59:04 +0100635/* Calculate the new optimum regulator operating mode based on the new total
636 * consumer load. All locks held by caller */
637static void drms_uA_update(struct regulator_dev *rdev)
638{
639 struct regulator *sibling;
640 int current_uA = 0, output_uV, input_uV, err;
641 unsigned int mode;
642
643 err = regulator_check_drms(rdev);
644 if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
Mark Brown476c2d82010-12-10 17:28:07 +0000645 (!rdev->desc->ops->get_voltage &&
646 !rdev->desc->ops->get_voltage_sel) ||
647 !rdev->desc->ops->set_mode)
Dan Carpenter036de8e2009-04-08 13:52:39 +0300648 return;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100649
650 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000651 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100652 if (output_uV <= 0)
653 return;
654
655 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000656 input_uV = 0;
657 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800658 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000659 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100660 input_uV = rdev->constraints->input_uV;
661 if (input_uV <= 0)
662 return;
663
664 /* calc total requested load */
665 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100666 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100667
668 /* now get the optimum mode for our new total regulator load */
669 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
670 output_uV, current_uA);
671
672 /* check the new mode is allowed */
Mark Brown2c608232011-03-30 06:29:12 +0900673 err = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100674 if (err == 0)
675 rdev->desc->ops->set_mode(rdev, mode);
676}
677
678static int suspend_set_state(struct regulator_dev *rdev,
679 struct regulator_state *rstate)
680{
681 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100682
683 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800684 * only warn if the driver implements set_suspend_voltage or
685 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100686 */
687 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800688 if (rdev->desc->ops->set_suspend_voltage ||
689 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800690 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100691 return 0;
692 }
693
694 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800695 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100696 return -EINVAL;
697 }
698
Axel Lin8ac0e952012-04-14 09:14:34 +0800699 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100700 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800701 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100702 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800703 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
704 ret = 0;
705
Liam Girdwood414c70c2008-04-30 15:59:04 +0100706 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800707 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100708 return ret;
709 }
710
711 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
712 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
713 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800714 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100715 return ret;
716 }
717 }
718
719 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
720 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
721 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800722 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100723 return ret;
724 }
725 }
726 return ret;
727}
728
729/* locks held by caller */
730static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
731{
732 if (!rdev->constraints)
733 return -EINVAL;
734
735 switch (state) {
736 case PM_SUSPEND_STANDBY:
737 return suspend_set_state(rdev,
738 &rdev->constraints->state_standby);
739 case PM_SUSPEND_MEM:
740 return suspend_set_state(rdev,
741 &rdev->constraints->state_mem);
742 case PM_SUSPEND_MAX:
743 return suspend_set_state(rdev,
744 &rdev->constraints->state_disk);
745 default:
746 return -EINVAL;
747 }
748}
749
750static void print_constraints(struct regulator_dev *rdev)
751{
752 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000753 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100754 int count = 0;
755 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100756
Mark Brown8f031b42009-10-22 16:31:31 +0100757 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100758 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100759 count += sprintf(buf + count, "%d mV ",
760 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100761 else
Mark Brown8f031b42009-10-22 16:31:31 +0100762 count += sprintf(buf + count, "%d <--> %d mV ",
763 constraints->min_uV / 1000,
764 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100765 }
Mark Brown8f031b42009-10-22 16:31:31 +0100766
767 if (!constraints->min_uV ||
768 constraints->min_uV != constraints->max_uV) {
769 ret = _regulator_get_voltage(rdev);
770 if (ret > 0)
771 count += sprintf(buf + count, "at %d mV ", ret / 1000);
772 }
773
Mark Brownbf5892a2011-05-08 22:13:37 +0100774 if (constraints->uV_offset)
775 count += sprintf(buf, "%dmV offset ",
776 constraints->uV_offset / 1000);
777
Mark Brown8f031b42009-10-22 16:31:31 +0100778 if (constraints->min_uA && constraints->max_uA) {
779 if (constraints->min_uA == constraints->max_uA)
780 count += sprintf(buf + count, "%d mA ",
781 constraints->min_uA / 1000);
782 else
783 count += sprintf(buf + count, "%d <--> %d mA ",
784 constraints->min_uA / 1000,
785 constraints->max_uA / 1000);
786 }
787
788 if (!constraints->min_uA ||
789 constraints->min_uA != constraints->max_uA) {
790 ret = _regulator_get_current_limit(rdev);
791 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400792 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100793 }
794
Liam Girdwood414c70c2008-04-30 15:59:04 +0100795 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
796 count += sprintf(buf + count, "fast ");
797 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
798 count += sprintf(buf + count, "normal ");
799 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
800 count += sprintf(buf + count, "idle ");
801 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
802 count += sprintf(buf + count, "standby");
803
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200804 if (!count)
805 sprintf(buf, "no parameters");
806
Mark Brown194dbae2014-10-31 19:11:59 +0000807 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000808
809 if ((constraints->min_uV != constraints->max_uV) &&
810 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
811 rdev_warn(rdev,
812 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100813}
814
Mark Browne79055d2009-10-19 15:53:50 +0100815static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100816 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100817{
Guodong Xu272e2312014-08-13 19:33:38 +0800818 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100819 int ret;
820
821 /* do we need to apply the constraint voltage */
822 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000823 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200824 int current_uV = _regulator_get_voltage(rdev);
825 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500826 rdev_err(rdev,
827 "failed to get the current voltage(%d)\n",
828 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200829 return current_uV;
830 }
831 if (current_uV < rdev->constraints->min_uV ||
832 current_uV > rdev->constraints->max_uV) {
833 ret = _regulator_do_set_voltage(
834 rdev, rdev->constraints->min_uV,
835 rdev->constraints->max_uV);
836 if (ret < 0) {
837 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500838 "failed to apply %duV constraint(%d)\n",
839 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200840 return ret;
841 }
Mark Brown75790252010-12-12 14:25:50 +0000842 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100843 }
Mark Browne79055d2009-10-19 15:53:50 +0100844
845 /* constrain machine-level voltage specs to fit
846 * the actual range supported by this regulator.
847 */
848 if (ops->list_voltage && rdev->desc->n_voltages) {
849 int count = rdev->desc->n_voltages;
850 int i;
851 int min_uV = INT_MAX;
852 int max_uV = INT_MIN;
853 int cmin = constraints->min_uV;
854 int cmax = constraints->max_uV;
855
856 /* it's safe to autoconfigure fixed-voltage supplies
857 and the constraints are used by list_voltage. */
858 if (count == 1 && !cmin) {
859 cmin = 1;
860 cmax = INT_MAX;
861 constraints->min_uV = cmin;
862 constraints->max_uV = cmax;
863 }
864
865 /* voltage constraints are optional */
866 if ((cmin == 0) && (cmax == 0))
867 return 0;
868
869 /* else require explicit machine-level constraints */
870 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800871 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100872 return -EINVAL;
873 }
874
875 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
876 for (i = 0; i < count; i++) {
877 int value;
878
879 value = ops->list_voltage(rdev, i);
880 if (value <= 0)
881 continue;
882
883 /* maybe adjust [min_uV..max_uV] */
884 if (value >= cmin && value < min_uV)
885 min_uV = value;
886 if (value <= cmax && value > max_uV)
887 max_uV = value;
888 }
889
890 /* final: [min_uV..max_uV] valid iff constraints valid */
891 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000892 rdev_err(rdev,
893 "unsupportable voltage constraints %u-%uuV\n",
894 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100895 return -EINVAL;
896 }
897
898 /* use regulator's subset of machine constraints */
899 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800900 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
901 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100902 constraints->min_uV = min_uV;
903 }
904 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800905 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
906 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100907 constraints->max_uV = max_uV;
908 }
909 }
910
911 return 0;
912}
913
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530914static int machine_constraints_current(struct regulator_dev *rdev,
915 struct regulation_constraints *constraints)
916{
Guodong Xu272e2312014-08-13 19:33:38 +0800917 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530918 int ret;
919
920 if (!constraints->min_uA && !constraints->max_uA)
921 return 0;
922
923 if (constraints->min_uA > constraints->max_uA) {
924 rdev_err(rdev, "Invalid current constraints\n");
925 return -EINVAL;
926 }
927
928 if (!ops->set_current_limit || !ops->get_current_limit) {
929 rdev_warn(rdev, "Operation of current configuration missing\n");
930 return 0;
931 }
932
933 /* Set regulator current in constraints range */
934 ret = ops->set_current_limit(rdev, constraints->min_uA,
935 constraints->max_uA);
936 if (ret < 0) {
937 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
938 return ret;
939 }
940
941 return 0;
942}
943
Markus Pargmann30c21972014-02-20 17:36:03 +0100944static int _regulator_do_enable(struct regulator_dev *rdev);
945
Liam Girdwooda5766f12008-10-10 13:22:20 +0100946/**
947 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000948 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000949 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100950 *
951 * Allows platform initialisation code to define and constrain
952 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
953 * Constraints *must* be set by platform code in order for some
954 * regulator operations to proceed i.e. set_voltage, set_current_limit,
955 * set_mode.
956 */
957static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000958 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100959{
960 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +0800961 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100962
Mark Brown9a8f5e02011-11-29 18:11:19 +0000963 if (constraints)
964 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
965 GFP_KERNEL);
966 else
967 rdev->constraints = kzalloc(sizeof(*constraints),
968 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +0000969 if (!rdev->constraints)
970 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100971
Mark Brownf8c12fe2010-11-29 15:55:17 +0000972 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100973 if (ret != 0)
974 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800975
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530976 ret = machine_constraints_current(rdev, rdev->constraints);
977 if (ret != 0)
978 goto out;
979
Liam Girdwooda5766f12008-10-10 13:22:20 +0100980 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +0000981 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +0000982 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +0100983 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800984 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +0100985 goto out;
986 }
987 }
Liam Girdwooda5766f12008-10-10 13:22:20 +0100988
Mark Brown9a8f5e02011-11-29 18:11:19 +0000989 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +0000990 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800991 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +0000992 ret = -EINVAL;
993 goto out;
994 }
995
Mark Brownf8c12fe2010-11-29 15:55:17 +0000996 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +0000997 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800998 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +0000999 goto out;
1000 }
1001 }
1002
Mark Browncacf90f2009-03-02 16:32:46 +00001003 /* If the constraints say the regulator should be on at this point
1004 * and we have control then make sure it is enabled.
1005 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001006 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1007 ret = _regulator_do_enable(rdev);
1008 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001009 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001010 goto out;
1011 }
1012 }
1013
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301014 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1015 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301016 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1017 if (ret < 0) {
1018 rdev_err(rdev, "failed to set ramp_delay\n");
1019 goto out;
1020 }
1021 }
1022
Liam Girdwooda5766f12008-10-10 13:22:20 +01001023 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001024 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001025out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001026 kfree(rdev->constraints);
1027 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001028 return ret;
1029}
1030
1031/**
1032 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001033 * @rdev: regulator name
1034 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001035 *
1036 * Called by platform initialisation code to set the supply regulator for this
1037 * regulator. This ensures that a regulators supply will also be enabled by the
1038 * core if it's child is enabled.
1039 */
1040static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001041 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001042{
1043 int err;
1044
Mark Brown3801b862011-06-09 16:22:22 +01001045 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1046
1047 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001048 if (rdev->supply == NULL) {
1049 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001050 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001051 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301052 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001053
1054 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001055}
1056
1057/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001058 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001059 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001060 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001061 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001062 *
1063 * Allows platform initialisation code to map physical regulator
1064 * sources to symbolic names for supplies for use by devices. Devices
1065 * should use these symbolic names to request regulators, avoiding the
1066 * need to provide board-specific regulator names as platform data.
1067 */
1068static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001069 const char *consumer_dev_name,
1070 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001071{
1072 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001073 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001074
1075 if (supply == NULL)
1076 return -EINVAL;
1077
Mark Brown9ed20992009-07-21 16:00:26 +01001078 if (consumer_dev_name != NULL)
1079 has_dev = 1;
1080 else
1081 has_dev = 0;
1082
David Brownell6001e132008-12-31 12:54:19 +00001083 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001084 if (node->dev_name && consumer_dev_name) {
1085 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1086 continue;
1087 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001088 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001089 }
1090
David Brownell6001e132008-12-31 12:54:19 +00001091 if (strcmp(node->supply, supply) != 0)
1092 continue;
1093
Mark Brown737f3602012-02-02 00:10:51 +00001094 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1095 consumer_dev_name,
1096 dev_name(&node->regulator->dev),
1097 node->regulator->desc->name,
1098 supply,
1099 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001100 return -EBUSY;
1101 }
1102
Mark Brown9ed20992009-07-21 16:00:26 +01001103 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001104 if (node == NULL)
1105 return -ENOMEM;
1106
1107 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001108 node->supply = supply;
1109
Mark Brown9ed20992009-07-21 16:00:26 +01001110 if (has_dev) {
1111 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1112 if (node->dev_name == NULL) {
1113 kfree(node);
1114 return -ENOMEM;
1115 }
Mark Brown40f92442009-06-17 17:56:39 +01001116 }
1117
Liam Girdwooda5766f12008-10-10 13:22:20 +01001118 list_add(&node->list, &regulator_map_list);
1119 return 0;
1120}
1121
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001122static void unset_regulator_supplies(struct regulator_dev *rdev)
1123{
1124 struct regulator_map *node, *n;
1125
1126 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1127 if (rdev == node->regulator) {
1128 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001129 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001130 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001131 }
1132 }
1133}
1134
Mark Brownf5726ae2011-06-09 16:22:20 +01001135#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001136
1137static struct regulator *create_regulator(struct regulator_dev *rdev,
1138 struct device *dev,
1139 const char *supply_name)
1140{
1141 struct regulator *regulator;
1142 char buf[REG_STR_SIZE];
1143 int err, size;
1144
1145 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1146 if (regulator == NULL)
1147 return NULL;
1148
1149 mutex_lock(&rdev->mutex);
1150 regulator->rdev = rdev;
1151 list_add(&regulator->list, &rdev->consumer_list);
1152
1153 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001154 regulator->dev = dev;
1155
Mark Brown222cc7b2012-06-22 11:39:16 +01001156 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001157 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1158 dev->kobj.name, supply_name);
1159 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001160 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001161
1162 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1163 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001164 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001165
1166 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1167 buf);
1168 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001169 rdev_warn(rdev, "could not add device link %s err %d\n",
1170 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001171 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001172 }
Mark Brown5de70512011-06-19 13:33:16 +01001173 } else {
1174 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1175 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001176 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001177 }
Mark Brown5de70512011-06-19 13:33:16 +01001178
Mark Brown5de70512011-06-19 13:33:16 +01001179 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1180 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001181 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001182 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001183 } else {
1184 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1185 &regulator->uA_load);
1186 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1187 &regulator->min_uV);
1188 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1189 &regulator->max_uV);
1190 }
Mark Brown5de70512011-06-19 13:33:16 +01001191
Mark Brown6492bc12012-04-19 13:19:07 +01001192 /*
1193 * Check now if the regulator is an always on regulator - if
1194 * it is then we don't need to do nearly so much work for
1195 * enable/disable calls.
1196 */
1197 if (!_regulator_can_change_status(rdev) &&
1198 _regulator_is_enabled(rdev))
1199 regulator->always_on = true;
1200
Liam Girdwood414c70c2008-04-30 15:59:04 +01001201 mutex_unlock(&rdev->mutex);
1202 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001203overflow_err:
1204 list_del(&regulator->list);
1205 kfree(regulator);
1206 mutex_unlock(&rdev->mutex);
1207 return NULL;
1208}
1209
Mark Brown31aae2b2009-12-21 12:21:52 +00001210static int _regulator_get_enable_time(struct regulator_dev *rdev)
1211{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301212 if (rdev->constraints && rdev->constraints->enable_time)
1213 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001214 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001215 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001216 return rdev->desc->ops->enable_time(rdev);
1217}
1218
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001219static struct regulator_supply_alias *regulator_find_supply_alias(
1220 struct device *dev, const char *supply)
1221{
1222 struct regulator_supply_alias *map;
1223
1224 list_for_each_entry(map, &regulator_supply_alias_list, list)
1225 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1226 return map;
1227
1228 return NULL;
1229}
1230
1231static void regulator_supply_alias(struct device **dev, const char **supply)
1232{
1233 struct regulator_supply_alias *map;
1234
1235 map = regulator_find_supply_alias(*dev, *supply);
1236 if (map) {
1237 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1238 *supply, map->alias_supply,
1239 dev_name(map->alias_dev));
1240 *dev = map->alias_dev;
1241 *supply = map->alias_supply;
1242 }
1243}
1244
Rajendra Nayak69511a42011-11-18 16:47:20 +05301245static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001246 const char *supply,
1247 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301248{
1249 struct regulator_dev *r;
1250 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001251 struct regulator_map *map;
1252 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301253
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001254 regulator_supply_alias(&dev, &supply);
1255
Rajendra Nayak69511a42011-11-18 16:47:20 +05301256 /* first do a dt based lookup */
1257 if (dev && dev->of_node) {
1258 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001259 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301260 list_for_each_entry(r, &regulator_list, list)
1261 if (r->dev.parent &&
1262 node == r->dev.of_node)
1263 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001264 *ret = -EPROBE_DEFER;
1265 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001266 } else {
1267 /*
1268 * If we couldn't even get the node then it's
1269 * not just that the device didn't register
1270 * yet, there's no node and we'll never
1271 * succeed.
1272 */
1273 *ret = -ENODEV;
1274 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301275 }
1276
1277 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001278 if (dev)
1279 devname = dev_name(dev);
1280
Rajendra Nayak69511a42011-11-18 16:47:20 +05301281 list_for_each_entry(r, &regulator_list, list)
1282 if (strcmp(rdev_get_name(r), supply) == 0)
1283 return r;
1284
Mark Brown576ca4362012-03-30 12:24:37 +01001285 list_for_each_entry(map, &regulator_map_list, list) {
1286 /* If the mapping has a device set up it must match */
1287 if (map->dev_name &&
1288 (!devname || strcmp(map->dev_name, devname)))
1289 continue;
1290
1291 if (strcmp(map->supply, supply) == 0)
1292 return map->regulator;
1293 }
1294
1295
Rajendra Nayak69511a42011-11-18 16:47:20 +05301296 return NULL;
1297}
1298
Mark Brown5ffbd132009-07-21 16:00:23 +01001299/* Internal regulator request function */
1300static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001301 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001302{
1303 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001304 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001305 const char *devname = NULL;
Mark Brown317b5682014-01-27 17:34:07 +00001306 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001307
1308 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001309 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001310 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001311 }
1312
Mark Brown40f92442009-06-17 17:56:39 +01001313 if (dev)
1314 devname = dev_name(dev);
1315
Mark Brown317b5682014-01-27 17:34:07 +00001316 if (have_full_constraints())
1317 ret = -ENODEV;
1318 else
1319 ret = -EPROBE_DEFER;
1320
Liam Girdwood414c70c2008-04-30 15:59:04 +01001321 mutex_lock(&regulator_list_mutex);
1322
Mark Brown6d191a52012-03-29 14:19:02 +01001323 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301324 if (rdev)
1325 goto found;
1326
Mark Brownef60abb2013-09-23 16:12:52 +01001327 regulator = ERR_PTR(ret);
1328
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001329 /*
1330 * If we have return value from dev_lookup fail, we do not expect to
1331 * succeed, so, quit with appropriate error value
1332 */
Jingoo Han0d25d092014-01-08 10:02:16 +09001333 if (ret && ret != -ENODEV)
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001334 goto out;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001335
Mark Brown34abbd62010-02-12 10:18:08 +00001336 if (!devname)
1337 devname = "deviceless";
1338
Mark Brown4ddfebd2013-09-13 19:50:37 +01001339 /*
1340 * Assume that a regulator is physically present and enabled
1341 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001342 */
Mark Brown87b28412013-11-27 16:13:10 +00001343 if (have_full_constraints() && allow_dummy) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001344 pr_warn("%s supply %s not found, using dummy regulator\n",
1345 devname, id);
Mark Brown4ddfebd2013-09-13 19:50:37 +01001346
Mark Brown34abbd62010-02-12 10:18:08 +00001347 rdev = dummy_regulator_rdev;
1348 goto found;
Hans de Goede07817192013-12-17 16:24:57 +01001349 /* Don't log an error when called from regulator_get_optional() */
1350 } else if (!have_full_constraints() || exclusive) {
Shuah Khanacc3d5c2014-02-20 12:58:15 -07001351 dev_warn(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001352 }
Mark Brown34abbd62010-02-12 10:18:08 +00001353
Liam Girdwood414c70c2008-04-30 15:59:04 +01001354 mutex_unlock(&regulator_list_mutex);
1355 return regulator;
1356
1357found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001358 if (rdev->exclusive) {
1359 regulator = ERR_PTR(-EPERM);
1360 goto out;
1361 }
1362
1363 if (exclusive && rdev->open_count) {
1364 regulator = ERR_PTR(-EBUSY);
1365 goto out;
1366 }
1367
Liam Girdwooda5766f12008-10-10 13:22:20 +01001368 if (!try_module_get(rdev->owner))
1369 goto out;
1370
Liam Girdwood414c70c2008-04-30 15:59:04 +01001371 regulator = create_regulator(rdev, dev, id);
1372 if (regulator == NULL) {
1373 regulator = ERR_PTR(-ENOMEM);
1374 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001375 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001376 }
1377
Mark Brown5ffbd132009-07-21 16:00:23 +01001378 rdev->open_count++;
1379 if (exclusive) {
1380 rdev->exclusive = 1;
1381
1382 ret = _regulator_is_enabled(rdev);
1383 if (ret > 0)
1384 rdev->use_count = 1;
1385 else
1386 rdev->use_count = 0;
1387 }
1388
Liam Girdwooda5766f12008-10-10 13:22:20 +01001389out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001390 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001391
Liam Girdwood414c70c2008-04-30 15:59:04 +01001392 return regulator;
1393}
Mark Brown5ffbd132009-07-21 16:00:23 +01001394
1395/**
1396 * regulator_get - lookup and obtain a reference to a regulator.
1397 * @dev: device for regulator "consumer"
1398 * @id: Supply name or regulator ID.
1399 *
1400 * Returns a struct regulator corresponding to the regulator producer,
1401 * or IS_ERR() condition containing errno.
1402 *
1403 * Use of supply names configured via regulator_set_device_supply() is
1404 * strongly encouraged. It is recommended that the supply name used
1405 * should match the name used for the supply and/or the relevant
1406 * device pins in the datasheet.
1407 */
1408struct regulator *regulator_get(struct device *dev, const char *id)
1409{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001410 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001411}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001412EXPORT_SYMBOL_GPL(regulator_get);
1413
Stephen Boyd070b9072012-01-16 19:39:58 -08001414/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001415 * regulator_get_exclusive - obtain exclusive access to a regulator.
1416 * @dev: device for regulator "consumer"
1417 * @id: Supply name or regulator ID.
1418 *
1419 * Returns a struct regulator corresponding to the regulator producer,
1420 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001421 * unable to obtain this regulator while this reference is held and the
1422 * use count for the regulator will be initialised to reflect the current
1423 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001424 *
1425 * This is intended for use by consumers which cannot tolerate shared
1426 * use of the regulator such as those which need to force the
1427 * regulator off for correct operation of the hardware they are
1428 * controlling.
1429 *
1430 * Use of supply names configured via regulator_set_device_supply() is
1431 * strongly encouraged. It is recommended that the supply name used
1432 * should match the name used for the supply and/or the relevant
1433 * device pins in the datasheet.
1434 */
1435struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1436{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001437 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001438}
1439EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1440
Mark Brownde1dd9f2013-07-29 21:42:42 +01001441/**
1442 * regulator_get_optional - obtain optional access to a regulator.
1443 * @dev: device for regulator "consumer"
1444 * @id: Supply name or regulator ID.
1445 *
1446 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001447 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001448 *
1449 * This is intended for use by consumers for devices which can have
1450 * some supplies unconnected in normal use, such as some MMC devices.
1451 * It can allow the regulator core to provide stub supplies for other
1452 * supplies requested using normal regulator_get() calls without
1453 * disrupting the operation of drivers that can handle absent
1454 * supplies.
1455 *
1456 * Use of supply names configured via regulator_set_device_supply() is
1457 * strongly encouraged. It is recommended that the supply name used
1458 * should match the name used for the supply and/or the relevant
1459 * device pins in the datasheet.
1460 */
1461struct regulator *regulator_get_optional(struct device *dev, const char *id)
1462{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001463 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001464}
1465EXPORT_SYMBOL_GPL(regulator_get_optional);
1466
Charles Keepax23ff2f02012-11-14 09:39:31 +00001467/* Locks held by regulator_put() */
1468static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001469{
1470 struct regulator_dev *rdev;
1471
1472 if (regulator == NULL || IS_ERR(regulator))
1473 return;
1474
Liam Girdwood414c70c2008-04-30 15:59:04 +01001475 rdev = regulator->rdev;
1476
Mark Brown5de70512011-06-19 13:33:16 +01001477 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001478
Liam Girdwood414c70c2008-04-30 15:59:04 +01001479 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001480 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001481 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Mark Brown5de70512011-06-19 13:33:16 +01001482 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001483 list_del(&regulator->list);
1484 kfree(regulator);
1485
Mark Brown5ffbd132009-07-21 16:00:23 +01001486 rdev->open_count--;
1487 rdev->exclusive = 0;
1488
Liam Girdwood414c70c2008-04-30 15:59:04 +01001489 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001490}
1491
1492/**
1493 * regulator_put - "free" the regulator source
1494 * @regulator: regulator source
1495 *
1496 * Note: drivers must ensure that all regulator_enable calls made on this
1497 * regulator source are balanced by regulator_disable calls prior to calling
1498 * this function.
1499 */
1500void regulator_put(struct regulator *regulator)
1501{
1502 mutex_lock(&regulator_list_mutex);
1503 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001504 mutex_unlock(&regulator_list_mutex);
1505}
1506EXPORT_SYMBOL_GPL(regulator_put);
1507
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001508/**
1509 * regulator_register_supply_alias - Provide device alias for supply lookup
1510 *
1511 * @dev: device that will be given as the regulator "consumer"
1512 * @id: Supply name or regulator ID
1513 * @alias_dev: device that should be used to lookup the supply
1514 * @alias_id: Supply name or regulator ID that should be used to lookup the
1515 * supply
1516 *
1517 * All lookups for id on dev will instead be conducted for alias_id on
1518 * alias_dev.
1519 */
1520int regulator_register_supply_alias(struct device *dev, const char *id,
1521 struct device *alias_dev,
1522 const char *alias_id)
1523{
1524 struct regulator_supply_alias *map;
1525
1526 map = regulator_find_supply_alias(dev, id);
1527 if (map)
1528 return -EEXIST;
1529
1530 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1531 if (!map)
1532 return -ENOMEM;
1533
1534 map->src_dev = dev;
1535 map->src_supply = id;
1536 map->alias_dev = alias_dev;
1537 map->alias_supply = alias_id;
1538
1539 list_add(&map->list, &regulator_supply_alias_list);
1540
1541 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1542 id, dev_name(dev), alias_id, dev_name(alias_dev));
1543
1544 return 0;
1545}
1546EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1547
1548/**
1549 * regulator_unregister_supply_alias - Remove device alias
1550 *
1551 * @dev: device that will be given as the regulator "consumer"
1552 * @id: Supply name or regulator ID
1553 *
1554 * Remove a lookup alias if one exists for id on dev.
1555 */
1556void regulator_unregister_supply_alias(struct device *dev, const char *id)
1557{
1558 struct regulator_supply_alias *map;
1559
1560 map = regulator_find_supply_alias(dev, id);
1561 if (map) {
1562 list_del(&map->list);
1563 kfree(map);
1564 }
1565}
1566EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1567
1568/**
1569 * regulator_bulk_register_supply_alias - register multiple aliases
1570 *
1571 * @dev: device that will be given as the regulator "consumer"
1572 * @id: List of supply names or regulator IDs
1573 * @alias_dev: device that should be used to lookup the supply
1574 * @alias_id: List of supply names or regulator IDs that should be used to
1575 * lookup the supply
1576 * @num_id: Number of aliases to register
1577 *
1578 * @return 0 on success, an errno on failure.
1579 *
1580 * This helper function allows drivers to register several supply
1581 * aliases in one operation. If any of the aliases cannot be
1582 * registered any aliases that were registered will be removed
1583 * before returning to the caller.
1584 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001585int regulator_bulk_register_supply_alias(struct device *dev,
1586 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001587 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001588 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001589 int num_id)
1590{
1591 int i;
1592 int ret;
1593
1594 for (i = 0; i < num_id; ++i) {
1595 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1596 alias_id[i]);
1597 if (ret < 0)
1598 goto err;
1599 }
1600
1601 return 0;
1602
1603err:
1604 dev_err(dev,
1605 "Failed to create supply alias %s,%s -> %s,%s\n",
1606 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1607
1608 while (--i >= 0)
1609 regulator_unregister_supply_alias(dev, id[i]);
1610
1611 return ret;
1612}
1613EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1614
1615/**
1616 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1617 *
1618 * @dev: device that will be given as the regulator "consumer"
1619 * @id: List of supply names or regulator IDs
1620 * @num_id: Number of aliases to unregister
1621 *
1622 * This helper function allows drivers to unregister several supply
1623 * aliases in one operation.
1624 */
1625void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001626 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001627 int num_id)
1628{
1629 int i;
1630
1631 for (i = 0; i < num_id; ++i)
1632 regulator_unregister_supply_alias(dev, id[i]);
1633}
1634EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1635
1636
Kim, Milof19b00d2013-02-18 06:50:39 +00001637/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1638static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1639 const struct regulator_config *config)
1640{
1641 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001642 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001643 int ret;
1644
Russell King778b28b2014-06-29 17:55:54 +01001645 gpiod = gpio_to_desc(config->ena_gpio);
1646
Kim, Milof19b00d2013-02-18 06:50:39 +00001647 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001648 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001649 rdev_dbg(rdev, "GPIO %d is already used\n",
1650 config->ena_gpio);
1651 goto update_ena_gpio_to_rdev;
1652 }
1653 }
1654
1655 ret = gpio_request_one(config->ena_gpio,
1656 GPIOF_DIR_OUT | config->ena_gpio_flags,
1657 rdev_get_name(rdev));
1658 if (ret)
1659 return ret;
1660
1661 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1662 if (pin == NULL) {
1663 gpio_free(config->ena_gpio);
1664 return -ENOMEM;
1665 }
1666
Russell King778b28b2014-06-29 17:55:54 +01001667 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001668 pin->ena_gpio_invert = config->ena_gpio_invert;
1669 list_add(&pin->list, &regulator_ena_gpio_list);
1670
1671update_ena_gpio_to_rdev:
1672 pin->request_count++;
1673 rdev->ena_pin = pin;
1674 return 0;
1675}
1676
1677static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1678{
1679 struct regulator_enable_gpio *pin, *n;
1680
1681 if (!rdev->ena_pin)
1682 return;
1683
1684 /* Free the GPIO only in case of no use */
1685 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001686 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001687 if (pin->request_count <= 1) {
1688 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001689 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001690 list_del(&pin->list);
1691 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001692 rdev->ena_pin = NULL;
1693 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001694 } else {
1695 pin->request_count--;
1696 }
1697 }
1698 }
1699}
1700
Kim, Milo967cfb12013-02-18 06:50:48 +00001701/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001702 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1703 * @rdev: regulator_dev structure
1704 * @enable: enable GPIO at initial use?
1705 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001706 * GPIO is enabled in case of initial use. (enable_count is 0)
1707 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1708 */
1709static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1710{
1711 struct regulator_enable_gpio *pin = rdev->ena_pin;
1712
1713 if (!pin)
1714 return -EINVAL;
1715
1716 if (enable) {
1717 /* Enable GPIO at initial use */
1718 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001719 gpiod_set_value_cansleep(pin->gpiod,
1720 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001721
1722 pin->enable_count++;
1723 } else {
1724 if (pin->enable_count > 1) {
1725 pin->enable_count--;
1726 return 0;
1727 }
1728
1729 /* Disable GPIO if not used */
1730 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001731 gpiod_set_value_cansleep(pin->gpiod,
1732 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001733 pin->enable_count = 0;
1734 }
1735 }
1736
1737 return 0;
1738}
1739
Guodong Xu79fd1142014-08-13 19:33:39 +08001740/**
1741 * _regulator_enable_delay - a delay helper function
1742 * @delay: time to delay in microseconds
1743 *
1744 * Delay for the requested amount of time as per the guidelines in:
1745 *
1746 * Documentation/timers/timers-howto.txt
1747 *
1748 * The assumption here is that regulators will never be enabled in
1749 * atomic context and therefore sleeping functions can be used.
1750 */
1751static void _regulator_enable_delay(unsigned int delay)
1752{
1753 unsigned int ms = delay / 1000;
1754 unsigned int us = delay % 1000;
1755
1756 if (ms > 0) {
1757 /*
1758 * For small enough values, handle super-millisecond
1759 * delays in the usleep_range() call below.
1760 */
1761 if (ms < 20)
1762 us += ms * 1000;
1763 else
1764 msleep(ms);
1765 }
1766
1767 /*
1768 * Give the scheduler some room to coalesce with any other
1769 * wakeup sources. For delays shorter than 10 us, don't even
1770 * bother setting up high-resolution timers and just busy-
1771 * loop.
1772 */
1773 if (us >= 10)
1774 usleep_range(us, us + 100);
1775 else
1776 udelay(us);
1777}
1778
Mark Brown5c5659d2012-06-27 13:21:26 +01001779static int _regulator_do_enable(struct regulator_dev *rdev)
1780{
1781 int ret, delay;
1782
1783 /* Query before enabling in case configuration dependent. */
1784 ret = _regulator_get_enable_time(rdev);
1785 if (ret >= 0) {
1786 delay = ret;
1787 } else {
1788 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1789 delay = 0;
1790 }
1791
1792 trace_regulator_enable(rdev_get_name(rdev));
1793
Guodong Xu871f5652014-08-13 19:33:40 +08001794 if (rdev->desc->off_on_delay) {
1795 /* if needed, keep a distance of off_on_delay from last time
1796 * this regulator was disabled.
1797 */
1798 unsigned long start_jiffy = jiffies;
1799 unsigned long intended, max_delay, remaining;
1800
1801 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
1802 intended = rdev->last_off_jiffy + max_delay;
1803
1804 if (time_before(start_jiffy, intended)) {
1805 /* calc remaining jiffies to deal with one-time
1806 * timer wrapping.
1807 * in case of multiple timer wrapping, either it can be
1808 * detected by out-of-range remaining, or it cannot be
1809 * detected and we gets a panelty of
1810 * _regulator_enable_delay().
1811 */
1812 remaining = intended - start_jiffy;
1813 if (remaining <= max_delay)
1814 _regulator_enable_delay(
1815 jiffies_to_usecs(remaining));
1816 }
1817 }
1818
Kim, Milo967cfb12013-02-18 06:50:48 +00001819 if (rdev->ena_pin) {
1820 ret = regulator_ena_gpio_ctrl(rdev, true);
1821 if (ret < 0)
1822 return ret;
Mark Brown65f73502012-06-27 14:14:38 +01001823 rdev->ena_gpio_state = 1;
1824 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001825 ret = rdev->desc->ops->enable(rdev);
1826 if (ret < 0)
1827 return ret;
1828 } else {
1829 return -EINVAL;
1830 }
1831
1832 /* Allow the regulator to ramp; it would be useful to extend
1833 * this for bulk operations so that the regulators can ramp
1834 * together. */
1835 trace_regulator_enable_delay(rdev_get_name(rdev));
1836
Guodong Xu79fd1142014-08-13 19:33:39 +08001837 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01001838
1839 trace_regulator_enable_complete(rdev_get_name(rdev));
1840
1841 return 0;
1842}
1843
Liam Girdwood414c70c2008-04-30 15:59:04 +01001844/* locks held by regulator_enable() */
1845static int _regulator_enable(struct regulator_dev *rdev)
1846{
Mark Brown5c5659d2012-06-27 13:21:26 +01001847 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001848
Liam Girdwood414c70c2008-04-30 15:59:04 +01001849 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001850 if (rdev->constraints &&
1851 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1852 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001853
Mark Brown9a2372f2009-08-03 18:49:57 +01001854 if (rdev->use_count == 0) {
1855 /* The regulator may on if it's not switchable or left on */
1856 ret = _regulator_is_enabled(rdev);
1857 if (ret == -EINVAL || ret == 0) {
1858 if (!_regulator_can_change_status(rdev))
1859 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001860
Mark Brown5c5659d2012-06-27 13:21:26 +01001861 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001862 if (ret < 0)
1863 return ret;
1864
Linus Walleija7433cf2009-08-26 12:54:04 +02001865 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001866 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001867 return ret;
1868 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001869 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001870 }
1871
Mark Brown9a2372f2009-08-03 18:49:57 +01001872 rdev->use_count++;
1873
1874 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001875}
1876
1877/**
1878 * regulator_enable - enable regulator output
1879 * @regulator: regulator source
1880 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001881 * Request that the regulator be enabled with the regulator output at
1882 * the predefined voltage or current value. Calls to regulator_enable()
1883 * must be balanced with calls to regulator_disable().
1884 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001885 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001886 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001887 */
1888int regulator_enable(struct regulator *regulator)
1889{
David Brownell412aec62008-11-16 11:44:46 -08001890 struct regulator_dev *rdev = regulator->rdev;
1891 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001892
Mark Brown6492bc12012-04-19 13:19:07 +01001893 if (regulator->always_on)
1894 return 0;
1895
Mark Brown3801b862011-06-09 16:22:22 +01001896 if (rdev->supply) {
1897 ret = regulator_enable(rdev->supply);
1898 if (ret != 0)
1899 return ret;
1900 }
1901
David Brownell412aec62008-11-16 11:44:46 -08001902 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001903 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001904 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001905
Heiko Stübnerd1685e42011-10-14 18:00:29 +02001906 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01001907 regulator_disable(rdev->supply);
1908
Liam Girdwood414c70c2008-04-30 15:59:04 +01001909 return ret;
1910}
1911EXPORT_SYMBOL_GPL(regulator_enable);
1912
Mark Brown5c5659d2012-06-27 13:21:26 +01001913static int _regulator_do_disable(struct regulator_dev *rdev)
1914{
1915 int ret;
1916
1917 trace_regulator_disable(rdev_get_name(rdev));
1918
Kim, Milo967cfb12013-02-18 06:50:48 +00001919 if (rdev->ena_pin) {
1920 ret = regulator_ena_gpio_ctrl(rdev, false);
1921 if (ret < 0)
1922 return ret;
Mark Brown5c5659d2012-06-27 13:21:26 +01001923 rdev->ena_gpio_state = 0;
1924
1925 } else if (rdev->desc->ops->disable) {
1926 ret = rdev->desc->ops->disable(rdev);
1927 if (ret != 0)
1928 return ret;
1929 }
1930
Guodong Xu871f5652014-08-13 19:33:40 +08001931 /* cares about last_off_jiffy only if off_on_delay is required by
1932 * device.
1933 */
1934 if (rdev->desc->off_on_delay)
1935 rdev->last_off_jiffy = jiffies;
1936
Mark Brown5c5659d2012-06-27 13:21:26 +01001937 trace_regulator_disable_complete(rdev_get_name(rdev));
1938
Mark Brown5c5659d2012-06-27 13:21:26 +01001939 return 0;
1940}
1941
Liam Girdwood414c70c2008-04-30 15:59:04 +01001942/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001943static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001944{
1945 int ret = 0;
1946
David Brownellcd94b502009-03-11 16:43:34 -08001947 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001948 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001949 return -EIO;
1950
Liam Girdwood414c70c2008-04-30 15:59:04 +01001951 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001952 if (rdev->use_count == 1 &&
1953 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001954
1955 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01001956 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00001957 ret = _notifier_call_chain(rdev,
1958 REGULATOR_EVENT_PRE_DISABLE,
1959 NULL);
1960 if (ret & NOTIFY_STOP_MASK)
1961 return -EINVAL;
1962
Mark Brown5c5659d2012-06-27 13:21:26 +01001963 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001964 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001965 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00001966 _notifier_call_chain(rdev,
1967 REGULATOR_EVENT_ABORT_DISABLE,
1968 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001969 return ret;
1970 }
Markus Pargmann66fda752014-02-20 17:36:04 +01001971 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1972 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001973 }
1974
Liam Girdwood414c70c2008-04-30 15:59:04 +01001975 rdev->use_count = 0;
1976 } else if (rdev->use_count > 1) {
1977
1978 if (rdev->constraints &&
1979 (rdev->constraints->valid_ops_mask &
1980 REGULATOR_CHANGE_DRMS))
1981 drms_uA_update(rdev);
1982
1983 rdev->use_count--;
1984 }
Mark Brown3801b862011-06-09 16:22:22 +01001985
Liam Girdwood414c70c2008-04-30 15:59:04 +01001986 return ret;
1987}
1988
1989/**
1990 * regulator_disable - disable regulator output
1991 * @regulator: regulator source
1992 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001993 * Disable the regulator output voltage or current. Calls to
1994 * regulator_enable() must be balanced with calls to
1995 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00001996 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001997 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00001998 * devices have it enabled, the regulator device supports disabling and
1999 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002000 */
2001int regulator_disable(struct regulator *regulator)
2002{
David Brownell412aec62008-11-16 11:44:46 -08002003 struct regulator_dev *rdev = regulator->rdev;
2004 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002005
Mark Brown6492bc12012-04-19 13:19:07 +01002006 if (regulator->always_on)
2007 return 0;
2008
David Brownell412aec62008-11-16 11:44:46 -08002009 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002010 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002011 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002012
Mark Brown3801b862011-06-09 16:22:22 +01002013 if (ret == 0 && rdev->supply)
2014 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002015
Liam Girdwood414c70c2008-04-30 15:59:04 +01002016 return ret;
2017}
2018EXPORT_SYMBOL_GPL(regulator_disable);
2019
2020/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002021static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002022{
2023 int ret = 0;
2024
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002025 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2026 REGULATOR_EVENT_PRE_DISABLE, NULL);
2027 if (ret & NOTIFY_STOP_MASK)
2028 return -EINVAL;
2029
Markus Pargmann66fda752014-02-20 17:36:04 +01002030 ret = _regulator_do_disable(rdev);
2031 if (ret < 0) {
2032 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002033 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2034 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002035 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002036 }
2037
Markus Pargmann66fda752014-02-20 17:36:04 +01002038 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2039 REGULATOR_EVENT_DISABLE, NULL);
2040
2041 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002042}
2043
2044/**
2045 * regulator_force_disable - force disable regulator output
2046 * @regulator: regulator source
2047 *
2048 * Forcibly disable the regulator output voltage or current.
2049 * NOTE: this *will* disable the regulator output even if other consumer
2050 * devices have it enabled. This should be used for situations when device
2051 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2052 */
2053int regulator_force_disable(struct regulator *regulator)
2054{
Mark Brown82d15832011-05-09 11:41:02 +02002055 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002056 int ret;
2057
Mark Brown82d15832011-05-09 11:41:02 +02002058 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002059 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002060 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002061 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002062
Mark Brown3801b862011-06-09 16:22:22 +01002063 if (rdev->supply)
2064 while (rdev->open_count--)
2065 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002066
Liam Girdwood414c70c2008-04-30 15:59:04 +01002067 return ret;
2068}
2069EXPORT_SYMBOL_GPL(regulator_force_disable);
2070
Mark Brownda07ecd2011-09-11 09:53:50 +01002071static void regulator_disable_work(struct work_struct *work)
2072{
2073 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2074 disable_work.work);
2075 int count, i, ret;
2076
2077 mutex_lock(&rdev->mutex);
2078
2079 BUG_ON(!rdev->deferred_disables);
2080
2081 count = rdev->deferred_disables;
2082 rdev->deferred_disables = 0;
2083
2084 for (i = 0; i < count; i++) {
2085 ret = _regulator_disable(rdev);
2086 if (ret != 0)
2087 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2088 }
2089
2090 mutex_unlock(&rdev->mutex);
2091
2092 if (rdev->supply) {
2093 for (i = 0; i < count; i++) {
2094 ret = regulator_disable(rdev->supply);
2095 if (ret != 0) {
2096 rdev_err(rdev,
2097 "Supply disable failed: %d\n", ret);
2098 }
2099 }
2100 }
2101}
2102
2103/**
2104 * regulator_disable_deferred - disable regulator output with delay
2105 * @regulator: regulator source
2106 * @ms: miliseconds until the regulator is disabled
2107 *
2108 * Execute regulator_disable() on the regulator after a delay. This
2109 * is intended for use with devices that require some time to quiesce.
2110 *
2111 * NOTE: this will only disable the regulator output if no other consumer
2112 * devices have it enabled, the regulator device supports disabling and
2113 * machine constraints permit this operation.
2114 */
2115int regulator_disable_deferred(struct regulator *regulator, int ms)
2116{
2117 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002118 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002119
Mark Brown6492bc12012-04-19 13:19:07 +01002120 if (regulator->always_on)
2121 return 0;
2122
Mark Brown2b5a24a2012-09-07 11:00:53 +08002123 if (!ms)
2124 return regulator_disable(regulator);
2125
Mark Brownda07ecd2011-09-11 09:53:50 +01002126 mutex_lock(&rdev->mutex);
2127 rdev->deferred_disables++;
2128 mutex_unlock(&rdev->mutex);
2129
Mark Brown070260f2013-07-18 11:52:04 +01002130 ret = queue_delayed_work(system_power_efficient_wq,
2131 &rdev->disable_work,
2132 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002133 if (ret < 0)
2134 return ret;
2135 else
2136 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002137}
2138EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2139
Liam Girdwood414c70c2008-04-30 15:59:04 +01002140static int _regulator_is_enabled(struct regulator_dev *rdev)
2141{
Mark Brown65f73502012-06-27 14:14:38 +01002142 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002143 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002144 return rdev->ena_gpio_state;
2145
Mark Brown9a7f6a42010-02-11 17:22:45 +00002146 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002147 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002148 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002149
Mark Brown93325462009-08-03 18:49:56 +01002150 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002151}
2152
2153/**
2154 * regulator_is_enabled - is the regulator output enabled
2155 * @regulator: regulator source
2156 *
David Brownell412aec62008-11-16 11:44:46 -08002157 * Returns positive if the regulator driver backing the source/client
2158 * has requested that the device be enabled, zero if it hasn't, else a
2159 * negative errno code.
2160 *
2161 * Note that the device backing this regulator handle can have multiple
2162 * users, so it might be enabled even if regulator_enable() was never
2163 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002164 */
2165int regulator_is_enabled(struct regulator *regulator)
2166{
Mark Brown93325462009-08-03 18:49:56 +01002167 int ret;
2168
Mark Brown6492bc12012-04-19 13:19:07 +01002169 if (regulator->always_on)
2170 return 1;
2171
Mark Brown93325462009-08-03 18:49:56 +01002172 mutex_lock(&regulator->rdev->mutex);
2173 ret = _regulator_is_enabled(regulator->rdev);
2174 mutex_unlock(&regulator->rdev->mutex);
2175
2176 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002177}
2178EXPORT_SYMBOL_GPL(regulator_is_enabled);
2179
2180/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002181 * regulator_can_change_voltage - check if regulator can change voltage
2182 * @regulator: regulator source
2183 *
2184 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002185 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002186 * or dummy regulators and disabling voltage change logic in the client
2187 * driver.
2188 */
2189int regulator_can_change_voltage(struct regulator *regulator)
2190{
2191 struct regulator_dev *rdev = regulator->rdev;
2192
2193 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002194 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2195 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2196 return 1;
2197
2198 if (rdev->desc->continuous_voltage_range &&
2199 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2200 rdev->constraints->min_uV != rdev->constraints->max_uV)
2201 return 1;
2202 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002203
2204 return 0;
2205}
2206EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2207
2208/**
David Brownell4367cfd2009-02-26 11:48:36 -08002209 * regulator_count_voltages - count regulator_list_voltage() selectors
2210 * @regulator: regulator source
2211 *
2212 * Returns number of selectors, or negative errno. Selectors are
2213 * numbered starting at zero, and typically correspond to bitfields
2214 * in hardware registers.
2215 */
2216int regulator_count_voltages(struct regulator *regulator)
2217{
2218 struct regulator_dev *rdev = regulator->rdev;
2219
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002220 if (rdev->desc->n_voltages)
2221 return rdev->desc->n_voltages;
2222
2223 if (!rdev->supply)
2224 return -EINVAL;
2225
2226 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002227}
2228EXPORT_SYMBOL_GPL(regulator_count_voltages);
2229
2230/**
2231 * regulator_list_voltage - enumerate supported voltages
2232 * @regulator: regulator source
2233 * @selector: identify voltage to list
2234 * Context: can sleep
2235 *
2236 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002237 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002238 * negative errno.
2239 */
2240int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2241{
Guodong Xu272e2312014-08-13 19:33:38 +08002242 struct regulator_dev *rdev = regulator->rdev;
2243 const struct regulator_ops *ops = rdev->desc->ops;
2244 int ret;
David Brownell4367cfd2009-02-26 11:48:36 -08002245
Guennadi Liakhovetskif4460432013-11-13 12:33:00 +01002246 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2247 return rdev->desc->fixed_uV;
2248
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002249 if (ops->list_voltage) {
2250 if (selector >= rdev->desc->n_voltages)
2251 return -EINVAL;
2252 mutex_lock(&rdev->mutex);
2253 ret = ops->list_voltage(rdev, selector);
2254 mutex_unlock(&rdev->mutex);
2255 } else if (rdev->supply) {
2256 ret = regulator_list_voltage(rdev->supply, selector);
2257 } else {
David Brownell4367cfd2009-02-26 11:48:36 -08002258 return -EINVAL;
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002259 }
David Brownell4367cfd2009-02-26 11:48:36 -08002260
2261 if (ret > 0) {
2262 if (ret < rdev->constraints->min_uV)
2263 ret = 0;
2264 else if (ret > rdev->constraints->max_uV)
2265 ret = 0;
2266 }
2267
2268 return ret;
2269}
2270EXPORT_SYMBOL_GPL(regulator_list_voltage);
2271
2272/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002273 * regulator_get_regmap - get the regulator's register map
2274 * @regulator: regulator source
2275 *
2276 * Returns the register map for the given regulator, or an ERR_PTR value
2277 * if the regulator doesn't use regmap.
2278 */
2279struct regmap *regulator_get_regmap(struct regulator *regulator)
2280{
2281 struct regmap *map = regulator->rdev->regmap;
2282
2283 return map ? map : ERR_PTR(-EOPNOTSUPP);
2284}
2285
2286/**
2287 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2288 * @regulator: regulator source
2289 * @vsel_reg: voltage selector register, output parameter
2290 * @vsel_mask: mask for voltage selector bitfield, output parameter
2291 *
2292 * Returns the hardware register offset and bitmask used for setting the
2293 * regulator voltage. This might be useful when configuring voltage-scaling
2294 * hardware or firmware that can make I2C requests behind the kernel's back,
2295 * for example.
2296 *
2297 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2298 * and 0 is returned, otherwise a negative errno is returned.
2299 */
2300int regulator_get_hardware_vsel_register(struct regulator *regulator,
2301 unsigned *vsel_reg,
2302 unsigned *vsel_mask)
2303{
Guodong Xu39f54602014-08-19 18:07:41 +08002304 struct regulator_dev *rdev = regulator->rdev;
2305 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002306
2307 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2308 return -EOPNOTSUPP;
2309
2310 *vsel_reg = rdev->desc->vsel_reg;
2311 *vsel_mask = rdev->desc->vsel_mask;
2312
2313 return 0;
2314}
2315EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2316
2317/**
2318 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2319 * @regulator: regulator source
2320 * @selector: identify voltage to list
2321 *
2322 * Converts the selector to a hardware-specific voltage selector that can be
2323 * directly written to the regulator registers. The address of the voltage
2324 * register can be determined by calling @regulator_get_hardware_vsel_register.
2325 *
2326 * On error a negative errno is returned.
2327 */
2328int regulator_list_hardware_vsel(struct regulator *regulator,
2329 unsigned selector)
2330{
Guodong Xu39f54602014-08-19 18:07:41 +08002331 struct regulator_dev *rdev = regulator->rdev;
2332 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002333
2334 if (selector >= rdev->desc->n_voltages)
2335 return -EINVAL;
2336 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2337 return -EOPNOTSUPP;
2338
2339 return selector;
2340}
2341EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2342
2343/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002344 * regulator_get_linear_step - return the voltage step size between VSEL values
2345 * @regulator: regulator source
2346 *
2347 * Returns the voltage step size between VSEL values for linear
2348 * regulators, or return 0 if the regulator isn't a linear regulator.
2349 */
2350unsigned int regulator_get_linear_step(struct regulator *regulator)
2351{
2352 struct regulator_dev *rdev = regulator->rdev;
2353
2354 return rdev->desc->uV_step;
2355}
2356EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2357
2358/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002359 * regulator_is_supported_voltage - check if a voltage range can be supported
2360 *
2361 * @regulator: Regulator to check.
2362 * @min_uV: Minimum required voltage in uV.
2363 * @max_uV: Maximum required voltage in uV.
2364 *
2365 * Returns a boolean or a negative error code.
2366 */
2367int regulator_is_supported_voltage(struct regulator *regulator,
2368 int min_uV, int max_uV)
2369{
Mark Brownc5f39392012-07-02 15:00:18 +01002370 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002371 int i, voltages, ret;
2372
Mark Brownc5f39392012-07-02 15:00:18 +01002373 /* If we can't change voltage check the current voltage */
2374 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2375 ret = regulator_get_voltage(regulator);
2376 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002377 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002378 else
2379 return ret;
2380 }
2381
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002382 /* Any voltage within constrains range is fine? */
2383 if (rdev->desc->continuous_voltage_range)
2384 return min_uV >= rdev->constraints->min_uV &&
2385 max_uV <= rdev->constraints->max_uV;
2386
Mark Browna7a1ad92009-07-21 16:00:24 +01002387 ret = regulator_count_voltages(regulator);
2388 if (ret < 0)
2389 return ret;
2390 voltages = ret;
2391
2392 for (i = 0; i < voltages; i++) {
2393 ret = regulator_list_voltage(regulator, i);
2394
2395 if (ret >= min_uV && ret <= max_uV)
2396 return 1;
2397 }
2398
2399 return 0;
2400}
Mark Browna398eaa2011-12-28 12:48:45 +00002401EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002402
Heiko Stübner71795692014-08-28 12:36:04 -07002403static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2404 int min_uV, int max_uV,
2405 unsigned *selector)
2406{
2407 struct pre_voltage_change_data data;
2408 int ret;
2409
2410 data.old_uV = _regulator_get_voltage(rdev);
2411 data.min_uV = min_uV;
2412 data.max_uV = max_uV;
2413 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2414 &data);
2415 if (ret & NOTIFY_STOP_MASK)
2416 return -EINVAL;
2417
2418 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2419 if (ret >= 0)
2420 return ret;
2421
2422 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2423 (void *)data.old_uV);
2424
2425 return ret;
2426}
2427
2428static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2429 int uV, unsigned selector)
2430{
2431 struct pre_voltage_change_data data;
2432 int ret;
2433
2434 data.old_uV = _regulator_get_voltage(rdev);
2435 data.min_uV = uV;
2436 data.max_uV = uV;
2437 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2438 &data);
2439 if (ret & NOTIFY_STOP_MASK)
2440 return -EINVAL;
2441
2442 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2443 if (ret >= 0)
2444 return ret;
2445
2446 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2447 (void *)data.old_uV);
2448
2449 return ret;
2450}
2451
Mark Brown75790252010-12-12 14:25:50 +00002452static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2453 int min_uV, int max_uV)
2454{
2455 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002456 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002457 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002458 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002459 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002460
2461 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2462
Mark Brownbf5892a2011-05-08 22:13:37 +01002463 min_uV += rdev->constraints->uV_offset;
2464 max_uV += rdev->constraints->uV_offset;
2465
Axel Lineba41a52012-04-04 10:32:10 +08002466 /*
2467 * If we can't obtain the old selector there is not enough
2468 * info to call set_voltage_time_sel().
2469 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002470 if (_regulator_is_enabled(rdev) &&
2471 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002472 rdev->desc->ops->get_voltage_sel) {
2473 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2474 if (old_selector < 0)
2475 return old_selector;
2476 }
2477
Mark Brown75790252010-12-12 14:25:50 +00002478 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002479 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2480 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002481
2482 if (ret >= 0) {
2483 if (rdev->desc->ops->list_voltage)
2484 best_val = rdev->desc->ops->list_voltage(rdev,
2485 selector);
2486 else
2487 best_val = _regulator_get_voltage(rdev);
2488 }
2489
Mark Browne8eef822010-12-12 14:36:17 +00002490 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002491 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002492 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2493 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002494 } else {
2495 if (rdev->desc->ops->list_voltage ==
2496 regulator_list_voltage_linear)
2497 ret = regulator_map_voltage_linear(rdev,
2498 min_uV, max_uV);
Axel Lin36698622014-05-24 11:10:43 +08002499 else if (rdev->desc->ops->list_voltage ==
2500 regulator_list_voltage_linear_range)
2501 ret = regulator_map_voltage_linear_range(rdev,
2502 min_uV, max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002503 else
2504 ret = regulator_map_voltage_iterate(rdev,
2505 min_uV, max_uV);
2506 }
Mark Browne8eef822010-12-12 14:36:17 +00002507
Mark Browne843fc42012-05-09 21:16:06 +01002508 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002509 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2510 if (min_uV <= best_val && max_uV >= best_val) {
2511 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002512 if (old_selector == selector)
2513 ret = 0;
2514 else
Heiko Stübner71795692014-08-28 12:36:04 -07002515 ret = _regulator_call_set_voltage_sel(
2516 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002517 } else {
2518 ret = -EINVAL;
2519 }
Mark Browne8eef822010-12-12 14:36:17 +00002520 }
Mark Brown75790252010-12-12 14:25:50 +00002521 } else {
2522 ret = -EINVAL;
2523 }
2524
Axel Lineba41a52012-04-04 10:32:10 +08002525 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302526 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2527 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002528
2529 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2530 old_selector, selector);
2531 if (delay < 0) {
2532 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2533 delay);
2534 delay = 0;
2535 }
Axel Lineba41a52012-04-04 10:32:10 +08002536
Philip Rakity8b96de32012-06-14 15:07:56 -07002537 /* Insert any necessary delays */
2538 if (delay >= 1000) {
2539 mdelay(delay / 1000);
2540 udelay(delay % 1000);
2541 } else if (delay) {
2542 udelay(delay);
2543 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002544 }
2545
Axel Lin2f6c7972012-08-06 23:44:19 +08002546 if (ret == 0 && best_val >= 0) {
2547 unsigned long data = best_val;
2548
Mark Brownded06a52010-12-16 13:59:10 +00002549 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002550 (void *)data);
2551 }
Mark Brownded06a52010-12-16 13:59:10 +00002552
Axel Lineba41a52012-04-04 10:32:10 +08002553 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002554
2555 return ret;
2556}
2557
Mark Browna7a1ad92009-07-21 16:00:24 +01002558/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002559 * regulator_set_voltage - set regulator output voltage
2560 * @regulator: regulator source
2561 * @min_uV: Minimum required voltage in uV
2562 * @max_uV: Maximum acceptable voltage in uV
2563 *
2564 * Sets a voltage regulator to the desired output voltage. This can be set
2565 * during any regulator state. IOW, regulator can be disabled or enabled.
2566 *
2567 * If the regulator is enabled then the voltage will change to the new value
2568 * immediately otherwise if the regulator is disabled the regulator will
2569 * output at the new voltage when enabled.
2570 *
2571 * NOTE: If the regulator is shared between several devices then the lowest
2572 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002573 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002574 * calling this function otherwise this call will fail.
2575 */
2576int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2577{
2578 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002579 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002580 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002581 int current_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002582
2583 mutex_lock(&rdev->mutex);
2584
Mark Brown95a3c232010-12-16 15:49:37 +00002585 /* If we're setting the same range as last time the change
2586 * should be a noop (some cpufreq implementations use the same
2587 * voltage for multiple frequencies, for example).
2588 */
2589 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2590 goto out;
2591
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002592 /* If we're trying to set a range that overlaps the current voltage,
2593 * return succesfully even though the regulator does not support
2594 * changing the voltage.
2595 */
2596 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2597 current_uV = _regulator_get_voltage(rdev);
2598 if (min_uV <= current_uV && current_uV <= max_uV) {
2599 regulator->min_uV = min_uV;
2600 regulator->max_uV = max_uV;
2601 goto out;
2602 }
2603 }
2604
Liam Girdwood414c70c2008-04-30 15:59:04 +01002605 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002606 if (!rdev->desc->ops->set_voltage &&
2607 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002608 ret = -EINVAL;
2609 goto out;
2610 }
2611
2612 /* constraints check */
2613 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2614 if (ret < 0)
2615 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002616
Paolo Pisati92d7a552012-12-13 10:13:00 +01002617 /* restore original values in case of error */
2618 old_min_uV = regulator->min_uV;
2619 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002620 regulator->min_uV = min_uV;
2621 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002622
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002623 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2624 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002625 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002626
Mark Brown75790252010-12-12 14:25:50 +00002627 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002628 if (ret < 0)
2629 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002630
Liam Girdwood414c70c2008-04-30 15:59:04 +01002631out:
2632 mutex_unlock(&rdev->mutex);
2633 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002634out2:
2635 regulator->min_uV = old_min_uV;
2636 regulator->max_uV = old_max_uV;
2637 mutex_unlock(&rdev->mutex);
2638 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002639}
2640EXPORT_SYMBOL_GPL(regulator_set_voltage);
2641
Mark Brown606a2562010-12-16 15:49:36 +00002642/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002643 * regulator_set_voltage_time - get raise/fall time
2644 * @regulator: regulator source
2645 * @old_uV: starting voltage in microvolts
2646 * @new_uV: target voltage in microvolts
2647 *
2648 * Provided with the starting and ending voltage, this function attempts to
2649 * calculate the time in microseconds required to rise or fall to this new
2650 * voltage.
2651 */
2652int regulator_set_voltage_time(struct regulator *regulator,
2653 int old_uV, int new_uV)
2654{
Guodong Xu272e2312014-08-13 19:33:38 +08002655 struct regulator_dev *rdev = regulator->rdev;
2656 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002657 int old_sel = -1;
2658 int new_sel = -1;
2659 int voltage;
2660 int i;
2661
2662 /* Currently requires operations to do this */
2663 if (!ops->list_voltage || !ops->set_voltage_time_sel
2664 || !rdev->desc->n_voltages)
2665 return -EINVAL;
2666
2667 for (i = 0; i < rdev->desc->n_voltages; i++) {
2668 /* We only look for exact voltage matches here */
2669 voltage = regulator_list_voltage(regulator, i);
2670 if (voltage < 0)
2671 return -EINVAL;
2672 if (voltage == 0)
2673 continue;
2674 if (voltage == old_uV)
2675 old_sel = i;
2676 if (voltage == new_uV)
2677 new_sel = i;
2678 }
2679
2680 if (old_sel < 0 || new_sel < 0)
2681 return -EINVAL;
2682
2683 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2684}
2685EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2686
2687/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002688 * regulator_set_voltage_time_sel - get raise/fall time
2689 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302690 * @old_selector: selector for starting voltage
2691 * @new_selector: selector for target voltage
2692 *
2693 * Provided with the starting and target voltage selectors, this function
2694 * returns time in microseconds required to rise or fall to this new voltage
2695 *
Axel Linf11d08c2012-06-19 09:38:45 +08002696 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002697 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302698 */
2699int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2700 unsigned int old_selector,
2701 unsigned int new_selector)
2702{
Axel Lin398715a2012-06-18 10:11:28 +08002703 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002704 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002705
2706 if (rdev->constraints->ramp_delay)
2707 ramp_delay = rdev->constraints->ramp_delay;
2708 else if (rdev->desc->ramp_delay)
2709 ramp_delay = rdev->desc->ramp_delay;
2710
2711 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302712 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002713 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302714 }
Axel Lin398715a2012-06-18 10:11:28 +08002715
Axel Linf11d08c2012-06-19 09:38:45 +08002716 /* sanity check */
2717 if (!rdev->desc->ops->list_voltage)
2718 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002719
Axel Linf11d08c2012-06-19 09:38:45 +08002720 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2721 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2722
2723 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302724}
Mark Brownb19dbf72012-06-23 11:34:20 +01002725EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302726
2727/**
Mark Brown606a2562010-12-16 15:49:36 +00002728 * regulator_sync_voltage - re-apply last regulator output voltage
2729 * @regulator: regulator source
2730 *
2731 * Re-apply the last configured voltage. This is intended to be used
2732 * where some external control source the consumer is cooperating with
2733 * has caused the configured voltage to change.
2734 */
2735int regulator_sync_voltage(struct regulator *regulator)
2736{
2737 struct regulator_dev *rdev = regulator->rdev;
2738 int ret, min_uV, max_uV;
2739
2740 mutex_lock(&rdev->mutex);
2741
2742 if (!rdev->desc->ops->set_voltage &&
2743 !rdev->desc->ops->set_voltage_sel) {
2744 ret = -EINVAL;
2745 goto out;
2746 }
2747
2748 /* This is only going to work if we've had a voltage configured. */
2749 if (!regulator->min_uV && !regulator->max_uV) {
2750 ret = -EINVAL;
2751 goto out;
2752 }
2753
2754 min_uV = regulator->min_uV;
2755 max_uV = regulator->max_uV;
2756
2757 /* This should be a paranoia check... */
2758 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2759 if (ret < 0)
2760 goto out;
2761
2762 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2763 if (ret < 0)
2764 goto out;
2765
2766 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2767
2768out:
2769 mutex_unlock(&rdev->mutex);
2770 return ret;
2771}
2772EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2773
Liam Girdwood414c70c2008-04-30 15:59:04 +01002774static int _regulator_get_voltage(struct regulator_dev *rdev)
2775{
Mark Brownbf5892a2011-05-08 22:13:37 +01002776 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002777
2778 if (rdev->desc->ops->get_voltage_sel) {
2779 sel = rdev->desc->ops->get_voltage_sel(rdev);
2780 if (sel < 0)
2781 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002782 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002783 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002784 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002785 } else if (rdev->desc->ops->list_voltage) {
2786 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05302787 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
2788 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02002789 } else if (rdev->supply) {
2790 ret = regulator_get_voltage(rdev->supply);
Axel Lincb220d12011-05-23 20:08:10 +08002791 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002792 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002793 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002794
Axel Lincb220d12011-05-23 20:08:10 +08002795 if (ret < 0)
2796 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002797 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002798}
2799
2800/**
2801 * regulator_get_voltage - get regulator output voltage
2802 * @regulator: regulator source
2803 *
2804 * This returns the current regulator voltage in uV.
2805 *
2806 * NOTE: If the regulator is disabled it will return the voltage value. This
2807 * function should not be used to determine regulator state.
2808 */
2809int regulator_get_voltage(struct regulator *regulator)
2810{
2811 int ret;
2812
2813 mutex_lock(&regulator->rdev->mutex);
2814
2815 ret = _regulator_get_voltage(regulator->rdev);
2816
2817 mutex_unlock(&regulator->rdev->mutex);
2818
2819 return ret;
2820}
2821EXPORT_SYMBOL_GPL(regulator_get_voltage);
2822
2823/**
2824 * regulator_set_current_limit - set regulator output current limit
2825 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002826 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002827 * @max_uA: Maximum supported current in uA
2828 *
2829 * Sets current sink to the desired output current. This can be set during
2830 * any regulator state. IOW, regulator can be disabled or enabled.
2831 *
2832 * If the regulator is enabled then the current will change to the new value
2833 * immediately otherwise if the regulator is disabled the regulator will
2834 * output at the new current when enabled.
2835 *
2836 * NOTE: Regulator system constraints must be set for this regulator before
2837 * calling this function otherwise this call will fail.
2838 */
2839int regulator_set_current_limit(struct regulator *regulator,
2840 int min_uA, int max_uA)
2841{
2842 struct regulator_dev *rdev = regulator->rdev;
2843 int ret;
2844
2845 mutex_lock(&rdev->mutex);
2846
2847 /* sanity check */
2848 if (!rdev->desc->ops->set_current_limit) {
2849 ret = -EINVAL;
2850 goto out;
2851 }
2852
2853 /* constraints check */
2854 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2855 if (ret < 0)
2856 goto out;
2857
2858 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2859out:
2860 mutex_unlock(&rdev->mutex);
2861 return ret;
2862}
2863EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2864
2865static int _regulator_get_current_limit(struct regulator_dev *rdev)
2866{
2867 int ret;
2868
2869 mutex_lock(&rdev->mutex);
2870
2871 /* sanity check */
2872 if (!rdev->desc->ops->get_current_limit) {
2873 ret = -EINVAL;
2874 goto out;
2875 }
2876
2877 ret = rdev->desc->ops->get_current_limit(rdev);
2878out:
2879 mutex_unlock(&rdev->mutex);
2880 return ret;
2881}
2882
2883/**
2884 * regulator_get_current_limit - get regulator output current
2885 * @regulator: regulator source
2886 *
2887 * This returns the current supplied by the specified current sink in uA.
2888 *
2889 * NOTE: If the regulator is disabled it will return the current value. This
2890 * function should not be used to determine regulator state.
2891 */
2892int regulator_get_current_limit(struct regulator *regulator)
2893{
2894 return _regulator_get_current_limit(regulator->rdev);
2895}
2896EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2897
2898/**
2899 * regulator_set_mode - set regulator operating mode
2900 * @regulator: regulator source
2901 * @mode: operating mode - one of the REGULATOR_MODE constants
2902 *
2903 * Set regulator operating mode to increase regulator efficiency or improve
2904 * regulation performance.
2905 *
2906 * NOTE: Regulator system constraints must be set for this regulator before
2907 * calling this function otherwise this call will fail.
2908 */
2909int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2910{
2911 struct regulator_dev *rdev = regulator->rdev;
2912 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302913 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002914
2915 mutex_lock(&rdev->mutex);
2916
2917 /* sanity check */
2918 if (!rdev->desc->ops->set_mode) {
2919 ret = -EINVAL;
2920 goto out;
2921 }
2922
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302923 /* return if the same mode is requested */
2924 if (rdev->desc->ops->get_mode) {
2925 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2926 if (regulator_curr_mode == mode) {
2927 ret = 0;
2928 goto out;
2929 }
2930 }
2931
Liam Girdwood414c70c2008-04-30 15:59:04 +01002932 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08002933 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002934 if (ret < 0)
2935 goto out;
2936
2937 ret = rdev->desc->ops->set_mode(rdev, mode);
2938out:
2939 mutex_unlock(&rdev->mutex);
2940 return ret;
2941}
2942EXPORT_SYMBOL_GPL(regulator_set_mode);
2943
2944static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2945{
2946 int ret;
2947
2948 mutex_lock(&rdev->mutex);
2949
2950 /* sanity check */
2951 if (!rdev->desc->ops->get_mode) {
2952 ret = -EINVAL;
2953 goto out;
2954 }
2955
2956 ret = rdev->desc->ops->get_mode(rdev);
2957out:
2958 mutex_unlock(&rdev->mutex);
2959 return ret;
2960}
2961
2962/**
2963 * regulator_get_mode - get regulator operating mode
2964 * @regulator: regulator source
2965 *
2966 * Get the current regulator operating mode.
2967 */
2968unsigned int regulator_get_mode(struct regulator *regulator)
2969{
2970 return _regulator_get_mode(regulator->rdev);
2971}
2972EXPORT_SYMBOL_GPL(regulator_get_mode);
2973
2974/**
2975 * regulator_set_optimum_mode - set regulator optimum operating mode
2976 * @regulator: regulator source
2977 * @uA_load: load current
2978 *
2979 * Notifies the regulator core of a new device load. This is then used by
2980 * DRMS (if enabled by constraints) to set the most efficient regulator
2981 * operating mode for the new regulator loading.
2982 *
2983 * Consumer devices notify their supply regulator of the maximum power
2984 * they will require (can be taken from device datasheet in the power
2985 * consumption tables) when they change operational status and hence power
2986 * state. Examples of operational state changes that can affect power
2987 * consumption are :-
2988 *
2989 * o Device is opened / closed.
2990 * o Device I/O is about to begin or has just finished.
2991 * o Device is idling in between work.
2992 *
2993 * This information is also exported via sysfs to userspace.
2994 *
2995 * DRMS will sum the total requested load on the regulator and change
2996 * to the most efficient operating mode if platform constraints allow.
2997 *
2998 * Returns the new regulator mode or error.
2999 */
3000int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
3001{
3002 struct regulator_dev *rdev = regulator->rdev;
3003 struct regulator *consumer;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003004 int ret, output_uV, input_uV = 0, total_uA_load = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003005 unsigned int mode;
3006
Stephen Boydd92d95b62012-07-02 19:21:06 -07003007 if (rdev->supply)
3008 input_uV = regulator_get_voltage(rdev->supply);
3009
Liam Girdwood414c70c2008-04-30 15:59:04 +01003010 mutex_lock(&rdev->mutex);
3011
Mark Browna4b41482011-05-14 11:19:45 -07003012 /*
3013 * first check to see if we can set modes at all, otherwise just
3014 * tell the consumer everything is OK.
3015 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003016 regulator->uA_load = uA_load;
3017 ret = regulator_check_drms(rdev);
Mark Browna4b41482011-05-14 11:19:45 -07003018 if (ret < 0) {
3019 ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003020 goto out;
Mark Browna4b41482011-05-14 11:19:45 -07003021 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003022
Liam Girdwood414c70c2008-04-30 15:59:04 +01003023 if (!rdev->desc->ops->get_optimum_mode)
3024 goto out;
3025
Mark Browna4b41482011-05-14 11:19:45 -07003026 /*
3027 * we can actually do this so any errors are indicators of
3028 * potential real failure.
3029 */
3030 ret = -EINVAL;
3031
Axel Lin854ccba2012-04-16 18:44:23 +08003032 if (!rdev->desc->ops->set_mode)
3033 goto out;
3034
Liam Girdwood414c70c2008-04-30 15:59:04 +01003035 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00003036 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003037 if (output_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003038 rdev_err(rdev, "invalid output voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003039 goto out;
3040 }
3041
Stephen Boydd92d95b62012-07-02 19:21:06 -07003042 /* No supply? Use constraint voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00003043 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003044 input_uV = rdev->constraints->input_uV;
3045 if (input_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003046 rdev_err(rdev, "invalid input voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003047 goto out;
3048 }
3049
3050 /* calc total requested load for this regulator */
3051 list_for_each_entry(consumer, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +01003052 total_uA_load += consumer->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003053
3054 mode = rdev->desc->ops->get_optimum_mode(rdev,
3055 input_uV, output_uV,
3056 total_uA_load);
Mark Brown2c608232011-03-30 06:29:12 +09003057 ret = regulator_mode_constrain(rdev, &mode);
David Brownelle5735202008-11-16 11:46:56 -08003058 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003059 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
3060 total_uA_load, input_uV, output_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003061 goto out;
3062 }
3063
3064 ret = rdev->desc->ops->set_mode(rdev, mode);
David Brownelle5735202008-11-16 11:46:56 -08003065 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003066 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003067 goto out;
3068 }
3069 ret = mode;
3070out:
3071 mutex_unlock(&rdev->mutex);
3072 return ret;
3073}
3074EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
3075
3076/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003077 * regulator_allow_bypass - allow the regulator to go into bypass mode
3078 *
3079 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003080 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003081 *
3082 * Allow the regulator to go into bypass mode if all other consumers
3083 * for the regulator also enable bypass mode and the machine
3084 * constraints allow this. Bypass mode means that the regulator is
3085 * simply passing the input directly to the output with no regulation.
3086 */
3087int regulator_allow_bypass(struct regulator *regulator, bool enable)
3088{
3089 struct regulator_dev *rdev = regulator->rdev;
3090 int ret = 0;
3091
3092 if (!rdev->desc->ops->set_bypass)
3093 return 0;
3094
3095 if (rdev->constraints &&
3096 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3097 return 0;
3098
3099 mutex_lock(&rdev->mutex);
3100
3101 if (enable && !regulator->bypass) {
3102 rdev->bypass_count++;
3103
3104 if (rdev->bypass_count == rdev->open_count) {
3105 ret = rdev->desc->ops->set_bypass(rdev, enable);
3106 if (ret != 0)
3107 rdev->bypass_count--;
3108 }
3109
3110 } else if (!enable && regulator->bypass) {
3111 rdev->bypass_count--;
3112
3113 if (rdev->bypass_count != rdev->open_count) {
3114 ret = rdev->desc->ops->set_bypass(rdev, enable);
3115 if (ret != 0)
3116 rdev->bypass_count++;
3117 }
3118 }
3119
3120 if (ret == 0)
3121 regulator->bypass = enable;
3122
3123 mutex_unlock(&rdev->mutex);
3124
3125 return ret;
3126}
3127EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3128
3129/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003130 * regulator_register_notifier - register regulator event notifier
3131 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003132 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003133 *
3134 * Register notifier block to receive regulator events.
3135 */
3136int regulator_register_notifier(struct regulator *regulator,
3137 struct notifier_block *nb)
3138{
3139 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3140 nb);
3141}
3142EXPORT_SYMBOL_GPL(regulator_register_notifier);
3143
3144/**
3145 * regulator_unregister_notifier - unregister regulator event notifier
3146 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003147 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003148 *
3149 * Unregister regulator event notifier block.
3150 */
3151int regulator_unregister_notifier(struct regulator *regulator,
3152 struct notifier_block *nb)
3153{
3154 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3155 nb);
3156}
3157EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3158
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003159/* notify regulator consumers and downstream regulator consumers.
3160 * Note mutex must be held by caller.
3161 */
Heiko Stübner71795692014-08-28 12:36:04 -07003162static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003163 unsigned long event, void *data)
3164{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003165 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003166 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003167}
3168
3169/**
3170 * regulator_bulk_get - get multiple regulator consumers
3171 *
3172 * @dev: Device to supply
3173 * @num_consumers: Number of consumers to register
3174 * @consumers: Configuration of consumers; clients are stored here.
3175 *
3176 * @return 0 on success, an errno on failure.
3177 *
3178 * This helper function allows drivers to get several regulator
3179 * consumers in one operation. If any of the regulators cannot be
3180 * acquired then any regulators that were allocated will be freed
3181 * before returning to the caller.
3182 */
3183int regulator_bulk_get(struct device *dev, int num_consumers,
3184 struct regulator_bulk_data *consumers)
3185{
3186 int i;
3187 int ret;
3188
3189 for (i = 0; i < num_consumers; i++)
3190 consumers[i].consumer = NULL;
3191
3192 for (i = 0; i < num_consumers; i++) {
3193 consumers[i].consumer = regulator_get(dev,
3194 consumers[i].supply);
3195 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003196 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003197 dev_err(dev, "Failed to get supply '%s': %d\n",
3198 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003199 consumers[i].consumer = NULL;
3200 goto err;
3201 }
3202 }
3203
3204 return 0;
3205
3206err:
Axel Linb29c7692012-02-20 10:32:16 +08003207 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003208 regulator_put(consumers[i].consumer);
3209
3210 return ret;
3211}
3212EXPORT_SYMBOL_GPL(regulator_bulk_get);
3213
Mark Brownf21e0e82011-05-24 08:12:40 +08003214static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3215{
3216 struct regulator_bulk_data *bulk = data;
3217
3218 bulk->ret = regulator_enable(bulk->consumer);
3219}
3220
Liam Girdwood414c70c2008-04-30 15:59:04 +01003221/**
3222 * regulator_bulk_enable - enable multiple regulator consumers
3223 *
3224 * @num_consumers: Number of consumers
3225 * @consumers: Consumer data; clients are stored here.
3226 * @return 0 on success, an errno on failure
3227 *
3228 * This convenience API allows consumers to enable multiple regulator
3229 * clients in a single API call. If any consumers cannot be enabled
3230 * then any others that were enabled will be disabled again prior to
3231 * return.
3232 */
3233int regulator_bulk_enable(int num_consumers,
3234 struct regulator_bulk_data *consumers)
3235{
Dan Williams2955b472012-07-09 19:33:25 -07003236 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003237 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003238 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003239
Mark Brown6492bc12012-04-19 13:19:07 +01003240 for (i = 0; i < num_consumers; i++) {
3241 if (consumers[i].consumer->always_on)
3242 consumers[i].ret = 0;
3243 else
3244 async_schedule_domain(regulator_bulk_enable_async,
3245 &consumers[i], &async_domain);
3246 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003247
3248 async_synchronize_full_domain(&async_domain);
3249
3250 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003251 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003252 if (consumers[i].ret != 0) {
3253 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003254 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003255 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003256 }
3257
3258 return 0;
3259
3260err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003261 for (i = 0; i < num_consumers; i++) {
3262 if (consumers[i].ret < 0)
3263 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3264 consumers[i].ret);
3265 else
3266 regulator_disable(consumers[i].consumer);
3267 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003268
3269 return ret;
3270}
3271EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3272
3273/**
3274 * regulator_bulk_disable - disable multiple regulator consumers
3275 *
3276 * @num_consumers: Number of consumers
3277 * @consumers: Consumer data; clients are stored here.
3278 * @return 0 on success, an errno on failure
3279 *
3280 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003281 * clients in a single API call. If any consumers cannot be disabled
3282 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003283 * return.
3284 */
3285int regulator_bulk_disable(int num_consumers,
3286 struct regulator_bulk_data *consumers)
3287{
3288 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003289 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003290
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003291 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003292 ret = regulator_disable(consumers[i].consumer);
3293 if (ret != 0)
3294 goto err;
3295 }
3296
3297 return 0;
3298
3299err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003300 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003301 for (++i; i < num_consumers; ++i) {
3302 r = regulator_enable(consumers[i].consumer);
3303 if (r != 0)
3304 pr_err("Failed to reename %s: %d\n",
3305 consumers[i].supply, r);
3306 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003307
3308 return ret;
3309}
3310EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3311
3312/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003313 * regulator_bulk_force_disable - force disable multiple regulator consumers
3314 *
3315 * @num_consumers: Number of consumers
3316 * @consumers: Consumer data; clients are stored here.
3317 * @return 0 on success, an errno on failure
3318 *
3319 * This convenience API allows consumers to forcibly disable multiple regulator
3320 * clients in a single API call.
3321 * NOTE: This should be used for situations when device damage will
3322 * likely occur if the regulators are not disabled (e.g. over temp).
3323 * Although regulator_force_disable function call for some consumers can
3324 * return error numbers, the function is called for all consumers.
3325 */
3326int regulator_bulk_force_disable(int num_consumers,
3327 struct regulator_bulk_data *consumers)
3328{
3329 int i;
3330 int ret;
3331
3332 for (i = 0; i < num_consumers; i++)
3333 consumers[i].ret =
3334 regulator_force_disable(consumers[i].consumer);
3335
3336 for (i = 0; i < num_consumers; i++) {
3337 if (consumers[i].ret != 0) {
3338 ret = consumers[i].ret;
3339 goto out;
3340 }
3341 }
3342
3343 return 0;
3344out:
3345 return ret;
3346}
3347EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3348
3349/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003350 * regulator_bulk_free - free multiple regulator consumers
3351 *
3352 * @num_consumers: Number of consumers
3353 * @consumers: Consumer data; clients are stored here.
3354 *
3355 * This convenience API allows consumers to free multiple regulator
3356 * clients in a single API call.
3357 */
3358void regulator_bulk_free(int num_consumers,
3359 struct regulator_bulk_data *consumers)
3360{
3361 int i;
3362
3363 for (i = 0; i < num_consumers; i++) {
3364 regulator_put(consumers[i].consumer);
3365 consumers[i].consumer = NULL;
3366 }
3367}
3368EXPORT_SYMBOL_GPL(regulator_bulk_free);
3369
3370/**
3371 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003372 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003373 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003374 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003375 *
3376 * Called by regulator drivers to notify clients a regulator event has
3377 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003378 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003379 */
3380int regulator_notifier_call_chain(struct regulator_dev *rdev,
3381 unsigned long event, void *data)
3382{
3383 _notifier_call_chain(rdev, event, data);
3384 return NOTIFY_DONE;
3385
3386}
3387EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3388
Mark Brownbe721972009-08-04 20:09:52 +02003389/**
3390 * regulator_mode_to_status - convert a regulator mode into a status
3391 *
3392 * @mode: Mode to convert
3393 *
3394 * Convert a regulator mode into a status.
3395 */
3396int regulator_mode_to_status(unsigned int mode)
3397{
3398 switch (mode) {
3399 case REGULATOR_MODE_FAST:
3400 return REGULATOR_STATUS_FAST;
3401 case REGULATOR_MODE_NORMAL:
3402 return REGULATOR_STATUS_NORMAL;
3403 case REGULATOR_MODE_IDLE:
3404 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003405 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003406 return REGULATOR_STATUS_STANDBY;
3407 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003408 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003409 }
3410}
3411EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3412
Takashi Iwai39f802d2015-01-30 20:29:31 +01003413static struct attribute *regulator_dev_attrs[] = {
3414 &dev_attr_name.attr,
3415 &dev_attr_num_users.attr,
3416 &dev_attr_type.attr,
3417 &dev_attr_microvolts.attr,
3418 &dev_attr_microamps.attr,
3419 &dev_attr_opmode.attr,
3420 &dev_attr_state.attr,
3421 &dev_attr_status.attr,
3422 &dev_attr_bypass.attr,
3423 &dev_attr_requested_microamps.attr,
3424 &dev_attr_min_microvolts.attr,
3425 &dev_attr_max_microvolts.attr,
3426 &dev_attr_min_microamps.attr,
3427 &dev_attr_max_microamps.attr,
3428 &dev_attr_suspend_standby_state.attr,
3429 &dev_attr_suspend_mem_state.attr,
3430 &dev_attr_suspend_disk_state.attr,
3431 &dev_attr_suspend_standby_microvolts.attr,
3432 &dev_attr_suspend_mem_microvolts.attr,
3433 &dev_attr_suspend_disk_microvolts.attr,
3434 &dev_attr_suspend_standby_mode.attr,
3435 &dev_attr_suspend_mem_mode.attr,
3436 &dev_attr_suspend_disk_mode.attr,
3437 NULL
3438};
3439
David Brownell7ad68e22008-11-11 17:39:02 -08003440/*
3441 * To avoid cluttering sysfs (and memory) with useless state, only
3442 * create attributes that can be meaningfully displayed.
3443 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003444static umode_t regulator_attr_is_visible(struct kobject *kobj,
3445 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003446{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003447 struct device *dev = kobj_to_dev(kobj);
3448 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003449 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003450 umode_t mode = attr->mode;
3451
3452 /* these three are always present */
3453 if (attr == &dev_attr_name.attr ||
3454 attr == &dev_attr_num_users.attr ||
3455 attr == &dev_attr_type.attr)
3456 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003457
3458 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003459 if (attr == &dev_attr_microvolts.attr) {
3460 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3461 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3462 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3463 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3464 return mode;
3465 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003466 }
David Brownell7ad68e22008-11-11 17:39:02 -08003467
Takashi Iwai39f802d2015-01-30 20:29:31 +01003468 if (attr == &dev_attr_microamps.attr)
3469 return ops->get_current_limit ? mode : 0;
3470
3471 if (attr == &dev_attr_opmode.attr)
3472 return ops->get_mode ? mode : 0;
3473
3474 if (attr == &dev_attr_state.attr)
3475 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3476
3477 if (attr == &dev_attr_status.attr)
3478 return ops->get_status ? mode : 0;
3479
3480 if (attr == &dev_attr_bypass.attr)
3481 return ops->get_bypass ? mode : 0;
3482
David Brownell7ad68e22008-11-11 17:39:02 -08003483 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003484 if (attr == &dev_attr_requested_microamps.attr)
3485 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003486
3487 /* all the other attributes exist to support constraints;
3488 * don't show them if there are no constraints, or if the
3489 * relevant supporting methods are missing.
3490 */
3491 if (!rdev->constraints)
Takashi Iwai39f802d2015-01-30 20:29:31 +01003492 return 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003493
3494 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003495 if (attr == &dev_attr_min_microvolts.attr ||
3496 attr == &dev_attr_max_microvolts.attr)
3497 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003498
Takashi Iwai39f802d2015-01-30 20:29:31 +01003499 if (attr == &dev_attr_min_microamps.attr ||
3500 attr == &dev_attr_max_microamps.attr)
3501 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003502
Takashi Iwai39f802d2015-01-30 20:29:31 +01003503 if (attr == &dev_attr_suspend_standby_state.attr ||
3504 attr == &dev_attr_suspend_mem_state.attr ||
3505 attr == &dev_attr_suspend_disk_state.attr)
3506 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003507
Takashi Iwai39f802d2015-01-30 20:29:31 +01003508 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3509 attr == &dev_attr_suspend_mem_microvolts.attr ||
3510 attr == &dev_attr_suspend_disk_microvolts.attr)
3511 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003512
Takashi Iwai39f802d2015-01-30 20:29:31 +01003513 if (attr == &dev_attr_suspend_standby_mode.attr ||
3514 attr == &dev_attr_suspend_mem_mode.attr ||
3515 attr == &dev_attr_suspend_disk_mode.attr)
3516 return ops->set_suspend_mode ? mode : 0;
3517
3518 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003519}
3520
Takashi Iwai39f802d2015-01-30 20:29:31 +01003521static const struct attribute_group regulator_dev_group = {
3522 .attrs = regulator_dev_attrs,
3523 .is_visible = regulator_attr_is_visible,
3524};
3525
3526static const struct attribute_group *regulator_dev_groups[] = {
3527 &regulator_dev_group,
3528 NULL
3529};
3530
3531static void regulator_dev_release(struct device *dev)
3532{
3533 struct regulator_dev *rdev = dev_get_drvdata(dev);
3534 kfree(rdev);
3535}
3536
3537static struct class regulator_class = {
3538 .name = "regulator",
3539 .dev_release = regulator_dev_release,
3540 .dev_groups = regulator_dev_groups,
3541};
3542
Mark Brown1130e5b2010-12-21 23:49:31 +00003543static void rdev_init_debugfs(struct regulator_dev *rdev)
3544{
Mark Brown1130e5b2010-12-21 23:49:31 +00003545 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003546 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003547 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003548 return;
3549 }
3550
3551 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3552 &rdev->use_count);
3553 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3554 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003555 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3556 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003557}
3558
Liam Girdwood414c70c2008-04-30 15:59:04 +01003559/**
3560 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003561 * @regulator_desc: regulator to register
Mark Brownc1727082012-04-04 00:50:22 +01003562 * @config: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003563 *
3564 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003565 * Returns a valid pointer to struct regulator_dev on success
3566 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003567 */
Mark Brown65f26842012-04-03 20:46:53 +01003568struct regulator_dev *
3569regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc1727082012-04-04 00:50:22 +01003570 const struct regulator_config *config)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003571{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003572 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003573 const struct regulator_init_data *init_data;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303574 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003575 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003576 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003577 int ret, i;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303578 const char *supply = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003579
Mark Brownc1727082012-04-04 00:50:22 +01003580 if (regulator_desc == NULL || config == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003581 return ERR_PTR(-EINVAL);
3582
Mark Brown32c8fad2012-04-11 10:19:12 +01003583 dev = config->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003584 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003585
Liam Girdwood414c70c2008-04-30 15:59:04 +01003586 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3587 return ERR_PTR(-EINVAL);
3588
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003589 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3590 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003591 return ERR_PTR(-EINVAL);
3592
Mark Brown476c2d82010-12-10 17:28:07 +00003593 /* Only one of each should be implemented */
3594 WARN_ON(regulator_desc->ops->get_voltage &&
3595 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003596 WARN_ON(regulator_desc->ops->set_voltage &&
3597 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003598
3599 /* If we're using selectors we must implement list_voltage. */
3600 if (regulator_desc->ops->get_voltage_sel &&
3601 !regulator_desc->ops->list_voltage) {
3602 return ERR_PTR(-EINVAL);
3603 }
Mark Browne8eef822010-12-12 14:36:17 +00003604 if (regulator_desc->ops->set_voltage_sel &&
3605 !regulator_desc->ops->list_voltage) {
3606 return ERR_PTR(-EINVAL);
3607 }
Mark Brown476c2d82010-12-10 17:28:07 +00003608
Liam Girdwood414c70c2008-04-30 15:59:04 +01003609 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3610 if (rdev == NULL)
3611 return ERR_PTR(-ENOMEM);
3612
Mark Browna0c7b162014-09-09 23:13:57 +01003613 init_data = regulator_of_get_init_data(dev, regulator_desc,
3614 &rdev->dev.of_node);
3615 if (!init_data) {
3616 init_data = config->init_data;
3617 rdev->dev.of_node = of_node_get(config->of_node);
3618 }
3619
Liam Girdwood414c70c2008-04-30 15:59:04 +01003620 mutex_lock(&regulator_list_mutex);
3621
3622 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003623 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003624 rdev->owner = regulator_desc->owner;
3625 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003626 if (config->regmap)
3627 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303628 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003629 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303630 else if (dev->parent)
3631 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003632 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003633 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003634 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003635 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003636
Liam Girdwooda5766f12008-10-10 13:22:20 +01003637 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003638 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003639 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003640 if (ret < 0)
3641 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003642 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003643
Liam Girdwooda5766f12008-10-10 13:22:20 +01003644 /* register with sysfs */
3645 rdev->dev.class = &regulator_class;
3646 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303647 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303648 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003649 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003650 if (ret != 0) {
3651 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003652 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003653 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003654
3655 dev_set_drvdata(&rdev->dev, rdev);
3656
Markus Pargmann76f439d2014-10-08 15:47:05 +02003657 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3658 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003659 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003660 if (ret != 0) {
3661 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3662 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003663 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003664 }
3665
Mark Brown65f73502012-06-27 14:14:38 +01003666 if (config->ena_gpio_flags & GPIOF_OUT_INIT_HIGH)
3667 rdev->ena_gpio_state = 1;
3668
Kim, Milo7b74d142013-02-18 06:50:55 +00003669 if (config->ena_gpio_invert)
Mark Brown65f73502012-06-27 14:14:38 +01003670 rdev->ena_gpio_state = !rdev->ena_gpio_state;
3671 }
3672
Mike Rapoport74f544c2008-11-25 14:53:53 +02003673 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003674 if (init_data)
3675 constraints = &init_data->constraints;
3676
3677 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003678 if (ret < 0)
3679 goto scrub;
3680
Mark Brown9a8f5e02011-11-29 18:11:19 +00003681 if (init_data && init_data->supply_regulator)
Rajendra Nayak69511a42011-11-18 16:47:20 +05303682 supply = init_data->supply_regulator;
3683 else if (regulator_desc->supply_name)
3684 supply = regulator_desc->supply_name;
3685
3686 if (supply) {
Mark Brown0178f3e2010-04-26 15:18:14 +01003687 struct regulator_dev *r;
Mark Brown0178f3e2010-04-26 15:18:14 +01003688
Mark Brown6d191a52012-03-29 14:19:02 +01003689 r = regulator_dev_lookup(dev, supply, &ret);
Mark Brown0178f3e2010-04-26 15:18:14 +01003690
Andrew Bresticker0f7b87f2013-04-04 15:27:47 -07003691 if (ret == -ENODEV) {
3692 /*
3693 * No supply was specified for this regulator and
3694 * there will never be one.
3695 */
3696 ret = 0;
3697 goto add_dev;
3698 } else if (!r) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05303699 dev_err(dev, "Failed to find supply %s\n", supply);
Mark Brown04bf3012012-03-11 13:07:56 +00003700 ret = -EPROBE_DEFER;
Mark Brown0178f3e2010-04-26 15:18:14 +01003701 goto scrub;
3702 }
3703
3704 ret = set_supply(rdev, r);
3705 if (ret < 0)
3706 goto scrub;
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303707
3708 /* Enable supply if rail is enabled */
Mark Brownb1a86832012-05-14 00:40:14 +01003709 if (_regulator_is_enabled(rdev)) {
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303710 ret = regulator_enable(rdev->supply);
3711 if (ret < 0)
3712 goto scrub;
3713 }
Mark Brown0178f3e2010-04-26 15:18:14 +01003714 }
3715
Andrew Bresticker0f7b87f2013-04-04 15:27:47 -07003716add_dev:
Liam Girdwooda5766f12008-10-10 13:22:20 +01003717 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003718 if (init_data) {
3719 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3720 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003721 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003722 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003723 if (ret < 0) {
3724 dev_err(dev, "Failed to set supply %s\n",
3725 init_data->consumer_supplies[i].supply);
3726 goto unset_supplies;
3727 }
Mark Brown23c2f042011-02-24 17:39:09 +00003728 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003729 }
3730
3731 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003732
3733 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003734out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003735 mutex_unlock(&regulator_list_mutex);
3736 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003737
Jani Nikulad4033b52010-04-29 10:55:11 +03003738unset_supplies:
3739 unset_regulator_supplies(rdev);
3740
David Brownell4fca9542008-11-11 17:38:53 -08003741scrub:
Mark Browne81dba852012-05-13 18:35:56 +01003742 if (rdev->supply)
Charles Keepax23ff2f02012-11-14 09:39:31 +00003743 _regulator_put(rdev->supply);
Kim, Milof19b00d2013-02-18 06:50:39 +00003744 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003745 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003746wash:
David Brownell4fca9542008-11-11 17:38:53 -08003747 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003748 /* device core frees rdev */
3749 rdev = ERR_PTR(ret);
3750 goto out;
3751
David Brownell4fca9542008-11-11 17:38:53 -08003752clean:
3753 kfree(rdev);
3754 rdev = ERR_PTR(ret);
3755 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003756}
3757EXPORT_SYMBOL_GPL(regulator_register);
3758
3759/**
3760 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003761 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003762 *
3763 * Called by regulator drivers to unregister a regulator.
3764 */
3765void regulator_unregister(struct regulator_dev *rdev)
3766{
3767 if (rdev == NULL)
3768 return;
3769
Mark Brown891636e2013-07-08 09:14:45 +01003770 if (rdev->supply) {
3771 while (rdev->use_count--)
3772 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003773 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003774 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003775 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003776 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003777 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003778 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003779 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003780 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003781 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003782 regulator_ena_gpio_free(rdev);
Charles Keepax63c7c9e2014-04-03 15:32:17 +01003783 of_node_put(rdev->dev.of_node);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003784 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003785 mutex_unlock(&regulator_list_mutex);
3786}
3787EXPORT_SYMBOL_GPL(regulator_unregister);
3788
3789/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003790 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003791 * @state: system suspend state
3792 *
3793 * Configure each regulator with it's suspend operating parameters for state.
3794 * This will usually be called by machine suspend code prior to supending.
3795 */
3796int regulator_suspend_prepare(suspend_state_t state)
3797{
3798 struct regulator_dev *rdev;
3799 int ret = 0;
3800
3801 /* ON is handled by regulator active state */
3802 if (state == PM_SUSPEND_ON)
3803 return -EINVAL;
3804
3805 mutex_lock(&regulator_list_mutex);
3806 list_for_each_entry(rdev, &regulator_list, list) {
3807
3808 mutex_lock(&rdev->mutex);
3809 ret = suspend_prepare(rdev, state);
3810 mutex_unlock(&rdev->mutex);
3811
3812 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003813 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003814 goto out;
3815 }
3816 }
3817out:
3818 mutex_unlock(&regulator_list_mutex);
3819 return ret;
3820}
3821EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3822
3823/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003824 * regulator_suspend_finish - resume regulators from system wide suspend
3825 *
3826 * Turn on regulators that might be turned off by regulator_suspend_prepare
3827 * and that should be turned on according to the regulators properties.
3828 */
3829int regulator_suspend_finish(void)
3830{
3831 struct regulator_dev *rdev;
3832 int ret = 0, error;
3833
3834 mutex_lock(&regulator_list_mutex);
3835 list_for_each_entry(rdev, &regulator_list, list) {
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003836 mutex_lock(&rdev->mutex);
Markus Pargmann30c21972014-02-20 17:36:03 +01003837 if (rdev->use_count > 0 || rdev->constraints->always_on) {
3838 error = _regulator_do_enable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003839 if (error)
3840 ret = error;
3841 } else {
Mark Brown87b28412013-11-27 16:13:10 +00003842 if (!have_full_constraints())
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003843 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003844 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003845 goto unlock;
3846
Markus Pargmann66fda752014-02-20 17:36:04 +01003847 error = _regulator_do_disable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003848 if (error)
3849 ret = error;
3850 }
3851unlock:
3852 mutex_unlock(&rdev->mutex);
3853 }
3854 mutex_unlock(&regulator_list_mutex);
3855 return ret;
3856}
3857EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3858
3859/**
Mark Brownca725562009-03-16 19:36:34 +00003860 * regulator_has_full_constraints - the system has fully specified constraints
3861 *
3862 * Calling this function will cause the regulator API to disable all
3863 * regulators which have a zero use count and don't have an always_on
3864 * constraint in a late_initcall.
3865 *
3866 * The intention is that this will become the default behaviour in a
3867 * future kernel release so users are encouraged to use this facility
3868 * now.
3869 */
3870void regulator_has_full_constraints(void)
3871{
3872 has_full_constraints = 1;
3873}
3874EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3875
3876/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003877 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003878 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003879 *
3880 * Get rdev regulator driver private data. This call can be used in the
3881 * regulator driver context.
3882 */
3883void *rdev_get_drvdata(struct regulator_dev *rdev)
3884{
3885 return rdev->reg_data;
3886}
3887EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3888
3889/**
3890 * regulator_get_drvdata - get regulator driver data
3891 * @regulator: regulator
3892 *
3893 * Get regulator driver private data. This call can be used in the consumer
3894 * driver context when non API regulator specific functions need to be called.
3895 */
3896void *regulator_get_drvdata(struct regulator *regulator)
3897{
3898 return regulator->rdev->reg_data;
3899}
3900EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3901
3902/**
3903 * regulator_set_drvdata - set regulator driver data
3904 * @regulator: regulator
3905 * @data: data
3906 */
3907void regulator_set_drvdata(struct regulator *regulator, void *data)
3908{
3909 regulator->rdev->reg_data = data;
3910}
3911EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3912
3913/**
3914 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003915 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003916 */
3917int rdev_get_id(struct regulator_dev *rdev)
3918{
3919 return rdev->desc->id;
3920}
3921EXPORT_SYMBOL_GPL(rdev_get_id);
3922
Liam Girdwooda5766f12008-10-10 13:22:20 +01003923struct device *rdev_get_dev(struct regulator_dev *rdev)
3924{
3925 return &rdev->dev;
3926}
3927EXPORT_SYMBOL_GPL(rdev_get_dev);
3928
3929void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3930{
3931 return reg_init_data->driver_data;
3932}
3933EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3934
Mark Brownba55a972011-08-23 17:39:10 +01003935#ifdef CONFIG_DEBUG_FS
3936static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3937 size_t count, loff_t *ppos)
3938{
3939 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3940 ssize_t len, ret = 0;
3941 struct regulator_map *map;
3942
3943 if (!buf)
3944 return -ENOMEM;
3945
3946 list_for_each_entry(map, &regulator_map_list, list) {
3947 len = snprintf(buf + ret, PAGE_SIZE - ret,
3948 "%s -> %s.%s\n",
3949 rdev_get_name(map->regulator), map->dev_name,
3950 map->supply);
3951 if (len >= 0)
3952 ret += len;
3953 if (ret > PAGE_SIZE) {
3954 ret = PAGE_SIZE;
3955 break;
3956 }
3957 }
3958
3959 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3960
3961 kfree(buf);
3962
3963 return ret;
3964}
Stephen Boyd24751432012-02-20 22:50:42 -08003965#endif
Mark Brownba55a972011-08-23 17:39:10 +01003966
3967static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003968#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003969 .read = supply_map_read_file,
3970 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003971#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003972};
Mark Brownba55a972011-08-23 17:39:10 +01003973
Liam Girdwood414c70c2008-04-30 15:59:04 +01003974static int __init regulator_init(void)
3975{
Mark Brown34abbd62010-02-12 10:18:08 +00003976 int ret;
3977
Mark Brown34abbd62010-02-12 10:18:08 +00003978 ret = class_register(&regulator_class);
3979
Mark Brown1130e5b2010-12-21 23:49:31 +00003980 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08003981 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00003982 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01003983
Mark Brownf4d562c2012-02-20 21:01:04 +00003984 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
3985 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00003986
Mark Brown34abbd62010-02-12 10:18:08 +00003987 regulator_dummy_init();
3988
3989 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003990}
3991
3992/* init early to allow our consumers to complete system booting */
3993core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00003994
3995static int __init regulator_init_complete(void)
3996{
3997 struct regulator_dev *rdev;
Guodong Xu272e2312014-08-13 19:33:38 +08003998 const struct regulator_ops *ops;
Mark Brownca725562009-03-16 19:36:34 +00003999 struct regulation_constraints *c;
4000 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004001
Mark Brown86f5fcf2012-07-06 18:19:13 +01004002 /*
4003 * Since DT doesn't provide an idiomatic mechanism for
4004 * enabling full constraints and since it's much more natural
4005 * with DT to provide them just assume that a DT enabled
4006 * system has full constraints.
4007 */
4008 if (of_have_populated_dt())
4009 has_full_constraints = true;
4010
Mark Brownca725562009-03-16 19:36:34 +00004011 mutex_lock(&regulator_list_mutex);
4012
4013 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004014 * we have permission to change the status for and which are
4015 * not in use or always_on. This is effectively the default
4016 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004017 */
4018 list_for_each_entry(rdev, &regulator_list, list) {
4019 ops = rdev->desc->ops;
4020 c = rdev->constraints;
4021
Markus Pargmann66fda752014-02-20 17:36:04 +01004022 if (c && c->always_on)
Mark Brownca725562009-03-16 19:36:34 +00004023 continue;
4024
Mark Browne9535832014-06-01 19:15:16 +01004025 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
4026 continue;
4027
Mark Brownca725562009-03-16 19:36:34 +00004028 mutex_lock(&rdev->mutex);
4029
4030 if (rdev->use_count)
4031 goto unlock;
4032
4033 /* If we can't read the status assume it's on. */
4034 if (ops->is_enabled)
4035 enabled = ops->is_enabled(rdev);
4036 else
4037 enabled = 1;
4038
4039 if (!enabled)
4040 goto unlock;
4041
Mark Brown87b28412013-11-27 16:13:10 +00004042 if (have_full_constraints()) {
Mark Brownca725562009-03-16 19:36:34 +00004043 /* We log since this may kill the system if it
4044 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08004045 rdev_info(rdev, "disabling\n");
Markus Pargmann66fda752014-02-20 17:36:04 +01004046 ret = _regulator_do_disable(rdev);
Jingoo Han0d25d092014-01-08 10:02:16 +09004047 if (ret != 0)
Joe Perches5da84fd2010-11-30 05:53:48 -08004048 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00004049 } else {
4050 /* The intention is that in future we will
4051 * assume that full constraints are provided
4052 * so warn even if we aren't going to do
4053 * anything here.
4054 */
Joe Perches5da84fd2010-11-30 05:53:48 -08004055 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00004056 }
4057
4058unlock:
4059 mutex_unlock(&rdev->mutex);
4060 }
4061
4062 mutex_unlock(&regulator_list_mutex);
4063
4064 return 0;
4065}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004066late_initcall_sync(regulator_init_complete);