blob: 520413e2bca00577c35ddc2dfe8d0a5cccb50795 [file] [log] [blame]
Liam Girdwood414c70c2008-04-30 15:59:04 +01001/*
2 * core.c -- Voltage/Current Regulator framework.
3 *
4 * Copyright 2007, 2008 Wolfson Microelectronics PLC.
Liam Girdwooda5766f12008-10-10 13:22:20 +01005 * Copyright 2008 SlimLogic Ltd.
Liam Girdwood414c70c2008-04-30 15:59:04 +01006 *
Liam Girdwooda5766f12008-10-10 13:22:20 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood414c70c2008-04-30 15:59:04 +01008 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
15
16#include <linux/kernel.h>
17#include <linux/init.h>
Mark Brown1130e5b2010-12-21 23:49:31 +000018#include <linux/debugfs.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010019#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Mark Brownf21e0e82011-05-24 08:12:40 +080021#include <linux/async.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010022#include <linux/err.h>
23#include <linux/mutex.h>
24#include <linux/suspend.h>
Mark Brown31aae2b2009-12-21 12:21:52 +000025#include <linux/delay.h>
Mark Brown65f73502012-06-27 14:14:38 +010026#include <linux/gpio.h>
Russell King778b28b2014-06-29 17:55:54 +010027#include <linux/gpio/consumer.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053028#include <linux/of.h>
Mark Brown65b19ce2012-04-15 11:16:05 +010029#include <linux/regmap.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053030#include <linux/regulator/of_regulator.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010031#include <linux/regulator/consumer.h>
32#include <linux/regulator/driver.h>
33#include <linux/regulator/machine.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040034#include <linux/module.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010035
Mark Brown02fa3ec2010-11-10 14:38:30 +000036#define CREATE_TRACE_POINTS
37#include <trace/events/regulator.h>
38
Mark Brown34abbd62010-02-12 10:18:08 +000039#include "dummy.h"
Mark Brown0cdfcc02013-09-11 13:15:40 +010040#include "internal.h"
Mark Brown34abbd62010-02-12 10:18:08 +000041
Mark Brown7d51a0d2011-06-09 16:06:37 +010042#define rdev_crit(rdev, fmt, ...) \
43 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
Joe Perches5da84fd2010-11-30 05:53:48 -080044#define rdev_err(rdev, fmt, ...) \
45 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
46#define rdev_warn(rdev, fmt, ...) \
47 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
48#define rdev_info(rdev, fmt, ...) \
49 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
50#define rdev_dbg(rdev, fmt, ...) \
51 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
52
Liam Girdwood414c70c2008-04-30 15:59:04 +010053static DEFINE_MUTEX(regulator_list_mutex);
54static LIST_HEAD(regulator_list);
55static LIST_HEAD(regulator_map_list);
Kim, Milof19b00d2013-02-18 06:50:39 +000056static LIST_HEAD(regulator_ena_gpio_list);
Charles Keepaxa06ccd92013-10-15 20:14:20 +010057static LIST_HEAD(regulator_supply_alias_list);
Mark Brown21cf8912010-12-21 23:30:07 +000058static bool has_full_constraints;
Liam Girdwood414c70c2008-04-30 15:59:04 +010059
Mark Brown1130e5b2010-12-21 23:49:31 +000060static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000061
Mark Brown8dc53902008-12-31 12:52:40 +000062/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010063 * struct regulator_map
64 *
65 * Used to provide symbolic supply names to devices.
66 */
67struct regulator_map {
68 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010069 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010070 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010071 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010072};
73
Liam Girdwood414c70c2008-04-30 15:59:04 +010074/*
Kim, Milof19b00d2013-02-18 06:50:39 +000075 * struct regulator_enable_gpio
76 *
77 * Management for shared enable GPIO pin
78 */
79struct regulator_enable_gpio {
80 struct list_head list;
Russell King778b28b2014-06-29 17:55:54 +010081 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +000082 u32 enable_count; /* a number of enabled shared GPIO */
83 u32 request_count; /* a number of requested shared GPIO */
84 unsigned int ena_gpio_invert:1;
85};
86
Charles Keepaxa06ccd92013-10-15 20:14:20 +010087/*
88 * struct regulator_supply_alias
89 *
90 * Used to map lookups for a supply onto an alternative device.
91 */
92struct regulator_supply_alias {
93 struct list_head list;
94 struct device *src_dev;
95 const char *src_supply;
96 struct device *alias_dev;
97 const char *alias_supply;
98};
99
Liam Girdwood414c70c2008-04-30 15:59:04 +0100100static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +0100101static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100102static int _regulator_get_voltage(struct regulator_dev *rdev);
103static int _regulator_get_current_limit(struct regulator_dev *rdev);
104static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
Heiko Stübner71795692014-08-28 12:36:04 -0700105static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100106 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +0000107static int _regulator_do_set_voltage(struct regulator_dev *rdev,
108 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +0100109static struct regulator *create_regulator(struct regulator_dev *rdev,
110 struct device *dev,
111 const char *supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100112
Mark Brown1083c392009-10-22 16:31:32 +0100113static const char *rdev_get_name(struct regulator_dev *rdev)
114{
115 if (rdev->constraints && rdev->constraints->name)
116 return rdev->constraints->name;
117 else if (rdev->desc->name)
118 return rdev->desc->name;
119 else
120 return "";
121}
122
Mark Brown87b28412013-11-27 16:13:10 +0000123static bool have_full_constraints(void)
124{
Mark Brown75bc9642013-11-27 16:22:53 +0000125 return has_full_constraints || of_have_populated_dt();
Mark Brown87b28412013-11-27 16:13:10 +0000126}
127
Rajendra Nayak69511a42011-11-18 16:47:20 +0530128/**
129 * of_get_regulator - get a regulator device node based on supply name
130 * @dev: Device pointer for the consumer (of regulator) device
131 * @supply: regulator supply name
132 *
133 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100134 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530135 * returns NULL.
136 */
137static struct device_node *of_get_regulator(struct device *dev, const char *supply)
138{
139 struct device_node *regnode = NULL;
140 char prop_name[32]; /* 32 is max size of property name */
141
142 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
143
144 snprintf(prop_name, 32, "%s-supply", supply);
145 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
146
147 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530148 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530149 prop_name, dev->of_node->full_name);
150 return NULL;
151 }
152 return regnode;
153}
154
Mark Brown6492bc12012-04-19 13:19:07 +0100155static int _regulator_can_change_status(struct regulator_dev *rdev)
156{
157 if (!rdev->constraints)
158 return 0;
159
160 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
161 return 1;
162 else
163 return 0;
164}
165
Liam Girdwood414c70c2008-04-30 15:59:04 +0100166/* Platform voltage constraint check */
167static int regulator_check_voltage(struct regulator_dev *rdev,
168 int *min_uV, int *max_uV)
169{
170 BUG_ON(*min_uV > *max_uV);
171
172 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800173 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100174 return -ENODEV;
175 }
176 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800177 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100178 return -EPERM;
179 }
180
181 if (*max_uV > rdev->constraints->max_uV)
182 *max_uV = rdev->constraints->max_uV;
183 if (*min_uV < rdev->constraints->min_uV)
184 *min_uV = rdev->constraints->min_uV;
185
Mark Brown89f425e2011-07-12 11:20:37 +0900186 if (*min_uV > *max_uV) {
187 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100188 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100189 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900190 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100191
192 return 0;
193}
194
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100195/* Make sure we select a voltage that suits the needs of all
196 * regulator consumers
197 */
198static int regulator_check_consumers(struct regulator_dev *rdev,
199 int *min_uV, int *max_uV)
200{
201 struct regulator *regulator;
202
203 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700204 /*
205 * Assume consumers that didn't say anything are OK
206 * with anything in the constraint range.
207 */
208 if (!regulator->min_uV && !regulator->max_uV)
209 continue;
210
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100211 if (*max_uV > regulator->max_uV)
212 *max_uV = regulator->max_uV;
213 if (*min_uV < regulator->min_uV)
214 *min_uV = regulator->min_uV;
215 }
216
Mark Browndd8004a2012-11-28 17:09:27 +0000217 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800218 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
219 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100220 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000221 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100222
223 return 0;
224}
225
Liam Girdwood414c70c2008-04-30 15:59:04 +0100226/* current constraint check */
227static int regulator_check_current_limit(struct regulator_dev *rdev,
228 int *min_uA, int *max_uA)
229{
230 BUG_ON(*min_uA > *max_uA);
231
232 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800233 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100234 return -ENODEV;
235 }
236 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800237 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100238 return -EPERM;
239 }
240
241 if (*max_uA > rdev->constraints->max_uA)
242 *max_uA = rdev->constraints->max_uA;
243 if (*min_uA < rdev->constraints->min_uA)
244 *min_uA = rdev->constraints->min_uA;
245
Mark Brown89f425e2011-07-12 11:20:37 +0900246 if (*min_uA > *max_uA) {
247 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100248 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100249 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900250 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100251
252 return 0;
253}
254
255/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900256static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100257{
Mark Brown2c608232011-03-30 06:29:12 +0900258 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800259 case REGULATOR_MODE_FAST:
260 case REGULATOR_MODE_NORMAL:
261 case REGULATOR_MODE_IDLE:
262 case REGULATOR_MODE_STANDBY:
263 break;
264 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900265 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800266 return -EINVAL;
267 }
268
Liam Girdwood414c70c2008-04-30 15:59:04 +0100269 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800270 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100271 return -ENODEV;
272 }
273 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800274 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100275 return -EPERM;
276 }
Mark Brown2c608232011-03-30 06:29:12 +0900277
278 /* The modes are bitmasks, the most power hungry modes having
279 * the lowest values. If the requested mode isn't supported
280 * try higher modes. */
281 while (*mode) {
282 if (rdev->constraints->valid_modes_mask & *mode)
283 return 0;
284 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100285 }
Mark Brown2c608232011-03-30 06:29:12 +0900286
287 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100288}
289
290/* dynamic regulator mode switching constraint check */
291static int regulator_check_drms(struct regulator_dev *rdev)
292{
293 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800294 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100295 return -ENODEV;
296 }
297 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800298 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100299 return -EPERM;
300 }
301 return 0;
302}
303
Liam Girdwood414c70c2008-04-30 15:59:04 +0100304static ssize_t regulator_uV_show(struct device *dev,
305 struct device_attribute *attr, char *buf)
306{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100307 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100308 ssize_t ret;
309
310 mutex_lock(&rdev->mutex);
311 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
312 mutex_unlock(&rdev->mutex);
313
314 return ret;
315}
David Brownell7ad68e22008-11-11 17:39:02 -0800316static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100317
318static ssize_t regulator_uA_show(struct device *dev,
319 struct device_attribute *attr, char *buf)
320{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100321 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100322
323 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
324}
David Brownell7ad68e22008-11-11 17:39:02 -0800325static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100326
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700327static ssize_t name_show(struct device *dev, struct device_attribute *attr,
328 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100329{
330 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100331
Mark Brown1083c392009-10-22 16:31:32 +0100332 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100333}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700334static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100335
David Brownell4fca9542008-11-11 17:38:53 -0800336static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100337{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100338 switch (mode) {
339 case REGULATOR_MODE_FAST:
340 return sprintf(buf, "fast\n");
341 case REGULATOR_MODE_NORMAL:
342 return sprintf(buf, "normal\n");
343 case REGULATOR_MODE_IDLE:
344 return sprintf(buf, "idle\n");
345 case REGULATOR_MODE_STANDBY:
346 return sprintf(buf, "standby\n");
347 }
348 return sprintf(buf, "unknown\n");
349}
350
David Brownell4fca9542008-11-11 17:38:53 -0800351static ssize_t regulator_opmode_show(struct device *dev,
352 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100353{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100354 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100355
David Brownell4fca9542008-11-11 17:38:53 -0800356 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
357}
David Brownell7ad68e22008-11-11 17:39:02 -0800358static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800359
360static ssize_t regulator_print_state(char *buf, int state)
361{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100362 if (state > 0)
363 return sprintf(buf, "enabled\n");
364 else if (state == 0)
365 return sprintf(buf, "disabled\n");
366 else
367 return sprintf(buf, "unknown\n");
368}
369
David Brownell4fca9542008-11-11 17:38:53 -0800370static ssize_t regulator_state_show(struct device *dev,
371 struct device_attribute *attr, char *buf)
372{
373 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100374 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800375
Mark Brown93325462009-08-03 18:49:56 +0100376 mutex_lock(&rdev->mutex);
377 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
378 mutex_unlock(&rdev->mutex);
379
380 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800381}
David Brownell7ad68e22008-11-11 17:39:02 -0800382static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800383
David Brownell853116a2009-01-14 23:03:17 -0800384static ssize_t regulator_status_show(struct device *dev,
385 struct device_attribute *attr, char *buf)
386{
387 struct regulator_dev *rdev = dev_get_drvdata(dev);
388 int status;
389 char *label;
390
391 status = rdev->desc->ops->get_status(rdev);
392 if (status < 0)
393 return status;
394
395 switch (status) {
396 case REGULATOR_STATUS_OFF:
397 label = "off";
398 break;
399 case REGULATOR_STATUS_ON:
400 label = "on";
401 break;
402 case REGULATOR_STATUS_ERROR:
403 label = "error";
404 break;
405 case REGULATOR_STATUS_FAST:
406 label = "fast";
407 break;
408 case REGULATOR_STATUS_NORMAL:
409 label = "normal";
410 break;
411 case REGULATOR_STATUS_IDLE:
412 label = "idle";
413 break;
414 case REGULATOR_STATUS_STANDBY:
415 label = "standby";
416 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700417 case REGULATOR_STATUS_BYPASS:
418 label = "bypass";
419 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100420 case REGULATOR_STATUS_UNDEFINED:
421 label = "undefined";
422 break;
David Brownell853116a2009-01-14 23:03:17 -0800423 default:
424 return -ERANGE;
425 }
426
427 return sprintf(buf, "%s\n", label);
428}
429static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
430
Liam Girdwood414c70c2008-04-30 15:59:04 +0100431static ssize_t regulator_min_uA_show(struct device *dev,
432 struct device_attribute *attr, char *buf)
433{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100434 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100435
436 if (!rdev->constraints)
437 return sprintf(buf, "constraint not defined\n");
438
439 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
440}
David Brownell7ad68e22008-11-11 17:39:02 -0800441static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100442
443static ssize_t regulator_max_uA_show(struct device *dev,
444 struct device_attribute *attr, char *buf)
445{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100446 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100447
448 if (!rdev->constraints)
449 return sprintf(buf, "constraint not defined\n");
450
451 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
452}
David Brownell7ad68e22008-11-11 17:39:02 -0800453static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100454
455static ssize_t regulator_min_uV_show(struct device *dev,
456 struct device_attribute *attr, char *buf)
457{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100458 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100459
460 if (!rdev->constraints)
461 return sprintf(buf, "constraint not defined\n");
462
463 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
464}
David Brownell7ad68e22008-11-11 17:39:02 -0800465static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100466
467static ssize_t regulator_max_uV_show(struct device *dev,
468 struct device_attribute *attr, char *buf)
469{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100470 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100471
472 if (!rdev->constraints)
473 return sprintf(buf, "constraint not defined\n");
474
475 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
476}
David Brownell7ad68e22008-11-11 17:39:02 -0800477static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100478
479static ssize_t regulator_total_uA_show(struct device *dev,
480 struct device_attribute *attr, char *buf)
481{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100482 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100483 struct regulator *regulator;
484 int uA = 0;
485
486 mutex_lock(&rdev->mutex);
487 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100488 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100489 mutex_unlock(&rdev->mutex);
490 return sprintf(buf, "%d\n", uA);
491}
David Brownell7ad68e22008-11-11 17:39:02 -0800492static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100493
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700494static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
495 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100496{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100497 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100498 return sprintf(buf, "%d\n", rdev->use_count);
499}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700500static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100501
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700502static ssize_t type_show(struct device *dev, struct device_attribute *attr,
503 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100504{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100505 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100506
507 switch (rdev->desc->type) {
508 case REGULATOR_VOLTAGE:
509 return sprintf(buf, "voltage\n");
510 case REGULATOR_CURRENT:
511 return sprintf(buf, "current\n");
512 }
513 return sprintf(buf, "unknown\n");
514}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700515static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100516
517static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
518 struct device_attribute *attr, char *buf)
519{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100520 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100521
Liam Girdwood414c70c2008-04-30 15:59:04 +0100522 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
523}
David Brownell7ad68e22008-11-11 17:39:02 -0800524static DEVICE_ATTR(suspend_mem_microvolts, 0444,
525 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100526
527static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
528 struct device_attribute *attr, char *buf)
529{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100530 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100531
Liam Girdwood414c70c2008-04-30 15:59:04 +0100532 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
533}
David Brownell7ad68e22008-11-11 17:39:02 -0800534static DEVICE_ATTR(suspend_disk_microvolts, 0444,
535 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100536
537static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
538 struct device_attribute *attr, char *buf)
539{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100540 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100541
Liam Girdwood414c70c2008-04-30 15:59:04 +0100542 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
543}
David Brownell7ad68e22008-11-11 17:39:02 -0800544static DEVICE_ATTR(suspend_standby_microvolts, 0444,
545 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100546
Liam Girdwood414c70c2008-04-30 15:59:04 +0100547static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
548 struct device_attribute *attr, char *buf)
549{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100550 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100551
David Brownell4fca9542008-11-11 17:38:53 -0800552 return regulator_print_opmode(buf,
553 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100554}
David Brownell7ad68e22008-11-11 17:39:02 -0800555static DEVICE_ATTR(suspend_mem_mode, 0444,
556 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100557
558static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
559 struct device_attribute *attr, char *buf)
560{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100561 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100562
David Brownell4fca9542008-11-11 17:38:53 -0800563 return regulator_print_opmode(buf,
564 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100565}
David Brownell7ad68e22008-11-11 17:39:02 -0800566static DEVICE_ATTR(suspend_disk_mode, 0444,
567 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100568
569static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
570 struct device_attribute *attr, char *buf)
571{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100572 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100573
David Brownell4fca9542008-11-11 17:38:53 -0800574 return regulator_print_opmode(buf,
575 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100576}
David Brownell7ad68e22008-11-11 17:39:02 -0800577static DEVICE_ATTR(suspend_standby_mode, 0444,
578 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100579
580static ssize_t regulator_suspend_mem_state_show(struct device *dev,
581 struct device_attribute *attr, char *buf)
582{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100583 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100584
David Brownell4fca9542008-11-11 17:38:53 -0800585 return regulator_print_state(buf,
586 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100587}
David Brownell7ad68e22008-11-11 17:39:02 -0800588static DEVICE_ATTR(suspend_mem_state, 0444,
589 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100590
591static ssize_t regulator_suspend_disk_state_show(struct device *dev,
592 struct device_attribute *attr, char *buf)
593{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100594 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100595
David Brownell4fca9542008-11-11 17:38:53 -0800596 return regulator_print_state(buf,
597 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100598}
David Brownell7ad68e22008-11-11 17:39:02 -0800599static DEVICE_ATTR(suspend_disk_state, 0444,
600 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100601
602static ssize_t regulator_suspend_standby_state_show(struct device *dev,
603 struct device_attribute *attr, char *buf)
604{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100605 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100606
David Brownell4fca9542008-11-11 17:38:53 -0800607 return regulator_print_state(buf,
608 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100609}
David Brownell7ad68e22008-11-11 17:39:02 -0800610static DEVICE_ATTR(suspend_standby_state, 0444,
611 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100612
Mark Brownf59c8f92012-08-31 10:36:37 -0700613static ssize_t regulator_bypass_show(struct device *dev,
614 struct device_attribute *attr, char *buf)
615{
616 struct regulator_dev *rdev = dev_get_drvdata(dev);
617 const char *report;
618 bool bypass;
619 int ret;
620
621 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
622
623 if (ret != 0)
624 report = "unknown";
625 else if (bypass)
626 report = "enabled";
627 else
628 report = "disabled";
629
630 return sprintf(buf, "%s\n", report);
631}
632static DEVICE_ATTR(bypass, 0444,
633 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800634
Liam Girdwood414c70c2008-04-30 15:59:04 +0100635/* Calculate the new optimum regulator operating mode based on the new total
636 * consumer load. All locks held by caller */
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800637static int drms_uA_update(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100638{
639 struct regulator *sibling;
640 int current_uA = 0, output_uV, input_uV, err;
641 unsigned int mode;
642
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800643 /*
644 * first check to see if we can set modes at all, otherwise just
645 * tell the consumer everything is OK.
646 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100647 err = regulator_check_drms(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800648 if (err < 0)
649 return 0;
650
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800651 if (!rdev->desc->ops->get_optimum_mode &&
652 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800653 return 0;
654
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800655 if (!rdev->desc->ops->set_mode &&
656 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800657 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100658
659 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000660 output_uV = _regulator_get_voltage(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800661 if (output_uV <= 0) {
662 rdev_err(rdev, "invalid output voltage found\n");
663 return -EINVAL;
664 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100665
666 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000667 input_uV = 0;
668 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800669 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000670 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100671 input_uV = rdev->constraints->input_uV;
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800672 if (input_uV <= 0) {
673 rdev_err(rdev, "invalid input voltage found\n");
674 return -EINVAL;
675 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100676
677 /* calc total requested load */
678 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100679 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100680
Stephen Boyd22a10bc2015-06-11 17:37:03 -0700681 current_uA += rdev->constraints->system_load;
682
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800683 if (rdev->desc->ops->set_load) {
684 /* set the optimum mode for our new total regulator load */
685 err = rdev->desc->ops->set_load(rdev, current_uA);
686 if (err < 0)
687 rdev_err(rdev, "failed to set load %d\n", current_uA);
688 } else {
689 /* now get the optimum mode for our new total regulator load */
690 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
691 output_uV, current_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100692
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800693 /* check the new mode is allowed */
694 err = regulator_mode_constrain(rdev, &mode);
695 if (err < 0) {
696 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
697 current_uA, input_uV, output_uV);
698 return err;
699 }
700
701 err = rdev->desc->ops->set_mode(rdev, mode);
702 if (err < 0)
703 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800704 }
705
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800706 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100707}
708
709static int suspend_set_state(struct regulator_dev *rdev,
710 struct regulator_state *rstate)
711{
712 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100713
714 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800715 * only warn if the driver implements set_suspend_voltage or
716 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100717 */
718 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800719 if (rdev->desc->ops->set_suspend_voltage ||
720 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800721 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100722 return 0;
723 }
724
725 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800726 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100727 return -EINVAL;
728 }
729
Axel Lin8ac0e952012-04-14 09:14:34 +0800730 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100731 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800732 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100733 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800734 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
735 ret = 0;
736
Liam Girdwood414c70c2008-04-30 15:59:04 +0100737 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800738 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100739 return ret;
740 }
741
742 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
743 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
744 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800745 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100746 return ret;
747 }
748 }
749
750 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
751 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
752 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800753 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100754 return ret;
755 }
756 }
757 return ret;
758}
759
760/* locks held by caller */
761static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
762{
763 if (!rdev->constraints)
764 return -EINVAL;
765
766 switch (state) {
767 case PM_SUSPEND_STANDBY:
768 return suspend_set_state(rdev,
769 &rdev->constraints->state_standby);
770 case PM_SUSPEND_MEM:
771 return suspend_set_state(rdev,
772 &rdev->constraints->state_mem);
773 case PM_SUSPEND_MAX:
774 return suspend_set_state(rdev,
775 &rdev->constraints->state_disk);
776 default:
777 return -EINVAL;
778 }
779}
780
781static void print_constraints(struct regulator_dev *rdev)
782{
783 struct regulation_constraints *constraints = rdev->constraints;
Stefan Wahrena7068e32015-06-09 20:09:42 +0000784 char buf[160] = "";
Stefan Wahren5751a992015-06-10 06:13:15 +0000785 size_t len = sizeof(buf) - 1;
Mark Brown8f031b42009-10-22 16:31:31 +0100786 int count = 0;
787 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100788
Mark Brown8f031b42009-10-22 16:31:31 +0100789 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100790 if (constraints->min_uV == constraints->max_uV)
Stefan Wahren5751a992015-06-10 06:13:15 +0000791 count += scnprintf(buf + count, len - count, "%d mV ",
792 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100793 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000794 count += scnprintf(buf + count, len - count,
795 "%d <--> %d mV ",
796 constraints->min_uV / 1000,
797 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100798 }
Mark Brown8f031b42009-10-22 16:31:31 +0100799
800 if (!constraints->min_uV ||
801 constraints->min_uV != constraints->max_uV) {
802 ret = _regulator_get_voltage(rdev);
803 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000804 count += scnprintf(buf + count, len - count,
805 "at %d mV ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100806 }
807
Mark Brownbf5892a2011-05-08 22:13:37 +0100808 if (constraints->uV_offset)
Stefan Wahren5751a992015-06-10 06:13:15 +0000809 count += scnprintf(buf + count, len - count, "%dmV offset ",
810 constraints->uV_offset / 1000);
Mark Brownbf5892a2011-05-08 22:13:37 +0100811
Mark Brown8f031b42009-10-22 16:31:31 +0100812 if (constraints->min_uA && constraints->max_uA) {
813 if (constraints->min_uA == constraints->max_uA)
Stefan Wahren5751a992015-06-10 06:13:15 +0000814 count += scnprintf(buf + count, len - count, "%d mA ",
815 constraints->min_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100816 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000817 count += scnprintf(buf + count, len - count,
818 "%d <--> %d mA ",
819 constraints->min_uA / 1000,
820 constraints->max_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100821 }
822
823 if (!constraints->min_uA ||
824 constraints->min_uA != constraints->max_uA) {
825 ret = _regulator_get_current_limit(rdev);
826 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000827 count += scnprintf(buf + count, len - count,
828 "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100829 }
830
Liam Girdwood414c70c2008-04-30 15:59:04 +0100831 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
Stefan Wahren5751a992015-06-10 06:13:15 +0000832 count += scnprintf(buf + count, len - count, "fast ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100833 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
Stefan Wahren5751a992015-06-10 06:13:15 +0000834 count += scnprintf(buf + count, len - count, "normal ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100835 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
Stefan Wahren5751a992015-06-10 06:13:15 +0000836 count += scnprintf(buf + count, len - count, "idle ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100837 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
Stefan Wahren5751a992015-06-10 06:13:15 +0000838 count += scnprintf(buf + count, len - count, "standby");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100839
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200840 if (!count)
Stefan Wahren5751a992015-06-10 06:13:15 +0000841 scnprintf(buf, len, "no parameters");
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200842
Mark Brown194dbae2014-10-31 19:11:59 +0000843 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000844
845 if ((constraints->min_uV != constraints->max_uV) &&
846 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
847 rdev_warn(rdev,
848 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100849}
850
Mark Browne79055d2009-10-19 15:53:50 +0100851static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100852 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100853{
Guodong Xu272e2312014-08-13 19:33:38 +0800854 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100855 int ret;
856
857 /* do we need to apply the constraint voltage */
858 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000859 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200860 int current_uV = _regulator_get_voltage(rdev);
861 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500862 rdev_err(rdev,
863 "failed to get the current voltage(%d)\n",
864 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200865 return current_uV;
866 }
867 if (current_uV < rdev->constraints->min_uV ||
868 current_uV > rdev->constraints->max_uV) {
869 ret = _regulator_do_set_voltage(
870 rdev, rdev->constraints->min_uV,
871 rdev->constraints->max_uV);
872 if (ret < 0) {
873 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500874 "failed to apply %duV constraint(%d)\n",
875 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200876 return ret;
877 }
Mark Brown75790252010-12-12 14:25:50 +0000878 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100879 }
Mark Browne79055d2009-10-19 15:53:50 +0100880
881 /* constrain machine-level voltage specs to fit
882 * the actual range supported by this regulator.
883 */
884 if (ops->list_voltage && rdev->desc->n_voltages) {
885 int count = rdev->desc->n_voltages;
886 int i;
887 int min_uV = INT_MAX;
888 int max_uV = INT_MIN;
889 int cmin = constraints->min_uV;
890 int cmax = constraints->max_uV;
891
892 /* it's safe to autoconfigure fixed-voltage supplies
893 and the constraints are used by list_voltage. */
894 if (count == 1 && !cmin) {
895 cmin = 1;
896 cmax = INT_MAX;
897 constraints->min_uV = cmin;
898 constraints->max_uV = cmax;
899 }
900
901 /* voltage constraints are optional */
902 if ((cmin == 0) && (cmax == 0))
903 return 0;
904
905 /* else require explicit machine-level constraints */
906 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800907 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100908 return -EINVAL;
909 }
910
911 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
912 for (i = 0; i < count; i++) {
913 int value;
914
915 value = ops->list_voltage(rdev, i);
916 if (value <= 0)
917 continue;
918
919 /* maybe adjust [min_uV..max_uV] */
920 if (value >= cmin && value < min_uV)
921 min_uV = value;
922 if (value <= cmax && value > max_uV)
923 max_uV = value;
924 }
925
926 /* final: [min_uV..max_uV] valid iff constraints valid */
927 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000928 rdev_err(rdev,
929 "unsupportable voltage constraints %u-%uuV\n",
930 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100931 return -EINVAL;
932 }
933
934 /* use regulator's subset of machine constraints */
935 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800936 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
937 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100938 constraints->min_uV = min_uV;
939 }
940 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800941 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
942 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100943 constraints->max_uV = max_uV;
944 }
945 }
946
947 return 0;
948}
949
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530950static int machine_constraints_current(struct regulator_dev *rdev,
951 struct regulation_constraints *constraints)
952{
Guodong Xu272e2312014-08-13 19:33:38 +0800953 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530954 int ret;
955
956 if (!constraints->min_uA && !constraints->max_uA)
957 return 0;
958
959 if (constraints->min_uA > constraints->max_uA) {
960 rdev_err(rdev, "Invalid current constraints\n");
961 return -EINVAL;
962 }
963
964 if (!ops->set_current_limit || !ops->get_current_limit) {
965 rdev_warn(rdev, "Operation of current configuration missing\n");
966 return 0;
967 }
968
969 /* Set regulator current in constraints range */
970 ret = ops->set_current_limit(rdev, constraints->min_uA,
971 constraints->max_uA);
972 if (ret < 0) {
973 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
974 return ret;
975 }
976
977 return 0;
978}
979
Markus Pargmann30c21972014-02-20 17:36:03 +0100980static int _regulator_do_enable(struct regulator_dev *rdev);
981
Liam Girdwooda5766f12008-10-10 13:22:20 +0100982/**
983 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000984 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000985 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100986 *
987 * Allows platform initialisation code to define and constrain
988 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
989 * Constraints *must* be set by platform code in order for some
990 * regulator operations to proceed i.e. set_voltage, set_current_limit,
991 * set_mode.
992 */
993static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000994 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100995{
996 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +0800997 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100998
Mark Brown9a8f5e02011-11-29 18:11:19 +0000999 if (constraints)
1000 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
1001 GFP_KERNEL);
1002 else
1003 rdev->constraints = kzalloc(sizeof(*constraints),
1004 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +00001005 if (!rdev->constraints)
1006 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001007
Mark Brownf8c12fe2010-11-29 15:55:17 +00001008 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001009 if (ret != 0)
1010 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -08001011
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301012 ret = machine_constraints_current(rdev, rdev->constraints);
1013 if (ret != 0)
1014 goto out;
1015
Stephen Boyd36e4f832015-06-11 17:37:06 -07001016 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1017 ret = ops->set_input_current_limit(rdev,
1018 rdev->constraints->ilim_uA);
1019 if (ret < 0) {
1020 rdev_err(rdev, "failed to set input limit\n");
1021 goto out;
1022 }
1023 }
1024
Liam Girdwooda5766f12008-10-10 13:22:20 +01001025 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001026 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001027 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001028 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001029 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +01001030 goto out;
1031 }
1032 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001033
Mark Brown9a8f5e02011-11-29 18:11:19 +00001034 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001035 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001036 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +00001037 ret = -EINVAL;
1038 goto out;
1039 }
1040
Mark Brownf8c12fe2010-11-29 15:55:17 +00001041 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001042 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001043 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +00001044 goto out;
1045 }
1046 }
1047
Mark Browncacf90f2009-03-02 16:32:46 +00001048 /* If the constraints say the regulator should be on at this point
1049 * and we have control then make sure it is enabled.
1050 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001051 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1052 ret = _regulator_do_enable(rdev);
1053 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001054 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001055 goto out;
1056 }
1057 }
1058
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301059 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1060 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301061 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1062 if (ret < 0) {
1063 rdev_err(rdev, "failed to set ramp_delay\n");
1064 goto out;
1065 }
1066 }
1067
Stephen Boyd23c779b2015-06-11 17:37:04 -07001068 if (rdev->constraints->pull_down && ops->set_pull_down) {
1069 ret = ops->set_pull_down(rdev);
1070 if (ret < 0) {
1071 rdev_err(rdev, "failed to set pull down\n");
1072 goto out;
1073 }
1074 }
1075
Stephen Boyd57f66b72015-06-11 17:37:05 -07001076 if (rdev->constraints->soft_start && ops->set_soft_start) {
1077 ret = ops->set_soft_start(rdev);
1078 if (ret < 0) {
1079 rdev_err(rdev, "failed to set soft start\n");
1080 goto out;
1081 }
1082 }
1083
Stephen Boyd3a003ba2015-07-17 14:41:54 -07001084 if (rdev->constraints->over_current_protection
1085 && ops->set_over_current_protection) {
1086 ret = ops->set_over_current_protection(rdev);
1087 if (ret < 0) {
1088 rdev_err(rdev, "failed to set over current protection\n");
1089 goto out;
1090 }
1091 }
1092
Liam Girdwooda5766f12008-10-10 13:22:20 +01001093 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001094 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001095out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001096 kfree(rdev->constraints);
1097 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001098 return ret;
1099}
1100
1101/**
1102 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001103 * @rdev: regulator name
1104 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001105 *
1106 * Called by platform initialisation code to set the supply regulator for this
1107 * regulator. This ensures that a regulators supply will also be enabled by the
1108 * core if it's child is enabled.
1109 */
1110static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001111 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001112{
1113 int err;
1114
Mark Brown3801b862011-06-09 16:22:22 +01001115 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1116
1117 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001118 if (rdev->supply == NULL) {
1119 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001120 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001121 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301122 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001123
1124 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001125}
1126
1127/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001128 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001129 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001130 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001131 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001132 *
1133 * Allows platform initialisation code to map physical regulator
1134 * sources to symbolic names for supplies for use by devices. Devices
1135 * should use these symbolic names to request regulators, avoiding the
1136 * need to provide board-specific regulator names as platform data.
1137 */
1138static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001139 const char *consumer_dev_name,
1140 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001141{
1142 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001143 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001144
1145 if (supply == NULL)
1146 return -EINVAL;
1147
Mark Brown9ed20992009-07-21 16:00:26 +01001148 if (consumer_dev_name != NULL)
1149 has_dev = 1;
1150 else
1151 has_dev = 0;
1152
David Brownell6001e132008-12-31 12:54:19 +00001153 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001154 if (node->dev_name && consumer_dev_name) {
1155 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1156 continue;
1157 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001158 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001159 }
1160
David Brownell6001e132008-12-31 12:54:19 +00001161 if (strcmp(node->supply, supply) != 0)
1162 continue;
1163
Mark Brown737f3602012-02-02 00:10:51 +00001164 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1165 consumer_dev_name,
1166 dev_name(&node->regulator->dev),
1167 node->regulator->desc->name,
1168 supply,
1169 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001170 return -EBUSY;
1171 }
1172
Mark Brown9ed20992009-07-21 16:00:26 +01001173 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001174 if (node == NULL)
1175 return -ENOMEM;
1176
1177 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001178 node->supply = supply;
1179
Mark Brown9ed20992009-07-21 16:00:26 +01001180 if (has_dev) {
1181 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1182 if (node->dev_name == NULL) {
1183 kfree(node);
1184 return -ENOMEM;
1185 }
Mark Brown40f92442009-06-17 17:56:39 +01001186 }
1187
Liam Girdwooda5766f12008-10-10 13:22:20 +01001188 list_add(&node->list, &regulator_map_list);
1189 return 0;
1190}
1191
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001192static void unset_regulator_supplies(struct regulator_dev *rdev)
1193{
1194 struct regulator_map *node, *n;
1195
1196 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1197 if (rdev == node->regulator) {
1198 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001199 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001200 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001201 }
1202 }
1203}
1204
Mark Brownf5726ae2011-06-09 16:22:20 +01001205#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001206
1207static struct regulator *create_regulator(struct regulator_dev *rdev,
1208 struct device *dev,
1209 const char *supply_name)
1210{
1211 struct regulator *regulator;
1212 char buf[REG_STR_SIZE];
1213 int err, size;
1214
1215 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1216 if (regulator == NULL)
1217 return NULL;
1218
1219 mutex_lock(&rdev->mutex);
1220 regulator->rdev = rdev;
1221 list_add(&regulator->list, &rdev->consumer_list);
1222
1223 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001224 regulator->dev = dev;
1225
Mark Brown222cc7b2012-06-22 11:39:16 +01001226 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001227 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1228 dev->kobj.name, supply_name);
1229 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001230 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001231
1232 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1233 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001234 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001235
Stephen Boydff268b52015-06-01 18:47:54 -07001236 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
Liam Girdwood414c70c2008-04-30 15:59:04 +01001237 buf);
1238 if (err) {
Stephen Boydff268b52015-06-01 18:47:54 -07001239 rdev_dbg(rdev, "could not add device link %s err %d\n",
Joe Perches5da84fd2010-11-30 05:53:48 -08001240 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001241 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001242 }
Mark Brown5de70512011-06-19 13:33:16 +01001243 } else {
1244 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1245 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001246 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001247 }
Mark Brown5de70512011-06-19 13:33:16 +01001248
Mark Brown5de70512011-06-19 13:33:16 +01001249 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1250 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001251 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001252 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001253 } else {
1254 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1255 &regulator->uA_load);
1256 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1257 &regulator->min_uV);
1258 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1259 &regulator->max_uV);
1260 }
Mark Brown5de70512011-06-19 13:33:16 +01001261
Mark Brown6492bc12012-04-19 13:19:07 +01001262 /*
1263 * Check now if the regulator is an always on regulator - if
1264 * it is then we don't need to do nearly so much work for
1265 * enable/disable calls.
1266 */
1267 if (!_regulator_can_change_status(rdev) &&
1268 _regulator_is_enabled(rdev))
1269 regulator->always_on = true;
1270
Liam Girdwood414c70c2008-04-30 15:59:04 +01001271 mutex_unlock(&rdev->mutex);
1272 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001273overflow_err:
1274 list_del(&regulator->list);
1275 kfree(regulator);
1276 mutex_unlock(&rdev->mutex);
1277 return NULL;
1278}
1279
Mark Brown31aae2b2009-12-21 12:21:52 +00001280static int _regulator_get_enable_time(struct regulator_dev *rdev)
1281{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301282 if (rdev->constraints && rdev->constraints->enable_time)
1283 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001284 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001285 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001286 return rdev->desc->ops->enable_time(rdev);
1287}
1288
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001289static struct regulator_supply_alias *regulator_find_supply_alias(
1290 struct device *dev, const char *supply)
1291{
1292 struct regulator_supply_alias *map;
1293
1294 list_for_each_entry(map, &regulator_supply_alias_list, list)
1295 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1296 return map;
1297
1298 return NULL;
1299}
1300
1301static void regulator_supply_alias(struct device **dev, const char **supply)
1302{
1303 struct regulator_supply_alias *map;
1304
1305 map = regulator_find_supply_alias(*dev, *supply);
1306 if (map) {
1307 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1308 *supply, map->alias_supply,
1309 dev_name(map->alias_dev));
1310 *dev = map->alias_dev;
1311 *supply = map->alias_supply;
1312 }
1313}
1314
Rajendra Nayak69511a42011-11-18 16:47:20 +05301315static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001316 const char *supply,
1317 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301318{
1319 struct regulator_dev *r;
1320 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001321 struct regulator_map *map;
1322 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301323
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001324 regulator_supply_alias(&dev, &supply);
1325
Rajendra Nayak69511a42011-11-18 16:47:20 +05301326 /* first do a dt based lookup */
1327 if (dev && dev->of_node) {
1328 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001329 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301330 list_for_each_entry(r, &regulator_list, list)
1331 if (r->dev.parent &&
1332 node == r->dev.of_node)
1333 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001334 *ret = -EPROBE_DEFER;
1335 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001336 } else {
1337 /*
1338 * If we couldn't even get the node then it's
1339 * not just that the device didn't register
1340 * yet, there's no node and we'll never
1341 * succeed.
1342 */
1343 *ret = -ENODEV;
1344 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301345 }
1346
1347 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001348 if (dev)
1349 devname = dev_name(dev);
1350
Rajendra Nayak69511a42011-11-18 16:47:20 +05301351 list_for_each_entry(r, &regulator_list, list)
1352 if (strcmp(rdev_get_name(r), supply) == 0)
1353 return r;
1354
Mark Brown576ca4362012-03-30 12:24:37 +01001355 list_for_each_entry(map, &regulator_map_list, list) {
1356 /* If the mapping has a device set up it must match */
1357 if (map->dev_name &&
1358 (!devname || strcmp(map->dev_name, devname)))
1359 continue;
1360
1361 if (strcmp(map->supply, supply) == 0)
1362 return map->regulator;
1363 }
1364
1365
Rajendra Nayak69511a42011-11-18 16:47:20 +05301366 return NULL;
1367}
1368
Bjorn Andersson6261b062015-03-24 18:56:05 -07001369static int regulator_resolve_supply(struct regulator_dev *rdev)
1370{
1371 struct regulator_dev *r;
1372 struct device *dev = rdev->dev.parent;
1373 int ret;
1374
1375 /* No supply to resovle? */
1376 if (!rdev->supply_name)
1377 return 0;
1378
1379 /* Supply already resolved? */
1380 if (rdev->supply)
1381 return 0;
1382
1383 r = regulator_dev_lookup(dev, rdev->supply_name, &ret);
1384 if (ret == -ENODEV) {
1385 /*
1386 * No supply was specified for this regulator and
1387 * there will never be one.
1388 */
1389 return 0;
1390 }
1391
1392 if (!r) {
1393 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1394 rdev->supply_name, rdev->desc->name);
1395 return -EPROBE_DEFER;
1396 }
1397
1398 /* Recursively resolve the supply of the supply */
1399 ret = regulator_resolve_supply(r);
1400 if (ret < 0)
1401 return ret;
1402
1403 ret = set_supply(rdev, r);
1404 if (ret < 0)
1405 return ret;
1406
1407 /* Cascade always-on state to supply */
1408 if (_regulator_is_enabled(rdev)) {
1409 ret = regulator_enable(rdev->supply);
1410 if (ret < 0)
1411 return ret;
1412 }
1413
1414 return 0;
1415}
1416
Mark Brown5ffbd132009-07-21 16:00:23 +01001417/* Internal regulator request function */
1418static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001419 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001420{
1421 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001422 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001423 const char *devname = NULL;
Mark Brown317b5682014-01-27 17:34:07 +00001424 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001425
1426 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001427 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001428 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001429 }
1430
Mark Brown40f92442009-06-17 17:56:39 +01001431 if (dev)
1432 devname = dev_name(dev);
1433
Mark Brown317b5682014-01-27 17:34:07 +00001434 if (have_full_constraints())
1435 ret = -ENODEV;
1436 else
1437 ret = -EPROBE_DEFER;
1438
Liam Girdwood414c70c2008-04-30 15:59:04 +01001439 mutex_lock(&regulator_list_mutex);
1440
Mark Brown6d191a52012-03-29 14:19:02 +01001441 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301442 if (rdev)
1443 goto found;
1444
Mark Brownef60abb2013-09-23 16:12:52 +01001445 regulator = ERR_PTR(ret);
1446
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001447 /*
1448 * If we have return value from dev_lookup fail, we do not expect to
1449 * succeed, so, quit with appropriate error value
1450 */
Jingoo Han0d25d092014-01-08 10:02:16 +09001451 if (ret && ret != -ENODEV)
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001452 goto out;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001453
Mark Brown34abbd62010-02-12 10:18:08 +00001454 if (!devname)
1455 devname = "deviceless";
1456
Mark Brown4ddfebd2013-09-13 19:50:37 +01001457 /*
1458 * Assume that a regulator is physically present and enabled
1459 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001460 */
Mark Brown87b28412013-11-27 16:13:10 +00001461 if (have_full_constraints() && allow_dummy) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001462 pr_warn("%s supply %s not found, using dummy regulator\n",
1463 devname, id);
Mark Brown4ddfebd2013-09-13 19:50:37 +01001464
Mark Brown34abbd62010-02-12 10:18:08 +00001465 rdev = dummy_regulator_rdev;
1466 goto found;
Hans de Goede07817192013-12-17 16:24:57 +01001467 /* Don't log an error when called from regulator_get_optional() */
1468 } else if (!have_full_constraints() || exclusive) {
Shuah Khanacc3d5c2014-02-20 12:58:15 -07001469 dev_warn(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001470 }
Mark Brown34abbd62010-02-12 10:18:08 +00001471
Liam Girdwood414c70c2008-04-30 15:59:04 +01001472 mutex_unlock(&regulator_list_mutex);
1473 return regulator;
1474
1475found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001476 if (rdev->exclusive) {
1477 regulator = ERR_PTR(-EPERM);
1478 goto out;
1479 }
1480
1481 if (exclusive && rdev->open_count) {
1482 regulator = ERR_PTR(-EBUSY);
1483 goto out;
1484 }
1485
Bjorn Andersson6261b062015-03-24 18:56:05 -07001486 ret = regulator_resolve_supply(rdev);
1487 if (ret < 0) {
1488 regulator = ERR_PTR(ret);
1489 goto out;
1490 }
1491
Liam Girdwooda5766f12008-10-10 13:22:20 +01001492 if (!try_module_get(rdev->owner))
1493 goto out;
1494
Liam Girdwood414c70c2008-04-30 15:59:04 +01001495 regulator = create_regulator(rdev, dev, id);
1496 if (regulator == NULL) {
1497 regulator = ERR_PTR(-ENOMEM);
1498 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001499 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001500 }
1501
Mark Brown5ffbd132009-07-21 16:00:23 +01001502 rdev->open_count++;
1503 if (exclusive) {
1504 rdev->exclusive = 1;
1505
1506 ret = _regulator_is_enabled(rdev);
1507 if (ret > 0)
1508 rdev->use_count = 1;
1509 else
1510 rdev->use_count = 0;
1511 }
1512
Liam Girdwooda5766f12008-10-10 13:22:20 +01001513out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001514 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001515
Liam Girdwood414c70c2008-04-30 15:59:04 +01001516 return regulator;
1517}
Mark Brown5ffbd132009-07-21 16:00:23 +01001518
1519/**
1520 * regulator_get - lookup and obtain a reference to a regulator.
1521 * @dev: device for regulator "consumer"
1522 * @id: Supply name or regulator ID.
1523 *
1524 * Returns a struct regulator corresponding to the regulator producer,
1525 * or IS_ERR() condition containing errno.
1526 *
1527 * Use of supply names configured via regulator_set_device_supply() is
1528 * strongly encouraged. It is recommended that the supply name used
1529 * should match the name used for the supply and/or the relevant
1530 * device pins in the datasheet.
1531 */
1532struct regulator *regulator_get(struct device *dev, const char *id)
1533{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001534 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001535}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001536EXPORT_SYMBOL_GPL(regulator_get);
1537
Stephen Boyd070b9072012-01-16 19:39:58 -08001538/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001539 * regulator_get_exclusive - obtain exclusive access to a regulator.
1540 * @dev: device for regulator "consumer"
1541 * @id: Supply name or regulator ID.
1542 *
1543 * Returns a struct regulator corresponding to the regulator producer,
1544 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001545 * unable to obtain this regulator while this reference is held and the
1546 * use count for the regulator will be initialised to reflect the current
1547 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001548 *
1549 * This is intended for use by consumers which cannot tolerate shared
1550 * use of the regulator such as those which need to force the
1551 * regulator off for correct operation of the hardware they are
1552 * controlling.
1553 *
1554 * Use of supply names configured via regulator_set_device_supply() is
1555 * strongly encouraged. It is recommended that the supply name used
1556 * should match the name used for the supply and/or the relevant
1557 * device pins in the datasheet.
1558 */
1559struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1560{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001561 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001562}
1563EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1564
Mark Brownde1dd9f2013-07-29 21:42:42 +01001565/**
1566 * regulator_get_optional - obtain optional access to a regulator.
1567 * @dev: device for regulator "consumer"
1568 * @id: Supply name or regulator ID.
1569 *
1570 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001571 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001572 *
1573 * This is intended for use by consumers for devices which can have
1574 * some supplies unconnected in normal use, such as some MMC devices.
1575 * It can allow the regulator core to provide stub supplies for other
1576 * supplies requested using normal regulator_get() calls without
1577 * disrupting the operation of drivers that can handle absent
1578 * supplies.
1579 *
1580 * Use of supply names configured via regulator_set_device_supply() is
1581 * strongly encouraged. It is recommended that the supply name used
1582 * should match the name used for the supply and/or the relevant
1583 * device pins in the datasheet.
1584 */
1585struct regulator *regulator_get_optional(struct device *dev, const char *id)
1586{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001587 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001588}
1589EXPORT_SYMBOL_GPL(regulator_get_optional);
1590
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301591/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001592static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001593{
1594 struct regulator_dev *rdev;
1595
1596 if (regulator == NULL || IS_ERR(regulator))
1597 return;
1598
Liam Girdwood414c70c2008-04-30 15:59:04 +01001599 rdev = regulator->rdev;
1600
Mark Brown5de70512011-06-19 13:33:16 +01001601 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001602
Liam Girdwood414c70c2008-04-30 15:59:04 +01001603 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001604 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001605 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301606 mutex_lock(&rdev->mutex);
Mark Brown5de70512011-06-19 13:33:16 +01001607 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001608 list_del(&regulator->list);
1609 kfree(regulator);
1610
Mark Brown5ffbd132009-07-21 16:00:23 +01001611 rdev->open_count--;
1612 rdev->exclusive = 0;
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301613 mutex_unlock(&rdev->mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001614
Liam Girdwood414c70c2008-04-30 15:59:04 +01001615 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001616}
1617
1618/**
1619 * regulator_put - "free" the regulator source
1620 * @regulator: regulator source
1621 *
1622 * Note: drivers must ensure that all regulator_enable calls made on this
1623 * regulator source are balanced by regulator_disable calls prior to calling
1624 * this function.
1625 */
1626void regulator_put(struct regulator *regulator)
1627{
1628 mutex_lock(&regulator_list_mutex);
1629 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001630 mutex_unlock(&regulator_list_mutex);
1631}
1632EXPORT_SYMBOL_GPL(regulator_put);
1633
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001634/**
1635 * regulator_register_supply_alias - Provide device alias for supply lookup
1636 *
1637 * @dev: device that will be given as the regulator "consumer"
1638 * @id: Supply name or regulator ID
1639 * @alias_dev: device that should be used to lookup the supply
1640 * @alias_id: Supply name or regulator ID that should be used to lookup the
1641 * supply
1642 *
1643 * All lookups for id on dev will instead be conducted for alias_id on
1644 * alias_dev.
1645 */
1646int regulator_register_supply_alias(struct device *dev, const char *id,
1647 struct device *alias_dev,
1648 const char *alias_id)
1649{
1650 struct regulator_supply_alias *map;
1651
1652 map = regulator_find_supply_alias(dev, id);
1653 if (map)
1654 return -EEXIST;
1655
1656 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1657 if (!map)
1658 return -ENOMEM;
1659
1660 map->src_dev = dev;
1661 map->src_supply = id;
1662 map->alias_dev = alias_dev;
1663 map->alias_supply = alias_id;
1664
1665 list_add(&map->list, &regulator_supply_alias_list);
1666
1667 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1668 id, dev_name(dev), alias_id, dev_name(alias_dev));
1669
1670 return 0;
1671}
1672EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1673
1674/**
1675 * regulator_unregister_supply_alias - Remove device alias
1676 *
1677 * @dev: device that will be given as the regulator "consumer"
1678 * @id: Supply name or regulator ID
1679 *
1680 * Remove a lookup alias if one exists for id on dev.
1681 */
1682void regulator_unregister_supply_alias(struct device *dev, const char *id)
1683{
1684 struct regulator_supply_alias *map;
1685
1686 map = regulator_find_supply_alias(dev, id);
1687 if (map) {
1688 list_del(&map->list);
1689 kfree(map);
1690 }
1691}
1692EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1693
1694/**
1695 * regulator_bulk_register_supply_alias - register multiple aliases
1696 *
1697 * @dev: device that will be given as the regulator "consumer"
1698 * @id: List of supply names or regulator IDs
1699 * @alias_dev: device that should be used to lookup the supply
1700 * @alias_id: List of supply names or regulator IDs that should be used to
1701 * lookup the supply
1702 * @num_id: Number of aliases to register
1703 *
1704 * @return 0 on success, an errno on failure.
1705 *
1706 * This helper function allows drivers to register several supply
1707 * aliases in one operation. If any of the aliases cannot be
1708 * registered any aliases that were registered will be removed
1709 * before returning to the caller.
1710 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001711int regulator_bulk_register_supply_alias(struct device *dev,
1712 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001713 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001714 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001715 int num_id)
1716{
1717 int i;
1718 int ret;
1719
1720 for (i = 0; i < num_id; ++i) {
1721 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1722 alias_id[i]);
1723 if (ret < 0)
1724 goto err;
1725 }
1726
1727 return 0;
1728
1729err:
1730 dev_err(dev,
1731 "Failed to create supply alias %s,%s -> %s,%s\n",
1732 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1733
1734 while (--i >= 0)
1735 regulator_unregister_supply_alias(dev, id[i]);
1736
1737 return ret;
1738}
1739EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1740
1741/**
1742 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1743 *
1744 * @dev: device that will be given as the regulator "consumer"
1745 * @id: List of supply names or regulator IDs
1746 * @num_id: Number of aliases to unregister
1747 *
1748 * This helper function allows drivers to unregister several supply
1749 * aliases in one operation.
1750 */
1751void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001752 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001753 int num_id)
1754{
1755 int i;
1756
1757 for (i = 0; i < num_id; ++i)
1758 regulator_unregister_supply_alias(dev, id[i]);
1759}
1760EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1761
1762
Kim, Milof19b00d2013-02-18 06:50:39 +00001763/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1764static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1765 const struct regulator_config *config)
1766{
1767 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001768 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001769 int ret;
1770
Russell King778b28b2014-06-29 17:55:54 +01001771 gpiod = gpio_to_desc(config->ena_gpio);
1772
Kim, Milof19b00d2013-02-18 06:50:39 +00001773 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001774 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001775 rdev_dbg(rdev, "GPIO %d is already used\n",
1776 config->ena_gpio);
1777 goto update_ena_gpio_to_rdev;
1778 }
1779 }
1780
1781 ret = gpio_request_one(config->ena_gpio,
1782 GPIOF_DIR_OUT | config->ena_gpio_flags,
1783 rdev_get_name(rdev));
1784 if (ret)
1785 return ret;
1786
1787 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1788 if (pin == NULL) {
1789 gpio_free(config->ena_gpio);
1790 return -ENOMEM;
1791 }
1792
Russell King778b28b2014-06-29 17:55:54 +01001793 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001794 pin->ena_gpio_invert = config->ena_gpio_invert;
1795 list_add(&pin->list, &regulator_ena_gpio_list);
1796
1797update_ena_gpio_to_rdev:
1798 pin->request_count++;
1799 rdev->ena_pin = pin;
1800 return 0;
1801}
1802
1803static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1804{
1805 struct regulator_enable_gpio *pin, *n;
1806
1807 if (!rdev->ena_pin)
1808 return;
1809
1810 /* Free the GPIO only in case of no use */
1811 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001812 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001813 if (pin->request_count <= 1) {
1814 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001815 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001816 list_del(&pin->list);
1817 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001818 rdev->ena_pin = NULL;
1819 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001820 } else {
1821 pin->request_count--;
1822 }
1823 }
1824 }
1825}
1826
Kim, Milo967cfb12013-02-18 06:50:48 +00001827/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001828 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1829 * @rdev: regulator_dev structure
1830 * @enable: enable GPIO at initial use?
1831 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001832 * GPIO is enabled in case of initial use. (enable_count is 0)
1833 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1834 */
1835static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1836{
1837 struct regulator_enable_gpio *pin = rdev->ena_pin;
1838
1839 if (!pin)
1840 return -EINVAL;
1841
1842 if (enable) {
1843 /* Enable GPIO at initial use */
1844 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001845 gpiod_set_value_cansleep(pin->gpiod,
1846 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001847
1848 pin->enable_count++;
1849 } else {
1850 if (pin->enable_count > 1) {
1851 pin->enable_count--;
1852 return 0;
1853 }
1854
1855 /* Disable GPIO if not used */
1856 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001857 gpiod_set_value_cansleep(pin->gpiod,
1858 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001859 pin->enable_count = 0;
1860 }
1861 }
1862
1863 return 0;
1864}
1865
Guodong Xu79fd1142014-08-13 19:33:39 +08001866/**
1867 * _regulator_enable_delay - a delay helper function
1868 * @delay: time to delay in microseconds
1869 *
1870 * Delay for the requested amount of time as per the guidelines in:
1871 *
1872 * Documentation/timers/timers-howto.txt
1873 *
1874 * The assumption here is that regulators will never be enabled in
1875 * atomic context and therefore sleeping functions can be used.
1876 */
1877static void _regulator_enable_delay(unsigned int delay)
1878{
1879 unsigned int ms = delay / 1000;
1880 unsigned int us = delay % 1000;
1881
1882 if (ms > 0) {
1883 /*
1884 * For small enough values, handle super-millisecond
1885 * delays in the usleep_range() call below.
1886 */
1887 if (ms < 20)
1888 us += ms * 1000;
1889 else
1890 msleep(ms);
1891 }
1892
1893 /*
1894 * Give the scheduler some room to coalesce with any other
1895 * wakeup sources. For delays shorter than 10 us, don't even
1896 * bother setting up high-resolution timers and just busy-
1897 * loop.
1898 */
1899 if (us >= 10)
1900 usleep_range(us, us + 100);
1901 else
1902 udelay(us);
1903}
1904
Mark Brown5c5659d2012-06-27 13:21:26 +01001905static int _regulator_do_enable(struct regulator_dev *rdev)
1906{
1907 int ret, delay;
1908
1909 /* Query before enabling in case configuration dependent. */
1910 ret = _regulator_get_enable_time(rdev);
1911 if (ret >= 0) {
1912 delay = ret;
1913 } else {
1914 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1915 delay = 0;
1916 }
1917
1918 trace_regulator_enable(rdev_get_name(rdev));
1919
Guodong Xu871f5652014-08-13 19:33:40 +08001920 if (rdev->desc->off_on_delay) {
1921 /* if needed, keep a distance of off_on_delay from last time
1922 * this regulator was disabled.
1923 */
1924 unsigned long start_jiffy = jiffies;
1925 unsigned long intended, max_delay, remaining;
1926
1927 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
1928 intended = rdev->last_off_jiffy + max_delay;
1929
1930 if (time_before(start_jiffy, intended)) {
1931 /* calc remaining jiffies to deal with one-time
1932 * timer wrapping.
1933 * in case of multiple timer wrapping, either it can be
1934 * detected by out-of-range remaining, or it cannot be
1935 * detected and we gets a panelty of
1936 * _regulator_enable_delay().
1937 */
1938 remaining = intended - start_jiffy;
1939 if (remaining <= max_delay)
1940 _regulator_enable_delay(
1941 jiffies_to_usecs(remaining));
1942 }
1943 }
1944
Kim, Milo967cfb12013-02-18 06:50:48 +00001945 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08001946 if (!rdev->ena_gpio_state) {
1947 ret = regulator_ena_gpio_ctrl(rdev, true);
1948 if (ret < 0)
1949 return ret;
1950 rdev->ena_gpio_state = 1;
1951 }
Mark Brown65f73502012-06-27 14:14:38 +01001952 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001953 ret = rdev->desc->ops->enable(rdev);
1954 if (ret < 0)
1955 return ret;
1956 } else {
1957 return -EINVAL;
1958 }
1959
1960 /* Allow the regulator to ramp; it would be useful to extend
1961 * this for bulk operations so that the regulators can ramp
1962 * together. */
1963 trace_regulator_enable_delay(rdev_get_name(rdev));
1964
Guodong Xu79fd1142014-08-13 19:33:39 +08001965 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01001966
1967 trace_regulator_enable_complete(rdev_get_name(rdev));
1968
1969 return 0;
1970}
1971
Liam Girdwood414c70c2008-04-30 15:59:04 +01001972/* locks held by regulator_enable() */
1973static int _regulator_enable(struct regulator_dev *rdev)
1974{
Mark Brown5c5659d2012-06-27 13:21:26 +01001975 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001976
Liam Girdwood414c70c2008-04-30 15:59:04 +01001977 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001978 if (rdev->constraints &&
1979 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1980 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001981
Mark Brown9a2372f2009-08-03 18:49:57 +01001982 if (rdev->use_count == 0) {
1983 /* The regulator may on if it's not switchable or left on */
1984 ret = _regulator_is_enabled(rdev);
1985 if (ret == -EINVAL || ret == 0) {
1986 if (!_regulator_can_change_status(rdev))
1987 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001988
Mark Brown5c5659d2012-06-27 13:21:26 +01001989 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001990 if (ret < 0)
1991 return ret;
1992
Linus Walleija7433cf2009-08-26 12:54:04 +02001993 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001994 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001995 return ret;
1996 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001997 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001998 }
1999
Mark Brown9a2372f2009-08-03 18:49:57 +01002000 rdev->use_count++;
2001
2002 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002003}
2004
2005/**
2006 * regulator_enable - enable regulator output
2007 * @regulator: regulator source
2008 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002009 * Request that the regulator be enabled with the regulator output at
2010 * the predefined voltage or current value. Calls to regulator_enable()
2011 * must be balanced with calls to regulator_disable().
2012 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002013 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00002014 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002015 */
2016int regulator_enable(struct regulator *regulator)
2017{
David Brownell412aec62008-11-16 11:44:46 -08002018 struct regulator_dev *rdev = regulator->rdev;
2019 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002020
Mark Brown6492bc12012-04-19 13:19:07 +01002021 if (regulator->always_on)
2022 return 0;
2023
Mark Brown3801b862011-06-09 16:22:22 +01002024 if (rdev->supply) {
2025 ret = regulator_enable(rdev->supply);
2026 if (ret != 0)
2027 return ret;
2028 }
2029
David Brownell412aec62008-11-16 11:44:46 -08002030 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08002031 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002032 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002033
Heiko Stübnerd1685e42011-10-14 18:00:29 +02002034 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002035 regulator_disable(rdev->supply);
2036
Liam Girdwood414c70c2008-04-30 15:59:04 +01002037 return ret;
2038}
2039EXPORT_SYMBOL_GPL(regulator_enable);
2040
Mark Brown5c5659d2012-06-27 13:21:26 +01002041static int _regulator_do_disable(struct regulator_dev *rdev)
2042{
2043 int ret;
2044
2045 trace_regulator_disable(rdev_get_name(rdev));
2046
Kim, Milo967cfb12013-02-18 06:50:48 +00002047 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002048 if (rdev->ena_gpio_state) {
2049 ret = regulator_ena_gpio_ctrl(rdev, false);
2050 if (ret < 0)
2051 return ret;
2052 rdev->ena_gpio_state = 0;
2053 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002054
2055 } else if (rdev->desc->ops->disable) {
2056 ret = rdev->desc->ops->disable(rdev);
2057 if (ret != 0)
2058 return ret;
2059 }
2060
Guodong Xu871f5652014-08-13 19:33:40 +08002061 /* cares about last_off_jiffy only if off_on_delay is required by
2062 * device.
2063 */
2064 if (rdev->desc->off_on_delay)
2065 rdev->last_off_jiffy = jiffies;
2066
Mark Brown5c5659d2012-06-27 13:21:26 +01002067 trace_regulator_disable_complete(rdev_get_name(rdev));
2068
Mark Brown5c5659d2012-06-27 13:21:26 +01002069 return 0;
2070}
2071
Liam Girdwood414c70c2008-04-30 15:59:04 +01002072/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002073static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002074{
2075 int ret = 0;
2076
David Brownellcd94b502009-03-11 16:43:34 -08002077 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002078 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002079 return -EIO;
2080
Liam Girdwood414c70c2008-04-30 15:59:04 +01002081 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002082 if (rdev->use_count == 1 &&
2083 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002084
2085 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01002086 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002087 ret = _notifier_call_chain(rdev,
2088 REGULATOR_EVENT_PRE_DISABLE,
2089 NULL);
2090 if (ret & NOTIFY_STOP_MASK)
2091 return -EINVAL;
2092
Mark Brown5c5659d2012-06-27 13:21:26 +01002093 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002094 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002095 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002096 _notifier_call_chain(rdev,
2097 REGULATOR_EVENT_ABORT_DISABLE,
2098 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002099 return ret;
2100 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002101 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2102 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002103 }
2104
Liam Girdwood414c70c2008-04-30 15:59:04 +01002105 rdev->use_count = 0;
2106 } else if (rdev->use_count > 1) {
2107
2108 if (rdev->constraints &&
2109 (rdev->constraints->valid_ops_mask &
2110 REGULATOR_CHANGE_DRMS))
2111 drms_uA_update(rdev);
2112
2113 rdev->use_count--;
2114 }
Mark Brown3801b862011-06-09 16:22:22 +01002115
Liam Girdwood414c70c2008-04-30 15:59:04 +01002116 return ret;
2117}
2118
2119/**
2120 * regulator_disable - disable regulator output
2121 * @regulator: regulator source
2122 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002123 * Disable the regulator output voltage or current. Calls to
2124 * regulator_enable() must be balanced with calls to
2125 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002126 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002127 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002128 * devices have it enabled, the regulator device supports disabling and
2129 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002130 */
2131int regulator_disable(struct regulator *regulator)
2132{
David Brownell412aec62008-11-16 11:44:46 -08002133 struct regulator_dev *rdev = regulator->rdev;
2134 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002135
Mark Brown6492bc12012-04-19 13:19:07 +01002136 if (regulator->always_on)
2137 return 0;
2138
David Brownell412aec62008-11-16 11:44:46 -08002139 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002140 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002141 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002142
Mark Brown3801b862011-06-09 16:22:22 +01002143 if (ret == 0 && rdev->supply)
2144 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002145
Liam Girdwood414c70c2008-04-30 15:59:04 +01002146 return ret;
2147}
2148EXPORT_SYMBOL_GPL(regulator_disable);
2149
2150/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002151static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002152{
2153 int ret = 0;
2154
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002155 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2156 REGULATOR_EVENT_PRE_DISABLE, NULL);
2157 if (ret & NOTIFY_STOP_MASK)
2158 return -EINVAL;
2159
Markus Pargmann66fda752014-02-20 17:36:04 +01002160 ret = _regulator_do_disable(rdev);
2161 if (ret < 0) {
2162 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002163 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2164 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002165 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002166 }
2167
Markus Pargmann66fda752014-02-20 17:36:04 +01002168 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2169 REGULATOR_EVENT_DISABLE, NULL);
2170
2171 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002172}
2173
2174/**
2175 * regulator_force_disable - force disable regulator output
2176 * @regulator: regulator source
2177 *
2178 * Forcibly disable the regulator output voltage or current.
2179 * NOTE: this *will* disable the regulator output even if other consumer
2180 * devices have it enabled. This should be used for situations when device
2181 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2182 */
2183int regulator_force_disable(struct regulator *regulator)
2184{
Mark Brown82d15832011-05-09 11:41:02 +02002185 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002186 int ret;
2187
Mark Brown82d15832011-05-09 11:41:02 +02002188 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002189 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002190 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002191 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002192
Mark Brown3801b862011-06-09 16:22:22 +01002193 if (rdev->supply)
2194 while (rdev->open_count--)
2195 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002196
Liam Girdwood414c70c2008-04-30 15:59:04 +01002197 return ret;
2198}
2199EXPORT_SYMBOL_GPL(regulator_force_disable);
2200
Mark Brownda07ecd2011-09-11 09:53:50 +01002201static void regulator_disable_work(struct work_struct *work)
2202{
2203 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2204 disable_work.work);
2205 int count, i, ret;
2206
2207 mutex_lock(&rdev->mutex);
2208
2209 BUG_ON(!rdev->deferred_disables);
2210
2211 count = rdev->deferred_disables;
2212 rdev->deferred_disables = 0;
2213
2214 for (i = 0; i < count; i++) {
2215 ret = _regulator_disable(rdev);
2216 if (ret != 0)
2217 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2218 }
2219
2220 mutex_unlock(&rdev->mutex);
2221
2222 if (rdev->supply) {
2223 for (i = 0; i < count; i++) {
2224 ret = regulator_disable(rdev->supply);
2225 if (ret != 0) {
2226 rdev_err(rdev,
2227 "Supply disable failed: %d\n", ret);
2228 }
2229 }
2230 }
2231}
2232
2233/**
2234 * regulator_disable_deferred - disable regulator output with delay
2235 * @regulator: regulator source
2236 * @ms: miliseconds until the regulator is disabled
2237 *
2238 * Execute regulator_disable() on the regulator after a delay. This
2239 * is intended for use with devices that require some time to quiesce.
2240 *
2241 * NOTE: this will only disable the regulator output if no other consumer
2242 * devices have it enabled, the regulator device supports disabling and
2243 * machine constraints permit this operation.
2244 */
2245int regulator_disable_deferred(struct regulator *regulator, int ms)
2246{
2247 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002248 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002249
Mark Brown6492bc12012-04-19 13:19:07 +01002250 if (regulator->always_on)
2251 return 0;
2252
Mark Brown2b5a24a2012-09-07 11:00:53 +08002253 if (!ms)
2254 return regulator_disable(regulator);
2255
Mark Brownda07ecd2011-09-11 09:53:50 +01002256 mutex_lock(&rdev->mutex);
2257 rdev->deferred_disables++;
2258 mutex_unlock(&rdev->mutex);
2259
Mark Brown070260f2013-07-18 11:52:04 +01002260 ret = queue_delayed_work(system_power_efficient_wq,
2261 &rdev->disable_work,
2262 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002263 if (ret < 0)
2264 return ret;
2265 else
2266 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002267}
2268EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2269
Liam Girdwood414c70c2008-04-30 15:59:04 +01002270static int _regulator_is_enabled(struct regulator_dev *rdev)
2271{
Mark Brown65f73502012-06-27 14:14:38 +01002272 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002273 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002274 return rdev->ena_gpio_state;
2275
Mark Brown9a7f6a42010-02-11 17:22:45 +00002276 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002277 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002278 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002279
Mark Brown93325462009-08-03 18:49:56 +01002280 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002281}
2282
2283/**
2284 * regulator_is_enabled - is the regulator output enabled
2285 * @regulator: regulator source
2286 *
David Brownell412aec62008-11-16 11:44:46 -08002287 * Returns positive if the regulator driver backing the source/client
2288 * has requested that the device be enabled, zero if it hasn't, else a
2289 * negative errno code.
2290 *
2291 * Note that the device backing this regulator handle can have multiple
2292 * users, so it might be enabled even if regulator_enable() was never
2293 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002294 */
2295int regulator_is_enabled(struct regulator *regulator)
2296{
Mark Brown93325462009-08-03 18:49:56 +01002297 int ret;
2298
Mark Brown6492bc12012-04-19 13:19:07 +01002299 if (regulator->always_on)
2300 return 1;
2301
Mark Brown93325462009-08-03 18:49:56 +01002302 mutex_lock(&regulator->rdev->mutex);
2303 ret = _regulator_is_enabled(regulator->rdev);
2304 mutex_unlock(&regulator->rdev->mutex);
2305
2306 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002307}
2308EXPORT_SYMBOL_GPL(regulator_is_enabled);
2309
2310/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002311 * regulator_can_change_voltage - check if regulator can change voltage
2312 * @regulator: regulator source
2313 *
2314 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002315 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002316 * or dummy regulators and disabling voltage change logic in the client
2317 * driver.
2318 */
2319int regulator_can_change_voltage(struct regulator *regulator)
2320{
2321 struct regulator_dev *rdev = regulator->rdev;
2322
2323 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002324 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2325 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2326 return 1;
2327
2328 if (rdev->desc->continuous_voltage_range &&
2329 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2330 rdev->constraints->min_uV != rdev->constraints->max_uV)
2331 return 1;
2332 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002333
2334 return 0;
2335}
2336EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2337
2338/**
David Brownell4367cfd2009-02-26 11:48:36 -08002339 * regulator_count_voltages - count regulator_list_voltage() selectors
2340 * @regulator: regulator source
2341 *
2342 * Returns number of selectors, or negative errno. Selectors are
2343 * numbered starting at zero, and typically correspond to bitfields
2344 * in hardware registers.
2345 */
2346int regulator_count_voltages(struct regulator *regulator)
2347{
2348 struct regulator_dev *rdev = regulator->rdev;
2349
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002350 if (rdev->desc->n_voltages)
2351 return rdev->desc->n_voltages;
2352
2353 if (!rdev->supply)
2354 return -EINVAL;
2355
2356 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002357}
2358EXPORT_SYMBOL_GPL(regulator_count_voltages);
2359
2360/**
2361 * regulator_list_voltage - enumerate supported voltages
2362 * @regulator: regulator source
2363 * @selector: identify voltage to list
2364 * Context: can sleep
2365 *
2366 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002367 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002368 * negative errno.
2369 */
2370int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2371{
Guodong Xu272e2312014-08-13 19:33:38 +08002372 struct regulator_dev *rdev = regulator->rdev;
2373 const struct regulator_ops *ops = rdev->desc->ops;
2374 int ret;
David Brownell4367cfd2009-02-26 11:48:36 -08002375
Guennadi Liakhovetskif4460432013-11-13 12:33:00 +01002376 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2377 return rdev->desc->fixed_uV;
2378
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002379 if (ops->list_voltage) {
2380 if (selector >= rdev->desc->n_voltages)
2381 return -EINVAL;
2382 mutex_lock(&rdev->mutex);
2383 ret = ops->list_voltage(rdev, selector);
2384 mutex_unlock(&rdev->mutex);
2385 } else if (rdev->supply) {
2386 ret = regulator_list_voltage(rdev->supply, selector);
2387 } else {
David Brownell4367cfd2009-02-26 11:48:36 -08002388 return -EINVAL;
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002389 }
David Brownell4367cfd2009-02-26 11:48:36 -08002390
2391 if (ret > 0) {
2392 if (ret < rdev->constraints->min_uV)
2393 ret = 0;
2394 else if (ret > rdev->constraints->max_uV)
2395 ret = 0;
2396 }
2397
2398 return ret;
2399}
2400EXPORT_SYMBOL_GPL(regulator_list_voltage);
2401
2402/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002403 * regulator_get_regmap - get the regulator's register map
2404 * @regulator: regulator source
2405 *
2406 * Returns the register map for the given regulator, or an ERR_PTR value
2407 * if the regulator doesn't use regmap.
2408 */
2409struct regmap *regulator_get_regmap(struct regulator *regulator)
2410{
2411 struct regmap *map = regulator->rdev->regmap;
2412
2413 return map ? map : ERR_PTR(-EOPNOTSUPP);
2414}
2415
2416/**
2417 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2418 * @regulator: regulator source
2419 * @vsel_reg: voltage selector register, output parameter
2420 * @vsel_mask: mask for voltage selector bitfield, output parameter
2421 *
2422 * Returns the hardware register offset and bitmask used for setting the
2423 * regulator voltage. This might be useful when configuring voltage-scaling
2424 * hardware or firmware that can make I2C requests behind the kernel's back,
2425 * for example.
2426 *
2427 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2428 * and 0 is returned, otherwise a negative errno is returned.
2429 */
2430int regulator_get_hardware_vsel_register(struct regulator *regulator,
2431 unsigned *vsel_reg,
2432 unsigned *vsel_mask)
2433{
Guodong Xu39f54602014-08-19 18:07:41 +08002434 struct regulator_dev *rdev = regulator->rdev;
2435 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002436
2437 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2438 return -EOPNOTSUPP;
2439
2440 *vsel_reg = rdev->desc->vsel_reg;
2441 *vsel_mask = rdev->desc->vsel_mask;
2442
2443 return 0;
2444}
2445EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2446
2447/**
2448 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2449 * @regulator: regulator source
2450 * @selector: identify voltage to list
2451 *
2452 * Converts the selector to a hardware-specific voltage selector that can be
2453 * directly written to the regulator registers. The address of the voltage
2454 * register can be determined by calling @regulator_get_hardware_vsel_register.
2455 *
2456 * On error a negative errno is returned.
2457 */
2458int regulator_list_hardware_vsel(struct regulator *regulator,
2459 unsigned selector)
2460{
Guodong Xu39f54602014-08-19 18:07:41 +08002461 struct regulator_dev *rdev = regulator->rdev;
2462 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002463
2464 if (selector >= rdev->desc->n_voltages)
2465 return -EINVAL;
2466 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2467 return -EOPNOTSUPP;
2468
2469 return selector;
2470}
2471EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2472
2473/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002474 * regulator_get_linear_step - return the voltage step size between VSEL values
2475 * @regulator: regulator source
2476 *
2477 * Returns the voltage step size between VSEL values for linear
2478 * regulators, or return 0 if the regulator isn't a linear regulator.
2479 */
2480unsigned int regulator_get_linear_step(struct regulator *regulator)
2481{
2482 struct regulator_dev *rdev = regulator->rdev;
2483
2484 return rdev->desc->uV_step;
2485}
2486EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2487
2488/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002489 * regulator_is_supported_voltage - check if a voltage range can be supported
2490 *
2491 * @regulator: Regulator to check.
2492 * @min_uV: Minimum required voltage in uV.
2493 * @max_uV: Maximum required voltage in uV.
2494 *
2495 * Returns a boolean or a negative error code.
2496 */
2497int regulator_is_supported_voltage(struct regulator *regulator,
2498 int min_uV, int max_uV)
2499{
Mark Brownc5f39392012-07-02 15:00:18 +01002500 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002501 int i, voltages, ret;
2502
Mark Brownc5f39392012-07-02 15:00:18 +01002503 /* If we can't change voltage check the current voltage */
2504 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2505 ret = regulator_get_voltage(regulator);
2506 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002507 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002508 else
2509 return ret;
2510 }
2511
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002512 /* Any voltage within constrains range is fine? */
2513 if (rdev->desc->continuous_voltage_range)
2514 return min_uV >= rdev->constraints->min_uV &&
2515 max_uV <= rdev->constraints->max_uV;
2516
Mark Browna7a1ad92009-07-21 16:00:24 +01002517 ret = regulator_count_voltages(regulator);
2518 if (ret < 0)
2519 return ret;
2520 voltages = ret;
2521
2522 for (i = 0; i < voltages; i++) {
2523 ret = regulator_list_voltage(regulator, i);
2524
2525 if (ret >= min_uV && ret <= max_uV)
2526 return 1;
2527 }
2528
2529 return 0;
2530}
Mark Browna398eaa2011-12-28 12:48:45 +00002531EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002532
Heiko Stübner71795692014-08-28 12:36:04 -07002533static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2534 int min_uV, int max_uV,
2535 unsigned *selector)
2536{
2537 struct pre_voltage_change_data data;
2538 int ret;
2539
2540 data.old_uV = _regulator_get_voltage(rdev);
2541 data.min_uV = min_uV;
2542 data.max_uV = max_uV;
2543 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2544 &data);
2545 if (ret & NOTIFY_STOP_MASK)
2546 return -EINVAL;
2547
2548 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2549 if (ret >= 0)
2550 return ret;
2551
2552 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2553 (void *)data.old_uV);
2554
2555 return ret;
2556}
2557
2558static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2559 int uV, unsigned selector)
2560{
2561 struct pre_voltage_change_data data;
2562 int ret;
2563
2564 data.old_uV = _regulator_get_voltage(rdev);
2565 data.min_uV = uV;
2566 data.max_uV = uV;
2567 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2568 &data);
2569 if (ret & NOTIFY_STOP_MASK)
2570 return -EINVAL;
2571
2572 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2573 if (ret >= 0)
2574 return ret;
2575
2576 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2577 (void *)data.old_uV);
2578
2579 return ret;
2580}
2581
Mark Brown75790252010-12-12 14:25:50 +00002582static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2583 int min_uV, int max_uV)
2584{
2585 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002586 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002587 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002588 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002589 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002590
2591 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2592
Mark Brownbf5892a2011-05-08 22:13:37 +01002593 min_uV += rdev->constraints->uV_offset;
2594 max_uV += rdev->constraints->uV_offset;
2595
Axel Lineba41a52012-04-04 10:32:10 +08002596 /*
2597 * If we can't obtain the old selector there is not enough
2598 * info to call set_voltage_time_sel().
2599 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002600 if (_regulator_is_enabled(rdev) &&
2601 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002602 rdev->desc->ops->get_voltage_sel) {
2603 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2604 if (old_selector < 0)
2605 return old_selector;
2606 }
2607
Mark Brown75790252010-12-12 14:25:50 +00002608 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002609 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2610 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002611
2612 if (ret >= 0) {
2613 if (rdev->desc->ops->list_voltage)
2614 best_val = rdev->desc->ops->list_voltage(rdev,
2615 selector);
2616 else
2617 best_val = _regulator_get_voltage(rdev);
2618 }
2619
Mark Browne8eef822010-12-12 14:36:17 +00002620 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002621 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002622 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2623 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002624 } else {
2625 if (rdev->desc->ops->list_voltage ==
2626 regulator_list_voltage_linear)
2627 ret = regulator_map_voltage_linear(rdev,
2628 min_uV, max_uV);
Axel Lin36698622014-05-24 11:10:43 +08002629 else if (rdev->desc->ops->list_voltage ==
2630 regulator_list_voltage_linear_range)
2631 ret = regulator_map_voltage_linear_range(rdev,
2632 min_uV, max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002633 else
2634 ret = regulator_map_voltage_iterate(rdev,
2635 min_uV, max_uV);
2636 }
Mark Browne8eef822010-12-12 14:36:17 +00002637
Mark Browne843fc42012-05-09 21:16:06 +01002638 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002639 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2640 if (min_uV <= best_val && max_uV >= best_val) {
2641 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002642 if (old_selector == selector)
2643 ret = 0;
2644 else
Heiko Stübner71795692014-08-28 12:36:04 -07002645 ret = _regulator_call_set_voltage_sel(
2646 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002647 } else {
2648 ret = -EINVAL;
2649 }
Mark Browne8eef822010-12-12 14:36:17 +00002650 }
Mark Brown75790252010-12-12 14:25:50 +00002651 } else {
2652 ret = -EINVAL;
2653 }
2654
Axel Lineba41a52012-04-04 10:32:10 +08002655 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302656 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2657 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002658
2659 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2660 old_selector, selector);
2661 if (delay < 0) {
2662 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2663 delay);
2664 delay = 0;
2665 }
Axel Lineba41a52012-04-04 10:32:10 +08002666
Philip Rakity8b96de32012-06-14 15:07:56 -07002667 /* Insert any necessary delays */
2668 if (delay >= 1000) {
2669 mdelay(delay / 1000);
2670 udelay(delay % 1000);
2671 } else if (delay) {
2672 udelay(delay);
2673 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002674 }
2675
Axel Lin2f6c7972012-08-06 23:44:19 +08002676 if (ret == 0 && best_val >= 0) {
2677 unsigned long data = best_val;
2678
Mark Brownded06a52010-12-16 13:59:10 +00002679 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002680 (void *)data);
2681 }
Mark Brownded06a52010-12-16 13:59:10 +00002682
Axel Lineba41a52012-04-04 10:32:10 +08002683 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002684
2685 return ret;
2686}
2687
Mark Browna7a1ad92009-07-21 16:00:24 +01002688/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002689 * regulator_set_voltage - set regulator output voltage
2690 * @regulator: regulator source
2691 * @min_uV: Minimum required voltage in uV
2692 * @max_uV: Maximum acceptable voltage in uV
2693 *
2694 * Sets a voltage regulator to the desired output voltage. This can be set
2695 * during any regulator state. IOW, regulator can be disabled or enabled.
2696 *
2697 * If the regulator is enabled then the voltage will change to the new value
2698 * immediately otherwise if the regulator is disabled the regulator will
2699 * output at the new voltage when enabled.
2700 *
2701 * NOTE: If the regulator is shared between several devices then the lowest
2702 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002703 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002704 * calling this function otherwise this call will fail.
2705 */
2706int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2707{
2708 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002709 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002710 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002711 int current_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002712
2713 mutex_lock(&rdev->mutex);
2714
Mark Brown95a3c232010-12-16 15:49:37 +00002715 /* If we're setting the same range as last time the change
2716 * should be a noop (some cpufreq implementations use the same
2717 * voltage for multiple frequencies, for example).
2718 */
2719 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2720 goto out;
2721
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002722 /* If we're trying to set a range that overlaps the current voltage,
2723 * return succesfully even though the regulator does not support
2724 * changing the voltage.
2725 */
2726 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2727 current_uV = _regulator_get_voltage(rdev);
2728 if (min_uV <= current_uV && current_uV <= max_uV) {
2729 regulator->min_uV = min_uV;
2730 regulator->max_uV = max_uV;
2731 goto out;
2732 }
2733 }
2734
Liam Girdwood414c70c2008-04-30 15:59:04 +01002735 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002736 if (!rdev->desc->ops->set_voltage &&
2737 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002738 ret = -EINVAL;
2739 goto out;
2740 }
2741
2742 /* constraints check */
2743 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2744 if (ret < 0)
2745 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002746
Paolo Pisati92d7a552012-12-13 10:13:00 +01002747 /* restore original values in case of error */
2748 old_min_uV = regulator->min_uV;
2749 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002750 regulator->min_uV = min_uV;
2751 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002752
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002753 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2754 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002755 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002756
Mark Brown75790252010-12-12 14:25:50 +00002757 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002758 if (ret < 0)
2759 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002760
Liam Girdwood414c70c2008-04-30 15:59:04 +01002761out:
2762 mutex_unlock(&rdev->mutex);
2763 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002764out2:
2765 regulator->min_uV = old_min_uV;
2766 regulator->max_uV = old_max_uV;
2767 mutex_unlock(&rdev->mutex);
2768 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002769}
2770EXPORT_SYMBOL_GPL(regulator_set_voltage);
2771
Mark Brown606a2562010-12-16 15:49:36 +00002772/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002773 * regulator_set_voltage_time - get raise/fall time
2774 * @regulator: regulator source
2775 * @old_uV: starting voltage in microvolts
2776 * @new_uV: target voltage in microvolts
2777 *
2778 * Provided with the starting and ending voltage, this function attempts to
2779 * calculate the time in microseconds required to rise or fall to this new
2780 * voltage.
2781 */
2782int regulator_set_voltage_time(struct regulator *regulator,
2783 int old_uV, int new_uV)
2784{
Guodong Xu272e2312014-08-13 19:33:38 +08002785 struct regulator_dev *rdev = regulator->rdev;
2786 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002787 int old_sel = -1;
2788 int new_sel = -1;
2789 int voltage;
2790 int i;
2791
2792 /* Currently requires operations to do this */
2793 if (!ops->list_voltage || !ops->set_voltage_time_sel
2794 || !rdev->desc->n_voltages)
2795 return -EINVAL;
2796
2797 for (i = 0; i < rdev->desc->n_voltages; i++) {
2798 /* We only look for exact voltage matches here */
2799 voltage = regulator_list_voltage(regulator, i);
2800 if (voltage < 0)
2801 return -EINVAL;
2802 if (voltage == 0)
2803 continue;
2804 if (voltage == old_uV)
2805 old_sel = i;
2806 if (voltage == new_uV)
2807 new_sel = i;
2808 }
2809
2810 if (old_sel < 0 || new_sel < 0)
2811 return -EINVAL;
2812
2813 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2814}
2815EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2816
2817/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002818 * regulator_set_voltage_time_sel - get raise/fall time
2819 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302820 * @old_selector: selector for starting voltage
2821 * @new_selector: selector for target voltage
2822 *
2823 * Provided with the starting and target voltage selectors, this function
2824 * returns time in microseconds required to rise or fall to this new voltage
2825 *
Axel Linf11d08c2012-06-19 09:38:45 +08002826 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002827 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302828 */
2829int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2830 unsigned int old_selector,
2831 unsigned int new_selector)
2832{
Axel Lin398715a2012-06-18 10:11:28 +08002833 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002834 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002835
2836 if (rdev->constraints->ramp_delay)
2837 ramp_delay = rdev->constraints->ramp_delay;
2838 else if (rdev->desc->ramp_delay)
2839 ramp_delay = rdev->desc->ramp_delay;
2840
2841 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302842 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002843 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302844 }
Axel Lin398715a2012-06-18 10:11:28 +08002845
Axel Linf11d08c2012-06-19 09:38:45 +08002846 /* sanity check */
2847 if (!rdev->desc->ops->list_voltage)
2848 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002849
Axel Linf11d08c2012-06-19 09:38:45 +08002850 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2851 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2852
2853 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302854}
Mark Brownb19dbf72012-06-23 11:34:20 +01002855EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302856
2857/**
Mark Brown606a2562010-12-16 15:49:36 +00002858 * regulator_sync_voltage - re-apply last regulator output voltage
2859 * @regulator: regulator source
2860 *
2861 * Re-apply the last configured voltage. This is intended to be used
2862 * where some external control source the consumer is cooperating with
2863 * has caused the configured voltage to change.
2864 */
2865int regulator_sync_voltage(struct regulator *regulator)
2866{
2867 struct regulator_dev *rdev = regulator->rdev;
2868 int ret, min_uV, max_uV;
2869
2870 mutex_lock(&rdev->mutex);
2871
2872 if (!rdev->desc->ops->set_voltage &&
2873 !rdev->desc->ops->set_voltage_sel) {
2874 ret = -EINVAL;
2875 goto out;
2876 }
2877
2878 /* This is only going to work if we've had a voltage configured. */
2879 if (!regulator->min_uV && !regulator->max_uV) {
2880 ret = -EINVAL;
2881 goto out;
2882 }
2883
2884 min_uV = regulator->min_uV;
2885 max_uV = regulator->max_uV;
2886
2887 /* This should be a paranoia check... */
2888 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2889 if (ret < 0)
2890 goto out;
2891
2892 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2893 if (ret < 0)
2894 goto out;
2895
2896 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2897
2898out:
2899 mutex_unlock(&rdev->mutex);
2900 return ret;
2901}
2902EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2903
Liam Girdwood414c70c2008-04-30 15:59:04 +01002904static int _regulator_get_voltage(struct regulator_dev *rdev)
2905{
Mark Brownbf5892a2011-05-08 22:13:37 +01002906 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002907
2908 if (rdev->desc->ops->get_voltage_sel) {
2909 sel = rdev->desc->ops->get_voltage_sel(rdev);
2910 if (sel < 0)
2911 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002912 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002913 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002914 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002915 } else if (rdev->desc->ops->list_voltage) {
2916 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05302917 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
2918 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02002919 } else if (rdev->supply) {
2920 ret = regulator_get_voltage(rdev->supply);
Axel Lincb220d12011-05-23 20:08:10 +08002921 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002922 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002923 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002924
Axel Lincb220d12011-05-23 20:08:10 +08002925 if (ret < 0)
2926 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002927 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002928}
2929
2930/**
2931 * regulator_get_voltage - get regulator output voltage
2932 * @regulator: regulator source
2933 *
2934 * This returns the current regulator voltage in uV.
2935 *
2936 * NOTE: If the regulator is disabled it will return the voltage value. This
2937 * function should not be used to determine regulator state.
2938 */
2939int regulator_get_voltage(struct regulator *regulator)
2940{
2941 int ret;
2942
2943 mutex_lock(&regulator->rdev->mutex);
2944
2945 ret = _regulator_get_voltage(regulator->rdev);
2946
2947 mutex_unlock(&regulator->rdev->mutex);
2948
2949 return ret;
2950}
2951EXPORT_SYMBOL_GPL(regulator_get_voltage);
2952
2953/**
2954 * regulator_set_current_limit - set regulator output current limit
2955 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002956 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002957 * @max_uA: Maximum supported current in uA
2958 *
2959 * Sets current sink to the desired output current. This can be set during
2960 * any regulator state. IOW, regulator can be disabled or enabled.
2961 *
2962 * If the regulator is enabled then the current will change to the new value
2963 * immediately otherwise if the regulator is disabled the regulator will
2964 * output at the new current when enabled.
2965 *
2966 * NOTE: Regulator system constraints must be set for this regulator before
2967 * calling this function otherwise this call will fail.
2968 */
2969int regulator_set_current_limit(struct regulator *regulator,
2970 int min_uA, int max_uA)
2971{
2972 struct regulator_dev *rdev = regulator->rdev;
2973 int ret;
2974
2975 mutex_lock(&rdev->mutex);
2976
2977 /* sanity check */
2978 if (!rdev->desc->ops->set_current_limit) {
2979 ret = -EINVAL;
2980 goto out;
2981 }
2982
2983 /* constraints check */
2984 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2985 if (ret < 0)
2986 goto out;
2987
2988 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2989out:
2990 mutex_unlock(&rdev->mutex);
2991 return ret;
2992}
2993EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2994
2995static int _regulator_get_current_limit(struct regulator_dev *rdev)
2996{
2997 int ret;
2998
2999 mutex_lock(&rdev->mutex);
3000
3001 /* sanity check */
3002 if (!rdev->desc->ops->get_current_limit) {
3003 ret = -EINVAL;
3004 goto out;
3005 }
3006
3007 ret = rdev->desc->ops->get_current_limit(rdev);
3008out:
3009 mutex_unlock(&rdev->mutex);
3010 return ret;
3011}
3012
3013/**
3014 * regulator_get_current_limit - get regulator output current
3015 * @regulator: regulator source
3016 *
3017 * This returns the current supplied by the specified current sink in uA.
3018 *
3019 * NOTE: If the regulator is disabled it will return the current value. This
3020 * function should not be used to determine regulator state.
3021 */
3022int regulator_get_current_limit(struct regulator *regulator)
3023{
3024 return _regulator_get_current_limit(regulator->rdev);
3025}
3026EXPORT_SYMBOL_GPL(regulator_get_current_limit);
3027
3028/**
3029 * regulator_set_mode - set regulator operating mode
3030 * @regulator: regulator source
3031 * @mode: operating mode - one of the REGULATOR_MODE constants
3032 *
3033 * Set regulator operating mode to increase regulator efficiency or improve
3034 * regulation performance.
3035 *
3036 * NOTE: Regulator system constraints must be set for this regulator before
3037 * calling this function otherwise this call will fail.
3038 */
3039int regulator_set_mode(struct regulator *regulator, unsigned int mode)
3040{
3041 struct regulator_dev *rdev = regulator->rdev;
3042 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303043 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003044
3045 mutex_lock(&rdev->mutex);
3046
3047 /* sanity check */
3048 if (!rdev->desc->ops->set_mode) {
3049 ret = -EINVAL;
3050 goto out;
3051 }
3052
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303053 /* return if the same mode is requested */
3054 if (rdev->desc->ops->get_mode) {
3055 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3056 if (regulator_curr_mode == mode) {
3057 ret = 0;
3058 goto out;
3059 }
3060 }
3061
Liam Girdwood414c70c2008-04-30 15:59:04 +01003062 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003063 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003064 if (ret < 0)
3065 goto out;
3066
3067 ret = rdev->desc->ops->set_mode(rdev, mode);
3068out:
3069 mutex_unlock(&rdev->mutex);
3070 return ret;
3071}
3072EXPORT_SYMBOL_GPL(regulator_set_mode);
3073
3074static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3075{
3076 int ret;
3077
3078 mutex_lock(&rdev->mutex);
3079
3080 /* sanity check */
3081 if (!rdev->desc->ops->get_mode) {
3082 ret = -EINVAL;
3083 goto out;
3084 }
3085
3086 ret = rdev->desc->ops->get_mode(rdev);
3087out:
3088 mutex_unlock(&rdev->mutex);
3089 return ret;
3090}
3091
3092/**
3093 * regulator_get_mode - get regulator operating mode
3094 * @regulator: regulator source
3095 *
3096 * Get the current regulator operating mode.
3097 */
3098unsigned int regulator_get_mode(struct regulator *regulator)
3099{
3100 return _regulator_get_mode(regulator->rdev);
3101}
3102EXPORT_SYMBOL_GPL(regulator_get_mode);
3103
3104/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003105 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003106 * @regulator: regulator source
3107 * @uA_load: load current
3108 *
3109 * Notifies the regulator core of a new device load. This is then used by
3110 * DRMS (if enabled by constraints) to set the most efficient regulator
3111 * operating mode for the new regulator loading.
3112 *
3113 * Consumer devices notify their supply regulator of the maximum power
3114 * they will require (can be taken from device datasheet in the power
3115 * consumption tables) when they change operational status and hence power
3116 * state. Examples of operational state changes that can affect power
3117 * consumption are :-
3118 *
3119 * o Device is opened / closed.
3120 * o Device I/O is about to begin or has just finished.
3121 * o Device is idling in between work.
3122 *
3123 * This information is also exported via sysfs to userspace.
3124 *
3125 * DRMS will sum the total requested load on the regulator and change
3126 * to the most efficient operating mode if platform constraints allow.
3127 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003128 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003129 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003130int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003131{
3132 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003133 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003134
Liam Girdwood414c70c2008-04-30 15:59:04 +01003135 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003136 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003137 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003138 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003139
Liam Girdwood414c70c2008-04-30 15:59:04 +01003140 return ret;
3141}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003142EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003143
3144/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003145 * regulator_allow_bypass - allow the regulator to go into bypass mode
3146 *
3147 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003148 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003149 *
3150 * Allow the regulator to go into bypass mode if all other consumers
3151 * for the regulator also enable bypass mode and the machine
3152 * constraints allow this. Bypass mode means that the regulator is
3153 * simply passing the input directly to the output with no regulation.
3154 */
3155int regulator_allow_bypass(struct regulator *regulator, bool enable)
3156{
3157 struct regulator_dev *rdev = regulator->rdev;
3158 int ret = 0;
3159
3160 if (!rdev->desc->ops->set_bypass)
3161 return 0;
3162
3163 if (rdev->constraints &&
3164 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3165 return 0;
3166
3167 mutex_lock(&rdev->mutex);
3168
3169 if (enable && !regulator->bypass) {
3170 rdev->bypass_count++;
3171
3172 if (rdev->bypass_count == rdev->open_count) {
3173 ret = rdev->desc->ops->set_bypass(rdev, enable);
3174 if (ret != 0)
3175 rdev->bypass_count--;
3176 }
3177
3178 } else if (!enable && regulator->bypass) {
3179 rdev->bypass_count--;
3180
3181 if (rdev->bypass_count != rdev->open_count) {
3182 ret = rdev->desc->ops->set_bypass(rdev, enable);
3183 if (ret != 0)
3184 rdev->bypass_count++;
3185 }
3186 }
3187
3188 if (ret == 0)
3189 regulator->bypass = enable;
3190
3191 mutex_unlock(&rdev->mutex);
3192
3193 return ret;
3194}
3195EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3196
3197/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003198 * regulator_register_notifier - register regulator event notifier
3199 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003200 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003201 *
3202 * Register notifier block to receive regulator events.
3203 */
3204int regulator_register_notifier(struct regulator *regulator,
3205 struct notifier_block *nb)
3206{
3207 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3208 nb);
3209}
3210EXPORT_SYMBOL_GPL(regulator_register_notifier);
3211
3212/**
3213 * regulator_unregister_notifier - unregister regulator event notifier
3214 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003215 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003216 *
3217 * Unregister regulator event notifier block.
3218 */
3219int regulator_unregister_notifier(struct regulator *regulator,
3220 struct notifier_block *nb)
3221{
3222 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3223 nb);
3224}
3225EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3226
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003227/* notify regulator consumers and downstream regulator consumers.
3228 * Note mutex must be held by caller.
3229 */
Heiko Stübner71795692014-08-28 12:36:04 -07003230static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003231 unsigned long event, void *data)
3232{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003233 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003234 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003235}
3236
3237/**
3238 * regulator_bulk_get - get multiple regulator consumers
3239 *
3240 * @dev: Device to supply
3241 * @num_consumers: Number of consumers to register
3242 * @consumers: Configuration of consumers; clients are stored here.
3243 *
3244 * @return 0 on success, an errno on failure.
3245 *
3246 * This helper function allows drivers to get several regulator
3247 * consumers in one operation. If any of the regulators cannot be
3248 * acquired then any regulators that were allocated will be freed
3249 * before returning to the caller.
3250 */
3251int regulator_bulk_get(struct device *dev, int num_consumers,
3252 struct regulator_bulk_data *consumers)
3253{
3254 int i;
3255 int ret;
3256
3257 for (i = 0; i < num_consumers; i++)
3258 consumers[i].consumer = NULL;
3259
3260 for (i = 0; i < num_consumers; i++) {
3261 consumers[i].consumer = regulator_get(dev,
3262 consumers[i].supply);
3263 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003264 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003265 dev_err(dev, "Failed to get supply '%s': %d\n",
3266 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003267 consumers[i].consumer = NULL;
3268 goto err;
3269 }
3270 }
3271
3272 return 0;
3273
3274err:
Axel Linb29c7692012-02-20 10:32:16 +08003275 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003276 regulator_put(consumers[i].consumer);
3277
3278 return ret;
3279}
3280EXPORT_SYMBOL_GPL(regulator_bulk_get);
3281
Mark Brownf21e0e82011-05-24 08:12:40 +08003282static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3283{
3284 struct regulator_bulk_data *bulk = data;
3285
3286 bulk->ret = regulator_enable(bulk->consumer);
3287}
3288
Liam Girdwood414c70c2008-04-30 15:59:04 +01003289/**
3290 * regulator_bulk_enable - enable multiple regulator consumers
3291 *
3292 * @num_consumers: Number of consumers
3293 * @consumers: Consumer data; clients are stored here.
3294 * @return 0 on success, an errno on failure
3295 *
3296 * This convenience API allows consumers to enable multiple regulator
3297 * clients in a single API call. If any consumers cannot be enabled
3298 * then any others that were enabled will be disabled again prior to
3299 * return.
3300 */
3301int regulator_bulk_enable(int num_consumers,
3302 struct regulator_bulk_data *consumers)
3303{
Dan Williams2955b472012-07-09 19:33:25 -07003304 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003305 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003306 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003307
Mark Brown6492bc12012-04-19 13:19:07 +01003308 for (i = 0; i < num_consumers; i++) {
3309 if (consumers[i].consumer->always_on)
3310 consumers[i].ret = 0;
3311 else
3312 async_schedule_domain(regulator_bulk_enable_async,
3313 &consumers[i], &async_domain);
3314 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003315
3316 async_synchronize_full_domain(&async_domain);
3317
3318 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003319 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003320 if (consumers[i].ret != 0) {
3321 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003322 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003323 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003324 }
3325
3326 return 0;
3327
3328err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003329 for (i = 0; i < num_consumers; i++) {
3330 if (consumers[i].ret < 0)
3331 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3332 consumers[i].ret);
3333 else
3334 regulator_disable(consumers[i].consumer);
3335 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003336
3337 return ret;
3338}
3339EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3340
3341/**
3342 * regulator_bulk_disable - disable multiple regulator consumers
3343 *
3344 * @num_consumers: Number of consumers
3345 * @consumers: Consumer data; clients are stored here.
3346 * @return 0 on success, an errno on failure
3347 *
3348 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003349 * clients in a single API call. If any consumers cannot be disabled
3350 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003351 * return.
3352 */
3353int regulator_bulk_disable(int num_consumers,
3354 struct regulator_bulk_data *consumers)
3355{
3356 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003357 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003358
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003359 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003360 ret = regulator_disable(consumers[i].consumer);
3361 if (ret != 0)
3362 goto err;
3363 }
3364
3365 return 0;
3366
3367err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003368 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003369 for (++i; i < num_consumers; ++i) {
3370 r = regulator_enable(consumers[i].consumer);
3371 if (r != 0)
3372 pr_err("Failed to reename %s: %d\n",
3373 consumers[i].supply, r);
3374 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003375
3376 return ret;
3377}
3378EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3379
3380/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003381 * regulator_bulk_force_disable - force disable multiple regulator consumers
3382 *
3383 * @num_consumers: Number of consumers
3384 * @consumers: Consumer data; clients are stored here.
3385 * @return 0 on success, an errno on failure
3386 *
3387 * This convenience API allows consumers to forcibly disable multiple regulator
3388 * clients in a single API call.
3389 * NOTE: This should be used for situations when device damage will
3390 * likely occur if the regulators are not disabled (e.g. over temp).
3391 * Although regulator_force_disable function call for some consumers can
3392 * return error numbers, the function is called for all consumers.
3393 */
3394int regulator_bulk_force_disable(int num_consumers,
3395 struct regulator_bulk_data *consumers)
3396{
3397 int i;
3398 int ret;
3399
3400 for (i = 0; i < num_consumers; i++)
3401 consumers[i].ret =
3402 regulator_force_disable(consumers[i].consumer);
3403
3404 for (i = 0; i < num_consumers; i++) {
3405 if (consumers[i].ret != 0) {
3406 ret = consumers[i].ret;
3407 goto out;
3408 }
3409 }
3410
3411 return 0;
3412out:
3413 return ret;
3414}
3415EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3416
3417/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003418 * regulator_bulk_free - free multiple regulator consumers
3419 *
3420 * @num_consumers: Number of consumers
3421 * @consumers: Consumer data; clients are stored here.
3422 *
3423 * This convenience API allows consumers to free multiple regulator
3424 * clients in a single API call.
3425 */
3426void regulator_bulk_free(int num_consumers,
3427 struct regulator_bulk_data *consumers)
3428{
3429 int i;
3430
3431 for (i = 0; i < num_consumers; i++) {
3432 regulator_put(consumers[i].consumer);
3433 consumers[i].consumer = NULL;
3434 }
3435}
3436EXPORT_SYMBOL_GPL(regulator_bulk_free);
3437
3438/**
3439 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003440 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003441 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003442 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003443 *
3444 * Called by regulator drivers to notify clients a regulator event has
3445 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003446 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003447 */
3448int regulator_notifier_call_chain(struct regulator_dev *rdev,
3449 unsigned long event, void *data)
3450{
3451 _notifier_call_chain(rdev, event, data);
3452 return NOTIFY_DONE;
3453
3454}
3455EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3456
Mark Brownbe721972009-08-04 20:09:52 +02003457/**
3458 * regulator_mode_to_status - convert a regulator mode into a status
3459 *
3460 * @mode: Mode to convert
3461 *
3462 * Convert a regulator mode into a status.
3463 */
3464int regulator_mode_to_status(unsigned int mode)
3465{
3466 switch (mode) {
3467 case REGULATOR_MODE_FAST:
3468 return REGULATOR_STATUS_FAST;
3469 case REGULATOR_MODE_NORMAL:
3470 return REGULATOR_STATUS_NORMAL;
3471 case REGULATOR_MODE_IDLE:
3472 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003473 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003474 return REGULATOR_STATUS_STANDBY;
3475 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003476 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003477 }
3478}
3479EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3480
Takashi Iwai39f802d2015-01-30 20:29:31 +01003481static struct attribute *regulator_dev_attrs[] = {
3482 &dev_attr_name.attr,
3483 &dev_attr_num_users.attr,
3484 &dev_attr_type.attr,
3485 &dev_attr_microvolts.attr,
3486 &dev_attr_microamps.attr,
3487 &dev_attr_opmode.attr,
3488 &dev_attr_state.attr,
3489 &dev_attr_status.attr,
3490 &dev_attr_bypass.attr,
3491 &dev_attr_requested_microamps.attr,
3492 &dev_attr_min_microvolts.attr,
3493 &dev_attr_max_microvolts.attr,
3494 &dev_attr_min_microamps.attr,
3495 &dev_attr_max_microamps.attr,
3496 &dev_attr_suspend_standby_state.attr,
3497 &dev_attr_suspend_mem_state.attr,
3498 &dev_attr_suspend_disk_state.attr,
3499 &dev_attr_suspend_standby_microvolts.attr,
3500 &dev_attr_suspend_mem_microvolts.attr,
3501 &dev_attr_suspend_disk_microvolts.attr,
3502 &dev_attr_suspend_standby_mode.attr,
3503 &dev_attr_suspend_mem_mode.attr,
3504 &dev_attr_suspend_disk_mode.attr,
3505 NULL
3506};
3507
David Brownell7ad68e22008-11-11 17:39:02 -08003508/*
3509 * To avoid cluttering sysfs (and memory) with useless state, only
3510 * create attributes that can be meaningfully displayed.
3511 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003512static umode_t regulator_attr_is_visible(struct kobject *kobj,
3513 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003514{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003515 struct device *dev = kobj_to_dev(kobj);
3516 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003517 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003518 umode_t mode = attr->mode;
3519
3520 /* these three are always present */
3521 if (attr == &dev_attr_name.attr ||
3522 attr == &dev_attr_num_users.attr ||
3523 attr == &dev_attr_type.attr)
3524 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003525
3526 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003527 if (attr == &dev_attr_microvolts.attr) {
3528 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3529 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3530 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3531 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3532 return mode;
3533 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003534 }
David Brownell7ad68e22008-11-11 17:39:02 -08003535
Takashi Iwai39f802d2015-01-30 20:29:31 +01003536 if (attr == &dev_attr_microamps.attr)
3537 return ops->get_current_limit ? mode : 0;
3538
3539 if (attr == &dev_attr_opmode.attr)
3540 return ops->get_mode ? mode : 0;
3541
3542 if (attr == &dev_attr_state.attr)
3543 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3544
3545 if (attr == &dev_attr_status.attr)
3546 return ops->get_status ? mode : 0;
3547
3548 if (attr == &dev_attr_bypass.attr)
3549 return ops->get_bypass ? mode : 0;
3550
David Brownell7ad68e22008-11-11 17:39:02 -08003551 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003552 if (attr == &dev_attr_requested_microamps.attr)
3553 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003554
David Brownell7ad68e22008-11-11 17:39:02 -08003555 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003556 if (attr == &dev_attr_min_microvolts.attr ||
3557 attr == &dev_attr_max_microvolts.attr)
3558 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003559
Takashi Iwai39f802d2015-01-30 20:29:31 +01003560 if (attr == &dev_attr_min_microamps.attr ||
3561 attr == &dev_attr_max_microamps.attr)
3562 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003563
Takashi Iwai39f802d2015-01-30 20:29:31 +01003564 if (attr == &dev_attr_suspend_standby_state.attr ||
3565 attr == &dev_attr_suspend_mem_state.attr ||
3566 attr == &dev_attr_suspend_disk_state.attr)
3567 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003568
Takashi Iwai39f802d2015-01-30 20:29:31 +01003569 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3570 attr == &dev_attr_suspend_mem_microvolts.attr ||
3571 attr == &dev_attr_suspend_disk_microvolts.attr)
3572 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003573
Takashi Iwai39f802d2015-01-30 20:29:31 +01003574 if (attr == &dev_attr_suspend_standby_mode.attr ||
3575 attr == &dev_attr_suspend_mem_mode.attr ||
3576 attr == &dev_attr_suspend_disk_mode.attr)
3577 return ops->set_suspend_mode ? mode : 0;
3578
3579 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003580}
3581
Takashi Iwai39f802d2015-01-30 20:29:31 +01003582static const struct attribute_group regulator_dev_group = {
3583 .attrs = regulator_dev_attrs,
3584 .is_visible = regulator_attr_is_visible,
3585};
3586
3587static const struct attribute_group *regulator_dev_groups[] = {
3588 &regulator_dev_group,
3589 NULL
3590};
3591
3592static void regulator_dev_release(struct device *dev)
3593{
3594 struct regulator_dev *rdev = dev_get_drvdata(dev);
3595 kfree(rdev);
3596}
3597
3598static struct class regulator_class = {
3599 .name = "regulator",
3600 .dev_release = regulator_dev_release,
3601 .dev_groups = regulator_dev_groups,
3602};
3603
Mark Brown1130e5b2010-12-21 23:49:31 +00003604static void rdev_init_debugfs(struct regulator_dev *rdev)
3605{
Guenter Roecka9eaa812014-10-17 08:17:03 -07003606 struct device *parent = rdev->dev.parent;
3607 const char *rname = rdev_get_name(rdev);
3608 char name[NAME_MAX];
3609
3610 /* Avoid duplicate debugfs directory names */
3611 if (parent && rname == rdev->desc->name) {
3612 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
3613 rname);
3614 rname = name;
3615 }
3616
3617 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003618 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003619 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003620 return;
3621 }
3622
3623 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3624 &rdev->use_count);
3625 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3626 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003627 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3628 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003629}
3630
Liam Girdwood414c70c2008-04-30 15:59:04 +01003631/**
3632 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003633 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003634 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003635 *
3636 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003637 * Returns a valid pointer to struct regulator_dev on success
3638 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003639 */
Mark Brown65f26842012-04-03 20:46:53 +01003640struct regulator_dev *
3641regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003642 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003643{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003644 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003645 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003646 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303647 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003648 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003649 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003650 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003651
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003652 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003653 return ERR_PTR(-EINVAL);
3654
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003655 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003656 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003657
Liam Girdwood414c70c2008-04-30 15:59:04 +01003658 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3659 return ERR_PTR(-EINVAL);
3660
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003661 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3662 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003663 return ERR_PTR(-EINVAL);
3664
Mark Brown476c2d82010-12-10 17:28:07 +00003665 /* Only one of each should be implemented */
3666 WARN_ON(regulator_desc->ops->get_voltage &&
3667 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003668 WARN_ON(regulator_desc->ops->set_voltage &&
3669 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003670
3671 /* If we're using selectors we must implement list_voltage. */
3672 if (regulator_desc->ops->get_voltage_sel &&
3673 !regulator_desc->ops->list_voltage) {
3674 return ERR_PTR(-EINVAL);
3675 }
Mark Browne8eef822010-12-12 14:36:17 +00003676 if (regulator_desc->ops->set_voltage_sel &&
3677 !regulator_desc->ops->list_voltage) {
3678 return ERR_PTR(-EINVAL);
3679 }
Mark Brown476c2d82010-12-10 17:28:07 +00003680
Liam Girdwood414c70c2008-04-30 15:59:04 +01003681 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3682 if (rdev == NULL)
3683 return ERR_PTR(-ENOMEM);
3684
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003685 /*
3686 * Duplicate the config so the driver could override it after
3687 * parsing init data.
3688 */
3689 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
3690 if (config == NULL) {
3691 kfree(rdev);
3692 return ERR_PTR(-ENOMEM);
3693 }
3694
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01003695 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01003696 &rdev->dev.of_node);
3697 if (!init_data) {
3698 init_data = config->init_data;
3699 rdev->dev.of_node = of_node_get(config->of_node);
3700 }
3701
Liam Girdwood414c70c2008-04-30 15:59:04 +01003702 mutex_lock(&regulator_list_mutex);
3703
3704 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003705 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003706 rdev->owner = regulator_desc->owner;
3707 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003708 if (config->regmap)
3709 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303710 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003711 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303712 else if (dev->parent)
3713 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003714 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003715 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003716 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003717 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003718
Liam Girdwooda5766f12008-10-10 13:22:20 +01003719 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003720 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003721 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003722 if (ret < 0)
3723 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003724 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003725
Liam Girdwooda5766f12008-10-10 13:22:20 +01003726 /* register with sysfs */
3727 rdev->dev.class = &regulator_class;
3728 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303729 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303730 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003731 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003732 if (ret != 0) {
3733 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003734 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003735 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003736
3737 dev_set_drvdata(&rdev->dev, rdev);
3738
Markus Pargmann76f439d2014-10-08 15:47:05 +02003739 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3740 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003741 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003742 if (ret != 0) {
3743 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3744 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003745 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003746 }
Mark Brown65f73502012-06-27 14:14:38 +01003747 }
3748
Mike Rapoport74f544c2008-11-25 14:53:53 +02003749 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003750 if (init_data)
3751 constraints = &init_data->constraints;
3752
3753 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003754 if (ret < 0)
3755 goto scrub;
3756
Mark Brown9a8f5e02011-11-29 18:11:19 +00003757 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003758 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303759 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003760 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303761
Liam Girdwooda5766f12008-10-10 13:22:20 +01003762 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003763 if (init_data) {
3764 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3765 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003766 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003767 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003768 if (ret < 0) {
3769 dev_err(dev, "Failed to set supply %s\n",
3770 init_data->consumer_supplies[i].supply);
3771 goto unset_supplies;
3772 }
Mark Brown23c2f042011-02-24 17:39:09 +00003773 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003774 }
3775
3776 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003777
3778 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003779out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003780 mutex_unlock(&regulator_list_mutex);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003781 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003782 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003783
Jani Nikulad4033b52010-04-29 10:55:11 +03003784unset_supplies:
3785 unset_regulator_supplies(rdev);
3786
David Brownell4fca9542008-11-11 17:38:53 -08003787scrub:
Kim, Milof19b00d2013-02-18 06:50:39 +00003788 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003789 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003790wash:
David Brownell4fca9542008-11-11 17:38:53 -08003791 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003792 /* device core frees rdev */
3793 rdev = ERR_PTR(ret);
3794 goto out;
3795
David Brownell4fca9542008-11-11 17:38:53 -08003796clean:
3797 kfree(rdev);
3798 rdev = ERR_PTR(ret);
3799 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003800}
3801EXPORT_SYMBOL_GPL(regulator_register);
3802
3803/**
3804 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003805 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003806 *
3807 * Called by regulator drivers to unregister a regulator.
3808 */
3809void regulator_unregister(struct regulator_dev *rdev)
3810{
3811 if (rdev == NULL)
3812 return;
3813
Mark Brown891636e2013-07-08 09:14:45 +01003814 if (rdev->supply) {
3815 while (rdev->use_count--)
3816 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003817 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003818 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003819 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003820 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003821 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003822 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003823 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003824 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003825 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003826 regulator_ena_gpio_free(rdev);
Charles Keepax63c7c9e2014-04-03 15:32:17 +01003827 of_node_put(rdev->dev.of_node);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003828 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003829 mutex_unlock(&regulator_list_mutex);
3830}
3831EXPORT_SYMBOL_GPL(regulator_unregister);
3832
3833/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003834 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003835 * @state: system suspend state
3836 *
3837 * Configure each regulator with it's suspend operating parameters for state.
3838 * This will usually be called by machine suspend code prior to supending.
3839 */
3840int regulator_suspend_prepare(suspend_state_t state)
3841{
3842 struct regulator_dev *rdev;
3843 int ret = 0;
3844
3845 /* ON is handled by regulator active state */
3846 if (state == PM_SUSPEND_ON)
3847 return -EINVAL;
3848
3849 mutex_lock(&regulator_list_mutex);
3850 list_for_each_entry(rdev, &regulator_list, list) {
3851
3852 mutex_lock(&rdev->mutex);
3853 ret = suspend_prepare(rdev, state);
3854 mutex_unlock(&rdev->mutex);
3855
3856 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003857 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003858 goto out;
3859 }
3860 }
3861out:
3862 mutex_unlock(&regulator_list_mutex);
3863 return ret;
3864}
3865EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3866
3867/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003868 * regulator_suspend_finish - resume regulators from system wide suspend
3869 *
3870 * Turn on regulators that might be turned off by regulator_suspend_prepare
3871 * and that should be turned on according to the regulators properties.
3872 */
3873int regulator_suspend_finish(void)
3874{
3875 struct regulator_dev *rdev;
3876 int ret = 0, error;
3877
3878 mutex_lock(&regulator_list_mutex);
3879 list_for_each_entry(rdev, &regulator_list, list) {
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003880 mutex_lock(&rdev->mutex);
Markus Pargmann30c21972014-02-20 17:36:03 +01003881 if (rdev->use_count > 0 || rdev->constraints->always_on) {
Javier Martinez Canillas0548bf42015-03-02 21:40:39 +01003882 if (!_regulator_is_enabled(rdev)) {
3883 error = _regulator_do_enable(rdev);
3884 if (error)
3885 ret = error;
3886 }
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003887 } else {
Mark Brown87b28412013-11-27 16:13:10 +00003888 if (!have_full_constraints())
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003889 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003890 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003891 goto unlock;
3892
Markus Pargmann66fda752014-02-20 17:36:04 +01003893 error = _regulator_do_disable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003894 if (error)
3895 ret = error;
3896 }
3897unlock:
3898 mutex_unlock(&rdev->mutex);
3899 }
3900 mutex_unlock(&regulator_list_mutex);
3901 return ret;
3902}
3903EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3904
3905/**
Mark Brownca725562009-03-16 19:36:34 +00003906 * regulator_has_full_constraints - the system has fully specified constraints
3907 *
3908 * Calling this function will cause the regulator API to disable all
3909 * regulators which have a zero use count and don't have an always_on
3910 * constraint in a late_initcall.
3911 *
3912 * The intention is that this will become the default behaviour in a
3913 * future kernel release so users are encouraged to use this facility
3914 * now.
3915 */
3916void regulator_has_full_constraints(void)
3917{
3918 has_full_constraints = 1;
3919}
3920EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3921
3922/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003923 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003924 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003925 *
3926 * Get rdev regulator driver private data. This call can be used in the
3927 * regulator driver context.
3928 */
3929void *rdev_get_drvdata(struct regulator_dev *rdev)
3930{
3931 return rdev->reg_data;
3932}
3933EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3934
3935/**
3936 * regulator_get_drvdata - get regulator driver data
3937 * @regulator: regulator
3938 *
3939 * Get regulator driver private data. This call can be used in the consumer
3940 * driver context when non API regulator specific functions need to be called.
3941 */
3942void *regulator_get_drvdata(struct regulator *regulator)
3943{
3944 return regulator->rdev->reg_data;
3945}
3946EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3947
3948/**
3949 * regulator_set_drvdata - set regulator driver data
3950 * @regulator: regulator
3951 * @data: data
3952 */
3953void regulator_set_drvdata(struct regulator *regulator, void *data)
3954{
3955 regulator->rdev->reg_data = data;
3956}
3957EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3958
3959/**
3960 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003961 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003962 */
3963int rdev_get_id(struct regulator_dev *rdev)
3964{
3965 return rdev->desc->id;
3966}
3967EXPORT_SYMBOL_GPL(rdev_get_id);
3968
Liam Girdwooda5766f12008-10-10 13:22:20 +01003969struct device *rdev_get_dev(struct regulator_dev *rdev)
3970{
3971 return &rdev->dev;
3972}
3973EXPORT_SYMBOL_GPL(rdev_get_dev);
3974
3975void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3976{
3977 return reg_init_data->driver_data;
3978}
3979EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3980
Mark Brownba55a972011-08-23 17:39:10 +01003981#ifdef CONFIG_DEBUG_FS
3982static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3983 size_t count, loff_t *ppos)
3984{
3985 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3986 ssize_t len, ret = 0;
3987 struct regulator_map *map;
3988
3989 if (!buf)
3990 return -ENOMEM;
3991
3992 list_for_each_entry(map, &regulator_map_list, list) {
3993 len = snprintf(buf + ret, PAGE_SIZE - ret,
3994 "%s -> %s.%s\n",
3995 rdev_get_name(map->regulator), map->dev_name,
3996 map->supply);
3997 if (len >= 0)
3998 ret += len;
3999 if (ret > PAGE_SIZE) {
4000 ret = PAGE_SIZE;
4001 break;
4002 }
4003 }
4004
4005 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
4006
4007 kfree(buf);
4008
4009 return ret;
4010}
Stephen Boyd24751432012-02-20 22:50:42 -08004011#endif
Mark Brownba55a972011-08-23 17:39:10 +01004012
4013static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08004014#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01004015 .read = supply_map_read_file,
4016 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01004017#endif
Stephen Boyd24751432012-02-20 22:50:42 -08004018};
Mark Brownba55a972011-08-23 17:39:10 +01004019
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004020#ifdef CONFIG_DEBUG_FS
4021static void regulator_summary_show_subtree(struct seq_file *s,
4022 struct regulator_dev *rdev,
4023 int level)
4024{
4025 struct list_head *list = s->private;
4026 struct regulator_dev *child;
4027 struct regulation_constraints *c;
4028 struct regulator *consumer;
4029
4030 if (!rdev)
4031 return;
4032
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004033 seq_printf(s, "%*s%-*s %3d %4d %6d ",
4034 level * 3 + 1, "",
4035 30 - level * 3, rdev_get_name(rdev),
4036 rdev->use_count, rdev->open_count, rdev->bypass_count);
4037
Heiko Stübner23296092015-04-10 13:48:41 +02004038 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
4039 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004040
4041 c = rdev->constraints;
4042 if (c) {
4043 switch (rdev->desc->type) {
4044 case REGULATOR_VOLTAGE:
4045 seq_printf(s, "%5dmV %5dmV ",
4046 c->min_uV / 1000, c->max_uV / 1000);
4047 break;
4048 case REGULATOR_CURRENT:
4049 seq_printf(s, "%5dmA %5dmA ",
4050 c->min_uA / 1000, c->max_uA / 1000);
4051 break;
4052 }
4053 }
4054
4055 seq_puts(s, "\n");
4056
4057 list_for_each_entry(consumer, &rdev->consumer_list, list) {
4058 if (consumer->dev->class == &regulator_class)
4059 continue;
4060
4061 seq_printf(s, "%*s%-*s ",
4062 (level + 1) * 3 + 1, "",
4063 30 - (level + 1) * 3, dev_name(consumer->dev));
4064
4065 switch (rdev->desc->type) {
4066 case REGULATOR_VOLTAGE:
Heiko Stübner23296092015-04-10 13:48:41 +02004067 seq_printf(s, "%37dmV %5dmV",
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004068 consumer->min_uV / 1000,
4069 consumer->max_uV / 1000);
4070 break;
4071 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004072 break;
4073 }
4074
4075 seq_puts(s, "\n");
4076 }
4077
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004078 list_for_each_entry(child, list, list) {
4079 /* handle only non-root regulators supplied by current rdev */
4080 if (!child->supply || child->supply->rdev != rdev)
4081 continue;
4082
4083 regulator_summary_show_subtree(s, child, level + 1);
4084 }
4085}
4086
4087static int regulator_summary_show(struct seq_file *s, void *data)
4088{
4089 struct list_head *list = s->private;
4090 struct regulator_dev *rdev;
4091
Heiko Stübner23296092015-04-10 13:48:41 +02004092 seq_puts(s, " regulator use open bypass voltage current min max\n");
4093 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004094
4095 mutex_lock(&regulator_list_mutex);
4096
4097 list_for_each_entry(rdev, list, list) {
4098 if (rdev->supply)
4099 continue;
4100
4101 regulator_summary_show_subtree(s, rdev, 0);
4102 }
4103
4104 mutex_unlock(&regulator_list_mutex);
4105
4106 return 0;
4107}
4108
4109static int regulator_summary_open(struct inode *inode, struct file *file)
4110{
4111 return single_open(file, regulator_summary_show, inode->i_private);
4112}
4113#endif
4114
4115static const struct file_operations regulator_summary_fops = {
4116#ifdef CONFIG_DEBUG_FS
4117 .open = regulator_summary_open,
4118 .read = seq_read,
4119 .llseek = seq_lseek,
4120 .release = single_release,
4121#endif
4122};
4123
Liam Girdwood414c70c2008-04-30 15:59:04 +01004124static int __init regulator_init(void)
4125{
Mark Brown34abbd62010-02-12 10:18:08 +00004126 int ret;
4127
Mark Brown34abbd62010-02-12 10:18:08 +00004128 ret = class_register(&regulator_class);
4129
Mark Brown1130e5b2010-12-21 23:49:31 +00004130 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004131 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004132 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004133
Mark Brownf4d562c2012-02-20 21:01:04 +00004134 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4135 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004136
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004137 debugfs_create_file("regulator_summary", 0444, debugfs_root,
4138 &regulator_list, &regulator_summary_fops);
4139
Mark Brown34abbd62010-02-12 10:18:08 +00004140 regulator_dummy_init();
4141
4142 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004143}
4144
4145/* init early to allow our consumers to complete system booting */
4146core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004147
4148static int __init regulator_init_complete(void)
4149{
4150 struct regulator_dev *rdev;
Guodong Xu272e2312014-08-13 19:33:38 +08004151 const struct regulator_ops *ops;
Mark Brownca725562009-03-16 19:36:34 +00004152 struct regulation_constraints *c;
4153 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004154
Mark Brown86f5fcf2012-07-06 18:19:13 +01004155 /*
4156 * Since DT doesn't provide an idiomatic mechanism for
4157 * enabling full constraints and since it's much more natural
4158 * with DT to provide them just assume that a DT enabled
4159 * system has full constraints.
4160 */
4161 if (of_have_populated_dt())
4162 has_full_constraints = true;
4163
Mark Brownca725562009-03-16 19:36:34 +00004164 mutex_lock(&regulator_list_mutex);
4165
4166 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004167 * we have permission to change the status for and which are
4168 * not in use or always_on. This is effectively the default
4169 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004170 */
4171 list_for_each_entry(rdev, &regulator_list, list) {
4172 ops = rdev->desc->ops;
4173 c = rdev->constraints;
4174
Markus Pargmann66fda752014-02-20 17:36:04 +01004175 if (c && c->always_on)
Mark Brownca725562009-03-16 19:36:34 +00004176 continue;
4177
Mark Browne9535832014-06-01 19:15:16 +01004178 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
4179 continue;
4180
Mark Brownca725562009-03-16 19:36:34 +00004181 mutex_lock(&rdev->mutex);
4182
4183 if (rdev->use_count)
4184 goto unlock;
4185
4186 /* If we can't read the status assume it's on. */
4187 if (ops->is_enabled)
4188 enabled = ops->is_enabled(rdev);
4189 else
4190 enabled = 1;
4191
4192 if (!enabled)
4193 goto unlock;
4194
Mark Brown87b28412013-11-27 16:13:10 +00004195 if (have_full_constraints()) {
Mark Brownca725562009-03-16 19:36:34 +00004196 /* We log since this may kill the system if it
4197 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08004198 rdev_info(rdev, "disabling\n");
Markus Pargmann66fda752014-02-20 17:36:04 +01004199 ret = _regulator_do_disable(rdev);
Jingoo Han0d25d092014-01-08 10:02:16 +09004200 if (ret != 0)
Joe Perches5da84fd2010-11-30 05:53:48 -08004201 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00004202 } else {
4203 /* The intention is that in future we will
4204 * assume that full constraints are provided
4205 * so warn even if we aren't going to do
4206 * anything here.
4207 */
Joe Perches5da84fd2010-11-30 05:53:48 -08004208 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00004209 }
4210
4211unlock:
4212 mutex_unlock(&rdev->mutex);
4213 }
4214
4215 mutex_unlock(&regulator_list_mutex);
4216
4217 return 0;
4218}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004219late_initcall_sync(regulator_init_complete);