blob: 6dfb2d6c19aefc64ac086371349b908459c22cb5 [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;
Mark Brown973e9a22010-02-11 19:20:48 +0000784 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100785 int count = 0;
786 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100787
Mark Brown8f031b42009-10-22 16:31:31 +0100788 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100789 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100790 count += sprintf(buf + count, "%d mV ",
791 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100792 else
Mark Brown8f031b42009-10-22 16:31:31 +0100793 count += sprintf(buf + count, "%d <--> %d mV ",
794 constraints->min_uV / 1000,
795 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100796 }
Mark Brown8f031b42009-10-22 16:31:31 +0100797
798 if (!constraints->min_uV ||
799 constraints->min_uV != constraints->max_uV) {
800 ret = _regulator_get_voltage(rdev);
801 if (ret > 0)
802 count += sprintf(buf + count, "at %d mV ", ret / 1000);
803 }
804
Mark Brownbf5892a2011-05-08 22:13:37 +0100805 if (constraints->uV_offset)
806 count += sprintf(buf, "%dmV offset ",
807 constraints->uV_offset / 1000);
808
Mark Brown8f031b42009-10-22 16:31:31 +0100809 if (constraints->min_uA && constraints->max_uA) {
810 if (constraints->min_uA == constraints->max_uA)
811 count += sprintf(buf + count, "%d mA ",
812 constraints->min_uA / 1000);
813 else
814 count += sprintf(buf + count, "%d <--> %d mA ",
815 constraints->min_uA / 1000,
816 constraints->max_uA / 1000);
817 }
818
819 if (!constraints->min_uA ||
820 constraints->min_uA != constraints->max_uA) {
821 ret = _regulator_get_current_limit(rdev);
822 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400823 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100824 }
825
Liam Girdwood414c70c2008-04-30 15:59:04 +0100826 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
827 count += sprintf(buf + count, "fast ");
828 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
829 count += sprintf(buf + count, "normal ");
830 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
831 count += sprintf(buf + count, "idle ");
832 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
833 count += sprintf(buf + count, "standby");
834
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200835 if (!count)
836 sprintf(buf, "no parameters");
837
Mark Brown194dbae2014-10-31 19:11:59 +0000838 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000839
840 if ((constraints->min_uV != constraints->max_uV) &&
841 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
842 rdev_warn(rdev,
843 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100844}
845
Mark Browne79055d2009-10-19 15:53:50 +0100846static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100847 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100848{
Guodong Xu272e2312014-08-13 19:33:38 +0800849 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100850 int ret;
851
852 /* do we need to apply the constraint voltage */
853 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000854 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200855 int current_uV = _regulator_get_voltage(rdev);
856 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500857 rdev_err(rdev,
858 "failed to get the current voltage(%d)\n",
859 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200860 return current_uV;
861 }
862 if (current_uV < rdev->constraints->min_uV ||
863 current_uV > rdev->constraints->max_uV) {
864 ret = _regulator_do_set_voltage(
865 rdev, rdev->constraints->min_uV,
866 rdev->constraints->max_uV);
867 if (ret < 0) {
868 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500869 "failed to apply %duV constraint(%d)\n",
870 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200871 return ret;
872 }
Mark Brown75790252010-12-12 14:25:50 +0000873 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100874 }
Mark Browne79055d2009-10-19 15:53:50 +0100875
876 /* constrain machine-level voltage specs to fit
877 * the actual range supported by this regulator.
878 */
879 if (ops->list_voltage && rdev->desc->n_voltages) {
880 int count = rdev->desc->n_voltages;
881 int i;
882 int min_uV = INT_MAX;
883 int max_uV = INT_MIN;
884 int cmin = constraints->min_uV;
885 int cmax = constraints->max_uV;
886
887 /* it's safe to autoconfigure fixed-voltage supplies
888 and the constraints are used by list_voltage. */
889 if (count == 1 && !cmin) {
890 cmin = 1;
891 cmax = INT_MAX;
892 constraints->min_uV = cmin;
893 constraints->max_uV = cmax;
894 }
895
896 /* voltage constraints are optional */
897 if ((cmin == 0) && (cmax == 0))
898 return 0;
899
900 /* else require explicit machine-level constraints */
901 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800902 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100903 return -EINVAL;
904 }
905
906 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
907 for (i = 0; i < count; i++) {
908 int value;
909
910 value = ops->list_voltage(rdev, i);
911 if (value <= 0)
912 continue;
913
914 /* maybe adjust [min_uV..max_uV] */
915 if (value >= cmin && value < min_uV)
916 min_uV = value;
917 if (value <= cmax && value > max_uV)
918 max_uV = value;
919 }
920
921 /* final: [min_uV..max_uV] valid iff constraints valid */
922 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000923 rdev_err(rdev,
924 "unsupportable voltage constraints %u-%uuV\n",
925 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100926 return -EINVAL;
927 }
928
929 /* use regulator's subset of machine constraints */
930 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800931 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
932 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100933 constraints->min_uV = min_uV;
934 }
935 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800936 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
937 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100938 constraints->max_uV = max_uV;
939 }
940 }
941
942 return 0;
943}
944
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530945static int machine_constraints_current(struct regulator_dev *rdev,
946 struct regulation_constraints *constraints)
947{
Guodong Xu272e2312014-08-13 19:33:38 +0800948 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530949 int ret;
950
951 if (!constraints->min_uA && !constraints->max_uA)
952 return 0;
953
954 if (constraints->min_uA > constraints->max_uA) {
955 rdev_err(rdev, "Invalid current constraints\n");
956 return -EINVAL;
957 }
958
959 if (!ops->set_current_limit || !ops->get_current_limit) {
960 rdev_warn(rdev, "Operation of current configuration missing\n");
961 return 0;
962 }
963
964 /* Set regulator current in constraints range */
965 ret = ops->set_current_limit(rdev, constraints->min_uA,
966 constraints->max_uA);
967 if (ret < 0) {
968 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
969 return ret;
970 }
971
972 return 0;
973}
974
Markus Pargmann30c21972014-02-20 17:36:03 +0100975static int _regulator_do_enable(struct regulator_dev *rdev);
976
Liam Girdwooda5766f12008-10-10 13:22:20 +0100977/**
978 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000979 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000980 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100981 *
982 * Allows platform initialisation code to define and constrain
983 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
984 * Constraints *must* be set by platform code in order for some
985 * regulator operations to proceed i.e. set_voltage, set_current_limit,
986 * set_mode.
987 */
988static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000989 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100990{
991 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +0800992 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100993
Mark Brown9a8f5e02011-11-29 18:11:19 +0000994 if (constraints)
995 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
996 GFP_KERNEL);
997 else
998 rdev->constraints = kzalloc(sizeof(*constraints),
999 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +00001000 if (!rdev->constraints)
1001 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001002
Mark Brownf8c12fe2010-11-29 15:55:17 +00001003 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001004 if (ret != 0)
1005 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -08001006
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301007 ret = machine_constraints_current(rdev, rdev->constraints);
1008 if (ret != 0)
1009 goto out;
1010
Liam Girdwooda5766f12008-10-10 13:22:20 +01001011 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001012 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001013 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001014 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001015 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +01001016 goto out;
1017 }
1018 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001019
Mark Brown9a8f5e02011-11-29 18:11:19 +00001020 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001021 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001022 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +00001023 ret = -EINVAL;
1024 goto out;
1025 }
1026
Mark Brownf8c12fe2010-11-29 15:55:17 +00001027 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001028 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001029 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +00001030 goto out;
1031 }
1032 }
1033
Mark Browncacf90f2009-03-02 16:32:46 +00001034 /* If the constraints say the regulator should be on at this point
1035 * and we have control then make sure it is enabled.
1036 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001037 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1038 ret = _regulator_do_enable(rdev);
1039 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001040 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001041 goto out;
1042 }
1043 }
1044
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301045 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1046 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301047 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1048 if (ret < 0) {
1049 rdev_err(rdev, "failed to set ramp_delay\n");
1050 goto out;
1051 }
1052 }
1053
Stephen Boyd23c779b2015-06-11 17:37:04 -07001054 if (rdev->constraints->pull_down && ops->set_pull_down) {
1055 ret = ops->set_pull_down(rdev);
1056 if (ret < 0) {
1057 rdev_err(rdev, "failed to set pull down\n");
1058 goto out;
1059 }
1060 }
1061
Stephen Boyd57f66b72015-06-11 17:37:05 -07001062 if (rdev->constraints->soft_start && ops->set_soft_start) {
1063 ret = ops->set_soft_start(rdev);
1064 if (ret < 0) {
1065 rdev_err(rdev, "failed to set soft start\n");
1066 goto out;
1067 }
1068 }
1069
Liam Girdwooda5766f12008-10-10 13:22:20 +01001070 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001071 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001072out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001073 kfree(rdev->constraints);
1074 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001075 return ret;
1076}
1077
1078/**
1079 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001080 * @rdev: regulator name
1081 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001082 *
1083 * Called by platform initialisation code to set the supply regulator for this
1084 * regulator. This ensures that a regulators supply will also be enabled by the
1085 * core if it's child is enabled.
1086 */
1087static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001088 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001089{
1090 int err;
1091
Mark Brown3801b862011-06-09 16:22:22 +01001092 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1093
1094 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001095 if (rdev->supply == NULL) {
1096 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001097 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001098 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301099 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001100
1101 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001102}
1103
1104/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001105 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001106 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001107 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001108 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001109 *
1110 * Allows platform initialisation code to map physical regulator
1111 * sources to symbolic names for supplies for use by devices. Devices
1112 * should use these symbolic names to request regulators, avoiding the
1113 * need to provide board-specific regulator names as platform data.
1114 */
1115static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001116 const char *consumer_dev_name,
1117 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001118{
1119 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001120 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001121
1122 if (supply == NULL)
1123 return -EINVAL;
1124
Mark Brown9ed20992009-07-21 16:00:26 +01001125 if (consumer_dev_name != NULL)
1126 has_dev = 1;
1127 else
1128 has_dev = 0;
1129
David Brownell6001e132008-12-31 12:54:19 +00001130 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001131 if (node->dev_name && consumer_dev_name) {
1132 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1133 continue;
1134 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001135 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001136 }
1137
David Brownell6001e132008-12-31 12:54:19 +00001138 if (strcmp(node->supply, supply) != 0)
1139 continue;
1140
Mark Brown737f3602012-02-02 00:10:51 +00001141 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1142 consumer_dev_name,
1143 dev_name(&node->regulator->dev),
1144 node->regulator->desc->name,
1145 supply,
1146 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001147 return -EBUSY;
1148 }
1149
Mark Brown9ed20992009-07-21 16:00:26 +01001150 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001151 if (node == NULL)
1152 return -ENOMEM;
1153
1154 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001155 node->supply = supply;
1156
Mark Brown9ed20992009-07-21 16:00:26 +01001157 if (has_dev) {
1158 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1159 if (node->dev_name == NULL) {
1160 kfree(node);
1161 return -ENOMEM;
1162 }
Mark Brown40f92442009-06-17 17:56:39 +01001163 }
1164
Liam Girdwooda5766f12008-10-10 13:22:20 +01001165 list_add(&node->list, &regulator_map_list);
1166 return 0;
1167}
1168
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001169static void unset_regulator_supplies(struct regulator_dev *rdev)
1170{
1171 struct regulator_map *node, *n;
1172
1173 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1174 if (rdev == node->regulator) {
1175 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001176 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001177 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001178 }
1179 }
1180}
1181
Mark Brownf5726ae2011-06-09 16:22:20 +01001182#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001183
1184static struct regulator *create_regulator(struct regulator_dev *rdev,
1185 struct device *dev,
1186 const char *supply_name)
1187{
1188 struct regulator *regulator;
1189 char buf[REG_STR_SIZE];
1190 int err, size;
1191
1192 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1193 if (regulator == NULL)
1194 return NULL;
1195
1196 mutex_lock(&rdev->mutex);
1197 regulator->rdev = rdev;
1198 list_add(&regulator->list, &rdev->consumer_list);
1199
1200 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001201 regulator->dev = dev;
1202
Mark Brown222cc7b2012-06-22 11:39:16 +01001203 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001204 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1205 dev->kobj.name, supply_name);
1206 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001207 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001208
1209 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1210 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001211 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001212
1213 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1214 buf);
1215 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001216 rdev_warn(rdev, "could not add device link %s err %d\n",
1217 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001218 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001219 }
Mark Brown5de70512011-06-19 13:33:16 +01001220 } else {
1221 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1222 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001223 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001224 }
Mark Brown5de70512011-06-19 13:33:16 +01001225
Mark Brown5de70512011-06-19 13:33:16 +01001226 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1227 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001228 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001229 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001230 } else {
1231 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1232 &regulator->uA_load);
1233 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1234 &regulator->min_uV);
1235 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1236 &regulator->max_uV);
1237 }
Mark Brown5de70512011-06-19 13:33:16 +01001238
Mark Brown6492bc12012-04-19 13:19:07 +01001239 /*
1240 * Check now if the regulator is an always on regulator - if
1241 * it is then we don't need to do nearly so much work for
1242 * enable/disable calls.
1243 */
1244 if (!_regulator_can_change_status(rdev) &&
1245 _regulator_is_enabled(rdev))
1246 regulator->always_on = true;
1247
Liam Girdwood414c70c2008-04-30 15:59:04 +01001248 mutex_unlock(&rdev->mutex);
1249 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001250overflow_err:
1251 list_del(&regulator->list);
1252 kfree(regulator);
1253 mutex_unlock(&rdev->mutex);
1254 return NULL;
1255}
1256
Mark Brown31aae2b2009-12-21 12:21:52 +00001257static int _regulator_get_enable_time(struct regulator_dev *rdev)
1258{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301259 if (rdev->constraints && rdev->constraints->enable_time)
1260 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001261 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001262 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001263 return rdev->desc->ops->enable_time(rdev);
1264}
1265
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001266static struct regulator_supply_alias *regulator_find_supply_alias(
1267 struct device *dev, const char *supply)
1268{
1269 struct regulator_supply_alias *map;
1270
1271 list_for_each_entry(map, &regulator_supply_alias_list, list)
1272 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1273 return map;
1274
1275 return NULL;
1276}
1277
1278static void regulator_supply_alias(struct device **dev, const char **supply)
1279{
1280 struct regulator_supply_alias *map;
1281
1282 map = regulator_find_supply_alias(*dev, *supply);
1283 if (map) {
1284 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1285 *supply, map->alias_supply,
1286 dev_name(map->alias_dev));
1287 *dev = map->alias_dev;
1288 *supply = map->alias_supply;
1289 }
1290}
1291
Rajendra Nayak69511a42011-11-18 16:47:20 +05301292static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001293 const char *supply,
1294 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301295{
1296 struct regulator_dev *r;
1297 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001298 struct regulator_map *map;
1299 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301300
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001301 regulator_supply_alias(&dev, &supply);
1302
Rajendra Nayak69511a42011-11-18 16:47:20 +05301303 /* first do a dt based lookup */
1304 if (dev && dev->of_node) {
1305 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001306 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301307 list_for_each_entry(r, &regulator_list, list)
1308 if (r->dev.parent &&
1309 node == r->dev.of_node)
1310 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001311 *ret = -EPROBE_DEFER;
1312 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001313 } else {
1314 /*
1315 * If we couldn't even get the node then it's
1316 * not just that the device didn't register
1317 * yet, there's no node and we'll never
1318 * succeed.
1319 */
1320 *ret = -ENODEV;
1321 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301322 }
1323
1324 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001325 if (dev)
1326 devname = dev_name(dev);
1327
Rajendra Nayak69511a42011-11-18 16:47:20 +05301328 list_for_each_entry(r, &regulator_list, list)
1329 if (strcmp(rdev_get_name(r), supply) == 0)
1330 return r;
1331
Mark Brown576ca4362012-03-30 12:24:37 +01001332 list_for_each_entry(map, &regulator_map_list, list) {
1333 /* If the mapping has a device set up it must match */
1334 if (map->dev_name &&
1335 (!devname || strcmp(map->dev_name, devname)))
1336 continue;
1337
1338 if (strcmp(map->supply, supply) == 0)
1339 return map->regulator;
1340 }
1341
1342
Rajendra Nayak69511a42011-11-18 16:47:20 +05301343 return NULL;
1344}
1345
Bjorn Andersson6261b062015-03-24 18:56:05 -07001346static int regulator_resolve_supply(struct regulator_dev *rdev)
1347{
1348 struct regulator_dev *r;
1349 struct device *dev = rdev->dev.parent;
1350 int ret;
1351
1352 /* No supply to resovle? */
1353 if (!rdev->supply_name)
1354 return 0;
1355
1356 /* Supply already resolved? */
1357 if (rdev->supply)
1358 return 0;
1359
1360 r = regulator_dev_lookup(dev, rdev->supply_name, &ret);
1361 if (ret == -ENODEV) {
1362 /*
1363 * No supply was specified for this regulator and
1364 * there will never be one.
1365 */
1366 return 0;
1367 }
1368
1369 if (!r) {
1370 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1371 rdev->supply_name, rdev->desc->name);
1372 return -EPROBE_DEFER;
1373 }
1374
1375 /* Recursively resolve the supply of the supply */
1376 ret = regulator_resolve_supply(r);
1377 if (ret < 0)
1378 return ret;
1379
1380 ret = set_supply(rdev, r);
1381 if (ret < 0)
1382 return ret;
1383
1384 /* Cascade always-on state to supply */
1385 if (_regulator_is_enabled(rdev)) {
1386 ret = regulator_enable(rdev->supply);
1387 if (ret < 0)
1388 return ret;
1389 }
1390
1391 return 0;
1392}
1393
Mark Brown5ffbd132009-07-21 16:00:23 +01001394/* Internal regulator request function */
1395static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001396 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001397{
1398 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001399 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001400 const char *devname = NULL;
Mark Brown317b5682014-01-27 17:34:07 +00001401 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001402
1403 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001404 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001405 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001406 }
1407
Mark Brown40f92442009-06-17 17:56:39 +01001408 if (dev)
1409 devname = dev_name(dev);
1410
Mark Brown317b5682014-01-27 17:34:07 +00001411 if (have_full_constraints())
1412 ret = -ENODEV;
1413 else
1414 ret = -EPROBE_DEFER;
1415
Liam Girdwood414c70c2008-04-30 15:59:04 +01001416 mutex_lock(&regulator_list_mutex);
1417
Mark Brown6d191a52012-03-29 14:19:02 +01001418 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301419 if (rdev)
1420 goto found;
1421
Mark Brownef60abb2013-09-23 16:12:52 +01001422 regulator = ERR_PTR(ret);
1423
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001424 /*
1425 * If we have return value from dev_lookup fail, we do not expect to
1426 * succeed, so, quit with appropriate error value
1427 */
Jingoo Han0d25d092014-01-08 10:02:16 +09001428 if (ret && ret != -ENODEV)
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001429 goto out;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001430
Mark Brown34abbd62010-02-12 10:18:08 +00001431 if (!devname)
1432 devname = "deviceless";
1433
Mark Brown4ddfebd2013-09-13 19:50:37 +01001434 /*
1435 * Assume that a regulator is physically present and enabled
1436 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001437 */
Mark Brown87b28412013-11-27 16:13:10 +00001438 if (have_full_constraints() && allow_dummy) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001439 pr_warn("%s supply %s not found, using dummy regulator\n",
1440 devname, id);
Mark Brown4ddfebd2013-09-13 19:50:37 +01001441
Mark Brown34abbd62010-02-12 10:18:08 +00001442 rdev = dummy_regulator_rdev;
1443 goto found;
Hans de Goede07817192013-12-17 16:24:57 +01001444 /* Don't log an error when called from regulator_get_optional() */
1445 } else if (!have_full_constraints() || exclusive) {
Shuah Khanacc3d5c2014-02-20 12:58:15 -07001446 dev_warn(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001447 }
Mark Brown34abbd62010-02-12 10:18:08 +00001448
Liam Girdwood414c70c2008-04-30 15:59:04 +01001449 mutex_unlock(&regulator_list_mutex);
1450 return regulator;
1451
1452found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001453 if (rdev->exclusive) {
1454 regulator = ERR_PTR(-EPERM);
1455 goto out;
1456 }
1457
1458 if (exclusive && rdev->open_count) {
1459 regulator = ERR_PTR(-EBUSY);
1460 goto out;
1461 }
1462
Bjorn Andersson6261b062015-03-24 18:56:05 -07001463 ret = regulator_resolve_supply(rdev);
1464 if (ret < 0) {
1465 regulator = ERR_PTR(ret);
1466 goto out;
1467 }
1468
Liam Girdwooda5766f12008-10-10 13:22:20 +01001469 if (!try_module_get(rdev->owner))
1470 goto out;
1471
Liam Girdwood414c70c2008-04-30 15:59:04 +01001472 regulator = create_regulator(rdev, dev, id);
1473 if (regulator == NULL) {
1474 regulator = ERR_PTR(-ENOMEM);
1475 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001476 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001477 }
1478
Mark Brown5ffbd132009-07-21 16:00:23 +01001479 rdev->open_count++;
1480 if (exclusive) {
1481 rdev->exclusive = 1;
1482
1483 ret = _regulator_is_enabled(rdev);
1484 if (ret > 0)
1485 rdev->use_count = 1;
1486 else
1487 rdev->use_count = 0;
1488 }
1489
Liam Girdwooda5766f12008-10-10 13:22:20 +01001490out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001491 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001492
Liam Girdwood414c70c2008-04-30 15:59:04 +01001493 return regulator;
1494}
Mark Brown5ffbd132009-07-21 16:00:23 +01001495
1496/**
1497 * regulator_get - lookup and obtain a reference to a regulator.
1498 * @dev: device for regulator "consumer"
1499 * @id: Supply name or regulator ID.
1500 *
1501 * Returns a struct regulator corresponding to the regulator producer,
1502 * or IS_ERR() condition containing errno.
1503 *
1504 * Use of supply names configured via regulator_set_device_supply() is
1505 * strongly encouraged. It is recommended that the supply name used
1506 * should match the name used for the supply and/or the relevant
1507 * device pins in the datasheet.
1508 */
1509struct regulator *regulator_get(struct device *dev, const char *id)
1510{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001511 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001512}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001513EXPORT_SYMBOL_GPL(regulator_get);
1514
Stephen Boyd070b9072012-01-16 19:39:58 -08001515/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001516 * regulator_get_exclusive - obtain exclusive access to a regulator.
1517 * @dev: device for regulator "consumer"
1518 * @id: Supply name or regulator ID.
1519 *
1520 * Returns a struct regulator corresponding to the regulator producer,
1521 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001522 * unable to obtain this regulator while this reference is held and the
1523 * use count for the regulator will be initialised to reflect the current
1524 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001525 *
1526 * This is intended for use by consumers which cannot tolerate shared
1527 * use of the regulator such as those which need to force the
1528 * regulator off for correct operation of the hardware they are
1529 * controlling.
1530 *
1531 * Use of supply names configured via regulator_set_device_supply() is
1532 * strongly encouraged. It is recommended that the supply name used
1533 * should match the name used for the supply and/or the relevant
1534 * device pins in the datasheet.
1535 */
1536struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1537{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001538 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001539}
1540EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1541
Mark Brownde1dd9f2013-07-29 21:42:42 +01001542/**
1543 * regulator_get_optional - obtain optional access to a regulator.
1544 * @dev: device for regulator "consumer"
1545 * @id: Supply name or regulator ID.
1546 *
1547 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001548 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001549 *
1550 * This is intended for use by consumers for devices which can have
1551 * some supplies unconnected in normal use, such as some MMC devices.
1552 * It can allow the regulator core to provide stub supplies for other
1553 * supplies requested using normal regulator_get() calls without
1554 * disrupting the operation of drivers that can handle absent
1555 * supplies.
1556 *
1557 * Use of supply names configured via regulator_set_device_supply() is
1558 * strongly encouraged. It is recommended that the supply name used
1559 * should match the name used for the supply and/or the relevant
1560 * device pins in the datasheet.
1561 */
1562struct regulator *regulator_get_optional(struct device *dev, const char *id)
1563{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001564 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001565}
1566EXPORT_SYMBOL_GPL(regulator_get_optional);
1567
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301568/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001569static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001570{
1571 struct regulator_dev *rdev;
1572
1573 if (regulator == NULL || IS_ERR(regulator))
1574 return;
1575
Liam Girdwood414c70c2008-04-30 15:59:04 +01001576 rdev = regulator->rdev;
1577
Mark Brown5de70512011-06-19 13:33:16 +01001578 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001579
Liam Girdwood414c70c2008-04-30 15:59:04 +01001580 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001581 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001582 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301583 mutex_lock(&rdev->mutex);
Mark Brown5de70512011-06-19 13:33:16 +01001584 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001585 list_del(&regulator->list);
1586 kfree(regulator);
1587
Mark Brown5ffbd132009-07-21 16:00:23 +01001588 rdev->open_count--;
1589 rdev->exclusive = 0;
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301590 mutex_unlock(&rdev->mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001591
Liam Girdwood414c70c2008-04-30 15:59:04 +01001592 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001593}
1594
1595/**
1596 * regulator_put - "free" the regulator source
1597 * @regulator: regulator source
1598 *
1599 * Note: drivers must ensure that all regulator_enable calls made on this
1600 * regulator source are balanced by regulator_disable calls prior to calling
1601 * this function.
1602 */
1603void regulator_put(struct regulator *regulator)
1604{
1605 mutex_lock(&regulator_list_mutex);
1606 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001607 mutex_unlock(&regulator_list_mutex);
1608}
1609EXPORT_SYMBOL_GPL(regulator_put);
1610
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001611/**
1612 * regulator_register_supply_alias - Provide device alias for supply lookup
1613 *
1614 * @dev: device that will be given as the regulator "consumer"
1615 * @id: Supply name or regulator ID
1616 * @alias_dev: device that should be used to lookup the supply
1617 * @alias_id: Supply name or regulator ID that should be used to lookup the
1618 * supply
1619 *
1620 * All lookups for id on dev will instead be conducted for alias_id on
1621 * alias_dev.
1622 */
1623int regulator_register_supply_alias(struct device *dev, const char *id,
1624 struct device *alias_dev,
1625 const char *alias_id)
1626{
1627 struct regulator_supply_alias *map;
1628
1629 map = regulator_find_supply_alias(dev, id);
1630 if (map)
1631 return -EEXIST;
1632
1633 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1634 if (!map)
1635 return -ENOMEM;
1636
1637 map->src_dev = dev;
1638 map->src_supply = id;
1639 map->alias_dev = alias_dev;
1640 map->alias_supply = alias_id;
1641
1642 list_add(&map->list, &regulator_supply_alias_list);
1643
1644 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1645 id, dev_name(dev), alias_id, dev_name(alias_dev));
1646
1647 return 0;
1648}
1649EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1650
1651/**
1652 * regulator_unregister_supply_alias - Remove device alias
1653 *
1654 * @dev: device that will be given as the regulator "consumer"
1655 * @id: Supply name or regulator ID
1656 *
1657 * Remove a lookup alias if one exists for id on dev.
1658 */
1659void regulator_unregister_supply_alias(struct device *dev, const char *id)
1660{
1661 struct regulator_supply_alias *map;
1662
1663 map = regulator_find_supply_alias(dev, id);
1664 if (map) {
1665 list_del(&map->list);
1666 kfree(map);
1667 }
1668}
1669EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1670
1671/**
1672 * regulator_bulk_register_supply_alias - register multiple aliases
1673 *
1674 * @dev: device that will be given as the regulator "consumer"
1675 * @id: List of supply names or regulator IDs
1676 * @alias_dev: device that should be used to lookup the supply
1677 * @alias_id: List of supply names or regulator IDs that should be used to
1678 * lookup the supply
1679 * @num_id: Number of aliases to register
1680 *
1681 * @return 0 on success, an errno on failure.
1682 *
1683 * This helper function allows drivers to register several supply
1684 * aliases in one operation. If any of the aliases cannot be
1685 * registered any aliases that were registered will be removed
1686 * before returning to the caller.
1687 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001688int regulator_bulk_register_supply_alias(struct device *dev,
1689 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001690 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001691 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001692 int num_id)
1693{
1694 int i;
1695 int ret;
1696
1697 for (i = 0; i < num_id; ++i) {
1698 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1699 alias_id[i]);
1700 if (ret < 0)
1701 goto err;
1702 }
1703
1704 return 0;
1705
1706err:
1707 dev_err(dev,
1708 "Failed to create supply alias %s,%s -> %s,%s\n",
1709 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1710
1711 while (--i >= 0)
1712 regulator_unregister_supply_alias(dev, id[i]);
1713
1714 return ret;
1715}
1716EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1717
1718/**
1719 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1720 *
1721 * @dev: device that will be given as the regulator "consumer"
1722 * @id: List of supply names or regulator IDs
1723 * @num_id: Number of aliases to unregister
1724 *
1725 * This helper function allows drivers to unregister several supply
1726 * aliases in one operation.
1727 */
1728void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001729 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001730 int num_id)
1731{
1732 int i;
1733
1734 for (i = 0; i < num_id; ++i)
1735 regulator_unregister_supply_alias(dev, id[i]);
1736}
1737EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1738
1739
Kim, Milof19b00d2013-02-18 06:50:39 +00001740/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1741static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1742 const struct regulator_config *config)
1743{
1744 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001745 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001746 int ret;
1747
Russell King778b28b2014-06-29 17:55:54 +01001748 gpiod = gpio_to_desc(config->ena_gpio);
1749
Kim, Milof19b00d2013-02-18 06:50:39 +00001750 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001751 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001752 rdev_dbg(rdev, "GPIO %d is already used\n",
1753 config->ena_gpio);
1754 goto update_ena_gpio_to_rdev;
1755 }
1756 }
1757
1758 ret = gpio_request_one(config->ena_gpio,
1759 GPIOF_DIR_OUT | config->ena_gpio_flags,
1760 rdev_get_name(rdev));
1761 if (ret)
1762 return ret;
1763
1764 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1765 if (pin == NULL) {
1766 gpio_free(config->ena_gpio);
1767 return -ENOMEM;
1768 }
1769
Russell King778b28b2014-06-29 17:55:54 +01001770 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001771 pin->ena_gpio_invert = config->ena_gpio_invert;
1772 list_add(&pin->list, &regulator_ena_gpio_list);
1773
1774update_ena_gpio_to_rdev:
1775 pin->request_count++;
1776 rdev->ena_pin = pin;
1777 return 0;
1778}
1779
1780static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1781{
1782 struct regulator_enable_gpio *pin, *n;
1783
1784 if (!rdev->ena_pin)
1785 return;
1786
1787 /* Free the GPIO only in case of no use */
1788 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001789 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001790 if (pin->request_count <= 1) {
1791 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001792 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001793 list_del(&pin->list);
1794 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001795 rdev->ena_pin = NULL;
1796 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001797 } else {
1798 pin->request_count--;
1799 }
1800 }
1801 }
1802}
1803
Kim, Milo967cfb12013-02-18 06:50:48 +00001804/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001805 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1806 * @rdev: regulator_dev structure
1807 * @enable: enable GPIO at initial use?
1808 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001809 * GPIO is enabled in case of initial use. (enable_count is 0)
1810 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1811 */
1812static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1813{
1814 struct regulator_enable_gpio *pin = rdev->ena_pin;
1815
1816 if (!pin)
1817 return -EINVAL;
1818
1819 if (enable) {
1820 /* Enable GPIO at initial use */
1821 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001822 gpiod_set_value_cansleep(pin->gpiod,
1823 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001824
1825 pin->enable_count++;
1826 } else {
1827 if (pin->enable_count > 1) {
1828 pin->enable_count--;
1829 return 0;
1830 }
1831
1832 /* Disable GPIO if not used */
1833 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001834 gpiod_set_value_cansleep(pin->gpiod,
1835 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001836 pin->enable_count = 0;
1837 }
1838 }
1839
1840 return 0;
1841}
1842
Guodong Xu79fd1142014-08-13 19:33:39 +08001843/**
1844 * _regulator_enable_delay - a delay helper function
1845 * @delay: time to delay in microseconds
1846 *
1847 * Delay for the requested amount of time as per the guidelines in:
1848 *
1849 * Documentation/timers/timers-howto.txt
1850 *
1851 * The assumption here is that regulators will never be enabled in
1852 * atomic context and therefore sleeping functions can be used.
1853 */
1854static void _regulator_enable_delay(unsigned int delay)
1855{
1856 unsigned int ms = delay / 1000;
1857 unsigned int us = delay % 1000;
1858
1859 if (ms > 0) {
1860 /*
1861 * For small enough values, handle super-millisecond
1862 * delays in the usleep_range() call below.
1863 */
1864 if (ms < 20)
1865 us += ms * 1000;
1866 else
1867 msleep(ms);
1868 }
1869
1870 /*
1871 * Give the scheduler some room to coalesce with any other
1872 * wakeup sources. For delays shorter than 10 us, don't even
1873 * bother setting up high-resolution timers and just busy-
1874 * loop.
1875 */
1876 if (us >= 10)
1877 usleep_range(us, us + 100);
1878 else
1879 udelay(us);
1880}
1881
Mark Brown5c5659d2012-06-27 13:21:26 +01001882static int _regulator_do_enable(struct regulator_dev *rdev)
1883{
1884 int ret, delay;
1885
1886 /* Query before enabling in case configuration dependent. */
1887 ret = _regulator_get_enable_time(rdev);
1888 if (ret >= 0) {
1889 delay = ret;
1890 } else {
1891 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1892 delay = 0;
1893 }
1894
1895 trace_regulator_enable(rdev_get_name(rdev));
1896
Guodong Xu871f5652014-08-13 19:33:40 +08001897 if (rdev->desc->off_on_delay) {
1898 /* if needed, keep a distance of off_on_delay from last time
1899 * this regulator was disabled.
1900 */
1901 unsigned long start_jiffy = jiffies;
1902 unsigned long intended, max_delay, remaining;
1903
1904 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
1905 intended = rdev->last_off_jiffy + max_delay;
1906
1907 if (time_before(start_jiffy, intended)) {
1908 /* calc remaining jiffies to deal with one-time
1909 * timer wrapping.
1910 * in case of multiple timer wrapping, either it can be
1911 * detected by out-of-range remaining, or it cannot be
1912 * detected and we gets a panelty of
1913 * _regulator_enable_delay().
1914 */
1915 remaining = intended - start_jiffy;
1916 if (remaining <= max_delay)
1917 _regulator_enable_delay(
1918 jiffies_to_usecs(remaining));
1919 }
1920 }
1921
Kim, Milo967cfb12013-02-18 06:50:48 +00001922 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08001923 if (!rdev->ena_gpio_state) {
1924 ret = regulator_ena_gpio_ctrl(rdev, true);
1925 if (ret < 0)
1926 return ret;
1927 rdev->ena_gpio_state = 1;
1928 }
Mark Brown65f73502012-06-27 14:14:38 +01001929 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001930 ret = rdev->desc->ops->enable(rdev);
1931 if (ret < 0)
1932 return ret;
1933 } else {
1934 return -EINVAL;
1935 }
1936
1937 /* Allow the regulator to ramp; it would be useful to extend
1938 * this for bulk operations so that the regulators can ramp
1939 * together. */
1940 trace_regulator_enable_delay(rdev_get_name(rdev));
1941
Guodong Xu79fd1142014-08-13 19:33:39 +08001942 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01001943
1944 trace_regulator_enable_complete(rdev_get_name(rdev));
1945
1946 return 0;
1947}
1948
Liam Girdwood414c70c2008-04-30 15:59:04 +01001949/* locks held by regulator_enable() */
1950static int _regulator_enable(struct regulator_dev *rdev)
1951{
Mark Brown5c5659d2012-06-27 13:21:26 +01001952 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001953
Liam Girdwood414c70c2008-04-30 15:59:04 +01001954 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001955 if (rdev->constraints &&
1956 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1957 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001958
Mark Brown9a2372f2009-08-03 18:49:57 +01001959 if (rdev->use_count == 0) {
1960 /* The regulator may on if it's not switchable or left on */
1961 ret = _regulator_is_enabled(rdev);
1962 if (ret == -EINVAL || ret == 0) {
1963 if (!_regulator_can_change_status(rdev))
1964 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001965
Mark Brown5c5659d2012-06-27 13:21:26 +01001966 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001967 if (ret < 0)
1968 return ret;
1969
Linus Walleija7433cf2009-08-26 12:54:04 +02001970 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001971 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001972 return ret;
1973 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001974 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001975 }
1976
Mark Brown9a2372f2009-08-03 18:49:57 +01001977 rdev->use_count++;
1978
1979 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001980}
1981
1982/**
1983 * regulator_enable - enable regulator output
1984 * @regulator: regulator source
1985 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001986 * Request that the regulator be enabled with the regulator output at
1987 * the predefined voltage or current value. Calls to regulator_enable()
1988 * must be balanced with calls to regulator_disable().
1989 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001990 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001991 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001992 */
1993int regulator_enable(struct regulator *regulator)
1994{
David Brownell412aec62008-11-16 11:44:46 -08001995 struct regulator_dev *rdev = regulator->rdev;
1996 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001997
Mark Brown6492bc12012-04-19 13:19:07 +01001998 if (regulator->always_on)
1999 return 0;
2000
Mark Brown3801b862011-06-09 16:22:22 +01002001 if (rdev->supply) {
2002 ret = regulator_enable(rdev->supply);
2003 if (ret != 0)
2004 return ret;
2005 }
2006
David Brownell412aec62008-11-16 11:44:46 -08002007 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08002008 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002009 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002010
Heiko Stübnerd1685e42011-10-14 18:00:29 +02002011 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002012 regulator_disable(rdev->supply);
2013
Liam Girdwood414c70c2008-04-30 15:59:04 +01002014 return ret;
2015}
2016EXPORT_SYMBOL_GPL(regulator_enable);
2017
Mark Brown5c5659d2012-06-27 13:21:26 +01002018static int _regulator_do_disable(struct regulator_dev *rdev)
2019{
2020 int ret;
2021
2022 trace_regulator_disable(rdev_get_name(rdev));
2023
Kim, Milo967cfb12013-02-18 06:50:48 +00002024 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002025 if (rdev->ena_gpio_state) {
2026 ret = regulator_ena_gpio_ctrl(rdev, false);
2027 if (ret < 0)
2028 return ret;
2029 rdev->ena_gpio_state = 0;
2030 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002031
2032 } else if (rdev->desc->ops->disable) {
2033 ret = rdev->desc->ops->disable(rdev);
2034 if (ret != 0)
2035 return ret;
2036 }
2037
Guodong Xu871f5652014-08-13 19:33:40 +08002038 /* cares about last_off_jiffy only if off_on_delay is required by
2039 * device.
2040 */
2041 if (rdev->desc->off_on_delay)
2042 rdev->last_off_jiffy = jiffies;
2043
Mark Brown5c5659d2012-06-27 13:21:26 +01002044 trace_regulator_disable_complete(rdev_get_name(rdev));
2045
Mark Brown5c5659d2012-06-27 13:21:26 +01002046 return 0;
2047}
2048
Liam Girdwood414c70c2008-04-30 15:59:04 +01002049/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002050static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002051{
2052 int ret = 0;
2053
David Brownellcd94b502009-03-11 16:43:34 -08002054 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002055 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002056 return -EIO;
2057
Liam Girdwood414c70c2008-04-30 15:59:04 +01002058 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002059 if (rdev->use_count == 1 &&
2060 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002061
2062 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01002063 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002064 ret = _notifier_call_chain(rdev,
2065 REGULATOR_EVENT_PRE_DISABLE,
2066 NULL);
2067 if (ret & NOTIFY_STOP_MASK)
2068 return -EINVAL;
2069
Mark Brown5c5659d2012-06-27 13:21:26 +01002070 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002071 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002072 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002073 _notifier_call_chain(rdev,
2074 REGULATOR_EVENT_ABORT_DISABLE,
2075 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002076 return ret;
2077 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002078 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2079 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002080 }
2081
Liam Girdwood414c70c2008-04-30 15:59:04 +01002082 rdev->use_count = 0;
2083 } else if (rdev->use_count > 1) {
2084
2085 if (rdev->constraints &&
2086 (rdev->constraints->valid_ops_mask &
2087 REGULATOR_CHANGE_DRMS))
2088 drms_uA_update(rdev);
2089
2090 rdev->use_count--;
2091 }
Mark Brown3801b862011-06-09 16:22:22 +01002092
Liam Girdwood414c70c2008-04-30 15:59:04 +01002093 return ret;
2094}
2095
2096/**
2097 * regulator_disable - disable regulator output
2098 * @regulator: regulator source
2099 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002100 * Disable the regulator output voltage or current. Calls to
2101 * regulator_enable() must be balanced with calls to
2102 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002103 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002104 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002105 * devices have it enabled, the regulator device supports disabling and
2106 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002107 */
2108int regulator_disable(struct regulator *regulator)
2109{
David Brownell412aec62008-11-16 11:44:46 -08002110 struct regulator_dev *rdev = regulator->rdev;
2111 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002112
Mark Brown6492bc12012-04-19 13:19:07 +01002113 if (regulator->always_on)
2114 return 0;
2115
David Brownell412aec62008-11-16 11:44:46 -08002116 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002117 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002118 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002119
Mark Brown3801b862011-06-09 16:22:22 +01002120 if (ret == 0 && rdev->supply)
2121 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002122
Liam Girdwood414c70c2008-04-30 15:59:04 +01002123 return ret;
2124}
2125EXPORT_SYMBOL_GPL(regulator_disable);
2126
2127/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002128static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002129{
2130 int ret = 0;
2131
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002132 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2133 REGULATOR_EVENT_PRE_DISABLE, NULL);
2134 if (ret & NOTIFY_STOP_MASK)
2135 return -EINVAL;
2136
Markus Pargmann66fda752014-02-20 17:36:04 +01002137 ret = _regulator_do_disable(rdev);
2138 if (ret < 0) {
2139 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002140 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2141 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002142 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002143 }
2144
Markus Pargmann66fda752014-02-20 17:36:04 +01002145 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2146 REGULATOR_EVENT_DISABLE, NULL);
2147
2148 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002149}
2150
2151/**
2152 * regulator_force_disable - force disable regulator output
2153 * @regulator: regulator source
2154 *
2155 * Forcibly disable the regulator output voltage or current.
2156 * NOTE: this *will* disable the regulator output even if other consumer
2157 * devices have it enabled. This should be used for situations when device
2158 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2159 */
2160int regulator_force_disable(struct regulator *regulator)
2161{
Mark Brown82d15832011-05-09 11:41:02 +02002162 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002163 int ret;
2164
Mark Brown82d15832011-05-09 11:41:02 +02002165 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002166 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002167 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002168 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002169
Mark Brown3801b862011-06-09 16:22:22 +01002170 if (rdev->supply)
2171 while (rdev->open_count--)
2172 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002173
Liam Girdwood414c70c2008-04-30 15:59:04 +01002174 return ret;
2175}
2176EXPORT_SYMBOL_GPL(regulator_force_disable);
2177
Mark Brownda07ecd2011-09-11 09:53:50 +01002178static void regulator_disable_work(struct work_struct *work)
2179{
2180 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2181 disable_work.work);
2182 int count, i, ret;
2183
2184 mutex_lock(&rdev->mutex);
2185
2186 BUG_ON(!rdev->deferred_disables);
2187
2188 count = rdev->deferred_disables;
2189 rdev->deferred_disables = 0;
2190
2191 for (i = 0; i < count; i++) {
2192 ret = _regulator_disable(rdev);
2193 if (ret != 0)
2194 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2195 }
2196
2197 mutex_unlock(&rdev->mutex);
2198
2199 if (rdev->supply) {
2200 for (i = 0; i < count; i++) {
2201 ret = regulator_disable(rdev->supply);
2202 if (ret != 0) {
2203 rdev_err(rdev,
2204 "Supply disable failed: %d\n", ret);
2205 }
2206 }
2207 }
2208}
2209
2210/**
2211 * regulator_disable_deferred - disable regulator output with delay
2212 * @regulator: regulator source
2213 * @ms: miliseconds until the regulator is disabled
2214 *
2215 * Execute regulator_disable() on the regulator after a delay. This
2216 * is intended for use with devices that require some time to quiesce.
2217 *
2218 * NOTE: this will only disable the regulator output if no other consumer
2219 * devices have it enabled, the regulator device supports disabling and
2220 * machine constraints permit this operation.
2221 */
2222int regulator_disable_deferred(struct regulator *regulator, int ms)
2223{
2224 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002225 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002226
Mark Brown6492bc12012-04-19 13:19:07 +01002227 if (regulator->always_on)
2228 return 0;
2229
Mark Brown2b5a24a2012-09-07 11:00:53 +08002230 if (!ms)
2231 return regulator_disable(regulator);
2232
Mark Brownda07ecd2011-09-11 09:53:50 +01002233 mutex_lock(&rdev->mutex);
2234 rdev->deferred_disables++;
2235 mutex_unlock(&rdev->mutex);
2236
Mark Brown070260f2013-07-18 11:52:04 +01002237 ret = queue_delayed_work(system_power_efficient_wq,
2238 &rdev->disable_work,
2239 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002240 if (ret < 0)
2241 return ret;
2242 else
2243 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002244}
2245EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2246
Liam Girdwood414c70c2008-04-30 15:59:04 +01002247static int _regulator_is_enabled(struct regulator_dev *rdev)
2248{
Mark Brown65f73502012-06-27 14:14:38 +01002249 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002250 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002251 return rdev->ena_gpio_state;
2252
Mark Brown9a7f6a42010-02-11 17:22:45 +00002253 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002254 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002255 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002256
Mark Brown93325462009-08-03 18:49:56 +01002257 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002258}
2259
2260/**
2261 * regulator_is_enabled - is the regulator output enabled
2262 * @regulator: regulator source
2263 *
David Brownell412aec62008-11-16 11:44:46 -08002264 * Returns positive if the regulator driver backing the source/client
2265 * has requested that the device be enabled, zero if it hasn't, else a
2266 * negative errno code.
2267 *
2268 * Note that the device backing this regulator handle can have multiple
2269 * users, so it might be enabled even if regulator_enable() was never
2270 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002271 */
2272int regulator_is_enabled(struct regulator *regulator)
2273{
Mark Brown93325462009-08-03 18:49:56 +01002274 int ret;
2275
Mark Brown6492bc12012-04-19 13:19:07 +01002276 if (regulator->always_on)
2277 return 1;
2278
Mark Brown93325462009-08-03 18:49:56 +01002279 mutex_lock(&regulator->rdev->mutex);
2280 ret = _regulator_is_enabled(regulator->rdev);
2281 mutex_unlock(&regulator->rdev->mutex);
2282
2283 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002284}
2285EXPORT_SYMBOL_GPL(regulator_is_enabled);
2286
2287/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002288 * regulator_can_change_voltage - check if regulator can change voltage
2289 * @regulator: regulator source
2290 *
2291 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002292 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002293 * or dummy regulators and disabling voltage change logic in the client
2294 * driver.
2295 */
2296int regulator_can_change_voltage(struct regulator *regulator)
2297{
2298 struct regulator_dev *rdev = regulator->rdev;
2299
2300 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002301 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2302 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2303 return 1;
2304
2305 if (rdev->desc->continuous_voltage_range &&
2306 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2307 rdev->constraints->min_uV != rdev->constraints->max_uV)
2308 return 1;
2309 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002310
2311 return 0;
2312}
2313EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2314
2315/**
David Brownell4367cfd2009-02-26 11:48:36 -08002316 * regulator_count_voltages - count regulator_list_voltage() selectors
2317 * @regulator: regulator source
2318 *
2319 * Returns number of selectors, or negative errno. Selectors are
2320 * numbered starting at zero, and typically correspond to bitfields
2321 * in hardware registers.
2322 */
2323int regulator_count_voltages(struct regulator *regulator)
2324{
2325 struct regulator_dev *rdev = regulator->rdev;
2326
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002327 if (rdev->desc->n_voltages)
2328 return rdev->desc->n_voltages;
2329
2330 if (!rdev->supply)
2331 return -EINVAL;
2332
2333 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002334}
2335EXPORT_SYMBOL_GPL(regulator_count_voltages);
2336
2337/**
2338 * regulator_list_voltage - enumerate supported voltages
2339 * @regulator: regulator source
2340 * @selector: identify voltage to list
2341 * Context: can sleep
2342 *
2343 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002344 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002345 * negative errno.
2346 */
2347int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2348{
Guodong Xu272e2312014-08-13 19:33:38 +08002349 struct regulator_dev *rdev = regulator->rdev;
2350 const struct regulator_ops *ops = rdev->desc->ops;
2351 int ret;
David Brownell4367cfd2009-02-26 11:48:36 -08002352
Guennadi Liakhovetskif4460432013-11-13 12:33:00 +01002353 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2354 return rdev->desc->fixed_uV;
2355
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002356 if (ops->list_voltage) {
2357 if (selector >= rdev->desc->n_voltages)
2358 return -EINVAL;
2359 mutex_lock(&rdev->mutex);
2360 ret = ops->list_voltage(rdev, selector);
2361 mutex_unlock(&rdev->mutex);
2362 } else if (rdev->supply) {
2363 ret = regulator_list_voltage(rdev->supply, selector);
2364 } else {
David Brownell4367cfd2009-02-26 11:48:36 -08002365 return -EINVAL;
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002366 }
David Brownell4367cfd2009-02-26 11:48:36 -08002367
2368 if (ret > 0) {
2369 if (ret < rdev->constraints->min_uV)
2370 ret = 0;
2371 else if (ret > rdev->constraints->max_uV)
2372 ret = 0;
2373 }
2374
2375 return ret;
2376}
2377EXPORT_SYMBOL_GPL(regulator_list_voltage);
2378
2379/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002380 * regulator_get_regmap - get the regulator's register map
2381 * @regulator: regulator source
2382 *
2383 * Returns the register map for the given regulator, or an ERR_PTR value
2384 * if the regulator doesn't use regmap.
2385 */
2386struct regmap *regulator_get_regmap(struct regulator *regulator)
2387{
2388 struct regmap *map = regulator->rdev->regmap;
2389
2390 return map ? map : ERR_PTR(-EOPNOTSUPP);
2391}
2392
2393/**
2394 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2395 * @regulator: regulator source
2396 * @vsel_reg: voltage selector register, output parameter
2397 * @vsel_mask: mask for voltage selector bitfield, output parameter
2398 *
2399 * Returns the hardware register offset and bitmask used for setting the
2400 * regulator voltage. This might be useful when configuring voltage-scaling
2401 * hardware or firmware that can make I2C requests behind the kernel's back,
2402 * for example.
2403 *
2404 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2405 * and 0 is returned, otherwise a negative errno is returned.
2406 */
2407int regulator_get_hardware_vsel_register(struct regulator *regulator,
2408 unsigned *vsel_reg,
2409 unsigned *vsel_mask)
2410{
Guodong Xu39f54602014-08-19 18:07:41 +08002411 struct regulator_dev *rdev = regulator->rdev;
2412 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002413
2414 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2415 return -EOPNOTSUPP;
2416
2417 *vsel_reg = rdev->desc->vsel_reg;
2418 *vsel_mask = rdev->desc->vsel_mask;
2419
2420 return 0;
2421}
2422EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2423
2424/**
2425 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2426 * @regulator: regulator source
2427 * @selector: identify voltage to list
2428 *
2429 * Converts the selector to a hardware-specific voltage selector that can be
2430 * directly written to the regulator registers. The address of the voltage
2431 * register can be determined by calling @regulator_get_hardware_vsel_register.
2432 *
2433 * On error a negative errno is returned.
2434 */
2435int regulator_list_hardware_vsel(struct regulator *regulator,
2436 unsigned selector)
2437{
Guodong Xu39f54602014-08-19 18:07:41 +08002438 struct regulator_dev *rdev = regulator->rdev;
2439 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002440
2441 if (selector >= rdev->desc->n_voltages)
2442 return -EINVAL;
2443 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2444 return -EOPNOTSUPP;
2445
2446 return selector;
2447}
2448EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2449
2450/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002451 * regulator_get_linear_step - return the voltage step size between VSEL values
2452 * @regulator: regulator source
2453 *
2454 * Returns the voltage step size between VSEL values for linear
2455 * regulators, or return 0 if the regulator isn't a linear regulator.
2456 */
2457unsigned int regulator_get_linear_step(struct regulator *regulator)
2458{
2459 struct regulator_dev *rdev = regulator->rdev;
2460
2461 return rdev->desc->uV_step;
2462}
2463EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2464
2465/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002466 * regulator_is_supported_voltage - check if a voltage range can be supported
2467 *
2468 * @regulator: Regulator to check.
2469 * @min_uV: Minimum required voltage in uV.
2470 * @max_uV: Maximum required voltage in uV.
2471 *
2472 * Returns a boolean or a negative error code.
2473 */
2474int regulator_is_supported_voltage(struct regulator *regulator,
2475 int min_uV, int max_uV)
2476{
Mark Brownc5f39392012-07-02 15:00:18 +01002477 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002478 int i, voltages, ret;
2479
Mark Brownc5f39392012-07-02 15:00:18 +01002480 /* If we can't change voltage check the current voltage */
2481 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2482 ret = regulator_get_voltage(regulator);
2483 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002484 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002485 else
2486 return ret;
2487 }
2488
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002489 /* Any voltage within constrains range is fine? */
2490 if (rdev->desc->continuous_voltage_range)
2491 return min_uV >= rdev->constraints->min_uV &&
2492 max_uV <= rdev->constraints->max_uV;
2493
Mark Browna7a1ad92009-07-21 16:00:24 +01002494 ret = regulator_count_voltages(regulator);
2495 if (ret < 0)
2496 return ret;
2497 voltages = ret;
2498
2499 for (i = 0; i < voltages; i++) {
2500 ret = regulator_list_voltage(regulator, i);
2501
2502 if (ret >= min_uV && ret <= max_uV)
2503 return 1;
2504 }
2505
2506 return 0;
2507}
Mark Browna398eaa2011-12-28 12:48:45 +00002508EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002509
Heiko Stübner71795692014-08-28 12:36:04 -07002510static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2511 int min_uV, int max_uV,
2512 unsigned *selector)
2513{
2514 struct pre_voltage_change_data data;
2515 int ret;
2516
2517 data.old_uV = _regulator_get_voltage(rdev);
2518 data.min_uV = min_uV;
2519 data.max_uV = max_uV;
2520 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2521 &data);
2522 if (ret & NOTIFY_STOP_MASK)
2523 return -EINVAL;
2524
2525 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2526 if (ret >= 0)
2527 return ret;
2528
2529 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2530 (void *)data.old_uV);
2531
2532 return ret;
2533}
2534
2535static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2536 int uV, unsigned selector)
2537{
2538 struct pre_voltage_change_data data;
2539 int ret;
2540
2541 data.old_uV = _regulator_get_voltage(rdev);
2542 data.min_uV = uV;
2543 data.max_uV = uV;
2544 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2545 &data);
2546 if (ret & NOTIFY_STOP_MASK)
2547 return -EINVAL;
2548
2549 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2550 if (ret >= 0)
2551 return ret;
2552
2553 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2554 (void *)data.old_uV);
2555
2556 return ret;
2557}
2558
Mark Brown75790252010-12-12 14:25:50 +00002559static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2560 int min_uV, int max_uV)
2561{
2562 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002563 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002564 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002565 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002566 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002567
2568 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2569
Mark Brownbf5892a2011-05-08 22:13:37 +01002570 min_uV += rdev->constraints->uV_offset;
2571 max_uV += rdev->constraints->uV_offset;
2572
Axel Lineba41a52012-04-04 10:32:10 +08002573 /*
2574 * If we can't obtain the old selector there is not enough
2575 * info to call set_voltage_time_sel().
2576 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002577 if (_regulator_is_enabled(rdev) &&
2578 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002579 rdev->desc->ops->get_voltage_sel) {
2580 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2581 if (old_selector < 0)
2582 return old_selector;
2583 }
2584
Mark Brown75790252010-12-12 14:25:50 +00002585 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002586 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2587 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002588
2589 if (ret >= 0) {
2590 if (rdev->desc->ops->list_voltage)
2591 best_val = rdev->desc->ops->list_voltage(rdev,
2592 selector);
2593 else
2594 best_val = _regulator_get_voltage(rdev);
2595 }
2596
Mark Browne8eef822010-12-12 14:36:17 +00002597 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002598 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002599 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2600 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002601 } else {
2602 if (rdev->desc->ops->list_voltage ==
2603 regulator_list_voltage_linear)
2604 ret = regulator_map_voltage_linear(rdev,
2605 min_uV, max_uV);
Axel Lin36698622014-05-24 11:10:43 +08002606 else if (rdev->desc->ops->list_voltage ==
2607 regulator_list_voltage_linear_range)
2608 ret = regulator_map_voltage_linear_range(rdev,
2609 min_uV, max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002610 else
2611 ret = regulator_map_voltage_iterate(rdev,
2612 min_uV, max_uV);
2613 }
Mark Browne8eef822010-12-12 14:36:17 +00002614
Mark Browne843fc42012-05-09 21:16:06 +01002615 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002616 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2617 if (min_uV <= best_val && max_uV >= best_val) {
2618 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002619 if (old_selector == selector)
2620 ret = 0;
2621 else
Heiko Stübner71795692014-08-28 12:36:04 -07002622 ret = _regulator_call_set_voltage_sel(
2623 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002624 } else {
2625 ret = -EINVAL;
2626 }
Mark Browne8eef822010-12-12 14:36:17 +00002627 }
Mark Brown75790252010-12-12 14:25:50 +00002628 } else {
2629 ret = -EINVAL;
2630 }
2631
Axel Lineba41a52012-04-04 10:32:10 +08002632 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302633 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2634 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002635
2636 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2637 old_selector, selector);
2638 if (delay < 0) {
2639 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2640 delay);
2641 delay = 0;
2642 }
Axel Lineba41a52012-04-04 10:32:10 +08002643
Philip Rakity8b96de32012-06-14 15:07:56 -07002644 /* Insert any necessary delays */
2645 if (delay >= 1000) {
2646 mdelay(delay / 1000);
2647 udelay(delay % 1000);
2648 } else if (delay) {
2649 udelay(delay);
2650 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002651 }
2652
Axel Lin2f6c7972012-08-06 23:44:19 +08002653 if (ret == 0 && best_val >= 0) {
2654 unsigned long data = best_val;
2655
Mark Brownded06a52010-12-16 13:59:10 +00002656 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002657 (void *)data);
2658 }
Mark Brownded06a52010-12-16 13:59:10 +00002659
Axel Lineba41a52012-04-04 10:32:10 +08002660 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002661
2662 return ret;
2663}
2664
Mark Browna7a1ad92009-07-21 16:00:24 +01002665/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002666 * regulator_set_voltage - set regulator output voltage
2667 * @regulator: regulator source
2668 * @min_uV: Minimum required voltage in uV
2669 * @max_uV: Maximum acceptable voltage in uV
2670 *
2671 * Sets a voltage regulator to the desired output voltage. This can be set
2672 * during any regulator state. IOW, regulator can be disabled or enabled.
2673 *
2674 * If the regulator is enabled then the voltage will change to the new value
2675 * immediately otherwise if the regulator is disabled the regulator will
2676 * output at the new voltage when enabled.
2677 *
2678 * NOTE: If the regulator is shared between several devices then the lowest
2679 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002680 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002681 * calling this function otherwise this call will fail.
2682 */
2683int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2684{
2685 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002686 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002687 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002688 int current_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002689
2690 mutex_lock(&rdev->mutex);
2691
Mark Brown95a3c232010-12-16 15:49:37 +00002692 /* If we're setting the same range as last time the change
2693 * should be a noop (some cpufreq implementations use the same
2694 * voltage for multiple frequencies, for example).
2695 */
2696 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2697 goto out;
2698
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002699 /* If we're trying to set a range that overlaps the current voltage,
2700 * return succesfully even though the regulator does not support
2701 * changing the voltage.
2702 */
2703 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2704 current_uV = _regulator_get_voltage(rdev);
2705 if (min_uV <= current_uV && current_uV <= max_uV) {
2706 regulator->min_uV = min_uV;
2707 regulator->max_uV = max_uV;
2708 goto out;
2709 }
2710 }
2711
Liam Girdwood414c70c2008-04-30 15:59:04 +01002712 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002713 if (!rdev->desc->ops->set_voltage &&
2714 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002715 ret = -EINVAL;
2716 goto out;
2717 }
2718
2719 /* constraints check */
2720 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2721 if (ret < 0)
2722 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002723
Paolo Pisati92d7a552012-12-13 10:13:00 +01002724 /* restore original values in case of error */
2725 old_min_uV = regulator->min_uV;
2726 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002727 regulator->min_uV = min_uV;
2728 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002729
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002730 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2731 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002732 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002733
Mark Brown75790252010-12-12 14:25:50 +00002734 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002735 if (ret < 0)
2736 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002737
Liam Girdwood414c70c2008-04-30 15:59:04 +01002738out:
2739 mutex_unlock(&rdev->mutex);
2740 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002741out2:
2742 regulator->min_uV = old_min_uV;
2743 regulator->max_uV = old_max_uV;
2744 mutex_unlock(&rdev->mutex);
2745 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002746}
2747EXPORT_SYMBOL_GPL(regulator_set_voltage);
2748
Mark Brown606a2562010-12-16 15:49:36 +00002749/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002750 * regulator_set_voltage_time - get raise/fall time
2751 * @regulator: regulator source
2752 * @old_uV: starting voltage in microvolts
2753 * @new_uV: target voltage in microvolts
2754 *
2755 * Provided with the starting and ending voltage, this function attempts to
2756 * calculate the time in microseconds required to rise or fall to this new
2757 * voltage.
2758 */
2759int regulator_set_voltage_time(struct regulator *regulator,
2760 int old_uV, int new_uV)
2761{
Guodong Xu272e2312014-08-13 19:33:38 +08002762 struct regulator_dev *rdev = regulator->rdev;
2763 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002764 int old_sel = -1;
2765 int new_sel = -1;
2766 int voltage;
2767 int i;
2768
2769 /* Currently requires operations to do this */
2770 if (!ops->list_voltage || !ops->set_voltage_time_sel
2771 || !rdev->desc->n_voltages)
2772 return -EINVAL;
2773
2774 for (i = 0; i < rdev->desc->n_voltages; i++) {
2775 /* We only look for exact voltage matches here */
2776 voltage = regulator_list_voltage(regulator, i);
2777 if (voltage < 0)
2778 return -EINVAL;
2779 if (voltage == 0)
2780 continue;
2781 if (voltage == old_uV)
2782 old_sel = i;
2783 if (voltage == new_uV)
2784 new_sel = i;
2785 }
2786
2787 if (old_sel < 0 || new_sel < 0)
2788 return -EINVAL;
2789
2790 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2791}
2792EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2793
2794/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002795 * regulator_set_voltage_time_sel - get raise/fall time
2796 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302797 * @old_selector: selector for starting voltage
2798 * @new_selector: selector for target voltage
2799 *
2800 * Provided with the starting and target voltage selectors, this function
2801 * returns time in microseconds required to rise or fall to this new voltage
2802 *
Axel Linf11d08c2012-06-19 09:38:45 +08002803 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002804 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302805 */
2806int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2807 unsigned int old_selector,
2808 unsigned int new_selector)
2809{
Axel Lin398715a2012-06-18 10:11:28 +08002810 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002811 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002812
2813 if (rdev->constraints->ramp_delay)
2814 ramp_delay = rdev->constraints->ramp_delay;
2815 else if (rdev->desc->ramp_delay)
2816 ramp_delay = rdev->desc->ramp_delay;
2817
2818 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302819 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002820 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302821 }
Axel Lin398715a2012-06-18 10:11:28 +08002822
Axel Linf11d08c2012-06-19 09:38:45 +08002823 /* sanity check */
2824 if (!rdev->desc->ops->list_voltage)
2825 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002826
Axel Linf11d08c2012-06-19 09:38:45 +08002827 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2828 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2829
2830 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302831}
Mark Brownb19dbf72012-06-23 11:34:20 +01002832EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302833
2834/**
Mark Brown606a2562010-12-16 15:49:36 +00002835 * regulator_sync_voltage - re-apply last regulator output voltage
2836 * @regulator: regulator source
2837 *
2838 * Re-apply the last configured voltage. This is intended to be used
2839 * where some external control source the consumer is cooperating with
2840 * has caused the configured voltage to change.
2841 */
2842int regulator_sync_voltage(struct regulator *regulator)
2843{
2844 struct regulator_dev *rdev = regulator->rdev;
2845 int ret, min_uV, max_uV;
2846
2847 mutex_lock(&rdev->mutex);
2848
2849 if (!rdev->desc->ops->set_voltage &&
2850 !rdev->desc->ops->set_voltage_sel) {
2851 ret = -EINVAL;
2852 goto out;
2853 }
2854
2855 /* This is only going to work if we've had a voltage configured. */
2856 if (!regulator->min_uV && !regulator->max_uV) {
2857 ret = -EINVAL;
2858 goto out;
2859 }
2860
2861 min_uV = regulator->min_uV;
2862 max_uV = regulator->max_uV;
2863
2864 /* This should be a paranoia check... */
2865 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2866 if (ret < 0)
2867 goto out;
2868
2869 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2870 if (ret < 0)
2871 goto out;
2872
2873 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2874
2875out:
2876 mutex_unlock(&rdev->mutex);
2877 return ret;
2878}
2879EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2880
Liam Girdwood414c70c2008-04-30 15:59:04 +01002881static int _regulator_get_voltage(struct regulator_dev *rdev)
2882{
Mark Brownbf5892a2011-05-08 22:13:37 +01002883 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002884
2885 if (rdev->desc->ops->get_voltage_sel) {
2886 sel = rdev->desc->ops->get_voltage_sel(rdev);
2887 if (sel < 0)
2888 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002889 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002890 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002891 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002892 } else if (rdev->desc->ops->list_voltage) {
2893 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05302894 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
2895 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02002896 } else if (rdev->supply) {
2897 ret = regulator_get_voltage(rdev->supply);
Axel Lincb220d12011-05-23 20:08:10 +08002898 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002899 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002900 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002901
Axel Lincb220d12011-05-23 20:08:10 +08002902 if (ret < 0)
2903 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002904 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002905}
2906
2907/**
2908 * regulator_get_voltage - get regulator output voltage
2909 * @regulator: regulator source
2910 *
2911 * This returns the current regulator voltage in uV.
2912 *
2913 * NOTE: If the regulator is disabled it will return the voltage value. This
2914 * function should not be used to determine regulator state.
2915 */
2916int regulator_get_voltage(struct regulator *regulator)
2917{
2918 int ret;
2919
2920 mutex_lock(&regulator->rdev->mutex);
2921
2922 ret = _regulator_get_voltage(regulator->rdev);
2923
2924 mutex_unlock(&regulator->rdev->mutex);
2925
2926 return ret;
2927}
2928EXPORT_SYMBOL_GPL(regulator_get_voltage);
2929
2930/**
2931 * regulator_set_current_limit - set regulator output current limit
2932 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002933 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002934 * @max_uA: Maximum supported current in uA
2935 *
2936 * Sets current sink to the desired output current. This can be set during
2937 * any regulator state. IOW, regulator can be disabled or enabled.
2938 *
2939 * If the regulator is enabled then the current will change to the new value
2940 * immediately otherwise if the regulator is disabled the regulator will
2941 * output at the new current when enabled.
2942 *
2943 * NOTE: Regulator system constraints must be set for this regulator before
2944 * calling this function otherwise this call will fail.
2945 */
2946int regulator_set_current_limit(struct regulator *regulator,
2947 int min_uA, int max_uA)
2948{
2949 struct regulator_dev *rdev = regulator->rdev;
2950 int ret;
2951
2952 mutex_lock(&rdev->mutex);
2953
2954 /* sanity check */
2955 if (!rdev->desc->ops->set_current_limit) {
2956 ret = -EINVAL;
2957 goto out;
2958 }
2959
2960 /* constraints check */
2961 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2962 if (ret < 0)
2963 goto out;
2964
2965 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2966out:
2967 mutex_unlock(&rdev->mutex);
2968 return ret;
2969}
2970EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2971
2972static int _regulator_get_current_limit(struct regulator_dev *rdev)
2973{
2974 int ret;
2975
2976 mutex_lock(&rdev->mutex);
2977
2978 /* sanity check */
2979 if (!rdev->desc->ops->get_current_limit) {
2980 ret = -EINVAL;
2981 goto out;
2982 }
2983
2984 ret = rdev->desc->ops->get_current_limit(rdev);
2985out:
2986 mutex_unlock(&rdev->mutex);
2987 return ret;
2988}
2989
2990/**
2991 * regulator_get_current_limit - get regulator output current
2992 * @regulator: regulator source
2993 *
2994 * This returns the current supplied by the specified current sink in uA.
2995 *
2996 * NOTE: If the regulator is disabled it will return the current value. This
2997 * function should not be used to determine regulator state.
2998 */
2999int regulator_get_current_limit(struct regulator *regulator)
3000{
3001 return _regulator_get_current_limit(regulator->rdev);
3002}
3003EXPORT_SYMBOL_GPL(regulator_get_current_limit);
3004
3005/**
3006 * regulator_set_mode - set regulator operating mode
3007 * @regulator: regulator source
3008 * @mode: operating mode - one of the REGULATOR_MODE constants
3009 *
3010 * Set regulator operating mode to increase regulator efficiency or improve
3011 * regulation performance.
3012 *
3013 * NOTE: Regulator system constraints must be set for this regulator before
3014 * calling this function otherwise this call will fail.
3015 */
3016int regulator_set_mode(struct regulator *regulator, unsigned int mode)
3017{
3018 struct regulator_dev *rdev = regulator->rdev;
3019 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303020 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003021
3022 mutex_lock(&rdev->mutex);
3023
3024 /* sanity check */
3025 if (!rdev->desc->ops->set_mode) {
3026 ret = -EINVAL;
3027 goto out;
3028 }
3029
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303030 /* return if the same mode is requested */
3031 if (rdev->desc->ops->get_mode) {
3032 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3033 if (regulator_curr_mode == mode) {
3034 ret = 0;
3035 goto out;
3036 }
3037 }
3038
Liam Girdwood414c70c2008-04-30 15:59:04 +01003039 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003040 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003041 if (ret < 0)
3042 goto out;
3043
3044 ret = rdev->desc->ops->set_mode(rdev, mode);
3045out:
3046 mutex_unlock(&rdev->mutex);
3047 return ret;
3048}
3049EXPORT_SYMBOL_GPL(regulator_set_mode);
3050
3051static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3052{
3053 int ret;
3054
3055 mutex_lock(&rdev->mutex);
3056
3057 /* sanity check */
3058 if (!rdev->desc->ops->get_mode) {
3059 ret = -EINVAL;
3060 goto out;
3061 }
3062
3063 ret = rdev->desc->ops->get_mode(rdev);
3064out:
3065 mutex_unlock(&rdev->mutex);
3066 return ret;
3067}
3068
3069/**
3070 * regulator_get_mode - get regulator operating mode
3071 * @regulator: regulator source
3072 *
3073 * Get the current regulator operating mode.
3074 */
3075unsigned int regulator_get_mode(struct regulator *regulator)
3076{
3077 return _regulator_get_mode(regulator->rdev);
3078}
3079EXPORT_SYMBOL_GPL(regulator_get_mode);
3080
3081/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003082 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003083 * @regulator: regulator source
3084 * @uA_load: load current
3085 *
3086 * Notifies the regulator core of a new device load. This is then used by
3087 * DRMS (if enabled by constraints) to set the most efficient regulator
3088 * operating mode for the new regulator loading.
3089 *
3090 * Consumer devices notify their supply regulator of the maximum power
3091 * they will require (can be taken from device datasheet in the power
3092 * consumption tables) when they change operational status and hence power
3093 * state. Examples of operational state changes that can affect power
3094 * consumption are :-
3095 *
3096 * o Device is opened / closed.
3097 * o Device I/O is about to begin or has just finished.
3098 * o Device is idling in between work.
3099 *
3100 * This information is also exported via sysfs to userspace.
3101 *
3102 * DRMS will sum the total requested load on the regulator and change
3103 * to the most efficient operating mode if platform constraints allow.
3104 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003105 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003106 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003107int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003108{
3109 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003110 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003111
Liam Girdwood414c70c2008-04-30 15:59:04 +01003112 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003113 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003114 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003115 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003116
Liam Girdwood414c70c2008-04-30 15:59:04 +01003117 return ret;
3118}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003119EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003120
3121/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003122 * regulator_allow_bypass - allow the regulator to go into bypass mode
3123 *
3124 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003125 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003126 *
3127 * Allow the regulator to go into bypass mode if all other consumers
3128 * for the regulator also enable bypass mode and the machine
3129 * constraints allow this. Bypass mode means that the regulator is
3130 * simply passing the input directly to the output with no regulation.
3131 */
3132int regulator_allow_bypass(struct regulator *regulator, bool enable)
3133{
3134 struct regulator_dev *rdev = regulator->rdev;
3135 int ret = 0;
3136
3137 if (!rdev->desc->ops->set_bypass)
3138 return 0;
3139
3140 if (rdev->constraints &&
3141 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3142 return 0;
3143
3144 mutex_lock(&rdev->mutex);
3145
3146 if (enable && !regulator->bypass) {
3147 rdev->bypass_count++;
3148
3149 if (rdev->bypass_count == rdev->open_count) {
3150 ret = rdev->desc->ops->set_bypass(rdev, enable);
3151 if (ret != 0)
3152 rdev->bypass_count--;
3153 }
3154
3155 } else if (!enable && regulator->bypass) {
3156 rdev->bypass_count--;
3157
3158 if (rdev->bypass_count != rdev->open_count) {
3159 ret = rdev->desc->ops->set_bypass(rdev, enable);
3160 if (ret != 0)
3161 rdev->bypass_count++;
3162 }
3163 }
3164
3165 if (ret == 0)
3166 regulator->bypass = enable;
3167
3168 mutex_unlock(&rdev->mutex);
3169
3170 return ret;
3171}
3172EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3173
3174/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003175 * regulator_register_notifier - register regulator event notifier
3176 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003177 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003178 *
3179 * Register notifier block to receive regulator events.
3180 */
3181int regulator_register_notifier(struct regulator *regulator,
3182 struct notifier_block *nb)
3183{
3184 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3185 nb);
3186}
3187EXPORT_SYMBOL_GPL(regulator_register_notifier);
3188
3189/**
3190 * regulator_unregister_notifier - unregister regulator event notifier
3191 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003192 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003193 *
3194 * Unregister regulator event notifier block.
3195 */
3196int regulator_unregister_notifier(struct regulator *regulator,
3197 struct notifier_block *nb)
3198{
3199 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3200 nb);
3201}
3202EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3203
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003204/* notify regulator consumers and downstream regulator consumers.
3205 * Note mutex must be held by caller.
3206 */
Heiko Stübner71795692014-08-28 12:36:04 -07003207static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003208 unsigned long event, void *data)
3209{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003210 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003211 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003212}
3213
3214/**
3215 * regulator_bulk_get - get multiple regulator consumers
3216 *
3217 * @dev: Device to supply
3218 * @num_consumers: Number of consumers to register
3219 * @consumers: Configuration of consumers; clients are stored here.
3220 *
3221 * @return 0 on success, an errno on failure.
3222 *
3223 * This helper function allows drivers to get several regulator
3224 * consumers in one operation. If any of the regulators cannot be
3225 * acquired then any regulators that were allocated will be freed
3226 * before returning to the caller.
3227 */
3228int regulator_bulk_get(struct device *dev, int num_consumers,
3229 struct regulator_bulk_data *consumers)
3230{
3231 int i;
3232 int ret;
3233
3234 for (i = 0; i < num_consumers; i++)
3235 consumers[i].consumer = NULL;
3236
3237 for (i = 0; i < num_consumers; i++) {
3238 consumers[i].consumer = regulator_get(dev,
3239 consumers[i].supply);
3240 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003241 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003242 dev_err(dev, "Failed to get supply '%s': %d\n",
3243 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003244 consumers[i].consumer = NULL;
3245 goto err;
3246 }
3247 }
3248
3249 return 0;
3250
3251err:
Axel Linb29c7692012-02-20 10:32:16 +08003252 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003253 regulator_put(consumers[i].consumer);
3254
3255 return ret;
3256}
3257EXPORT_SYMBOL_GPL(regulator_bulk_get);
3258
Mark Brownf21e0e82011-05-24 08:12:40 +08003259static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3260{
3261 struct regulator_bulk_data *bulk = data;
3262
3263 bulk->ret = regulator_enable(bulk->consumer);
3264}
3265
Liam Girdwood414c70c2008-04-30 15:59:04 +01003266/**
3267 * regulator_bulk_enable - enable multiple regulator consumers
3268 *
3269 * @num_consumers: Number of consumers
3270 * @consumers: Consumer data; clients are stored here.
3271 * @return 0 on success, an errno on failure
3272 *
3273 * This convenience API allows consumers to enable multiple regulator
3274 * clients in a single API call. If any consumers cannot be enabled
3275 * then any others that were enabled will be disabled again prior to
3276 * return.
3277 */
3278int regulator_bulk_enable(int num_consumers,
3279 struct regulator_bulk_data *consumers)
3280{
Dan Williams2955b472012-07-09 19:33:25 -07003281 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003282 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003283 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003284
Mark Brown6492bc12012-04-19 13:19:07 +01003285 for (i = 0; i < num_consumers; i++) {
3286 if (consumers[i].consumer->always_on)
3287 consumers[i].ret = 0;
3288 else
3289 async_schedule_domain(regulator_bulk_enable_async,
3290 &consumers[i], &async_domain);
3291 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003292
3293 async_synchronize_full_domain(&async_domain);
3294
3295 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003296 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003297 if (consumers[i].ret != 0) {
3298 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003299 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003300 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003301 }
3302
3303 return 0;
3304
3305err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003306 for (i = 0; i < num_consumers; i++) {
3307 if (consumers[i].ret < 0)
3308 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3309 consumers[i].ret);
3310 else
3311 regulator_disable(consumers[i].consumer);
3312 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003313
3314 return ret;
3315}
3316EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3317
3318/**
3319 * regulator_bulk_disable - disable multiple regulator consumers
3320 *
3321 * @num_consumers: Number of consumers
3322 * @consumers: Consumer data; clients are stored here.
3323 * @return 0 on success, an errno on failure
3324 *
3325 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003326 * clients in a single API call. If any consumers cannot be disabled
3327 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003328 * return.
3329 */
3330int regulator_bulk_disable(int num_consumers,
3331 struct regulator_bulk_data *consumers)
3332{
3333 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003334 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003335
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003336 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003337 ret = regulator_disable(consumers[i].consumer);
3338 if (ret != 0)
3339 goto err;
3340 }
3341
3342 return 0;
3343
3344err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003345 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003346 for (++i; i < num_consumers; ++i) {
3347 r = regulator_enable(consumers[i].consumer);
3348 if (r != 0)
3349 pr_err("Failed to reename %s: %d\n",
3350 consumers[i].supply, r);
3351 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003352
3353 return ret;
3354}
3355EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3356
3357/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003358 * regulator_bulk_force_disable - force disable multiple regulator consumers
3359 *
3360 * @num_consumers: Number of consumers
3361 * @consumers: Consumer data; clients are stored here.
3362 * @return 0 on success, an errno on failure
3363 *
3364 * This convenience API allows consumers to forcibly disable multiple regulator
3365 * clients in a single API call.
3366 * NOTE: This should be used for situations when device damage will
3367 * likely occur if the regulators are not disabled (e.g. over temp).
3368 * Although regulator_force_disable function call for some consumers can
3369 * return error numbers, the function is called for all consumers.
3370 */
3371int regulator_bulk_force_disable(int num_consumers,
3372 struct regulator_bulk_data *consumers)
3373{
3374 int i;
3375 int ret;
3376
3377 for (i = 0; i < num_consumers; i++)
3378 consumers[i].ret =
3379 regulator_force_disable(consumers[i].consumer);
3380
3381 for (i = 0; i < num_consumers; i++) {
3382 if (consumers[i].ret != 0) {
3383 ret = consumers[i].ret;
3384 goto out;
3385 }
3386 }
3387
3388 return 0;
3389out:
3390 return ret;
3391}
3392EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3393
3394/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003395 * regulator_bulk_free - free multiple regulator consumers
3396 *
3397 * @num_consumers: Number of consumers
3398 * @consumers: Consumer data; clients are stored here.
3399 *
3400 * This convenience API allows consumers to free multiple regulator
3401 * clients in a single API call.
3402 */
3403void regulator_bulk_free(int num_consumers,
3404 struct regulator_bulk_data *consumers)
3405{
3406 int i;
3407
3408 for (i = 0; i < num_consumers; i++) {
3409 regulator_put(consumers[i].consumer);
3410 consumers[i].consumer = NULL;
3411 }
3412}
3413EXPORT_SYMBOL_GPL(regulator_bulk_free);
3414
3415/**
3416 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003417 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003418 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003419 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003420 *
3421 * Called by regulator drivers to notify clients a regulator event has
3422 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003423 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003424 */
3425int regulator_notifier_call_chain(struct regulator_dev *rdev,
3426 unsigned long event, void *data)
3427{
3428 _notifier_call_chain(rdev, event, data);
3429 return NOTIFY_DONE;
3430
3431}
3432EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3433
Mark Brownbe721972009-08-04 20:09:52 +02003434/**
3435 * regulator_mode_to_status - convert a regulator mode into a status
3436 *
3437 * @mode: Mode to convert
3438 *
3439 * Convert a regulator mode into a status.
3440 */
3441int regulator_mode_to_status(unsigned int mode)
3442{
3443 switch (mode) {
3444 case REGULATOR_MODE_FAST:
3445 return REGULATOR_STATUS_FAST;
3446 case REGULATOR_MODE_NORMAL:
3447 return REGULATOR_STATUS_NORMAL;
3448 case REGULATOR_MODE_IDLE:
3449 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003450 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003451 return REGULATOR_STATUS_STANDBY;
3452 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003453 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003454 }
3455}
3456EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3457
Takashi Iwai39f802d2015-01-30 20:29:31 +01003458static struct attribute *regulator_dev_attrs[] = {
3459 &dev_attr_name.attr,
3460 &dev_attr_num_users.attr,
3461 &dev_attr_type.attr,
3462 &dev_attr_microvolts.attr,
3463 &dev_attr_microamps.attr,
3464 &dev_attr_opmode.attr,
3465 &dev_attr_state.attr,
3466 &dev_attr_status.attr,
3467 &dev_attr_bypass.attr,
3468 &dev_attr_requested_microamps.attr,
3469 &dev_attr_min_microvolts.attr,
3470 &dev_attr_max_microvolts.attr,
3471 &dev_attr_min_microamps.attr,
3472 &dev_attr_max_microamps.attr,
3473 &dev_attr_suspend_standby_state.attr,
3474 &dev_attr_suspend_mem_state.attr,
3475 &dev_attr_suspend_disk_state.attr,
3476 &dev_attr_suspend_standby_microvolts.attr,
3477 &dev_attr_suspend_mem_microvolts.attr,
3478 &dev_attr_suspend_disk_microvolts.attr,
3479 &dev_attr_suspend_standby_mode.attr,
3480 &dev_attr_suspend_mem_mode.attr,
3481 &dev_attr_suspend_disk_mode.attr,
3482 NULL
3483};
3484
David Brownell7ad68e22008-11-11 17:39:02 -08003485/*
3486 * To avoid cluttering sysfs (and memory) with useless state, only
3487 * create attributes that can be meaningfully displayed.
3488 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003489static umode_t regulator_attr_is_visible(struct kobject *kobj,
3490 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003491{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003492 struct device *dev = kobj_to_dev(kobj);
3493 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003494 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003495 umode_t mode = attr->mode;
3496
3497 /* these three are always present */
3498 if (attr == &dev_attr_name.attr ||
3499 attr == &dev_attr_num_users.attr ||
3500 attr == &dev_attr_type.attr)
3501 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003502
3503 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003504 if (attr == &dev_attr_microvolts.attr) {
3505 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3506 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3507 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3508 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3509 return mode;
3510 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003511 }
David Brownell7ad68e22008-11-11 17:39:02 -08003512
Takashi Iwai39f802d2015-01-30 20:29:31 +01003513 if (attr == &dev_attr_microamps.attr)
3514 return ops->get_current_limit ? mode : 0;
3515
3516 if (attr == &dev_attr_opmode.attr)
3517 return ops->get_mode ? mode : 0;
3518
3519 if (attr == &dev_attr_state.attr)
3520 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3521
3522 if (attr == &dev_attr_status.attr)
3523 return ops->get_status ? mode : 0;
3524
3525 if (attr == &dev_attr_bypass.attr)
3526 return ops->get_bypass ? mode : 0;
3527
David Brownell7ad68e22008-11-11 17:39:02 -08003528 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003529 if (attr == &dev_attr_requested_microamps.attr)
3530 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003531
David Brownell7ad68e22008-11-11 17:39:02 -08003532 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003533 if (attr == &dev_attr_min_microvolts.attr ||
3534 attr == &dev_attr_max_microvolts.attr)
3535 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003536
Takashi Iwai39f802d2015-01-30 20:29:31 +01003537 if (attr == &dev_attr_min_microamps.attr ||
3538 attr == &dev_attr_max_microamps.attr)
3539 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003540
Takashi Iwai39f802d2015-01-30 20:29:31 +01003541 if (attr == &dev_attr_suspend_standby_state.attr ||
3542 attr == &dev_attr_suspend_mem_state.attr ||
3543 attr == &dev_attr_suspend_disk_state.attr)
3544 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003545
Takashi Iwai39f802d2015-01-30 20:29:31 +01003546 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3547 attr == &dev_attr_suspend_mem_microvolts.attr ||
3548 attr == &dev_attr_suspend_disk_microvolts.attr)
3549 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003550
Takashi Iwai39f802d2015-01-30 20:29:31 +01003551 if (attr == &dev_attr_suspend_standby_mode.attr ||
3552 attr == &dev_attr_suspend_mem_mode.attr ||
3553 attr == &dev_attr_suspend_disk_mode.attr)
3554 return ops->set_suspend_mode ? mode : 0;
3555
3556 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003557}
3558
Takashi Iwai39f802d2015-01-30 20:29:31 +01003559static const struct attribute_group regulator_dev_group = {
3560 .attrs = regulator_dev_attrs,
3561 .is_visible = regulator_attr_is_visible,
3562};
3563
3564static const struct attribute_group *regulator_dev_groups[] = {
3565 &regulator_dev_group,
3566 NULL
3567};
3568
3569static void regulator_dev_release(struct device *dev)
3570{
3571 struct regulator_dev *rdev = dev_get_drvdata(dev);
3572 kfree(rdev);
3573}
3574
3575static struct class regulator_class = {
3576 .name = "regulator",
3577 .dev_release = regulator_dev_release,
3578 .dev_groups = regulator_dev_groups,
3579};
3580
Mark Brown1130e5b2010-12-21 23:49:31 +00003581static void rdev_init_debugfs(struct regulator_dev *rdev)
3582{
Guenter Roecka9eaa812014-10-17 08:17:03 -07003583 struct device *parent = rdev->dev.parent;
3584 const char *rname = rdev_get_name(rdev);
3585 char name[NAME_MAX];
3586
3587 /* Avoid duplicate debugfs directory names */
3588 if (parent && rname == rdev->desc->name) {
3589 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
3590 rname);
3591 rname = name;
3592 }
3593
3594 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003595 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003596 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003597 return;
3598 }
3599
3600 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3601 &rdev->use_count);
3602 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3603 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003604 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3605 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003606}
3607
Liam Girdwood414c70c2008-04-30 15:59:04 +01003608/**
3609 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003610 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003611 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003612 *
3613 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003614 * Returns a valid pointer to struct regulator_dev on success
3615 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003616 */
Mark Brown65f26842012-04-03 20:46:53 +01003617struct regulator_dev *
3618regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003619 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003620{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003621 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003622 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003623 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303624 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003625 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003626 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003627 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003628
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003629 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003630 return ERR_PTR(-EINVAL);
3631
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003632 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003633 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003634
Liam Girdwood414c70c2008-04-30 15:59:04 +01003635 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3636 return ERR_PTR(-EINVAL);
3637
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003638 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3639 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003640 return ERR_PTR(-EINVAL);
3641
Mark Brown476c2d82010-12-10 17:28:07 +00003642 /* Only one of each should be implemented */
3643 WARN_ON(regulator_desc->ops->get_voltage &&
3644 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003645 WARN_ON(regulator_desc->ops->set_voltage &&
3646 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003647
3648 /* If we're using selectors we must implement list_voltage. */
3649 if (regulator_desc->ops->get_voltage_sel &&
3650 !regulator_desc->ops->list_voltage) {
3651 return ERR_PTR(-EINVAL);
3652 }
Mark Browne8eef822010-12-12 14:36:17 +00003653 if (regulator_desc->ops->set_voltage_sel &&
3654 !regulator_desc->ops->list_voltage) {
3655 return ERR_PTR(-EINVAL);
3656 }
Mark Brown476c2d82010-12-10 17:28:07 +00003657
Liam Girdwood414c70c2008-04-30 15:59:04 +01003658 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3659 if (rdev == NULL)
3660 return ERR_PTR(-ENOMEM);
3661
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003662 /*
3663 * Duplicate the config so the driver could override it after
3664 * parsing init data.
3665 */
3666 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
3667 if (config == NULL) {
3668 kfree(rdev);
3669 return ERR_PTR(-ENOMEM);
3670 }
3671
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01003672 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01003673 &rdev->dev.of_node);
3674 if (!init_data) {
3675 init_data = config->init_data;
3676 rdev->dev.of_node = of_node_get(config->of_node);
3677 }
3678
Liam Girdwood414c70c2008-04-30 15:59:04 +01003679 mutex_lock(&regulator_list_mutex);
3680
3681 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003682 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003683 rdev->owner = regulator_desc->owner;
3684 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003685 if (config->regmap)
3686 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303687 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003688 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303689 else if (dev->parent)
3690 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003691 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003692 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003693 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003694 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003695
Liam Girdwooda5766f12008-10-10 13:22:20 +01003696 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003697 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003698 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003699 if (ret < 0)
3700 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003701 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003702
Liam Girdwooda5766f12008-10-10 13:22:20 +01003703 /* register with sysfs */
3704 rdev->dev.class = &regulator_class;
3705 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303706 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303707 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003708 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003709 if (ret != 0) {
3710 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003711 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003712 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003713
3714 dev_set_drvdata(&rdev->dev, rdev);
3715
Markus Pargmann76f439d2014-10-08 15:47:05 +02003716 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3717 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003718 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003719 if (ret != 0) {
3720 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3721 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003722 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003723 }
Mark Brown65f73502012-06-27 14:14:38 +01003724 }
3725
Mike Rapoport74f544c2008-11-25 14:53:53 +02003726 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003727 if (init_data)
3728 constraints = &init_data->constraints;
3729
3730 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003731 if (ret < 0)
3732 goto scrub;
3733
Mark Brown9a8f5e02011-11-29 18:11:19 +00003734 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003735 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303736 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003737 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303738
Liam Girdwooda5766f12008-10-10 13:22:20 +01003739 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003740 if (init_data) {
3741 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3742 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003743 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003744 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003745 if (ret < 0) {
3746 dev_err(dev, "Failed to set supply %s\n",
3747 init_data->consumer_supplies[i].supply);
3748 goto unset_supplies;
3749 }
Mark Brown23c2f042011-02-24 17:39:09 +00003750 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003751 }
3752
3753 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003754
3755 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003756out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003757 mutex_unlock(&regulator_list_mutex);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003758 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003759 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003760
Jani Nikulad4033b52010-04-29 10:55:11 +03003761unset_supplies:
3762 unset_regulator_supplies(rdev);
3763
David Brownell4fca9542008-11-11 17:38:53 -08003764scrub:
Kim, Milof19b00d2013-02-18 06:50:39 +00003765 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003766 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003767wash:
David Brownell4fca9542008-11-11 17:38:53 -08003768 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003769 /* device core frees rdev */
3770 rdev = ERR_PTR(ret);
3771 goto out;
3772
David Brownell4fca9542008-11-11 17:38:53 -08003773clean:
3774 kfree(rdev);
3775 rdev = ERR_PTR(ret);
3776 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003777}
3778EXPORT_SYMBOL_GPL(regulator_register);
3779
3780/**
3781 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003782 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003783 *
3784 * Called by regulator drivers to unregister a regulator.
3785 */
3786void regulator_unregister(struct regulator_dev *rdev)
3787{
3788 if (rdev == NULL)
3789 return;
3790
Mark Brown891636e2013-07-08 09:14:45 +01003791 if (rdev->supply) {
3792 while (rdev->use_count--)
3793 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003794 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003795 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003796 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003797 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003798 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003799 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003800 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003801 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003802 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003803 regulator_ena_gpio_free(rdev);
Charles Keepax63c7c9e2014-04-03 15:32:17 +01003804 of_node_put(rdev->dev.of_node);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003805 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003806 mutex_unlock(&regulator_list_mutex);
3807}
3808EXPORT_SYMBOL_GPL(regulator_unregister);
3809
3810/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003811 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003812 * @state: system suspend state
3813 *
3814 * Configure each regulator with it's suspend operating parameters for state.
3815 * This will usually be called by machine suspend code prior to supending.
3816 */
3817int regulator_suspend_prepare(suspend_state_t state)
3818{
3819 struct regulator_dev *rdev;
3820 int ret = 0;
3821
3822 /* ON is handled by regulator active state */
3823 if (state == PM_SUSPEND_ON)
3824 return -EINVAL;
3825
3826 mutex_lock(&regulator_list_mutex);
3827 list_for_each_entry(rdev, &regulator_list, list) {
3828
3829 mutex_lock(&rdev->mutex);
3830 ret = suspend_prepare(rdev, state);
3831 mutex_unlock(&rdev->mutex);
3832
3833 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003834 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003835 goto out;
3836 }
3837 }
3838out:
3839 mutex_unlock(&regulator_list_mutex);
3840 return ret;
3841}
3842EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3843
3844/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003845 * regulator_suspend_finish - resume regulators from system wide suspend
3846 *
3847 * Turn on regulators that might be turned off by regulator_suspend_prepare
3848 * and that should be turned on according to the regulators properties.
3849 */
3850int regulator_suspend_finish(void)
3851{
3852 struct regulator_dev *rdev;
3853 int ret = 0, error;
3854
3855 mutex_lock(&regulator_list_mutex);
3856 list_for_each_entry(rdev, &regulator_list, list) {
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003857 mutex_lock(&rdev->mutex);
Markus Pargmann30c21972014-02-20 17:36:03 +01003858 if (rdev->use_count > 0 || rdev->constraints->always_on) {
Javier Martinez Canillas0548bf42015-03-02 21:40:39 +01003859 if (!_regulator_is_enabled(rdev)) {
3860 error = _regulator_do_enable(rdev);
3861 if (error)
3862 ret = error;
3863 }
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003864 } else {
Mark Brown87b28412013-11-27 16:13:10 +00003865 if (!have_full_constraints())
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003866 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003867 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003868 goto unlock;
3869
Markus Pargmann66fda752014-02-20 17:36:04 +01003870 error = _regulator_do_disable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003871 if (error)
3872 ret = error;
3873 }
3874unlock:
3875 mutex_unlock(&rdev->mutex);
3876 }
3877 mutex_unlock(&regulator_list_mutex);
3878 return ret;
3879}
3880EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3881
3882/**
Mark Brownca725562009-03-16 19:36:34 +00003883 * regulator_has_full_constraints - the system has fully specified constraints
3884 *
3885 * Calling this function will cause the regulator API to disable all
3886 * regulators which have a zero use count and don't have an always_on
3887 * constraint in a late_initcall.
3888 *
3889 * The intention is that this will become the default behaviour in a
3890 * future kernel release so users are encouraged to use this facility
3891 * now.
3892 */
3893void regulator_has_full_constraints(void)
3894{
3895 has_full_constraints = 1;
3896}
3897EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3898
3899/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003900 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003901 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003902 *
3903 * Get rdev regulator driver private data. This call can be used in the
3904 * regulator driver context.
3905 */
3906void *rdev_get_drvdata(struct regulator_dev *rdev)
3907{
3908 return rdev->reg_data;
3909}
3910EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3911
3912/**
3913 * regulator_get_drvdata - get regulator driver data
3914 * @regulator: regulator
3915 *
3916 * Get regulator driver private data. This call can be used in the consumer
3917 * driver context when non API regulator specific functions need to be called.
3918 */
3919void *regulator_get_drvdata(struct regulator *regulator)
3920{
3921 return regulator->rdev->reg_data;
3922}
3923EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3924
3925/**
3926 * regulator_set_drvdata - set regulator driver data
3927 * @regulator: regulator
3928 * @data: data
3929 */
3930void regulator_set_drvdata(struct regulator *regulator, void *data)
3931{
3932 regulator->rdev->reg_data = data;
3933}
3934EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3935
3936/**
3937 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003938 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003939 */
3940int rdev_get_id(struct regulator_dev *rdev)
3941{
3942 return rdev->desc->id;
3943}
3944EXPORT_SYMBOL_GPL(rdev_get_id);
3945
Liam Girdwooda5766f12008-10-10 13:22:20 +01003946struct device *rdev_get_dev(struct regulator_dev *rdev)
3947{
3948 return &rdev->dev;
3949}
3950EXPORT_SYMBOL_GPL(rdev_get_dev);
3951
3952void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3953{
3954 return reg_init_data->driver_data;
3955}
3956EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3957
Mark Brownba55a972011-08-23 17:39:10 +01003958#ifdef CONFIG_DEBUG_FS
3959static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3960 size_t count, loff_t *ppos)
3961{
3962 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3963 ssize_t len, ret = 0;
3964 struct regulator_map *map;
3965
3966 if (!buf)
3967 return -ENOMEM;
3968
3969 list_for_each_entry(map, &regulator_map_list, list) {
3970 len = snprintf(buf + ret, PAGE_SIZE - ret,
3971 "%s -> %s.%s\n",
3972 rdev_get_name(map->regulator), map->dev_name,
3973 map->supply);
3974 if (len >= 0)
3975 ret += len;
3976 if (ret > PAGE_SIZE) {
3977 ret = PAGE_SIZE;
3978 break;
3979 }
3980 }
3981
3982 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3983
3984 kfree(buf);
3985
3986 return ret;
3987}
Stephen Boyd24751432012-02-20 22:50:42 -08003988#endif
Mark Brownba55a972011-08-23 17:39:10 +01003989
3990static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003991#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003992 .read = supply_map_read_file,
3993 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003994#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003995};
Mark Brownba55a972011-08-23 17:39:10 +01003996
Heiko Stübner7c225ec2015-04-07 16:16:39 +02003997#ifdef CONFIG_DEBUG_FS
3998static void regulator_summary_show_subtree(struct seq_file *s,
3999 struct regulator_dev *rdev,
4000 int level)
4001{
4002 struct list_head *list = s->private;
4003 struct regulator_dev *child;
4004 struct regulation_constraints *c;
4005 struct regulator *consumer;
4006
4007 if (!rdev)
4008 return;
4009
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004010 seq_printf(s, "%*s%-*s %3d %4d %6d ",
4011 level * 3 + 1, "",
4012 30 - level * 3, rdev_get_name(rdev),
4013 rdev->use_count, rdev->open_count, rdev->bypass_count);
4014
Heiko Stübner23296092015-04-10 13:48:41 +02004015 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
4016 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004017
4018 c = rdev->constraints;
4019 if (c) {
4020 switch (rdev->desc->type) {
4021 case REGULATOR_VOLTAGE:
4022 seq_printf(s, "%5dmV %5dmV ",
4023 c->min_uV / 1000, c->max_uV / 1000);
4024 break;
4025 case REGULATOR_CURRENT:
4026 seq_printf(s, "%5dmA %5dmA ",
4027 c->min_uA / 1000, c->max_uA / 1000);
4028 break;
4029 }
4030 }
4031
4032 seq_puts(s, "\n");
4033
4034 list_for_each_entry(consumer, &rdev->consumer_list, list) {
4035 if (consumer->dev->class == &regulator_class)
4036 continue;
4037
4038 seq_printf(s, "%*s%-*s ",
4039 (level + 1) * 3 + 1, "",
4040 30 - (level + 1) * 3, dev_name(consumer->dev));
4041
4042 switch (rdev->desc->type) {
4043 case REGULATOR_VOLTAGE:
Heiko Stübner23296092015-04-10 13:48:41 +02004044 seq_printf(s, "%37dmV %5dmV",
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004045 consumer->min_uV / 1000,
4046 consumer->max_uV / 1000);
4047 break;
4048 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004049 break;
4050 }
4051
4052 seq_puts(s, "\n");
4053 }
4054
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004055 list_for_each_entry(child, list, list) {
4056 /* handle only non-root regulators supplied by current rdev */
4057 if (!child->supply || child->supply->rdev != rdev)
4058 continue;
4059
4060 regulator_summary_show_subtree(s, child, level + 1);
4061 }
4062}
4063
4064static int regulator_summary_show(struct seq_file *s, void *data)
4065{
4066 struct list_head *list = s->private;
4067 struct regulator_dev *rdev;
4068
Heiko Stübner23296092015-04-10 13:48:41 +02004069 seq_puts(s, " regulator use open bypass voltage current min max\n");
4070 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004071
4072 mutex_lock(&regulator_list_mutex);
4073
4074 list_for_each_entry(rdev, list, list) {
4075 if (rdev->supply)
4076 continue;
4077
4078 regulator_summary_show_subtree(s, rdev, 0);
4079 }
4080
4081 mutex_unlock(&regulator_list_mutex);
4082
4083 return 0;
4084}
4085
4086static int regulator_summary_open(struct inode *inode, struct file *file)
4087{
4088 return single_open(file, regulator_summary_show, inode->i_private);
4089}
4090#endif
4091
4092static const struct file_operations regulator_summary_fops = {
4093#ifdef CONFIG_DEBUG_FS
4094 .open = regulator_summary_open,
4095 .read = seq_read,
4096 .llseek = seq_lseek,
4097 .release = single_release,
4098#endif
4099};
4100
Liam Girdwood414c70c2008-04-30 15:59:04 +01004101static int __init regulator_init(void)
4102{
Mark Brown34abbd62010-02-12 10:18:08 +00004103 int ret;
4104
Mark Brown34abbd62010-02-12 10:18:08 +00004105 ret = class_register(&regulator_class);
4106
Mark Brown1130e5b2010-12-21 23:49:31 +00004107 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004108 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004109 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004110
Mark Brownf4d562c2012-02-20 21:01:04 +00004111 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4112 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004113
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004114 debugfs_create_file("regulator_summary", 0444, debugfs_root,
4115 &regulator_list, &regulator_summary_fops);
4116
Mark Brown34abbd62010-02-12 10:18:08 +00004117 regulator_dummy_init();
4118
4119 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004120}
4121
4122/* init early to allow our consumers to complete system booting */
4123core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004124
4125static int __init regulator_init_complete(void)
4126{
4127 struct regulator_dev *rdev;
Guodong Xu272e2312014-08-13 19:33:38 +08004128 const struct regulator_ops *ops;
Mark Brownca725562009-03-16 19:36:34 +00004129 struct regulation_constraints *c;
4130 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004131
Mark Brown86f5fcf2012-07-06 18:19:13 +01004132 /*
4133 * Since DT doesn't provide an idiomatic mechanism for
4134 * enabling full constraints and since it's much more natural
4135 * with DT to provide them just assume that a DT enabled
4136 * system has full constraints.
4137 */
4138 if (of_have_populated_dt())
4139 has_full_constraints = true;
4140
Mark Brownca725562009-03-16 19:36:34 +00004141 mutex_lock(&regulator_list_mutex);
4142
4143 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004144 * we have permission to change the status for and which are
4145 * not in use or always_on. This is effectively the default
4146 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004147 */
4148 list_for_each_entry(rdev, &regulator_list, list) {
4149 ops = rdev->desc->ops;
4150 c = rdev->constraints;
4151
Markus Pargmann66fda752014-02-20 17:36:04 +01004152 if (c && c->always_on)
Mark Brownca725562009-03-16 19:36:34 +00004153 continue;
4154
Mark Browne9535832014-06-01 19:15:16 +01004155 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
4156 continue;
4157
Mark Brownca725562009-03-16 19:36:34 +00004158 mutex_lock(&rdev->mutex);
4159
4160 if (rdev->use_count)
4161 goto unlock;
4162
4163 /* If we can't read the status assume it's on. */
4164 if (ops->is_enabled)
4165 enabled = ops->is_enabled(rdev);
4166 else
4167 enabled = 1;
4168
4169 if (!enabled)
4170 goto unlock;
4171
Mark Brown87b28412013-11-27 16:13:10 +00004172 if (have_full_constraints()) {
Mark Brownca725562009-03-16 19:36:34 +00004173 /* We log since this may kill the system if it
4174 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08004175 rdev_info(rdev, "disabling\n");
Markus Pargmann66fda752014-02-20 17:36:04 +01004176 ret = _regulator_do_disable(rdev);
Jingoo Han0d25d092014-01-08 10:02:16 +09004177 if (ret != 0)
Joe Perches5da84fd2010-11-30 05:53:48 -08004178 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00004179 } else {
4180 /* The intention is that in future we will
4181 * assume that full constraints are provided
4182 * so warn even if we aren't going to do
4183 * anything here.
4184 */
Joe Perches5da84fd2010-11-30 05:53:48 -08004185 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00004186 }
4187
4188unlock:
4189 mutex_unlock(&rdev->mutex);
4190 }
4191
4192 mutex_unlock(&regulator_list_mutex);
4193
4194 return 0;
4195}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004196late_initcall_sync(regulator_init_complete);