blob: fafeb32427c11b0e3ca43839197807601542d8e5 [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
651 if (!rdev->desc->ops->get_optimum_mode)
652 return 0;
653
654 if (!rdev->desc->ops->set_mode)
655 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100656
657 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000658 output_uV = _regulator_get_voltage(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800659 if (output_uV <= 0) {
660 rdev_err(rdev, "invalid output voltage found\n");
661 return -EINVAL;
662 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100663
664 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000665 input_uV = 0;
666 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800667 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000668 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100669 input_uV = rdev->constraints->input_uV;
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800670 if (input_uV <= 0) {
671 rdev_err(rdev, "invalid input voltage found\n");
672 return -EINVAL;
673 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100674
675 /* calc total requested load */
676 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100677 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100678
679 /* now get the optimum mode for our new total regulator load */
680 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
681 output_uV, current_uA);
682
683 /* check the new mode is allowed */
Mark Brown2c608232011-03-30 06:29:12 +0900684 err = regulator_mode_constrain(rdev, &mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800685 if (err < 0) {
686 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
687 current_uA, input_uV, output_uV);
688 return err;
689 }
690
691 err = rdev->desc->ops->set_mode(rdev, mode);
692 if (err < 0)
693 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
694
695 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100696}
697
698static int suspend_set_state(struct regulator_dev *rdev,
699 struct regulator_state *rstate)
700{
701 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100702
703 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800704 * only warn if the driver implements set_suspend_voltage or
705 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100706 */
707 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800708 if (rdev->desc->ops->set_suspend_voltage ||
709 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800710 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100711 return 0;
712 }
713
714 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800715 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100716 return -EINVAL;
717 }
718
Axel Lin8ac0e952012-04-14 09:14:34 +0800719 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100720 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800721 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100722 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800723 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
724 ret = 0;
725
Liam Girdwood414c70c2008-04-30 15:59:04 +0100726 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800727 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100728 return ret;
729 }
730
731 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
732 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
733 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800734 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100735 return ret;
736 }
737 }
738
739 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
740 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
741 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800742 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100743 return ret;
744 }
745 }
746 return ret;
747}
748
749/* locks held by caller */
750static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
751{
752 if (!rdev->constraints)
753 return -EINVAL;
754
755 switch (state) {
756 case PM_SUSPEND_STANDBY:
757 return suspend_set_state(rdev,
758 &rdev->constraints->state_standby);
759 case PM_SUSPEND_MEM:
760 return suspend_set_state(rdev,
761 &rdev->constraints->state_mem);
762 case PM_SUSPEND_MAX:
763 return suspend_set_state(rdev,
764 &rdev->constraints->state_disk);
765 default:
766 return -EINVAL;
767 }
768}
769
770static void print_constraints(struct regulator_dev *rdev)
771{
772 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000773 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100774 int count = 0;
775 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100776
Mark Brown8f031b42009-10-22 16:31:31 +0100777 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100778 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100779 count += sprintf(buf + count, "%d mV ",
780 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100781 else
Mark Brown8f031b42009-10-22 16:31:31 +0100782 count += sprintf(buf + count, "%d <--> %d mV ",
783 constraints->min_uV / 1000,
784 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100785 }
Mark Brown8f031b42009-10-22 16:31:31 +0100786
787 if (!constraints->min_uV ||
788 constraints->min_uV != constraints->max_uV) {
789 ret = _regulator_get_voltage(rdev);
790 if (ret > 0)
791 count += sprintf(buf + count, "at %d mV ", ret / 1000);
792 }
793
Mark Brownbf5892a2011-05-08 22:13:37 +0100794 if (constraints->uV_offset)
795 count += sprintf(buf, "%dmV offset ",
796 constraints->uV_offset / 1000);
797
Mark Brown8f031b42009-10-22 16:31:31 +0100798 if (constraints->min_uA && constraints->max_uA) {
799 if (constraints->min_uA == constraints->max_uA)
800 count += sprintf(buf + count, "%d mA ",
801 constraints->min_uA / 1000);
802 else
803 count += sprintf(buf + count, "%d <--> %d mA ",
804 constraints->min_uA / 1000,
805 constraints->max_uA / 1000);
806 }
807
808 if (!constraints->min_uA ||
809 constraints->min_uA != constraints->max_uA) {
810 ret = _regulator_get_current_limit(rdev);
811 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400812 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100813 }
814
Liam Girdwood414c70c2008-04-30 15:59:04 +0100815 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
816 count += sprintf(buf + count, "fast ");
817 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
818 count += sprintf(buf + count, "normal ");
819 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
820 count += sprintf(buf + count, "idle ");
821 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
822 count += sprintf(buf + count, "standby");
823
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200824 if (!count)
825 sprintf(buf, "no parameters");
826
Mark Brown194dbae2014-10-31 19:11:59 +0000827 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000828
829 if ((constraints->min_uV != constraints->max_uV) &&
830 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
831 rdev_warn(rdev,
832 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100833}
834
Mark Browne79055d2009-10-19 15:53:50 +0100835static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100836 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100837{
Guodong Xu272e2312014-08-13 19:33:38 +0800838 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100839 int ret;
840
841 /* do we need to apply the constraint voltage */
842 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000843 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200844 int current_uV = _regulator_get_voltage(rdev);
845 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500846 rdev_err(rdev,
847 "failed to get the current voltage(%d)\n",
848 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200849 return current_uV;
850 }
851 if (current_uV < rdev->constraints->min_uV ||
852 current_uV > rdev->constraints->max_uV) {
853 ret = _regulator_do_set_voltage(
854 rdev, rdev->constraints->min_uV,
855 rdev->constraints->max_uV);
856 if (ret < 0) {
857 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500858 "failed to apply %duV constraint(%d)\n",
859 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200860 return ret;
861 }
Mark Brown75790252010-12-12 14:25:50 +0000862 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100863 }
Mark Browne79055d2009-10-19 15:53:50 +0100864
865 /* constrain machine-level voltage specs to fit
866 * the actual range supported by this regulator.
867 */
868 if (ops->list_voltage && rdev->desc->n_voltages) {
869 int count = rdev->desc->n_voltages;
870 int i;
871 int min_uV = INT_MAX;
872 int max_uV = INT_MIN;
873 int cmin = constraints->min_uV;
874 int cmax = constraints->max_uV;
875
876 /* it's safe to autoconfigure fixed-voltage supplies
877 and the constraints are used by list_voltage. */
878 if (count == 1 && !cmin) {
879 cmin = 1;
880 cmax = INT_MAX;
881 constraints->min_uV = cmin;
882 constraints->max_uV = cmax;
883 }
884
885 /* voltage constraints are optional */
886 if ((cmin == 0) && (cmax == 0))
887 return 0;
888
889 /* else require explicit machine-level constraints */
890 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800891 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100892 return -EINVAL;
893 }
894
895 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
896 for (i = 0; i < count; i++) {
897 int value;
898
899 value = ops->list_voltage(rdev, i);
900 if (value <= 0)
901 continue;
902
903 /* maybe adjust [min_uV..max_uV] */
904 if (value >= cmin && value < min_uV)
905 min_uV = value;
906 if (value <= cmax && value > max_uV)
907 max_uV = value;
908 }
909
910 /* final: [min_uV..max_uV] valid iff constraints valid */
911 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000912 rdev_err(rdev,
913 "unsupportable voltage constraints %u-%uuV\n",
914 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100915 return -EINVAL;
916 }
917
918 /* use regulator's subset of machine constraints */
919 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800920 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
921 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100922 constraints->min_uV = min_uV;
923 }
924 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800925 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
926 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100927 constraints->max_uV = max_uV;
928 }
929 }
930
931 return 0;
932}
933
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530934static int machine_constraints_current(struct regulator_dev *rdev,
935 struct regulation_constraints *constraints)
936{
Guodong Xu272e2312014-08-13 19:33:38 +0800937 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530938 int ret;
939
940 if (!constraints->min_uA && !constraints->max_uA)
941 return 0;
942
943 if (constraints->min_uA > constraints->max_uA) {
944 rdev_err(rdev, "Invalid current constraints\n");
945 return -EINVAL;
946 }
947
948 if (!ops->set_current_limit || !ops->get_current_limit) {
949 rdev_warn(rdev, "Operation of current configuration missing\n");
950 return 0;
951 }
952
953 /* Set regulator current in constraints range */
954 ret = ops->set_current_limit(rdev, constraints->min_uA,
955 constraints->max_uA);
956 if (ret < 0) {
957 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
958 return ret;
959 }
960
961 return 0;
962}
963
Markus Pargmann30c21972014-02-20 17:36:03 +0100964static int _regulator_do_enable(struct regulator_dev *rdev);
965
Liam Girdwooda5766f12008-10-10 13:22:20 +0100966/**
967 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000968 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000969 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100970 *
971 * Allows platform initialisation code to define and constrain
972 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
973 * Constraints *must* be set by platform code in order for some
974 * regulator operations to proceed i.e. set_voltage, set_current_limit,
975 * set_mode.
976 */
977static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000978 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100979{
980 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +0800981 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100982
Mark Brown9a8f5e02011-11-29 18:11:19 +0000983 if (constraints)
984 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
985 GFP_KERNEL);
986 else
987 rdev->constraints = kzalloc(sizeof(*constraints),
988 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +0000989 if (!rdev->constraints)
990 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100991
Mark Brownf8c12fe2010-11-29 15:55:17 +0000992 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100993 if (ret != 0)
994 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800995
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530996 ret = machine_constraints_current(rdev, rdev->constraints);
997 if (ret != 0)
998 goto out;
999
Liam Girdwooda5766f12008-10-10 13:22:20 +01001000 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001001 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001002 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001003 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001004 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +01001005 goto out;
1006 }
1007 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001008
Mark Brown9a8f5e02011-11-29 18:11:19 +00001009 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001010 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001011 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +00001012 ret = -EINVAL;
1013 goto out;
1014 }
1015
Mark Brownf8c12fe2010-11-29 15:55:17 +00001016 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001017 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001018 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +00001019 goto out;
1020 }
1021 }
1022
Mark Browncacf90f2009-03-02 16:32:46 +00001023 /* If the constraints say the regulator should be on at this point
1024 * and we have control then make sure it is enabled.
1025 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001026 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1027 ret = _regulator_do_enable(rdev);
1028 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001029 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001030 goto out;
1031 }
1032 }
1033
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301034 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1035 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301036 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1037 if (ret < 0) {
1038 rdev_err(rdev, "failed to set ramp_delay\n");
1039 goto out;
1040 }
1041 }
1042
Liam Girdwooda5766f12008-10-10 13:22:20 +01001043 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001044 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001045out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001046 kfree(rdev->constraints);
1047 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001048 return ret;
1049}
1050
1051/**
1052 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001053 * @rdev: regulator name
1054 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001055 *
1056 * Called by platform initialisation code to set the supply regulator for this
1057 * regulator. This ensures that a regulators supply will also be enabled by the
1058 * core if it's child is enabled.
1059 */
1060static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001061 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001062{
1063 int err;
1064
Mark Brown3801b862011-06-09 16:22:22 +01001065 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1066
1067 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001068 if (rdev->supply == NULL) {
1069 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001070 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001071 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301072 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001073
1074 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001075}
1076
1077/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001078 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001079 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001080 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001081 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001082 *
1083 * Allows platform initialisation code to map physical regulator
1084 * sources to symbolic names for supplies for use by devices. Devices
1085 * should use these symbolic names to request regulators, avoiding the
1086 * need to provide board-specific regulator names as platform data.
1087 */
1088static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001089 const char *consumer_dev_name,
1090 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001091{
1092 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001093 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001094
1095 if (supply == NULL)
1096 return -EINVAL;
1097
Mark Brown9ed20992009-07-21 16:00:26 +01001098 if (consumer_dev_name != NULL)
1099 has_dev = 1;
1100 else
1101 has_dev = 0;
1102
David Brownell6001e132008-12-31 12:54:19 +00001103 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001104 if (node->dev_name && consumer_dev_name) {
1105 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1106 continue;
1107 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001108 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001109 }
1110
David Brownell6001e132008-12-31 12:54:19 +00001111 if (strcmp(node->supply, supply) != 0)
1112 continue;
1113
Mark Brown737f3602012-02-02 00:10:51 +00001114 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1115 consumer_dev_name,
1116 dev_name(&node->regulator->dev),
1117 node->regulator->desc->name,
1118 supply,
1119 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001120 return -EBUSY;
1121 }
1122
Mark Brown9ed20992009-07-21 16:00:26 +01001123 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001124 if (node == NULL)
1125 return -ENOMEM;
1126
1127 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001128 node->supply = supply;
1129
Mark Brown9ed20992009-07-21 16:00:26 +01001130 if (has_dev) {
1131 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1132 if (node->dev_name == NULL) {
1133 kfree(node);
1134 return -ENOMEM;
1135 }
Mark Brown40f92442009-06-17 17:56:39 +01001136 }
1137
Liam Girdwooda5766f12008-10-10 13:22:20 +01001138 list_add(&node->list, &regulator_map_list);
1139 return 0;
1140}
1141
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001142static void unset_regulator_supplies(struct regulator_dev *rdev)
1143{
1144 struct regulator_map *node, *n;
1145
1146 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1147 if (rdev == node->regulator) {
1148 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001149 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001150 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001151 }
1152 }
1153}
1154
Mark Brownf5726ae2011-06-09 16:22:20 +01001155#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001156
1157static struct regulator *create_regulator(struct regulator_dev *rdev,
1158 struct device *dev,
1159 const char *supply_name)
1160{
1161 struct regulator *regulator;
1162 char buf[REG_STR_SIZE];
1163 int err, size;
1164
1165 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1166 if (regulator == NULL)
1167 return NULL;
1168
1169 mutex_lock(&rdev->mutex);
1170 regulator->rdev = rdev;
1171 list_add(&regulator->list, &rdev->consumer_list);
1172
1173 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001174 regulator->dev = dev;
1175
Mark Brown222cc7b2012-06-22 11:39:16 +01001176 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001177 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1178 dev->kobj.name, supply_name);
1179 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001180 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001181
1182 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1183 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001184 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001185
1186 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1187 buf);
1188 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001189 rdev_warn(rdev, "could not add device link %s err %d\n",
1190 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001191 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001192 }
Mark Brown5de70512011-06-19 13:33:16 +01001193 } else {
1194 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1195 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001196 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001197 }
Mark Brown5de70512011-06-19 13:33:16 +01001198
Mark Brown5de70512011-06-19 13:33:16 +01001199 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1200 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001201 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001202 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001203 } else {
1204 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1205 &regulator->uA_load);
1206 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1207 &regulator->min_uV);
1208 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1209 &regulator->max_uV);
1210 }
Mark Brown5de70512011-06-19 13:33:16 +01001211
Mark Brown6492bc12012-04-19 13:19:07 +01001212 /*
1213 * Check now if the regulator is an always on regulator - if
1214 * it is then we don't need to do nearly so much work for
1215 * enable/disable calls.
1216 */
1217 if (!_regulator_can_change_status(rdev) &&
1218 _regulator_is_enabled(rdev))
1219 regulator->always_on = true;
1220
Liam Girdwood414c70c2008-04-30 15:59:04 +01001221 mutex_unlock(&rdev->mutex);
1222 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001223overflow_err:
1224 list_del(&regulator->list);
1225 kfree(regulator);
1226 mutex_unlock(&rdev->mutex);
1227 return NULL;
1228}
1229
Mark Brown31aae2b2009-12-21 12:21:52 +00001230static int _regulator_get_enable_time(struct regulator_dev *rdev)
1231{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301232 if (rdev->constraints && rdev->constraints->enable_time)
1233 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001234 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001235 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001236 return rdev->desc->ops->enable_time(rdev);
1237}
1238
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001239static struct regulator_supply_alias *regulator_find_supply_alias(
1240 struct device *dev, const char *supply)
1241{
1242 struct regulator_supply_alias *map;
1243
1244 list_for_each_entry(map, &regulator_supply_alias_list, list)
1245 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1246 return map;
1247
1248 return NULL;
1249}
1250
1251static void regulator_supply_alias(struct device **dev, const char **supply)
1252{
1253 struct regulator_supply_alias *map;
1254
1255 map = regulator_find_supply_alias(*dev, *supply);
1256 if (map) {
1257 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1258 *supply, map->alias_supply,
1259 dev_name(map->alias_dev));
1260 *dev = map->alias_dev;
1261 *supply = map->alias_supply;
1262 }
1263}
1264
Rajendra Nayak69511a42011-11-18 16:47:20 +05301265static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001266 const char *supply,
1267 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301268{
1269 struct regulator_dev *r;
1270 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001271 struct regulator_map *map;
1272 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301273
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001274 regulator_supply_alias(&dev, &supply);
1275
Rajendra Nayak69511a42011-11-18 16:47:20 +05301276 /* first do a dt based lookup */
1277 if (dev && dev->of_node) {
1278 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001279 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301280 list_for_each_entry(r, &regulator_list, list)
1281 if (r->dev.parent &&
1282 node == r->dev.of_node)
1283 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001284 *ret = -EPROBE_DEFER;
1285 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001286 } else {
1287 /*
1288 * If we couldn't even get the node then it's
1289 * not just that the device didn't register
1290 * yet, there's no node and we'll never
1291 * succeed.
1292 */
1293 *ret = -ENODEV;
1294 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301295 }
1296
1297 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001298 if (dev)
1299 devname = dev_name(dev);
1300
Rajendra Nayak69511a42011-11-18 16:47:20 +05301301 list_for_each_entry(r, &regulator_list, list)
1302 if (strcmp(rdev_get_name(r), supply) == 0)
1303 return r;
1304
Mark Brown576ca4362012-03-30 12:24:37 +01001305 list_for_each_entry(map, &regulator_map_list, list) {
1306 /* If the mapping has a device set up it must match */
1307 if (map->dev_name &&
1308 (!devname || strcmp(map->dev_name, devname)))
1309 continue;
1310
1311 if (strcmp(map->supply, supply) == 0)
1312 return map->regulator;
1313 }
1314
1315
Rajendra Nayak69511a42011-11-18 16:47:20 +05301316 return NULL;
1317}
1318
Mark Brown5ffbd132009-07-21 16:00:23 +01001319/* Internal regulator request function */
1320static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001321 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001322{
1323 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001324 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001325 const char *devname = NULL;
Mark Brown317b5682014-01-27 17:34:07 +00001326 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001327
1328 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001329 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001330 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001331 }
1332
Mark Brown40f92442009-06-17 17:56:39 +01001333 if (dev)
1334 devname = dev_name(dev);
1335
Mark Brown317b5682014-01-27 17:34:07 +00001336 if (have_full_constraints())
1337 ret = -ENODEV;
1338 else
1339 ret = -EPROBE_DEFER;
1340
Liam Girdwood414c70c2008-04-30 15:59:04 +01001341 mutex_lock(&regulator_list_mutex);
1342
Mark Brown6d191a52012-03-29 14:19:02 +01001343 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301344 if (rdev)
1345 goto found;
1346
Mark Brownef60abb2013-09-23 16:12:52 +01001347 regulator = ERR_PTR(ret);
1348
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001349 /*
1350 * If we have return value from dev_lookup fail, we do not expect to
1351 * succeed, so, quit with appropriate error value
1352 */
Jingoo Han0d25d092014-01-08 10:02:16 +09001353 if (ret && ret != -ENODEV)
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001354 goto out;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001355
Mark Brown34abbd62010-02-12 10:18:08 +00001356 if (!devname)
1357 devname = "deviceless";
1358
Mark Brown4ddfebd2013-09-13 19:50:37 +01001359 /*
1360 * Assume that a regulator is physically present and enabled
1361 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001362 */
Mark Brown87b28412013-11-27 16:13:10 +00001363 if (have_full_constraints() && allow_dummy) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001364 pr_warn("%s supply %s not found, using dummy regulator\n",
1365 devname, id);
Mark Brown4ddfebd2013-09-13 19:50:37 +01001366
Mark Brown34abbd62010-02-12 10:18:08 +00001367 rdev = dummy_regulator_rdev;
1368 goto found;
Hans de Goede07817192013-12-17 16:24:57 +01001369 /* Don't log an error when called from regulator_get_optional() */
1370 } else if (!have_full_constraints() || exclusive) {
Shuah Khanacc3d5c2014-02-20 12:58:15 -07001371 dev_warn(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001372 }
Mark Brown34abbd62010-02-12 10:18:08 +00001373
Liam Girdwood414c70c2008-04-30 15:59:04 +01001374 mutex_unlock(&regulator_list_mutex);
1375 return regulator;
1376
1377found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001378 if (rdev->exclusive) {
1379 regulator = ERR_PTR(-EPERM);
1380 goto out;
1381 }
1382
1383 if (exclusive && rdev->open_count) {
1384 regulator = ERR_PTR(-EBUSY);
1385 goto out;
1386 }
1387
Liam Girdwooda5766f12008-10-10 13:22:20 +01001388 if (!try_module_get(rdev->owner))
1389 goto out;
1390
Liam Girdwood414c70c2008-04-30 15:59:04 +01001391 regulator = create_regulator(rdev, dev, id);
1392 if (regulator == NULL) {
1393 regulator = ERR_PTR(-ENOMEM);
1394 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001395 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001396 }
1397
Mark Brown5ffbd132009-07-21 16:00:23 +01001398 rdev->open_count++;
1399 if (exclusive) {
1400 rdev->exclusive = 1;
1401
1402 ret = _regulator_is_enabled(rdev);
1403 if (ret > 0)
1404 rdev->use_count = 1;
1405 else
1406 rdev->use_count = 0;
1407 }
1408
Liam Girdwooda5766f12008-10-10 13:22:20 +01001409out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001410 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001411
Liam Girdwood414c70c2008-04-30 15:59:04 +01001412 return regulator;
1413}
Mark Brown5ffbd132009-07-21 16:00:23 +01001414
1415/**
1416 * regulator_get - lookup and obtain a reference to a regulator.
1417 * @dev: device for regulator "consumer"
1418 * @id: Supply name or regulator ID.
1419 *
1420 * Returns a struct regulator corresponding to the regulator producer,
1421 * or IS_ERR() condition containing errno.
1422 *
1423 * Use of supply names configured via regulator_set_device_supply() is
1424 * strongly encouraged. It is recommended that the supply name used
1425 * should match the name used for the supply and/or the relevant
1426 * device pins in the datasheet.
1427 */
1428struct regulator *regulator_get(struct device *dev, const char *id)
1429{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001430 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001431}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001432EXPORT_SYMBOL_GPL(regulator_get);
1433
Stephen Boyd070b9072012-01-16 19:39:58 -08001434/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001435 * regulator_get_exclusive - obtain exclusive access to a regulator.
1436 * @dev: device for regulator "consumer"
1437 * @id: Supply name or regulator ID.
1438 *
1439 * Returns a struct regulator corresponding to the regulator producer,
1440 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001441 * unable to obtain this regulator while this reference is held and the
1442 * use count for the regulator will be initialised to reflect the current
1443 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001444 *
1445 * This is intended for use by consumers which cannot tolerate shared
1446 * use of the regulator such as those which need to force the
1447 * regulator off for correct operation of the hardware they are
1448 * controlling.
1449 *
1450 * Use of supply names configured via regulator_set_device_supply() is
1451 * strongly encouraged. It is recommended that the supply name used
1452 * should match the name used for the supply and/or the relevant
1453 * device pins in the datasheet.
1454 */
1455struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1456{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001457 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001458}
1459EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1460
Mark Brownde1dd9f2013-07-29 21:42:42 +01001461/**
1462 * regulator_get_optional - obtain optional access to a regulator.
1463 * @dev: device for regulator "consumer"
1464 * @id: Supply name or regulator ID.
1465 *
1466 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001467 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001468 *
1469 * This is intended for use by consumers for devices which can have
1470 * some supplies unconnected in normal use, such as some MMC devices.
1471 * It can allow the regulator core to provide stub supplies for other
1472 * supplies requested using normal regulator_get() calls without
1473 * disrupting the operation of drivers that can handle absent
1474 * supplies.
1475 *
1476 * Use of supply names configured via regulator_set_device_supply() is
1477 * strongly encouraged. It is recommended that the supply name used
1478 * should match the name used for the supply and/or the relevant
1479 * device pins in the datasheet.
1480 */
1481struct regulator *regulator_get_optional(struct device *dev, const char *id)
1482{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001483 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001484}
1485EXPORT_SYMBOL_GPL(regulator_get_optional);
1486
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301487/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001488static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001489{
1490 struct regulator_dev *rdev;
1491
1492 if (regulator == NULL || IS_ERR(regulator))
1493 return;
1494
Liam Girdwood414c70c2008-04-30 15:59:04 +01001495 rdev = regulator->rdev;
1496
Mark Brown5de70512011-06-19 13:33:16 +01001497 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001498
Liam Girdwood414c70c2008-04-30 15:59:04 +01001499 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001500 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001501 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301502 mutex_lock(&rdev->mutex);
Mark Brown5de70512011-06-19 13:33:16 +01001503 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001504 list_del(&regulator->list);
1505 kfree(regulator);
1506
Mark Brown5ffbd132009-07-21 16:00:23 +01001507 rdev->open_count--;
1508 rdev->exclusive = 0;
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301509 mutex_unlock(&rdev->mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001510
Liam Girdwood414c70c2008-04-30 15:59:04 +01001511 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001512}
1513
1514/**
1515 * regulator_put - "free" the regulator source
1516 * @regulator: regulator source
1517 *
1518 * Note: drivers must ensure that all regulator_enable calls made on this
1519 * regulator source are balanced by regulator_disable calls prior to calling
1520 * this function.
1521 */
1522void regulator_put(struct regulator *regulator)
1523{
1524 mutex_lock(&regulator_list_mutex);
1525 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001526 mutex_unlock(&regulator_list_mutex);
1527}
1528EXPORT_SYMBOL_GPL(regulator_put);
1529
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001530/**
1531 * regulator_register_supply_alias - Provide device alias for supply lookup
1532 *
1533 * @dev: device that will be given as the regulator "consumer"
1534 * @id: Supply name or regulator ID
1535 * @alias_dev: device that should be used to lookup the supply
1536 * @alias_id: Supply name or regulator ID that should be used to lookup the
1537 * supply
1538 *
1539 * All lookups for id on dev will instead be conducted for alias_id on
1540 * alias_dev.
1541 */
1542int regulator_register_supply_alias(struct device *dev, const char *id,
1543 struct device *alias_dev,
1544 const char *alias_id)
1545{
1546 struct regulator_supply_alias *map;
1547
1548 map = regulator_find_supply_alias(dev, id);
1549 if (map)
1550 return -EEXIST;
1551
1552 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1553 if (!map)
1554 return -ENOMEM;
1555
1556 map->src_dev = dev;
1557 map->src_supply = id;
1558 map->alias_dev = alias_dev;
1559 map->alias_supply = alias_id;
1560
1561 list_add(&map->list, &regulator_supply_alias_list);
1562
1563 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1564 id, dev_name(dev), alias_id, dev_name(alias_dev));
1565
1566 return 0;
1567}
1568EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1569
1570/**
1571 * regulator_unregister_supply_alias - Remove device alias
1572 *
1573 * @dev: device that will be given as the regulator "consumer"
1574 * @id: Supply name or regulator ID
1575 *
1576 * Remove a lookup alias if one exists for id on dev.
1577 */
1578void regulator_unregister_supply_alias(struct device *dev, const char *id)
1579{
1580 struct regulator_supply_alias *map;
1581
1582 map = regulator_find_supply_alias(dev, id);
1583 if (map) {
1584 list_del(&map->list);
1585 kfree(map);
1586 }
1587}
1588EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1589
1590/**
1591 * regulator_bulk_register_supply_alias - register multiple aliases
1592 *
1593 * @dev: device that will be given as the regulator "consumer"
1594 * @id: List of supply names or regulator IDs
1595 * @alias_dev: device that should be used to lookup the supply
1596 * @alias_id: List of supply names or regulator IDs that should be used to
1597 * lookup the supply
1598 * @num_id: Number of aliases to register
1599 *
1600 * @return 0 on success, an errno on failure.
1601 *
1602 * This helper function allows drivers to register several supply
1603 * aliases in one operation. If any of the aliases cannot be
1604 * registered any aliases that were registered will be removed
1605 * before returning to the caller.
1606 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001607int regulator_bulk_register_supply_alias(struct device *dev,
1608 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001609 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001610 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001611 int num_id)
1612{
1613 int i;
1614 int ret;
1615
1616 for (i = 0; i < num_id; ++i) {
1617 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1618 alias_id[i]);
1619 if (ret < 0)
1620 goto err;
1621 }
1622
1623 return 0;
1624
1625err:
1626 dev_err(dev,
1627 "Failed to create supply alias %s,%s -> %s,%s\n",
1628 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1629
1630 while (--i >= 0)
1631 regulator_unregister_supply_alias(dev, id[i]);
1632
1633 return ret;
1634}
1635EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1636
1637/**
1638 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1639 *
1640 * @dev: device that will be given as the regulator "consumer"
1641 * @id: List of supply names or regulator IDs
1642 * @num_id: Number of aliases to unregister
1643 *
1644 * This helper function allows drivers to unregister several supply
1645 * aliases in one operation.
1646 */
1647void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001648 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001649 int num_id)
1650{
1651 int i;
1652
1653 for (i = 0; i < num_id; ++i)
1654 regulator_unregister_supply_alias(dev, id[i]);
1655}
1656EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1657
1658
Kim, Milof19b00d2013-02-18 06:50:39 +00001659/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1660static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1661 const struct regulator_config *config)
1662{
1663 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001664 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001665 int ret;
1666
Russell King778b28b2014-06-29 17:55:54 +01001667 gpiod = gpio_to_desc(config->ena_gpio);
1668
Kim, Milof19b00d2013-02-18 06:50:39 +00001669 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001670 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001671 rdev_dbg(rdev, "GPIO %d is already used\n",
1672 config->ena_gpio);
1673 goto update_ena_gpio_to_rdev;
1674 }
1675 }
1676
1677 ret = gpio_request_one(config->ena_gpio,
1678 GPIOF_DIR_OUT | config->ena_gpio_flags,
1679 rdev_get_name(rdev));
1680 if (ret)
1681 return ret;
1682
1683 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1684 if (pin == NULL) {
1685 gpio_free(config->ena_gpio);
1686 return -ENOMEM;
1687 }
1688
Russell King778b28b2014-06-29 17:55:54 +01001689 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001690 pin->ena_gpio_invert = config->ena_gpio_invert;
1691 list_add(&pin->list, &regulator_ena_gpio_list);
1692
1693update_ena_gpio_to_rdev:
1694 pin->request_count++;
1695 rdev->ena_pin = pin;
1696 return 0;
1697}
1698
1699static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1700{
1701 struct regulator_enable_gpio *pin, *n;
1702
1703 if (!rdev->ena_pin)
1704 return;
1705
1706 /* Free the GPIO only in case of no use */
1707 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001708 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001709 if (pin->request_count <= 1) {
1710 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001711 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001712 list_del(&pin->list);
1713 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001714 rdev->ena_pin = NULL;
1715 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001716 } else {
1717 pin->request_count--;
1718 }
1719 }
1720 }
1721}
1722
Kim, Milo967cfb12013-02-18 06:50:48 +00001723/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001724 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1725 * @rdev: regulator_dev structure
1726 * @enable: enable GPIO at initial use?
1727 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001728 * GPIO is enabled in case of initial use. (enable_count is 0)
1729 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1730 */
1731static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1732{
1733 struct regulator_enable_gpio *pin = rdev->ena_pin;
1734
1735 if (!pin)
1736 return -EINVAL;
1737
1738 if (enable) {
1739 /* Enable GPIO at initial use */
1740 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001741 gpiod_set_value_cansleep(pin->gpiod,
1742 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001743
1744 pin->enable_count++;
1745 } else {
1746 if (pin->enable_count > 1) {
1747 pin->enable_count--;
1748 return 0;
1749 }
1750
1751 /* Disable GPIO if not used */
1752 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001753 gpiod_set_value_cansleep(pin->gpiod,
1754 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001755 pin->enable_count = 0;
1756 }
1757 }
1758
1759 return 0;
1760}
1761
Guodong Xu79fd1142014-08-13 19:33:39 +08001762/**
1763 * _regulator_enable_delay - a delay helper function
1764 * @delay: time to delay in microseconds
1765 *
1766 * Delay for the requested amount of time as per the guidelines in:
1767 *
1768 * Documentation/timers/timers-howto.txt
1769 *
1770 * The assumption here is that regulators will never be enabled in
1771 * atomic context and therefore sleeping functions can be used.
1772 */
1773static void _regulator_enable_delay(unsigned int delay)
1774{
1775 unsigned int ms = delay / 1000;
1776 unsigned int us = delay % 1000;
1777
1778 if (ms > 0) {
1779 /*
1780 * For small enough values, handle super-millisecond
1781 * delays in the usleep_range() call below.
1782 */
1783 if (ms < 20)
1784 us += ms * 1000;
1785 else
1786 msleep(ms);
1787 }
1788
1789 /*
1790 * Give the scheduler some room to coalesce with any other
1791 * wakeup sources. For delays shorter than 10 us, don't even
1792 * bother setting up high-resolution timers and just busy-
1793 * loop.
1794 */
1795 if (us >= 10)
1796 usleep_range(us, us + 100);
1797 else
1798 udelay(us);
1799}
1800
Mark Brown5c5659d2012-06-27 13:21:26 +01001801static int _regulator_do_enable(struct regulator_dev *rdev)
1802{
1803 int ret, delay;
1804
1805 /* Query before enabling in case configuration dependent. */
1806 ret = _regulator_get_enable_time(rdev);
1807 if (ret >= 0) {
1808 delay = ret;
1809 } else {
1810 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1811 delay = 0;
1812 }
1813
1814 trace_regulator_enable(rdev_get_name(rdev));
1815
Guodong Xu871f5652014-08-13 19:33:40 +08001816 if (rdev->desc->off_on_delay) {
1817 /* if needed, keep a distance of off_on_delay from last time
1818 * this regulator was disabled.
1819 */
1820 unsigned long start_jiffy = jiffies;
1821 unsigned long intended, max_delay, remaining;
1822
1823 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
1824 intended = rdev->last_off_jiffy + max_delay;
1825
1826 if (time_before(start_jiffy, intended)) {
1827 /* calc remaining jiffies to deal with one-time
1828 * timer wrapping.
1829 * in case of multiple timer wrapping, either it can be
1830 * detected by out-of-range remaining, or it cannot be
1831 * detected and we gets a panelty of
1832 * _regulator_enable_delay().
1833 */
1834 remaining = intended - start_jiffy;
1835 if (remaining <= max_delay)
1836 _regulator_enable_delay(
1837 jiffies_to_usecs(remaining));
1838 }
1839 }
1840
Kim, Milo967cfb12013-02-18 06:50:48 +00001841 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08001842 if (!rdev->ena_gpio_state) {
1843 ret = regulator_ena_gpio_ctrl(rdev, true);
1844 if (ret < 0)
1845 return ret;
1846 rdev->ena_gpio_state = 1;
1847 }
Mark Brown65f73502012-06-27 14:14:38 +01001848 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001849 ret = rdev->desc->ops->enable(rdev);
1850 if (ret < 0)
1851 return ret;
1852 } else {
1853 return -EINVAL;
1854 }
1855
1856 /* Allow the regulator to ramp; it would be useful to extend
1857 * this for bulk operations so that the regulators can ramp
1858 * together. */
1859 trace_regulator_enable_delay(rdev_get_name(rdev));
1860
Guodong Xu79fd1142014-08-13 19:33:39 +08001861 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01001862
1863 trace_regulator_enable_complete(rdev_get_name(rdev));
1864
1865 return 0;
1866}
1867
Liam Girdwood414c70c2008-04-30 15:59:04 +01001868/* locks held by regulator_enable() */
1869static int _regulator_enable(struct regulator_dev *rdev)
1870{
Mark Brown5c5659d2012-06-27 13:21:26 +01001871 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001872
Liam Girdwood414c70c2008-04-30 15:59:04 +01001873 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001874 if (rdev->constraints &&
1875 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1876 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001877
Mark Brown9a2372f2009-08-03 18:49:57 +01001878 if (rdev->use_count == 0) {
1879 /* The regulator may on if it's not switchable or left on */
1880 ret = _regulator_is_enabled(rdev);
1881 if (ret == -EINVAL || ret == 0) {
1882 if (!_regulator_can_change_status(rdev))
1883 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001884
Mark Brown5c5659d2012-06-27 13:21:26 +01001885 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001886 if (ret < 0)
1887 return ret;
1888
Linus Walleija7433cf2009-08-26 12:54:04 +02001889 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001890 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001891 return ret;
1892 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001893 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001894 }
1895
Mark Brown9a2372f2009-08-03 18:49:57 +01001896 rdev->use_count++;
1897
1898 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001899}
1900
1901/**
1902 * regulator_enable - enable regulator output
1903 * @regulator: regulator source
1904 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001905 * Request that the regulator be enabled with the regulator output at
1906 * the predefined voltage or current value. Calls to regulator_enable()
1907 * must be balanced with calls to regulator_disable().
1908 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001909 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001910 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001911 */
1912int regulator_enable(struct regulator *regulator)
1913{
David Brownell412aec62008-11-16 11:44:46 -08001914 struct regulator_dev *rdev = regulator->rdev;
1915 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001916
Mark Brown6492bc12012-04-19 13:19:07 +01001917 if (regulator->always_on)
1918 return 0;
1919
Mark Brown3801b862011-06-09 16:22:22 +01001920 if (rdev->supply) {
1921 ret = regulator_enable(rdev->supply);
1922 if (ret != 0)
1923 return ret;
1924 }
1925
David Brownell412aec62008-11-16 11:44:46 -08001926 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001927 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001928 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001929
Heiko Stübnerd1685e42011-10-14 18:00:29 +02001930 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01001931 regulator_disable(rdev->supply);
1932
Liam Girdwood414c70c2008-04-30 15:59:04 +01001933 return ret;
1934}
1935EXPORT_SYMBOL_GPL(regulator_enable);
1936
Mark Brown5c5659d2012-06-27 13:21:26 +01001937static int _regulator_do_disable(struct regulator_dev *rdev)
1938{
1939 int ret;
1940
1941 trace_regulator_disable(rdev_get_name(rdev));
1942
Kim, Milo967cfb12013-02-18 06:50:48 +00001943 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08001944 if (rdev->ena_gpio_state) {
1945 ret = regulator_ena_gpio_ctrl(rdev, false);
1946 if (ret < 0)
1947 return ret;
1948 rdev->ena_gpio_state = 0;
1949 }
Mark Brown5c5659d2012-06-27 13:21:26 +01001950
1951 } else if (rdev->desc->ops->disable) {
1952 ret = rdev->desc->ops->disable(rdev);
1953 if (ret != 0)
1954 return ret;
1955 }
1956
Guodong Xu871f5652014-08-13 19:33:40 +08001957 /* cares about last_off_jiffy only if off_on_delay is required by
1958 * device.
1959 */
1960 if (rdev->desc->off_on_delay)
1961 rdev->last_off_jiffy = jiffies;
1962
Mark Brown5c5659d2012-06-27 13:21:26 +01001963 trace_regulator_disable_complete(rdev_get_name(rdev));
1964
Mark Brown5c5659d2012-06-27 13:21:26 +01001965 return 0;
1966}
1967
Liam Girdwood414c70c2008-04-30 15:59:04 +01001968/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001969static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001970{
1971 int ret = 0;
1972
David Brownellcd94b502009-03-11 16:43:34 -08001973 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001974 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001975 return -EIO;
1976
Liam Girdwood414c70c2008-04-30 15:59:04 +01001977 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001978 if (rdev->use_count == 1 &&
1979 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001980
1981 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01001982 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00001983 ret = _notifier_call_chain(rdev,
1984 REGULATOR_EVENT_PRE_DISABLE,
1985 NULL);
1986 if (ret & NOTIFY_STOP_MASK)
1987 return -EINVAL;
1988
Mark Brown5c5659d2012-06-27 13:21:26 +01001989 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001990 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001991 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00001992 _notifier_call_chain(rdev,
1993 REGULATOR_EVENT_ABORT_DISABLE,
1994 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001995 return ret;
1996 }
Markus Pargmann66fda752014-02-20 17:36:04 +01001997 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1998 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001999 }
2000
Liam Girdwood414c70c2008-04-30 15:59:04 +01002001 rdev->use_count = 0;
2002 } else if (rdev->use_count > 1) {
2003
2004 if (rdev->constraints &&
2005 (rdev->constraints->valid_ops_mask &
2006 REGULATOR_CHANGE_DRMS))
2007 drms_uA_update(rdev);
2008
2009 rdev->use_count--;
2010 }
Mark Brown3801b862011-06-09 16:22:22 +01002011
Liam Girdwood414c70c2008-04-30 15:59:04 +01002012 return ret;
2013}
2014
2015/**
2016 * regulator_disable - disable regulator output
2017 * @regulator: regulator source
2018 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002019 * Disable the regulator output voltage or current. Calls to
2020 * regulator_enable() must be balanced with calls to
2021 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002022 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002023 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002024 * devices have it enabled, the regulator device supports disabling and
2025 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002026 */
2027int regulator_disable(struct regulator *regulator)
2028{
David Brownell412aec62008-11-16 11:44:46 -08002029 struct regulator_dev *rdev = regulator->rdev;
2030 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002031
Mark Brown6492bc12012-04-19 13:19:07 +01002032 if (regulator->always_on)
2033 return 0;
2034
David Brownell412aec62008-11-16 11:44:46 -08002035 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002036 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002037 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002038
Mark Brown3801b862011-06-09 16:22:22 +01002039 if (ret == 0 && rdev->supply)
2040 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002041
Liam Girdwood414c70c2008-04-30 15:59:04 +01002042 return ret;
2043}
2044EXPORT_SYMBOL_GPL(regulator_disable);
2045
2046/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002047static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002048{
2049 int ret = 0;
2050
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002051 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2052 REGULATOR_EVENT_PRE_DISABLE, NULL);
2053 if (ret & NOTIFY_STOP_MASK)
2054 return -EINVAL;
2055
Markus Pargmann66fda752014-02-20 17:36:04 +01002056 ret = _regulator_do_disable(rdev);
2057 if (ret < 0) {
2058 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002059 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2060 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002061 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002062 }
2063
Markus Pargmann66fda752014-02-20 17:36:04 +01002064 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2065 REGULATOR_EVENT_DISABLE, NULL);
2066
2067 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002068}
2069
2070/**
2071 * regulator_force_disable - force disable regulator output
2072 * @regulator: regulator source
2073 *
2074 * Forcibly disable the regulator output voltage or current.
2075 * NOTE: this *will* disable the regulator output even if other consumer
2076 * devices have it enabled. This should be used for situations when device
2077 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2078 */
2079int regulator_force_disable(struct regulator *regulator)
2080{
Mark Brown82d15832011-05-09 11:41:02 +02002081 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002082 int ret;
2083
Mark Brown82d15832011-05-09 11:41:02 +02002084 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002085 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002086 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002087 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002088
Mark Brown3801b862011-06-09 16:22:22 +01002089 if (rdev->supply)
2090 while (rdev->open_count--)
2091 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002092
Liam Girdwood414c70c2008-04-30 15:59:04 +01002093 return ret;
2094}
2095EXPORT_SYMBOL_GPL(regulator_force_disable);
2096
Mark Brownda07ecd2011-09-11 09:53:50 +01002097static void regulator_disable_work(struct work_struct *work)
2098{
2099 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2100 disable_work.work);
2101 int count, i, ret;
2102
2103 mutex_lock(&rdev->mutex);
2104
2105 BUG_ON(!rdev->deferred_disables);
2106
2107 count = rdev->deferred_disables;
2108 rdev->deferred_disables = 0;
2109
2110 for (i = 0; i < count; i++) {
2111 ret = _regulator_disable(rdev);
2112 if (ret != 0)
2113 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2114 }
2115
2116 mutex_unlock(&rdev->mutex);
2117
2118 if (rdev->supply) {
2119 for (i = 0; i < count; i++) {
2120 ret = regulator_disable(rdev->supply);
2121 if (ret != 0) {
2122 rdev_err(rdev,
2123 "Supply disable failed: %d\n", ret);
2124 }
2125 }
2126 }
2127}
2128
2129/**
2130 * regulator_disable_deferred - disable regulator output with delay
2131 * @regulator: regulator source
2132 * @ms: miliseconds until the regulator is disabled
2133 *
2134 * Execute regulator_disable() on the regulator after a delay. This
2135 * is intended for use with devices that require some time to quiesce.
2136 *
2137 * NOTE: this will only disable the regulator output if no other consumer
2138 * devices have it enabled, the regulator device supports disabling and
2139 * machine constraints permit this operation.
2140 */
2141int regulator_disable_deferred(struct regulator *regulator, int ms)
2142{
2143 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002144 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002145
Mark Brown6492bc12012-04-19 13:19:07 +01002146 if (regulator->always_on)
2147 return 0;
2148
Mark Brown2b5a24a2012-09-07 11:00:53 +08002149 if (!ms)
2150 return regulator_disable(regulator);
2151
Mark Brownda07ecd2011-09-11 09:53:50 +01002152 mutex_lock(&rdev->mutex);
2153 rdev->deferred_disables++;
2154 mutex_unlock(&rdev->mutex);
2155
Mark Brown070260f2013-07-18 11:52:04 +01002156 ret = queue_delayed_work(system_power_efficient_wq,
2157 &rdev->disable_work,
2158 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002159 if (ret < 0)
2160 return ret;
2161 else
2162 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002163}
2164EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2165
Liam Girdwood414c70c2008-04-30 15:59:04 +01002166static int _regulator_is_enabled(struct regulator_dev *rdev)
2167{
Mark Brown65f73502012-06-27 14:14:38 +01002168 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002169 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002170 return rdev->ena_gpio_state;
2171
Mark Brown9a7f6a42010-02-11 17:22:45 +00002172 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002173 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002174 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002175
Mark Brown93325462009-08-03 18:49:56 +01002176 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002177}
2178
2179/**
2180 * regulator_is_enabled - is the regulator output enabled
2181 * @regulator: regulator source
2182 *
David Brownell412aec62008-11-16 11:44:46 -08002183 * Returns positive if the regulator driver backing the source/client
2184 * has requested that the device be enabled, zero if it hasn't, else a
2185 * negative errno code.
2186 *
2187 * Note that the device backing this regulator handle can have multiple
2188 * users, so it might be enabled even if regulator_enable() was never
2189 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002190 */
2191int regulator_is_enabled(struct regulator *regulator)
2192{
Mark Brown93325462009-08-03 18:49:56 +01002193 int ret;
2194
Mark Brown6492bc12012-04-19 13:19:07 +01002195 if (regulator->always_on)
2196 return 1;
2197
Mark Brown93325462009-08-03 18:49:56 +01002198 mutex_lock(&regulator->rdev->mutex);
2199 ret = _regulator_is_enabled(regulator->rdev);
2200 mutex_unlock(&regulator->rdev->mutex);
2201
2202 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002203}
2204EXPORT_SYMBOL_GPL(regulator_is_enabled);
2205
2206/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002207 * regulator_can_change_voltage - check if regulator can change voltage
2208 * @regulator: regulator source
2209 *
2210 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002211 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002212 * or dummy regulators and disabling voltage change logic in the client
2213 * driver.
2214 */
2215int regulator_can_change_voltage(struct regulator *regulator)
2216{
2217 struct regulator_dev *rdev = regulator->rdev;
2218
2219 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002220 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2221 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2222 return 1;
2223
2224 if (rdev->desc->continuous_voltage_range &&
2225 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2226 rdev->constraints->min_uV != rdev->constraints->max_uV)
2227 return 1;
2228 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002229
2230 return 0;
2231}
2232EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2233
2234/**
David Brownell4367cfd2009-02-26 11:48:36 -08002235 * regulator_count_voltages - count regulator_list_voltage() selectors
2236 * @regulator: regulator source
2237 *
2238 * Returns number of selectors, or negative errno. Selectors are
2239 * numbered starting at zero, and typically correspond to bitfields
2240 * in hardware registers.
2241 */
2242int regulator_count_voltages(struct regulator *regulator)
2243{
2244 struct regulator_dev *rdev = regulator->rdev;
2245
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002246 if (rdev->desc->n_voltages)
2247 return rdev->desc->n_voltages;
2248
2249 if (!rdev->supply)
2250 return -EINVAL;
2251
2252 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002253}
2254EXPORT_SYMBOL_GPL(regulator_count_voltages);
2255
2256/**
2257 * regulator_list_voltage - enumerate supported voltages
2258 * @regulator: regulator source
2259 * @selector: identify voltage to list
2260 * Context: can sleep
2261 *
2262 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002263 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002264 * negative errno.
2265 */
2266int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2267{
Guodong Xu272e2312014-08-13 19:33:38 +08002268 struct regulator_dev *rdev = regulator->rdev;
2269 const struct regulator_ops *ops = rdev->desc->ops;
2270 int ret;
David Brownell4367cfd2009-02-26 11:48:36 -08002271
Guennadi Liakhovetskif4460432013-11-13 12:33:00 +01002272 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2273 return rdev->desc->fixed_uV;
2274
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002275 if (ops->list_voltage) {
2276 if (selector >= rdev->desc->n_voltages)
2277 return -EINVAL;
2278 mutex_lock(&rdev->mutex);
2279 ret = ops->list_voltage(rdev, selector);
2280 mutex_unlock(&rdev->mutex);
2281 } else if (rdev->supply) {
2282 ret = regulator_list_voltage(rdev->supply, selector);
2283 } else {
David Brownell4367cfd2009-02-26 11:48:36 -08002284 return -EINVAL;
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002285 }
David Brownell4367cfd2009-02-26 11:48:36 -08002286
2287 if (ret > 0) {
2288 if (ret < rdev->constraints->min_uV)
2289 ret = 0;
2290 else if (ret > rdev->constraints->max_uV)
2291 ret = 0;
2292 }
2293
2294 return ret;
2295}
2296EXPORT_SYMBOL_GPL(regulator_list_voltage);
2297
2298/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002299 * regulator_get_regmap - get the regulator's register map
2300 * @regulator: regulator source
2301 *
2302 * Returns the register map for the given regulator, or an ERR_PTR value
2303 * if the regulator doesn't use regmap.
2304 */
2305struct regmap *regulator_get_regmap(struct regulator *regulator)
2306{
2307 struct regmap *map = regulator->rdev->regmap;
2308
2309 return map ? map : ERR_PTR(-EOPNOTSUPP);
2310}
2311
2312/**
2313 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2314 * @regulator: regulator source
2315 * @vsel_reg: voltage selector register, output parameter
2316 * @vsel_mask: mask for voltage selector bitfield, output parameter
2317 *
2318 * Returns the hardware register offset and bitmask used for setting the
2319 * regulator voltage. This might be useful when configuring voltage-scaling
2320 * hardware or firmware that can make I2C requests behind the kernel's back,
2321 * for example.
2322 *
2323 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2324 * and 0 is returned, otherwise a negative errno is returned.
2325 */
2326int regulator_get_hardware_vsel_register(struct regulator *regulator,
2327 unsigned *vsel_reg,
2328 unsigned *vsel_mask)
2329{
Guodong Xu39f54602014-08-19 18:07:41 +08002330 struct regulator_dev *rdev = regulator->rdev;
2331 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002332
2333 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2334 return -EOPNOTSUPP;
2335
2336 *vsel_reg = rdev->desc->vsel_reg;
2337 *vsel_mask = rdev->desc->vsel_mask;
2338
2339 return 0;
2340}
2341EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2342
2343/**
2344 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2345 * @regulator: regulator source
2346 * @selector: identify voltage to list
2347 *
2348 * Converts the selector to a hardware-specific voltage selector that can be
2349 * directly written to the regulator registers. The address of the voltage
2350 * register can be determined by calling @regulator_get_hardware_vsel_register.
2351 *
2352 * On error a negative errno is returned.
2353 */
2354int regulator_list_hardware_vsel(struct regulator *regulator,
2355 unsigned selector)
2356{
Guodong Xu39f54602014-08-19 18:07:41 +08002357 struct regulator_dev *rdev = regulator->rdev;
2358 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002359
2360 if (selector >= rdev->desc->n_voltages)
2361 return -EINVAL;
2362 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2363 return -EOPNOTSUPP;
2364
2365 return selector;
2366}
2367EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2368
2369/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002370 * regulator_get_linear_step - return the voltage step size between VSEL values
2371 * @regulator: regulator source
2372 *
2373 * Returns the voltage step size between VSEL values for linear
2374 * regulators, or return 0 if the regulator isn't a linear regulator.
2375 */
2376unsigned int regulator_get_linear_step(struct regulator *regulator)
2377{
2378 struct regulator_dev *rdev = regulator->rdev;
2379
2380 return rdev->desc->uV_step;
2381}
2382EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2383
2384/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002385 * regulator_is_supported_voltage - check if a voltage range can be supported
2386 *
2387 * @regulator: Regulator to check.
2388 * @min_uV: Minimum required voltage in uV.
2389 * @max_uV: Maximum required voltage in uV.
2390 *
2391 * Returns a boolean or a negative error code.
2392 */
2393int regulator_is_supported_voltage(struct regulator *regulator,
2394 int min_uV, int max_uV)
2395{
Mark Brownc5f39392012-07-02 15:00:18 +01002396 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002397 int i, voltages, ret;
2398
Mark Brownc5f39392012-07-02 15:00:18 +01002399 /* If we can't change voltage check the current voltage */
2400 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2401 ret = regulator_get_voltage(regulator);
2402 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002403 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002404 else
2405 return ret;
2406 }
2407
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002408 /* Any voltage within constrains range is fine? */
2409 if (rdev->desc->continuous_voltage_range)
2410 return min_uV >= rdev->constraints->min_uV &&
2411 max_uV <= rdev->constraints->max_uV;
2412
Mark Browna7a1ad92009-07-21 16:00:24 +01002413 ret = regulator_count_voltages(regulator);
2414 if (ret < 0)
2415 return ret;
2416 voltages = ret;
2417
2418 for (i = 0; i < voltages; i++) {
2419 ret = regulator_list_voltage(regulator, i);
2420
2421 if (ret >= min_uV && ret <= max_uV)
2422 return 1;
2423 }
2424
2425 return 0;
2426}
Mark Browna398eaa2011-12-28 12:48:45 +00002427EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002428
Heiko Stübner71795692014-08-28 12:36:04 -07002429static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2430 int min_uV, int max_uV,
2431 unsigned *selector)
2432{
2433 struct pre_voltage_change_data data;
2434 int ret;
2435
2436 data.old_uV = _regulator_get_voltage(rdev);
2437 data.min_uV = min_uV;
2438 data.max_uV = max_uV;
2439 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2440 &data);
2441 if (ret & NOTIFY_STOP_MASK)
2442 return -EINVAL;
2443
2444 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2445 if (ret >= 0)
2446 return ret;
2447
2448 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2449 (void *)data.old_uV);
2450
2451 return ret;
2452}
2453
2454static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2455 int uV, unsigned selector)
2456{
2457 struct pre_voltage_change_data data;
2458 int ret;
2459
2460 data.old_uV = _regulator_get_voltage(rdev);
2461 data.min_uV = uV;
2462 data.max_uV = uV;
2463 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2464 &data);
2465 if (ret & NOTIFY_STOP_MASK)
2466 return -EINVAL;
2467
2468 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2469 if (ret >= 0)
2470 return ret;
2471
2472 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2473 (void *)data.old_uV);
2474
2475 return ret;
2476}
2477
Mark Brown75790252010-12-12 14:25:50 +00002478static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2479 int min_uV, int max_uV)
2480{
2481 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002482 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002483 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002484 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002485 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002486
2487 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2488
Mark Brownbf5892a2011-05-08 22:13:37 +01002489 min_uV += rdev->constraints->uV_offset;
2490 max_uV += rdev->constraints->uV_offset;
2491
Axel Lineba41a52012-04-04 10:32:10 +08002492 /*
2493 * If we can't obtain the old selector there is not enough
2494 * info to call set_voltage_time_sel().
2495 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002496 if (_regulator_is_enabled(rdev) &&
2497 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002498 rdev->desc->ops->get_voltage_sel) {
2499 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2500 if (old_selector < 0)
2501 return old_selector;
2502 }
2503
Mark Brown75790252010-12-12 14:25:50 +00002504 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002505 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2506 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002507
2508 if (ret >= 0) {
2509 if (rdev->desc->ops->list_voltage)
2510 best_val = rdev->desc->ops->list_voltage(rdev,
2511 selector);
2512 else
2513 best_val = _regulator_get_voltage(rdev);
2514 }
2515
Mark Browne8eef822010-12-12 14:36:17 +00002516 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002517 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002518 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2519 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002520 } else {
2521 if (rdev->desc->ops->list_voltage ==
2522 regulator_list_voltage_linear)
2523 ret = regulator_map_voltage_linear(rdev,
2524 min_uV, max_uV);
Axel Lin36698622014-05-24 11:10:43 +08002525 else if (rdev->desc->ops->list_voltage ==
2526 regulator_list_voltage_linear_range)
2527 ret = regulator_map_voltage_linear_range(rdev,
2528 min_uV, max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002529 else
2530 ret = regulator_map_voltage_iterate(rdev,
2531 min_uV, max_uV);
2532 }
Mark Browne8eef822010-12-12 14:36:17 +00002533
Mark Browne843fc42012-05-09 21:16:06 +01002534 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002535 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2536 if (min_uV <= best_val && max_uV >= best_val) {
2537 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002538 if (old_selector == selector)
2539 ret = 0;
2540 else
Heiko Stübner71795692014-08-28 12:36:04 -07002541 ret = _regulator_call_set_voltage_sel(
2542 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002543 } else {
2544 ret = -EINVAL;
2545 }
Mark Browne8eef822010-12-12 14:36:17 +00002546 }
Mark Brown75790252010-12-12 14:25:50 +00002547 } else {
2548 ret = -EINVAL;
2549 }
2550
Axel Lineba41a52012-04-04 10:32:10 +08002551 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302552 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2553 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002554
2555 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2556 old_selector, selector);
2557 if (delay < 0) {
2558 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2559 delay);
2560 delay = 0;
2561 }
Axel Lineba41a52012-04-04 10:32:10 +08002562
Philip Rakity8b96de32012-06-14 15:07:56 -07002563 /* Insert any necessary delays */
2564 if (delay >= 1000) {
2565 mdelay(delay / 1000);
2566 udelay(delay % 1000);
2567 } else if (delay) {
2568 udelay(delay);
2569 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002570 }
2571
Axel Lin2f6c7972012-08-06 23:44:19 +08002572 if (ret == 0 && best_val >= 0) {
2573 unsigned long data = best_val;
2574
Mark Brownded06a52010-12-16 13:59:10 +00002575 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002576 (void *)data);
2577 }
Mark Brownded06a52010-12-16 13:59:10 +00002578
Axel Lineba41a52012-04-04 10:32:10 +08002579 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002580
2581 return ret;
2582}
2583
Mark Browna7a1ad92009-07-21 16:00:24 +01002584/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002585 * regulator_set_voltage - set regulator output voltage
2586 * @regulator: regulator source
2587 * @min_uV: Minimum required voltage in uV
2588 * @max_uV: Maximum acceptable voltage in uV
2589 *
2590 * Sets a voltage regulator to the desired output voltage. This can be set
2591 * during any regulator state. IOW, regulator can be disabled or enabled.
2592 *
2593 * If the regulator is enabled then the voltage will change to the new value
2594 * immediately otherwise if the regulator is disabled the regulator will
2595 * output at the new voltage when enabled.
2596 *
2597 * NOTE: If the regulator is shared between several devices then the lowest
2598 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002599 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002600 * calling this function otherwise this call will fail.
2601 */
2602int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2603{
2604 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002605 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002606 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002607 int current_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002608
2609 mutex_lock(&rdev->mutex);
2610
Mark Brown95a3c232010-12-16 15:49:37 +00002611 /* If we're setting the same range as last time the change
2612 * should be a noop (some cpufreq implementations use the same
2613 * voltage for multiple frequencies, for example).
2614 */
2615 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2616 goto out;
2617
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002618 /* If we're trying to set a range that overlaps the current voltage,
2619 * return succesfully even though the regulator does not support
2620 * changing the voltage.
2621 */
2622 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2623 current_uV = _regulator_get_voltage(rdev);
2624 if (min_uV <= current_uV && current_uV <= max_uV) {
2625 regulator->min_uV = min_uV;
2626 regulator->max_uV = max_uV;
2627 goto out;
2628 }
2629 }
2630
Liam Girdwood414c70c2008-04-30 15:59:04 +01002631 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002632 if (!rdev->desc->ops->set_voltage &&
2633 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002634 ret = -EINVAL;
2635 goto out;
2636 }
2637
2638 /* constraints check */
2639 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2640 if (ret < 0)
2641 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002642
Paolo Pisati92d7a552012-12-13 10:13:00 +01002643 /* restore original values in case of error */
2644 old_min_uV = regulator->min_uV;
2645 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002646 regulator->min_uV = min_uV;
2647 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002648
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002649 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2650 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002651 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002652
Mark Brown75790252010-12-12 14:25:50 +00002653 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002654 if (ret < 0)
2655 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002656
Liam Girdwood414c70c2008-04-30 15:59:04 +01002657out:
2658 mutex_unlock(&rdev->mutex);
2659 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002660out2:
2661 regulator->min_uV = old_min_uV;
2662 regulator->max_uV = old_max_uV;
2663 mutex_unlock(&rdev->mutex);
2664 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002665}
2666EXPORT_SYMBOL_GPL(regulator_set_voltage);
2667
Mark Brown606a2562010-12-16 15:49:36 +00002668/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002669 * regulator_set_voltage_time - get raise/fall time
2670 * @regulator: regulator source
2671 * @old_uV: starting voltage in microvolts
2672 * @new_uV: target voltage in microvolts
2673 *
2674 * Provided with the starting and ending voltage, this function attempts to
2675 * calculate the time in microseconds required to rise or fall to this new
2676 * voltage.
2677 */
2678int regulator_set_voltage_time(struct regulator *regulator,
2679 int old_uV, int new_uV)
2680{
Guodong Xu272e2312014-08-13 19:33:38 +08002681 struct regulator_dev *rdev = regulator->rdev;
2682 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002683 int old_sel = -1;
2684 int new_sel = -1;
2685 int voltage;
2686 int i;
2687
2688 /* Currently requires operations to do this */
2689 if (!ops->list_voltage || !ops->set_voltage_time_sel
2690 || !rdev->desc->n_voltages)
2691 return -EINVAL;
2692
2693 for (i = 0; i < rdev->desc->n_voltages; i++) {
2694 /* We only look for exact voltage matches here */
2695 voltage = regulator_list_voltage(regulator, i);
2696 if (voltage < 0)
2697 return -EINVAL;
2698 if (voltage == 0)
2699 continue;
2700 if (voltage == old_uV)
2701 old_sel = i;
2702 if (voltage == new_uV)
2703 new_sel = i;
2704 }
2705
2706 if (old_sel < 0 || new_sel < 0)
2707 return -EINVAL;
2708
2709 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2710}
2711EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2712
2713/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002714 * regulator_set_voltage_time_sel - get raise/fall time
2715 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302716 * @old_selector: selector for starting voltage
2717 * @new_selector: selector for target voltage
2718 *
2719 * Provided with the starting and target voltage selectors, this function
2720 * returns time in microseconds required to rise or fall to this new voltage
2721 *
Axel Linf11d08c2012-06-19 09:38:45 +08002722 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002723 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302724 */
2725int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2726 unsigned int old_selector,
2727 unsigned int new_selector)
2728{
Axel Lin398715a2012-06-18 10:11:28 +08002729 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002730 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002731
2732 if (rdev->constraints->ramp_delay)
2733 ramp_delay = rdev->constraints->ramp_delay;
2734 else if (rdev->desc->ramp_delay)
2735 ramp_delay = rdev->desc->ramp_delay;
2736
2737 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302738 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002739 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302740 }
Axel Lin398715a2012-06-18 10:11:28 +08002741
Axel Linf11d08c2012-06-19 09:38:45 +08002742 /* sanity check */
2743 if (!rdev->desc->ops->list_voltage)
2744 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002745
Axel Linf11d08c2012-06-19 09:38:45 +08002746 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2747 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2748
2749 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302750}
Mark Brownb19dbf72012-06-23 11:34:20 +01002751EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302752
2753/**
Mark Brown606a2562010-12-16 15:49:36 +00002754 * regulator_sync_voltage - re-apply last regulator output voltage
2755 * @regulator: regulator source
2756 *
2757 * Re-apply the last configured voltage. This is intended to be used
2758 * where some external control source the consumer is cooperating with
2759 * has caused the configured voltage to change.
2760 */
2761int regulator_sync_voltage(struct regulator *regulator)
2762{
2763 struct regulator_dev *rdev = regulator->rdev;
2764 int ret, min_uV, max_uV;
2765
2766 mutex_lock(&rdev->mutex);
2767
2768 if (!rdev->desc->ops->set_voltage &&
2769 !rdev->desc->ops->set_voltage_sel) {
2770 ret = -EINVAL;
2771 goto out;
2772 }
2773
2774 /* This is only going to work if we've had a voltage configured. */
2775 if (!regulator->min_uV && !regulator->max_uV) {
2776 ret = -EINVAL;
2777 goto out;
2778 }
2779
2780 min_uV = regulator->min_uV;
2781 max_uV = regulator->max_uV;
2782
2783 /* This should be a paranoia check... */
2784 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2785 if (ret < 0)
2786 goto out;
2787
2788 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2789 if (ret < 0)
2790 goto out;
2791
2792 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2793
2794out:
2795 mutex_unlock(&rdev->mutex);
2796 return ret;
2797}
2798EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2799
Liam Girdwood414c70c2008-04-30 15:59:04 +01002800static int _regulator_get_voltage(struct regulator_dev *rdev)
2801{
Mark Brownbf5892a2011-05-08 22:13:37 +01002802 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002803
2804 if (rdev->desc->ops->get_voltage_sel) {
2805 sel = rdev->desc->ops->get_voltage_sel(rdev);
2806 if (sel < 0)
2807 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002808 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002809 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002810 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002811 } else if (rdev->desc->ops->list_voltage) {
2812 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05302813 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
2814 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02002815 } else if (rdev->supply) {
2816 ret = regulator_get_voltage(rdev->supply);
Axel Lincb220d12011-05-23 20:08:10 +08002817 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002818 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002819 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002820
Axel Lincb220d12011-05-23 20:08:10 +08002821 if (ret < 0)
2822 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002823 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002824}
2825
2826/**
2827 * regulator_get_voltage - get regulator output voltage
2828 * @regulator: regulator source
2829 *
2830 * This returns the current regulator voltage in uV.
2831 *
2832 * NOTE: If the regulator is disabled it will return the voltage value. This
2833 * function should not be used to determine regulator state.
2834 */
2835int regulator_get_voltage(struct regulator *regulator)
2836{
2837 int ret;
2838
2839 mutex_lock(&regulator->rdev->mutex);
2840
2841 ret = _regulator_get_voltage(regulator->rdev);
2842
2843 mutex_unlock(&regulator->rdev->mutex);
2844
2845 return ret;
2846}
2847EXPORT_SYMBOL_GPL(regulator_get_voltage);
2848
2849/**
2850 * regulator_set_current_limit - set regulator output current limit
2851 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002852 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002853 * @max_uA: Maximum supported current in uA
2854 *
2855 * Sets current sink to the desired output current. This can be set during
2856 * any regulator state. IOW, regulator can be disabled or enabled.
2857 *
2858 * If the regulator is enabled then the current will change to the new value
2859 * immediately otherwise if the regulator is disabled the regulator will
2860 * output at the new current when enabled.
2861 *
2862 * NOTE: Regulator system constraints must be set for this regulator before
2863 * calling this function otherwise this call will fail.
2864 */
2865int regulator_set_current_limit(struct regulator *regulator,
2866 int min_uA, int max_uA)
2867{
2868 struct regulator_dev *rdev = regulator->rdev;
2869 int ret;
2870
2871 mutex_lock(&rdev->mutex);
2872
2873 /* sanity check */
2874 if (!rdev->desc->ops->set_current_limit) {
2875 ret = -EINVAL;
2876 goto out;
2877 }
2878
2879 /* constraints check */
2880 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2881 if (ret < 0)
2882 goto out;
2883
2884 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2885out:
2886 mutex_unlock(&rdev->mutex);
2887 return ret;
2888}
2889EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2890
2891static int _regulator_get_current_limit(struct regulator_dev *rdev)
2892{
2893 int ret;
2894
2895 mutex_lock(&rdev->mutex);
2896
2897 /* sanity check */
2898 if (!rdev->desc->ops->get_current_limit) {
2899 ret = -EINVAL;
2900 goto out;
2901 }
2902
2903 ret = rdev->desc->ops->get_current_limit(rdev);
2904out:
2905 mutex_unlock(&rdev->mutex);
2906 return ret;
2907}
2908
2909/**
2910 * regulator_get_current_limit - get regulator output current
2911 * @regulator: regulator source
2912 *
2913 * This returns the current supplied by the specified current sink in uA.
2914 *
2915 * NOTE: If the regulator is disabled it will return the current value. This
2916 * function should not be used to determine regulator state.
2917 */
2918int regulator_get_current_limit(struct regulator *regulator)
2919{
2920 return _regulator_get_current_limit(regulator->rdev);
2921}
2922EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2923
2924/**
2925 * regulator_set_mode - set regulator operating mode
2926 * @regulator: regulator source
2927 * @mode: operating mode - one of the REGULATOR_MODE constants
2928 *
2929 * Set regulator operating mode to increase regulator efficiency or improve
2930 * regulation performance.
2931 *
2932 * NOTE: Regulator system constraints must be set for this regulator before
2933 * calling this function otherwise this call will fail.
2934 */
2935int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2936{
2937 struct regulator_dev *rdev = regulator->rdev;
2938 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302939 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002940
2941 mutex_lock(&rdev->mutex);
2942
2943 /* sanity check */
2944 if (!rdev->desc->ops->set_mode) {
2945 ret = -EINVAL;
2946 goto out;
2947 }
2948
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302949 /* return if the same mode is requested */
2950 if (rdev->desc->ops->get_mode) {
2951 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2952 if (regulator_curr_mode == mode) {
2953 ret = 0;
2954 goto out;
2955 }
2956 }
2957
Liam Girdwood414c70c2008-04-30 15:59:04 +01002958 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08002959 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002960 if (ret < 0)
2961 goto out;
2962
2963 ret = rdev->desc->ops->set_mode(rdev, mode);
2964out:
2965 mutex_unlock(&rdev->mutex);
2966 return ret;
2967}
2968EXPORT_SYMBOL_GPL(regulator_set_mode);
2969
2970static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2971{
2972 int ret;
2973
2974 mutex_lock(&rdev->mutex);
2975
2976 /* sanity check */
2977 if (!rdev->desc->ops->get_mode) {
2978 ret = -EINVAL;
2979 goto out;
2980 }
2981
2982 ret = rdev->desc->ops->get_mode(rdev);
2983out:
2984 mutex_unlock(&rdev->mutex);
2985 return ret;
2986}
2987
2988/**
2989 * regulator_get_mode - get regulator operating mode
2990 * @regulator: regulator source
2991 *
2992 * Get the current regulator operating mode.
2993 */
2994unsigned int regulator_get_mode(struct regulator *regulator)
2995{
2996 return _regulator_get_mode(regulator->rdev);
2997}
2998EXPORT_SYMBOL_GPL(regulator_get_mode);
2999
3000/**
3001 * regulator_set_optimum_mode - set regulator optimum operating mode
3002 * @regulator: regulator source
3003 * @uA_load: load current
3004 *
3005 * Notifies the regulator core of a new device load. This is then used by
3006 * DRMS (if enabled by constraints) to set the most efficient regulator
3007 * operating mode for the new regulator loading.
3008 *
3009 * Consumer devices notify their supply regulator of the maximum power
3010 * they will require (can be taken from device datasheet in the power
3011 * consumption tables) when they change operational status and hence power
3012 * state. Examples of operational state changes that can affect power
3013 * consumption are :-
3014 *
3015 * o Device is opened / closed.
3016 * o Device I/O is about to begin or has just finished.
3017 * o Device is idling in between work.
3018 *
3019 * This information is also exported via sysfs to userspace.
3020 *
3021 * DRMS will sum the total requested load on the regulator and change
3022 * to the most efficient operating mode if platform constraints allow.
3023 *
3024 * Returns the new regulator mode or error.
3025 */
3026int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
3027{
3028 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003029 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003030
Liam Girdwood414c70c2008-04-30 15:59:04 +01003031 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003032 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003033 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003034 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003035
Liam Girdwood414c70c2008-04-30 15:59:04 +01003036 return ret;
3037}
3038EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
3039
3040/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003041 * regulator_allow_bypass - allow the regulator to go into bypass mode
3042 *
3043 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003044 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003045 *
3046 * Allow the regulator to go into bypass mode if all other consumers
3047 * for the regulator also enable bypass mode and the machine
3048 * constraints allow this. Bypass mode means that the regulator is
3049 * simply passing the input directly to the output with no regulation.
3050 */
3051int regulator_allow_bypass(struct regulator *regulator, bool enable)
3052{
3053 struct regulator_dev *rdev = regulator->rdev;
3054 int ret = 0;
3055
3056 if (!rdev->desc->ops->set_bypass)
3057 return 0;
3058
3059 if (rdev->constraints &&
3060 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3061 return 0;
3062
3063 mutex_lock(&rdev->mutex);
3064
3065 if (enable && !regulator->bypass) {
3066 rdev->bypass_count++;
3067
3068 if (rdev->bypass_count == rdev->open_count) {
3069 ret = rdev->desc->ops->set_bypass(rdev, enable);
3070 if (ret != 0)
3071 rdev->bypass_count--;
3072 }
3073
3074 } else if (!enable && regulator->bypass) {
3075 rdev->bypass_count--;
3076
3077 if (rdev->bypass_count != rdev->open_count) {
3078 ret = rdev->desc->ops->set_bypass(rdev, enable);
3079 if (ret != 0)
3080 rdev->bypass_count++;
3081 }
3082 }
3083
3084 if (ret == 0)
3085 regulator->bypass = enable;
3086
3087 mutex_unlock(&rdev->mutex);
3088
3089 return ret;
3090}
3091EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3092
3093/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003094 * regulator_register_notifier - register regulator event notifier
3095 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003096 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003097 *
3098 * Register notifier block to receive regulator events.
3099 */
3100int regulator_register_notifier(struct regulator *regulator,
3101 struct notifier_block *nb)
3102{
3103 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3104 nb);
3105}
3106EXPORT_SYMBOL_GPL(regulator_register_notifier);
3107
3108/**
3109 * regulator_unregister_notifier - unregister regulator event notifier
3110 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003111 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003112 *
3113 * Unregister regulator event notifier block.
3114 */
3115int regulator_unregister_notifier(struct regulator *regulator,
3116 struct notifier_block *nb)
3117{
3118 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3119 nb);
3120}
3121EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3122
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003123/* notify regulator consumers and downstream regulator consumers.
3124 * Note mutex must be held by caller.
3125 */
Heiko Stübner71795692014-08-28 12:36:04 -07003126static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003127 unsigned long event, void *data)
3128{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003129 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003130 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003131}
3132
3133/**
3134 * regulator_bulk_get - get multiple regulator consumers
3135 *
3136 * @dev: Device to supply
3137 * @num_consumers: Number of consumers to register
3138 * @consumers: Configuration of consumers; clients are stored here.
3139 *
3140 * @return 0 on success, an errno on failure.
3141 *
3142 * This helper function allows drivers to get several regulator
3143 * consumers in one operation. If any of the regulators cannot be
3144 * acquired then any regulators that were allocated will be freed
3145 * before returning to the caller.
3146 */
3147int regulator_bulk_get(struct device *dev, int num_consumers,
3148 struct regulator_bulk_data *consumers)
3149{
3150 int i;
3151 int ret;
3152
3153 for (i = 0; i < num_consumers; i++)
3154 consumers[i].consumer = NULL;
3155
3156 for (i = 0; i < num_consumers; i++) {
3157 consumers[i].consumer = regulator_get(dev,
3158 consumers[i].supply);
3159 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003160 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003161 dev_err(dev, "Failed to get supply '%s': %d\n",
3162 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003163 consumers[i].consumer = NULL;
3164 goto err;
3165 }
3166 }
3167
3168 return 0;
3169
3170err:
Axel Linb29c7692012-02-20 10:32:16 +08003171 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003172 regulator_put(consumers[i].consumer);
3173
3174 return ret;
3175}
3176EXPORT_SYMBOL_GPL(regulator_bulk_get);
3177
Mark Brownf21e0e82011-05-24 08:12:40 +08003178static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3179{
3180 struct regulator_bulk_data *bulk = data;
3181
3182 bulk->ret = regulator_enable(bulk->consumer);
3183}
3184
Liam Girdwood414c70c2008-04-30 15:59:04 +01003185/**
3186 * regulator_bulk_enable - enable multiple regulator consumers
3187 *
3188 * @num_consumers: Number of consumers
3189 * @consumers: Consumer data; clients are stored here.
3190 * @return 0 on success, an errno on failure
3191 *
3192 * This convenience API allows consumers to enable multiple regulator
3193 * clients in a single API call. If any consumers cannot be enabled
3194 * then any others that were enabled will be disabled again prior to
3195 * return.
3196 */
3197int regulator_bulk_enable(int num_consumers,
3198 struct regulator_bulk_data *consumers)
3199{
Dan Williams2955b472012-07-09 19:33:25 -07003200 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003201 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003202 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003203
Mark Brown6492bc12012-04-19 13:19:07 +01003204 for (i = 0; i < num_consumers; i++) {
3205 if (consumers[i].consumer->always_on)
3206 consumers[i].ret = 0;
3207 else
3208 async_schedule_domain(regulator_bulk_enable_async,
3209 &consumers[i], &async_domain);
3210 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003211
3212 async_synchronize_full_domain(&async_domain);
3213
3214 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003215 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003216 if (consumers[i].ret != 0) {
3217 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003218 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003219 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003220 }
3221
3222 return 0;
3223
3224err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003225 for (i = 0; i < num_consumers; i++) {
3226 if (consumers[i].ret < 0)
3227 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3228 consumers[i].ret);
3229 else
3230 regulator_disable(consumers[i].consumer);
3231 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003232
3233 return ret;
3234}
3235EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3236
3237/**
3238 * regulator_bulk_disable - disable multiple regulator consumers
3239 *
3240 * @num_consumers: Number of consumers
3241 * @consumers: Consumer data; clients are stored here.
3242 * @return 0 on success, an errno on failure
3243 *
3244 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003245 * clients in a single API call. If any consumers cannot be disabled
3246 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003247 * return.
3248 */
3249int regulator_bulk_disable(int num_consumers,
3250 struct regulator_bulk_data *consumers)
3251{
3252 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003253 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003254
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003255 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003256 ret = regulator_disable(consumers[i].consumer);
3257 if (ret != 0)
3258 goto err;
3259 }
3260
3261 return 0;
3262
3263err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003264 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003265 for (++i; i < num_consumers; ++i) {
3266 r = regulator_enable(consumers[i].consumer);
3267 if (r != 0)
3268 pr_err("Failed to reename %s: %d\n",
3269 consumers[i].supply, r);
3270 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003271
3272 return ret;
3273}
3274EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3275
3276/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003277 * regulator_bulk_force_disable - force disable multiple regulator consumers
3278 *
3279 * @num_consumers: Number of consumers
3280 * @consumers: Consumer data; clients are stored here.
3281 * @return 0 on success, an errno on failure
3282 *
3283 * This convenience API allows consumers to forcibly disable multiple regulator
3284 * clients in a single API call.
3285 * NOTE: This should be used for situations when device damage will
3286 * likely occur if the regulators are not disabled (e.g. over temp).
3287 * Although regulator_force_disable function call for some consumers can
3288 * return error numbers, the function is called for all consumers.
3289 */
3290int regulator_bulk_force_disable(int num_consumers,
3291 struct regulator_bulk_data *consumers)
3292{
3293 int i;
3294 int ret;
3295
3296 for (i = 0; i < num_consumers; i++)
3297 consumers[i].ret =
3298 regulator_force_disable(consumers[i].consumer);
3299
3300 for (i = 0; i < num_consumers; i++) {
3301 if (consumers[i].ret != 0) {
3302 ret = consumers[i].ret;
3303 goto out;
3304 }
3305 }
3306
3307 return 0;
3308out:
3309 return ret;
3310}
3311EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3312
3313/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003314 * regulator_bulk_free - free multiple regulator consumers
3315 *
3316 * @num_consumers: Number of consumers
3317 * @consumers: Consumer data; clients are stored here.
3318 *
3319 * This convenience API allows consumers to free multiple regulator
3320 * clients in a single API call.
3321 */
3322void regulator_bulk_free(int num_consumers,
3323 struct regulator_bulk_data *consumers)
3324{
3325 int i;
3326
3327 for (i = 0; i < num_consumers; i++) {
3328 regulator_put(consumers[i].consumer);
3329 consumers[i].consumer = NULL;
3330 }
3331}
3332EXPORT_SYMBOL_GPL(regulator_bulk_free);
3333
3334/**
3335 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003336 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003337 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003338 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003339 *
3340 * Called by regulator drivers to notify clients a regulator event has
3341 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003342 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003343 */
3344int regulator_notifier_call_chain(struct regulator_dev *rdev,
3345 unsigned long event, void *data)
3346{
3347 _notifier_call_chain(rdev, event, data);
3348 return NOTIFY_DONE;
3349
3350}
3351EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3352
Mark Brownbe721972009-08-04 20:09:52 +02003353/**
3354 * regulator_mode_to_status - convert a regulator mode into a status
3355 *
3356 * @mode: Mode to convert
3357 *
3358 * Convert a regulator mode into a status.
3359 */
3360int regulator_mode_to_status(unsigned int mode)
3361{
3362 switch (mode) {
3363 case REGULATOR_MODE_FAST:
3364 return REGULATOR_STATUS_FAST;
3365 case REGULATOR_MODE_NORMAL:
3366 return REGULATOR_STATUS_NORMAL;
3367 case REGULATOR_MODE_IDLE:
3368 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003369 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003370 return REGULATOR_STATUS_STANDBY;
3371 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003372 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003373 }
3374}
3375EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3376
Takashi Iwai39f802d2015-01-30 20:29:31 +01003377static struct attribute *regulator_dev_attrs[] = {
3378 &dev_attr_name.attr,
3379 &dev_attr_num_users.attr,
3380 &dev_attr_type.attr,
3381 &dev_attr_microvolts.attr,
3382 &dev_attr_microamps.attr,
3383 &dev_attr_opmode.attr,
3384 &dev_attr_state.attr,
3385 &dev_attr_status.attr,
3386 &dev_attr_bypass.attr,
3387 &dev_attr_requested_microamps.attr,
3388 &dev_attr_min_microvolts.attr,
3389 &dev_attr_max_microvolts.attr,
3390 &dev_attr_min_microamps.attr,
3391 &dev_attr_max_microamps.attr,
3392 &dev_attr_suspend_standby_state.attr,
3393 &dev_attr_suspend_mem_state.attr,
3394 &dev_attr_suspend_disk_state.attr,
3395 &dev_attr_suspend_standby_microvolts.attr,
3396 &dev_attr_suspend_mem_microvolts.attr,
3397 &dev_attr_suspend_disk_microvolts.attr,
3398 &dev_attr_suspend_standby_mode.attr,
3399 &dev_attr_suspend_mem_mode.attr,
3400 &dev_attr_suspend_disk_mode.attr,
3401 NULL
3402};
3403
David Brownell7ad68e22008-11-11 17:39:02 -08003404/*
3405 * To avoid cluttering sysfs (and memory) with useless state, only
3406 * create attributes that can be meaningfully displayed.
3407 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003408static umode_t regulator_attr_is_visible(struct kobject *kobj,
3409 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003410{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003411 struct device *dev = kobj_to_dev(kobj);
3412 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003413 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003414 umode_t mode = attr->mode;
3415
3416 /* these three are always present */
3417 if (attr == &dev_attr_name.attr ||
3418 attr == &dev_attr_num_users.attr ||
3419 attr == &dev_attr_type.attr)
3420 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003421
3422 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003423 if (attr == &dev_attr_microvolts.attr) {
3424 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3425 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3426 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3427 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3428 return mode;
3429 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003430 }
David Brownell7ad68e22008-11-11 17:39:02 -08003431
Takashi Iwai39f802d2015-01-30 20:29:31 +01003432 if (attr == &dev_attr_microamps.attr)
3433 return ops->get_current_limit ? mode : 0;
3434
3435 if (attr == &dev_attr_opmode.attr)
3436 return ops->get_mode ? mode : 0;
3437
3438 if (attr == &dev_attr_state.attr)
3439 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3440
3441 if (attr == &dev_attr_status.attr)
3442 return ops->get_status ? mode : 0;
3443
3444 if (attr == &dev_attr_bypass.attr)
3445 return ops->get_bypass ? mode : 0;
3446
David Brownell7ad68e22008-11-11 17:39:02 -08003447 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003448 if (attr == &dev_attr_requested_microamps.attr)
3449 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003450
3451 /* all the other attributes exist to support constraints;
3452 * don't show them if there are no constraints, or if the
3453 * relevant supporting methods are missing.
3454 */
3455 if (!rdev->constraints)
Takashi Iwai39f802d2015-01-30 20:29:31 +01003456 return 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003457
3458 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003459 if (attr == &dev_attr_min_microvolts.attr ||
3460 attr == &dev_attr_max_microvolts.attr)
3461 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003462
Takashi Iwai39f802d2015-01-30 20:29:31 +01003463 if (attr == &dev_attr_min_microamps.attr ||
3464 attr == &dev_attr_max_microamps.attr)
3465 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003466
Takashi Iwai39f802d2015-01-30 20:29:31 +01003467 if (attr == &dev_attr_suspend_standby_state.attr ||
3468 attr == &dev_attr_suspend_mem_state.attr ||
3469 attr == &dev_attr_suspend_disk_state.attr)
3470 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003471
Takashi Iwai39f802d2015-01-30 20:29:31 +01003472 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3473 attr == &dev_attr_suspend_mem_microvolts.attr ||
3474 attr == &dev_attr_suspend_disk_microvolts.attr)
3475 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003476
Takashi Iwai39f802d2015-01-30 20:29:31 +01003477 if (attr == &dev_attr_suspend_standby_mode.attr ||
3478 attr == &dev_attr_suspend_mem_mode.attr ||
3479 attr == &dev_attr_suspend_disk_mode.attr)
3480 return ops->set_suspend_mode ? mode : 0;
3481
3482 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003483}
3484
Takashi Iwai39f802d2015-01-30 20:29:31 +01003485static const struct attribute_group regulator_dev_group = {
3486 .attrs = regulator_dev_attrs,
3487 .is_visible = regulator_attr_is_visible,
3488};
3489
3490static const struct attribute_group *regulator_dev_groups[] = {
3491 &regulator_dev_group,
3492 NULL
3493};
3494
3495static void regulator_dev_release(struct device *dev)
3496{
3497 struct regulator_dev *rdev = dev_get_drvdata(dev);
3498 kfree(rdev);
3499}
3500
3501static struct class regulator_class = {
3502 .name = "regulator",
3503 .dev_release = regulator_dev_release,
3504 .dev_groups = regulator_dev_groups,
3505};
3506
Mark Brown1130e5b2010-12-21 23:49:31 +00003507static void rdev_init_debugfs(struct regulator_dev *rdev)
3508{
Mark Brown1130e5b2010-12-21 23:49:31 +00003509 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003510 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003511 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003512 return;
3513 }
3514
3515 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3516 &rdev->use_count);
3517 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3518 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003519 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3520 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003521}
3522
Liam Girdwood414c70c2008-04-30 15:59:04 +01003523/**
3524 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003525 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003526 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003527 *
3528 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003529 * Returns a valid pointer to struct regulator_dev on success
3530 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003531 */
Mark Brown65f26842012-04-03 20:46:53 +01003532struct regulator_dev *
3533regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003534 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003535{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003536 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003537 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003538 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303539 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003540 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003541 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003542 int ret, i;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303543 const char *supply = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003544
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003545 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003546 return ERR_PTR(-EINVAL);
3547
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003548 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003549 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003550
Liam Girdwood414c70c2008-04-30 15:59:04 +01003551 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3552 return ERR_PTR(-EINVAL);
3553
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003554 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3555 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003556 return ERR_PTR(-EINVAL);
3557
Mark Brown476c2d82010-12-10 17:28:07 +00003558 /* Only one of each should be implemented */
3559 WARN_ON(regulator_desc->ops->get_voltage &&
3560 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003561 WARN_ON(regulator_desc->ops->set_voltage &&
3562 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003563
3564 /* If we're using selectors we must implement list_voltage. */
3565 if (regulator_desc->ops->get_voltage_sel &&
3566 !regulator_desc->ops->list_voltage) {
3567 return ERR_PTR(-EINVAL);
3568 }
Mark Browne8eef822010-12-12 14:36:17 +00003569 if (regulator_desc->ops->set_voltage_sel &&
3570 !regulator_desc->ops->list_voltage) {
3571 return ERR_PTR(-EINVAL);
3572 }
Mark Brown476c2d82010-12-10 17:28:07 +00003573
Liam Girdwood414c70c2008-04-30 15:59:04 +01003574 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3575 if (rdev == NULL)
3576 return ERR_PTR(-ENOMEM);
3577
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003578 /*
3579 * Duplicate the config so the driver could override it after
3580 * parsing init data.
3581 */
3582 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
3583 if (config == NULL) {
3584 kfree(rdev);
3585 return ERR_PTR(-ENOMEM);
3586 }
3587
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01003588 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01003589 &rdev->dev.of_node);
3590 if (!init_data) {
3591 init_data = config->init_data;
3592 rdev->dev.of_node = of_node_get(config->of_node);
3593 }
3594
Liam Girdwood414c70c2008-04-30 15:59:04 +01003595 mutex_lock(&regulator_list_mutex);
3596
3597 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003598 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003599 rdev->owner = regulator_desc->owner;
3600 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003601 if (config->regmap)
3602 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303603 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003604 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303605 else if (dev->parent)
3606 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003607 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003608 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003609 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003610 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003611
Liam Girdwooda5766f12008-10-10 13:22:20 +01003612 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003613 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003614 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003615 if (ret < 0)
3616 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003617 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003618
Liam Girdwooda5766f12008-10-10 13:22:20 +01003619 /* register with sysfs */
3620 rdev->dev.class = &regulator_class;
3621 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303622 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303623 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003624 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003625 if (ret != 0) {
3626 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003627 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003628 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003629
3630 dev_set_drvdata(&rdev->dev, rdev);
3631
Markus Pargmann76f439d2014-10-08 15:47:05 +02003632 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3633 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003634 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003635 if (ret != 0) {
3636 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3637 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003638 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003639 }
Mark Brown65f73502012-06-27 14:14:38 +01003640 }
3641
Mike Rapoport74f544c2008-11-25 14:53:53 +02003642 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003643 if (init_data)
3644 constraints = &init_data->constraints;
3645
3646 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003647 if (ret < 0)
3648 goto scrub;
3649
Mark Brown9a8f5e02011-11-29 18:11:19 +00003650 if (init_data && init_data->supply_regulator)
Rajendra Nayak69511a42011-11-18 16:47:20 +05303651 supply = init_data->supply_regulator;
3652 else if (regulator_desc->supply_name)
3653 supply = regulator_desc->supply_name;
3654
3655 if (supply) {
Mark Brown0178f3e2010-04-26 15:18:14 +01003656 struct regulator_dev *r;
Mark Brown0178f3e2010-04-26 15:18:14 +01003657
Mark Brown6d191a52012-03-29 14:19:02 +01003658 r = regulator_dev_lookup(dev, supply, &ret);
Mark Brown0178f3e2010-04-26 15:18:14 +01003659
Andrew Bresticker0f7b87f2013-04-04 15:27:47 -07003660 if (ret == -ENODEV) {
3661 /*
3662 * No supply was specified for this regulator and
3663 * there will never be one.
3664 */
3665 ret = 0;
3666 goto add_dev;
3667 } else if (!r) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05303668 dev_err(dev, "Failed to find supply %s\n", supply);
Mark Brown04bf3012012-03-11 13:07:56 +00003669 ret = -EPROBE_DEFER;
Mark Brown0178f3e2010-04-26 15:18:14 +01003670 goto scrub;
3671 }
3672
3673 ret = set_supply(rdev, r);
3674 if (ret < 0)
3675 goto scrub;
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303676
3677 /* Enable supply if rail is enabled */
Mark Brownb1a86832012-05-14 00:40:14 +01003678 if (_regulator_is_enabled(rdev)) {
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303679 ret = regulator_enable(rdev->supply);
3680 if (ret < 0)
3681 goto scrub;
3682 }
Mark Brown0178f3e2010-04-26 15:18:14 +01003683 }
3684
Andrew Bresticker0f7b87f2013-04-04 15:27:47 -07003685add_dev:
Liam Girdwooda5766f12008-10-10 13:22:20 +01003686 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003687 if (init_data) {
3688 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3689 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003690 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003691 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003692 if (ret < 0) {
3693 dev_err(dev, "Failed to set supply %s\n",
3694 init_data->consumer_supplies[i].supply);
3695 goto unset_supplies;
3696 }
Mark Brown23c2f042011-02-24 17:39:09 +00003697 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003698 }
3699
3700 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003701
3702 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003703out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003704 mutex_unlock(&regulator_list_mutex);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003705 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003706 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003707
Jani Nikulad4033b52010-04-29 10:55:11 +03003708unset_supplies:
3709 unset_regulator_supplies(rdev);
3710
David Brownell4fca9542008-11-11 17:38:53 -08003711scrub:
Mark Browne81dba852012-05-13 18:35:56 +01003712 if (rdev->supply)
Charles Keepax23ff2f02012-11-14 09:39:31 +00003713 _regulator_put(rdev->supply);
Kim, Milof19b00d2013-02-18 06:50:39 +00003714 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003715 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003716wash:
David Brownell4fca9542008-11-11 17:38:53 -08003717 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003718 /* device core frees rdev */
3719 rdev = ERR_PTR(ret);
3720 goto out;
3721
David Brownell4fca9542008-11-11 17:38:53 -08003722clean:
3723 kfree(rdev);
3724 rdev = ERR_PTR(ret);
3725 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003726}
3727EXPORT_SYMBOL_GPL(regulator_register);
3728
3729/**
3730 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003731 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003732 *
3733 * Called by regulator drivers to unregister a regulator.
3734 */
3735void regulator_unregister(struct regulator_dev *rdev)
3736{
3737 if (rdev == NULL)
3738 return;
3739
Mark Brown891636e2013-07-08 09:14:45 +01003740 if (rdev->supply) {
3741 while (rdev->use_count--)
3742 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003743 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003744 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003745 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003746 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003747 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003748 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003749 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003750 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003751 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003752 regulator_ena_gpio_free(rdev);
Charles Keepax63c7c9e2014-04-03 15:32:17 +01003753 of_node_put(rdev->dev.of_node);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003754 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003755 mutex_unlock(&regulator_list_mutex);
3756}
3757EXPORT_SYMBOL_GPL(regulator_unregister);
3758
3759/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003760 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003761 * @state: system suspend state
3762 *
3763 * Configure each regulator with it's suspend operating parameters for state.
3764 * This will usually be called by machine suspend code prior to supending.
3765 */
3766int regulator_suspend_prepare(suspend_state_t state)
3767{
3768 struct regulator_dev *rdev;
3769 int ret = 0;
3770
3771 /* ON is handled by regulator active state */
3772 if (state == PM_SUSPEND_ON)
3773 return -EINVAL;
3774
3775 mutex_lock(&regulator_list_mutex);
3776 list_for_each_entry(rdev, &regulator_list, list) {
3777
3778 mutex_lock(&rdev->mutex);
3779 ret = suspend_prepare(rdev, state);
3780 mutex_unlock(&rdev->mutex);
3781
3782 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003783 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003784 goto out;
3785 }
3786 }
3787out:
3788 mutex_unlock(&regulator_list_mutex);
3789 return ret;
3790}
3791EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3792
3793/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003794 * regulator_suspend_finish - resume regulators from system wide suspend
3795 *
3796 * Turn on regulators that might be turned off by regulator_suspend_prepare
3797 * and that should be turned on according to the regulators properties.
3798 */
3799int regulator_suspend_finish(void)
3800{
3801 struct regulator_dev *rdev;
3802 int ret = 0, error;
3803
3804 mutex_lock(&regulator_list_mutex);
3805 list_for_each_entry(rdev, &regulator_list, list) {
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003806 mutex_lock(&rdev->mutex);
Markus Pargmann30c21972014-02-20 17:36:03 +01003807 if (rdev->use_count > 0 || rdev->constraints->always_on) {
Javier Martinez Canillas0548bf42015-03-02 21:40:39 +01003808 if (!_regulator_is_enabled(rdev)) {
3809 error = _regulator_do_enable(rdev);
3810 if (error)
3811 ret = error;
3812 }
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003813 } else {
Mark Brown87b28412013-11-27 16:13:10 +00003814 if (!have_full_constraints())
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003815 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003816 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003817 goto unlock;
3818
Markus Pargmann66fda752014-02-20 17:36:04 +01003819 error = _regulator_do_disable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003820 if (error)
3821 ret = error;
3822 }
3823unlock:
3824 mutex_unlock(&rdev->mutex);
3825 }
3826 mutex_unlock(&regulator_list_mutex);
3827 return ret;
3828}
3829EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3830
3831/**
Mark Brownca725562009-03-16 19:36:34 +00003832 * regulator_has_full_constraints - the system has fully specified constraints
3833 *
3834 * Calling this function will cause the regulator API to disable all
3835 * regulators which have a zero use count and don't have an always_on
3836 * constraint in a late_initcall.
3837 *
3838 * The intention is that this will become the default behaviour in a
3839 * future kernel release so users are encouraged to use this facility
3840 * now.
3841 */
3842void regulator_has_full_constraints(void)
3843{
3844 has_full_constraints = 1;
3845}
3846EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3847
3848/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003849 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003850 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003851 *
3852 * Get rdev regulator driver private data. This call can be used in the
3853 * regulator driver context.
3854 */
3855void *rdev_get_drvdata(struct regulator_dev *rdev)
3856{
3857 return rdev->reg_data;
3858}
3859EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3860
3861/**
3862 * regulator_get_drvdata - get regulator driver data
3863 * @regulator: regulator
3864 *
3865 * Get regulator driver private data. This call can be used in the consumer
3866 * driver context when non API regulator specific functions need to be called.
3867 */
3868void *regulator_get_drvdata(struct regulator *regulator)
3869{
3870 return regulator->rdev->reg_data;
3871}
3872EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3873
3874/**
3875 * regulator_set_drvdata - set regulator driver data
3876 * @regulator: regulator
3877 * @data: data
3878 */
3879void regulator_set_drvdata(struct regulator *regulator, void *data)
3880{
3881 regulator->rdev->reg_data = data;
3882}
3883EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3884
3885/**
3886 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003887 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003888 */
3889int rdev_get_id(struct regulator_dev *rdev)
3890{
3891 return rdev->desc->id;
3892}
3893EXPORT_SYMBOL_GPL(rdev_get_id);
3894
Liam Girdwooda5766f12008-10-10 13:22:20 +01003895struct device *rdev_get_dev(struct regulator_dev *rdev)
3896{
3897 return &rdev->dev;
3898}
3899EXPORT_SYMBOL_GPL(rdev_get_dev);
3900
3901void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3902{
3903 return reg_init_data->driver_data;
3904}
3905EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3906
Mark Brownba55a972011-08-23 17:39:10 +01003907#ifdef CONFIG_DEBUG_FS
3908static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3909 size_t count, loff_t *ppos)
3910{
3911 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3912 ssize_t len, ret = 0;
3913 struct regulator_map *map;
3914
3915 if (!buf)
3916 return -ENOMEM;
3917
3918 list_for_each_entry(map, &regulator_map_list, list) {
3919 len = snprintf(buf + ret, PAGE_SIZE - ret,
3920 "%s -> %s.%s\n",
3921 rdev_get_name(map->regulator), map->dev_name,
3922 map->supply);
3923 if (len >= 0)
3924 ret += len;
3925 if (ret > PAGE_SIZE) {
3926 ret = PAGE_SIZE;
3927 break;
3928 }
3929 }
3930
3931 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3932
3933 kfree(buf);
3934
3935 return ret;
3936}
Stephen Boyd24751432012-02-20 22:50:42 -08003937#endif
Mark Brownba55a972011-08-23 17:39:10 +01003938
3939static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003940#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003941 .read = supply_map_read_file,
3942 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003943#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003944};
Mark Brownba55a972011-08-23 17:39:10 +01003945
Liam Girdwood414c70c2008-04-30 15:59:04 +01003946static int __init regulator_init(void)
3947{
Mark Brown34abbd62010-02-12 10:18:08 +00003948 int ret;
3949
Mark Brown34abbd62010-02-12 10:18:08 +00003950 ret = class_register(&regulator_class);
3951
Mark Brown1130e5b2010-12-21 23:49:31 +00003952 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08003953 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00003954 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01003955
Mark Brownf4d562c2012-02-20 21:01:04 +00003956 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
3957 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00003958
Mark Brown34abbd62010-02-12 10:18:08 +00003959 regulator_dummy_init();
3960
3961 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003962}
3963
3964/* init early to allow our consumers to complete system booting */
3965core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00003966
3967static int __init regulator_init_complete(void)
3968{
3969 struct regulator_dev *rdev;
Guodong Xu272e2312014-08-13 19:33:38 +08003970 const struct regulator_ops *ops;
Mark Brownca725562009-03-16 19:36:34 +00003971 struct regulation_constraints *c;
3972 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00003973
Mark Brown86f5fcf2012-07-06 18:19:13 +01003974 /*
3975 * Since DT doesn't provide an idiomatic mechanism for
3976 * enabling full constraints and since it's much more natural
3977 * with DT to provide them just assume that a DT enabled
3978 * system has full constraints.
3979 */
3980 if (of_have_populated_dt())
3981 has_full_constraints = true;
3982
Mark Brownca725562009-03-16 19:36:34 +00003983 mutex_lock(&regulator_list_mutex);
3984
3985 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01003986 * we have permission to change the status for and which are
3987 * not in use or always_on. This is effectively the default
3988 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00003989 */
3990 list_for_each_entry(rdev, &regulator_list, list) {
3991 ops = rdev->desc->ops;
3992 c = rdev->constraints;
3993
Markus Pargmann66fda752014-02-20 17:36:04 +01003994 if (c && c->always_on)
Mark Brownca725562009-03-16 19:36:34 +00003995 continue;
3996
Mark Browne9535832014-06-01 19:15:16 +01003997 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
3998 continue;
3999
Mark Brownca725562009-03-16 19:36:34 +00004000 mutex_lock(&rdev->mutex);
4001
4002 if (rdev->use_count)
4003 goto unlock;
4004
4005 /* If we can't read the status assume it's on. */
4006 if (ops->is_enabled)
4007 enabled = ops->is_enabled(rdev);
4008 else
4009 enabled = 1;
4010
4011 if (!enabled)
4012 goto unlock;
4013
Mark Brown87b28412013-11-27 16:13:10 +00004014 if (have_full_constraints()) {
Mark Brownca725562009-03-16 19:36:34 +00004015 /* We log since this may kill the system if it
4016 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08004017 rdev_info(rdev, "disabling\n");
Markus Pargmann66fda752014-02-20 17:36:04 +01004018 ret = _regulator_do_disable(rdev);
Jingoo Han0d25d092014-01-08 10:02:16 +09004019 if (ret != 0)
Joe Perches5da84fd2010-11-30 05:53:48 -08004020 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00004021 } else {
4022 /* The intention is that in future we will
4023 * assume that full constraints are provided
4024 * so warn even if we aren't going to do
4025 * anything here.
4026 */
Joe Perches5da84fd2010-11-30 05:53:48 -08004027 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00004028 }
4029
4030unlock:
4031 mutex_unlock(&rdev->mutex);
4032 }
4033
4034 mutex_unlock(&regulator_list_mutex);
4035
4036 return 0;
4037}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004038late_initcall_sync(regulator_init_complete);