blob: 443eaab933fcfe680d5e402f72bbe7c55c3ae391 [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 */
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800637static int drms_uA_update(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100638{
639 struct regulator *sibling;
640 int current_uA = 0, output_uV, input_uV, err;
641 unsigned int mode;
642
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800643 /*
644 * first check to see if we can set modes at all, otherwise just
645 * tell the consumer everything is OK.
646 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100647 err = regulator_check_drms(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800648 if (err < 0)
649 return 0;
650
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800651 if (!rdev->desc->ops->get_optimum_mode &&
652 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800653 return 0;
654
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800655 if (!rdev->desc->ops->set_mode &&
656 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800657 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100658
659 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000660 output_uV = _regulator_get_voltage(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800661 if (output_uV <= 0) {
662 rdev_err(rdev, "invalid output voltage found\n");
663 return -EINVAL;
664 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100665
666 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000667 input_uV = 0;
668 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800669 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000670 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100671 input_uV = rdev->constraints->input_uV;
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800672 if (input_uV <= 0) {
673 rdev_err(rdev, "invalid input voltage found\n");
674 return -EINVAL;
675 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100676
677 /* calc total requested load */
678 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100679 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100680
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800681 if (rdev->desc->ops->set_load) {
682 /* set the optimum mode for our new total regulator load */
683 err = rdev->desc->ops->set_load(rdev, current_uA);
684 if (err < 0)
685 rdev_err(rdev, "failed to set load %d\n", current_uA);
686 } else {
687 /* now get the optimum mode for our new total regulator load */
688 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
689 output_uV, current_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100690
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800691 /* check the new mode is allowed */
692 err = regulator_mode_constrain(rdev, &mode);
693 if (err < 0) {
694 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
695 current_uA, input_uV, output_uV);
696 return err;
697 }
698
699 err = rdev->desc->ops->set_mode(rdev, mode);
700 if (err < 0)
701 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800702 }
703
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800704 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100705}
706
707static int suspend_set_state(struct regulator_dev *rdev,
708 struct regulator_state *rstate)
709{
710 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100711
712 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800713 * only warn if the driver implements set_suspend_voltage or
714 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100715 */
716 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800717 if (rdev->desc->ops->set_suspend_voltage ||
718 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800719 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100720 return 0;
721 }
722
723 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800724 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100725 return -EINVAL;
726 }
727
Axel Lin8ac0e952012-04-14 09:14:34 +0800728 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100729 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800730 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100731 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800732 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
733 ret = 0;
734
Liam Girdwood414c70c2008-04-30 15:59:04 +0100735 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800736 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100737 return ret;
738 }
739
740 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
741 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
742 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800743 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100744 return ret;
745 }
746 }
747
748 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
749 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
750 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800751 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100752 return ret;
753 }
754 }
755 return ret;
756}
757
758/* locks held by caller */
759static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
760{
761 if (!rdev->constraints)
762 return -EINVAL;
763
764 switch (state) {
765 case PM_SUSPEND_STANDBY:
766 return suspend_set_state(rdev,
767 &rdev->constraints->state_standby);
768 case PM_SUSPEND_MEM:
769 return suspend_set_state(rdev,
770 &rdev->constraints->state_mem);
771 case PM_SUSPEND_MAX:
772 return suspend_set_state(rdev,
773 &rdev->constraints->state_disk);
774 default:
775 return -EINVAL;
776 }
777}
778
779static void print_constraints(struct regulator_dev *rdev)
780{
781 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000782 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100783 int count = 0;
784 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100785
Mark Brown8f031b42009-10-22 16:31:31 +0100786 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100787 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100788 count += sprintf(buf + count, "%d mV ",
789 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100790 else
Mark Brown8f031b42009-10-22 16:31:31 +0100791 count += sprintf(buf + count, "%d <--> %d mV ",
792 constraints->min_uV / 1000,
793 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100794 }
Mark Brown8f031b42009-10-22 16:31:31 +0100795
796 if (!constraints->min_uV ||
797 constraints->min_uV != constraints->max_uV) {
798 ret = _regulator_get_voltage(rdev);
799 if (ret > 0)
800 count += sprintf(buf + count, "at %d mV ", ret / 1000);
801 }
802
Mark Brownbf5892a2011-05-08 22:13:37 +0100803 if (constraints->uV_offset)
804 count += sprintf(buf, "%dmV offset ",
805 constraints->uV_offset / 1000);
806
Mark Brown8f031b42009-10-22 16:31:31 +0100807 if (constraints->min_uA && constraints->max_uA) {
808 if (constraints->min_uA == constraints->max_uA)
809 count += sprintf(buf + count, "%d mA ",
810 constraints->min_uA / 1000);
811 else
812 count += sprintf(buf + count, "%d <--> %d mA ",
813 constraints->min_uA / 1000,
814 constraints->max_uA / 1000);
815 }
816
817 if (!constraints->min_uA ||
818 constraints->min_uA != constraints->max_uA) {
819 ret = _regulator_get_current_limit(rdev);
820 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400821 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100822 }
823
Liam Girdwood414c70c2008-04-30 15:59:04 +0100824 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
825 count += sprintf(buf + count, "fast ");
826 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
827 count += sprintf(buf + count, "normal ");
828 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
829 count += sprintf(buf + count, "idle ");
830 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
831 count += sprintf(buf + count, "standby");
832
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200833 if (!count)
834 sprintf(buf, "no parameters");
835
Mark Brown194dbae2014-10-31 19:11:59 +0000836 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000837
838 if ((constraints->min_uV != constraints->max_uV) &&
839 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
840 rdev_warn(rdev,
841 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100842}
843
Mark Browne79055d2009-10-19 15:53:50 +0100844static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100845 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100846{
Guodong Xu272e2312014-08-13 19:33:38 +0800847 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100848 int ret;
849
850 /* do we need to apply the constraint voltage */
851 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000852 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200853 int current_uV = _regulator_get_voltage(rdev);
854 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500855 rdev_err(rdev,
856 "failed to get the current voltage(%d)\n",
857 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200858 return current_uV;
859 }
860 if (current_uV < rdev->constraints->min_uV ||
861 current_uV > rdev->constraints->max_uV) {
862 ret = _regulator_do_set_voltage(
863 rdev, rdev->constraints->min_uV,
864 rdev->constraints->max_uV);
865 if (ret < 0) {
866 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500867 "failed to apply %duV constraint(%d)\n",
868 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200869 return ret;
870 }
Mark Brown75790252010-12-12 14:25:50 +0000871 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100872 }
Mark Browne79055d2009-10-19 15:53:50 +0100873
874 /* constrain machine-level voltage specs to fit
875 * the actual range supported by this regulator.
876 */
877 if (ops->list_voltage && rdev->desc->n_voltages) {
878 int count = rdev->desc->n_voltages;
879 int i;
880 int min_uV = INT_MAX;
881 int max_uV = INT_MIN;
882 int cmin = constraints->min_uV;
883 int cmax = constraints->max_uV;
884
885 /* it's safe to autoconfigure fixed-voltage supplies
886 and the constraints are used by list_voltage. */
887 if (count == 1 && !cmin) {
888 cmin = 1;
889 cmax = INT_MAX;
890 constraints->min_uV = cmin;
891 constraints->max_uV = cmax;
892 }
893
894 /* voltage constraints are optional */
895 if ((cmin == 0) && (cmax == 0))
896 return 0;
897
898 /* else require explicit machine-level constraints */
899 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800900 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100901 return -EINVAL;
902 }
903
904 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
905 for (i = 0; i < count; i++) {
906 int value;
907
908 value = ops->list_voltage(rdev, i);
909 if (value <= 0)
910 continue;
911
912 /* maybe adjust [min_uV..max_uV] */
913 if (value >= cmin && value < min_uV)
914 min_uV = value;
915 if (value <= cmax && value > max_uV)
916 max_uV = value;
917 }
918
919 /* final: [min_uV..max_uV] valid iff constraints valid */
920 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000921 rdev_err(rdev,
922 "unsupportable voltage constraints %u-%uuV\n",
923 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100924 return -EINVAL;
925 }
926
927 /* use regulator's subset of machine constraints */
928 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800929 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
930 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100931 constraints->min_uV = min_uV;
932 }
933 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800934 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
935 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100936 constraints->max_uV = max_uV;
937 }
938 }
939
940 return 0;
941}
942
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530943static int machine_constraints_current(struct regulator_dev *rdev,
944 struct regulation_constraints *constraints)
945{
Guodong Xu272e2312014-08-13 19:33:38 +0800946 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530947 int ret;
948
949 if (!constraints->min_uA && !constraints->max_uA)
950 return 0;
951
952 if (constraints->min_uA > constraints->max_uA) {
953 rdev_err(rdev, "Invalid current constraints\n");
954 return -EINVAL;
955 }
956
957 if (!ops->set_current_limit || !ops->get_current_limit) {
958 rdev_warn(rdev, "Operation of current configuration missing\n");
959 return 0;
960 }
961
962 /* Set regulator current in constraints range */
963 ret = ops->set_current_limit(rdev, constraints->min_uA,
964 constraints->max_uA);
965 if (ret < 0) {
966 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
967 return ret;
968 }
969
970 return 0;
971}
972
Markus Pargmann30c21972014-02-20 17:36:03 +0100973static int _regulator_do_enable(struct regulator_dev *rdev);
974
Liam Girdwooda5766f12008-10-10 13:22:20 +0100975/**
976 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000977 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000978 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100979 *
980 * Allows platform initialisation code to define and constrain
981 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
982 * Constraints *must* be set by platform code in order for some
983 * regulator operations to proceed i.e. set_voltage, set_current_limit,
984 * set_mode.
985 */
986static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000987 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100988{
989 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +0800990 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100991
Mark Brown9a8f5e02011-11-29 18:11:19 +0000992 if (constraints)
993 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
994 GFP_KERNEL);
995 else
996 rdev->constraints = kzalloc(sizeof(*constraints),
997 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +0000998 if (!rdev->constraints)
999 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001000
Mark Brownf8c12fe2010-11-29 15:55:17 +00001001 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001002 if (ret != 0)
1003 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -08001004
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301005 ret = machine_constraints_current(rdev, rdev->constraints);
1006 if (ret != 0)
1007 goto out;
1008
Liam Girdwooda5766f12008-10-10 13:22:20 +01001009 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001010 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001011 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001012 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001013 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +01001014 goto out;
1015 }
1016 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001017
Mark Brown9a8f5e02011-11-29 18:11:19 +00001018 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001019 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001020 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +00001021 ret = -EINVAL;
1022 goto out;
1023 }
1024
Mark Brownf8c12fe2010-11-29 15:55:17 +00001025 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001026 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001027 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +00001028 goto out;
1029 }
1030 }
1031
Mark Browncacf90f2009-03-02 16:32:46 +00001032 /* If the constraints say the regulator should be on at this point
1033 * and we have control then make sure it is enabled.
1034 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001035 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1036 ret = _regulator_do_enable(rdev);
1037 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001038 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001039 goto out;
1040 }
1041 }
1042
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301043 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1044 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301045 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1046 if (ret < 0) {
1047 rdev_err(rdev, "failed to set ramp_delay\n");
1048 goto out;
1049 }
1050 }
1051
Liam Girdwooda5766f12008-10-10 13:22:20 +01001052 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001053 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001054out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001055 kfree(rdev->constraints);
1056 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001057 return ret;
1058}
1059
1060/**
1061 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001062 * @rdev: regulator name
1063 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001064 *
1065 * Called by platform initialisation code to set the supply regulator for this
1066 * regulator. This ensures that a regulators supply will also be enabled by the
1067 * core if it's child is enabled.
1068 */
1069static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001070 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001071{
1072 int err;
1073
Mark Brown3801b862011-06-09 16:22:22 +01001074 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1075
1076 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001077 if (rdev->supply == NULL) {
1078 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001079 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001080 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301081 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001082
1083 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001084}
1085
1086/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001087 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001088 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001089 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001090 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001091 *
1092 * Allows platform initialisation code to map physical regulator
1093 * sources to symbolic names for supplies for use by devices. Devices
1094 * should use these symbolic names to request regulators, avoiding the
1095 * need to provide board-specific regulator names as platform data.
1096 */
1097static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001098 const char *consumer_dev_name,
1099 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001100{
1101 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001102 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001103
1104 if (supply == NULL)
1105 return -EINVAL;
1106
Mark Brown9ed20992009-07-21 16:00:26 +01001107 if (consumer_dev_name != NULL)
1108 has_dev = 1;
1109 else
1110 has_dev = 0;
1111
David Brownell6001e132008-12-31 12:54:19 +00001112 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001113 if (node->dev_name && consumer_dev_name) {
1114 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1115 continue;
1116 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001117 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001118 }
1119
David Brownell6001e132008-12-31 12:54:19 +00001120 if (strcmp(node->supply, supply) != 0)
1121 continue;
1122
Mark Brown737f3602012-02-02 00:10:51 +00001123 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1124 consumer_dev_name,
1125 dev_name(&node->regulator->dev),
1126 node->regulator->desc->name,
1127 supply,
1128 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001129 return -EBUSY;
1130 }
1131
Mark Brown9ed20992009-07-21 16:00:26 +01001132 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001133 if (node == NULL)
1134 return -ENOMEM;
1135
1136 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001137 node->supply = supply;
1138
Mark Brown9ed20992009-07-21 16:00:26 +01001139 if (has_dev) {
1140 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1141 if (node->dev_name == NULL) {
1142 kfree(node);
1143 return -ENOMEM;
1144 }
Mark Brown40f92442009-06-17 17:56:39 +01001145 }
1146
Liam Girdwooda5766f12008-10-10 13:22:20 +01001147 list_add(&node->list, &regulator_map_list);
1148 return 0;
1149}
1150
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001151static void unset_regulator_supplies(struct regulator_dev *rdev)
1152{
1153 struct regulator_map *node, *n;
1154
1155 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1156 if (rdev == node->regulator) {
1157 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001158 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001159 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001160 }
1161 }
1162}
1163
Mark Brownf5726ae2011-06-09 16:22:20 +01001164#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001165
1166static struct regulator *create_regulator(struct regulator_dev *rdev,
1167 struct device *dev,
1168 const char *supply_name)
1169{
1170 struct regulator *regulator;
1171 char buf[REG_STR_SIZE];
1172 int err, size;
1173
1174 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1175 if (regulator == NULL)
1176 return NULL;
1177
1178 mutex_lock(&rdev->mutex);
1179 regulator->rdev = rdev;
1180 list_add(&regulator->list, &rdev->consumer_list);
1181
1182 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001183 regulator->dev = dev;
1184
Mark Brown222cc7b2012-06-22 11:39:16 +01001185 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001186 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1187 dev->kobj.name, supply_name);
1188 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001189 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001190
1191 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1192 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001193 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001194
1195 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1196 buf);
1197 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001198 rdev_warn(rdev, "could not add device link %s err %d\n",
1199 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001200 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001201 }
Mark Brown5de70512011-06-19 13:33:16 +01001202 } else {
1203 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1204 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001205 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001206 }
Mark Brown5de70512011-06-19 13:33:16 +01001207
Mark Brown5de70512011-06-19 13:33:16 +01001208 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1209 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001210 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001211 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001212 } else {
1213 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1214 &regulator->uA_load);
1215 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1216 &regulator->min_uV);
1217 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1218 &regulator->max_uV);
1219 }
Mark Brown5de70512011-06-19 13:33:16 +01001220
Mark Brown6492bc12012-04-19 13:19:07 +01001221 /*
1222 * Check now if the regulator is an always on regulator - if
1223 * it is then we don't need to do nearly so much work for
1224 * enable/disable calls.
1225 */
1226 if (!_regulator_can_change_status(rdev) &&
1227 _regulator_is_enabled(rdev))
1228 regulator->always_on = true;
1229
Liam Girdwood414c70c2008-04-30 15:59:04 +01001230 mutex_unlock(&rdev->mutex);
1231 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001232overflow_err:
1233 list_del(&regulator->list);
1234 kfree(regulator);
1235 mutex_unlock(&rdev->mutex);
1236 return NULL;
1237}
1238
Mark Brown31aae2b2009-12-21 12:21:52 +00001239static int _regulator_get_enable_time(struct regulator_dev *rdev)
1240{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301241 if (rdev->constraints && rdev->constraints->enable_time)
1242 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001243 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001244 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001245 return rdev->desc->ops->enable_time(rdev);
1246}
1247
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001248static struct regulator_supply_alias *regulator_find_supply_alias(
1249 struct device *dev, const char *supply)
1250{
1251 struct regulator_supply_alias *map;
1252
1253 list_for_each_entry(map, &regulator_supply_alias_list, list)
1254 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1255 return map;
1256
1257 return NULL;
1258}
1259
1260static void regulator_supply_alias(struct device **dev, const char **supply)
1261{
1262 struct regulator_supply_alias *map;
1263
1264 map = regulator_find_supply_alias(*dev, *supply);
1265 if (map) {
1266 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1267 *supply, map->alias_supply,
1268 dev_name(map->alias_dev));
1269 *dev = map->alias_dev;
1270 *supply = map->alias_supply;
1271 }
1272}
1273
Rajendra Nayak69511a42011-11-18 16:47:20 +05301274static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001275 const char *supply,
1276 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301277{
1278 struct regulator_dev *r;
1279 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001280 struct regulator_map *map;
1281 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301282
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001283 regulator_supply_alias(&dev, &supply);
1284
Rajendra Nayak69511a42011-11-18 16:47:20 +05301285 /* first do a dt based lookup */
1286 if (dev && dev->of_node) {
1287 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001288 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301289 list_for_each_entry(r, &regulator_list, list)
1290 if (r->dev.parent &&
1291 node == r->dev.of_node)
1292 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001293 *ret = -EPROBE_DEFER;
1294 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001295 } else {
1296 /*
1297 * If we couldn't even get the node then it's
1298 * not just that the device didn't register
1299 * yet, there's no node and we'll never
1300 * succeed.
1301 */
1302 *ret = -ENODEV;
1303 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301304 }
1305
1306 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001307 if (dev)
1308 devname = dev_name(dev);
1309
Rajendra Nayak69511a42011-11-18 16:47:20 +05301310 list_for_each_entry(r, &regulator_list, list)
1311 if (strcmp(rdev_get_name(r), supply) == 0)
1312 return r;
1313
Mark Brown576ca4362012-03-30 12:24:37 +01001314 list_for_each_entry(map, &regulator_map_list, list) {
1315 /* If the mapping has a device set up it must match */
1316 if (map->dev_name &&
1317 (!devname || strcmp(map->dev_name, devname)))
1318 continue;
1319
1320 if (strcmp(map->supply, supply) == 0)
1321 return map->regulator;
1322 }
1323
1324
Rajendra Nayak69511a42011-11-18 16:47:20 +05301325 return NULL;
1326}
1327
Bjorn Andersson6261b062015-03-24 18:56:05 -07001328static int regulator_resolve_supply(struct regulator_dev *rdev)
1329{
1330 struct regulator_dev *r;
1331 struct device *dev = rdev->dev.parent;
1332 int ret;
1333
1334 /* No supply to resovle? */
1335 if (!rdev->supply_name)
1336 return 0;
1337
1338 /* Supply already resolved? */
1339 if (rdev->supply)
1340 return 0;
1341
1342 r = regulator_dev_lookup(dev, rdev->supply_name, &ret);
1343 if (ret == -ENODEV) {
1344 /*
1345 * No supply was specified for this regulator and
1346 * there will never be one.
1347 */
1348 return 0;
1349 }
1350
1351 if (!r) {
1352 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1353 rdev->supply_name, rdev->desc->name);
1354 return -EPROBE_DEFER;
1355 }
1356
1357 /* Recursively resolve the supply of the supply */
1358 ret = regulator_resolve_supply(r);
1359 if (ret < 0)
1360 return ret;
1361
1362 ret = set_supply(rdev, r);
1363 if (ret < 0)
1364 return ret;
1365
1366 /* Cascade always-on state to supply */
1367 if (_regulator_is_enabled(rdev)) {
1368 ret = regulator_enable(rdev->supply);
1369 if (ret < 0)
1370 return ret;
1371 }
1372
1373 return 0;
1374}
1375
Mark Brown5ffbd132009-07-21 16:00:23 +01001376/* Internal regulator request function */
1377static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001378 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001379{
1380 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001381 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001382 const char *devname = NULL;
Mark Brown317b5682014-01-27 17:34:07 +00001383 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001384
1385 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001386 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001387 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001388 }
1389
Mark Brown40f92442009-06-17 17:56:39 +01001390 if (dev)
1391 devname = dev_name(dev);
1392
Mark Brown317b5682014-01-27 17:34:07 +00001393 if (have_full_constraints())
1394 ret = -ENODEV;
1395 else
1396 ret = -EPROBE_DEFER;
1397
Liam Girdwood414c70c2008-04-30 15:59:04 +01001398 mutex_lock(&regulator_list_mutex);
1399
Mark Brown6d191a52012-03-29 14:19:02 +01001400 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301401 if (rdev)
1402 goto found;
1403
Mark Brownef60abb2013-09-23 16:12:52 +01001404 regulator = ERR_PTR(ret);
1405
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001406 /*
1407 * If we have return value from dev_lookup fail, we do not expect to
1408 * succeed, so, quit with appropriate error value
1409 */
Jingoo Han0d25d092014-01-08 10:02:16 +09001410 if (ret && ret != -ENODEV)
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001411 goto out;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001412
Mark Brown34abbd62010-02-12 10:18:08 +00001413 if (!devname)
1414 devname = "deviceless";
1415
Mark Brown4ddfebd2013-09-13 19:50:37 +01001416 /*
1417 * Assume that a regulator is physically present and enabled
1418 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001419 */
Mark Brown87b28412013-11-27 16:13:10 +00001420 if (have_full_constraints() && allow_dummy) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001421 pr_warn("%s supply %s not found, using dummy regulator\n",
1422 devname, id);
Mark Brown4ddfebd2013-09-13 19:50:37 +01001423
Mark Brown34abbd62010-02-12 10:18:08 +00001424 rdev = dummy_regulator_rdev;
1425 goto found;
Hans de Goede07817192013-12-17 16:24:57 +01001426 /* Don't log an error when called from regulator_get_optional() */
1427 } else if (!have_full_constraints() || exclusive) {
Shuah Khanacc3d5c2014-02-20 12:58:15 -07001428 dev_warn(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001429 }
Mark Brown34abbd62010-02-12 10:18:08 +00001430
Liam Girdwood414c70c2008-04-30 15:59:04 +01001431 mutex_unlock(&regulator_list_mutex);
1432 return regulator;
1433
1434found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001435 if (rdev->exclusive) {
1436 regulator = ERR_PTR(-EPERM);
1437 goto out;
1438 }
1439
1440 if (exclusive && rdev->open_count) {
1441 regulator = ERR_PTR(-EBUSY);
1442 goto out;
1443 }
1444
Bjorn Andersson6261b062015-03-24 18:56:05 -07001445 ret = regulator_resolve_supply(rdev);
1446 if (ret < 0) {
1447 regulator = ERR_PTR(ret);
1448 goto out;
1449 }
1450
Liam Girdwooda5766f12008-10-10 13:22:20 +01001451 if (!try_module_get(rdev->owner))
1452 goto out;
1453
Liam Girdwood414c70c2008-04-30 15:59:04 +01001454 regulator = create_regulator(rdev, dev, id);
1455 if (regulator == NULL) {
1456 regulator = ERR_PTR(-ENOMEM);
1457 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001458 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001459 }
1460
Mark Brown5ffbd132009-07-21 16:00:23 +01001461 rdev->open_count++;
1462 if (exclusive) {
1463 rdev->exclusive = 1;
1464
1465 ret = _regulator_is_enabled(rdev);
1466 if (ret > 0)
1467 rdev->use_count = 1;
1468 else
1469 rdev->use_count = 0;
1470 }
1471
Liam Girdwooda5766f12008-10-10 13:22:20 +01001472out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001473 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001474
Liam Girdwood414c70c2008-04-30 15:59:04 +01001475 return regulator;
1476}
Mark Brown5ffbd132009-07-21 16:00:23 +01001477
1478/**
1479 * regulator_get - lookup and obtain a reference to a regulator.
1480 * @dev: device for regulator "consumer"
1481 * @id: Supply name or regulator ID.
1482 *
1483 * Returns a struct regulator corresponding to the regulator producer,
1484 * or IS_ERR() condition containing errno.
1485 *
1486 * Use of supply names configured via regulator_set_device_supply() is
1487 * strongly encouraged. It is recommended that the supply name used
1488 * should match the name used for the supply and/or the relevant
1489 * device pins in the datasheet.
1490 */
1491struct regulator *regulator_get(struct device *dev, const char *id)
1492{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001493 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001494}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001495EXPORT_SYMBOL_GPL(regulator_get);
1496
Stephen Boyd070b9072012-01-16 19:39:58 -08001497/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001498 * regulator_get_exclusive - obtain exclusive access to a regulator.
1499 * @dev: device for regulator "consumer"
1500 * @id: Supply name or regulator ID.
1501 *
1502 * Returns a struct regulator corresponding to the regulator producer,
1503 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001504 * unable to obtain this regulator while this reference is held and the
1505 * use count for the regulator will be initialised to reflect the current
1506 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001507 *
1508 * This is intended for use by consumers which cannot tolerate shared
1509 * use of the regulator such as those which need to force the
1510 * regulator off for correct operation of the hardware they are
1511 * controlling.
1512 *
1513 * Use of supply names configured via regulator_set_device_supply() is
1514 * strongly encouraged. It is recommended that the supply name used
1515 * should match the name used for the supply and/or the relevant
1516 * device pins in the datasheet.
1517 */
1518struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1519{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001520 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001521}
1522EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1523
Mark Brownde1dd9f2013-07-29 21:42:42 +01001524/**
1525 * regulator_get_optional - obtain optional access to a regulator.
1526 * @dev: device for regulator "consumer"
1527 * @id: Supply name or regulator ID.
1528 *
1529 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001530 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001531 *
1532 * This is intended for use by consumers for devices which can have
1533 * some supplies unconnected in normal use, such as some MMC devices.
1534 * It can allow the regulator core to provide stub supplies for other
1535 * supplies requested using normal regulator_get() calls without
1536 * disrupting the operation of drivers that can handle absent
1537 * supplies.
1538 *
1539 * Use of supply names configured via regulator_set_device_supply() is
1540 * strongly encouraged. It is recommended that the supply name used
1541 * should match the name used for the supply and/or the relevant
1542 * device pins in the datasheet.
1543 */
1544struct regulator *regulator_get_optional(struct device *dev, const char *id)
1545{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001546 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001547}
1548EXPORT_SYMBOL_GPL(regulator_get_optional);
1549
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301550/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001551static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001552{
1553 struct regulator_dev *rdev;
1554
1555 if (regulator == NULL || IS_ERR(regulator))
1556 return;
1557
Liam Girdwood414c70c2008-04-30 15:59:04 +01001558 rdev = regulator->rdev;
1559
Mark Brown5de70512011-06-19 13:33:16 +01001560 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001561
Liam Girdwood414c70c2008-04-30 15:59:04 +01001562 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001563 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001564 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301565 mutex_lock(&rdev->mutex);
Mark Brown5de70512011-06-19 13:33:16 +01001566 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001567 list_del(&regulator->list);
1568 kfree(regulator);
1569
Mark Brown5ffbd132009-07-21 16:00:23 +01001570 rdev->open_count--;
1571 rdev->exclusive = 0;
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301572 mutex_unlock(&rdev->mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001573
Liam Girdwood414c70c2008-04-30 15:59:04 +01001574 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001575}
1576
1577/**
1578 * regulator_put - "free" the regulator source
1579 * @regulator: regulator source
1580 *
1581 * Note: drivers must ensure that all regulator_enable calls made on this
1582 * regulator source are balanced by regulator_disable calls prior to calling
1583 * this function.
1584 */
1585void regulator_put(struct regulator *regulator)
1586{
1587 mutex_lock(&regulator_list_mutex);
1588 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001589 mutex_unlock(&regulator_list_mutex);
1590}
1591EXPORT_SYMBOL_GPL(regulator_put);
1592
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001593/**
1594 * regulator_register_supply_alias - Provide device alias for supply lookup
1595 *
1596 * @dev: device that will be given as the regulator "consumer"
1597 * @id: Supply name or regulator ID
1598 * @alias_dev: device that should be used to lookup the supply
1599 * @alias_id: Supply name or regulator ID that should be used to lookup the
1600 * supply
1601 *
1602 * All lookups for id on dev will instead be conducted for alias_id on
1603 * alias_dev.
1604 */
1605int regulator_register_supply_alias(struct device *dev, const char *id,
1606 struct device *alias_dev,
1607 const char *alias_id)
1608{
1609 struct regulator_supply_alias *map;
1610
1611 map = regulator_find_supply_alias(dev, id);
1612 if (map)
1613 return -EEXIST;
1614
1615 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1616 if (!map)
1617 return -ENOMEM;
1618
1619 map->src_dev = dev;
1620 map->src_supply = id;
1621 map->alias_dev = alias_dev;
1622 map->alias_supply = alias_id;
1623
1624 list_add(&map->list, &regulator_supply_alias_list);
1625
1626 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1627 id, dev_name(dev), alias_id, dev_name(alias_dev));
1628
1629 return 0;
1630}
1631EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1632
1633/**
1634 * regulator_unregister_supply_alias - Remove device alias
1635 *
1636 * @dev: device that will be given as the regulator "consumer"
1637 * @id: Supply name or regulator ID
1638 *
1639 * Remove a lookup alias if one exists for id on dev.
1640 */
1641void regulator_unregister_supply_alias(struct device *dev, const char *id)
1642{
1643 struct regulator_supply_alias *map;
1644
1645 map = regulator_find_supply_alias(dev, id);
1646 if (map) {
1647 list_del(&map->list);
1648 kfree(map);
1649 }
1650}
1651EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1652
1653/**
1654 * regulator_bulk_register_supply_alias - register multiple aliases
1655 *
1656 * @dev: device that will be given as the regulator "consumer"
1657 * @id: List of supply names or regulator IDs
1658 * @alias_dev: device that should be used to lookup the supply
1659 * @alias_id: List of supply names or regulator IDs that should be used to
1660 * lookup the supply
1661 * @num_id: Number of aliases to register
1662 *
1663 * @return 0 on success, an errno on failure.
1664 *
1665 * This helper function allows drivers to register several supply
1666 * aliases in one operation. If any of the aliases cannot be
1667 * registered any aliases that were registered will be removed
1668 * before returning to the caller.
1669 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001670int regulator_bulk_register_supply_alias(struct device *dev,
1671 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001672 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001673 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001674 int num_id)
1675{
1676 int i;
1677 int ret;
1678
1679 for (i = 0; i < num_id; ++i) {
1680 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1681 alias_id[i]);
1682 if (ret < 0)
1683 goto err;
1684 }
1685
1686 return 0;
1687
1688err:
1689 dev_err(dev,
1690 "Failed to create supply alias %s,%s -> %s,%s\n",
1691 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1692
1693 while (--i >= 0)
1694 regulator_unregister_supply_alias(dev, id[i]);
1695
1696 return ret;
1697}
1698EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1699
1700/**
1701 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1702 *
1703 * @dev: device that will be given as the regulator "consumer"
1704 * @id: List of supply names or regulator IDs
1705 * @num_id: Number of aliases to unregister
1706 *
1707 * This helper function allows drivers to unregister several supply
1708 * aliases in one operation.
1709 */
1710void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001711 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001712 int num_id)
1713{
1714 int i;
1715
1716 for (i = 0; i < num_id; ++i)
1717 regulator_unregister_supply_alias(dev, id[i]);
1718}
1719EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1720
1721
Kim, Milof19b00d2013-02-18 06:50:39 +00001722/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1723static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1724 const struct regulator_config *config)
1725{
1726 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001727 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001728 int ret;
1729
Russell King778b28b2014-06-29 17:55:54 +01001730 gpiod = gpio_to_desc(config->ena_gpio);
1731
Kim, Milof19b00d2013-02-18 06:50:39 +00001732 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001733 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001734 rdev_dbg(rdev, "GPIO %d is already used\n",
1735 config->ena_gpio);
1736 goto update_ena_gpio_to_rdev;
1737 }
1738 }
1739
1740 ret = gpio_request_one(config->ena_gpio,
1741 GPIOF_DIR_OUT | config->ena_gpio_flags,
1742 rdev_get_name(rdev));
1743 if (ret)
1744 return ret;
1745
1746 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1747 if (pin == NULL) {
1748 gpio_free(config->ena_gpio);
1749 return -ENOMEM;
1750 }
1751
Russell King778b28b2014-06-29 17:55:54 +01001752 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001753 pin->ena_gpio_invert = config->ena_gpio_invert;
1754 list_add(&pin->list, &regulator_ena_gpio_list);
1755
1756update_ena_gpio_to_rdev:
1757 pin->request_count++;
1758 rdev->ena_pin = pin;
1759 return 0;
1760}
1761
1762static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1763{
1764 struct regulator_enable_gpio *pin, *n;
1765
1766 if (!rdev->ena_pin)
1767 return;
1768
1769 /* Free the GPIO only in case of no use */
1770 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001771 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001772 if (pin->request_count <= 1) {
1773 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001774 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001775 list_del(&pin->list);
1776 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001777 rdev->ena_pin = NULL;
1778 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001779 } else {
1780 pin->request_count--;
1781 }
1782 }
1783 }
1784}
1785
Kim, Milo967cfb12013-02-18 06:50:48 +00001786/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001787 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1788 * @rdev: regulator_dev structure
1789 * @enable: enable GPIO at initial use?
1790 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001791 * GPIO is enabled in case of initial use. (enable_count is 0)
1792 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1793 */
1794static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1795{
1796 struct regulator_enable_gpio *pin = rdev->ena_pin;
1797
1798 if (!pin)
1799 return -EINVAL;
1800
1801 if (enable) {
1802 /* Enable GPIO at initial use */
1803 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001804 gpiod_set_value_cansleep(pin->gpiod,
1805 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001806
1807 pin->enable_count++;
1808 } else {
1809 if (pin->enable_count > 1) {
1810 pin->enable_count--;
1811 return 0;
1812 }
1813
1814 /* Disable GPIO if not used */
1815 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001816 gpiod_set_value_cansleep(pin->gpiod,
1817 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001818 pin->enable_count = 0;
1819 }
1820 }
1821
1822 return 0;
1823}
1824
Guodong Xu79fd1142014-08-13 19:33:39 +08001825/**
1826 * _regulator_enable_delay - a delay helper function
1827 * @delay: time to delay in microseconds
1828 *
1829 * Delay for the requested amount of time as per the guidelines in:
1830 *
1831 * Documentation/timers/timers-howto.txt
1832 *
1833 * The assumption here is that regulators will never be enabled in
1834 * atomic context and therefore sleeping functions can be used.
1835 */
1836static void _regulator_enable_delay(unsigned int delay)
1837{
1838 unsigned int ms = delay / 1000;
1839 unsigned int us = delay % 1000;
1840
1841 if (ms > 0) {
1842 /*
1843 * For small enough values, handle super-millisecond
1844 * delays in the usleep_range() call below.
1845 */
1846 if (ms < 20)
1847 us += ms * 1000;
1848 else
1849 msleep(ms);
1850 }
1851
1852 /*
1853 * Give the scheduler some room to coalesce with any other
1854 * wakeup sources. For delays shorter than 10 us, don't even
1855 * bother setting up high-resolution timers and just busy-
1856 * loop.
1857 */
1858 if (us >= 10)
1859 usleep_range(us, us + 100);
1860 else
1861 udelay(us);
1862}
1863
Mark Brown5c5659d2012-06-27 13:21:26 +01001864static int _regulator_do_enable(struct regulator_dev *rdev)
1865{
1866 int ret, delay;
1867
1868 /* Query before enabling in case configuration dependent. */
1869 ret = _regulator_get_enable_time(rdev);
1870 if (ret >= 0) {
1871 delay = ret;
1872 } else {
1873 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1874 delay = 0;
1875 }
1876
1877 trace_regulator_enable(rdev_get_name(rdev));
1878
Guodong Xu871f5652014-08-13 19:33:40 +08001879 if (rdev->desc->off_on_delay) {
1880 /* if needed, keep a distance of off_on_delay from last time
1881 * this regulator was disabled.
1882 */
1883 unsigned long start_jiffy = jiffies;
1884 unsigned long intended, max_delay, remaining;
1885
1886 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
1887 intended = rdev->last_off_jiffy + max_delay;
1888
1889 if (time_before(start_jiffy, intended)) {
1890 /* calc remaining jiffies to deal with one-time
1891 * timer wrapping.
1892 * in case of multiple timer wrapping, either it can be
1893 * detected by out-of-range remaining, or it cannot be
1894 * detected and we gets a panelty of
1895 * _regulator_enable_delay().
1896 */
1897 remaining = intended - start_jiffy;
1898 if (remaining <= max_delay)
1899 _regulator_enable_delay(
1900 jiffies_to_usecs(remaining));
1901 }
1902 }
1903
Kim, Milo967cfb12013-02-18 06:50:48 +00001904 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08001905 if (!rdev->ena_gpio_state) {
1906 ret = regulator_ena_gpio_ctrl(rdev, true);
1907 if (ret < 0)
1908 return ret;
1909 rdev->ena_gpio_state = 1;
1910 }
Mark Brown65f73502012-06-27 14:14:38 +01001911 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001912 ret = rdev->desc->ops->enable(rdev);
1913 if (ret < 0)
1914 return ret;
1915 } else {
1916 return -EINVAL;
1917 }
1918
1919 /* Allow the regulator to ramp; it would be useful to extend
1920 * this for bulk operations so that the regulators can ramp
1921 * together. */
1922 trace_regulator_enable_delay(rdev_get_name(rdev));
1923
Guodong Xu79fd1142014-08-13 19:33:39 +08001924 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01001925
1926 trace_regulator_enable_complete(rdev_get_name(rdev));
1927
1928 return 0;
1929}
1930
Liam Girdwood414c70c2008-04-30 15:59:04 +01001931/* locks held by regulator_enable() */
1932static int _regulator_enable(struct regulator_dev *rdev)
1933{
Mark Brown5c5659d2012-06-27 13:21:26 +01001934 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001935
Liam Girdwood414c70c2008-04-30 15:59:04 +01001936 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001937 if (rdev->constraints &&
1938 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1939 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001940
Mark Brown9a2372f2009-08-03 18:49:57 +01001941 if (rdev->use_count == 0) {
1942 /* The regulator may on if it's not switchable or left on */
1943 ret = _regulator_is_enabled(rdev);
1944 if (ret == -EINVAL || ret == 0) {
1945 if (!_regulator_can_change_status(rdev))
1946 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001947
Mark Brown5c5659d2012-06-27 13:21:26 +01001948 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001949 if (ret < 0)
1950 return ret;
1951
Linus Walleija7433cf2009-08-26 12:54:04 +02001952 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001953 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001954 return ret;
1955 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001956 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001957 }
1958
Mark Brown9a2372f2009-08-03 18:49:57 +01001959 rdev->use_count++;
1960
1961 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001962}
1963
1964/**
1965 * regulator_enable - enable regulator output
1966 * @regulator: regulator source
1967 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001968 * Request that the regulator be enabled with the regulator output at
1969 * the predefined voltage or current value. Calls to regulator_enable()
1970 * must be balanced with calls to regulator_disable().
1971 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001972 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001973 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001974 */
1975int regulator_enable(struct regulator *regulator)
1976{
David Brownell412aec62008-11-16 11:44:46 -08001977 struct regulator_dev *rdev = regulator->rdev;
1978 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001979
Mark Brown6492bc12012-04-19 13:19:07 +01001980 if (regulator->always_on)
1981 return 0;
1982
Mark Brown3801b862011-06-09 16:22:22 +01001983 if (rdev->supply) {
1984 ret = regulator_enable(rdev->supply);
1985 if (ret != 0)
1986 return ret;
1987 }
1988
David Brownell412aec62008-11-16 11:44:46 -08001989 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001990 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001991 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001992
Heiko Stübnerd1685e42011-10-14 18:00:29 +02001993 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01001994 regulator_disable(rdev->supply);
1995
Liam Girdwood414c70c2008-04-30 15:59:04 +01001996 return ret;
1997}
1998EXPORT_SYMBOL_GPL(regulator_enable);
1999
Mark Brown5c5659d2012-06-27 13:21:26 +01002000static int _regulator_do_disable(struct regulator_dev *rdev)
2001{
2002 int ret;
2003
2004 trace_regulator_disable(rdev_get_name(rdev));
2005
Kim, Milo967cfb12013-02-18 06:50:48 +00002006 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002007 if (rdev->ena_gpio_state) {
2008 ret = regulator_ena_gpio_ctrl(rdev, false);
2009 if (ret < 0)
2010 return ret;
2011 rdev->ena_gpio_state = 0;
2012 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002013
2014 } else if (rdev->desc->ops->disable) {
2015 ret = rdev->desc->ops->disable(rdev);
2016 if (ret != 0)
2017 return ret;
2018 }
2019
Guodong Xu871f5652014-08-13 19:33:40 +08002020 /* cares about last_off_jiffy only if off_on_delay is required by
2021 * device.
2022 */
2023 if (rdev->desc->off_on_delay)
2024 rdev->last_off_jiffy = jiffies;
2025
Mark Brown5c5659d2012-06-27 13:21:26 +01002026 trace_regulator_disable_complete(rdev_get_name(rdev));
2027
Mark Brown5c5659d2012-06-27 13:21:26 +01002028 return 0;
2029}
2030
Liam Girdwood414c70c2008-04-30 15:59:04 +01002031/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002032static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002033{
2034 int ret = 0;
2035
David Brownellcd94b502009-03-11 16:43:34 -08002036 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002037 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002038 return -EIO;
2039
Liam Girdwood414c70c2008-04-30 15:59:04 +01002040 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002041 if (rdev->use_count == 1 &&
2042 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002043
2044 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01002045 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002046 ret = _notifier_call_chain(rdev,
2047 REGULATOR_EVENT_PRE_DISABLE,
2048 NULL);
2049 if (ret & NOTIFY_STOP_MASK)
2050 return -EINVAL;
2051
Mark Brown5c5659d2012-06-27 13:21:26 +01002052 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002053 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002054 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002055 _notifier_call_chain(rdev,
2056 REGULATOR_EVENT_ABORT_DISABLE,
2057 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002058 return ret;
2059 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002060 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2061 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002062 }
2063
Liam Girdwood414c70c2008-04-30 15:59:04 +01002064 rdev->use_count = 0;
2065 } else if (rdev->use_count > 1) {
2066
2067 if (rdev->constraints &&
2068 (rdev->constraints->valid_ops_mask &
2069 REGULATOR_CHANGE_DRMS))
2070 drms_uA_update(rdev);
2071
2072 rdev->use_count--;
2073 }
Mark Brown3801b862011-06-09 16:22:22 +01002074
Liam Girdwood414c70c2008-04-30 15:59:04 +01002075 return ret;
2076}
2077
2078/**
2079 * regulator_disable - disable regulator output
2080 * @regulator: regulator source
2081 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002082 * Disable the regulator output voltage or current. Calls to
2083 * regulator_enable() must be balanced with calls to
2084 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002085 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002086 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002087 * devices have it enabled, the regulator device supports disabling and
2088 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002089 */
2090int regulator_disable(struct regulator *regulator)
2091{
David Brownell412aec62008-11-16 11:44:46 -08002092 struct regulator_dev *rdev = regulator->rdev;
2093 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002094
Mark Brown6492bc12012-04-19 13:19:07 +01002095 if (regulator->always_on)
2096 return 0;
2097
David Brownell412aec62008-11-16 11:44:46 -08002098 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002099 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002100 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002101
Mark Brown3801b862011-06-09 16:22:22 +01002102 if (ret == 0 && rdev->supply)
2103 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002104
Liam Girdwood414c70c2008-04-30 15:59:04 +01002105 return ret;
2106}
2107EXPORT_SYMBOL_GPL(regulator_disable);
2108
2109/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002110static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002111{
2112 int ret = 0;
2113
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002114 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2115 REGULATOR_EVENT_PRE_DISABLE, NULL);
2116 if (ret & NOTIFY_STOP_MASK)
2117 return -EINVAL;
2118
Markus Pargmann66fda752014-02-20 17:36:04 +01002119 ret = _regulator_do_disable(rdev);
2120 if (ret < 0) {
2121 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002122 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2123 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002124 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002125 }
2126
Markus Pargmann66fda752014-02-20 17:36:04 +01002127 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2128 REGULATOR_EVENT_DISABLE, NULL);
2129
2130 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002131}
2132
2133/**
2134 * regulator_force_disable - force disable regulator output
2135 * @regulator: regulator source
2136 *
2137 * Forcibly disable the regulator output voltage or current.
2138 * NOTE: this *will* disable the regulator output even if other consumer
2139 * devices have it enabled. This should be used for situations when device
2140 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2141 */
2142int regulator_force_disable(struct regulator *regulator)
2143{
Mark Brown82d15832011-05-09 11:41:02 +02002144 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002145 int ret;
2146
Mark Brown82d15832011-05-09 11:41:02 +02002147 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002148 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002149 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002150 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002151
Mark Brown3801b862011-06-09 16:22:22 +01002152 if (rdev->supply)
2153 while (rdev->open_count--)
2154 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002155
Liam Girdwood414c70c2008-04-30 15:59:04 +01002156 return ret;
2157}
2158EXPORT_SYMBOL_GPL(regulator_force_disable);
2159
Mark Brownda07ecd2011-09-11 09:53:50 +01002160static void regulator_disable_work(struct work_struct *work)
2161{
2162 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2163 disable_work.work);
2164 int count, i, ret;
2165
2166 mutex_lock(&rdev->mutex);
2167
2168 BUG_ON(!rdev->deferred_disables);
2169
2170 count = rdev->deferred_disables;
2171 rdev->deferred_disables = 0;
2172
2173 for (i = 0; i < count; i++) {
2174 ret = _regulator_disable(rdev);
2175 if (ret != 0)
2176 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2177 }
2178
2179 mutex_unlock(&rdev->mutex);
2180
2181 if (rdev->supply) {
2182 for (i = 0; i < count; i++) {
2183 ret = regulator_disable(rdev->supply);
2184 if (ret != 0) {
2185 rdev_err(rdev,
2186 "Supply disable failed: %d\n", ret);
2187 }
2188 }
2189 }
2190}
2191
2192/**
2193 * regulator_disable_deferred - disable regulator output with delay
2194 * @regulator: regulator source
2195 * @ms: miliseconds until the regulator is disabled
2196 *
2197 * Execute regulator_disable() on the regulator after a delay. This
2198 * is intended for use with devices that require some time to quiesce.
2199 *
2200 * NOTE: this will only disable the regulator output if no other consumer
2201 * devices have it enabled, the regulator device supports disabling and
2202 * machine constraints permit this operation.
2203 */
2204int regulator_disable_deferred(struct regulator *regulator, int ms)
2205{
2206 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002207 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002208
Mark Brown6492bc12012-04-19 13:19:07 +01002209 if (regulator->always_on)
2210 return 0;
2211
Mark Brown2b5a24a2012-09-07 11:00:53 +08002212 if (!ms)
2213 return regulator_disable(regulator);
2214
Mark Brownda07ecd2011-09-11 09:53:50 +01002215 mutex_lock(&rdev->mutex);
2216 rdev->deferred_disables++;
2217 mutex_unlock(&rdev->mutex);
2218
Mark Brown070260f2013-07-18 11:52:04 +01002219 ret = queue_delayed_work(system_power_efficient_wq,
2220 &rdev->disable_work,
2221 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002222 if (ret < 0)
2223 return ret;
2224 else
2225 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002226}
2227EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2228
Liam Girdwood414c70c2008-04-30 15:59:04 +01002229static int _regulator_is_enabled(struct regulator_dev *rdev)
2230{
Mark Brown65f73502012-06-27 14:14:38 +01002231 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002232 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002233 return rdev->ena_gpio_state;
2234
Mark Brown9a7f6a42010-02-11 17:22:45 +00002235 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002236 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002237 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002238
Mark Brown93325462009-08-03 18:49:56 +01002239 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002240}
2241
2242/**
2243 * regulator_is_enabled - is the regulator output enabled
2244 * @regulator: regulator source
2245 *
David Brownell412aec62008-11-16 11:44:46 -08002246 * Returns positive if the regulator driver backing the source/client
2247 * has requested that the device be enabled, zero if it hasn't, else a
2248 * negative errno code.
2249 *
2250 * Note that the device backing this regulator handle can have multiple
2251 * users, so it might be enabled even if regulator_enable() was never
2252 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002253 */
2254int regulator_is_enabled(struct regulator *regulator)
2255{
Mark Brown93325462009-08-03 18:49:56 +01002256 int ret;
2257
Mark Brown6492bc12012-04-19 13:19:07 +01002258 if (regulator->always_on)
2259 return 1;
2260
Mark Brown93325462009-08-03 18:49:56 +01002261 mutex_lock(&regulator->rdev->mutex);
2262 ret = _regulator_is_enabled(regulator->rdev);
2263 mutex_unlock(&regulator->rdev->mutex);
2264
2265 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002266}
2267EXPORT_SYMBOL_GPL(regulator_is_enabled);
2268
2269/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002270 * regulator_can_change_voltage - check if regulator can change voltage
2271 * @regulator: regulator source
2272 *
2273 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002274 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002275 * or dummy regulators and disabling voltage change logic in the client
2276 * driver.
2277 */
2278int regulator_can_change_voltage(struct regulator *regulator)
2279{
2280 struct regulator_dev *rdev = regulator->rdev;
2281
2282 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002283 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2284 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2285 return 1;
2286
2287 if (rdev->desc->continuous_voltage_range &&
2288 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2289 rdev->constraints->min_uV != rdev->constraints->max_uV)
2290 return 1;
2291 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002292
2293 return 0;
2294}
2295EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2296
2297/**
David Brownell4367cfd2009-02-26 11:48:36 -08002298 * regulator_count_voltages - count regulator_list_voltage() selectors
2299 * @regulator: regulator source
2300 *
2301 * Returns number of selectors, or negative errno. Selectors are
2302 * numbered starting at zero, and typically correspond to bitfields
2303 * in hardware registers.
2304 */
2305int regulator_count_voltages(struct regulator *regulator)
2306{
2307 struct regulator_dev *rdev = regulator->rdev;
2308
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002309 if (rdev->desc->n_voltages)
2310 return rdev->desc->n_voltages;
2311
2312 if (!rdev->supply)
2313 return -EINVAL;
2314
2315 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002316}
2317EXPORT_SYMBOL_GPL(regulator_count_voltages);
2318
2319/**
2320 * regulator_list_voltage - enumerate supported voltages
2321 * @regulator: regulator source
2322 * @selector: identify voltage to list
2323 * Context: can sleep
2324 *
2325 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002326 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002327 * negative errno.
2328 */
2329int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2330{
Guodong Xu272e2312014-08-13 19:33:38 +08002331 struct regulator_dev *rdev = regulator->rdev;
2332 const struct regulator_ops *ops = rdev->desc->ops;
2333 int ret;
David Brownell4367cfd2009-02-26 11:48:36 -08002334
Guennadi Liakhovetskif4460432013-11-13 12:33:00 +01002335 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2336 return rdev->desc->fixed_uV;
2337
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002338 if (ops->list_voltage) {
2339 if (selector >= rdev->desc->n_voltages)
2340 return -EINVAL;
2341 mutex_lock(&rdev->mutex);
2342 ret = ops->list_voltage(rdev, selector);
2343 mutex_unlock(&rdev->mutex);
2344 } else if (rdev->supply) {
2345 ret = regulator_list_voltage(rdev->supply, selector);
2346 } else {
David Brownell4367cfd2009-02-26 11:48:36 -08002347 return -EINVAL;
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002348 }
David Brownell4367cfd2009-02-26 11:48:36 -08002349
2350 if (ret > 0) {
2351 if (ret < rdev->constraints->min_uV)
2352 ret = 0;
2353 else if (ret > rdev->constraints->max_uV)
2354 ret = 0;
2355 }
2356
2357 return ret;
2358}
2359EXPORT_SYMBOL_GPL(regulator_list_voltage);
2360
2361/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002362 * regulator_get_regmap - get the regulator's register map
2363 * @regulator: regulator source
2364 *
2365 * Returns the register map for the given regulator, or an ERR_PTR value
2366 * if the regulator doesn't use regmap.
2367 */
2368struct regmap *regulator_get_regmap(struct regulator *regulator)
2369{
2370 struct regmap *map = regulator->rdev->regmap;
2371
2372 return map ? map : ERR_PTR(-EOPNOTSUPP);
2373}
2374
2375/**
2376 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2377 * @regulator: regulator source
2378 * @vsel_reg: voltage selector register, output parameter
2379 * @vsel_mask: mask for voltage selector bitfield, output parameter
2380 *
2381 * Returns the hardware register offset and bitmask used for setting the
2382 * regulator voltage. This might be useful when configuring voltage-scaling
2383 * hardware or firmware that can make I2C requests behind the kernel's back,
2384 * for example.
2385 *
2386 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2387 * and 0 is returned, otherwise a negative errno is returned.
2388 */
2389int regulator_get_hardware_vsel_register(struct regulator *regulator,
2390 unsigned *vsel_reg,
2391 unsigned *vsel_mask)
2392{
Guodong Xu39f54602014-08-19 18:07:41 +08002393 struct regulator_dev *rdev = regulator->rdev;
2394 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002395
2396 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2397 return -EOPNOTSUPP;
2398
2399 *vsel_reg = rdev->desc->vsel_reg;
2400 *vsel_mask = rdev->desc->vsel_mask;
2401
2402 return 0;
2403}
2404EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2405
2406/**
2407 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2408 * @regulator: regulator source
2409 * @selector: identify voltage to list
2410 *
2411 * Converts the selector to a hardware-specific voltage selector that can be
2412 * directly written to the regulator registers. The address of the voltage
2413 * register can be determined by calling @regulator_get_hardware_vsel_register.
2414 *
2415 * On error a negative errno is returned.
2416 */
2417int regulator_list_hardware_vsel(struct regulator *regulator,
2418 unsigned selector)
2419{
Guodong Xu39f54602014-08-19 18:07:41 +08002420 struct regulator_dev *rdev = regulator->rdev;
2421 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002422
2423 if (selector >= rdev->desc->n_voltages)
2424 return -EINVAL;
2425 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2426 return -EOPNOTSUPP;
2427
2428 return selector;
2429}
2430EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2431
2432/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002433 * regulator_get_linear_step - return the voltage step size between VSEL values
2434 * @regulator: regulator source
2435 *
2436 * Returns the voltage step size between VSEL values for linear
2437 * regulators, or return 0 if the regulator isn't a linear regulator.
2438 */
2439unsigned int regulator_get_linear_step(struct regulator *regulator)
2440{
2441 struct regulator_dev *rdev = regulator->rdev;
2442
2443 return rdev->desc->uV_step;
2444}
2445EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2446
2447/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002448 * regulator_is_supported_voltage - check if a voltage range can be supported
2449 *
2450 * @regulator: Regulator to check.
2451 * @min_uV: Minimum required voltage in uV.
2452 * @max_uV: Maximum required voltage in uV.
2453 *
2454 * Returns a boolean or a negative error code.
2455 */
2456int regulator_is_supported_voltage(struct regulator *regulator,
2457 int min_uV, int max_uV)
2458{
Mark Brownc5f39392012-07-02 15:00:18 +01002459 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002460 int i, voltages, ret;
2461
Mark Brownc5f39392012-07-02 15:00:18 +01002462 /* If we can't change voltage check the current voltage */
2463 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2464 ret = regulator_get_voltage(regulator);
2465 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002466 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002467 else
2468 return ret;
2469 }
2470
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002471 /* Any voltage within constrains range is fine? */
2472 if (rdev->desc->continuous_voltage_range)
2473 return min_uV >= rdev->constraints->min_uV &&
2474 max_uV <= rdev->constraints->max_uV;
2475
Mark Browna7a1ad92009-07-21 16:00:24 +01002476 ret = regulator_count_voltages(regulator);
2477 if (ret < 0)
2478 return ret;
2479 voltages = ret;
2480
2481 for (i = 0; i < voltages; i++) {
2482 ret = regulator_list_voltage(regulator, i);
2483
2484 if (ret >= min_uV && ret <= max_uV)
2485 return 1;
2486 }
2487
2488 return 0;
2489}
Mark Browna398eaa2011-12-28 12:48:45 +00002490EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002491
Heiko Stübner71795692014-08-28 12:36:04 -07002492static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2493 int min_uV, int max_uV,
2494 unsigned *selector)
2495{
2496 struct pre_voltage_change_data data;
2497 int ret;
2498
2499 data.old_uV = _regulator_get_voltage(rdev);
2500 data.min_uV = min_uV;
2501 data.max_uV = max_uV;
2502 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2503 &data);
2504 if (ret & NOTIFY_STOP_MASK)
2505 return -EINVAL;
2506
2507 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2508 if (ret >= 0)
2509 return ret;
2510
2511 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2512 (void *)data.old_uV);
2513
2514 return ret;
2515}
2516
2517static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2518 int uV, unsigned selector)
2519{
2520 struct pre_voltage_change_data data;
2521 int ret;
2522
2523 data.old_uV = _regulator_get_voltage(rdev);
2524 data.min_uV = uV;
2525 data.max_uV = uV;
2526 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2527 &data);
2528 if (ret & NOTIFY_STOP_MASK)
2529 return -EINVAL;
2530
2531 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2532 if (ret >= 0)
2533 return ret;
2534
2535 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2536 (void *)data.old_uV);
2537
2538 return ret;
2539}
2540
Mark Brown75790252010-12-12 14:25:50 +00002541static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2542 int min_uV, int max_uV)
2543{
2544 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002545 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002546 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002547 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002548 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002549
2550 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2551
Mark Brownbf5892a2011-05-08 22:13:37 +01002552 min_uV += rdev->constraints->uV_offset;
2553 max_uV += rdev->constraints->uV_offset;
2554
Axel Lineba41a52012-04-04 10:32:10 +08002555 /*
2556 * If we can't obtain the old selector there is not enough
2557 * info to call set_voltage_time_sel().
2558 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002559 if (_regulator_is_enabled(rdev) &&
2560 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002561 rdev->desc->ops->get_voltage_sel) {
2562 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2563 if (old_selector < 0)
2564 return old_selector;
2565 }
2566
Mark Brown75790252010-12-12 14:25:50 +00002567 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002568 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2569 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002570
2571 if (ret >= 0) {
2572 if (rdev->desc->ops->list_voltage)
2573 best_val = rdev->desc->ops->list_voltage(rdev,
2574 selector);
2575 else
2576 best_val = _regulator_get_voltage(rdev);
2577 }
2578
Mark Browne8eef822010-12-12 14:36:17 +00002579 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002580 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002581 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2582 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002583 } else {
2584 if (rdev->desc->ops->list_voltage ==
2585 regulator_list_voltage_linear)
2586 ret = regulator_map_voltage_linear(rdev,
2587 min_uV, max_uV);
Axel Lin36698622014-05-24 11:10:43 +08002588 else if (rdev->desc->ops->list_voltage ==
2589 regulator_list_voltage_linear_range)
2590 ret = regulator_map_voltage_linear_range(rdev,
2591 min_uV, max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002592 else
2593 ret = regulator_map_voltage_iterate(rdev,
2594 min_uV, max_uV);
2595 }
Mark Browne8eef822010-12-12 14:36:17 +00002596
Mark Browne843fc42012-05-09 21:16:06 +01002597 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002598 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2599 if (min_uV <= best_val && max_uV >= best_val) {
2600 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002601 if (old_selector == selector)
2602 ret = 0;
2603 else
Heiko Stübner71795692014-08-28 12:36:04 -07002604 ret = _regulator_call_set_voltage_sel(
2605 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002606 } else {
2607 ret = -EINVAL;
2608 }
Mark Browne8eef822010-12-12 14:36:17 +00002609 }
Mark Brown75790252010-12-12 14:25:50 +00002610 } else {
2611 ret = -EINVAL;
2612 }
2613
Axel Lineba41a52012-04-04 10:32:10 +08002614 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302615 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2616 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002617
2618 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2619 old_selector, selector);
2620 if (delay < 0) {
2621 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2622 delay);
2623 delay = 0;
2624 }
Axel Lineba41a52012-04-04 10:32:10 +08002625
Philip Rakity8b96de32012-06-14 15:07:56 -07002626 /* Insert any necessary delays */
2627 if (delay >= 1000) {
2628 mdelay(delay / 1000);
2629 udelay(delay % 1000);
2630 } else if (delay) {
2631 udelay(delay);
2632 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002633 }
2634
Axel Lin2f6c7972012-08-06 23:44:19 +08002635 if (ret == 0 && best_val >= 0) {
2636 unsigned long data = best_val;
2637
Mark Brownded06a52010-12-16 13:59:10 +00002638 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002639 (void *)data);
2640 }
Mark Brownded06a52010-12-16 13:59:10 +00002641
Axel Lineba41a52012-04-04 10:32:10 +08002642 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002643
2644 return ret;
2645}
2646
Mark Browna7a1ad92009-07-21 16:00:24 +01002647/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002648 * regulator_set_voltage - set regulator output voltage
2649 * @regulator: regulator source
2650 * @min_uV: Minimum required voltage in uV
2651 * @max_uV: Maximum acceptable voltage in uV
2652 *
2653 * Sets a voltage regulator to the desired output voltage. This can be set
2654 * during any regulator state. IOW, regulator can be disabled or enabled.
2655 *
2656 * If the regulator is enabled then the voltage will change to the new value
2657 * immediately otherwise if the regulator is disabled the regulator will
2658 * output at the new voltage when enabled.
2659 *
2660 * NOTE: If the regulator is shared between several devices then the lowest
2661 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002662 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002663 * calling this function otherwise this call will fail.
2664 */
2665int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2666{
2667 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002668 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002669 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002670 int current_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002671
2672 mutex_lock(&rdev->mutex);
2673
Mark Brown95a3c232010-12-16 15:49:37 +00002674 /* If we're setting the same range as last time the change
2675 * should be a noop (some cpufreq implementations use the same
2676 * voltage for multiple frequencies, for example).
2677 */
2678 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2679 goto out;
2680
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002681 /* If we're trying to set a range that overlaps the current voltage,
2682 * return succesfully even though the regulator does not support
2683 * changing the voltage.
2684 */
2685 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2686 current_uV = _regulator_get_voltage(rdev);
2687 if (min_uV <= current_uV && current_uV <= max_uV) {
2688 regulator->min_uV = min_uV;
2689 regulator->max_uV = max_uV;
2690 goto out;
2691 }
2692 }
2693
Liam Girdwood414c70c2008-04-30 15:59:04 +01002694 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002695 if (!rdev->desc->ops->set_voltage &&
2696 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002697 ret = -EINVAL;
2698 goto out;
2699 }
2700
2701 /* constraints check */
2702 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2703 if (ret < 0)
2704 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002705
Paolo Pisati92d7a552012-12-13 10:13:00 +01002706 /* restore original values in case of error */
2707 old_min_uV = regulator->min_uV;
2708 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002709 regulator->min_uV = min_uV;
2710 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002711
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002712 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2713 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002714 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002715
Mark Brown75790252010-12-12 14:25:50 +00002716 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002717 if (ret < 0)
2718 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002719
Liam Girdwood414c70c2008-04-30 15:59:04 +01002720out:
2721 mutex_unlock(&rdev->mutex);
2722 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002723out2:
2724 regulator->min_uV = old_min_uV;
2725 regulator->max_uV = old_max_uV;
2726 mutex_unlock(&rdev->mutex);
2727 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002728}
2729EXPORT_SYMBOL_GPL(regulator_set_voltage);
2730
Mark Brown606a2562010-12-16 15:49:36 +00002731/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002732 * regulator_set_voltage_time - get raise/fall time
2733 * @regulator: regulator source
2734 * @old_uV: starting voltage in microvolts
2735 * @new_uV: target voltage in microvolts
2736 *
2737 * Provided with the starting and ending voltage, this function attempts to
2738 * calculate the time in microseconds required to rise or fall to this new
2739 * voltage.
2740 */
2741int regulator_set_voltage_time(struct regulator *regulator,
2742 int old_uV, int new_uV)
2743{
Guodong Xu272e2312014-08-13 19:33:38 +08002744 struct regulator_dev *rdev = regulator->rdev;
2745 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002746 int old_sel = -1;
2747 int new_sel = -1;
2748 int voltage;
2749 int i;
2750
2751 /* Currently requires operations to do this */
2752 if (!ops->list_voltage || !ops->set_voltage_time_sel
2753 || !rdev->desc->n_voltages)
2754 return -EINVAL;
2755
2756 for (i = 0; i < rdev->desc->n_voltages; i++) {
2757 /* We only look for exact voltage matches here */
2758 voltage = regulator_list_voltage(regulator, i);
2759 if (voltage < 0)
2760 return -EINVAL;
2761 if (voltage == 0)
2762 continue;
2763 if (voltage == old_uV)
2764 old_sel = i;
2765 if (voltage == new_uV)
2766 new_sel = i;
2767 }
2768
2769 if (old_sel < 0 || new_sel < 0)
2770 return -EINVAL;
2771
2772 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2773}
2774EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2775
2776/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002777 * regulator_set_voltage_time_sel - get raise/fall time
2778 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302779 * @old_selector: selector for starting voltage
2780 * @new_selector: selector for target voltage
2781 *
2782 * Provided with the starting and target voltage selectors, this function
2783 * returns time in microseconds required to rise or fall to this new voltage
2784 *
Axel Linf11d08c2012-06-19 09:38:45 +08002785 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002786 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302787 */
2788int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2789 unsigned int old_selector,
2790 unsigned int new_selector)
2791{
Axel Lin398715a2012-06-18 10:11:28 +08002792 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002793 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002794
2795 if (rdev->constraints->ramp_delay)
2796 ramp_delay = rdev->constraints->ramp_delay;
2797 else if (rdev->desc->ramp_delay)
2798 ramp_delay = rdev->desc->ramp_delay;
2799
2800 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302801 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002802 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302803 }
Axel Lin398715a2012-06-18 10:11:28 +08002804
Axel Linf11d08c2012-06-19 09:38:45 +08002805 /* sanity check */
2806 if (!rdev->desc->ops->list_voltage)
2807 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002808
Axel Linf11d08c2012-06-19 09:38:45 +08002809 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2810 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2811
2812 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302813}
Mark Brownb19dbf72012-06-23 11:34:20 +01002814EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302815
2816/**
Mark Brown606a2562010-12-16 15:49:36 +00002817 * regulator_sync_voltage - re-apply last regulator output voltage
2818 * @regulator: regulator source
2819 *
2820 * Re-apply the last configured voltage. This is intended to be used
2821 * where some external control source the consumer is cooperating with
2822 * has caused the configured voltage to change.
2823 */
2824int regulator_sync_voltage(struct regulator *regulator)
2825{
2826 struct regulator_dev *rdev = regulator->rdev;
2827 int ret, min_uV, max_uV;
2828
2829 mutex_lock(&rdev->mutex);
2830
2831 if (!rdev->desc->ops->set_voltage &&
2832 !rdev->desc->ops->set_voltage_sel) {
2833 ret = -EINVAL;
2834 goto out;
2835 }
2836
2837 /* This is only going to work if we've had a voltage configured. */
2838 if (!regulator->min_uV && !regulator->max_uV) {
2839 ret = -EINVAL;
2840 goto out;
2841 }
2842
2843 min_uV = regulator->min_uV;
2844 max_uV = regulator->max_uV;
2845
2846 /* This should be a paranoia check... */
2847 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2848 if (ret < 0)
2849 goto out;
2850
2851 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2852 if (ret < 0)
2853 goto out;
2854
2855 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2856
2857out:
2858 mutex_unlock(&rdev->mutex);
2859 return ret;
2860}
2861EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2862
Liam Girdwood414c70c2008-04-30 15:59:04 +01002863static int _regulator_get_voltage(struct regulator_dev *rdev)
2864{
Mark Brownbf5892a2011-05-08 22:13:37 +01002865 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002866
2867 if (rdev->desc->ops->get_voltage_sel) {
2868 sel = rdev->desc->ops->get_voltage_sel(rdev);
2869 if (sel < 0)
2870 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002871 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002872 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002873 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002874 } else if (rdev->desc->ops->list_voltage) {
2875 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05302876 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
2877 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02002878 } else if (rdev->supply) {
2879 ret = regulator_get_voltage(rdev->supply);
Axel Lincb220d12011-05-23 20:08:10 +08002880 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002881 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002882 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002883
Axel Lincb220d12011-05-23 20:08:10 +08002884 if (ret < 0)
2885 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002886 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002887}
2888
2889/**
2890 * regulator_get_voltage - get regulator output voltage
2891 * @regulator: regulator source
2892 *
2893 * This returns the current regulator voltage in uV.
2894 *
2895 * NOTE: If the regulator is disabled it will return the voltage value. This
2896 * function should not be used to determine regulator state.
2897 */
2898int regulator_get_voltage(struct regulator *regulator)
2899{
2900 int ret;
2901
2902 mutex_lock(&regulator->rdev->mutex);
2903
2904 ret = _regulator_get_voltage(regulator->rdev);
2905
2906 mutex_unlock(&regulator->rdev->mutex);
2907
2908 return ret;
2909}
2910EXPORT_SYMBOL_GPL(regulator_get_voltage);
2911
2912/**
2913 * regulator_set_current_limit - set regulator output current limit
2914 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002915 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002916 * @max_uA: Maximum supported current in uA
2917 *
2918 * Sets current sink to the desired output current. This can be set during
2919 * any regulator state. IOW, regulator can be disabled or enabled.
2920 *
2921 * If the regulator is enabled then the current will change to the new value
2922 * immediately otherwise if the regulator is disabled the regulator will
2923 * output at the new current when enabled.
2924 *
2925 * NOTE: Regulator system constraints must be set for this regulator before
2926 * calling this function otherwise this call will fail.
2927 */
2928int regulator_set_current_limit(struct regulator *regulator,
2929 int min_uA, int max_uA)
2930{
2931 struct regulator_dev *rdev = regulator->rdev;
2932 int ret;
2933
2934 mutex_lock(&rdev->mutex);
2935
2936 /* sanity check */
2937 if (!rdev->desc->ops->set_current_limit) {
2938 ret = -EINVAL;
2939 goto out;
2940 }
2941
2942 /* constraints check */
2943 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2944 if (ret < 0)
2945 goto out;
2946
2947 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2948out:
2949 mutex_unlock(&rdev->mutex);
2950 return ret;
2951}
2952EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2953
2954static int _regulator_get_current_limit(struct regulator_dev *rdev)
2955{
2956 int ret;
2957
2958 mutex_lock(&rdev->mutex);
2959
2960 /* sanity check */
2961 if (!rdev->desc->ops->get_current_limit) {
2962 ret = -EINVAL;
2963 goto out;
2964 }
2965
2966 ret = rdev->desc->ops->get_current_limit(rdev);
2967out:
2968 mutex_unlock(&rdev->mutex);
2969 return ret;
2970}
2971
2972/**
2973 * regulator_get_current_limit - get regulator output current
2974 * @regulator: regulator source
2975 *
2976 * This returns the current supplied by the specified current sink in uA.
2977 *
2978 * NOTE: If the regulator is disabled it will return the current value. This
2979 * function should not be used to determine regulator state.
2980 */
2981int regulator_get_current_limit(struct regulator *regulator)
2982{
2983 return _regulator_get_current_limit(regulator->rdev);
2984}
2985EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2986
2987/**
2988 * regulator_set_mode - set regulator operating mode
2989 * @regulator: regulator source
2990 * @mode: operating mode - one of the REGULATOR_MODE constants
2991 *
2992 * Set regulator operating mode to increase regulator efficiency or improve
2993 * regulation performance.
2994 *
2995 * NOTE: Regulator system constraints must be set for this regulator before
2996 * calling this function otherwise this call will fail.
2997 */
2998int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2999{
3000 struct regulator_dev *rdev = regulator->rdev;
3001 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303002 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003003
3004 mutex_lock(&rdev->mutex);
3005
3006 /* sanity check */
3007 if (!rdev->desc->ops->set_mode) {
3008 ret = -EINVAL;
3009 goto out;
3010 }
3011
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303012 /* return if the same mode is requested */
3013 if (rdev->desc->ops->get_mode) {
3014 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3015 if (regulator_curr_mode == mode) {
3016 ret = 0;
3017 goto out;
3018 }
3019 }
3020
Liam Girdwood414c70c2008-04-30 15:59:04 +01003021 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003022 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003023 if (ret < 0)
3024 goto out;
3025
3026 ret = rdev->desc->ops->set_mode(rdev, mode);
3027out:
3028 mutex_unlock(&rdev->mutex);
3029 return ret;
3030}
3031EXPORT_SYMBOL_GPL(regulator_set_mode);
3032
3033static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3034{
3035 int ret;
3036
3037 mutex_lock(&rdev->mutex);
3038
3039 /* sanity check */
3040 if (!rdev->desc->ops->get_mode) {
3041 ret = -EINVAL;
3042 goto out;
3043 }
3044
3045 ret = rdev->desc->ops->get_mode(rdev);
3046out:
3047 mutex_unlock(&rdev->mutex);
3048 return ret;
3049}
3050
3051/**
3052 * regulator_get_mode - get regulator operating mode
3053 * @regulator: regulator source
3054 *
3055 * Get the current regulator operating mode.
3056 */
3057unsigned int regulator_get_mode(struct regulator *regulator)
3058{
3059 return _regulator_get_mode(regulator->rdev);
3060}
3061EXPORT_SYMBOL_GPL(regulator_get_mode);
3062
3063/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003064 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003065 * @regulator: regulator source
3066 * @uA_load: load current
3067 *
3068 * Notifies the regulator core of a new device load. This is then used by
3069 * DRMS (if enabled by constraints) to set the most efficient regulator
3070 * operating mode for the new regulator loading.
3071 *
3072 * Consumer devices notify their supply regulator of the maximum power
3073 * they will require (can be taken from device datasheet in the power
3074 * consumption tables) when they change operational status and hence power
3075 * state. Examples of operational state changes that can affect power
3076 * consumption are :-
3077 *
3078 * o Device is opened / closed.
3079 * o Device I/O is about to begin or has just finished.
3080 * o Device is idling in between work.
3081 *
3082 * This information is also exported via sysfs to userspace.
3083 *
3084 * DRMS will sum the total requested load on the regulator and change
3085 * to the most efficient operating mode if platform constraints allow.
3086 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003087 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003088 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003089int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003090{
3091 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003092 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003093
Liam Girdwood414c70c2008-04-30 15:59:04 +01003094 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003095 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003096 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003097 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003098
Liam Girdwood414c70c2008-04-30 15:59:04 +01003099 return ret;
3100}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003101EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003102
3103/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003104 * regulator_allow_bypass - allow the regulator to go into bypass mode
3105 *
3106 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003107 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003108 *
3109 * Allow the regulator to go into bypass mode if all other consumers
3110 * for the regulator also enable bypass mode and the machine
3111 * constraints allow this. Bypass mode means that the regulator is
3112 * simply passing the input directly to the output with no regulation.
3113 */
3114int regulator_allow_bypass(struct regulator *regulator, bool enable)
3115{
3116 struct regulator_dev *rdev = regulator->rdev;
3117 int ret = 0;
3118
3119 if (!rdev->desc->ops->set_bypass)
3120 return 0;
3121
3122 if (rdev->constraints &&
3123 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3124 return 0;
3125
3126 mutex_lock(&rdev->mutex);
3127
3128 if (enable && !regulator->bypass) {
3129 rdev->bypass_count++;
3130
3131 if (rdev->bypass_count == rdev->open_count) {
3132 ret = rdev->desc->ops->set_bypass(rdev, enable);
3133 if (ret != 0)
3134 rdev->bypass_count--;
3135 }
3136
3137 } else if (!enable && regulator->bypass) {
3138 rdev->bypass_count--;
3139
3140 if (rdev->bypass_count != rdev->open_count) {
3141 ret = rdev->desc->ops->set_bypass(rdev, enable);
3142 if (ret != 0)
3143 rdev->bypass_count++;
3144 }
3145 }
3146
3147 if (ret == 0)
3148 regulator->bypass = enable;
3149
3150 mutex_unlock(&rdev->mutex);
3151
3152 return ret;
3153}
3154EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3155
3156/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003157 * regulator_register_notifier - register regulator event notifier
3158 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003159 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003160 *
3161 * Register notifier block to receive regulator events.
3162 */
3163int regulator_register_notifier(struct regulator *regulator,
3164 struct notifier_block *nb)
3165{
3166 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3167 nb);
3168}
3169EXPORT_SYMBOL_GPL(regulator_register_notifier);
3170
3171/**
3172 * regulator_unregister_notifier - unregister regulator event notifier
3173 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003174 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003175 *
3176 * Unregister regulator event notifier block.
3177 */
3178int regulator_unregister_notifier(struct regulator *regulator,
3179 struct notifier_block *nb)
3180{
3181 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3182 nb);
3183}
3184EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3185
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003186/* notify regulator consumers and downstream regulator consumers.
3187 * Note mutex must be held by caller.
3188 */
Heiko Stübner71795692014-08-28 12:36:04 -07003189static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003190 unsigned long event, void *data)
3191{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003192 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003193 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003194}
3195
3196/**
3197 * regulator_bulk_get - get multiple regulator consumers
3198 *
3199 * @dev: Device to supply
3200 * @num_consumers: Number of consumers to register
3201 * @consumers: Configuration of consumers; clients are stored here.
3202 *
3203 * @return 0 on success, an errno on failure.
3204 *
3205 * This helper function allows drivers to get several regulator
3206 * consumers in one operation. If any of the regulators cannot be
3207 * acquired then any regulators that were allocated will be freed
3208 * before returning to the caller.
3209 */
3210int regulator_bulk_get(struct device *dev, int num_consumers,
3211 struct regulator_bulk_data *consumers)
3212{
3213 int i;
3214 int ret;
3215
3216 for (i = 0; i < num_consumers; i++)
3217 consumers[i].consumer = NULL;
3218
3219 for (i = 0; i < num_consumers; i++) {
3220 consumers[i].consumer = regulator_get(dev,
3221 consumers[i].supply);
3222 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003223 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003224 dev_err(dev, "Failed to get supply '%s': %d\n",
3225 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003226 consumers[i].consumer = NULL;
3227 goto err;
3228 }
3229 }
3230
3231 return 0;
3232
3233err:
Axel Linb29c7692012-02-20 10:32:16 +08003234 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003235 regulator_put(consumers[i].consumer);
3236
3237 return ret;
3238}
3239EXPORT_SYMBOL_GPL(regulator_bulk_get);
3240
Mark Brownf21e0e82011-05-24 08:12:40 +08003241static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3242{
3243 struct regulator_bulk_data *bulk = data;
3244
3245 bulk->ret = regulator_enable(bulk->consumer);
3246}
3247
Liam Girdwood414c70c2008-04-30 15:59:04 +01003248/**
3249 * regulator_bulk_enable - enable multiple regulator consumers
3250 *
3251 * @num_consumers: Number of consumers
3252 * @consumers: Consumer data; clients are stored here.
3253 * @return 0 on success, an errno on failure
3254 *
3255 * This convenience API allows consumers to enable multiple regulator
3256 * clients in a single API call. If any consumers cannot be enabled
3257 * then any others that were enabled will be disabled again prior to
3258 * return.
3259 */
3260int regulator_bulk_enable(int num_consumers,
3261 struct regulator_bulk_data *consumers)
3262{
Dan Williams2955b472012-07-09 19:33:25 -07003263 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003264 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003265 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003266
Mark Brown6492bc12012-04-19 13:19:07 +01003267 for (i = 0; i < num_consumers; i++) {
3268 if (consumers[i].consumer->always_on)
3269 consumers[i].ret = 0;
3270 else
3271 async_schedule_domain(regulator_bulk_enable_async,
3272 &consumers[i], &async_domain);
3273 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003274
3275 async_synchronize_full_domain(&async_domain);
3276
3277 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003278 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003279 if (consumers[i].ret != 0) {
3280 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003281 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003282 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003283 }
3284
3285 return 0;
3286
3287err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003288 for (i = 0; i < num_consumers; i++) {
3289 if (consumers[i].ret < 0)
3290 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3291 consumers[i].ret);
3292 else
3293 regulator_disable(consumers[i].consumer);
3294 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003295
3296 return ret;
3297}
3298EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3299
3300/**
3301 * regulator_bulk_disable - disable multiple regulator consumers
3302 *
3303 * @num_consumers: Number of consumers
3304 * @consumers: Consumer data; clients are stored here.
3305 * @return 0 on success, an errno on failure
3306 *
3307 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003308 * clients in a single API call. If any consumers cannot be disabled
3309 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003310 * return.
3311 */
3312int regulator_bulk_disable(int num_consumers,
3313 struct regulator_bulk_data *consumers)
3314{
3315 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003316 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003317
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003318 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003319 ret = regulator_disable(consumers[i].consumer);
3320 if (ret != 0)
3321 goto err;
3322 }
3323
3324 return 0;
3325
3326err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003327 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003328 for (++i; i < num_consumers; ++i) {
3329 r = regulator_enable(consumers[i].consumer);
3330 if (r != 0)
3331 pr_err("Failed to reename %s: %d\n",
3332 consumers[i].supply, r);
3333 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003334
3335 return ret;
3336}
3337EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3338
3339/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003340 * regulator_bulk_force_disable - force disable multiple regulator consumers
3341 *
3342 * @num_consumers: Number of consumers
3343 * @consumers: Consumer data; clients are stored here.
3344 * @return 0 on success, an errno on failure
3345 *
3346 * This convenience API allows consumers to forcibly disable multiple regulator
3347 * clients in a single API call.
3348 * NOTE: This should be used for situations when device damage will
3349 * likely occur if the regulators are not disabled (e.g. over temp).
3350 * Although regulator_force_disable function call for some consumers can
3351 * return error numbers, the function is called for all consumers.
3352 */
3353int regulator_bulk_force_disable(int num_consumers,
3354 struct regulator_bulk_data *consumers)
3355{
3356 int i;
3357 int ret;
3358
3359 for (i = 0; i < num_consumers; i++)
3360 consumers[i].ret =
3361 regulator_force_disable(consumers[i].consumer);
3362
3363 for (i = 0; i < num_consumers; i++) {
3364 if (consumers[i].ret != 0) {
3365 ret = consumers[i].ret;
3366 goto out;
3367 }
3368 }
3369
3370 return 0;
3371out:
3372 return ret;
3373}
3374EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3375
3376/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003377 * regulator_bulk_free - free multiple regulator consumers
3378 *
3379 * @num_consumers: Number of consumers
3380 * @consumers: Consumer data; clients are stored here.
3381 *
3382 * This convenience API allows consumers to free multiple regulator
3383 * clients in a single API call.
3384 */
3385void regulator_bulk_free(int num_consumers,
3386 struct regulator_bulk_data *consumers)
3387{
3388 int i;
3389
3390 for (i = 0; i < num_consumers; i++) {
3391 regulator_put(consumers[i].consumer);
3392 consumers[i].consumer = NULL;
3393 }
3394}
3395EXPORT_SYMBOL_GPL(regulator_bulk_free);
3396
3397/**
3398 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003399 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003400 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003401 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003402 *
3403 * Called by regulator drivers to notify clients a regulator event has
3404 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003405 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003406 */
3407int regulator_notifier_call_chain(struct regulator_dev *rdev,
3408 unsigned long event, void *data)
3409{
3410 _notifier_call_chain(rdev, event, data);
3411 return NOTIFY_DONE;
3412
3413}
3414EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3415
Mark Brownbe721972009-08-04 20:09:52 +02003416/**
3417 * regulator_mode_to_status - convert a regulator mode into a status
3418 *
3419 * @mode: Mode to convert
3420 *
3421 * Convert a regulator mode into a status.
3422 */
3423int regulator_mode_to_status(unsigned int mode)
3424{
3425 switch (mode) {
3426 case REGULATOR_MODE_FAST:
3427 return REGULATOR_STATUS_FAST;
3428 case REGULATOR_MODE_NORMAL:
3429 return REGULATOR_STATUS_NORMAL;
3430 case REGULATOR_MODE_IDLE:
3431 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003432 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003433 return REGULATOR_STATUS_STANDBY;
3434 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003435 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003436 }
3437}
3438EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3439
Takashi Iwai39f802d2015-01-30 20:29:31 +01003440static struct attribute *regulator_dev_attrs[] = {
3441 &dev_attr_name.attr,
3442 &dev_attr_num_users.attr,
3443 &dev_attr_type.attr,
3444 &dev_attr_microvolts.attr,
3445 &dev_attr_microamps.attr,
3446 &dev_attr_opmode.attr,
3447 &dev_attr_state.attr,
3448 &dev_attr_status.attr,
3449 &dev_attr_bypass.attr,
3450 &dev_attr_requested_microamps.attr,
3451 &dev_attr_min_microvolts.attr,
3452 &dev_attr_max_microvolts.attr,
3453 &dev_attr_min_microamps.attr,
3454 &dev_attr_max_microamps.attr,
3455 &dev_attr_suspend_standby_state.attr,
3456 &dev_attr_suspend_mem_state.attr,
3457 &dev_attr_suspend_disk_state.attr,
3458 &dev_attr_suspend_standby_microvolts.attr,
3459 &dev_attr_suspend_mem_microvolts.attr,
3460 &dev_attr_suspend_disk_microvolts.attr,
3461 &dev_attr_suspend_standby_mode.attr,
3462 &dev_attr_suspend_mem_mode.attr,
3463 &dev_attr_suspend_disk_mode.attr,
3464 NULL
3465};
3466
David Brownell7ad68e22008-11-11 17:39:02 -08003467/*
3468 * To avoid cluttering sysfs (and memory) with useless state, only
3469 * create attributes that can be meaningfully displayed.
3470 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003471static umode_t regulator_attr_is_visible(struct kobject *kobj,
3472 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003473{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003474 struct device *dev = kobj_to_dev(kobj);
3475 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003476 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003477 umode_t mode = attr->mode;
3478
3479 /* these three are always present */
3480 if (attr == &dev_attr_name.attr ||
3481 attr == &dev_attr_num_users.attr ||
3482 attr == &dev_attr_type.attr)
3483 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003484
3485 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003486 if (attr == &dev_attr_microvolts.attr) {
3487 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3488 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3489 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3490 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3491 return mode;
3492 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003493 }
David Brownell7ad68e22008-11-11 17:39:02 -08003494
Takashi Iwai39f802d2015-01-30 20:29:31 +01003495 if (attr == &dev_attr_microamps.attr)
3496 return ops->get_current_limit ? mode : 0;
3497
3498 if (attr == &dev_attr_opmode.attr)
3499 return ops->get_mode ? mode : 0;
3500
3501 if (attr == &dev_attr_state.attr)
3502 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3503
3504 if (attr == &dev_attr_status.attr)
3505 return ops->get_status ? mode : 0;
3506
3507 if (attr == &dev_attr_bypass.attr)
3508 return ops->get_bypass ? mode : 0;
3509
David Brownell7ad68e22008-11-11 17:39:02 -08003510 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003511 if (attr == &dev_attr_requested_microamps.attr)
3512 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003513
David Brownell7ad68e22008-11-11 17:39:02 -08003514 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003515 if (attr == &dev_attr_min_microvolts.attr ||
3516 attr == &dev_attr_max_microvolts.attr)
3517 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003518
Takashi Iwai39f802d2015-01-30 20:29:31 +01003519 if (attr == &dev_attr_min_microamps.attr ||
3520 attr == &dev_attr_max_microamps.attr)
3521 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003522
Takashi Iwai39f802d2015-01-30 20:29:31 +01003523 if (attr == &dev_attr_suspend_standby_state.attr ||
3524 attr == &dev_attr_suspend_mem_state.attr ||
3525 attr == &dev_attr_suspend_disk_state.attr)
3526 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003527
Takashi Iwai39f802d2015-01-30 20:29:31 +01003528 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3529 attr == &dev_attr_suspend_mem_microvolts.attr ||
3530 attr == &dev_attr_suspend_disk_microvolts.attr)
3531 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003532
Takashi Iwai39f802d2015-01-30 20:29:31 +01003533 if (attr == &dev_attr_suspend_standby_mode.attr ||
3534 attr == &dev_attr_suspend_mem_mode.attr ||
3535 attr == &dev_attr_suspend_disk_mode.attr)
3536 return ops->set_suspend_mode ? mode : 0;
3537
3538 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003539}
3540
Takashi Iwai39f802d2015-01-30 20:29:31 +01003541static const struct attribute_group regulator_dev_group = {
3542 .attrs = regulator_dev_attrs,
3543 .is_visible = regulator_attr_is_visible,
3544};
3545
3546static const struct attribute_group *regulator_dev_groups[] = {
3547 &regulator_dev_group,
3548 NULL
3549};
3550
3551static void regulator_dev_release(struct device *dev)
3552{
3553 struct regulator_dev *rdev = dev_get_drvdata(dev);
3554 kfree(rdev);
3555}
3556
3557static struct class regulator_class = {
3558 .name = "regulator",
3559 .dev_release = regulator_dev_release,
3560 .dev_groups = regulator_dev_groups,
3561};
3562
Mark Brown1130e5b2010-12-21 23:49:31 +00003563static void rdev_init_debugfs(struct regulator_dev *rdev)
3564{
Guenter Roecka9eaa812014-10-17 08:17:03 -07003565 struct device *parent = rdev->dev.parent;
3566 const char *rname = rdev_get_name(rdev);
3567 char name[NAME_MAX];
3568
3569 /* Avoid duplicate debugfs directory names */
3570 if (parent && rname == rdev->desc->name) {
3571 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
3572 rname);
3573 rname = name;
3574 }
3575
3576 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003577 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003578 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003579 return;
3580 }
3581
3582 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3583 &rdev->use_count);
3584 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3585 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003586 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3587 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003588}
3589
Liam Girdwood414c70c2008-04-30 15:59:04 +01003590/**
3591 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003592 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003593 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003594 *
3595 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003596 * Returns a valid pointer to struct regulator_dev on success
3597 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003598 */
Mark Brown65f26842012-04-03 20:46:53 +01003599struct regulator_dev *
3600regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003601 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003602{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003603 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003604 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003605 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303606 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003607 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003608 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003609 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003610
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003611 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003612 return ERR_PTR(-EINVAL);
3613
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003614 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003615 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003616
Liam Girdwood414c70c2008-04-30 15:59:04 +01003617 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3618 return ERR_PTR(-EINVAL);
3619
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003620 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3621 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003622 return ERR_PTR(-EINVAL);
3623
Mark Brown476c2d82010-12-10 17:28:07 +00003624 /* Only one of each should be implemented */
3625 WARN_ON(regulator_desc->ops->get_voltage &&
3626 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003627 WARN_ON(regulator_desc->ops->set_voltage &&
3628 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003629
3630 /* If we're using selectors we must implement list_voltage. */
3631 if (regulator_desc->ops->get_voltage_sel &&
3632 !regulator_desc->ops->list_voltage) {
3633 return ERR_PTR(-EINVAL);
3634 }
Mark Browne8eef822010-12-12 14:36:17 +00003635 if (regulator_desc->ops->set_voltage_sel &&
3636 !regulator_desc->ops->list_voltage) {
3637 return ERR_PTR(-EINVAL);
3638 }
Mark Brown476c2d82010-12-10 17:28:07 +00003639
Liam Girdwood414c70c2008-04-30 15:59:04 +01003640 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3641 if (rdev == NULL)
3642 return ERR_PTR(-ENOMEM);
3643
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003644 /*
3645 * Duplicate the config so the driver could override it after
3646 * parsing init data.
3647 */
3648 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
3649 if (config == NULL) {
3650 kfree(rdev);
3651 return ERR_PTR(-ENOMEM);
3652 }
3653
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01003654 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01003655 &rdev->dev.of_node);
3656 if (!init_data) {
3657 init_data = config->init_data;
3658 rdev->dev.of_node = of_node_get(config->of_node);
3659 }
3660
Liam Girdwood414c70c2008-04-30 15:59:04 +01003661 mutex_lock(&regulator_list_mutex);
3662
3663 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003664 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003665 rdev->owner = regulator_desc->owner;
3666 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003667 if (config->regmap)
3668 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303669 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003670 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303671 else if (dev->parent)
3672 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003673 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003674 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003675 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003676 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003677
Liam Girdwooda5766f12008-10-10 13:22:20 +01003678 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003679 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003680 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003681 if (ret < 0)
3682 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003683 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003684
Liam Girdwooda5766f12008-10-10 13:22:20 +01003685 /* register with sysfs */
3686 rdev->dev.class = &regulator_class;
3687 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303688 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303689 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003690 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003691 if (ret != 0) {
3692 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003693 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003694 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003695
3696 dev_set_drvdata(&rdev->dev, rdev);
3697
Markus Pargmann76f439d2014-10-08 15:47:05 +02003698 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3699 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003700 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003701 if (ret != 0) {
3702 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3703 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003704 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003705 }
Mark Brown65f73502012-06-27 14:14:38 +01003706 }
3707
Mike Rapoport74f544c2008-11-25 14:53:53 +02003708 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003709 if (init_data)
3710 constraints = &init_data->constraints;
3711
3712 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003713 if (ret < 0)
3714 goto scrub;
3715
Mark Brown9a8f5e02011-11-29 18:11:19 +00003716 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003717 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303718 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003719 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303720
Liam Girdwooda5766f12008-10-10 13:22:20 +01003721 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003722 if (init_data) {
3723 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3724 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003725 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003726 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003727 if (ret < 0) {
3728 dev_err(dev, "Failed to set supply %s\n",
3729 init_data->consumer_supplies[i].supply);
3730 goto unset_supplies;
3731 }
Mark Brown23c2f042011-02-24 17:39:09 +00003732 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003733 }
3734
3735 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003736
3737 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003738out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003739 mutex_unlock(&regulator_list_mutex);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003740 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003741 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003742
Jani Nikulad4033b52010-04-29 10:55:11 +03003743unset_supplies:
3744 unset_regulator_supplies(rdev);
3745
David Brownell4fca9542008-11-11 17:38:53 -08003746scrub:
Kim, Milof19b00d2013-02-18 06:50:39 +00003747 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003748 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003749wash:
David Brownell4fca9542008-11-11 17:38:53 -08003750 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003751 /* device core frees rdev */
3752 rdev = ERR_PTR(ret);
3753 goto out;
3754
David Brownell4fca9542008-11-11 17:38:53 -08003755clean:
3756 kfree(rdev);
3757 rdev = ERR_PTR(ret);
3758 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003759}
3760EXPORT_SYMBOL_GPL(regulator_register);
3761
3762/**
3763 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003764 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003765 *
3766 * Called by regulator drivers to unregister a regulator.
3767 */
3768void regulator_unregister(struct regulator_dev *rdev)
3769{
3770 if (rdev == NULL)
3771 return;
3772
Mark Brown891636e2013-07-08 09:14:45 +01003773 if (rdev->supply) {
3774 while (rdev->use_count--)
3775 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003776 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003777 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003778 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003779 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003780 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003781 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003782 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003783 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003784 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003785 regulator_ena_gpio_free(rdev);
Charles Keepax63c7c9e2014-04-03 15:32:17 +01003786 of_node_put(rdev->dev.of_node);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003787 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003788 mutex_unlock(&regulator_list_mutex);
3789}
3790EXPORT_SYMBOL_GPL(regulator_unregister);
3791
3792/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003793 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003794 * @state: system suspend state
3795 *
3796 * Configure each regulator with it's suspend operating parameters for state.
3797 * This will usually be called by machine suspend code prior to supending.
3798 */
3799int regulator_suspend_prepare(suspend_state_t state)
3800{
3801 struct regulator_dev *rdev;
3802 int ret = 0;
3803
3804 /* ON is handled by regulator active state */
3805 if (state == PM_SUSPEND_ON)
3806 return -EINVAL;
3807
3808 mutex_lock(&regulator_list_mutex);
3809 list_for_each_entry(rdev, &regulator_list, list) {
3810
3811 mutex_lock(&rdev->mutex);
3812 ret = suspend_prepare(rdev, state);
3813 mutex_unlock(&rdev->mutex);
3814
3815 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003816 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003817 goto out;
3818 }
3819 }
3820out:
3821 mutex_unlock(&regulator_list_mutex);
3822 return ret;
3823}
3824EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3825
3826/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003827 * regulator_suspend_finish - resume regulators from system wide suspend
3828 *
3829 * Turn on regulators that might be turned off by regulator_suspend_prepare
3830 * and that should be turned on according to the regulators properties.
3831 */
3832int regulator_suspend_finish(void)
3833{
3834 struct regulator_dev *rdev;
3835 int ret = 0, error;
3836
3837 mutex_lock(&regulator_list_mutex);
3838 list_for_each_entry(rdev, &regulator_list, list) {
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003839 mutex_lock(&rdev->mutex);
Markus Pargmann30c21972014-02-20 17:36:03 +01003840 if (rdev->use_count > 0 || rdev->constraints->always_on) {
Javier Martinez Canillas0548bf42015-03-02 21:40:39 +01003841 if (!_regulator_is_enabled(rdev)) {
3842 error = _regulator_do_enable(rdev);
3843 if (error)
3844 ret = error;
3845 }
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003846 } else {
Mark Brown87b28412013-11-27 16:13:10 +00003847 if (!have_full_constraints())
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003848 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003849 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003850 goto unlock;
3851
Markus Pargmann66fda752014-02-20 17:36:04 +01003852 error = _regulator_do_disable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003853 if (error)
3854 ret = error;
3855 }
3856unlock:
3857 mutex_unlock(&rdev->mutex);
3858 }
3859 mutex_unlock(&regulator_list_mutex);
3860 return ret;
3861}
3862EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3863
3864/**
Mark Brownca725562009-03-16 19:36:34 +00003865 * regulator_has_full_constraints - the system has fully specified constraints
3866 *
3867 * Calling this function will cause the regulator API to disable all
3868 * regulators which have a zero use count and don't have an always_on
3869 * constraint in a late_initcall.
3870 *
3871 * The intention is that this will become the default behaviour in a
3872 * future kernel release so users are encouraged to use this facility
3873 * now.
3874 */
3875void regulator_has_full_constraints(void)
3876{
3877 has_full_constraints = 1;
3878}
3879EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3880
3881/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003882 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003883 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003884 *
3885 * Get rdev regulator driver private data. This call can be used in the
3886 * regulator driver context.
3887 */
3888void *rdev_get_drvdata(struct regulator_dev *rdev)
3889{
3890 return rdev->reg_data;
3891}
3892EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3893
3894/**
3895 * regulator_get_drvdata - get regulator driver data
3896 * @regulator: regulator
3897 *
3898 * Get regulator driver private data. This call can be used in the consumer
3899 * driver context when non API regulator specific functions need to be called.
3900 */
3901void *regulator_get_drvdata(struct regulator *regulator)
3902{
3903 return regulator->rdev->reg_data;
3904}
3905EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3906
3907/**
3908 * regulator_set_drvdata - set regulator driver data
3909 * @regulator: regulator
3910 * @data: data
3911 */
3912void regulator_set_drvdata(struct regulator *regulator, void *data)
3913{
3914 regulator->rdev->reg_data = data;
3915}
3916EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3917
3918/**
3919 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003920 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003921 */
3922int rdev_get_id(struct regulator_dev *rdev)
3923{
3924 return rdev->desc->id;
3925}
3926EXPORT_SYMBOL_GPL(rdev_get_id);
3927
Liam Girdwooda5766f12008-10-10 13:22:20 +01003928struct device *rdev_get_dev(struct regulator_dev *rdev)
3929{
3930 return &rdev->dev;
3931}
3932EXPORT_SYMBOL_GPL(rdev_get_dev);
3933
3934void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3935{
3936 return reg_init_data->driver_data;
3937}
3938EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3939
Mark Brownba55a972011-08-23 17:39:10 +01003940#ifdef CONFIG_DEBUG_FS
3941static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3942 size_t count, loff_t *ppos)
3943{
3944 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3945 ssize_t len, ret = 0;
3946 struct regulator_map *map;
3947
3948 if (!buf)
3949 return -ENOMEM;
3950
3951 list_for_each_entry(map, &regulator_map_list, list) {
3952 len = snprintf(buf + ret, PAGE_SIZE - ret,
3953 "%s -> %s.%s\n",
3954 rdev_get_name(map->regulator), map->dev_name,
3955 map->supply);
3956 if (len >= 0)
3957 ret += len;
3958 if (ret > PAGE_SIZE) {
3959 ret = PAGE_SIZE;
3960 break;
3961 }
3962 }
3963
3964 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3965
3966 kfree(buf);
3967
3968 return ret;
3969}
Stephen Boyd24751432012-02-20 22:50:42 -08003970#endif
Mark Brownba55a972011-08-23 17:39:10 +01003971
3972static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003973#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003974 .read = supply_map_read_file,
3975 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003976#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003977};
Mark Brownba55a972011-08-23 17:39:10 +01003978
Heiko Stübner7c225ec2015-04-07 16:16:39 +02003979#ifdef CONFIG_DEBUG_FS
3980static void regulator_summary_show_subtree(struct seq_file *s,
3981 struct regulator_dev *rdev,
3982 int level)
3983{
3984 struct list_head *list = s->private;
3985 struct regulator_dev *child;
3986 struct regulation_constraints *c;
3987 struct regulator *consumer;
3988
3989 if (!rdev)
3990 return;
3991
Heiko Stübner7c225ec2015-04-07 16:16:39 +02003992 seq_printf(s, "%*s%-*s %3d %4d %6d ",
3993 level * 3 + 1, "",
3994 30 - level * 3, rdev_get_name(rdev),
3995 rdev->use_count, rdev->open_count, rdev->bypass_count);
3996
Heiko Stübner23296092015-04-10 13:48:41 +02003997 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
3998 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02003999
4000 c = rdev->constraints;
4001 if (c) {
4002 switch (rdev->desc->type) {
4003 case REGULATOR_VOLTAGE:
4004 seq_printf(s, "%5dmV %5dmV ",
4005 c->min_uV / 1000, c->max_uV / 1000);
4006 break;
4007 case REGULATOR_CURRENT:
4008 seq_printf(s, "%5dmA %5dmA ",
4009 c->min_uA / 1000, c->max_uA / 1000);
4010 break;
4011 }
4012 }
4013
4014 seq_puts(s, "\n");
4015
4016 list_for_each_entry(consumer, &rdev->consumer_list, list) {
4017 if (consumer->dev->class == &regulator_class)
4018 continue;
4019
4020 seq_printf(s, "%*s%-*s ",
4021 (level + 1) * 3 + 1, "",
4022 30 - (level + 1) * 3, dev_name(consumer->dev));
4023
4024 switch (rdev->desc->type) {
4025 case REGULATOR_VOLTAGE:
Heiko Stübner23296092015-04-10 13:48:41 +02004026 seq_printf(s, "%37dmV %5dmV",
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004027 consumer->min_uV / 1000,
4028 consumer->max_uV / 1000);
4029 break;
4030 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004031 break;
4032 }
4033
4034 seq_puts(s, "\n");
4035 }
4036
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004037 list_for_each_entry(child, list, list) {
4038 /* handle only non-root regulators supplied by current rdev */
4039 if (!child->supply || child->supply->rdev != rdev)
4040 continue;
4041
4042 regulator_summary_show_subtree(s, child, level + 1);
4043 }
4044}
4045
4046static int regulator_summary_show(struct seq_file *s, void *data)
4047{
4048 struct list_head *list = s->private;
4049 struct regulator_dev *rdev;
4050
Heiko Stübner23296092015-04-10 13:48:41 +02004051 seq_puts(s, " regulator use open bypass voltage current min max\n");
4052 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004053
4054 mutex_lock(&regulator_list_mutex);
4055
4056 list_for_each_entry(rdev, list, list) {
4057 if (rdev->supply)
4058 continue;
4059
4060 regulator_summary_show_subtree(s, rdev, 0);
4061 }
4062
4063 mutex_unlock(&regulator_list_mutex);
4064
4065 return 0;
4066}
4067
4068static int regulator_summary_open(struct inode *inode, struct file *file)
4069{
4070 return single_open(file, regulator_summary_show, inode->i_private);
4071}
4072#endif
4073
4074static const struct file_operations regulator_summary_fops = {
4075#ifdef CONFIG_DEBUG_FS
4076 .open = regulator_summary_open,
4077 .read = seq_read,
4078 .llseek = seq_lseek,
4079 .release = single_release,
4080#endif
4081};
4082
Liam Girdwood414c70c2008-04-30 15:59:04 +01004083static int __init regulator_init(void)
4084{
Mark Brown34abbd62010-02-12 10:18:08 +00004085 int ret;
4086
Mark Brown34abbd62010-02-12 10:18:08 +00004087 ret = class_register(&regulator_class);
4088
Mark Brown1130e5b2010-12-21 23:49:31 +00004089 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004090 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004091 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004092
Mark Brownf4d562c2012-02-20 21:01:04 +00004093 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4094 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004095
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004096 debugfs_create_file("regulator_summary", 0444, debugfs_root,
4097 &regulator_list, &regulator_summary_fops);
4098
Mark Brown34abbd62010-02-12 10:18:08 +00004099 regulator_dummy_init();
4100
4101 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004102}
4103
4104/* init early to allow our consumers to complete system booting */
4105core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004106
4107static int __init regulator_init_complete(void)
4108{
4109 struct regulator_dev *rdev;
Guodong Xu272e2312014-08-13 19:33:38 +08004110 const struct regulator_ops *ops;
Mark Brownca725562009-03-16 19:36:34 +00004111 struct regulation_constraints *c;
4112 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004113
Mark Brown86f5fcf2012-07-06 18:19:13 +01004114 /*
4115 * Since DT doesn't provide an idiomatic mechanism for
4116 * enabling full constraints and since it's much more natural
4117 * with DT to provide them just assume that a DT enabled
4118 * system has full constraints.
4119 */
4120 if (of_have_populated_dt())
4121 has_full_constraints = true;
4122
Mark Brownca725562009-03-16 19:36:34 +00004123 mutex_lock(&regulator_list_mutex);
4124
4125 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004126 * we have permission to change the status for and which are
4127 * not in use or always_on. This is effectively the default
4128 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004129 */
4130 list_for_each_entry(rdev, &regulator_list, list) {
4131 ops = rdev->desc->ops;
4132 c = rdev->constraints;
4133
Markus Pargmann66fda752014-02-20 17:36:04 +01004134 if (c && c->always_on)
Mark Brownca725562009-03-16 19:36:34 +00004135 continue;
4136
Mark Browne9535832014-06-01 19:15:16 +01004137 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
4138 continue;
4139
Mark Brownca725562009-03-16 19:36:34 +00004140 mutex_lock(&rdev->mutex);
4141
4142 if (rdev->use_count)
4143 goto unlock;
4144
4145 /* If we can't read the status assume it's on. */
4146 if (ops->is_enabled)
4147 enabled = ops->is_enabled(rdev);
4148 else
4149 enabled = 1;
4150
4151 if (!enabled)
4152 goto unlock;
4153
Mark Brown87b28412013-11-27 16:13:10 +00004154 if (have_full_constraints()) {
Mark Brownca725562009-03-16 19:36:34 +00004155 /* We log since this may kill the system if it
4156 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08004157 rdev_info(rdev, "disabling\n");
Markus Pargmann66fda752014-02-20 17:36:04 +01004158 ret = _regulator_do_disable(rdev);
Jingoo Han0d25d092014-01-08 10:02:16 +09004159 if (ret != 0)
Joe Perches5da84fd2010-11-30 05:53:48 -08004160 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00004161 } else {
4162 /* The intention is that in future we will
4163 * assume that full constraints are provided
4164 * so warn even if we aren't going to do
4165 * anything here.
4166 */
Joe Perches5da84fd2010-11-30 05:53:48 -08004167 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00004168 }
4169
4170unlock:
4171 mutex_unlock(&rdev->mutex);
4172 }
4173
4174 mutex_unlock(&regulator_list_mutex);
4175
4176 return 0;
4177}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004178late_initcall_sync(regulator_init_complete);