blob: bb8528dfad8c8ea3f449f6d19738bfe6f1a5674b [file] [log] [blame]
Liam Girdwood414c70c2008-04-30 15:59:04 +01001/*
2 * core.c -- Voltage/Current Regulator framework.
3 *
4 * Copyright 2007, 2008 Wolfson Microelectronics PLC.
Liam Girdwooda5766f12008-10-10 13:22:20 +01005 * Copyright 2008 SlimLogic Ltd.
Liam Girdwood414c70c2008-04-30 15:59:04 +01006 *
Liam Girdwooda5766f12008-10-10 13:22:20 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood414c70c2008-04-30 15:59:04 +01008 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
15
16#include <linux/kernel.h>
17#include <linux/init.h>
Mark Brown1130e5b2010-12-21 23:49:31 +000018#include <linux/debugfs.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010019#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Mark Brownf21e0e82011-05-24 08:12:40 +080021#include <linux/async.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010022#include <linux/err.h>
23#include <linux/mutex.h>
24#include <linux/suspend.h>
Mark Brown31aae2b2009-12-21 12:21:52 +000025#include <linux/delay.h>
Mark Brown65f73502012-06-27 14:14:38 +010026#include <linux/gpio.h>
Russell King778b28b2014-06-29 17:55:54 +010027#include <linux/gpio/consumer.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053028#include <linux/of.h>
Mark Brown65b19ce2012-04-15 11:16:05 +010029#include <linux/regmap.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053030#include <linux/regulator/of_regulator.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010031#include <linux/regulator/consumer.h>
32#include <linux/regulator/driver.h>
33#include <linux/regulator/machine.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040034#include <linux/module.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010035
Mark Brown02fa3ec2010-11-10 14:38:30 +000036#define CREATE_TRACE_POINTS
37#include <trace/events/regulator.h>
38
Mark Brown34abbd62010-02-12 10:18:08 +000039#include "dummy.h"
Mark Brown0cdfcc02013-09-11 13:15:40 +010040#include "internal.h"
Mark Brown34abbd62010-02-12 10:18:08 +000041
Mark Brown7d51a0d2011-06-09 16:06:37 +010042#define rdev_crit(rdev, fmt, ...) \
43 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
Joe Perches5da84fd2010-11-30 05:53:48 -080044#define rdev_err(rdev, fmt, ...) \
45 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
46#define rdev_warn(rdev, fmt, ...) \
47 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
48#define rdev_info(rdev, fmt, ...) \
49 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
50#define rdev_dbg(rdev, fmt, ...) \
51 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
52
Liam Girdwood414c70c2008-04-30 15:59:04 +010053static DEFINE_MUTEX(regulator_list_mutex);
54static LIST_HEAD(regulator_list);
55static LIST_HEAD(regulator_map_list);
Kim, Milof19b00d2013-02-18 06:50:39 +000056static LIST_HEAD(regulator_ena_gpio_list);
Charles Keepaxa06ccd92013-10-15 20:14:20 +010057static LIST_HEAD(regulator_supply_alias_list);
Mark Brown21cf8912010-12-21 23:30:07 +000058static bool has_full_constraints;
Liam Girdwood414c70c2008-04-30 15:59:04 +010059
Mark Brown1130e5b2010-12-21 23:49:31 +000060static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000061
Mark Brown8dc53902008-12-31 12:52:40 +000062/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010063 * struct regulator_map
64 *
65 * Used to provide symbolic supply names to devices.
66 */
67struct regulator_map {
68 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010069 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010070 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010071 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010072};
73
Liam Girdwood414c70c2008-04-30 15:59:04 +010074/*
Kim, Milof19b00d2013-02-18 06:50:39 +000075 * struct regulator_enable_gpio
76 *
77 * Management for shared enable GPIO pin
78 */
79struct regulator_enable_gpio {
80 struct list_head list;
Russell King778b28b2014-06-29 17:55:54 +010081 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +000082 u32 enable_count; /* a number of enabled shared GPIO */
83 u32 request_count; /* a number of requested shared GPIO */
84 unsigned int ena_gpio_invert:1;
85};
86
Charles Keepaxa06ccd92013-10-15 20:14:20 +010087/*
88 * struct regulator_supply_alias
89 *
90 * Used to map lookups for a supply onto an alternative device.
91 */
92struct regulator_supply_alias {
93 struct list_head list;
94 struct device *src_dev;
95 const char *src_supply;
96 struct device *alias_dev;
97 const char *alias_supply;
98};
99
Liam Girdwood414c70c2008-04-30 15:59:04 +0100100static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +0100101static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100102static int _regulator_get_voltage(struct regulator_dev *rdev);
103static int _regulator_get_current_limit(struct regulator_dev *rdev);
104static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
Heiko Stübner71795692014-08-28 12:36:04 -0700105static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100106 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +0000107static int _regulator_do_set_voltage(struct regulator_dev *rdev,
108 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +0100109static struct regulator *create_regulator(struct regulator_dev *rdev,
110 struct device *dev,
111 const char *supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100112
Mark Brown1083c392009-10-22 16:31:32 +0100113static const char *rdev_get_name(struct regulator_dev *rdev)
114{
115 if (rdev->constraints && rdev->constraints->name)
116 return rdev->constraints->name;
117 else if (rdev->desc->name)
118 return rdev->desc->name;
119 else
120 return "";
121}
122
Mark Brown87b28412013-11-27 16:13:10 +0000123static bool have_full_constraints(void)
124{
Mark Brown75bc9642013-11-27 16:22:53 +0000125 return has_full_constraints || of_have_populated_dt();
Mark Brown87b28412013-11-27 16:13:10 +0000126}
127
Rajendra Nayak69511a42011-11-18 16:47:20 +0530128/**
129 * of_get_regulator - get a regulator device node based on supply name
130 * @dev: Device pointer for the consumer (of regulator) device
131 * @supply: regulator supply name
132 *
133 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100134 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530135 * returns NULL.
136 */
137static struct device_node *of_get_regulator(struct device *dev, const char *supply)
138{
139 struct device_node *regnode = NULL;
140 char prop_name[32]; /* 32 is max size of property name */
141
142 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
143
144 snprintf(prop_name, 32, "%s-supply", supply);
145 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
146
147 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530148 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530149 prop_name, dev->of_node->full_name);
150 return NULL;
151 }
152 return regnode;
153}
154
Mark Brown6492bc12012-04-19 13:19:07 +0100155static int _regulator_can_change_status(struct regulator_dev *rdev)
156{
157 if (!rdev->constraints)
158 return 0;
159
160 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
161 return 1;
162 else
163 return 0;
164}
165
Liam Girdwood414c70c2008-04-30 15:59:04 +0100166/* Platform voltage constraint check */
167static int regulator_check_voltage(struct regulator_dev *rdev,
168 int *min_uV, int *max_uV)
169{
170 BUG_ON(*min_uV > *max_uV);
171
172 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800173 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100174 return -ENODEV;
175 }
176 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800177 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100178 return -EPERM;
179 }
180
181 if (*max_uV > rdev->constraints->max_uV)
182 *max_uV = rdev->constraints->max_uV;
183 if (*min_uV < rdev->constraints->min_uV)
184 *min_uV = rdev->constraints->min_uV;
185
Mark Brown89f425e2011-07-12 11:20:37 +0900186 if (*min_uV > *max_uV) {
187 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100188 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100189 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900190 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100191
192 return 0;
193}
194
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100195/* Make sure we select a voltage that suits the needs of all
196 * regulator consumers
197 */
198static int regulator_check_consumers(struct regulator_dev *rdev,
199 int *min_uV, int *max_uV)
200{
201 struct regulator *regulator;
202
203 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700204 /*
205 * Assume consumers that didn't say anything are OK
206 * with anything in the constraint range.
207 */
208 if (!regulator->min_uV && !regulator->max_uV)
209 continue;
210
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100211 if (*max_uV > regulator->max_uV)
212 *max_uV = regulator->max_uV;
213 if (*min_uV < regulator->min_uV)
214 *min_uV = regulator->min_uV;
215 }
216
Mark Browndd8004a2012-11-28 17:09:27 +0000217 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800218 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
219 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100220 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000221 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100222
223 return 0;
224}
225
Liam Girdwood414c70c2008-04-30 15:59:04 +0100226/* current constraint check */
227static int regulator_check_current_limit(struct regulator_dev *rdev,
228 int *min_uA, int *max_uA)
229{
230 BUG_ON(*min_uA > *max_uA);
231
232 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800233 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100234 return -ENODEV;
235 }
236 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800237 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100238 return -EPERM;
239 }
240
241 if (*max_uA > rdev->constraints->max_uA)
242 *max_uA = rdev->constraints->max_uA;
243 if (*min_uA < rdev->constraints->min_uA)
244 *min_uA = rdev->constraints->min_uA;
245
Mark Brown89f425e2011-07-12 11:20:37 +0900246 if (*min_uA > *max_uA) {
247 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100248 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100249 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900250 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100251
252 return 0;
253}
254
255/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900256static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100257{
Mark Brown2c608232011-03-30 06:29:12 +0900258 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800259 case REGULATOR_MODE_FAST:
260 case REGULATOR_MODE_NORMAL:
261 case REGULATOR_MODE_IDLE:
262 case REGULATOR_MODE_STANDBY:
263 break;
264 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900265 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800266 return -EINVAL;
267 }
268
Liam Girdwood414c70c2008-04-30 15:59:04 +0100269 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800270 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100271 return -ENODEV;
272 }
273 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800274 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100275 return -EPERM;
276 }
Mark Brown2c608232011-03-30 06:29:12 +0900277
278 /* The modes are bitmasks, the most power hungry modes having
279 * the lowest values. If the requested mode isn't supported
280 * try higher modes. */
281 while (*mode) {
282 if (rdev->constraints->valid_modes_mask & *mode)
283 return 0;
284 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100285 }
Mark Brown2c608232011-03-30 06:29:12 +0900286
287 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100288}
289
290/* dynamic regulator mode switching constraint check */
291static int regulator_check_drms(struct regulator_dev *rdev)
292{
293 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800294 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100295 return -ENODEV;
296 }
297 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800298 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100299 return -EPERM;
300 }
301 return 0;
302}
303
Liam Girdwood414c70c2008-04-30 15:59:04 +0100304static ssize_t regulator_uV_show(struct device *dev,
305 struct device_attribute *attr, char *buf)
306{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100307 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100308 ssize_t ret;
309
310 mutex_lock(&rdev->mutex);
311 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
312 mutex_unlock(&rdev->mutex);
313
314 return ret;
315}
David Brownell7ad68e22008-11-11 17:39:02 -0800316static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100317
318static ssize_t regulator_uA_show(struct device *dev,
319 struct device_attribute *attr, char *buf)
320{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100321 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100322
323 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
324}
David Brownell7ad68e22008-11-11 17:39:02 -0800325static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100326
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700327static ssize_t name_show(struct device *dev, struct device_attribute *attr,
328 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100329{
330 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100331
Mark Brown1083c392009-10-22 16:31:32 +0100332 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100333}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700334static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100335
David Brownell4fca9542008-11-11 17:38:53 -0800336static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100337{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100338 switch (mode) {
339 case REGULATOR_MODE_FAST:
340 return sprintf(buf, "fast\n");
341 case REGULATOR_MODE_NORMAL:
342 return sprintf(buf, "normal\n");
343 case REGULATOR_MODE_IDLE:
344 return sprintf(buf, "idle\n");
345 case REGULATOR_MODE_STANDBY:
346 return sprintf(buf, "standby\n");
347 }
348 return sprintf(buf, "unknown\n");
349}
350
David Brownell4fca9542008-11-11 17:38:53 -0800351static ssize_t regulator_opmode_show(struct device *dev,
352 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100353{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100354 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100355
David Brownell4fca9542008-11-11 17:38:53 -0800356 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
357}
David Brownell7ad68e22008-11-11 17:39:02 -0800358static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800359
360static ssize_t regulator_print_state(char *buf, int state)
361{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100362 if (state > 0)
363 return sprintf(buf, "enabled\n");
364 else if (state == 0)
365 return sprintf(buf, "disabled\n");
366 else
367 return sprintf(buf, "unknown\n");
368}
369
David Brownell4fca9542008-11-11 17:38:53 -0800370static ssize_t regulator_state_show(struct device *dev,
371 struct device_attribute *attr, char *buf)
372{
373 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100374 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800375
Mark Brown93325462009-08-03 18:49:56 +0100376 mutex_lock(&rdev->mutex);
377 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
378 mutex_unlock(&rdev->mutex);
379
380 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800381}
David Brownell7ad68e22008-11-11 17:39:02 -0800382static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800383
David Brownell853116a2009-01-14 23:03:17 -0800384static ssize_t regulator_status_show(struct device *dev,
385 struct device_attribute *attr, char *buf)
386{
387 struct regulator_dev *rdev = dev_get_drvdata(dev);
388 int status;
389 char *label;
390
391 status = rdev->desc->ops->get_status(rdev);
392 if (status < 0)
393 return status;
394
395 switch (status) {
396 case REGULATOR_STATUS_OFF:
397 label = "off";
398 break;
399 case REGULATOR_STATUS_ON:
400 label = "on";
401 break;
402 case REGULATOR_STATUS_ERROR:
403 label = "error";
404 break;
405 case REGULATOR_STATUS_FAST:
406 label = "fast";
407 break;
408 case REGULATOR_STATUS_NORMAL:
409 label = "normal";
410 break;
411 case REGULATOR_STATUS_IDLE:
412 label = "idle";
413 break;
414 case REGULATOR_STATUS_STANDBY:
415 label = "standby";
416 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700417 case REGULATOR_STATUS_BYPASS:
418 label = "bypass";
419 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100420 case REGULATOR_STATUS_UNDEFINED:
421 label = "undefined";
422 break;
David Brownell853116a2009-01-14 23:03:17 -0800423 default:
424 return -ERANGE;
425 }
426
427 return sprintf(buf, "%s\n", label);
428}
429static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
430
Liam Girdwood414c70c2008-04-30 15:59:04 +0100431static ssize_t regulator_min_uA_show(struct device *dev,
432 struct device_attribute *attr, char *buf)
433{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100434 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100435
436 if (!rdev->constraints)
437 return sprintf(buf, "constraint not defined\n");
438
439 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
440}
David Brownell7ad68e22008-11-11 17:39:02 -0800441static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100442
443static ssize_t regulator_max_uA_show(struct device *dev,
444 struct device_attribute *attr, char *buf)
445{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100446 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100447
448 if (!rdev->constraints)
449 return sprintf(buf, "constraint not defined\n");
450
451 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
452}
David Brownell7ad68e22008-11-11 17:39:02 -0800453static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100454
455static ssize_t regulator_min_uV_show(struct device *dev,
456 struct device_attribute *attr, char *buf)
457{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100458 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100459
460 if (!rdev->constraints)
461 return sprintf(buf, "constraint not defined\n");
462
463 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
464}
David Brownell7ad68e22008-11-11 17:39:02 -0800465static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100466
467static ssize_t regulator_max_uV_show(struct device *dev,
468 struct device_attribute *attr, char *buf)
469{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100470 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100471
472 if (!rdev->constraints)
473 return sprintf(buf, "constraint not defined\n");
474
475 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
476}
David Brownell7ad68e22008-11-11 17:39:02 -0800477static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100478
479static ssize_t regulator_total_uA_show(struct device *dev,
480 struct device_attribute *attr, char *buf)
481{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100482 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100483 struct regulator *regulator;
484 int uA = 0;
485
486 mutex_lock(&rdev->mutex);
487 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100488 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100489 mutex_unlock(&rdev->mutex);
490 return sprintf(buf, "%d\n", uA);
491}
David Brownell7ad68e22008-11-11 17:39:02 -0800492static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100493
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700494static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
495 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100496{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100497 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100498 return sprintf(buf, "%d\n", rdev->use_count);
499}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700500static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100501
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700502static ssize_t type_show(struct device *dev, struct device_attribute *attr,
503 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100504{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100505 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100506
507 switch (rdev->desc->type) {
508 case REGULATOR_VOLTAGE:
509 return sprintf(buf, "voltage\n");
510 case REGULATOR_CURRENT:
511 return sprintf(buf, "current\n");
512 }
513 return sprintf(buf, "unknown\n");
514}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700515static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100516
517static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
518 struct device_attribute *attr, char *buf)
519{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100520 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100521
Liam Girdwood414c70c2008-04-30 15:59:04 +0100522 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
523}
David Brownell7ad68e22008-11-11 17:39:02 -0800524static DEVICE_ATTR(suspend_mem_microvolts, 0444,
525 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100526
527static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
528 struct device_attribute *attr, char *buf)
529{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100530 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100531
Liam Girdwood414c70c2008-04-30 15:59:04 +0100532 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
533}
David Brownell7ad68e22008-11-11 17:39:02 -0800534static DEVICE_ATTR(suspend_disk_microvolts, 0444,
535 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100536
537static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
538 struct device_attribute *attr, char *buf)
539{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100540 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100541
Liam Girdwood414c70c2008-04-30 15:59:04 +0100542 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
543}
David Brownell7ad68e22008-11-11 17:39:02 -0800544static DEVICE_ATTR(suspend_standby_microvolts, 0444,
545 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100546
Liam Girdwood414c70c2008-04-30 15:59:04 +0100547static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
548 struct device_attribute *attr, char *buf)
549{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100550 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100551
David Brownell4fca9542008-11-11 17:38:53 -0800552 return regulator_print_opmode(buf,
553 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100554}
David Brownell7ad68e22008-11-11 17:39:02 -0800555static DEVICE_ATTR(suspend_mem_mode, 0444,
556 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100557
558static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
559 struct device_attribute *attr, char *buf)
560{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100561 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100562
David Brownell4fca9542008-11-11 17:38:53 -0800563 return regulator_print_opmode(buf,
564 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100565}
David Brownell7ad68e22008-11-11 17:39:02 -0800566static DEVICE_ATTR(suspend_disk_mode, 0444,
567 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100568
569static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
570 struct device_attribute *attr, char *buf)
571{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100572 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100573
David Brownell4fca9542008-11-11 17:38:53 -0800574 return regulator_print_opmode(buf,
575 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100576}
David Brownell7ad68e22008-11-11 17:39:02 -0800577static DEVICE_ATTR(suspend_standby_mode, 0444,
578 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100579
580static ssize_t regulator_suspend_mem_state_show(struct device *dev,
581 struct device_attribute *attr, char *buf)
582{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100583 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100584
David Brownell4fca9542008-11-11 17:38:53 -0800585 return regulator_print_state(buf,
586 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100587}
David Brownell7ad68e22008-11-11 17:39:02 -0800588static DEVICE_ATTR(suspend_mem_state, 0444,
589 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100590
591static ssize_t regulator_suspend_disk_state_show(struct device *dev,
592 struct device_attribute *attr, char *buf)
593{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100594 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100595
David Brownell4fca9542008-11-11 17:38:53 -0800596 return regulator_print_state(buf,
597 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100598}
David Brownell7ad68e22008-11-11 17:39:02 -0800599static DEVICE_ATTR(suspend_disk_state, 0444,
600 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100601
602static ssize_t regulator_suspend_standby_state_show(struct device *dev,
603 struct device_attribute *attr, char *buf)
604{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100605 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100606
David Brownell4fca9542008-11-11 17:38:53 -0800607 return regulator_print_state(buf,
608 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100609}
David Brownell7ad68e22008-11-11 17:39:02 -0800610static DEVICE_ATTR(suspend_standby_state, 0444,
611 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100612
Mark Brownf59c8f92012-08-31 10:36:37 -0700613static ssize_t regulator_bypass_show(struct device *dev,
614 struct device_attribute *attr, char *buf)
615{
616 struct regulator_dev *rdev = dev_get_drvdata(dev);
617 const char *report;
618 bool bypass;
619 int ret;
620
621 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
622
623 if (ret != 0)
624 report = "unknown";
625 else if (bypass)
626 report = "enabled";
627 else
628 report = "disabled";
629
630 return sprintf(buf, "%s\n", report);
631}
632static DEVICE_ATTR(bypass, 0444,
633 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800634
Liam Girdwood414c70c2008-04-30 15:59:04 +0100635/* Calculate the new optimum regulator operating mode based on the new total
636 * consumer load. All locks held by caller */
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800637static int drms_uA_update(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100638{
639 struct regulator *sibling;
640 int current_uA = 0, output_uV, input_uV, err;
641 unsigned int mode;
642
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800643 /*
644 * first check to see if we can set modes at all, otherwise just
645 * tell the consumer everything is OK.
646 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100647 err = regulator_check_drms(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800648 if (err < 0)
649 return 0;
650
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800651 if (!rdev->desc->ops->get_optimum_mode &&
652 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800653 return 0;
654
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800655 if (!rdev->desc->ops->set_mode &&
656 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800657 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100658
659 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000660 output_uV = _regulator_get_voltage(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800661 if (output_uV <= 0) {
662 rdev_err(rdev, "invalid output voltage found\n");
663 return -EINVAL;
664 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100665
666 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000667 input_uV = 0;
668 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800669 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000670 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100671 input_uV = rdev->constraints->input_uV;
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800672 if (input_uV <= 0) {
673 rdev_err(rdev, "invalid input voltage found\n");
674 return -EINVAL;
675 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100676
677 /* calc total requested load */
678 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100679 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100680
Stephen Boyd22a10bc2015-06-11 17:37:03 -0700681 current_uA += rdev->constraints->system_load;
682
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800683 if (rdev->desc->ops->set_load) {
684 /* set the optimum mode for our new total regulator load */
685 err = rdev->desc->ops->set_load(rdev, current_uA);
686 if (err < 0)
687 rdev_err(rdev, "failed to set load %d\n", current_uA);
688 } else {
689 /* now get the optimum mode for our new total regulator load */
690 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
691 output_uV, current_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100692
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800693 /* check the new mode is allowed */
694 err = regulator_mode_constrain(rdev, &mode);
695 if (err < 0) {
696 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
697 current_uA, input_uV, output_uV);
698 return err;
699 }
700
701 err = rdev->desc->ops->set_mode(rdev, mode);
702 if (err < 0)
703 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800704 }
705
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800706 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100707}
708
709static int suspend_set_state(struct regulator_dev *rdev,
710 struct regulator_state *rstate)
711{
712 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100713
714 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800715 * only warn if the driver implements set_suspend_voltage or
716 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100717 */
718 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800719 if (rdev->desc->ops->set_suspend_voltage ||
720 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800721 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100722 return 0;
723 }
724
725 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800726 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100727 return -EINVAL;
728 }
729
Axel Lin8ac0e952012-04-14 09:14:34 +0800730 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100731 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800732 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100733 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800734 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
735 ret = 0;
736
Liam Girdwood414c70c2008-04-30 15:59:04 +0100737 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800738 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100739 return ret;
740 }
741
742 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
743 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
744 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800745 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100746 return ret;
747 }
748 }
749
750 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
751 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
752 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800753 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100754 return ret;
755 }
756 }
757 return ret;
758}
759
760/* locks held by caller */
761static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
762{
763 if (!rdev->constraints)
764 return -EINVAL;
765
766 switch (state) {
767 case PM_SUSPEND_STANDBY:
768 return suspend_set_state(rdev,
769 &rdev->constraints->state_standby);
770 case PM_SUSPEND_MEM:
771 return suspend_set_state(rdev,
772 &rdev->constraints->state_mem);
773 case PM_SUSPEND_MAX:
774 return suspend_set_state(rdev,
775 &rdev->constraints->state_disk);
776 default:
777 return -EINVAL;
778 }
779}
780
781static void print_constraints(struct regulator_dev *rdev)
782{
783 struct regulation_constraints *constraints = rdev->constraints;
Stefan Wahrena7068e32015-06-09 20:09:42 +0000784 char buf[160] = "";
Stefan Wahren5751a992015-06-10 06:13:15 +0000785 size_t len = sizeof(buf) - 1;
Mark Brown8f031b42009-10-22 16:31:31 +0100786 int count = 0;
787 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100788
Mark Brown8f031b42009-10-22 16:31:31 +0100789 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100790 if (constraints->min_uV == constraints->max_uV)
Stefan Wahren5751a992015-06-10 06:13:15 +0000791 count += scnprintf(buf + count, len - count, "%d mV ",
792 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100793 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000794 count += scnprintf(buf + count, len - count,
795 "%d <--> %d mV ",
796 constraints->min_uV / 1000,
797 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100798 }
Mark Brown8f031b42009-10-22 16:31:31 +0100799
800 if (!constraints->min_uV ||
801 constraints->min_uV != constraints->max_uV) {
802 ret = _regulator_get_voltage(rdev);
803 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000804 count += scnprintf(buf + count, len - count,
805 "at %d mV ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100806 }
807
Mark Brownbf5892a2011-05-08 22:13:37 +0100808 if (constraints->uV_offset)
Stefan Wahren5751a992015-06-10 06:13:15 +0000809 count += scnprintf(buf + count, len - count, "%dmV offset ",
810 constraints->uV_offset / 1000);
Mark Brownbf5892a2011-05-08 22:13:37 +0100811
Mark Brown8f031b42009-10-22 16:31:31 +0100812 if (constraints->min_uA && constraints->max_uA) {
813 if (constraints->min_uA == constraints->max_uA)
Stefan Wahren5751a992015-06-10 06:13:15 +0000814 count += scnprintf(buf + count, len - count, "%d mA ",
815 constraints->min_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100816 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000817 count += scnprintf(buf + count, len - count,
818 "%d <--> %d mA ",
819 constraints->min_uA / 1000,
820 constraints->max_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100821 }
822
823 if (!constraints->min_uA ||
824 constraints->min_uA != constraints->max_uA) {
825 ret = _regulator_get_current_limit(rdev);
826 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000827 count += scnprintf(buf + count, len - count,
828 "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100829 }
830
Liam Girdwood414c70c2008-04-30 15:59:04 +0100831 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
Stefan Wahren5751a992015-06-10 06:13:15 +0000832 count += scnprintf(buf + count, len - count, "fast ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100833 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
Stefan Wahren5751a992015-06-10 06:13:15 +0000834 count += scnprintf(buf + count, len - count, "normal ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100835 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
Stefan Wahren5751a992015-06-10 06:13:15 +0000836 count += scnprintf(buf + count, len - count, "idle ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100837 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
Stefan Wahren5751a992015-06-10 06:13:15 +0000838 count += scnprintf(buf + count, len - count, "standby");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100839
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200840 if (!count)
Stefan Wahren5751a992015-06-10 06:13:15 +0000841 scnprintf(buf, len, "no parameters");
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200842
Mark Brown194dbae2014-10-31 19:11:59 +0000843 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000844
845 if ((constraints->min_uV != constraints->max_uV) &&
846 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
847 rdev_warn(rdev,
848 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100849}
850
Mark Browne79055d2009-10-19 15:53:50 +0100851static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100852 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100853{
Guodong Xu272e2312014-08-13 19:33:38 +0800854 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100855 int ret;
856
857 /* do we need to apply the constraint voltage */
858 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000859 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200860 int current_uV = _regulator_get_voltage(rdev);
861 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500862 rdev_err(rdev,
863 "failed to get the current voltage(%d)\n",
864 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200865 return current_uV;
866 }
867 if (current_uV < rdev->constraints->min_uV ||
868 current_uV > rdev->constraints->max_uV) {
869 ret = _regulator_do_set_voltage(
870 rdev, rdev->constraints->min_uV,
871 rdev->constraints->max_uV);
872 if (ret < 0) {
873 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500874 "failed to apply %duV constraint(%d)\n",
875 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200876 return ret;
877 }
Mark Brown75790252010-12-12 14:25:50 +0000878 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100879 }
Mark Browne79055d2009-10-19 15:53:50 +0100880
881 /* constrain machine-level voltage specs to fit
882 * the actual range supported by this regulator.
883 */
884 if (ops->list_voltage && rdev->desc->n_voltages) {
885 int count = rdev->desc->n_voltages;
886 int i;
887 int min_uV = INT_MAX;
888 int max_uV = INT_MIN;
889 int cmin = constraints->min_uV;
890 int cmax = constraints->max_uV;
891
892 /* it's safe to autoconfigure fixed-voltage supplies
893 and the constraints are used by list_voltage. */
894 if (count == 1 && !cmin) {
895 cmin = 1;
896 cmax = INT_MAX;
897 constraints->min_uV = cmin;
898 constraints->max_uV = cmax;
899 }
900
901 /* voltage constraints are optional */
902 if ((cmin == 0) && (cmax == 0))
903 return 0;
904
905 /* else require explicit machine-level constraints */
906 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800907 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100908 return -EINVAL;
909 }
910
911 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
912 for (i = 0; i < count; i++) {
913 int value;
914
915 value = ops->list_voltage(rdev, i);
916 if (value <= 0)
917 continue;
918
919 /* maybe adjust [min_uV..max_uV] */
920 if (value >= cmin && value < min_uV)
921 min_uV = value;
922 if (value <= cmax && value > max_uV)
923 max_uV = value;
924 }
925
926 /* final: [min_uV..max_uV] valid iff constraints valid */
927 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000928 rdev_err(rdev,
929 "unsupportable voltage constraints %u-%uuV\n",
930 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100931 return -EINVAL;
932 }
933
934 /* use regulator's subset of machine constraints */
935 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800936 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
937 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100938 constraints->min_uV = min_uV;
939 }
940 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800941 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
942 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100943 constraints->max_uV = max_uV;
944 }
945 }
946
947 return 0;
948}
949
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530950static int machine_constraints_current(struct regulator_dev *rdev,
951 struct regulation_constraints *constraints)
952{
Guodong Xu272e2312014-08-13 19:33:38 +0800953 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530954 int ret;
955
956 if (!constraints->min_uA && !constraints->max_uA)
957 return 0;
958
959 if (constraints->min_uA > constraints->max_uA) {
960 rdev_err(rdev, "Invalid current constraints\n");
961 return -EINVAL;
962 }
963
964 if (!ops->set_current_limit || !ops->get_current_limit) {
965 rdev_warn(rdev, "Operation of current configuration missing\n");
966 return 0;
967 }
968
969 /* Set regulator current in constraints range */
970 ret = ops->set_current_limit(rdev, constraints->min_uA,
971 constraints->max_uA);
972 if (ret < 0) {
973 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
974 return ret;
975 }
976
977 return 0;
978}
979
Markus Pargmann30c21972014-02-20 17:36:03 +0100980static int _regulator_do_enable(struct regulator_dev *rdev);
981
Liam Girdwooda5766f12008-10-10 13:22:20 +0100982/**
983 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000984 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000985 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100986 *
987 * Allows platform initialisation code to define and constrain
988 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
989 * Constraints *must* be set by platform code in order for some
990 * regulator operations to proceed i.e. set_voltage, set_current_limit,
991 * set_mode.
992 */
993static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000994 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100995{
996 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +0800997 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100998
Mark Brown9a8f5e02011-11-29 18:11:19 +0000999 if (constraints)
1000 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
1001 GFP_KERNEL);
1002 else
1003 rdev->constraints = kzalloc(sizeof(*constraints),
1004 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +00001005 if (!rdev->constraints)
1006 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001007
Mark Brownf8c12fe2010-11-29 15:55:17 +00001008 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001009 if (ret != 0)
1010 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -08001011
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301012 ret = machine_constraints_current(rdev, rdev->constraints);
1013 if (ret != 0)
1014 goto out;
1015
Stephen Boyd36e4f832015-06-11 17:37:06 -07001016 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1017 ret = ops->set_input_current_limit(rdev,
1018 rdev->constraints->ilim_uA);
1019 if (ret < 0) {
1020 rdev_err(rdev, "failed to set input limit\n");
1021 goto out;
1022 }
1023 }
1024
Liam Girdwooda5766f12008-10-10 13:22:20 +01001025 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001026 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001027 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001028 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001029 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +01001030 goto out;
1031 }
1032 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001033
Mark Brown9a8f5e02011-11-29 18:11:19 +00001034 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001035 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001036 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +00001037 ret = -EINVAL;
1038 goto out;
1039 }
1040
Mark Brownf8c12fe2010-11-29 15:55:17 +00001041 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001042 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001043 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +00001044 goto out;
1045 }
1046 }
1047
Mark Browncacf90f2009-03-02 16:32:46 +00001048 /* If the constraints say the regulator should be on at this point
1049 * and we have control then make sure it is enabled.
1050 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001051 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1052 ret = _regulator_do_enable(rdev);
1053 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001054 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001055 goto out;
1056 }
1057 }
1058
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301059 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1060 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301061 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1062 if (ret < 0) {
1063 rdev_err(rdev, "failed to set ramp_delay\n");
1064 goto out;
1065 }
1066 }
1067
Stephen Boyd23c779b2015-06-11 17:37:04 -07001068 if (rdev->constraints->pull_down && ops->set_pull_down) {
1069 ret = ops->set_pull_down(rdev);
1070 if (ret < 0) {
1071 rdev_err(rdev, "failed to set pull down\n");
1072 goto out;
1073 }
1074 }
1075
Stephen Boyd57f66b72015-06-11 17:37:05 -07001076 if (rdev->constraints->soft_start && ops->set_soft_start) {
1077 ret = ops->set_soft_start(rdev);
1078 if (ret < 0) {
1079 rdev_err(rdev, "failed to set soft start\n");
1080 goto out;
1081 }
1082 }
1083
Liam Girdwooda5766f12008-10-10 13:22:20 +01001084 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001085 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001086out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001087 kfree(rdev->constraints);
1088 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001089 return ret;
1090}
1091
1092/**
1093 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001094 * @rdev: regulator name
1095 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001096 *
1097 * Called by platform initialisation code to set the supply regulator for this
1098 * regulator. This ensures that a regulators supply will also be enabled by the
1099 * core if it's child is enabled.
1100 */
1101static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001102 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001103{
1104 int err;
1105
Mark Brown3801b862011-06-09 16:22:22 +01001106 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1107
1108 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001109 if (rdev->supply == NULL) {
1110 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001111 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001112 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301113 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001114
1115 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001116}
1117
1118/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001119 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001120 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001121 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001122 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001123 *
1124 * Allows platform initialisation code to map physical regulator
1125 * sources to symbolic names for supplies for use by devices. Devices
1126 * should use these symbolic names to request regulators, avoiding the
1127 * need to provide board-specific regulator names as platform data.
1128 */
1129static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001130 const char *consumer_dev_name,
1131 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001132{
1133 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001134 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001135
1136 if (supply == NULL)
1137 return -EINVAL;
1138
Mark Brown9ed20992009-07-21 16:00:26 +01001139 if (consumer_dev_name != NULL)
1140 has_dev = 1;
1141 else
1142 has_dev = 0;
1143
David Brownell6001e132008-12-31 12:54:19 +00001144 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001145 if (node->dev_name && consumer_dev_name) {
1146 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1147 continue;
1148 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001149 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001150 }
1151
David Brownell6001e132008-12-31 12:54:19 +00001152 if (strcmp(node->supply, supply) != 0)
1153 continue;
1154
Mark Brown737f3602012-02-02 00:10:51 +00001155 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1156 consumer_dev_name,
1157 dev_name(&node->regulator->dev),
1158 node->regulator->desc->name,
1159 supply,
1160 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001161 return -EBUSY;
1162 }
1163
Mark Brown9ed20992009-07-21 16:00:26 +01001164 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001165 if (node == NULL)
1166 return -ENOMEM;
1167
1168 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001169 node->supply = supply;
1170
Mark Brown9ed20992009-07-21 16:00:26 +01001171 if (has_dev) {
1172 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1173 if (node->dev_name == NULL) {
1174 kfree(node);
1175 return -ENOMEM;
1176 }
Mark Brown40f92442009-06-17 17:56:39 +01001177 }
1178
Liam Girdwooda5766f12008-10-10 13:22:20 +01001179 list_add(&node->list, &regulator_map_list);
1180 return 0;
1181}
1182
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001183static void unset_regulator_supplies(struct regulator_dev *rdev)
1184{
1185 struct regulator_map *node, *n;
1186
1187 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1188 if (rdev == node->regulator) {
1189 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001190 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001191 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001192 }
1193 }
1194}
1195
Mark Brownf5726ae2011-06-09 16:22:20 +01001196#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001197
1198static struct regulator *create_regulator(struct regulator_dev *rdev,
1199 struct device *dev,
1200 const char *supply_name)
1201{
1202 struct regulator *regulator;
1203 char buf[REG_STR_SIZE];
1204 int err, size;
1205
1206 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1207 if (regulator == NULL)
1208 return NULL;
1209
1210 mutex_lock(&rdev->mutex);
1211 regulator->rdev = rdev;
1212 list_add(&regulator->list, &rdev->consumer_list);
1213
1214 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001215 regulator->dev = dev;
1216
Mark Brown222cc7b2012-06-22 11:39:16 +01001217 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001218 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1219 dev->kobj.name, supply_name);
1220 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001221 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001222
1223 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1224 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001225 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001226
Stephen Boydff268b52015-06-01 18:47:54 -07001227 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
Liam Girdwood414c70c2008-04-30 15:59:04 +01001228 buf);
1229 if (err) {
Stephen Boydff268b52015-06-01 18:47:54 -07001230 rdev_dbg(rdev, "could not add device link %s err %d\n",
Joe Perches5da84fd2010-11-30 05:53:48 -08001231 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001232 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001233 }
Mark Brown5de70512011-06-19 13:33:16 +01001234 } else {
1235 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1236 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001237 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001238 }
Mark Brown5de70512011-06-19 13:33:16 +01001239
Mark Brown5de70512011-06-19 13:33:16 +01001240 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1241 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001242 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001243 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001244 } else {
1245 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1246 &regulator->uA_load);
1247 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1248 &regulator->min_uV);
1249 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1250 &regulator->max_uV);
1251 }
Mark Brown5de70512011-06-19 13:33:16 +01001252
Mark Brown6492bc12012-04-19 13:19:07 +01001253 /*
1254 * Check now if the regulator is an always on regulator - if
1255 * it is then we don't need to do nearly so much work for
1256 * enable/disable calls.
1257 */
1258 if (!_regulator_can_change_status(rdev) &&
1259 _regulator_is_enabled(rdev))
1260 regulator->always_on = true;
1261
Liam Girdwood414c70c2008-04-30 15:59:04 +01001262 mutex_unlock(&rdev->mutex);
1263 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001264overflow_err:
1265 list_del(&regulator->list);
1266 kfree(regulator);
1267 mutex_unlock(&rdev->mutex);
1268 return NULL;
1269}
1270
Mark Brown31aae2b2009-12-21 12:21:52 +00001271static int _regulator_get_enable_time(struct regulator_dev *rdev)
1272{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301273 if (rdev->constraints && rdev->constraints->enable_time)
1274 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001275 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001276 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001277 return rdev->desc->ops->enable_time(rdev);
1278}
1279
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001280static struct regulator_supply_alias *regulator_find_supply_alias(
1281 struct device *dev, const char *supply)
1282{
1283 struct regulator_supply_alias *map;
1284
1285 list_for_each_entry(map, &regulator_supply_alias_list, list)
1286 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1287 return map;
1288
1289 return NULL;
1290}
1291
1292static void regulator_supply_alias(struct device **dev, const char **supply)
1293{
1294 struct regulator_supply_alias *map;
1295
1296 map = regulator_find_supply_alias(*dev, *supply);
1297 if (map) {
1298 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1299 *supply, map->alias_supply,
1300 dev_name(map->alias_dev));
1301 *dev = map->alias_dev;
1302 *supply = map->alias_supply;
1303 }
1304}
1305
Rajendra Nayak69511a42011-11-18 16:47:20 +05301306static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001307 const char *supply,
1308 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301309{
1310 struct regulator_dev *r;
1311 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001312 struct regulator_map *map;
1313 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301314
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001315 regulator_supply_alias(&dev, &supply);
1316
Rajendra Nayak69511a42011-11-18 16:47:20 +05301317 /* first do a dt based lookup */
1318 if (dev && dev->of_node) {
1319 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001320 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301321 list_for_each_entry(r, &regulator_list, list)
1322 if (r->dev.parent &&
1323 node == r->dev.of_node)
1324 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001325 *ret = -EPROBE_DEFER;
1326 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001327 } else {
1328 /*
1329 * If we couldn't even get the node then it's
1330 * not just that the device didn't register
1331 * yet, there's no node and we'll never
1332 * succeed.
1333 */
1334 *ret = -ENODEV;
1335 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301336 }
1337
1338 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001339 if (dev)
1340 devname = dev_name(dev);
1341
Rajendra Nayak69511a42011-11-18 16:47:20 +05301342 list_for_each_entry(r, &regulator_list, list)
1343 if (strcmp(rdev_get_name(r), supply) == 0)
1344 return r;
1345
Mark Brown576ca4362012-03-30 12:24:37 +01001346 list_for_each_entry(map, &regulator_map_list, list) {
1347 /* If the mapping has a device set up it must match */
1348 if (map->dev_name &&
1349 (!devname || strcmp(map->dev_name, devname)))
1350 continue;
1351
1352 if (strcmp(map->supply, supply) == 0)
1353 return map->regulator;
1354 }
1355
1356
Rajendra Nayak69511a42011-11-18 16:47:20 +05301357 return NULL;
1358}
1359
Bjorn Andersson6261b062015-03-24 18:56:05 -07001360static int regulator_resolve_supply(struct regulator_dev *rdev)
1361{
1362 struct regulator_dev *r;
1363 struct device *dev = rdev->dev.parent;
1364 int ret;
1365
1366 /* No supply to resovle? */
1367 if (!rdev->supply_name)
1368 return 0;
1369
1370 /* Supply already resolved? */
1371 if (rdev->supply)
1372 return 0;
1373
1374 r = regulator_dev_lookup(dev, rdev->supply_name, &ret);
1375 if (ret == -ENODEV) {
1376 /*
1377 * No supply was specified for this regulator and
1378 * there will never be one.
1379 */
1380 return 0;
1381 }
1382
1383 if (!r) {
Mark Brown9f7e25e2015-07-14 11:17:26 +01001384 if (have_full_constraints()) {
1385 r = dummy_regulator_rdev;
1386 } else {
1387 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1388 rdev->supply_name, rdev->desc->name);
1389 return -EPROBE_DEFER;
1390 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001391 }
1392
1393 /* Recursively resolve the supply of the supply */
1394 ret = regulator_resolve_supply(r);
1395 if (ret < 0)
1396 return ret;
1397
1398 ret = set_supply(rdev, r);
1399 if (ret < 0)
1400 return ret;
1401
1402 /* Cascade always-on state to supply */
1403 if (_regulator_is_enabled(rdev)) {
1404 ret = regulator_enable(rdev->supply);
1405 if (ret < 0)
1406 return ret;
1407 }
1408
1409 return 0;
1410}
1411
Mark Brown5ffbd132009-07-21 16:00:23 +01001412/* Internal regulator request function */
1413static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001414 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001415{
1416 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001417 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001418 const char *devname = NULL;
Mark Brown317b5682014-01-27 17:34:07 +00001419 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001420
1421 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001422 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001423 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001424 }
1425
Mark Brown40f92442009-06-17 17:56:39 +01001426 if (dev)
1427 devname = dev_name(dev);
1428
Mark Brown317b5682014-01-27 17:34:07 +00001429 if (have_full_constraints())
1430 ret = -ENODEV;
1431 else
1432 ret = -EPROBE_DEFER;
1433
Liam Girdwood414c70c2008-04-30 15:59:04 +01001434 mutex_lock(&regulator_list_mutex);
1435
Mark Brown6d191a52012-03-29 14:19:02 +01001436 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301437 if (rdev)
1438 goto found;
1439
Mark Brownef60abb2013-09-23 16:12:52 +01001440 regulator = ERR_PTR(ret);
1441
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001442 /*
1443 * If we have return value from dev_lookup fail, we do not expect to
1444 * succeed, so, quit with appropriate error value
1445 */
Jingoo Han0d25d092014-01-08 10:02:16 +09001446 if (ret && ret != -ENODEV)
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001447 goto out;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001448
Mark Brown34abbd62010-02-12 10:18:08 +00001449 if (!devname)
1450 devname = "deviceless";
1451
Mark Brown4ddfebd2013-09-13 19:50:37 +01001452 /*
1453 * Assume that a regulator is physically present and enabled
1454 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001455 */
Mark Brown87b28412013-11-27 16:13:10 +00001456 if (have_full_constraints() && allow_dummy) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001457 pr_warn("%s supply %s not found, using dummy regulator\n",
1458 devname, id);
Mark Brown4ddfebd2013-09-13 19:50:37 +01001459
Mark Brown34abbd62010-02-12 10:18:08 +00001460 rdev = dummy_regulator_rdev;
1461 goto found;
Hans de Goede07817192013-12-17 16:24:57 +01001462 /* Don't log an error when called from regulator_get_optional() */
1463 } else if (!have_full_constraints() || exclusive) {
Shuah Khanacc3d5c2014-02-20 12:58:15 -07001464 dev_warn(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001465 }
Mark Brown34abbd62010-02-12 10:18:08 +00001466
Liam Girdwood414c70c2008-04-30 15:59:04 +01001467 mutex_unlock(&regulator_list_mutex);
1468 return regulator;
1469
1470found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001471 if (rdev->exclusive) {
1472 regulator = ERR_PTR(-EPERM);
1473 goto out;
1474 }
1475
1476 if (exclusive && rdev->open_count) {
1477 regulator = ERR_PTR(-EBUSY);
1478 goto out;
1479 }
1480
Bjorn Andersson6261b062015-03-24 18:56:05 -07001481 ret = regulator_resolve_supply(rdev);
1482 if (ret < 0) {
1483 regulator = ERR_PTR(ret);
1484 goto out;
1485 }
1486
Liam Girdwooda5766f12008-10-10 13:22:20 +01001487 if (!try_module_get(rdev->owner))
1488 goto out;
1489
Liam Girdwood414c70c2008-04-30 15:59:04 +01001490 regulator = create_regulator(rdev, dev, id);
1491 if (regulator == NULL) {
1492 regulator = ERR_PTR(-ENOMEM);
1493 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001494 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001495 }
1496
Mark Brown5ffbd132009-07-21 16:00:23 +01001497 rdev->open_count++;
1498 if (exclusive) {
1499 rdev->exclusive = 1;
1500
1501 ret = _regulator_is_enabled(rdev);
1502 if (ret > 0)
1503 rdev->use_count = 1;
1504 else
1505 rdev->use_count = 0;
1506 }
1507
Liam Girdwooda5766f12008-10-10 13:22:20 +01001508out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001509 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001510
Liam Girdwood414c70c2008-04-30 15:59:04 +01001511 return regulator;
1512}
Mark Brown5ffbd132009-07-21 16:00:23 +01001513
1514/**
1515 * regulator_get - lookup and obtain a reference to a regulator.
1516 * @dev: device for regulator "consumer"
1517 * @id: Supply name or regulator ID.
1518 *
1519 * Returns a struct regulator corresponding to the regulator producer,
1520 * or IS_ERR() condition containing errno.
1521 *
1522 * Use of supply names configured via regulator_set_device_supply() is
1523 * strongly encouraged. It is recommended that the supply name used
1524 * should match the name used for the supply and/or the relevant
1525 * device pins in the datasheet.
1526 */
1527struct regulator *regulator_get(struct device *dev, const char *id)
1528{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001529 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001530}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001531EXPORT_SYMBOL_GPL(regulator_get);
1532
Stephen Boyd070b9072012-01-16 19:39:58 -08001533/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001534 * regulator_get_exclusive - obtain exclusive access to a regulator.
1535 * @dev: device for regulator "consumer"
1536 * @id: Supply name or regulator ID.
1537 *
1538 * Returns a struct regulator corresponding to the regulator producer,
1539 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001540 * unable to obtain this regulator while this reference is held and the
1541 * use count for the regulator will be initialised to reflect the current
1542 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001543 *
1544 * This is intended for use by consumers which cannot tolerate shared
1545 * use of the regulator such as those which need to force the
1546 * regulator off for correct operation of the hardware they are
1547 * controlling.
1548 *
1549 * Use of supply names configured via regulator_set_device_supply() is
1550 * strongly encouraged. It is recommended that the supply name used
1551 * should match the name used for the supply and/or the relevant
1552 * device pins in the datasheet.
1553 */
1554struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1555{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001556 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001557}
1558EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1559
Mark Brownde1dd9f2013-07-29 21:42:42 +01001560/**
1561 * regulator_get_optional - obtain optional access to a regulator.
1562 * @dev: device for regulator "consumer"
1563 * @id: Supply name or regulator ID.
1564 *
1565 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001566 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001567 *
1568 * This is intended for use by consumers for devices which can have
1569 * some supplies unconnected in normal use, such as some MMC devices.
1570 * It can allow the regulator core to provide stub supplies for other
1571 * supplies requested using normal regulator_get() calls without
1572 * disrupting the operation of drivers that can handle absent
1573 * supplies.
1574 *
1575 * Use of supply names configured via regulator_set_device_supply() is
1576 * strongly encouraged. It is recommended that the supply name used
1577 * should match the name used for the supply and/or the relevant
1578 * device pins in the datasheet.
1579 */
1580struct regulator *regulator_get_optional(struct device *dev, const char *id)
1581{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001582 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001583}
1584EXPORT_SYMBOL_GPL(regulator_get_optional);
1585
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301586/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001587static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001588{
1589 struct regulator_dev *rdev;
1590
1591 if (regulator == NULL || IS_ERR(regulator))
1592 return;
1593
Liam Girdwood414c70c2008-04-30 15:59:04 +01001594 rdev = regulator->rdev;
1595
Mark Brown5de70512011-06-19 13:33:16 +01001596 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001597
Liam Girdwood414c70c2008-04-30 15:59:04 +01001598 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001599 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001600 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301601 mutex_lock(&rdev->mutex);
Mark Brown5de70512011-06-19 13:33:16 +01001602 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001603 list_del(&regulator->list);
1604 kfree(regulator);
1605
Mark Brown5ffbd132009-07-21 16:00:23 +01001606 rdev->open_count--;
1607 rdev->exclusive = 0;
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301608 mutex_unlock(&rdev->mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001609
Liam Girdwood414c70c2008-04-30 15:59:04 +01001610 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001611}
1612
1613/**
1614 * regulator_put - "free" the regulator source
1615 * @regulator: regulator source
1616 *
1617 * Note: drivers must ensure that all regulator_enable calls made on this
1618 * regulator source are balanced by regulator_disable calls prior to calling
1619 * this function.
1620 */
1621void regulator_put(struct regulator *regulator)
1622{
1623 mutex_lock(&regulator_list_mutex);
1624 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001625 mutex_unlock(&regulator_list_mutex);
1626}
1627EXPORT_SYMBOL_GPL(regulator_put);
1628
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001629/**
1630 * regulator_register_supply_alias - Provide device alias for supply lookup
1631 *
1632 * @dev: device that will be given as the regulator "consumer"
1633 * @id: Supply name or regulator ID
1634 * @alias_dev: device that should be used to lookup the supply
1635 * @alias_id: Supply name or regulator ID that should be used to lookup the
1636 * supply
1637 *
1638 * All lookups for id on dev will instead be conducted for alias_id on
1639 * alias_dev.
1640 */
1641int regulator_register_supply_alias(struct device *dev, const char *id,
1642 struct device *alias_dev,
1643 const char *alias_id)
1644{
1645 struct regulator_supply_alias *map;
1646
1647 map = regulator_find_supply_alias(dev, id);
1648 if (map)
1649 return -EEXIST;
1650
1651 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1652 if (!map)
1653 return -ENOMEM;
1654
1655 map->src_dev = dev;
1656 map->src_supply = id;
1657 map->alias_dev = alias_dev;
1658 map->alias_supply = alias_id;
1659
1660 list_add(&map->list, &regulator_supply_alias_list);
1661
1662 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1663 id, dev_name(dev), alias_id, dev_name(alias_dev));
1664
1665 return 0;
1666}
1667EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1668
1669/**
1670 * regulator_unregister_supply_alias - Remove device alias
1671 *
1672 * @dev: device that will be given as the regulator "consumer"
1673 * @id: Supply name or regulator ID
1674 *
1675 * Remove a lookup alias if one exists for id on dev.
1676 */
1677void regulator_unregister_supply_alias(struct device *dev, const char *id)
1678{
1679 struct regulator_supply_alias *map;
1680
1681 map = regulator_find_supply_alias(dev, id);
1682 if (map) {
1683 list_del(&map->list);
1684 kfree(map);
1685 }
1686}
1687EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1688
1689/**
1690 * regulator_bulk_register_supply_alias - register multiple aliases
1691 *
1692 * @dev: device that will be given as the regulator "consumer"
1693 * @id: List of supply names or regulator IDs
1694 * @alias_dev: device that should be used to lookup the supply
1695 * @alias_id: List of supply names or regulator IDs that should be used to
1696 * lookup the supply
1697 * @num_id: Number of aliases to register
1698 *
1699 * @return 0 on success, an errno on failure.
1700 *
1701 * This helper function allows drivers to register several supply
1702 * aliases in one operation. If any of the aliases cannot be
1703 * registered any aliases that were registered will be removed
1704 * before returning to the caller.
1705 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001706int regulator_bulk_register_supply_alias(struct device *dev,
1707 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001708 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001709 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001710 int num_id)
1711{
1712 int i;
1713 int ret;
1714
1715 for (i = 0; i < num_id; ++i) {
1716 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1717 alias_id[i]);
1718 if (ret < 0)
1719 goto err;
1720 }
1721
1722 return 0;
1723
1724err:
1725 dev_err(dev,
1726 "Failed to create supply alias %s,%s -> %s,%s\n",
1727 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1728
1729 while (--i >= 0)
1730 regulator_unregister_supply_alias(dev, id[i]);
1731
1732 return ret;
1733}
1734EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1735
1736/**
1737 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1738 *
1739 * @dev: device that will be given as the regulator "consumer"
1740 * @id: List of supply names or regulator IDs
1741 * @num_id: Number of aliases to unregister
1742 *
1743 * This helper function allows drivers to unregister several supply
1744 * aliases in one operation.
1745 */
1746void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001747 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001748 int num_id)
1749{
1750 int i;
1751
1752 for (i = 0; i < num_id; ++i)
1753 regulator_unregister_supply_alias(dev, id[i]);
1754}
1755EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1756
1757
Kim, Milof19b00d2013-02-18 06:50:39 +00001758/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1759static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1760 const struct regulator_config *config)
1761{
1762 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001763 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001764 int ret;
1765
Russell King778b28b2014-06-29 17:55:54 +01001766 gpiod = gpio_to_desc(config->ena_gpio);
1767
Kim, Milof19b00d2013-02-18 06:50:39 +00001768 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001769 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001770 rdev_dbg(rdev, "GPIO %d is already used\n",
1771 config->ena_gpio);
1772 goto update_ena_gpio_to_rdev;
1773 }
1774 }
1775
1776 ret = gpio_request_one(config->ena_gpio,
1777 GPIOF_DIR_OUT | config->ena_gpio_flags,
1778 rdev_get_name(rdev));
1779 if (ret)
1780 return ret;
1781
1782 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1783 if (pin == NULL) {
1784 gpio_free(config->ena_gpio);
1785 return -ENOMEM;
1786 }
1787
Russell King778b28b2014-06-29 17:55:54 +01001788 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001789 pin->ena_gpio_invert = config->ena_gpio_invert;
1790 list_add(&pin->list, &regulator_ena_gpio_list);
1791
1792update_ena_gpio_to_rdev:
1793 pin->request_count++;
1794 rdev->ena_pin = pin;
1795 return 0;
1796}
1797
1798static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1799{
1800 struct regulator_enable_gpio *pin, *n;
1801
1802 if (!rdev->ena_pin)
1803 return;
1804
1805 /* Free the GPIO only in case of no use */
1806 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001807 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001808 if (pin->request_count <= 1) {
1809 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001810 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001811 list_del(&pin->list);
1812 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001813 rdev->ena_pin = NULL;
1814 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001815 } else {
1816 pin->request_count--;
1817 }
1818 }
1819 }
1820}
1821
Kim, Milo967cfb12013-02-18 06:50:48 +00001822/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001823 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1824 * @rdev: regulator_dev structure
1825 * @enable: enable GPIO at initial use?
1826 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001827 * GPIO is enabled in case of initial use. (enable_count is 0)
1828 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1829 */
1830static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1831{
1832 struct regulator_enable_gpio *pin = rdev->ena_pin;
1833
1834 if (!pin)
1835 return -EINVAL;
1836
1837 if (enable) {
1838 /* Enable GPIO at initial use */
1839 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001840 gpiod_set_value_cansleep(pin->gpiod,
1841 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001842
1843 pin->enable_count++;
1844 } else {
1845 if (pin->enable_count > 1) {
1846 pin->enable_count--;
1847 return 0;
1848 }
1849
1850 /* Disable GPIO if not used */
1851 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001852 gpiod_set_value_cansleep(pin->gpiod,
1853 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001854 pin->enable_count = 0;
1855 }
1856 }
1857
1858 return 0;
1859}
1860
Guodong Xu79fd1142014-08-13 19:33:39 +08001861/**
1862 * _regulator_enable_delay - a delay helper function
1863 * @delay: time to delay in microseconds
1864 *
1865 * Delay for the requested amount of time as per the guidelines in:
1866 *
1867 * Documentation/timers/timers-howto.txt
1868 *
1869 * The assumption here is that regulators will never be enabled in
1870 * atomic context and therefore sleeping functions can be used.
1871 */
1872static void _regulator_enable_delay(unsigned int delay)
1873{
1874 unsigned int ms = delay / 1000;
1875 unsigned int us = delay % 1000;
1876
1877 if (ms > 0) {
1878 /*
1879 * For small enough values, handle super-millisecond
1880 * delays in the usleep_range() call below.
1881 */
1882 if (ms < 20)
1883 us += ms * 1000;
1884 else
1885 msleep(ms);
1886 }
1887
1888 /*
1889 * Give the scheduler some room to coalesce with any other
1890 * wakeup sources. For delays shorter than 10 us, don't even
1891 * bother setting up high-resolution timers and just busy-
1892 * loop.
1893 */
1894 if (us >= 10)
1895 usleep_range(us, us + 100);
1896 else
1897 udelay(us);
1898}
1899
Mark Brown5c5659d2012-06-27 13:21:26 +01001900static int _regulator_do_enable(struct regulator_dev *rdev)
1901{
1902 int ret, delay;
1903
1904 /* Query before enabling in case configuration dependent. */
1905 ret = _regulator_get_enable_time(rdev);
1906 if (ret >= 0) {
1907 delay = ret;
1908 } else {
1909 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1910 delay = 0;
1911 }
1912
1913 trace_regulator_enable(rdev_get_name(rdev));
1914
Guodong Xu871f5652014-08-13 19:33:40 +08001915 if (rdev->desc->off_on_delay) {
1916 /* if needed, keep a distance of off_on_delay from last time
1917 * this regulator was disabled.
1918 */
1919 unsigned long start_jiffy = jiffies;
1920 unsigned long intended, max_delay, remaining;
1921
1922 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
1923 intended = rdev->last_off_jiffy + max_delay;
1924
1925 if (time_before(start_jiffy, intended)) {
1926 /* calc remaining jiffies to deal with one-time
1927 * timer wrapping.
1928 * in case of multiple timer wrapping, either it can be
1929 * detected by out-of-range remaining, or it cannot be
1930 * detected and we gets a panelty of
1931 * _regulator_enable_delay().
1932 */
1933 remaining = intended - start_jiffy;
1934 if (remaining <= max_delay)
1935 _regulator_enable_delay(
1936 jiffies_to_usecs(remaining));
1937 }
1938 }
1939
Kim, Milo967cfb12013-02-18 06:50:48 +00001940 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08001941 if (!rdev->ena_gpio_state) {
1942 ret = regulator_ena_gpio_ctrl(rdev, true);
1943 if (ret < 0)
1944 return ret;
1945 rdev->ena_gpio_state = 1;
1946 }
Mark Brown65f73502012-06-27 14:14:38 +01001947 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001948 ret = rdev->desc->ops->enable(rdev);
1949 if (ret < 0)
1950 return ret;
1951 } else {
1952 return -EINVAL;
1953 }
1954
1955 /* Allow the regulator to ramp; it would be useful to extend
1956 * this for bulk operations so that the regulators can ramp
1957 * together. */
1958 trace_regulator_enable_delay(rdev_get_name(rdev));
1959
Guodong Xu79fd1142014-08-13 19:33:39 +08001960 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01001961
1962 trace_regulator_enable_complete(rdev_get_name(rdev));
1963
1964 return 0;
1965}
1966
Liam Girdwood414c70c2008-04-30 15:59:04 +01001967/* locks held by regulator_enable() */
1968static int _regulator_enable(struct regulator_dev *rdev)
1969{
Mark Brown5c5659d2012-06-27 13:21:26 +01001970 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001971
Liam Girdwood414c70c2008-04-30 15:59:04 +01001972 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001973 if (rdev->constraints &&
1974 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1975 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001976
Mark Brown9a2372f2009-08-03 18:49:57 +01001977 if (rdev->use_count == 0) {
1978 /* The regulator may on if it's not switchable or left on */
1979 ret = _regulator_is_enabled(rdev);
1980 if (ret == -EINVAL || ret == 0) {
1981 if (!_regulator_can_change_status(rdev))
1982 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001983
Mark Brown5c5659d2012-06-27 13:21:26 +01001984 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001985 if (ret < 0)
1986 return ret;
1987
Linus Walleija7433cf2009-08-26 12:54:04 +02001988 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001989 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001990 return ret;
1991 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001992 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001993 }
1994
Mark Brown9a2372f2009-08-03 18:49:57 +01001995 rdev->use_count++;
1996
1997 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001998}
1999
2000/**
2001 * regulator_enable - enable regulator output
2002 * @regulator: regulator source
2003 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002004 * Request that the regulator be enabled with the regulator output at
2005 * the predefined voltage or current value. Calls to regulator_enable()
2006 * must be balanced with calls to regulator_disable().
2007 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002008 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00002009 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002010 */
2011int regulator_enable(struct regulator *regulator)
2012{
David Brownell412aec62008-11-16 11:44:46 -08002013 struct regulator_dev *rdev = regulator->rdev;
2014 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002015
Mark Brown6492bc12012-04-19 13:19:07 +01002016 if (regulator->always_on)
2017 return 0;
2018
Mark Brown3801b862011-06-09 16:22:22 +01002019 if (rdev->supply) {
2020 ret = regulator_enable(rdev->supply);
2021 if (ret != 0)
2022 return ret;
2023 }
2024
David Brownell412aec62008-11-16 11:44:46 -08002025 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08002026 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002027 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002028
Heiko Stübnerd1685e42011-10-14 18:00:29 +02002029 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002030 regulator_disable(rdev->supply);
2031
Liam Girdwood414c70c2008-04-30 15:59:04 +01002032 return ret;
2033}
2034EXPORT_SYMBOL_GPL(regulator_enable);
2035
Mark Brown5c5659d2012-06-27 13:21:26 +01002036static int _regulator_do_disable(struct regulator_dev *rdev)
2037{
2038 int ret;
2039
2040 trace_regulator_disable(rdev_get_name(rdev));
2041
Kim, Milo967cfb12013-02-18 06:50:48 +00002042 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002043 if (rdev->ena_gpio_state) {
2044 ret = regulator_ena_gpio_ctrl(rdev, false);
2045 if (ret < 0)
2046 return ret;
2047 rdev->ena_gpio_state = 0;
2048 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002049
2050 } else if (rdev->desc->ops->disable) {
2051 ret = rdev->desc->ops->disable(rdev);
2052 if (ret != 0)
2053 return ret;
2054 }
2055
Guodong Xu871f5652014-08-13 19:33:40 +08002056 /* cares about last_off_jiffy only if off_on_delay is required by
2057 * device.
2058 */
2059 if (rdev->desc->off_on_delay)
2060 rdev->last_off_jiffy = jiffies;
2061
Mark Brown5c5659d2012-06-27 13:21:26 +01002062 trace_regulator_disable_complete(rdev_get_name(rdev));
2063
Mark Brown5c5659d2012-06-27 13:21:26 +01002064 return 0;
2065}
2066
Liam Girdwood414c70c2008-04-30 15:59:04 +01002067/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002068static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002069{
2070 int ret = 0;
2071
David Brownellcd94b502009-03-11 16:43:34 -08002072 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002073 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002074 return -EIO;
2075
Liam Girdwood414c70c2008-04-30 15:59:04 +01002076 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002077 if (rdev->use_count == 1 &&
2078 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002079
2080 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01002081 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002082 ret = _notifier_call_chain(rdev,
2083 REGULATOR_EVENT_PRE_DISABLE,
2084 NULL);
2085 if (ret & NOTIFY_STOP_MASK)
2086 return -EINVAL;
2087
Mark Brown5c5659d2012-06-27 13:21:26 +01002088 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002089 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002090 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002091 _notifier_call_chain(rdev,
2092 REGULATOR_EVENT_ABORT_DISABLE,
2093 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002094 return ret;
2095 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002096 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2097 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002098 }
2099
Liam Girdwood414c70c2008-04-30 15:59:04 +01002100 rdev->use_count = 0;
2101 } else if (rdev->use_count > 1) {
2102
2103 if (rdev->constraints &&
2104 (rdev->constraints->valid_ops_mask &
2105 REGULATOR_CHANGE_DRMS))
2106 drms_uA_update(rdev);
2107
2108 rdev->use_count--;
2109 }
Mark Brown3801b862011-06-09 16:22:22 +01002110
Liam Girdwood414c70c2008-04-30 15:59:04 +01002111 return ret;
2112}
2113
2114/**
2115 * regulator_disable - disable regulator output
2116 * @regulator: regulator source
2117 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002118 * Disable the regulator output voltage or current. Calls to
2119 * regulator_enable() must be balanced with calls to
2120 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002121 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002122 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002123 * devices have it enabled, the regulator device supports disabling and
2124 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002125 */
2126int regulator_disable(struct regulator *regulator)
2127{
David Brownell412aec62008-11-16 11:44:46 -08002128 struct regulator_dev *rdev = regulator->rdev;
2129 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002130
Mark Brown6492bc12012-04-19 13:19:07 +01002131 if (regulator->always_on)
2132 return 0;
2133
David Brownell412aec62008-11-16 11:44:46 -08002134 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002135 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002136 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002137
Mark Brown3801b862011-06-09 16:22:22 +01002138 if (ret == 0 && rdev->supply)
2139 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002140
Liam Girdwood414c70c2008-04-30 15:59:04 +01002141 return ret;
2142}
2143EXPORT_SYMBOL_GPL(regulator_disable);
2144
2145/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002146static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002147{
2148 int ret = 0;
2149
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002150 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2151 REGULATOR_EVENT_PRE_DISABLE, NULL);
2152 if (ret & NOTIFY_STOP_MASK)
2153 return -EINVAL;
2154
Markus Pargmann66fda752014-02-20 17:36:04 +01002155 ret = _regulator_do_disable(rdev);
2156 if (ret < 0) {
2157 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002158 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2159 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002160 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002161 }
2162
Markus Pargmann66fda752014-02-20 17:36:04 +01002163 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2164 REGULATOR_EVENT_DISABLE, NULL);
2165
2166 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002167}
2168
2169/**
2170 * regulator_force_disable - force disable regulator output
2171 * @regulator: regulator source
2172 *
2173 * Forcibly disable the regulator output voltage or current.
2174 * NOTE: this *will* disable the regulator output even if other consumer
2175 * devices have it enabled. This should be used for situations when device
2176 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2177 */
2178int regulator_force_disable(struct regulator *regulator)
2179{
Mark Brown82d15832011-05-09 11:41:02 +02002180 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002181 int ret;
2182
Mark Brown82d15832011-05-09 11:41:02 +02002183 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002184 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002185 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002186 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002187
Mark Brown3801b862011-06-09 16:22:22 +01002188 if (rdev->supply)
2189 while (rdev->open_count--)
2190 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002191
Liam Girdwood414c70c2008-04-30 15:59:04 +01002192 return ret;
2193}
2194EXPORT_SYMBOL_GPL(regulator_force_disable);
2195
Mark Brownda07ecd2011-09-11 09:53:50 +01002196static void regulator_disable_work(struct work_struct *work)
2197{
2198 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2199 disable_work.work);
2200 int count, i, ret;
2201
2202 mutex_lock(&rdev->mutex);
2203
2204 BUG_ON(!rdev->deferred_disables);
2205
2206 count = rdev->deferred_disables;
2207 rdev->deferred_disables = 0;
2208
2209 for (i = 0; i < count; i++) {
2210 ret = _regulator_disable(rdev);
2211 if (ret != 0)
2212 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2213 }
2214
2215 mutex_unlock(&rdev->mutex);
2216
2217 if (rdev->supply) {
2218 for (i = 0; i < count; i++) {
2219 ret = regulator_disable(rdev->supply);
2220 if (ret != 0) {
2221 rdev_err(rdev,
2222 "Supply disable failed: %d\n", ret);
2223 }
2224 }
2225 }
2226}
2227
2228/**
2229 * regulator_disable_deferred - disable regulator output with delay
2230 * @regulator: regulator source
2231 * @ms: miliseconds until the regulator is disabled
2232 *
2233 * Execute regulator_disable() on the regulator after a delay. This
2234 * is intended for use with devices that require some time to quiesce.
2235 *
2236 * NOTE: this will only disable the regulator output if no other consumer
2237 * devices have it enabled, the regulator device supports disabling and
2238 * machine constraints permit this operation.
2239 */
2240int regulator_disable_deferred(struct regulator *regulator, int ms)
2241{
2242 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002243 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002244
Mark Brown6492bc12012-04-19 13:19:07 +01002245 if (regulator->always_on)
2246 return 0;
2247
Mark Brown2b5a24a2012-09-07 11:00:53 +08002248 if (!ms)
2249 return regulator_disable(regulator);
2250
Mark Brownda07ecd2011-09-11 09:53:50 +01002251 mutex_lock(&rdev->mutex);
2252 rdev->deferred_disables++;
2253 mutex_unlock(&rdev->mutex);
2254
Mark Brown070260f2013-07-18 11:52:04 +01002255 ret = queue_delayed_work(system_power_efficient_wq,
2256 &rdev->disable_work,
2257 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002258 if (ret < 0)
2259 return ret;
2260 else
2261 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002262}
2263EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2264
Liam Girdwood414c70c2008-04-30 15:59:04 +01002265static int _regulator_is_enabled(struct regulator_dev *rdev)
2266{
Mark Brown65f73502012-06-27 14:14:38 +01002267 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002268 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002269 return rdev->ena_gpio_state;
2270
Mark Brown9a7f6a42010-02-11 17:22:45 +00002271 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002272 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002273 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002274
Mark Brown93325462009-08-03 18:49:56 +01002275 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002276}
2277
2278/**
2279 * regulator_is_enabled - is the regulator output enabled
2280 * @regulator: regulator source
2281 *
David Brownell412aec62008-11-16 11:44:46 -08002282 * Returns positive if the regulator driver backing the source/client
2283 * has requested that the device be enabled, zero if it hasn't, else a
2284 * negative errno code.
2285 *
2286 * Note that the device backing this regulator handle can have multiple
2287 * users, so it might be enabled even if regulator_enable() was never
2288 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002289 */
2290int regulator_is_enabled(struct regulator *regulator)
2291{
Mark Brown93325462009-08-03 18:49:56 +01002292 int ret;
2293
Mark Brown6492bc12012-04-19 13:19:07 +01002294 if (regulator->always_on)
2295 return 1;
2296
Mark Brown93325462009-08-03 18:49:56 +01002297 mutex_lock(&regulator->rdev->mutex);
2298 ret = _regulator_is_enabled(regulator->rdev);
2299 mutex_unlock(&regulator->rdev->mutex);
2300
2301 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002302}
2303EXPORT_SYMBOL_GPL(regulator_is_enabled);
2304
2305/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002306 * regulator_can_change_voltage - check if regulator can change voltage
2307 * @regulator: regulator source
2308 *
2309 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002310 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002311 * or dummy regulators and disabling voltage change logic in the client
2312 * driver.
2313 */
2314int regulator_can_change_voltage(struct regulator *regulator)
2315{
2316 struct regulator_dev *rdev = regulator->rdev;
2317
2318 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002319 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2320 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2321 return 1;
2322
2323 if (rdev->desc->continuous_voltage_range &&
2324 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2325 rdev->constraints->min_uV != rdev->constraints->max_uV)
2326 return 1;
2327 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002328
2329 return 0;
2330}
2331EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2332
2333/**
David Brownell4367cfd2009-02-26 11:48:36 -08002334 * regulator_count_voltages - count regulator_list_voltage() selectors
2335 * @regulator: regulator source
2336 *
2337 * Returns number of selectors, or negative errno. Selectors are
2338 * numbered starting at zero, and typically correspond to bitfields
2339 * in hardware registers.
2340 */
2341int regulator_count_voltages(struct regulator *regulator)
2342{
2343 struct regulator_dev *rdev = regulator->rdev;
2344
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002345 if (rdev->desc->n_voltages)
2346 return rdev->desc->n_voltages;
2347
2348 if (!rdev->supply)
2349 return -EINVAL;
2350
2351 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002352}
2353EXPORT_SYMBOL_GPL(regulator_count_voltages);
2354
2355/**
2356 * regulator_list_voltage - enumerate supported voltages
2357 * @regulator: regulator source
2358 * @selector: identify voltage to list
2359 * Context: can sleep
2360 *
2361 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002362 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002363 * negative errno.
2364 */
2365int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2366{
Guodong Xu272e2312014-08-13 19:33:38 +08002367 struct regulator_dev *rdev = regulator->rdev;
2368 const struct regulator_ops *ops = rdev->desc->ops;
2369 int ret;
David Brownell4367cfd2009-02-26 11:48:36 -08002370
Guennadi Liakhovetskif4460432013-11-13 12:33:00 +01002371 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2372 return rdev->desc->fixed_uV;
2373
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002374 if (ops->list_voltage) {
2375 if (selector >= rdev->desc->n_voltages)
2376 return -EINVAL;
2377 mutex_lock(&rdev->mutex);
2378 ret = ops->list_voltage(rdev, selector);
2379 mutex_unlock(&rdev->mutex);
2380 } else if (rdev->supply) {
2381 ret = regulator_list_voltage(rdev->supply, selector);
2382 } else {
David Brownell4367cfd2009-02-26 11:48:36 -08002383 return -EINVAL;
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002384 }
David Brownell4367cfd2009-02-26 11:48:36 -08002385
2386 if (ret > 0) {
2387 if (ret < rdev->constraints->min_uV)
2388 ret = 0;
2389 else if (ret > rdev->constraints->max_uV)
2390 ret = 0;
2391 }
2392
2393 return ret;
2394}
2395EXPORT_SYMBOL_GPL(regulator_list_voltage);
2396
2397/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002398 * regulator_get_regmap - get the regulator's register map
2399 * @regulator: regulator source
2400 *
2401 * Returns the register map for the given regulator, or an ERR_PTR value
2402 * if the regulator doesn't use regmap.
2403 */
2404struct regmap *regulator_get_regmap(struct regulator *regulator)
2405{
2406 struct regmap *map = regulator->rdev->regmap;
2407
2408 return map ? map : ERR_PTR(-EOPNOTSUPP);
2409}
2410
2411/**
2412 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2413 * @regulator: regulator source
2414 * @vsel_reg: voltage selector register, output parameter
2415 * @vsel_mask: mask for voltage selector bitfield, output parameter
2416 *
2417 * Returns the hardware register offset and bitmask used for setting the
2418 * regulator voltage. This might be useful when configuring voltage-scaling
2419 * hardware or firmware that can make I2C requests behind the kernel's back,
2420 * for example.
2421 *
2422 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2423 * and 0 is returned, otherwise a negative errno is returned.
2424 */
2425int regulator_get_hardware_vsel_register(struct regulator *regulator,
2426 unsigned *vsel_reg,
2427 unsigned *vsel_mask)
2428{
Guodong Xu39f54602014-08-19 18:07:41 +08002429 struct regulator_dev *rdev = regulator->rdev;
2430 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002431
2432 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2433 return -EOPNOTSUPP;
2434
2435 *vsel_reg = rdev->desc->vsel_reg;
2436 *vsel_mask = rdev->desc->vsel_mask;
2437
2438 return 0;
2439}
2440EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2441
2442/**
2443 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2444 * @regulator: regulator source
2445 * @selector: identify voltage to list
2446 *
2447 * Converts the selector to a hardware-specific voltage selector that can be
2448 * directly written to the regulator registers. The address of the voltage
2449 * register can be determined by calling @regulator_get_hardware_vsel_register.
2450 *
2451 * On error a negative errno is returned.
2452 */
2453int regulator_list_hardware_vsel(struct regulator *regulator,
2454 unsigned selector)
2455{
Guodong Xu39f54602014-08-19 18:07:41 +08002456 struct regulator_dev *rdev = regulator->rdev;
2457 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002458
2459 if (selector >= rdev->desc->n_voltages)
2460 return -EINVAL;
2461 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2462 return -EOPNOTSUPP;
2463
2464 return selector;
2465}
2466EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2467
2468/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002469 * regulator_get_linear_step - return the voltage step size between VSEL values
2470 * @regulator: regulator source
2471 *
2472 * Returns the voltage step size between VSEL values for linear
2473 * regulators, or return 0 if the regulator isn't a linear regulator.
2474 */
2475unsigned int regulator_get_linear_step(struct regulator *regulator)
2476{
2477 struct regulator_dev *rdev = regulator->rdev;
2478
2479 return rdev->desc->uV_step;
2480}
2481EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2482
2483/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002484 * regulator_is_supported_voltage - check if a voltage range can be supported
2485 *
2486 * @regulator: Regulator to check.
2487 * @min_uV: Minimum required voltage in uV.
2488 * @max_uV: Maximum required voltage in uV.
2489 *
2490 * Returns a boolean or a negative error code.
2491 */
2492int regulator_is_supported_voltage(struct regulator *regulator,
2493 int min_uV, int max_uV)
2494{
Mark Brownc5f39392012-07-02 15:00:18 +01002495 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002496 int i, voltages, ret;
2497
Mark Brownc5f39392012-07-02 15:00:18 +01002498 /* If we can't change voltage check the current voltage */
2499 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2500 ret = regulator_get_voltage(regulator);
2501 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002502 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002503 else
2504 return ret;
2505 }
2506
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002507 /* Any voltage within constrains range is fine? */
2508 if (rdev->desc->continuous_voltage_range)
2509 return min_uV >= rdev->constraints->min_uV &&
2510 max_uV <= rdev->constraints->max_uV;
2511
Mark Browna7a1ad92009-07-21 16:00:24 +01002512 ret = regulator_count_voltages(regulator);
2513 if (ret < 0)
2514 return ret;
2515 voltages = ret;
2516
2517 for (i = 0; i < voltages; i++) {
2518 ret = regulator_list_voltage(regulator, i);
2519
2520 if (ret >= min_uV && ret <= max_uV)
2521 return 1;
2522 }
2523
2524 return 0;
2525}
Mark Browna398eaa2011-12-28 12:48:45 +00002526EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002527
Heiko Stübner71795692014-08-28 12:36:04 -07002528static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2529 int min_uV, int max_uV,
2530 unsigned *selector)
2531{
2532 struct pre_voltage_change_data data;
2533 int ret;
2534
2535 data.old_uV = _regulator_get_voltage(rdev);
2536 data.min_uV = min_uV;
2537 data.max_uV = max_uV;
2538 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2539 &data);
2540 if (ret & NOTIFY_STOP_MASK)
2541 return -EINVAL;
2542
2543 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2544 if (ret >= 0)
2545 return ret;
2546
2547 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2548 (void *)data.old_uV);
2549
2550 return ret;
2551}
2552
2553static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2554 int uV, unsigned selector)
2555{
2556 struct pre_voltage_change_data data;
2557 int ret;
2558
2559 data.old_uV = _regulator_get_voltage(rdev);
2560 data.min_uV = uV;
2561 data.max_uV = uV;
2562 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2563 &data);
2564 if (ret & NOTIFY_STOP_MASK)
2565 return -EINVAL;
2566
2567 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2568 if (ret >= 0)
2569 return ret;
2570
2571 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2572 (void *)data.old_uV);
2573
2574 return ret;
2575}
2576
Mark Brown75790252010-12-12 14:25:50 +00002577static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2578 int min_uV, int max_uV)
2579{
2580 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002581 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002582 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002583 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002584 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002585
2586 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2587
Mark Brownbf5892a2011-05-08 22:13:37 +01002588 min_uV += rdev->constraints->uV_offset;
2589 max_uV += rdev->constraints->uV_offset;
2590
Axel Lineba41a52012-04-04 10:32:10 +08002591 /*
2592 * If we can't obtain the old selector there is not enough
2593 * info to call set_voltage_time_sel().
2594 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002595 if (_regulator_is_enabled(rdev) &&
2596 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002597 rdev->desc->ops->get_voltage_sel) {
2598 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2599 if (old_selector < 0)
2600 return old_selector;
2601 }
2602
Mark Brown75790252010-12-12 14:25:50 +00002603 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002604 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2605 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002606
2607 if (ret >= 0) {
2608 if (rdev->desc->ops->list_voltage)
2609 best_val = rdev->desc->ops->list_voltage(rdev,
2610 selector);
2611 else
2612 best_val = _regulator_get_voltage(rdev);
2613 }
2614
Mark Browne8eef822010-12-12 14:36:17 +00002615 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002616 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002617 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2618 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002619 } else {
2620 if (rdev->desc->ops->list_voltage ==
2621 regulator_list_voltage_linear)
2622 ret = regulator_map_voltage_linear(rdev,
2623 min_uV, max_uV);
Axel Lin36698622014-05-24 11:10:43 +08002624 else if (rdev->desc->ops->list_voltage ==
2625 regulator_list_voltage_linear_range)
2626 ret = regulator_map_voltage_linear_range(rdev,
2627 min_uV, max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002628 else
2629 ret = regulator_map_voltage_iterate(rdev,
2630 min_uV, max_uV);
2631 }
Mark Browne8eef822010-12-12 14:36:17 +00002632
Mark Browne843fc42012-05-09 21:16:06 +01002633 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002634 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2635 if (min_uV <= best_val && max_uV >= best_val) {
2636 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002637 if (old_selector == selector)
2638 ret = 0;
2639 else
Heiko Stübner71795692014-08-28 12:36:04 -07002640 ret = _regulator_call_set_voltage_sel(
2641 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002642 } else {
2643 ret = -EINVAL;
2644 }
Mark Browne8eef822010-12-12 14:36:17 +00002645 }
Mark Brown75790252010-12-12 14:25:50 +00002646 } else {
2647 ret = -EINVAL;
2648 }
2649
Axel Lineba41a52012-04-04 10:32:10 +08002650 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302651 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2652 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002653
2654 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2655 old_selector, selector);
2656 if (delay < 0) {
2657 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2658 delay);
2659 delay = 0;
2660 }
Axel Lineba41a52012-04-04 10:32:10 +08002661
Philip Rakity8b96de32012-06-14 15:07:56 -07002662 /* Insert any necessary delays */
2663 if (delay >= 1000) {
2664 mdelay(delay / 1000);
2665 udelay(delay % 1000);
2666 } else if (delay) {
2667 udelay(delay);
2668 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002669 }
2670
Axel Lin2f6c7972012-08-06 23:44:19 +08002671 if (ret == 0 && best_val >= 0) {
2672 unsigned long data = best_val;
2673
Mark Brownded06a52010-12-16 13:59:10 +00002674 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002675 (void *)data);
2676 }
Mark Brownded06a52010-12-16 13:59:10 +00002677
Axel Lineba41a52012-04-04 10:32:10 +08002678 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002679
2680 return ret;
2681}
2682
Mark Browna7a1ad92009-07-21 16:00:24 +01002683/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002684 * regulator_set_voltage - set regulator output voltage
2685 * @regulator: regulator source
2686 * @min_uV: Minimum required voltage in uV
2687 * @max_uV: Maximum acceptable voltage in uV
2688 *
2689 * Sets a voltage regulator to the desired output voltage. This can be set
2690 * during any regulator state. IOW, regulator can be disabled or enabled.
2691 *
2692 * If the regulator is enabled then the voltage will change to the new value
2693 * immediately otherwise if the regulator is disabled the regulator will
2694 * output at the new voltage when enabled.
2695 *
2696 * NOTE: If the regulator is shared between several devices then the lowest
2697 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002698 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002699 * calling this function otherwise this call will fail.
2700 */
2701int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2702{
2703 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002704 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002705 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002706 int current_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002707
2708 mutex_lock(&rdev->mutex);
2709
Mark Brown95a3c232010-12-16 15:49:37 +00002710 /* If we're setting the same range as last time the change
2711 * should be a noop (some cpufreq implementations use the same
2712 * voltage for multiple frequencies, for example).
2713 */
2714 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2715 goto out;
2716
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002717 /* If we're trying to set a range that overlaps the current voltage,
2718 * return succesfully even though the regulator does not support
2719 * changing the voltage.
2720 */
2721 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2722 current_uV = _regulator_get_voltage(rdev);
2723 if (min_uV <= current_uV && current_uV <= max_uV) {
2724 regulator->min_uV = min_uV;
2725 regulator->max_uV = max_uV;
2726 goto out;
2727 }
2728 }
2729
Liam Girdwood414c70c2008-04-30 15:59:04 +01002730 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002731 if (!rdev->desc->ops->set_voltage &&
2732 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002733 ret = -EINVAL;
2734 goto out;
2735 }
2736
2737 /* constraints check */
2738 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2739 if (ret < 0)
2740 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002741
Paolo Pisati92d7a552012-12-13 10:13:00 +01002742 /* restore original values in case of error */
2743 old_min_uV = regulator->min_uV;
2744 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002745 regulator->min_uV = min_uV;
2746 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002747
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002748 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2749 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002750 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002751
Mark Brown75790252010-12-12 14:25:50 +00002752 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002753 if (ret < 0)
2754 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002755
Liam Girdwood414c70c2008-04-30 15:59:04 +01002756out:
2757 mutex_unlock(&rdev->mutex);
2758 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002759out2:
2760 regulator->min_uV = old_min_uV;
2761 regulator->max_uV = old_max_uV;
2762 mutex_unlock(&rdev->mutex);
2763 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002764}
2765EXPORT_SYMBOL_GPL(regulator_set_voltage);
2766
Mark Brown606a2562010-12-16 15:49:36 +00002767/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002768 * regulator_set_voltage_time - get raise/fall time
2769 * @regulator: regulator source
2770 * @old_uV: starting voltage in microvolts
2771 * @new_uV: target voltage in microvolts
2772 *
2773 * Provided with the starting and ending voltage, this function attempts to
2774 * calculate the time in microseconds required to rise or fall to this new
2775 * voltage.
2776 */
2777int regulator_set_voltage_time(struct regulator *regulator,
2778 int old_uV, int new_uV)
2779{
Guodong Xu272e2312014-08-13 19:33:38 +08002780 struct regulator_dev *rdev = regulator->rdev;
2781 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002782 int old_sel = -1;
2783 int new_sel = -1;
2784 int voltage;
2785 int i;
2786
2787 /* Currently requires operations to do this */
2788 if (!ops->list_voltage || !ops->set_voltage_time_sel
2789 || !rdev->desc->n_voltages)
2790 return -EINVAL;
2791
2792 for (i = 0; i < rdev->desc->n_voltages; i++) {
2793 /* We only look for exact voltage matches here */
2794 voltage = regulator_list_voltage(regulator, i);
2795 if (voltage < 0)
2796 return -EINVAL;
2797 if (voltage == 0)
2798 continue;
2799 if (voltage == old_uV)
2800 old_sel = i;
2801 if (voltage == new_uV)
2802 new_sel = i;
2803 }
2804
2805 if (old_sel < 0 || new_sel < 0)
2806 return -EINVAL;
2807
2808 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2809}
2810EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2811
2812/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002813 * regulator_set_voltage_time_sel - get raise/fall time
2814 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302815 * @old_selector: selector for starting voltage
2816 * @new_selector: selector for target voltage
2817 *
2818 * Provided with the starting and target voltage selectors, this function
2819 * returns time in microseconds required to rise or fall to this new voltage
2820 *
Axel Linf11d08c2012-06-19 09:38:45 +08002821 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002822 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302823 */
2824int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2825 unsigned int old_selector,
2826 unsigned int new_selector)
2827{
Axel Lin398715a2012-06-18 10:11:28 +08002828 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002829 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002830
2831 if (rdev->constraints->ramp_delay)
2832 ramp_delay = rdev->constraints->ramp_delay;
2833 else if (rdev->desc->ramp_delay)
2834 ramp_delay = rdev->desc->ramp_delay;
2835
2836 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302837 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002838 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302839 }
Axel Lin398715a2012-06-18 10:11:28 +08002840
Axel Linf11d08c2012-06-19 09:38:45 +08002841 /* sanity check */
2842 if (!rdev->desc->ops->list_voltage)
2843 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002844
Axel Linf11d08c2012-06-19 09:38:45 +08002845 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2846 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2847
2848 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302849}
Mark Brownb19dbf72012-06-23 11:34:20 +01002850EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302851
2852/**
Mark Brown606a2562010-12-16 15:49:36 +00002853 * regulator_sync_voltage - re-apply last regulator output voltage
2854 * @regulator: regulator source
2855 *
2856 * Re-apply the last configured voltage. This is intended to be used
2857 * where some external control source the consumer is cooperating with
2858 * has caused the configured voltage to change.
2859 */
2860int regulator_sync_voltage(struct regulator *regulator)
2861{
2862 struct regulator_dev *rdev = regulator->rdev;
2863 int ret, min_uV, max_uV;
2864
2865 mutex_lock(&rdev->mutex);
2866
2867 if (!rdev->desc->ops->set_voltage &&
2868 !rdev->desc->ops->set_voltage_sel) {
2869 ret = -EINVAL;
2870 goto out;
2871 }
2872
2873 /* This is only going to work if we've had a voltage configured. */
2874 if (!regulator->min_uV && !regulator->max_uV) {
2875 ret = -EINVAL;
2876 goto out;
2877 }
2878
2879 min_uV = regulator->min_uV;
2880 max_uV = regulator->max_uV;
2881
2882 /* This should be a paranoia check... */
2883 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2884 if (ret < 0)
2885 goto out;
2886
2887 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2888 if (ret < 0)
2889 goto out;
2890
2891 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2892
2893out:
2894 mutex_unlock(&rdev->mutex);
2895 return ret;
2896}
2897EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2898
Liam Girdwood414c70c2008-04-30 15:59:04 +01002899static int _regulator_get_voltage(struct regulator_dev *rdev)
2900{
Mark Brownbf5892a2011-05-08 22:13:37 +01002901 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002902
2903 if (rdev->desc->ops->get_voltage_sel) {
2904 sel = rdev->desc->ops->get_voltage_sel(rdev);
2905 if (sel < 0)
2906 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002907 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002908 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002909 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002910 } else if (rdev->desc->ops->list_voltage) {
2911 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05302912 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
2913 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02002914 } else if (rdev->supply) {
2915 ret = regulator_get_voltage(rdev->supply);
Axel Lincb220d12011-05-23 20:08:10 +08002916 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002917 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002918 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002919
Axel Lincb220d12011-05-23 20:08:10 +08002920 if (ret < 0)
2921 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002922 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002923}
2924
2925/**
2926 * regulator_get_voltage - get regulator output voltage
2927 * @regulator: regulator source
2928 *
2929 * This returns the current regulator voltage in uV.
2930 *
2931 * NOTE: If the regulator is disabled it will return the voltage value. This
2932 * function should not be used to determine regulator state.
2933 */
2934int regulator_get_voltage(struct regulator *regulator)
2935{
2936 int ret;
2937
2938 mutex_lock(&regulator->rdev->mutex);
2939
2940 ret = _regulator_get_voltage(regulator->rdev);
2941
2942 mutex_unlock(&regulator->rdev->mutex);
2943
2944 return ret;
2945}
2946EXPORT_SYMBOL_GPL(regulator_get_voltage);
2947
2948/**
2949 * regulator_set_current_limit - set regulator output current limit
2950 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002951 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002952 * @max_uA: Maximum supported current in uA
2953 *
2954 * Sets current sink to the desired output current. This can be set during
2955 * any regulator state. IOW, regulator can be disabled or enabled.
2956 *
2957 * If the regulator is enabled then the current will change to the new value
2958 * immediately otherwise if the regulator is disabled the regulator will
2959 * output at the new current when enabled.
2960 *
2961 * NOTE: Regulator system constraints must be set for this regulator before
2962 * calling this function otherwise this call will fail.
2963 */
2964int regulator_set_current_limit(struct regulator *regulator,
2965 int min_uA, int max_uA)
2966{
2967 struct regulator_dev *rdev = regulator->rdev;
2968 int ret;
2969
2970 mutex_lock(&rdev->mutex);
2971
2972 /* sanity check */
2973 if (!rdev->desc->ops->set_current_limit) {
2974 ret = -EINVAL;
2975 goto out;
2976 }
2977
2978 /* constraints check */
2979 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2980 if (ret < 0)
2981 goto out;
2982
2983 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2984out:
2985 mutex_unlock(&rdev->mutex);
2986 return ret;
2987}
2988EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2989
2990static int _regulator_get_current_limit(struct regulator_dev *rdev)
2991{
2992 int ret;
2993
2994 mutex_lock(&rdev->mutex);
2995
2996 /* sanity check */
2997 if (!rdev->desc->ops->get_current_limit) {
2998 ret = -EINVAL;
2999 goto out;
3000 }
3001
3002 ret = rdev->desc->ops->get_current_limit(rdev);
3003out:
3004 mutex_unlock(&rdev->mutex);
3005 return ret;
3006}
3007
3008/**
3009 * regulator_get_current_limit - get regulator output current
3010 * @regulator: regulator source
3011 *
3012 * This returns the current supplied by the specified current sink in uA.
3013 *
3014 * NOTE: If the regulator is disabled it will return the current value. This
3015 * function should not be used to determine regulator state.
3016 */
3017int regulator_get_current_limit(struct regulator *regulator)
3018{
3019 return _regulator_get_current_limit(regulator->rdev);
3020}
3021EXPORT_SYMBOL_GPL(regulator_get_current_limit);
3022
3023/**
3024 * regulator_set_mode - set regulator operating mode
3025 * @regulator: regulator source
3026 * @mode: operating mode - one of the REGULATOR_MODE constants
3027 *
3028 * Set regulator operating mode to increase regulator efficiency or improve
3029 * regulation performance.
3030 *
3031 * NOTE: Regulator system constraints must be set for this regulator before
3032 * calling this function otherwise this call will fail.
3033 */
3034int regulator_set_mode(struct regulator *regulator, unsigned int mode)
3035{
3036 struct regulator_dev *rdev = regulator->rdev;
3037 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303038 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003039
3040 mutex_lock(&rdev->mutex);
3041
3042 /* sanity check */
3043 if (!rdev->desc->ops->set_mode) {
3044 ret = -EINVAL;
3045 goto out;
3046 }
3047
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303048 /* return if the same mode is requested */
3049 if (rdev->desc->ops->get_mode) {
3050 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3051 if (regulator_curr_mode == mode) {
3052 ret = 0;
3053 goto out;
3054 }
3055 }
3056
Liam Girdwood414c70c2008-04-30 15:59:04 +01003057 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003058 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003059 if (ret < 0)
3060 goto out;
3061
3062 ret = rdev->desc->ops->set_mode(rdev, mode);
3063out:
3064 mutex_unlock(&rdev->mutex);
3065 return ret;
3066}
3067EXPORT_SYMBOL_GPL(regulator_set_mode);
3068
3069static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3070{
3071 int ret;
3072
3073 mutex_lock(&rdev->mutex);
3074
3075 /* sanity check */
3076 if (!rdev->desc->ops->get_mode) {
3077 ret = -EINVAL;
3078 goto out;
3079 }
3080
3081 ret = rdev->desc->ops->get_mode(rdev);
3082out:
3083 mutex_unlock(&rdev->mutex);
3084 return ret;
3085}
3086
3087/**
3088 * regulator_get_mode - get regulator operating mode
3089 * @regulator: regulator source
3090 *
3091 * Get the current regulator operating mode.
3092 */
3093unsigned int regulator_get_mode(struct regulator *regulator)
3094{
3095 return _regulator_get_mode(regulator->rdev);
3096}
3097EXPORT_SYMBOL_GPL(regulator_get_mode);
3098
3099/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003100 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003101 * @regulator: regulator source
3102 * @uA_load: load current
3103 *
3104 * Notifies the regulator core of a new device load. This is then used by
3105 * DRMS (if enabled by constraints) to set the most efficient regulator
3106 * operating mode for the new regulator loading.
3107 *
3108 * Consumer devices notify their supply regulator of the maximum power
3109 * they will require (can be taken from device datasheet in the power
3110 * consumption tables) when they change operational status and hence power
3111 * state. Examples of operational state changes that can affect power
3112 * consumption are :-
3113 *
3114 * o Device is opened / closed.
3115 * o Device I/O is about to begin or has just finished.
3116 * o Device is idling in between work.
3117 *
3118 * This information is also exported via sysfs to userspace.
3119 *
3120 * DRMS will sum the total requested load on the regulator and change
3121 * to the most efficient operating mode if platform constraints allow.
3122 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003123 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003124 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003125int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003126{
3127 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003128 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003129
Liam Girdwood414c70c2008-04-30 15:59:04 +01003130 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003131 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003132 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003133 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003134
Liam Girdwood414c70c2008-04-30 15:59:04 +01003135 return ret;
3136}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003137EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003138
3139/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003140 * regulator_allow_bypass - allow the regulator to go into bypass mode
3141 *
3142 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003143 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003144 *
3145 * Allow the regulator to go into bypass mode if all other consumers
3146 * for the regulator also enable bypass mode and the machine
3147 * constraints allow this. Bypass mode means that the regulator is
3148 * simply passing the input directly to the output with no regulation.
3149 */
3150int regulator_allow_bypass(struct regulator *regulator, bool enable)
3151{
3152 struct regulator_dev *rdev = regulator->rdev;
3153 int ret = 0;
3154
3155 if (!rdev->desc->ops->set_bypass)
3156 return 0;
3157
3158 if (rdev->constraints &&
3159 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3160 return 0;
3161
3162 mutex_lock(&rdev->mutex);
3163
3164 if (enable && !regulator->bypass) {
3165 rdev->bypass_count++;
3166
3167 if (rdev->bypass_count == rdev->open_count) {
3168 ret = rdev->desc->ops->set_bypass(rdev, enable);
3169 if (ret != 0)
3170 rdev->bypass_count--;
3171 }
3172
3173 } else if (!enable && regulator->bypass) {
3174 rdev->bypass_count--;
3175
3176 if (rdev->bypass_count != rdev->open_count) {
3177 ret = rdev->desc->ops->set_bypass(rdev, enable);
3178 if (ret != 0)
3179 rdev->bypass_count++;
3180 }
3181 }
3182
3183 if (ret == 0)
3184 regulator->bypass = enable;
3185
3186 mutex_unlock(&rdev->mutex);
3187
3188 return ret;
3189}
3190EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3191
3192/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003193 * regulator_register_notifier - register regulator event notifier
3194 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003195 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003196 *
3197 * Register notifier block to receive regulator events.
3198 */
3199int regulator_register_notifier(struct regulator *regulator,
3200 struct notifier_block *nb)
3201{
3202 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3203 nb);
3204}
3205EXPORT_SYMBOL_GPL(regulator_register_notifier);
3206
3207/**
3208 * regulator_unregister_notifier - unregister regulator event notifier
3209 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003210 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003211 *
3212 * Unregister regulator event notifier block.
3213 */
3214int regulator_unregister_notifier(struct regulator *regulator,
3215 struct notifier_block *nb)
3216{
3217 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3218 nb);
3219}
3220EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3221
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003222/* notify regulator consumers and downstream regulator consumers.
3223 * Note mutex must be held by caller.
3224 */
Heiko Stübner71795692014-08-28 12:36:04 -07003225static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003226 unsigned long event, void *data)
3227{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003228 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003229 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003230}
3231
3232/**
3233 * regulator_bulk_get - get multiple regulator consumers
3234 *
3235 * @dev: Device to supply
3236 * @num_consumers: Number of consumers to register
3237 * @consumers: Configuration of consumers; clients are stored here.
3238 *
3239 * @return 0 on success, an errno on failure.
3240 *
3241 * This helper function allows drivers to get several regulator
3242 * consumers in one operation. If any of the regulators cannot be
3243 * acquired then any regulators that were allocated will be freed
3244 * before returning to the caller.
3245 */
3246int regulator_bulk_get(struct device *dev, int num_consumers,
3247 struct regulator_bulk_data *consumers)
3248{
3249 int i;
3250 int ret;
3251
3252 for (i = 0; i < num_consumers; i++)
3253 consumers[i].consumer = NULL;
3254
3255 for (i = 0; i < num_consumers; i++) {
3256 consumers[i].consumer = regulator_get(dev,
3257 consumers[i].supply);
3258 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003259 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003260 dev_err(dev, "Failed to get supply '%s': %d\n",
3261 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003262 consumers[i].consumer = NULL;
3263 goto err;
3264 }
3265 }
3266
3267 return 0;
3268
3269err:
Axel Linb29c7692012-02-20 10:32:16 +08003270 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003271 regulator_put(consumers[i].consumer);
3272
3273 return ret;
3274}
3275EXPORT_SYMBOL_GPL(regulator_bulk_get);
3276
Mark Brownf21e0e82011-05-24 08:12:40 +08003277static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3278{
3279 struct regulator_bulk_data *bulk = data;
3280
3281 bulk->ret = regulator_enable(bulk->consumer);
3282}
3283
Liam Girdwood414c70c2008-04-30 15:59:04 +01003284/**
3285 * regulator_bulk_enable - enable multiple regulator consumers
3286 *
3287 * @num_consumers: Number of consumers
3288 * @consumers: Consumer data; clients are stored here.
3289 * @return 0 on success, an errno on failure
3290 *
3291 * This convenience API allows consumers to enable multiple regulator
3292 * clients in a single API call. If any consumers cannot be enabled
3293 * then any others that were enabled will be disabled again prior to
3294 * return.
3295 */
3296int regulator_bulk_enable(int num_consumers,
3297 struct regulator_bulk_data *consumers)
3298{
Dan Williams2955b472012-07-09 19:33:25 -07003299 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003300 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003301 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003302
Mark Brown6492bc12012-04-19 13:19:07 +01003303 for (i = 0; i < num_consumers; i++) {
3304 if (consumers[i].consumer->always_on)
3305 consumers[i].ret = 0;
3306 else
3307 async_schedule_domain(regulator_bulk_enable_async,
3308 &consumers[i], &async_domain);
3309 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003310
3311 async_synchronize_full_domain(&async_domain);
3312
3313 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003314 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003315 if (consumers[i].ret != 0) {
3316 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003317 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003318 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003319 }
3320
3321 return 0;
3322
3323err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003324 for (i = 0; i < num_consumers; i++) {
3325 if (consumers[i].ret < 0)
3326 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3327 consumers[i].ret);
3328 else
3329 regulator_disable(consumers[i].consumer);
3330 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003331
3332 return ret;
3333}
3334EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3335
3336/**
3337 * regulator_bulk_disable - disable multiple regulator consumers
3338 *
3339 * @num_consumers: Number of consumers
3340 * @consumers: Consumer data; clients are stored here.
3341 * @return 0 on success, an errno on failure
3342 *
3343 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003344 * clients in a single API call. If any consumers cannot be disabled
3345 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003346 * return.
3347 */
3348int regulator_bulk_disable(int num_consumers,
3349 struct regulator_bulk_data *consumers)
3350{
3351 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003352 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003353
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003354 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003355 ret = regulator_disable(consumers[i].consumer);
3356 if (ret != 0)
3357 goto err;
3358 }
3359
3360 return 0;
3361
3362err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003363 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003364 for (++i; i < num_consumers; ++i) {
3365 r = regulator_enable(consumers[i].consumer);
3366 if (r != 0)
3367 pr_err("Failed to reename %s: %d\n",
3368 consumers[i].supply, r);
3369 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003370
3371 return ret;
3372}
3373EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3374
3375/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003376 * regulator_bulk_force_disable - force disable multiple regulator consumers
3377 *
3378 * @num_consumers: Number of consumers
3379 * @consumers: Consumer data; clients are stored here.
3380 * @return 0 on success, an errno on failure
3381 *
3382 * This convenience API allows consumers to forcibly disable multiple regulator
3383 * clients in a single API call.
3384 * NOTE: This should be used for situations when device damage will
3385 * likely occur if the regulators are not disabled (e.g. over temp).
3386 * Although regulator_force_disable function call for some consumers can
3387 * return error numbers, the function is called for all consumers.
3388 */
3389int regulator_bulk_force_disable(int num_consumers,
3390 struct regulator_bulk_data *consumers)
3391{
3392 int i;
3393 int ret;
3394
3395 for (i = 0; i < num_consumers; i++)
3396 consumers[i].ret =
3397 regulator_force_disable(consumers[i].consumer);
3398
3399 for (i = 0; i < num_consumers; i++) {
3400 if (consumers[i].ret != 0) {
3401 ret = consumers[i].ret;
3402 goto out;
3403 }
3404 }
3405
3406 return 0;
3407out:
3408 return ret;
3409}
3410EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3411
3412/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003413 * regulator_bulk_free - free multiple regulator consumers
3414 *
3415 * @num_consumers: Number of consumers
3416 * @consumers: Consumer data; clients are stored here.
3417 *
3418 * This convenience API allows consumers to free multiple regulator
3419 * clients in a single API call.
3420 */
3421void regulator_bulk_free(int num_consumers,
3422 struct regulator_bulk_data *consumers)
3423{
3424 int i;
3425
3426 for (i = 0; i < num_consumers; i++) {
3427 regulator_put(consumers[i].consumer);
3428 consumers[i].consumer = NULL;
3429 }
3430}
3431EXPORT_SYMBOL_GPL(regulator_bulk_free);
3432
3433/**
3434 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003435 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003436 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003437 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003438 *
3439 * Called by regulator drivers to notify clients a regulator event has
3440 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003441 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003442 */
3443int regulator_notifier_call_chain(struct regulator_dev *rdev,
3444 unsigned long event, void *data)
3445{
3446 _notifier_call_chain(rdev, event, data);
3447 return NOTIFY_DONE;
3448
3449}
3450EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3451
Mark Brownbe721972009-08-04 20:09:52 +02003452/**
3453 * regulator_mode_to_status - convert a regulator mode into a status
3454 *
3455 * @mode: Mode to convert
3456 *
3457 * Convert a regulator mode into a status.
3458 */
3459int regulator_mode_to_status(unsigned int mode)
3460{
3461 switch (mode) {
3462 case REGULATOR_MODE_FAST:
3463 return REGULATOR_STATUS_FAST;
3464 case REGULATOR_MODE_NORMAL:
3465 return REGULATOR_STATUS_NORMAL;
3466 case REGULATOR_MODE_IDLE:
3467 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003468 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003469 return REGULATOR_STATUS_STANDBY;
3470 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003471 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003472 }
3473}
3474EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3475
Takashi Iwai39f802d2015-01-30 20:29:31 +01003476static struct attribute *regulator_dev_attrs[] = {
3477 &dev_attr_name.attr,
3478 &dev_attr_num_users.attr,
3479 &dev_attr_type.attr,
3480 &dev_attr_microvolts.attr,
3481 &dev_attr_microamps.attr,
3482 &dev_attr_opmode.attr,
3483 &dev_attr_state.attr,
3484 &dev_attr_status.attr,
3485 &dev_attr_bypass.attr,
3486 &dev_attr_requested_microamps.attr,
3487 &dev_attr_min_microvolts.attr,
3488 &dev_attr_max_microvolts.attr,
3489 &dev_attr_min_microamps.attr,
3490 &dev_attr_max_microamps.attr,
3491 &dev_attr_suspend_standby_state.attr,
3492 &dev_attr_suspend_mem_state.attr,
3493 &dev_attr_suspend_disk_state.attr,
3494 &dev_attr_suspend_standby_microvolts.attr,
3495 &dev_attr_suspend_mem_microvolts.attr,
3496 &dev_attr_suspend_disk_microvolts.attr,
3497 &dev_attr_suspend_standby_mode.attr,
3498 &dev_attr_suspend_mem_mode.attr,
3499 &dev_attr_suspend_disk_mode.attr,
3500 NULL
3501};
3502
David Brownell7ad68e22008-11-11 17:39:02 -08003503/*
3504 * To avoid cluttering sysfs (and memory) with useless state, only
3505 * create attributes that can be meaningfully displayed.
3506 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003507static umode_t regulator_attr_is_visible(struct kobject *kobj,
3508 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003509{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003510 struct device *dev = kobj_to_dev(kobj);
3511 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003512 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003513 umode_t mode = attr->mode;
3514
3515 /* these three are always present */
3516 if (attr == &dev_attr_name.attr ||
3517 attr == &dev_attr_num_users.attr ||
3518 attr == &dev_attr_type.attr)
3519 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003520
3521 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003522 if (attr == &dev_attr_microvolts.attr) {
3523 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3524 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3525 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3526 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3527 return mode;
3528 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003529 }
David Brownell7ad68e22008-11-11 17:39:02 -08003530
Takashi Iwai39f802d2015-01-30 20:29:31 +01003531 if (attr == &dev_attr_microamps.attr)
3532 return ops->get_current_limit ? mode : 0;
3533
3534 if (attr == &dev_attr_opmode.attr)
3535 return ops->get_mode ? mode : 0;
3536
3537 if (attr == &dev_attr_state.attr)
3538 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3539
3540 if (attr == &dev_attr_status.attr)
3541 return ops->get_status ? mode : 0;
3542
3543 if (attr == &dev_attr_bypass.attr)
3544 return ops->get_bypass ? mode : 0;
3545
David Brownell7ad68e22008-11-11 17:39:02 -08003546 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003547 if (attr == &dev_attr_requested_microamps.attr)
3548 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003549
David Brownell7ad68e22008-11-11 17:39:02 -08003550 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003551 if (attr == &dev_attr_min_microvolts.attr ||
3552 attr == &dev_attr_max_microvolts.attr)
3553 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003554
Takashi Iwai39f802d2015-01-30 20:29:31 +01003555 if (attr == &dev_attr_min_microamps.attr ||
3556 attr == &dev_attr_max_microamps.attr)
3557 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003558
Takashi Iwai39f802d2015-01-30 20:29:31 +01003559 if (attr == &dev_attr_suspend_standby_state.attr ||
3560 attr == &dev_attr_suspend_mem_state.attr ||
3561 attr == &dev_attr_suspend_disk_state.attr)
3562 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003563
Takashi Iwai39f802d2015-01-30 20:29:31 +01003564 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3565 attr == &dev_attr_suspend_mem_microvolts.attr ||
3566 attr == &dev_attr_suspend_disk_microvolts.attr)
3567 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003568
Takashi Iwai39f802d2015-01-30 20:29:31 +01003569 if (attr == &dev_attr_suspend_standby_mode.attr ||
3570 attr == &dev_attr_suspend_mem_mode.attr ||
3571 attr == &dev_attr_suspend_disk_mode.attr)
3572 return ops->set_suspend_mode ? mode : 0;
3573
3574 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003575}
3576
Takashi Iwai39f802d2015-01-30 20:29:31 +01003577static const struct attribute_group regulator_dev_group = {
3578 .attrs = regulator_dev_attrs,
3579 .is_visible = regulator_attr_is_visible,
3580};
3581
3582static const struct attribute_group *regulator_dev_groups[] = {
3583 &regulator_dev_group,
3584 NULL
3585};
3586
3587static void regulator_dev_release(struct device *dev)
3588{
3589 struct regulator_dev *rdev = dev_get_drvdata(dev);
3590 kfree(rdev);
3591}
3592
3593static struct class regulator_class = {
3594 .name = "regulator",
3595 .dev_release = regulator_dev_release,
3596 .dev_groups = regulator_dev_groups,
3597};
3598
Mark Brown1130e5b2010-12-21 23:49:31 +00003599static void rdev_init_debugfs(struct regulator_dev *rdev)
3600{
Guenter Roecka9eaa812014-10-17 08:17:03 -07003601 struct device *parent = rdev->dev.parent;
3602 const char *rname = rdev_get_name(rdev);
3603 char name[NAME_MAX];
3604
3605 /* Avoid duplicate debugfs directory names */
3606 if (parent && rname == rdev->desc->name) {
3607 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
3608 rname);
3609 rname = name;
3610 }
3611
3612 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003613 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003614 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003615 return;
3616 }
3617
3618 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3619 &rdev->use_count);
3620 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3621 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003622 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3623 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003624}
3625
Liam Girdwood414c70c2008-04-30 15:59:04 +01003626/**
3627 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003628 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003629 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003630 *
3631 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003632 * Returns a valid pointer to struct regulator_dev on success
3633 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003634 */
Mark Brown65f26842012-04-03 20:46:53 +01003635struct regulator_dev *
3636regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003637 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003638{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003639 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003640 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003641 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303642 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003643 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003644 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003645 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003646
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003647 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003648 return ERR_PTR(-EINVAL);
3649
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003650 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003651 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003652
Liam Girdwood414c70c2008-04-30 15:59:04 +01003653 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3654 return ERR_PTR(-EINVAL);
3655
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003656 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3657 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003658 return ERR_PTR(-EINVAL);
3659
Mark Brown476c2d82010-12-10 17:28:07 +00003660 /* Only one of each should be implemented */
3661 WARN_ON(regulator_desc->ops->get_voltage &&
3662 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003663 WARN_ON(regulator_desc->ops->set_voltage &&
3664 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003665
3666 /* If we're using selectors we must implement list_voltage. */
3667 if (regulator_desc->ops->get_voltage_sel &&
3668 !regulator_desc->ops->list_voltage) {
3669 return ERR_PTR(-EINVAL);
3670 }
Mark Browne8eef822010-12-12 14:36:17 +00003671 if (regulator_desc->ops->set_voltage_sel &&
3672 !regulator_desc->ops->list_voltage) {
3673 return ERR_PTR(-EINVAL);
3674 }
Mark Brown476c2d82010-12-10 17:28:07 +00003675
Liam Girdwood414c70c2008-04-30 15:59:04 +01003676 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3677 if (rdev == NULL)
3678 return ERR_PTR(-ENOMEM);
3679
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003680 /*
3681 * Duplicate the config so the driver could override it after
3682 * parsing init data.
3683 */
3684 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
3685 if (config == NULL) {
3686 kfree(rdev);
3687 return ERR_PTR(-ENOMEM);
3688 }
3689
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01003690 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01003691 &rdev->dev.of_node);
3692 if (!init_data) {
3693 init_data = config->init_data;
3694 rdev->dev.of_node = of_node_get(config->of_node);
3695 }
3696
Liam Girdwood414c70c2008-04-30 15:59:04 +01003697 mutex_lock(&regulator_list_mutex);
3698
3699 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003700 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003701 rdev->owner = regulator_desc->owner;
3702 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003703 if (config->regmap)
3704 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303705 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003706 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303707 else if (dev->parent)
3708 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003709 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003710 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003711 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003712 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003713
Liam Girdwooda5766f12008-10-10 13:22:20 +01003714 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003715 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003716 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003717 if (ret < 0)
3718 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003719 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003720
Liam Girdwooda5766f12008-10-10 13:22:20 +01003721 /* register with sysfs */
3722 rdev->dev.class = &regulator_class;
3723 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303724 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303725 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003726 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003727 if (ret != 0) {
3728 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003729 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003730 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003731
3732 dev_set_drvdata(&rdev->dev, rdev);
3733
Markus Pargmann76f439d2014-10-08 15:47:05 +02003734 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3735 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003736 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003737 if (ret != 0) {
3738 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3739 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003740 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003741 }
Mark Brown65f73502012-06-27 14:14:38 +01003742 }
3743
Mike Rapoport74f544c2008-11-25 14:53:53 +02003744 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003745 if (init_data)
3746 constraints = &init_data->constraints;
3747
3748 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003749 if (ret < 0)
3750 goto scrub;
3751
Mark Brown9a8f5e02011-11-29 18:11:19 +00003752 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003753 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303754 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003755 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303756
Liam Girdwooda5766f12008-10-10 13:22:20 +01003757 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003758 if (init_data) {
3759 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3760 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003761 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003762 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003763 if (ret < 0) {
3764 dev_err(dev, "Failed to set supply %s\n",
3765 init_data->consumer_supplies[i].supply);
3766 goto unset_supplies;
3767 }
Mark Brown23c2f042011-02-24 17:39:09 +00003768 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003769 }
3770
3771 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003772
3773 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003774out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003775 mutex_unlock(&regulator_list_mutex);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003776 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003777 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003778
Jani Nikulad4033b52010-04-29 10:55:11 +03003779unset_supplies:
3780 unset_regulator_supplies(rdev);
3781
David Brownell4fca9542008-11-11 17:38:53 -08003782scrub:
Kim, Milof19b00d2013-02-18 06:50:39 +00003783 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003784 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003785wash:
David Brownell4fca9542008-11-11 17:38:53 -08003786 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003787 /* device core frees rdev */
3788 rdev = ERR_PTR(ret);
3789 goto out;
3790
David Brownell4fca9542008-11-11 17:38:53 -08003791clean:
3792 kfree(rdev);
3793 rdev = ERR_PTR(ret);
3794 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003795}
3796EXPORT_SYMBOL_GPL(regulator_register);
3797
3798/**
3799 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003800 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003801 *
3802 * Called by regulator drivers to unregister a regulator.
3803 */
3804void regulator_unregister(struct regulator_dev *rdev)
3805{
3806 if (rdev == NULL)
3807 return;
3808
Mark Brown891636e2013-07-08 09:14:45 +01003809 if (rdev->supply) {
3810 while (rdev->use_count--)
3811 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003812 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003813 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003814 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003815 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003816 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003817 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003818 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003819 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003820 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003821 regulator_ena_gpio_free(rdev);
Charles Keepax63c7c9e2014-04-03 15:32:17 +01003822 of_node_put(rdev->dev.of_node);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003823 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003824 mutex_unlock(&regulator_list_mutex);
3825}
3826EXPORT_SYMBOL_GPL(regulator_unregister);
3827
3828/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003829 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003830 * @state: system suspend state
3831 *
3832 * Configure each regulator with it's suspend operating parameters for state.
3833 * This will usually be called by machine suspend code prior to supending.
3834 */
3835int regulator_suspend_prepare(suspend_state_t state)
3836{
3837 struct regulator_dev *rdev;
3838 int ret = 0;
3839
3840 /* ON is handled by regulator active state */
3841 if (state == PM_SUSPEND_ON)
3842 return -EINVAL;
3843
3844 mutex_lock(&regulator_list_mutex);
3845 list_for_each_entry(rdev, &regulator_list, list) {
3846
3847 mutex_lock(&rdev->mutex);
3848 ret = suspend_prepare(rdev, state);
3849 mutex_unlock(&rdev->mutex);
3850
3851 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003852 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003853 goto out;
3854 }
3855 }
3856out:
3857 mutex_unlock(&regulator_list_mutex);
3858 return ret;
3859}
3860EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3861
3862/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003863 * regulator_suspend_finish - resume regulators from system wide suspend
3864 *
3865 * Turn on regulators that might be turned off by regulator_suspend_prepare
3866 * and that should be turned on according to the regulators properties.
3867 */
3868int regulator_suspend_finish(void)
3869{
3870 struct regulator_dev *rdev;
3871 int ret = 0, error;
3872
3873 mutex_lock(&regulator_list_mutex);
3874 list_for_each_entry(rdev, &regulator_list, list) {
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003875 mutex_lock(&rdev->mutex);
Markus Pargmann30c21972014-02-20 17:36:03 +01003876 if (rdev->use_count > 0 || rdev->constraints->always_on) {
Javier Martinez Canillas0548bf42015-03-02 21:40:39 +01003877 if (!_regulator_is_enabled(rdev)) {
3878 error = _regulator_do_enable(rdev);
3879 if (error)
3880 ret = error;
3881 }
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003882 } else {
Mark Brown87b28412013-11-27 16:13:10 +00003883 if (!have_full_constraints())
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003884 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003885 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003886 goto unlock;
3887
Markus Pargmann66fda752014-02-20 17:36:04 +01003888 error = _regulator_do_disable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003889 if (error)
3890 ret = error;
3891 }
3892unlock:
3893 mutex_unlock(&rdev->mutex);
3894 }
3895 mutex_unlock(&regulator_list_mutex);
3896 return ret;
3897}
3898EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3899
3900/**
Mark Brownca725562009-03-16 19:36:34 +00003901 * regulator_has_full_constraints - the system has fully specified constraints
3902 *
3903 * Calling this function will cause the regulator API to disable all
3904 * regulators which have a zero use count and don't have an always_on
3905 * constraint in a late_initcall.
3906 *
3907 * The intention is that this will become the default behaviour in a
3908 * future kernel release so users are encouraged to use this facility
3909 * now.
3910 */
3911void regulator_has_full_constraints(void)
3912{
3913 has_full_constraints = 1;
3914}
3915EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3916
3917/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003918 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003919 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003920 *
3921 * Get rdev regulator driver private data. This call can be used in the
3922 * regulator driver context.
3923 */
3924void *rdev_get_drvdata(struct regulator_dev *rdev)
3925{
3926 return rdev->reg_data;
3927}
3928EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3929
3930/**
3931 * regulator_get_drvdata - get regulator driver data
3932 * @regulator: regulator
3933 *
3934 * Get regulator driver private data. This call can be used in the consumer
3935 * driver context when non API regulator specific functions need to be called.
3936 */
3937void *regulator_get_drvdata(struct regulator *regulator)
3938{
3939 return regulator->rdev->reg_data;
3940}
3941EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3942
3943/**
3944 * regulator_set_drvdata - set regulator driver data
3945 * @regulator: regulator
3946 * @data: data
3947 */
3948void regulator_set_drvdata(struct regulator *regulator, void *data)
3949{
3950 regulator->rdev->reg_data = data;
3951}
3952EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3953
3954/**
3955 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003956 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003957 */
3958int rdev_get_id(struct regulator_dev *rdev)
3959{
3960 return rdev->desc->id;
3961}
3962EXPORT_SYMBOL_GPL(rdev_get_id);
3963
Liam Girdwooda5766f12008-10-10 13:22:20 +01003964struct device *rdev_get_dev(struct regulator_dev *rdev)
3965{
3966 return &rdev->dev;
3967}
3968EXPORT_SYMBOL_GPL(rdev_get_dev);
3969
3970void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3971{
3972 return reg_init_data->driver_data;
3973}
3974EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3975
Mark Brownba55a972011-08-23 17:39:10 +01003976#ifdef CONFIG_DEBUG_FS
3977static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3978 size_t count, loff_t *ppos)
3979{
3980 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3981 ssize_t len, ret = 0;
3982 struct regulator_map *map;
3983
3984 if (!buf)
3985 return -ENOMEM;
3986
3987 list_for_each_entry(map, &regulator_map_list, list) {
3988 len = snprintf(buf + ret, PAGE_SIZE - ret,
3989 "%s -> %s.%s\n",
3990 rdev_get_name(map->regulator), map->dev_name,
3991 map->supply);
3992 if (len >= 0)
3993 ret += len;
3994 if (ret > PAGE_SIZE) {
3995 ret = PAGE_SIZE;
3996 break;
3997 }
3998 }
3999
4000 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
4001
4002 kfree(buf);
4003
4004 return ret;
4005}
Stephen Boyd24751432012-02-20 22:50:42 -08004006#endif
Mark Brownba55a972011-08-23 17:39:10 +01004007
4008static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08004009#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01004010 .read = supply_map_read_file,
4011 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01004012#endif
Stephen Boyd24751432012-02-20 22:50:42 -08004013};
Mark Brownba55a972011-08-23 17:39:10 +01004014
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004015#ifdef CONFIG_DEBUG_FS
4016static void regulator_summary_show_subtree(struct seq_file *s,
4017 struct regulator_dev *rdev,
4018 int level)
4019{
4020 struct list_head *list = s->private;
4021 struct regulator_dev *child;
4022 struct regulation_constraints *c;
4023 struct regulator *consumer;
4024
4025 if (!rdev)
4026 return;
4027
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004028 seq_printf(s, "%*s%-*s %3d %4d %6d ",
4029 level * 3 + 1, "",
4030 30 - level * 3, rdev_get_name(rdev),
4031 rdev->use_count, rdev->open_count, rdev->bypass_count);
4032
Heiko Stübner23296092015-04-10 13:48:41 +02004033 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
4034 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004035
4036 c = rdev->constraints;
4037 if (c) {
4038 switch (rdev->desc->type) {
4039 case REGULATOR_VOLTAGE:
4040 seq_printf(s, "%5dmV %5dmV ",
4041 c->min_uV / 1000, c->max_uV / 1000);
4042 break;
4043 case REGULATOR_CURRENT:
4044 seq_printf(s, "%5dmA %5dmA ",
4045 c->min_uA / 1000, c->max_uA / 1000);
4046 break;
4047 }
4048 }
4049
4050 seq_puts(s, "\n");
4051
4052 list_for_each_entry(consumer, &rdev->consumer_list, list) {
4053 if (consumer->dev->class == &regulator_class)
4054 continue;
4055
4056 seq_printf(s, "%*s%-*s ",
4057 (level + 1) * 3 + 1, "",
4058 30 - (level + 1) * 3, dev_name(consumer->dev));
4059
4060 switch (rdev->desc->type) {
4061 case REGULATOR_VOLTAGE:
Heiko Stübner23296092015-04-10 13:48:41 +02004062 seq_printf(s, "%37dmV %5dmV",
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004063 consumer->min_uV / 1000,
4064 consumer->max_uV / 1000);
4065 break;
4066 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004067 break;
4068 }
4069
4070 seq_puts(s, "\n");
4071 }
4072
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004073 list_for_each_entry(child, list, list) {
4074 /* handle only non-root regulators supplied by current rdev */
4075 if (!child->supply || child->supply->rdev != rdev)
4076 continue;
4077
4078 regulator_summary_show_subtree(s, child, level + 1);
4079 }
4080}
4081
4082static int regulator_summary_show(struct seq_file *s, void *data)
4083{
4084 struct list_head *list = s->private;
4085 struct regulator_dev *rdev;
4086
Heiko Stübner23296092015-04-10 13:48:41 +02004087 seq_puts(s, " regulator use open bypass voltage current min max\n");
4088 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004089
4090 mutex_lock(&regulator_list_mutex);
4091
4092 list_for_each_entry(rdev, list, list) {
4093 if (rdev->supply)
4094 continue;
4095
4096 regulator_summary_show_subtree(s, rdev, 0);
4097 }
4098
4099 mutex_unlock(&regulator_list_mutex);
4100
4101 return 0;
4102}
4103
4104static int regulator_summary_open(struct inode *inode, struct file *file)
4105{
4106 return single_open(file, regulator_summary_show, inode->i_private);
4107}
4108#endif
4109
4110static const struct file_operations regulator_summary_fops = {
4111#ifdef CONFIG_DEBUG_FS
4112 .open = regulator_summary_open,
4113 .read = seq_read,
4114 .llseek = seq_lseek,
4115 .release = single_release,
4116#endif
4117};
4118
Liam Girdwood414c70c2008-04-30 15:59:04 +01004119static int __init regulator_init(void)
4120{
Mark Brown34abbd62010-02-12 10:18:08 +00004121 int ret;
4122
Mark Brown34abbd62010-02-12 10:18:08 +00004123 ret = class_register(&regulator_class);
4124
Mark Brown1130e5b2010-12-21 23:49:31 +00004125 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004126 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004127 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004128
Mark Brownf4d562c2012-02-20 21:01:04 +00004129 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4130 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004131
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004132 debugfs_create_file("regulator_summary", 0444, debugfs_root,
4133 &regulator_list, &regulator_summary_fops);
4134
Mark Brown34abbd62010-02-12 10:18:08 +00004135 regulator_dummy_init();
4136
4137 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004138}
4139
4140/* init early to allow our consumers to complete system booting */
4141core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004142
4143static int __init regulator_init_complete(void)
4144{
4145 struct regulator_dev *rdev;
Guodong Xu272e2312014-08-13 19:33:38 +08004146 const struct regulator_ops *ops;
Mark Brownca725562009-03-16 19:36:34 +00004147 struct regulation_constraints *c;
4148 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004149
Mark Brown86f5fcf2012-07-06 18:19:13 +01004150 /*
4151 * Since DT doesn't provide an idiomatic mechanism for
4152 * enabling full constraints and since it's much more natural
4153 * with DT to provide them just assume that a DT enabled
4154 * system has full constraints.
4155 */
4156 if (of_have_populated_dt())
4157 has_full_constraints = true;
4158
Mark Brownca725562009-03-16 19:36:34 +00004159 mutex_lock(&regulator_list_mutex);
4160
4161 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004162 * we have permission to change the status for and which are
4163 * not in use or always_on. This is effectively the default
4164 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004165 */
4166 list_for_each_entry(rdev, &regulator_list, list) {
4167 ops = rdev->desc->ops;
4168 c = rdev->constraints;
4169
Markus Pargmann66fda752014-02-20 17:36:04 +01004170 if (c && c->always_on)
Mark Brownca725562009-03-16 19:36:34 +00004171 continue;
4172
Mark Browne9535832014-06-01 19:15:16 +01004173 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
4174 continue;
4175
Mark Brownca725562009-03-16 19:36:34 +00004176 mutex_lock(&rdev->mutex);
4177
4178 if (rdev->use_count)
4179 goto unlock;
4180
4181 /* If we can't read the status assume it's on. */
4182 if (ops->is_enabled)
4183 enabled = ops->is_enabled(rdev);
4184 else
4185 enabled = 1;
4186
4187 if (!enabled)
4188 goto unlock;
4189
Mark Brown87b28412013-11-27 16:13:10 +00004190 if (have_full_constraints()) {
Mark Brownca725562009-03-16 19:36:34 +00004191 /* We log since this may kill the system if it
4192 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08004193 rdev_info(rdev, "disabling\n");
Markus Pargmann66fda752014-02-20 17:36:04 +01004194 ret = _regulator_do_disable(rdev);
Jingoo Han0d25d092014-01-08 10:02:16 +09004195 if (ret != 0)
Joe Perches5da84fd2010-11-30 05:53:48 -08004196 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00004197 } else {
4198 /* The intention is that in future we will
4199 * assume that full constraints are provided
4200 * so warn even if we aren't going to do
4201 * anything here.
4202 */
Joe Perches5da84fd2010-11-30 05:53:48 -08004203 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00004204 }
4205
4206unlock:
4207 mutex_unlock(&rdev->mutex);
4208 }
4209
4210 mutex_unlock(&regulator_list_mutex);
4211
4212 return 0;
4213}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004214late_initcall_sync(regulator_init_complete);