blob: 89be8e28727522740c0fd8c2fced9a154a0b8f73 [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
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +0900643 lockdep_assert_held_once(&rdev->mutex);
644
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800645 /*
646 * first check to see if we can set modes at all, otherwise just
647 * tell the consumer everything is OK.
648 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100649 err = regulator_check_drms(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800650 if (err < 0)
651 return 0;
652
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800653 if (!rdev->desc->ops->get_optimum_mode &&
654 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800655 return 0;
656
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800657 if (!rdev->desc->ops->set_mode &&
658 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800659 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100660
661 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000662 output_uV = _regulator_get_voltage(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800663 if (output_uV <= 0) {
664 rdev_err(rdev, "invalid output voltage found\n");
665 return -EINVAL;
666 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100667
668 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000669 input_uV = 0;
670 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800671 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000672 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100673 input_uV = rdev->constraints->input_uV;
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800674 if (input_uV <= 0) {
675 rdev_err(rdev, "invalid input voltage found\n");
676 return -EINVAL;
677 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100678
679 /* calc total requested load */
680 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100681 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100682
Stephen Boyd22a10bc2015-06-11 17:37:03 -0700683 current_uA += rdev->constraints->system_load;
684
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800685 if (rdev->desc->ops->set_load) {
686 /* set the optimum mode for our new total regulator load */
687 err = rdev->desc->ops->set_load(rdev, current_uA);
688 if (err < 0)
689 rdev_err(rdev, "failed to set load %d\n", current_uA);
690 } else {
691 /* now get the optimum mode for our new total regulator load */
692 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
693 output_uV, current_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100694
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800695 /* check the new mode is allowed */
696 err = regulator_mode_constrain(rdev, &mode);
697 if (err < 0) {
698 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
699 current_uA, input_uV, output_uV);
700 return err;
701 }
702
703 err = rdev->desc->ops->set_mode(rdev, mode);
704 if (err < 0)
705 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800706 }
707
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800708 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100709}
710
711static int suspend_set_state(struct regulator_dev *rdev,
712 struct regulator_state *rstate)
713{
714 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100715
716 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800717 * only warn if the driver implements set_suspend_voltage or
718 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100719 */
720 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800721 if (rdev->desc->ops->set_suspend_voltage ||
722 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800723 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100724 return 0;
725 }
726
727 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800728 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100729 return -EINVAL;
730 }
731
Axel Lin8ac0e952012-04-14 09:14:34 +0800732 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100733 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800734 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100735 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800736 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
737 ret = 0;
738
Liam Girdwood414c70c2008-04-30 15:59:04 +0100739 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800740 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100741 return ret;
742 }
743
744 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
745 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
746 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800747 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100748 return ret;
749 }
750 }
751
752 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
753 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
754 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800755 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100756 return ret;
757 }
758 }
759 return ret;
760}
761
762/* locks held by caller */
763static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
764{
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +0900765 lockdep_assert_held_once(&rdev->mutex);
766
Liam Girdwood414c70c2008-04-30 15:59:04 +0100767 if (!rdev->constraints)
768 return -EINVAL;
769
770 switch (state) {
771 case PM_SUSPEND_STANDBY:
772 return suspend_set_state(rdev,
773 &rdev->constraints->state_standby);
774 case PM_SUSPEND_MEM:
775 return suspend_set_state(rdev,
776 &rdev->constraints->state_mem);
777 case PM_SUSPEND_MAX:
778 return suspend_set_state(rdev,
779 &rdev->constraints->state_disk);
780 default:
781 return -EINVAL;
782 }
783}
784
785static void print_constraints(struct regulator_dev *rdev)
786{
787 struct regulation_constraints *constraints = rdev->constraints;
Stefan Wahrena7068e32015-06-09 20:09:42 +0000788 char buf[160] = "";
Stefan Wahren5751a992015-06-10 06:13:15 +0000789 size_t len = sizeof(buf) - 1;
Mark Brown8f031b42009-10-22 16:31:31 +0100790 int count = 0;
791 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100792
Mark Brown8f031b42009-10-22 16:31:31 +0100793 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100794 if (constraints->min_uV == constraints->max_uV)
Stefan Wahren5751a992015-06-10 06:13:15 +0000795 count += scnprintf(buf + count, len - count, "%d mV ",
796 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100797 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000798 count += scnprintf(buf + count, len - count,
799 "%d <--> %d mV ",
800 constraints->min_uV / 1000,
801 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100802 }
Mark Brown8f031b42009-10-22 16:31:31 +0100803
804 if (!constraints->min_uV ||
805 constraints->min_uV != constraints->max_uV) {
806 ret = _regulator_get_voltage(rdev);
807 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000808 count += scnprintf(buf + count, len - count,
809 "at %d mV ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100810 }
811
Mark Brownbf5892a2011-05-08 22:13:37 +0100812 if (constraints->uV_offset)
Stefan Wahren5751a992015-06-10 06:13:15 +0000813 count += scnprintf(buf + count, len - count, "%dmV offset ",
814 constraints->uV_offset / 1000);
Mark Brownbf5892a2011-05-08 22:13:37 +0100815
Mark Brown8f031b42009-10-22 16:31:31 +0100816 if (constraints->min_uA && constraints->max_uA) {
817 if (constraints->min_uA == constraints->max_uA)
Stefan Wahren5751a992015-06-10 06:13:15 +0000818 count += scnprintf(buf + count, len - count, "%d mA ",
819 constraints->min_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100820 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000821 count += scnprintf(buf + count, len - count,
822 "%d <--> %d mA ",
823 constraints->min_uA / 1000,
824 constraints->max_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100825 }
826
827 if (!constraints->min_uA ||
828 constraints->min_uA != constraints->max_uA) {
829 ret = _regulator_get_current_limit(rdev);
830 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000831 count += scnprintf(buf + count, len - count,
832 "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100833 }
834
Liam Girdwood414c70c2008-04-30 15:59:04 +0100835 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
Stefan Wahren5751a992015-06-10 06:13:15 +0000836 count += scnprintf(buf + count, len - count, "fast ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100837 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
Stefan Wahren5751a992015-06-10 06:13:15 +0000838 count += scnprintf(buf + count, len - count, "normal ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100839 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
Stefan Wahren5751a992015-06-10 06:13:15 +0000840 count += scnprintf(buf + count, len - count, "idle ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100841 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
Stefan Wahren5751a992015-06-10 06:13:15 +0000842 count += scnprintf(buf + count, len - count, "standby");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100843
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200844 if (!count)
Stefan Wahren5751a992015-06-10 06:13:15 +0000845 scnprintf(buf, len, "no parameters");
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200846
Mark Brown194dbae2014-10-31 19:11:59 +0000847 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000848
849 if ((constraints->min_uV != constraints->max_uV) &&
850 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
851 rdev_warn(rdev,
852 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100853}
854
Mark Browne79055d2009-10-19 15:53:50 +0100855static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100856 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100857{
Guodong Xu272e2312014-08-13 19:33:38 +0800858 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100859 int ret;
860
861 /* do we need to apply the constraint voltage */
862 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000863 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200864 int current_uV = _regulator_get_voltage(rdev);
865 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500866 rdev_err(rdev,
867 "failed to get the current voltage(%d)\n",
868 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200869 return current_uV;
870 }
871 if (current_uV < rdev->constraints->min_uV ||
872 current_uV > rdev->constraints->max_uV) {
873 ret = _regulator_do_set_voltage(
874 rdev, rdev->constraints->min_uV,
875 rdev->constraints->max_uV);
876 if (ret < 0) {
877 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500878 "failed to apply %duV constraint(%d)\n",
879 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200880 return ret;
881 }
Mark Brown75790252010-12-12 14:25:50 +0000882 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100883 }
Mark Browne79055d2009-10-19 15:53:50 +0100884
885 /* constrain machine-level voltage specs to fit
886 * the actual range supported by this regulator.
887 */
888 if (ops->list_voltage && rdev->desc->n_voltages) {
889 int count = rdev->desc->n_voltages;
890 int i;
891 int min_uV = INT_MAX;
892 int max_uV = INT_MIN;
893 int cmin = constraints->min_uV;
894 int cmax = constraints->max_uV;
895
896 /* it's safe to autoconfigure fixed-voltage supplies
897 and the constraints are used by list_voltage. */
898 if (count == 1 && !cmin) {
899 cmin = 1;
900 cmax = INT_MAX;
901 constraints->min_uV = cmin;
902 constraints->max_uV = cmax;
903 }
904
905 /* voltage constraints are optional */
906 if ((cmin == 0) && (cmax == 0))
907 return 0;
908
909 /* else require explicit machine-level constraints */
910 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800911 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100912 return -EINVAL;
913 }
914
915 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
916 for (i = 0; i < count; i++) {
917 int value;
918
919 value = ops->list_voltage(rdev, i);
920 if (value <= 0)
921 continue;
922
923 /* maybe adjust [min_uV..max_uV] */
924 if (value >= cmin && value < min_uV)
925 min_uV = value;
926 if (value <= cmax && value > max_uV)
927 max_uV = value;
928 }
929
930 /* final: [min_uV..max_uV] valid iff constraints valid */
931 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000932 rdev_err(rdev,
933 "unsupportable voltage constraints %u-%uuV\n",
934 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100935 return -EINVAL;
936 }
937
938 /* use regulator's subset of machine constraints */
939 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800940 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
941 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100942 constraints->min_uV = min_uV;
943 }
944 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800945 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
946 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100947 constraints->max_uV = max_uV;
948 }
949 }
950
951 return 0;
952}
953
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530954static int machine_constraints_current(struct regulator_dev *rdev,
955 struct regulation_constraints *constraints)
956{
Guodong Xu272e2312014-08-13 19:33:38 +0800957 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530958 int ret;
959
960 if (!constraints->min_uA && !constraints->max_uA)
961 return 0;
962
963 if (constraints->min_uA > constraints->max_uA) {
964 rdev_err(rdev, "Invalid current constraints\n");
965 return -EINVAL;
966 }
967
968 if (!ops->set_current_limit || !ops->get_current_limit) {
969 rdev_warn(rdev, "Operation of current configuration missing\n");
970 return 0;
971 }
972
973 /* Set regulator current in constraints range */
974 ret = ops->set_current_limit(rdev, constraints->min_uA,
975 constraints->max_uA);
976 if (ret < 0) {
977 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
978 return ret;
979 }
980
981 return 0;
982}
983
Markus Pargmann30c21972014-02-20 17:36:03 +0100984static int _regulator_do_enable(struct regulator_dev *rdev);
985
Liam Girdwooda5766f12008-10-10 13:22:20 +0100986/**
987 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000988 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000989 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100990 *
991 * Allows platform initialisation code to define and constrain
992 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
993 * Constraints *must* be set by platform code in order for some
994 * regulator operations to proceed i.e. set_voltage, set_current_limit,
995 * set_mode.
996 */
997static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000998 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100999{
1000 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +08001001 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +01001002
Mark Brown9a8f5e02011-11-29 18:11:19 +00001003 if (constraints)
1004 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
1005 GFP_KERNEL);
1006 else
1007 rdev->constraints = kzalloc(sizeof(*constraints),
1008 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +00001009 if (!rdev->constraints)
1010 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001011
Mark Brownf8c12fe2010-11-29 15:55:17 +00001012 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001013 if (ret != 0)
1014 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -08001015
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301016 ret = machine_constraints_current(rdev, rdev->constraints);
1017 if (ret != 0)
1018 goto out;
1019
Stephen Boyd36e4f832015-06-11 17:37:06 -07001020 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1021 ret = ops->set_input_current_limit(rdev,
1022 rdev->constraints->ilim_uA);
1023 if (ret < 0) {
1024 rdev_err(rdev, "failed to set input limit\n");
1025 goto out;
1026 }
1027 }
1028
Liam Girdwooda5766f12008-10-10 13:22:20 +01001029 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001030 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001031 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001032 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001033 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +01001034 goto out;
1035 }
1036 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001037
Mark Brown9a8f5e02011-11-29 18:11:19 +00001038 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001039 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001040 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +00001041 ret = -EINVAL;
1042 goto out;
1043 }
1044
Mark Brownf8c12fe2010-11-29 15:55:17 +00001045 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001046 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001047 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +00001048 goto out;
1049 }
1050 }
1051
Mark Browncacf90f2009-03-02 16:32:46 +00001052 /* If the constraints say the regulator should be on at this point
1053 * and we have control then make sure it is enabled.
1054 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001055 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1056 ret = _regulator_do_enable(rdev);
1057 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001058 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001059 goto out;
1060 }
1061 }
1062
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301063 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1064 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301065 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1066 if (ret < 0) {
1067 rdev_err(rdev, "failed to set ramp_delay\n");
1068 goto out;
1069 }
1070 }
1071
Stephen Boyd23c779b2015-06-11 17:37:04 -07001072 if (rdev->constraints->pull_down && ops->set_pull_down) {
1073 ret = ops->set_pull_down(rdev);
1074 if (ret < 0) {
1075 rdev_err(rdev, "failed to set pull down\n");
1076 goto out;
1077 }
1078 }
1079
Stephen Boyd57f66b72015-06-11 17:37:05 -07001080 if (rdev->constraints->soft_start && ops->set_soft_start) {
1081 ret = ops->set_soft_start(rdev);
1082 if (ret < 0) {
1083 rdev_err(rdev, "failed to set soft start\n");
1084 goto out;
1085 }
1086 }
1087
Liam Girdwooda5766f12008-10-10 13:22:20 +01001088 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001089 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001090out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001091 kfree(rdev->constraints);
1092 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001093 return ret;
1094}
1095
1096/**
1097 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001098 * @rdev: regulator name
1099 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001100 *
1101 * Called by platform initialisation code to set the supply regulator for this
1102 * regulator. This ensures that a regulators supply will also be enabled by the
1103 * core if it's child is enabled.
1104 */
1105static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001106 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001107{
1108 int err;
1109
Mark Brown3801b862011-06-09 16:22:22 +01001110 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1111
1112 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001113 if (rdev->supply == NULL) {
1114 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001115 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001116 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301117 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001118
1119 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001120}
1121
1122/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001123 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001124 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001125 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001126 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001127 *
1128 * Allows platform initialisation code to map physical regulator
1129 * sources to symbolic names for supplies for use by devices. Devices
1130 * should use these symbolic names to request regulators, avoiding the
1131 * need to provide board-specific regulator names as platform data.
1132 */
1133static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001134 const char *consumer_dev_name,
1135 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001136{
1137 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001138 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001139
1140 if (supply == NULL)
1141 return -EINVAL;
1142
Mark Brown9ed20992009-07-21 16:00:26 +01001143 if (consumer_dev_name != NULL)
1144 has_dev = 1;
1145 else
1146 has_dev = 0;
1147
David Brownell6001e132008-12-31 12:54:19 +00001148 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001149 if (node->dev_name && consumer_dev_name) {
1150 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1151 continue;
1152 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001153 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001154 }
1155
David Brownell6001e132008-12-31 12:54:19 +00001156 if (strcmp(node->supply, supply) != 0)
1157 continue;
1158
Mark Brown737f3602012-02-02 00:10:51 +00001159 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1160 consumer_dev_name,
1161 dev_name(&node->regulator->dev),
1162 node->regulator->desc->name,
1163 supply,
1164 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001165 return -EBUSY;
1166 }
1167
Mark Brown9ed20992009-07-21 16:00:26 +01001168 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001169 if (node == NULL)
1170 return -ENOMEM;
1171
1172 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001173 node->supply = supply;
1174
Mark Brown9ed20992009-07-21 16:00:26 +01001175 if (has_dev) {
1176 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1177 if (node->dev_name == NULL) {
1178 kfree(node);
1179 return -ENOMEM;
1180 }
Mark Brown40f92442009-06-17 17:56:39 +01001181 }
1182
Liam Girdwooda5766f12008-10-10 13:22:20 +01001183 list_add(&node->list, &regulator_map_list);
1184 return 0;
1185}
1186
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001187static void unset_regulator_supplies(struct regulator_dev *rdev)
1188{
1189 struct regulator_map *node, *n;
1190
1191 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1192 if (rdev == node->regulator) {
1193 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001194 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001195 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001196 }
1197 }
1198}
1199
Mark Brownf5726ae2011-06-09 16:22:20 +01001200#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001201
1202static struct regulator *create_regulator(struct regulator_dev *rdev,
1203 struct device *dev,
1204 const char *supply_name)
1205{
1206 struct regulator *regulator;
1207 char buf[REG_STR_SIZE];
1208 int err, size;
1209
1210 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1211 if (regulator == NULL)
1212 return NULL;
1213
1214 mutex_lock(&rdev->mutex);
1215 regulator->rdev = rdev;
1216 list_add(&regulator->list, &rdev->consumer_list);
1217
1218 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001219 regulator->dev = dev;
1220
Mark Brown222cc7b2012-06-22 11:39:16 +01001221 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001222 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1223 dev->kobj.name, supply_name);
1224 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001225 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001226
1227 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1228 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001229 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001230
Stephen Boydff268b52015-06-01 18:47:54 -07001231 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
Liam Girdwood414c70c2008-04-30 15:59:04 +01001232 buf);
1233 if (err) {
Stephen Boydff268b52015-06-01 18:47:54 -07001234 rdev_dbg(rdev, "could not add device link %s err %d\n",
Joe Perches5da84fd2010-11-30 05:53:48 -08001235 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001236 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001237 }
Mark Brown5de70512011-06-19 13:33:16 +01001238 } else {
1239 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1240 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001241 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001242 }
Mark Brown5de70512011-06-19 13:33:16 +01001243
Mark Brown5de70512011-06-19 13:33:16 +01001244 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1245 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001246 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001247 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001248 } else {
1249 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1250 &regulator->uA_load);
1251 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1252 &regulator->min_uV);
1253 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1254 &regulator->max_uV);
1255 }
Mark Brown5de70512011-06-19 13:33:16 +01001256
Mark Brown6492bc12012-04-19 13:19:07 +01001257 /*
1258 * Check now if the regulator is an always on regulator - if
1259 * it is then we don't need to do nearly so much work for
1260 * enable/disable calls.
1261 */
1262 if (!_regulator_can_change_status(rdev) &&
1263 _regulator_is_enabled(rdev))
1264 regulator->always_on = true;
1265
Liam Girdwood414c70c2008-04-30 15:59:04 +01001266 mutex_unlock(&rdev->mutex);
1267 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001268overflow_err:
1269 list_del(&regulator->list);
1270 kfree(regulator);
1271 mutex_unlock(&rdev->mutex);
1272 return NULL;
1273}
1274
Mark Brown31aae2b2009-12-21 12:21:52 +00001275static int _regulator_get_enable_time(struct regulator_dev *rdev)
1276{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301277 if (rdev->constraints && rdev->constraints->enable_time)
1278 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001279 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001280 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001281 return rdev->desc->ops->enable_time(rdev);
1282}
1283
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001284static struct regulator_supply_alias *regulator_find_supply_alias(
1285 struct device *dev, const char *supply)
1286{
1287 struct regulator_supply_alias *map;
1288
1289 list_for_each_entry(map, &regulator_supply_alias_list, list)
1290 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1291 return map;
1292
1293 return NULL;
1294}
1295
1296static void regulator_supply_alias(struct device **dev, const char **supply)
1297{
1298 struct regulator_supply_alias *map;
1299
1300 map = regulator_find_supply_alias(*dev, *supply);
1301 if (map) {
1302 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1303 *supply, map->alias_supply,
1304 dev_name(map->alias_dev));
1305 *dev = map->alias_dev;
1306 *supply = map->alias_supply;
1307 }
1308}
1309
Rajendra Nayak69511a42011-11-18 16:47:20 +05301310static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001311 const char *supply,
1312 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301313{
1314 struct regulator_dev *r;
1315 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001316 struct regulator_map *map;
1317 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301318
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001319 regulator_supply_alias(&dev, &supply);
1320
Rajendra Nayak69511a42011-11-18 16:47:20 +05301321 /* first do a dt based lookup */
1322 if (dev && dev->of_node) {
1323 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001324 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301325 list_for_each_entry(r, &regulator_list, list)
1326 if (r->dev.parent &&
1327 node == r->dev.of_node)
1328 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001329 *ret = -EPROBE_DEFER;
1330 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001331 } else {
1332 /*
1333 * If we couldn't even get the node then it's
1334 * not just that the device didn't register
1335 * yet, there's no node and we'll never
1336 * succeed.
1337 */
1338 *ret = -ENODEV;
1339 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301340 }
1341
1342 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001343 if (dev)
1344 devname = dev_name(dev);
1345
Rajendra Nayak69511a42011-11-18 16:47:20 +05301346 list_for_each_entry(r, &regulator_list, list)
1347 if (strcmp(rdev_get_name(r), supply) == 0)
1348 return r;
1349
Mark Brown576ca4362012-03-30 12:24:37 +01001350 list_for_each_entry(map, &regulator_map_list, list) {
1351 /* If the mapping has a device set up it must match */
1352 if (map->dev_name &&
1353 (!devname || strcmp(map->dev_name, devname)))
1354 continue;
1355
1356 if (strcmp(map->supply, supply) == 0)
1357 return map->regulator;
1358 }
1359
1360
Rajendra Nayak69511a42011-11-18 16:47:20 +05301361 return NULL;
1362}
1363
Bjorn Andersson6261b062015-03-24 18:56:05 -07001364static int regulator_resolve_supply(struct regulator_dev *rdev)
1365{
1366 struct regulator_dev *r;
1367 struct device *dev = rdev->dev.parent;
1368 int ret;
1369
1370 /* No supply to resovle? */
1371 if (!rdev->supply_name)
1372 return 0;
1373
1374 /* Supply already resolved? */
1375 if (rdev->supply)
1376 return 0;
1377
1378 r = regulator_dev_lookup(dev, rdev->supply_name, &ret);
1379 if (ret == -ENODEV) {
1380 /*
1381 * No supply was specified for this regulator and
1382 * there will never be one.
1383 */
1384 return 0;
1385 }
1386
1387 if (!r) {
1388 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1389 rdev->supply_name, rdev->desc->name);
1390 return -EPROBE_DEFER;
1391 }
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
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09001594 lockdep_assert_held_once(&regulator_list_mutex);
1595
Liam Girdwood414c70c2008-04-30 15:59:04 +01001596 rdev = regulator->rdev;
1597
Mark Brown5de70512011-06-19 13:33:16 +01001598 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001599
Liam Girdwood414c70c2008-04-30 15:59:04 +01001600 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001601 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001602 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301603 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001604 list_del(&regulator->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001605
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
Mark Brown17685142015-08-07 21:19:26 +01001610 kfree(regulator->supply_name);
1611 kfree(regulator);
1612
Liam Girdwood414c70c2008-04-30 15:59:04 +01001613 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001614}
1615
1616/**
1617 * regulator_put - "free" the regulator source
1618 * @regulator: regulator source
1619 *
1620 * Note: drivers must ensure that all regulator_enable calls made on this
1621 * regulator source are balanced by regulator_disable calls prior to calling
1622 * this function.
1623 */
1624void regulator_put(struct regulator *regulator)
1625{
1626 mutex_lock(&regulator_list_mutex);
1627 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001628 mutex_unlock(&regulator_list_mutex);
1629}
1630EXPORT_SYMBOL_GPL(regulator_put);
1631
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001632/**
1633 * regulator_register_supply_alias - Provide device alias for supply lookup
1634 *
1635 * @dev: device that will be given as the regulator "consumer"
1636 * @id: Supply name or regulator ID
1637 * @alias_dev: device that should be used to lookup the supply
1638 * @alias_id: Supply name or regulator ID that should be used to lookup the
1639 * supply
1640 *
1641 * All lookups for id on dev will instead be conducted for alias_id on
1642 * alias_dev.
1643 */
1644int regulator_register_supply_alias(struct device *dev, const char *id,
1645 struct device *alias_dev,
1646 const char *alias_id)
1647{
1648 struct regulator_supply_alias *map;
1649
1650 map = regulator_find_supply_alias(dev, id);
1651 if (map)
1652 return -EEXIST;
1653
1654 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1655 if (!map)
1656 return -ENOMEM;
1657
1658 map->src_dev = dev;
1659 map->src_supply = id;
1660 map->alias_dev = alias_dev;
1661 map->alias_supply = alias_id;
1662
1663 list_add(&map->list, &regulator_supply_alias_list);
1664
1665 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1666 id, dev_name(dev), alias_id, dev_name(alias_dev));
1667
1668 return 0;
1669}
1670EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1671
1672/**
1673 * regulator_unregister_supply_alias - Remove device alias
1674 *
1675 * @dev: device that will be given as the regulator "consumer"
1676 * @id: Supply name or regulator ID
1677 *
1678 * Remove a lookup alias if one exists for id on dev.
1679 */
1680void regulator_unregister_supply_alias(struct device *dev, const char *id)
1681{
1682 struct regulator_supply_alias *map;
1683
1684 map = regulator_find_supply_alias(dev, id);
1685 if (map) {
1686 list_del(&map->list);
1687 kfree(map);
1688 }
1689}
1690EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1691
1692/**
1693 * regulator_bulk_register_supply_alias - register multiple aliases
1694 *
1695 * @dev: device that will be given as the regulator "consumer"
1696 * @id: List of supply names or regulator IDs
1697 * @alias_dev: device that should be used to lookup the supply
1698 * @alias_id: List of supply names or regulator IDs that should be used to
1699 * lookup the supply
1700 * @num_id: Number of aliases to register
1701 *
1702 * @return 0 on success, an errno on failure.
1703 *
1704 * This helper function allows drivers to register several supply
1705 * aliases in one operation. If any of the aliases cannot be
1706 * registered any aliases that were registered will be removed
1707 * before returning to the caller.
1708 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001709int regulator_bulk_register_supply_alias(struct device *dev,
1710 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001711 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001712 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001713 int num_id)
1714{
1715 int i;
1716 int ret;
1717
1718 for (i = 0; i < num_id; ++i) {
1719 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1720 alias_id[i]);
1721 if (ret < 0)
1722 goto err;
1723 }
1724
1725 return 0;
1726
1727err:
1728 dev_err(dev,
1729 "Failed to create supply alias %s,%s -> %s,%s\n",
1730 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1731
1732 while (--i >= 0)
1733 regulator_unregister_supply_alias(dev, id[i]);
1734
1735 return ret;
1736}
1737EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1738
1739/**
1740 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1741 *
1742 * @dev: device that will be given as the regulator "consumer"
1743 * @id: List of supply names or regulator IDs
1744 * @num_id: Number of aliases to unregister
1745 *
1746 * This helper function allows drivers to unregister several supply
1747 * aliases in one operation.
1748 */
1749void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001750 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001751 int num_id)
1752{
1753 int i;
1754
1755 for (i = 0; i < num_id; ++i)
1756 regulator_unregister_supply_alias(dev, id[i]);
1757}
1758EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1759
1760
Kim, Milof19b00d2013-02-18 06:50:39 +00001761/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1762static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1763 const struct regulator_config *config)
1764{
1765 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001766 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001767 int ret;
1768
Russell King778b28b2014-06-29 17:55:54 +01001769 gpiod = gpio_to_desc(config->ena_gpio);
1770
Kim, Milof19b00d2013-02-18 06:50:39 +00001771 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001772 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001773 rdev_dbg(rdev, "GPIO %d is already used\n",
1774 config->ena_gpio);
1775 goto update_ena_gpio_to_rdev;
1776 }
1777 }
1778
1779 ret = gpio_request_one(config->ena_gpio,
1780 GPIOF_DIR_OUT | config->ena_gpio_flags,
1781 rdev_get_name(rdev));
1782 if (ret)
1783 return ret;
1784
1785 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1786 if (pin == NULL) {
1787 gpio_free(config->ena_gpio);
1788 return -ENOMEM;
1789 }
1790
Russell King778b28b2014-06-29 17:55:54 +01001791 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001792 pin->ena_gpio_invert = config->ena_gpio_invert;
1793 list_add(&pin->list, &regulator_ena_gpio_list);
1794
1795update_ena_gpio_to_rdev:
1796 pin->request_count++;
1797 rdev->ena_pin = pin;
1798 return 0;
1799}
1800
1801static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1802{
1803 struct regulator_enable_gpio *pin, *n;
1804
1805 if (!rdev->ena_pin)
1806 return;
1807
1808 /* Free the GPIO only in case of no use */
1809 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001810 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001811 if (pin->request_count <= 1) {
1812 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001813 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001814 list_del(&pin->list);
1815 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001816 rdev->ena_pin = NULL;
1817 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001818 } else {
1819 pin->request_count--;
1820 }
1821 }
1822 }
1823}
1824
Kim, Milo967cfb12013-02-18 06:50:48 +00001825/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001826 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1827 * @rdev: regulator_dev structure
1828 * @enable: enable GPIO at initial use?
1829 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001830 * GPIO is enabled in case of initial use. (enable_count is 0)
1831 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1832 */
1833static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1834{
1835 struct regulator_enable_gpio *pin = rdev->ena_pin;
1836
1837 if (!pin)
1838 return -EINVAL;
1839
1840 if (enable) {
1841 /* Enable GPIO at initial use */
1842 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001843 gpiod_set_value_cansleep(pin->gpiod,
1844 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001845
1846 pin->enable_count++;
1847 } else {
1848 if (pin->enable_count > 1) {
1849 pin->enable_count--;
1850 return 0;
1851 }
1852
1853 /* Disable GPIO if not used */
1854 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001855 gpiod_set_value_cansleep(pin->gpiod,
1856 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001857 pin->enable_count = 0;
1858 }
1859 }
1860
1861 return 0;
1862}
1863
Guodong Xu79fd1142014-08-13 19:33:39 +08001864/**
1865 * _regulator_enable_delay - a delay helper function
1866 * @delay: time to delay in microseconds
1867 *
1868 * Delay for the requested amount of time as per the guidelines in:
1869 *
1870 * Documentation/timers/timers-howto.txt
1871 *
1872 * The assumption here is that regulators will never be enabled in
1873 * atomic context and therefore sleeping functions can be used.
1874 */
1875static void _regulator_enable_delay(unsigned int delay)
1876{
1877 unsigned int ms = delay / 1000;
1878 unsigned int us = delay % 1000;
1879
1880 if (ms > 0) {
1881 /*
1882 * For small enough values, handle super-millisecond
1883 * delays in the usleep_range() call below.
1884 */
1885 if (ms < 20)
1886 us += ms * 1000;
1887 else
1888 msleep(ms);
1889 }
1890
1891 /*
1892 * Give the scheduler some room to coalesce with any other
1893 * wakeup sources. For delays shorter than 10 us, don't even
1894 * bother setting up high-resolution timers and just busy-
1895 * loop.
1896 */
1897 if (us >= 10)
1898 usleep_range(us, us + 100);
1899 else
1900 udelay(us);
1901}
1902
Mark Brown5c5659d2012-06-27 13:21:26 +01001903static int _regulator_do_enable(struct regulator_dev *rdev)
1904{
1905 int ret, delay;
1906
1907 /* Query before enabling in case configuration dependent. */
1908 ret = _regulator_get_enable_time(rdev);
1909 if (ret >= 0) {
1910 delay = ret;
1911 } else {
1912 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1913 delay = 0;
1914 }
1915
1916 trace_regulator_enable(rdev_get_name(rdev));
1917
Guodong Xu871f5652014-08-13 19:33:40 +08001918 if (rdev->desc->off_on_delay) {
1919 /* if needed, keep a distance of off_on_delay from last time
1920 * this regulator was disabled.
1921 */
1922 unsigned long start_jiffy = jiffies;
1923 unsigned long intended, max_delay, remaining;
1924
1925 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
1926 intended = rdev->last_off_jiffy + max_delay;
1927
1928 if (time_before(start_jiffy, intended)) {
1929 /* calc remaining jiffies to deal with one-time
1930 * timer wrapping.
1931 * in case of multiple timer wrapping, either it can be
1932 * detected by out-of-range remaining, or it cannot be
1933 * detected and we gets a panelty of
1934 * _regulator_enable_delay().
1935 */
1936 remaining = intended - start_jiffy;
1937 if (remaining <= max_delay)
1938 _regulator_enable_delay(
1939 jiffies_to_usecs(remaining));
1940 }
1941 }
1942
Kim, Milo967cfb12013-02-18 06:50:48 +00001943 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08001944 if (!rdev->ena_gpio_state) {
1945 ret = regulator_ena_gpio_ctrl(rdev, true);
1946 if (ret < 0)
1947 return ret;
1948 rdev->ena_gpio_state = 1;
1949 }
Mark Brown65f73502012-06-27 14:14:38 +01001950 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001951 ret = rdev->desc->ops->enable(rdev);
1952 if (ret < 0)
1953 return ret;
1954 } else {
1955 return -EINVAL;
1956 }
1957
1958 /* Allow the regulator to ramp; it would be useful to extend
1959 * this for bulk operations so that the regulators can ramp
1960 * together. */
1961 trace_regulator_enable_delay(rdev_get_name(rdev));
1962
Guodong Xu79fd1142014-08-13 19:33:39 +08001963 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01001964
1965 trace_regulator_enable_complete(rdev_get_name(rdev));
1966
1967 return 0;
1968}
1969
Liam Girdwood414c70c2008-04-30 15:59:04 +01001970/* locks held by regulator_enable() */
1971static int _regulator_enable(struct regulator_dev *rdev)
1972{
Mark Brown5c5659d2012-06-27 13:21:26 +01001973 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001974
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09001975 lockdep_assert_held_once(&rdev->mutex);
1976
Liam Girdwood414c70c2008-04-30 15:59:04 +01001977 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001978 if (rdev->constraints &&
1979 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1980 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001981
Mark Brown9a2372f2009-08-03 18:49:57 +01001982 if (rdev->use_count == 0) {
1983 /* The regulator may on if it's not switchable or left on */
1984 ret = _regulator_is_enabled(rdev);
1985 if (ret == -EINVAL || ret == 0) {
1986 if (!_regulator_can_change_status(rdev))
1987 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001988
Mark Brown5c5659d2012-06-27 13:21:26 +01001989 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001990 if (ret < 0)
1991 return ret;
1992
Linus Walleija7433cf2009-08-26 12:54:04 +02001993 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001994 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001995 return ret;
1996 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001997 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001998 }
1999
Mark Brown9a2372f2009-08-03 18:49:57 +01002000 rdev->use_count++;
2001
2002 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002003}
2004
2005/**
2006 * regulator_enable - enable regulator output
2007 * @regulator: regulator source
2008 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002009 * Request that the regulator be enabled with the regulator output at
2010 * the predefined voltage or current value. Calls to regulator_enable()
2011 * must be balanced with calls to regulator_disable().
2012 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002013 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00002014 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002015 */
2016int regulator_enable(struct regulator *regulator)
2017{
David Brownell412aec62008-11-16 11:44:46 -08002018 struct regulator_dev *rdev = regulator->rdev;
2019 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002020
Mark Brown6492bc12012-04-19 13:19:07 +01002021 if (regulator->always_on)
2022 return 0;
2023
Mark Brown3801b862011-06-09 16:22:22 +01002024 if (rdev->supply) {
2025 ret = regulator_enable(rdev->supply);
2026 if (ret != 0)
2027 return ret;
2028 }
2029
David Brownell412aec62008-11-16 11:44:46 -08002030 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08002031 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002032 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002033
Heiko Stübnerd1685e42011-10-14 18:00:29 +02002034 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002035 regulator_disable(rdev->supply);
2036
Liam Girdwood414c70c2008-04-30 15:59:04 +01002037 return ret;
2038}
2039EXPORT_SYMBOL_GPL(regulator_enable);
2040
Mark Brown5c5659d2012-06-27 13:21:26 +01002041static int _regulator_do_disable(struct regulator_dev *rdev)
2042{
2043 int ret;
2044
2045 trace_regulator_disable(rdev_get_name(rdev));
2046
Kim, Milo967cfb12013-02-18 06:50:48 +00002047 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002048 if (rdev->ena_gpio_state) {
2049 ret = regulator_ena_gpio_ctrl(rdev, false);
2050 if (ret < 0)
2051 return ret;
2052 rdev->ena_gpio_state = 0;
2053 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002054
2055 } else if (rdev->desc->ops->disable) {
2056 ret = rdev->desc->ops->disable(rdev);
2057 if (ret != 0)
2058 return ret;
2059 }
2060
Guodong Xu871f5652014-08-13 19:33:40 +08002061 /* cares about last_off_jiffy only if off_on_delay is required by
2062 * device.
2063 */
2064 if (rdev->desc->off_on_delay)
2065 rdev->last_off_jiffy = jiffies;
2066
Mark Brown5c5659d2012-06-27 13:21:26 +01002067 trace_regulator_disable_complete(rdev_get_name(rdev));
2068
Mark Brown5c5659d2012-06-27 13:21:26 +01002069 return 0;
2070}
2071
Liam Girdwood414c70c2008-04-30 15:59:04 +01002072/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002073static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002074{
2075 int ret = 0;
2076
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002077 lockdep_assert_held_once(&rdev->mutex);
2078
David Brownellcd94b502009-03-11 16:43:34 -08002079 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002080 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002081 return -EIO;
2082
Liam Girdwood414c70c2008-04-30 15:59:04 +01002083 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002084 if (rdev->use_count == 1 &&
2085 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002086
2087 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01002088 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002089 ret = _notifier_call_chain(rdev,
2090 REGULATOR_EVENT_PRE_DISABLE,
2091 NULL);
2092 if (ret & NOTIFY_STOP_MASK)
2093 return -EINVAL;
2094
Mark Brown5c5659d2012-06-27 13:21:26 +01002095 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002096 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002097 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002098 _notifier_call_chain(rdev,
2099 REGULATOR_EVENT_ABORT_DISABLE,
2100 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002101 return ret;
2102 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002103 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2104 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002105 }
2106
Liam Girdwood414c70c2008-04-30 15:59:04 +01002107 rdev->use_count = 0;
2108 } else if (rdev->use_count > 1) {
2109
2110 if (rdev->constraints &&
2111 (rdev->constraints->valid_ops_mask &
2112 REGULATOR_CHANGE_DRMS))
2113 drms_uA_update(rdev);
2114
2115 rdev->use_count--;
2116 }
Mark Brown3801b862011-06-09 16:22:22 +01002117
Liam Girdwood414c70c2008-04-30 15:59:04 +01002118 return ret;
2119}
2120
2121/**
2122 * regulator_disable - disable regulator output
2123 * @regulator: regulator source
2124 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002125 * Disable the regulator output voltage or current. Calls to
2126 * regulator_enable() must be balanced with calls to
2127 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002128 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002129 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002130 * devices have it enabled, the regulator device supports disabling and
2131 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002132 */
2133int regulator_disable(struct regulator *regulator)
2134{
David Brownell412aec62008-11-16 11:44:46 -08002135 struct regulator_dev *rdev = regulator->rdev;
2136 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002137
Mark Brown6492bc12012-04-19 13:19:07 +01002138 if (regulator->always_on)
2139 return 0;
2140
David Brownell412aec62008-11-16 11:44:46 -08002141 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002142 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002143 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002144
Mark Brown3801b862011-06-09 16:22:22 +01002145 if (ret == 0 && rdev->supply)
2146 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002147
Liam Girdwood414c70c2008-04-30 15:59:04 +01002148 return ret;
2149}
2150EXPORT_SYMBOL_GPL(regulator_disable);
2151
2152/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002153static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002154{
2155 int ret = 0;
2156
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002157 lockdep_assert_held_once(&rdev->mutex);
2158
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002159 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2160 REGULATOR_EVENT_PRE_DISABLE, NULL);
2161 if (ret & NOTIFY_STOP_MASK)
2162 return -EINVAL;
2163
Markus Pargmann66fda752014-02-20 17:36:04 +01002164 ret = _regulator_do_disable(rdev);
2165 if (ret < 0) {
2166 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002167 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2168 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002169 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002170 }
2171
Markus Pargmann66fda752014-02-20 17:36:04 +01002172 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2173 REGULATOR_EVENT_DISABLE, NULL);
2174
2175 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002176}
2177
2178/**
2179 * regulator_force_disable - force disable regulator output
2180 * @regulator: regulator source
2181 *
2182 * Forcibly disable the regulator output voltage or current.
2183 * NOTE: this *will* disable the regulator output even if other consumer
2184 * devices have it enabled. This should be used for situations when device
2185 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2186 */
2187int regulator_force_disable(struct regulator *regulator)
2188{
Mark Brown82d15832011-05-09 11:41:02 +02002189 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002190 int ret;
2191
Mark Brown82d15832011-05-09 11:41:02 +02002192 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002193 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002194 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002195 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002196
Mark Brown3801b862011-06-09 16:22:22 +01002197 if (rdev->supply)
2198 while (rdev->open_count--)
2199 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002200
Liam Girdwood414c70c2008-04-30 15:59:04 +01002201 return ret;
2202}
2203EXPORT_SYMBOL_GPL(regulator_force_disable);
2204
Mark Brownda07ecd2011-09-11 09:53:50 +01002205static void regulator_disable_work(struct work_struct *work)
2206{
2207 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2208 disable_work.work);
2209 int count, i, ret;
2210
2211 mutex_lock(&rdev->mutex);
2212
2213 BUG_ON(!rdev->deferred_disables);
2214
2215 count = rdev->deferred_disables;
2216 rdev->deferred_disables = 0;
2217
2218 for (i = 0; i < count; i++) {
2219 ret = _regulator_disable(rdev);
2220 if (ret != 0)
2221 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2222 }
2223
2224 mutex_unlock(&rdev->mutex);
2225
2226 if (rdev->supply) {
2227 for (i = 0; i < count; i++) {
2228 ret = regulator_disable(rdev->supply);
2229 if (ret != 0) {
2230 rdev_err(rdev,
2231 "Supply disable failed: %d\n", ret);
2232 }
2233 }
2234 }
2235}
2236
2237/**
2238 * regulator_disable_deferred - disable regulator output with delay
2239 * @regulator: regulator source
2240 * @ms: miliseconds until the regulator is disabled
2241 *
2242 * Execute regulator_disable() on the regulator after a delay. This
2243 * is intended for use with devices that require some time to quiesce.
2244 *
2245 * NOTE: this will only disable the regulator output if no other consumer
2246 * devices have it enabled, the regulator device supports disabling and
2247 * machine constraints permit this operation.
2248 */
2249int regulator_disable_deferred(struct regulator *regulator, int ms)
2250{
2251 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002252 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002253
Mark Brown6492bc12012-04-19 13:19:07 +01002254 if (regulator->always_on)
2255 return 0;
2256
Mark Brown2b5a24a2012-09-07 11:00:53 +08002257 if (!ms)
2258 return regulator_disable(regulator);
2259
Mark Brownda07ecd2011-09-11 09:53:50 +01002260 mutex_lock(&rdev->mutex);
2261 rdev->deferred_disables++;
2262 mutex_unlock(&rdev->mutex);
2263
Mark Brown070260f2013-07-18 11:52:04 +01002264 ret = queue_delayed_work(system_power_efficient_wq,
2265 &rdev->disable_work,
2266 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002267 if (ret < 0)
2268 return ret;
2269 else
2270 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002271}
2272EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2273
Liam Girdwood414c70c2008-04-30 15:59:04 +01002274static int _regulator_is_enabled(struct regulator_dev *rdev)
2275{
Mark Brown65f73502012-06-27 14:14:38 +01002276 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002277 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002278 return rdev->ena_gpio_state;
2279
Mark Brown9a7f6a42010-02-11 17:22:45 +00002280 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002281 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002282 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002283
Mark Brown93325462009-08-03 18:49:56 +01002284 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002285}
2286
2287/**
2288 * regulator_is_enabled - is the regulator output enabled
2289 * @regulator: regulator source
2290 *
David Brownell412aec62008-11-16 11:44:46 -08002291 * Returns positive if the regulator driver backing the source/client
2292 * has requested that the device be enabled, zero if it hasn't, else a
2293 * negative errno code.
2294 *
2295 * Note that the device backing this regulator handle can have multiple
2296 * users, so it might be enabled even if regulator_enable() was never
2297 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002298 */
2299int regulator_is_enabled(struct regulator *regulator)
2300{
Mark Brown93325462009-08-03 18:49:56 +01002301 int ret;
2302
Mark Brown6492bc12012-04-19 13:19:07 +01002303 if (regulator->always_on)
2304 return 1;
2305
Mark Brown93325462009-08-03 18:49:56 +01002306 mutex_lock(&regulator->rdev->mutex);
2307 ret = _regulator_is_enabled(regulator->rdev);
2308 mutex_unlock(&regulator->rdev->mutex);
2309
2310 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002311}
2312EXPORT_SYMBOL_GPL(regulator_is_enabled);
2313
2314/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002315 * regulator_can_change_voltage - check if regulator can change voltage
2316 * @regulator: regulator source
2317 *
2318 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002319 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002320 * or dummy regulators and disabling voltage change logic in the client
2321 * driver.
2322 */
2323int regulator_can_change_voltage(struct regulator *regulator)
2324{
2325 struct regulator_dev *rdev = regulator->rdev;
2326
2327 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002328 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2329 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2330 return 1;
2331
2332 if (rdev->desc->continuous_voltage_range &&
2333 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2334 rdev->constraints->min_uV != rdev->constraints->max_uV)
2335 return 1;
2336 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002337
2338 return 0;
2339}
2340EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2341
2342/**
David Brownell4367cfd2009-02-26 11:48:36 -08002343 * regulator_count_voltages - count regulator_list_voltage() selectors
2344 * @regulator: regulator source
2345 *
2346 * Returns number of selectors, or negative errno. Selectors are
2347 * numbered starting at zero, and typically correspond to bitfields
2348 * in hardware registers.
2349 */
2350int regulator_count_voltages(struct regulator *regulator)
2351{
2352 struct regulator_dev *rdev = regulator->rdev;
2353
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002354 if (rdev->desc->n_voltages)
2355 return rdev->desc->n_voltages;
2356
2357 if (!rdev->supply)
2358 return -EINVAL;
2359
2360 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002361}
2362EXPORT_SYMBOL_GPL(regulator_count_voltages);
2363
2364/**
2365 * regulator_list_voltage - enumerate supported voltages
2366 * @regulator: regulator source
2367 * @selector: identify voltage to list
2368 * Context: can sleep
2369 *
2370 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002371 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002372 * negative errno.
2373 */
2374int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2375{
Guodong Xu272e2312014-08-13 19:33:38 +08002376 struct regulator_dev *rdev = regulator->rdev;
2377 const struct regulator_ops *ops = rdev->desc->ops;
2378 int ret;
David Brownell4367cfd2009-02-26 11:48:36 -08002379
Guennadi Liakhovetskif4460432013-11-13 12:33:00 +01002380 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2381 return rdev->desc->fixed_uV;
2382
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002383 if (ops->list_voltage) {
2384 if (selector >= rdev->desc->n_voltages)
2385 return -EINVAL;
2386 mutex_lock(&rdev->mutex);
2387 ret = ops->list_voltage(rdev, selector);
2388 mutex_unlock(&rdev->mutex);
2389 } else if (rdev->supply) {
2390 ret = regulator_list_voltage(rdev->supply, selector);
2391 } else {
David Brownell4367cfd2009-02-26 11:48:36 -08002392 return -EINVAL;
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002393 }
David Brownell4367cfd2009-02-26 11:48:36 -08002394
2395 if (ret > 0) {
2396 if (ret < rdev->constraints->min_uV)
2397 ret = 0;
2398 else if (ret > rdev->constraints->max_uV)
2399 ret = 0;
2400 }
2401
2402 return ret;
2403}
2404EXPORT_SYMBOL_GPL(regulator_list_voltage);
2405
2406/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002407 * regulator_get_regmap - get the regulator's register map
2408 * @regulator: regulator source
2409 *
2410 * Returns the register map for the given regulator, or an ERR_PTR value
2411 * if the regulator doesn't use regmap.
2412 */
2413struct regmap *regulator_get_regmap(struct regulator *regulator)
2414{
2415 struct regmap *map = regulator->rdev->regmap;
2416
2417 return map ? map : ERR_PTR(-EOPNOTSUPP);
2418}
2419
2420/**
2421 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2422 * @regulator: regulator source
2423 * @vsel_reg: voltage selector register, output parameter
2424 * @vsel_mask: mask for voltage selector bitfield, output parameter
2425 *
2426 * Returns the hardware register offset and bitmask used for setting the
2427 * regulator voltage. This might be useful when configuring voltage-scaling
2428 * hardware or firmware that can make I2C requests behind the kernel's back,
2429 * for example.
2430 *
2431 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2432 * and 0 is returned, otherwise a negative errno is returned.
2433 */
2434int regulator_get_hardware_vsel_register(struct regulator *regulator,
2435 unsigned *vsel_reg,
2436 unsigned *vsel_mask)
2437{
Guodong Xu39f54602014-08-19 18:07:41 +08002438 struct regulator_dev *rdev = regulator->rdev;
2439 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002440
2441 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2442 return -EOPNOTSUPP;
2443
2444 *vsel_reg = rdev->desc->vsel_reg;
2445 *vsel_mask = rdev->desc->vsel_mask;
2446
2447 return 0;
2448}
2449EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2450
2451/**
2452 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2453 * @regulator: regulator source
2454 * @selector: identify voltage to list
2455 *
2456 * Converts the selector to a hardware-specific voltage selector that can be
2457 * directly written to the regulator registers. The address of the voltage
2458 * register can be determined by calling @regulator_get_hardware_vsel_register.
2459 *
2460 * On error a negative errno is returned.
2461 */
2462int regulator_list_hardware_vsel(struct regulator *regulator,
2463 unsigned selector)
2464{
Guodong Xu39f54602014-08-19 18:07:41 +08002465 struct regulator_dev *rdev = regulator->rdev;
2466 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002467
2468 if (selector >= rdev->desc->n_voltages)
2469 return -EINVAL;
2470 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2471 return -EOPNOTSUPP;
2472
2473 return selector;
2474}
2475EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2476
2477/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002478 * regulator_get_linear_step - return the voltage step size between VSEL values
2479 * @regulator: regulator source
2480 *
2481 * Returns the voltage step size between VSEL values for linear
2482 * regulators, or return 0 if the regulator isn't a linear regulator.
2483 */
2484unsigned int regulator_get_linear_step(struct regulator *regulator)
2485{
2486 struct regulator_dev *rdev = regulator->rdev;
2487
2488 return rdev->desc->uV_step;
2489}
2490EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2491
2492/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002493 * regulator_is_supported_voltage - check if a voltage range can be supported
2494 *
2495 * @regulator: Regulator to check.
2496 * @min_uV: Minimum required voltage in uV.
2497 * @max_uV: Maximum required voltage in uV.
2498 *
2499 * Returns a boolean or a negative error code.
2500 */
2501int regulator_is_supported_voltage(struct regulator *regulator,
2502 int min_uV, int max_uV)
2503{
Mark Brownc5f39392012-07-02 15:00:18 +01002504 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002505 int i, voltages, ret;
2506
Mark Brownc5f39392012-07-02 15:00:18 +01002507 /* If we can't change voltage check the current voltage */
2508 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2509 ret = regulator_get_voltage(regulator);
2510 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002511 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002512 else
2513 return ret;
2514 }
2515
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002516 /* Any voltage within constrains range is fine? */
2517 if (rdev->desc->continuous_voltage_range)
2518 return min_uV >= rdev->constraints->min_uV &&
2519 max_uV <= rdev->constraints->max_uV;
2520
Mark Browna7a1ad92009-07-21 16:00:24 +01002521 ret = regulator_count_voltages(regulator);
2522 if (ret < 0)
2523 return ret;
2524 voltages = ret;
2525
2526 for (i = 0; i < voltages; i++) {
2527 ret = regulator_list_voltage(regulator, i);
2528
2529 if (ret >= min_uV && ret <= max_uV)
2530 return 1;
2531 }
2532
2533 return 0;
2534}
Mark Browna398eaa2011-12-28 12:48:45 +00002535EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002536
Heiko Stübner71795692014-08-28 12:36:04 -07002537static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2538 int min_uV, int max_uV,
2539 unsigned *selector)
2540{
2541 struct pre_voltage_change_data data;
2542 int ret;
2543
2544 data.old_uV = _regulator_get_voltage(rdev);
2545 data.min_uV = min_uV;
2546 data.max_uV = max_uV;
2547 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2548 &data);
2549 if (ret & NOTIFY_STOP_MASK)
2550 return -EINVAL;
2551
2552 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2553 if (ret >= 0)
2554 return ret;
2555
2556 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2557 (void *)data.old_uV);
2558
2559 return ret;
2560}
2561
2562static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2563 int uV, unsigned selector)
2564{
2565 struct pre_voltage_change_data data;
2566 int ret;
2567
2568 data.old_uV = _regulator_get_voltage(rdev);
2569 data.min_uV = uV;
2570 data.max_uV = uV;
2571 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2572 &data);
2573 if (ret & NOTIFY_STOP_MASK)
2574 return -EINVAL;
2575
2576 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2577 if (ret >= 0)
2578 return ret;
2579
2580 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2581 (void *)data.old_uV);
2582
2583 return ret;
2584}
2585
Mark Brown75790252010-12-12 14:25:50 +00002586static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2587 int min_uV, int max_uV)
2588{
2589 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002590 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002591 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002592 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002593 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002594
2595 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2596
Mark Brownbf5892a2011-05-08 22:13:37 +01002597 min_uV += rdev->constraints->uV_offset;
2598 max_uV += rdev->constraints->uV_offset;
2599
Axel Lineba41a52012-04-04 10:32:10 +08002600 /*
2601 * If we can't obtain the old selector there is not enough
2602 * info to call set_voltage_time_sel().
2603 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002604 if (_regulator_is_enabled(rdev) &&
2605 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002606 rdev->desc->ops->get_voltage_sel) {
2607 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2608 if (old_selector < 0)
2609 return old_selector;
2610 }
2611
Mark Brown75790252010-12-12 14:25:50 +00002612 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002613 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2614 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002615
2616 if (ret >= 0) {
2617 if (rdev->desc->ops->list_voltage)
2618 best_val = rdev->desc->ops->list_voltage(rdev,
2619 selector);
2620 else
2621 best_val = _regulator_get_voltage(rdev);
2622 }
2623
Mark Browne8eef822010-12-12 14:36:17 +00002624 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002625 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002626 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2627 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002628 } else {
2629 if (rdev->desc->ops->list_voltage ==
2630 regulator_list_voltage_linear)
2631 ret = regulator_map_voltage_linear(rdev,
2632 min_uV, max_uV);
Axel Lin36698622014-05-24 11:10:43 +08002633 else if (rdev->desc->ops->list_voltage ==
2634 regulator_list_voltage_linear_range)
2635 ret = regulator_map_voltage_linear_range(rdev,
2636 min_uV, max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002637 else
2638 ret = regulator_map_voltage_iterate(rdev,
2639 min_uV, max_uV);
2640 }
Mark Browne8eef822010-12-12 14:36:17 +00002641
Mark Browne843fc42012-05-09 21:16:06 +01002642 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002643 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2644 if (min_uV <= best_val && max_uV >= best_val) {
2645 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002646 if (old_selector == selector)
2647 ret = 0;
2648 else
Heiko Stübner71795692014-08-28 12:36:04 -07002649 ret = _regulator_call_set_voltage_sel(
2650 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002651 } else {
2652 ret = -EINVAL;
2653 }
Mark Browne8eef822010-12-12 14:36:17 +00002654 }
Mark Brown75790252010-12-12 14:25:50 +00002655 } else {
2656 ret = -EINVAL;
2657 }
2658
Axel Lineba41a52012-04-04 10:32:10 +08002659 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302660 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2661 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002662
2663 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2664 old_selector, selector);
2665 if (delay < 0) {
2666 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2667 delay);
2668 delay = 0;
2669 }
Axel Lineba41a52012-04-04 10:32:10 +08002670
Philip Rakity8b96de32012-06-14 15:07:56 -07002671 /* Insert any necessary delays */
2672 if (delay >= 1000) {
2673 mdelay(delay / 1000);
2674 udelay(delay % 1000);
2675 } else if (delay) {
2676 udelay(delay);
2677 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002678 }
2679
Axel Lin2f6c7972012-08-06 23:44:19 +08002680 if (ret == 0 && best_val >= 0) {
2681 unsigned long data = best_val;
2682
Mark Brownded06a52010-12-16 13:59:10 +00002683 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002684 (void *)data);
2685 }
Mark Brownded06a52010-12-16 13:59:10 +00002686
Axel Lineba41a52012-04-04 10:32:10 +08002687 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002688
2689 return ret;
2690}
2691
Mark Browna7a1ad92009-07-21 16:00:24 +01002692/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002693 * regulator_set_voltage - set regulator output voltage
2694 * @regulator: regulator source
2695 * @min_uV: Minimum required voltage in uV
2696 * @max_uV: Maximum acceptable voltage in uV
2697 *
2698 * Sets a voltage regulator to the desired output voltage. This can be set
2699 * during any regulator state. IOW, regulator can be disabled or enabled.
2700 *
2701 * If the regulator is enabled then the voltage will change to the new value
2702 * immediately otherwise if the regulator is disabled the regulator will
2703 * output at the new voltage when enabled.
2704 *
2705 * NOTE: If the regulator is shared between several devices then the lowest
2706 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002707 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002708 * calling this function otherwise this call will fail.
2709 */
2710int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2711{
2712 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002713 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002714 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002715 int current_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002716
2717 mutex_lock(&rdev->mutex);
2718
Mark Brown95a3c232010-12-16 15:49:37 +00002719 /* If we're setting the same range as last time the change
2720 * should be a noop (some cpufreq implementations use the same
2721 * voltage for multiple frequencies, for example).
2722 */
2723 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2724 goto out;
2725
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002726 /* If we're trying to set a range that overlaps the current voltage,
2727 * return succesfully even though the regulator does not support
2728 * changing the voltage.
2729 */
2730 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2731 current_uV = _regulator_get_voltage(rdev);
2732 if (min_uV <= current_uV && current_uV <= max_uV) {
2733 regulator->min_uV = min_uV;
2734 regulator->max_uV = max_uV;
2735 goto out;
2736 }
2737 }
2738
Liam Girdwood414c70c2008-04-30 15:59:04 +01002739 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002740 if (!rdev->desc->ops->set_voltage &&
2741 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002742 ret = -EINVAL;
2743 goto out;
2744 }
2745
2746 /* constraints check */
2747 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2748 if (ret < 0)
2749 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002750
Paolo Pisati92d7a552012-12-13 10:13:00 +01002751 /* restore original values in case of error */
2752 old_min_uV = regulator->min_uV;
2753 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002754 regulator->min_uV = min_uV;
2755 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002756
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002757 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2758 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002759 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002760
Mark Brown75790252010-12-12 14:25:50 +00002761 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002762 if (ret < 0)
2763 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002764
Liam Girdwood414c70c2008-04-30 15:59:04 +01002765out:
2766 mutex_unlock(&rdev->mutex);
2767 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002768out2:
2769 regulator->min_uV = old_min_uV;
2770 regulator->max_uV = old_max_uV;
2771 mutex_unlock(&rdev->mutex);
2772 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002773}
2774EXPORT_SYMBOL_GPL(regulator_set_voltage);
2775
Mark Brown606a2562010-12-16 15:49:36 +00002776/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002777 * regulator_set_voltage_time - get raise/fall time
2778 * @regulator: regulator source
2779 * @old_uV: starting voltage in microvolts
2780 * @new_uV: target voltage in microvolts
2781 *
2782 * Provided with the starting and ending voltage, this function attempts to
2783 * calculate the time in microseconds required to rise or fall to this new
2784 * voltage.
2785 */
2786int regulator_set_voltage_time(struct regulator *regulator,
2787 int old_uV, int new_uV)
2788{
Guodong Xu272e2312014-08-13 19:33:38 +08002789 struct regulator_dev *rdev = regulator->rdev;
2790 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002791 int old_sel = -1;
2792 int new_sel = -1;
2793 int voltage;
2794 int i;
2795
2796 /* Currently requires operations to do this */
2797 if (!ops->list_voltage || !ops->set_voltage_time_sel
2798 || !rdev->desc->n_voltages)
2799 return -EINVAL;
2800
2801 for (i = 0; i < rdev->desc->n_voltages; i++) {
2802 /* We only look for exact voltage matches here */
2803 voltage = regulator_list_voltage(regulator, i);
2804 if (voltage < 0)
2805 return -EINVAL;
2806 if (voltage == 0)
2807 continue;
2808 if (voltage == old_uV)
2809 old_sel = i;
2810 if (voltage == new_uV)
2811 new_sel = i;
2812 }
2813
2814 if (old_sel < 0 || new_sel < 0)
2815 return -EINVAL;
2816
2817 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2818}
2819EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2820
2821/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002822 * regulator_set_voltage_time_sel - get raise/fall time
2823 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302824 * @old_selector: selector for starting voltage
2825 * @new_selector: selector for target voltage
2826 *
2827 * Provided with the starting and target voltage selectors, this function
2828 * returns time in microseconds required to rise or fall to this new voltage
2829 *
Axel Linf11d08c2012-06-19 09:38:45 +08002830 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002831 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302832 */
2833int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2834 unsigned int old_selector,
2835 unsigned int new_selector)
2836{
Axel Lin398715a2012-06-18 10:11:28 +08002837 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002838 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002839
2840 if (rdev->constraints->ramp_delay)
2841 ramp_delay = rdev->constraints->ramp_delay;
2842 else if (rdev->desc->ramp_delay)
2843 ramp_delay = rdev->desc->ramp_delay;
2844
2845 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302846 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002847 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302848 }
Axel Lin398715a2012-06-18 10:11:28 +08002849
Axel Linf11d08c2012-06-19 09:38:45 +08002850 /* sanity check */
2851 if (!rdev->desc->ops->list_voltage)
2852 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002853
Axel Linf11d08c2012-06-19 09:38:45 +08002854 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2855 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2856
2857 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302858}
Mark Brownb19dbf72012-06-23 11:34:20 +01002859EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302860
2861/**
Mark Brown606a2562010-12-16 15:49:36 +00002862 * regulator_sync_voltage - re-apply last regulator output voltage
2863 * @regulator: regulator source
2864 *
2865 * Re-apply the last configured voltage. This is intended to be used
2866 * where some external control source the consumer is cooperating with
2867 * has caused the configured voltage to change.
2868 */
2869int regulator_sync_voltage(struct regulator *regulator)
2870{
2871 struct regulator_dev *rdev = regulator->rdev;
2872 int ret, min_uV, max_uV;
2873
2874 mutex_lock(&rdev->mutex);
2875
2876 if (!rdev->desc->ops->set_voltage &&
2877 !rdev->desc->ops->set_voltage_sel) {
2878 ret = -EINVAL;
2879 goto out;
2880 }
2881
2882 /* This is only going to work if we've had a voltage configured. */
2883 if (!regulator->min_uV && !regulator->max_uV) {
2884 ret = -EINVAL;
2885 goto out;
2886 }
2887
2888 min_uV = regulator->min_uV;
2889 max_uV = regulator->max_uV;
2890
2891 /* This should be a paranoia check... */
2892 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2893 if (ret < 0)
2894 goto out;
2895
2896 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2897 if (ret < 0)
2898 goto out;
2899
2900 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2901
2902out:
2903 mutex_unlock(&rdev->mutex);
2904 return ret;
2905}
2906EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2907
Liam Girdwood414c70c2008-04-30 15:59:04 +01002908static int _regulator_get_voltage(struct regulator_dev *rdev)
2909{
Mark Brownbf5892a2011-05-08 22:13:37 +01002910 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002911
2912 if (rdev->desc->ops->get_voltage_sel) {
2913 sel = rdev->desc->ops->get_voltage_sel(rdev);
2914 if (sel < 0)
2915 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002916 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002917 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002918 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002919 } else if (rdev->desc->ops->list_voltage) {
2920 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05302921 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
2922 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02002923 } else if (rdev->supply) {
2924 ret = regulator_get_voltage(rdev->supply);
Axel Lincb220d12011-05-23 20:08:10 +08002925 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002926 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002927 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002928
Axel Lincb220d12011-05-23 20:08:10 +08002929 if (ret < 0)
2930 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002931 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002932}
2933
2934/**
2935 * regulator_get_voltage - get regulator output voltage
2936 * @regulator: regulator source
2937 *
2938 * This returns the current regulator voltage in uV.
2939 *
2940 * NOTE: If the regulator is disabled it will return the voltage value. This
2941 * function should not be used to determine regulator state.
2942 */
2943int regulator_get_voltage(struct regulator *regulator)
2944{
2945 int ret;
2946
2947 mutex_lock(&regulator->rdev->mutex);
2948
2949 ret = _regulator_get_voltage(regulator->rdev);
2950
2951 mutex_unlock(&regulator->rdev->mutex);
2952
2953 return ret;
2954}
2955EXPORT_SYMBOL_GPL(regulator_get_voltage);
2956
2957/**
2958 * regulator_set_current_limit - set regulator output current limit
2959 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002960 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002961 * @max_uA: Maximum supported current in uA
2962 *
2963 * Sets current sink to the desired output current. This can be set during
2964 * any regulator state. IOW, regulator can be disabled or enabled.
2965 *
2966 * If the regulator is enabled then the current will change to the new value
2967 * immediately otherwise if the regulator is disabled the regulator will
2968 * output at the new current when enabled.
2969 *
2970 * NOTE: Regulator system constraints must be set for this regulator before
2971 * calling this function otherwise this call will fail.
2972 */
2973int regulator_set_current_limit(struct regulator *regulator,
2974 int min_uA, int max_uA)
2975{
2976 struct regulator_dev *rdev = regulator->rdev;
2977 int ret;
2978
2979 mutex_lock(&rdev->mutex);
2980
2981 /* sanity check */
2982 if (!rdev->desc->ops->set_current_limit) {
2983 ret = -EINVAL;
2984 goto out;
2985 }
2986
2987 /* constraints check */
2988 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2989 if (ret < 0)
2990 goto out;
2991
2992 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2993out:
2994 mutex_unlock(&rdev->mutex);
2995 return ret;
2996}
2997EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2998
2999static int _regulator_get_current_limit(struct regulator_dev *rdev)
3000{
3001 int ret;
3002
3003 mutex_lock(&rdev->mutex);
3004
3005 /* sanity check */
3006 if (!rdev->desc->ops->get_current_limit) {
3007 ret = -EINVAL;
3008 goto out;
3009 }
3010
3011 ret = rdev->desc->ops->get_current_limit(rdev);
3012out:
3013 mutex_unlock(&rdev->mutex);
3014 return ret;
3015}
3016
3017/**
3018 * regulator_get_current_limit - get regulator output current
3019 * @regulator: regulator source
3020 *
3021 * This returns the current supplied by the specified current sink in uA.
3022 *
3023 * NOTE: If the regulator is disabled it will return the current value. This
3024 * function should not be used to determine regulator state.
3025 */
3026int regulator_get_current_limit(struct regulator *regulator)
3027{
3028 return _regulator_get_current_limit(regulator->rdev);
3029}
3030EXPORT_SYMBOL_GPL(regulator_get_current_limit);
3031
3032/**
3033 * regulator_set_mode - set regulator operating mode
3034 * @regulator: regulator source
3035 * @mode: operating mode - one of the REGULATOR_MODE constants
3036 *
3037 * Set regulator operating mode to increase regulator efficiency or improve
3038 * regulation performance.
3039 *
3040 * NOTE: Regulator system constraints must be set for this regulator before
3041 * calling this function otherwise this call will fail.
3042 */
3043int regulator_set_mode(struct regulator *regulator, unsigned int mode)
3044{
3045 struct regulator_dev *rdev = regulator->rdev;
3046 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303047 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003048
3049 mutex_lock(&rdev->mutex);
3050
3051 /* sanity check */
3052 if (!rdev->desc->ops->set_mode) {
3053 ret = -EINVAL;
3054 goto out;
3055 }
3056
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303057 /* return if the same mode is requested */
3058 if (rdev->desc->ops->get_mode) {
3059 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3060 if (regulator_curr_mode == mode) {
3061 ret = 0;
3062 goto out;
3063 }
3064 }
3065
Liam Girdwood414c70c2008-04-30 15:59:04 +01003066 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003067 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003068 if (ret < 0)
3069 goto out;
3070
3071 ret = rdev->desc->ops->set_mode(rdev, mode);
3072out:
3073 mutex_unlock(&rdev->mutex);
3074 return ret;
3075}
3076EXPORT_SYMBOL_GPL(regulator_set_mode);
3077
3078static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3079{
3080 int ret;
3081
3082 mutex_lock(&rdev->mutex);
3083
3084 /* sanity check */
3085 if (!rdev->desc->ops->get_mode) {
3086 ret = -EINVAL;
3087 goto out;
3088 }
3089
3090 ret = rdev->desc->ops->get_mode(rdev);
3091out:
3092 mutex_unlock(&rdev->mutex);
3093 return ret;
3094}
3095
3096/**
3097 * regulator_get_mode - get regulator operating mode
3098 * @regulator: regulator source
3099 *
3100 * Get the current regulator operating mode.
3101 */
3102unsigned int regulator_get_mode(struct regulator *regulator)
3103{
3104 return _regulator_get_mode(regulator->rdev);
3105}
3106EXPORT_SYMBOL_GPL(regulator_get_mode);
3107
3108/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003109 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003110 * @regulator: regulator source
3111 * @uA_load: load current
3112 *
3113 * Notifies the regulator core of a new device load. This is then used by
3114 * DRMS (if enabled by constraints) to set the most efficient regulator
3115 * operating mode for the new regulator loading.
3116 *
3117 * Consumer devices notify their supply regulator of the maximum power
3118 * they will require (can be taken from device datasheet in the power
3119 * consumption tables) when they change operational status and hence power
3120 * state. Examples of operational state changes that can affect power
3121 * consumption are :-
3122 *
3123 * o Device is opened / closed.
3124 * o Device I/O is about to begin or has just finished.
3125 * o Device is idling in between work.
3126 *
3127 * This information is also exported via sysfs to userspace.
3128 *
3129 * DRMS will sum the total requested load on the regulator and change
3130 * to the most efficient operating mode if platform constraints allow.
3131 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003132 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003133 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003134int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003135{
3136 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003137 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003138
Liam Girdwood414c70c2008-04-30 15:59:04 +01003139 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003140 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003141 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003142 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003143
Liam Girdwood414c70c2008-04-30 15:59:04 +01003144 return ret;
3145}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003146EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003147
3148/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003149 * regulator_allow_bypass - allow the regulator to go into bypass mode
3150 *
3151 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003152 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003153 *
3154 * Allow the regulator to go into bypass mode if all other consumers
3155 * for the regulator also enable bypass mode and the machine
3156 * constraints allow this. Bypass mode means that the regulator is
3157 * simply passing the input directly to the output with no regulation.
3158 */
3159int regulator_allow_bypass(struct regulator *regulator, bool enable)
3160{
3161 struct regulator_dev *rdev = regulator->rdev;
3162 int ret = 0;
3163
3164 if (!rdev->desc->ops->set_bypass)
3165 return 0;
3166
3167 if (rdev->constraints &&
3168 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3169 return 0;
3170
3171 mutex_lock(&rdev->mutex);
3172
3173 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 } else if (!enable && regulator->bypass) {
3183 rdev->bypass_count--;
3184
3185 if (rdev->bypass_count != rdev->open_count) {
3186 ret = rdev->desc->ops->set_bypass(rdev, enable);
3187 if (ret != 0)
3188 rdev->bypass_count++;
3189 }
3190 }
3191
3192 if (ret == 0)
3193 regulator->bypass = enable;
3194
3195 mutex_unlock(&rdev->mutex);
3196
3197 return ret;
3198}
3199EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3200
3201/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003202 * regulator_register_notifier - register regulator event notifier
3203 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003204 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003205 *
3206 * Register notifier block to receive regulator events.
3207 */
3208int regulator_register_notifier(struct regulator *regulator,
3209 struct notifier_block *nb)
3210{
3211 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3212 nb);
3213}
3214EXPORT_SYMBOL_GPL(regulator_register_notifier);
3215
3216/**
3217 * regulator_unregister_notifier - unregister regulator event notifier
3218 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003219 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003220 *
3221 * Unregister regulator event notifier block.
3222 */
3223int regulator_unregister_notifier(struct regulator *regulator,
3224 struct notifier_block *nb)
3225{
3226 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3227 nb);
3228}
3229EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3230
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003231/* notify regulator consumers and downstream regulator consumers.
3232 * Note mutex must be held by caller.
3233 */
Heiko Stübner71795692014-08-28 12:36:04 -07003234static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003235 unsigned long event, void *data)
3236{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003237 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003238 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003239}
3240
3241/**
3242 * regulator_bulk_get - get multiple regulator consumers
3243 *
3244 * @dev: Device to supply
3245 * @num_consumers: Number of consumers to register
3246 * @consumers: Configuration of consumers; clients are stored here.
3247 *
3248 * @return 0 on success, an errno on failure.
3249 *
3250 * This helper function allows drivers to get several regulator
3251 * consumers in one operation. If any of the regulators cannot be
3252 * acquired then any regulators that were allocated will be freed
3253 * before returning to the caller.
3254 */
3255int regulator_bulk_get(struct device *dev, int num_consumers,
3256 struct regulator_bulk_data *consumers)
3257{
3258 int i;
3259 int ret;
3260
3261 for (i = 0; i < num_consumers; i++)
3262 consumers[i].consumer = NULL;
3263
3264 for (i = 0; i < num_consumers; i++) {
3265 consumers[i].consumer = regulator_get(dev,
3266 consumers[i].supply);
3267 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003268 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003269 dev_err(dev, "Failed to get supply '%s': %d\n",
3270 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003271 consumers[i].consumer = NULL;
3272 goto err;
3273 }
3274 }
3275
3276 return 0;
3277
3278err:
Axel Linb29c7692012-02-20 10:32:16 +08003279 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003280 regulator_put(consumers[i].consumer);
3281
3282 return ret;
3283}
3284EXPORT_SYMBOL_GPL(regulator_bulk_get);
3285
Mark Brownf21e0e82011-05-24 08:12:40 +08003286static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3287{
3288 struct regulator_bulk_data *bulk = data;
3289
3290 bulk->ret = regulator_enable(bulk->consumer);
3291}
3292
Liam Girdwood414c70c2008-04-30 15:59:04 +01003293/**
3294 * regulator_bulk_enable - enable multiple regulator consumers
3295 *
3296 * @num_consumers: Number of consumers
3297 * @consumers: Consumer data; clients are stored here.
3298 * @return 0 on success, an errno on failure
3299 *
3300 * This convenience API allows consumers to enable multiple regulator
3301 * clients in a single API call. If any consumers cannot be enabled
3302 * then any others that were enabled will be disabled again prior to
3303 * return.
3304 */
3305int regulator_bulk_enable(int num_consumers,
3306 struct regulator_bulk_data *consumers)
3307{
Dan Williams2955b472012-07-09 19:33:25 -07003308 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003309 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003310 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003311
Mark Brown6492bc12012-04-19 13:19:07 +01003312 for (i = 0; i < num_consumers; i++) {
3313 if (consumers[i].consumer->always_on)
3314 consumers[i].ret = 0;
3315 else
3316 async_schedule_domain(regulator_bulk_enable_async,
3317 &consumers[i], &async_domain);
3318 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003319
3320 async_synchronize_full_domain(&async_domain);
3321
3322 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003323 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003324 if (consumers[i].ret != 0) {
3325 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003326 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003327 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003328 }
3329
3330 return 0;
3331
3332err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003333 for (i = 0; i < num_consumers; i++) {
3334 if (consumers[i].ret < 0)
3335 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3336 consumers[i].ret);
3337 else
3338 regulator_disable(consumers[i].consumer);
3339 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003340
3341 return ret;
3342}
3343EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3344
3345/**
3346 * regulator_bulk_disable - disable multiple regulator consumers
3347 *
3348 * @num_consumers: Number of consumers
3349 * @consumers: Consumer data; clients are stored here.
3350 * @return 0 on success, an errno on failure
3351 *
3352 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003353 * clients in a single API call. If any consumers cannot be disabled
3354 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003355 * return.
3356 */
3357int regulator_bulk_disable(int num_consumers,
3358 struct regulator_bulk_data *consumers)
3359{
3360 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003361 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003362
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003363 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003364 ret = regulator_disable(consumers[i].consumer);
3365 if (ret != 0)
3366 goto err;
3367 }
3368
3369 return 0;
3370
3371err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003372 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003373 for (++i; i < num_consumers; ++i) {
3374 r = regulator_enable(consumers[i].consumer);
3375 if (r != 0)
3376 pr_err("Failed to reename %s: %d\n",
3377 consumers[i].supply, r);
3378 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003379
3380 return ret;
3381}
3382EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3383
3384/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003385 * regulator_bulk_force_disable - force disable multiple regulator consumers
3386 *
3387 * @num_consumers: Number of consumers
3388 * @consumers: Consumer data; clients are stored here.
3389 * @return 0 on success, an errno on failure
3390 *
3391 * This convenience API allows consumers to forcibly disable multiple regulator
3392 * clients in a single API call.
3393 * NOTE: This should be used for situations when device damage will
3394 * likely occur if the regulators are not disabled (e.g. over temp).
3395 * Although regulator_force_disable function call for some consumers can
3396 * return error numbers, the function is called for all consumers.
3397 */
3398int regulator_bulk_force_disable(int num_consumers,
3399 struct regulator_bulk_data *consumers)
3400{
3401 int i;
3402 int ret;
3403
3404 for (i = 0; i < num_consumers; i++)
3405 consumers[i].ret =
3406 regulator_force_disable(consumers[i].consumer);
3407
3408 for (i = 0; i < num_consumers; i++) {
3409 if (consumers[i].ret != 0) {
3410 ret = consumers[i].ret;
3411 goto out;
3412 }
3413 }
3414
3415 return 0;
3416out:
3417 return ret;
3418}
3419EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3420
3421/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003422 * regulator_bulk_free - free multiple regulator consumers
3423 *
3424 * @num_consumers: Number of consumers
3425 * @consumers: Consumer data; clients are stored here.
3426 *
3427 * This convenience API allows consumers to free multiple regulator
3428 * clients in a single API call.
3429 */
3430void regulator_bulk_free(int num_consumers,
3431 struct regulator_bulk_data *consumers)
3432{
3433 int i;
3434
3435 for (i = 0; i < num_consumers; i++) {
3436 regulator_put(consumers[i].consumer);
3437 consumers[i].consumer = NULL;
3438 }
3439}
3440EXPORT_SYMBOL_GPL(regulator_bulk_free);
3441
3442/**
3443 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003444 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003445 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003446 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003447 *
3448 * Called by regulator drivers to notify clients a regulator event has
3449 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003450 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003451 */
3452int regulator_notifier_call_chain(struct regulator_dev *rdev,
3453 unsigned long event, void *data)
3454{
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09003455 lockdep_assert_held_once(&rdev->mutex);
3456
Liam Girdwood414c70c2008-04-30 15:59:04 +01003457 _notifier_call_chain(rdev, event, data);
3458 return NOTIFY_DONE;
3459
3460}
3461EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3462
Mark Brownbe721972009-08-04 20:09:52 +02003463/**
3464 * regulator_mode_to_status - convert a regulator mode into a status
3465 *
3466 * @mode: Mode to convert
3467 *
3468 * Convert a regulator mode into a status.
3469 */
3470int regulator_mode_to_status(unsigned int mode)
3471{
3472 switch (mode) {
3473 case REGULATOR_MODE_FAST:
3474 return REGULATOR_STATUS_FAST;
3475 case REGULATOR_MODE_NORMAL:
3476 return REGULATOR_STATUS_NORMAL;
3477 case REGULATOR_MODE_IDLE:
3478 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003479 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003480 return REGULATOR_STATUS_STANDBY;
3481 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003482 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003483 }
3484}
3485EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3486
Takashi Iwai39f802d2015-01-30 20:29:31 +01003487static struct attribute *regulator_dev_attrs[] = {
3488 &dev_attr_name.attr,
3489 &dev_attr_num_users.attr,
3490 &dev_attr_type.attr,
3491 &dev_attr_microvolts.attr,
3492 &dev_attr_microamps.attr,
3493 &dev_attr_opmode.attr,
3494 &dev_attr_state.attr,
3495 &dev_attr_status.attr,
3496 &dev_attr_bypass.attr,
3497 &dev_attr_requested_microamps.attr,
3498 &dev_attr_min_microvolts.attr,
3499 &dev_attr_max_microvolts.attr,
3500 &dev_attr_min_microamps.attr,
3501 &dev_attr_max_microamps.attr,
3502 &dev_attr_suspend_standby_state.attr,
3503 &dev_attr_suspend_mem_state.attr,
3504 &dev_attr_suspend_disk_state.attr,
3505 &dev_attr_suspend_standby_microvolts.attr,
3506 &dev_attr_suspend_mem_microvolts.attr,
3507 &dev_attr_suspend_disk_microvolts.attr,
3508 &dev_attr_suspend_standby_mode.attr,
3509 &dev_attr_suspend_mem_mode.attr,
3510 &dev_attr_suspend_disk_mode.attr,
3511 NULL
3512};
3513
David Brownell7ad68e22008-11-11 17:39:02 -08003514/*
3515 * To avoid cluttering sysfs (and memory) with useless state, only
3516 * create attributes that can be meaningfully displayed.
3517 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003518static umode_t regulator_attr_is_visible(struct kobject *kobj,
3519 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003520{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003521 struct device *dev = kobj_to_dev(kobj);
3522 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003523 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003524 umode_t mode = attr->mode;
3525
3526 /* these three are always present */
3527 if (attr == &dev_attr_name.attr ||
3528 attr == &dev_attr_num_users.attr ||
3529 attr == &dev_attr_type.attr)
3530 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003531
3532 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003533 if (attr == &dev_attr_microvolts.attr) {
3534 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3535 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3536 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3537 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3538 return mode;
3539 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003540 }
David Brownell7ad68e22008-11-11 17:39:02 -08003541
Takashi Iwai39f802d2015-01-30 20:29:31 +01003542 if (attr == &dev_attr_microamps.attr)
3543 return ops->get_current_limit ? mode : 0;
3544
3545 if (attr == &dev_attr_opmode.attr)
3546 return ops->get_mode ? mode : 0;
3547
3548 if (attr == &dev_attr_state.attr)
3549 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3550
3551 if (attr == &dev_attr_status.attr)
3552 return ops->get_status ? mode : 0;
3553
3554 if (attr == &dev_attr_bypass.attr)
3555 return ops->get_bypass ? mode : 0;
3556
David Brownell7ad68e22008-11-11 17:39:02 -08003557 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003558 if (attr == &dev_attr_requested_microamps.attr)
3559 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003560
David Brownell7ad68e22008-11-11 17:39:02 -08003561 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003562 if (attr == &dev_attr_min_microvolts.attr ||
3563 attr == &dev_attr_max_microvolts.attr)
3564 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003565
Takashi Iwai39f802d2015-01-30 20:29:31 +01003566 if (attr == &dev_attr_min_microamps.attr ||
3567 attr == &dev_attr_max_microamps.attr)
3568 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003569
Takashi Iwai39f802d2015-01-30 20:29:31 +01003570 if (attr == &dev_attr_suspend_standby_state.attr ||
3571 attr == &dev_attr_suspend_mem_state.attr ||
3572 attr == &dev_attr_suspend_disk_state.attr)
3573 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003574
Takashi Iwai39f802d2015-01-30 20:29:31 +01003575 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3576 attr == &dev_attr_suspend_mem_microvolts.attr ||
3577 attr == &dev_attr_suspend_disk_microvolts.attr)
3578 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003579
Takashi Iwai39f802d2015-01-30 20:29:31 +01003580 if (attr == &dev_attr_suspend_standby_mode.attr ||
3581 attr == &dev_attr_suspend_mem_mode.attr ||
3582 attr == &dev_attr_suspend_disk_mode.attr)
3583 return ops->set_suspend_mode ? mode : 0;
3584
3585 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003586}
3587
Takashi Iwai39f802d2015-01-30 20:29:31 +01003588static const struct attribute_group regulator_dev_group = {
3589 .attrs = regulator_dev_attrs,
3590 .is_visible = regulator_attr_is_visible,
3591};
3592
3593static const struct attribute_group *regulator_dev_groups[] = {
3594 &regulator_dev_group,
3595 NULL
3596};
3597
3598static void regulator_dev_release(struct device *dev)
3599{
3600 struct regulator_dev *rdev = dev_get_drvdata(dev);
3601 kfree(rdev);
3602}
3603
3604static struct class regulator_class = {
3605 .name = "regulator",
3606 .dev_release = regulator_dev_release,
3607 .dev_groups = regulator_dev_groups,
3608};
3609
Mark Brown1130e5b2010-12-21 23:49:31 +00003610static void rdev_init_debugfs(struct regulator_dev *rdev)
3611{
Guenter Roecka9eaa812014-10-17 08:17:03 -07003612 struct device *parent = rdev->dev.parent;
3613 const char *rname = rdev_get_name(rdev);
3614 char name[NAME_MAX];
3615
3616 /* Avoid duplicate debugfs directory names */
3617 if (parent && rname == rdev->desc->name) {
3618 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
3619 rname);
3620 rname = name;
3621 }
3622
3623 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003624 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003625 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003626 return;
3627 }
3628
3629 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3630 &rdev->use_count);
3631 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3632 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003633 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3634 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003635}
3636
Liam Girdwood414c70c2008-04-30 15:59:04 +01003637/**
3638 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003639 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003640 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003641 *
3642 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003643 * Returns a valid pointer to struct regulator_dev on success
3644 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003645 */
Mark Brown65f26842012-04-03 20:46:53 +01003646struct regulator_dev *
3647regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003648 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003649{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003650 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003651 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003652 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303653 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003654 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003655 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003656 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003657
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003658 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003659 return ERR_PTR(-EINVAL);
3660
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003661 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003662 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003663
Liam Girdwood414c70c2008-04-30 15:59:04 +01003664 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3665 return ERR_PTR(-EINVAL);
3666
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003667 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3668 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003669 return ERR_PTR(-EINVAL);
3670
Mark Brown476c2d82010-12-10 17:28:07 +00003671 /* Only one of each should be implemented */
3672 WARN_ON(regulator_desc->ops->get_voltage &&
3673 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003674 WARN_ON(regulator_desc->ops->set_voltage &&
3675 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003676
3677 /* If we're using selectors we must implement list_voltage. */
3678 if (regulator_desc->ops->get_voltage_sel &&
3679 !regulator_desc->ops->list_voltage) {
3680 return ERR_PTR(-EINVAL);
3681 }
Mark Browne8eef822010-12-12 14:36:17 +00003682 if (regulator_desc->ops->set_voltage_sel &&
3683 !regulator_desc->ops->list_voltage) {
3684 return ERR_PTR(-EINVAL);
3685 }
Mark Brown476c2d82010-12-10 17:28:07 +00003686
Liam Girdwood414c70c2008-04-30 15:59:04 +01003687 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3688 if (rdev == NULL)
3689 return ERR_PTR(-ENOMEM);
3690
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003691 /*
3692 * Duplicate the config so the driver could override it after
3693 * parsing init data.
3694 */
3695 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
3696 if (config == NULL) {
3697 kfree(rdev);
3698 return ERR_PTR(-ENOMEM);
3699 }
3700
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01003701 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01003702 &rdev->dev.of_node);
3703 if (!init_data) {
3704 init_data = config->init_data;
3705 rdev->dev.of_node = of_node_get(config->of_node);
3706 }
3707
Liam Girdwood414c70c2008-04-30 15:59:04 +01003708 mutex_lock(&regulator_list_mutex);
3709
3710 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003711 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003712 rdev->owner = regulator_desc->owner;
3713 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003714 if (config->regmap)
3715 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303716 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003717 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303718 else if (dev->parent)
3719 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003720 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003721 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003722 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003723 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003724
Liam Girdwooda5766f12008-10-10 13:22:20 +01003725 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003726 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003727 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003728 if (ret < 0)
3729 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003730 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003731
Liam Girdwooda5766f12008-10-10 13:22:20 +01003732 /* register with sysfs */
3733 rdev->dev.class = &regulator_class;
3734 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303735 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303736 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003737 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003738 if (ret != 0) {
3739 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003740 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003741 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003742
3743 dev_set_drvdata(&rdev->dev, rdev);
3744
Markus Pargmann76f439d2014-10-08 15:47:05 +02003745 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3746 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003747 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003748 if (ret != 0) {
3749 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3750 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003751 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003752 }
Mark Brown65f73502012-06-27 14:14:38 +01003753 }
3754
Mike Rapoport74f544c2008-11-25 14:53:53 +02003755 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003756 if (init_data)
3757 constraints = &init_data->constraints;
3758
3759 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003760 if (ret < 0)
3761 goto scrub;
3762
Mark Brown9a8f5e02011-11-29 18:11:19 +00003763 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003764 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303765 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003766 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303767
Liam Girdwooda5766f12008-10-10 13:22:20 +01003768 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003769 if (init_data) {
3770 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3771 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003772 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003773 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003774 if (ret < 0) {
3775 dev_err(dev, "Failed to set supply %s\n",
3776 init_data->consumer_supplies[i].supply);
3777 goto unset_supplies;
3778 }
Mark Brown23c2f042011-02-24 17:39:09 +00003779 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003780 }
3781
3782 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003783
3784 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003785out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003786 mutex_unlock(&regulator_list_mutex);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003787 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003788 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003789
Jani Nikulad4033b52010-04-29 10:55:11 +03003790unset_supplies:
3791 unset_regulator_supplies(rdev);
3792
David Brownell4fca9542008-11-11 17:38:53 -08003793scrub:
Kim, Milof19b00d2013-02-18 06:50:39 +00003794 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003795 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003796wash:
David Brownell4fca9542008-11-11 17:38:53 -08003797 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003798 /* device core frees rdev */
3799 rdev = ERR_PTR(ret);
3800 goto out;
3801
David Brownell4fca9542008-11-11 17:38:53 -08003802clean:
3803 kfree(rdev);
3804 rdev = ERR_PTR(ret);
3805 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003806}
3807EXPORT_SYMBOL_GPL(regulator_register);
3808
3809/**
3810 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003811 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003812 *
3813 * Called by regulator drivers to unregister a regulator.
3814 */
3815void regulator_unregister(struct regulator_dev *rdev)
3816{
3817 if (rdev == NULL)
3818 return;
3819
Mark Brown891636e2013-07-08 09:14:45 +01003820 if (rdev->supply) {
3821 while (rdev->use_count--)
3822 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003823 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003824 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003825 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003826 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003827 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003828 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003829 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003830 list_del(&rdev->list);
Mark Brown7cd71c32015-08-07 13:00:35 +01003831 mutex_unlock(&regulator_list_mutex);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003832 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003833 regulator_ena_gpio_free(rdev);
Charles Keepax63c7c9e2014-04-03 15:32:17 +01003834 of_node_put(rdev->dev.of_node);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003835 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003836}
3837EXPORT_SYMBOL_GPL(regulator_unregister);
3838
3839/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003840 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003841 * @state: system suspend state
3842 *
3843 * Configure each regulator with it's suspend operating parameters for state.
3844 * This will usually be called by machine suspend code prior to supending.
3845 */
3846int regulator_suspend_prepare(suspend_state_t state)
3847{
3848 struct regulator_dev *rdev;
3849 int ret = 0;
3850
3851 /* ON is handled by regulator active state */
3852 if (state == PM_SUSPEND_ON)
3853 return -EINVAL;
3854
3855 mutex_lock(&regulator_list_mutex);
3856 list_for_each_entry(rdev, &regulator_list, list) {
3857
3858 mutex_lock(&rdev->mutex);
3859 ret = suspend_prepare(rdev, state);
3860 mutex_unlock(&rdev->mutex);
3861
3862 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003863 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003864 goto out;
3865 }
3866 }
3867out:
3868 mutex_unlock(&regulator_list_mutex);
3869 return ret;
3870}
3871EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3872
3873/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003874 * regulator_suspend_finish - resume regulators from system wide suspend
3875 *
3876 * Turn on regulators that might be turned off by regulator_suspend_prepare
3877 * and that should be turned on according to the regulators properties.
3878 */
3879int regulator_suspend_finish(void)
3880{
3881 struct regulator_dev *rdev;
3882 int ret = 0, error;
3883
3884 mutex_lock(&regulator_list_mutex);
3885 list_for_each_entry(rdev, &regulator_list, list) {
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003886 mutex_lock(&rdev->mutex);
Markus Pargmann30c21972014-02-20 17:36:03 +01003887 if (rdev->use_count > 0 || rdev->constraints->always_on) {
Javier Martinez Canillas0548bf42015-03-02 21:40:39 +01003888 if (!_regulator_is_enabled(rdev)) {
3889 error = _regulator_do_enable(rdev);
3890 if (error)
3891 ret = error;
3892 }
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003893 } else {
Mark Brown87b28412013-11-27 16:13:10 +00003894 if (!have_full_constraints())
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003895 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003896 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003897 goto unlock;
3898
Markus Pargmann66fda752014-02-20 17:36:04 +01003899 error = _regulator_do_disable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003900 if (error)
3901 ret = error;
3902 }
3903unlock:
3904 mutex_unlock(&rdev->mutex);
3905 }
3906 mutex_unlock(&regulator_list_mutex);
3907 return ret;
3908}
3909EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3910
3911/**
Mark Brownca725562009-03-16 19:36:34 +00003912 * regulator_has_full_constraints - the system has fully specified constraints
3913 *
3914 * Calling this function will cause the regulator API to disable all
3915 * regulators which have a zero use count and don't have an always_on
3916 * constraint in a late_initcall.
3917 *
3918 * The intention is that this will become the default behaviour in a
3919 * future kernel release so users are encouraged to use this facility
3920 * now.
3921 */
3922void regulator_has_full_constraints(void)
3923{
3924 has_full_constraints = 1;
3925}
3926EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3927
3928/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003929 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003930 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003931 *
3932 * Get rdev regulator driver private data. This call can be used in the
3933 * regulator driver context.
3934 */
3935void *rdev_get_drvdata(struct regulator_dev *rdev)
3936{
3937 return rdev->reg_data;
3938}
3939EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3940
3941/**
3942 * regulator_get_drvdata - get regulator driver data
3943 * @regulator: regulator
3944 *
3945 * Get regulator driver private data. This call can be used in the consumer
3946 * driver context when non API regulator specific functions need to be called.
3947 */
3948void *regulator_get_drvdata(struct regulator *regulator)
3949{
3950 return regulator->rdev->reg_data;
3951}
3952EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3953
3954/**
3955 * regulator_set_drvdata - set regulator driver data
3956 * @regulator: regulator
3957 * @data: data
3958 */
3959void regulator_set_drvdata(struct regulator *regulator, void *data)
3960{
3961 regulator->rdev->reg_data = data;
3962}
3963EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3964
3965/**
3966 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003967 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003968 */
3969int rdev_get_id(struct regulator_dev *rdev)
3970{
3971 return rdev->desc->id;
3972}
3973EXPORT_SYMBOL_GPL(rdev_get_id);
3974
Liam Girdwooda5766f12008-10-10 13:22:20 +01003975struct device *rdev_get_dev(struct regulator_dev *rdev)
3976{
3977 return &rdev->dev;
3978}
3979EXPORT_SYMBOL_GPL(rdev_get_dev);
3980
3981void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3982{
3983 return reg_init_data->driver_data;
3984}
3985EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3986
Mark Brownba55a972011-08-23 17:39:10 +01003987#ifdef CONFIG_DEBUG_FS
3988static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3989 size_t count, loff_t *ppos)
3990{
3991 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3992 ssize_t len, ret = 0;
3993 struct regulator_map *map;
3994
3995 if (!buf)
3996 return -ENOMEM;
3997
3998 list_for_each_entry(map, &regulator_map_list, list) {
3999 len = snprintf(buf + ret, PAGE_SIZE - ret,
4000 "%s -> %s.%s\n",
4001 rdev_get_name(map->regulator), map->dev_name,
4002 map->supply);
4003 if (len >= 0)
4004 ret += len;
4005 if (ret > PAGE_SIZE) {
4006 ret = PAGE_SIZE;
4007 break;
4008 }
4009 }
4010
4011 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
4012
4013 kfree(buf);
4014
4015 return ret;
4016}
Stephen Boyd24751432012-02-20 22:50:42 -08004017#endif
Mark Brownba55a972011-08-23 17:39:10 +01004018
4019static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08004020#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01004021 .read = supply_map_read_file,
4022 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01004023#endif
Stephen Boyd24751432012-02-20 22:50:42 -08004024};
Mark Brownba55a972011-08-23 17:39:10 +01004025
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004026#ifdef CONFIG_DEBUG_FS
4027static void regulator_summary_show_subtree(struct seq_file *s,
4028 struct regulator_dev *rdev,
4029 int level)
4030{
4031 struct list_head *list = s->private;
4032 struct regulator_dev *child;
4033 struct regulation_constraints *c;
4034 struct regulator *consumer;
4035
4036 if (!rdev)
4037 return;
4038
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004039 seq_printf(s, "%*s%-*s %3d %4d %6d ",
4040 level * 3 + 1, "",
4041 30 - level * 3, rdev_get_name(rdev),
4042 rdev->use_count, rdev->open_count, rdev->bypass_count);
4043
Heiko Stübner23296092015-04-10 13:48:41 +02004044 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
4045 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004046
4047 c = rdev->constraints;
4048 if (c) {
4049 switch (rdev->desc->type) {
4050 case REGULATOR_VOLTAGE:
4051 seq_printf(s, "%5dmV %5dmV ",
4052 c->min_uV / 1000, c->max_uV / 1000);
4053 break;
4054 case REGULATOR_CURRENT:
4055 seq_printf(s, "%5dmA %5dmA ",
4056 c->min_uA / 1000, c->max_uA / 1000);
4057 break;
4058 }
4059 }
4060
4061 seq_puts(s, "\n");
4062
4063 list_for_each_entry(consumer, &rdev->consumer_list, list) {
4064 if (consumer->dev->class == &regulator_class)
4065 continue;
4066
4067 seq_printf(s, "%*s%-*s ",
4068 (level + 1) * 3 + 1, "",
4069 30 - (level + 1) * 3, dev_name(consumer->dev));
4070
4071 switch (rdev->desc->type) {
4072 case REGULATOR_VOLTAGE:
Heiko Stübner23296092015-04-10 13:48:41 +02004073 seq_printf(s, "%37dmV %5dmV",
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004074 consumer->min_uV / 1000,
4075 consumer->max_uV / 1000);
4076 break;
4077 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004078 break;
4079 }
4080
4081 seq_puts(s, "\n");
4082 }
4083
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004084 list_for_each_entry(child, list, list) {
4085 /* handle only non-root regulators supplied by current rdev */
4086 if (!child->supply || child->supply->rdev != rdev)
4087 continue;
4088
4089 regulator_summary_show_subtree(s, child, level + 1);
4090 }
4091}
4092
4093static int regulator_summary_show(struct seq_file *s, void *data)
4094{
4095 struct list_head *list = s->private;
4096 struct regulator_dev *rdev;
4097
Heiko Stübner23296092015-04-10 13:48:41 +02004098 seq_puts(s, " regulator use open bypass voltage current min max\n");
4099 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004100
4101 mutex_lock(&regulator_list_mutex);
4102
4103 list_for_each_entry(rdev, list, list) {
4104 if (rdev->supply)
4105 continue;
4106
4107 regulator_summary_show_subtree(s, rdev, 0);
4108 }
4109
4110 mutex_unlock(&regulator_list_mutex);
4111
4112 return 0;
4113}
4114
4115static int regulator_summary_open(struct inode *inode, struct file *file)
4116{
4117 return single_open(file, regulator_summary_show, inode->i_private);
4118}
4119#endif
4120
4121static const struct file_operations regulator_summary_fops = {
4122#ifdef CONFIG_DEBUG_FS
4123 .open = regulator_summary_open,
4124 .read = seq_read,
4125 .llseek = seq_lseek,
4126 .release = single_release,
4127#endif
4128};
4129
Liam Girdwood414c70c2008-04-30 15:59:04 +01004130static int __init regulator_init(void)
4131{
Mark Brown34abbd62010-02-12 10:18:08 +00004132 int ret;
4133
Mark Brown34abbd62010-02-12 10:18:08 +00004134 ret = class_register(&regulator_class);
4135
Mark Brown1130e5b2010-12-21 23:49:31 +00004136 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004137 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004138 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004139
Mark Brownf4d562c2012-02-20 21:01:04 +00004140 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4141 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004142
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004143 debugfs_create_file("regulator_summary", 0444, debugfs_root,
4144 &regulator_list, &regulator_summary_fops);
4145
Mark Brown34abbd62010-02-12 10:18:08 +00004146 regulator_dummy_init();
4147
4148 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004149}
4150
4151/* init early to allow our consumers to complete system booting */
4152core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004153
4154static int __init regulator_init_complete(void)
4155{
4156 struct regulator_dev *rdev;
Guodong Xu272e2312014-08-13 19:33:38 +08004157 const struct regulator_ops *ops;
Mark Brownca725562009-03-16 19:36:34 +00004158 struct regulation_constraints *c;
4159 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004160
Mark Brown86f5fcf2012-07-06 18:19:13 +01004161 /*
4162 * Since DT doesn't provide an idiomatic mechanism for
4163 * enabling full constraints and since it's much more natural
4164 * with DT to provide them just assume that a DT enabled
4165 * system has full constraints.
4166 */
4167 if (of_have_populated_dt())
4168 has_full_constraints = true;
4169
Mark Brownca725562009-03-16 19:36:34 +00004170 mutex_lock(&regulator_list_mutex);
4171
4172 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004173 * we have permission to change the status for and which are
4174 * not in use or always_on. This is effectively the default
4175 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004176 */
4177 list_for_each_entry(rdev, &regulator_list, list) {
4178 ops = rdev->desc->ops;
4179 c = rdev->constraints;
4180
Markus Pargmann66fda752014-02-20 17:36:04 +01004181 if (c && c->always_on)
Mark Brownca725562009-03-16 19:36:34 +00004182 continue;
4183
Mark Browne9535832014-06-01 19:15:16 +01004184 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
4185 continue;
4186
Mark Brownca725562009-03-16 19:36:34 +00004187 mutex_lock(&rdev->mutex);
4188
4189 if (rdev->use_count)
4190 goto unlock;
4191
4192 /* If we can't read the status assume it's on. */
4193 if (ops->is_enabled)
4194 enabled = ops->is_enabled(rdev);
4195 else
4196 enabled = 1;
4197
4198 if (!enabled)
4199 goto unlock;
4200
Mark Brown87b28412013-11-27 16:13:10 +00004201 if (have_full_constraints()) {
Mark Brownca725562009-03-16 19:36:34 +00004202 /* We log since this may kill the system if it
4203 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08004204 rdev_info(rdev, "disabling\n");
Markus Pargmann66fda752014-02-20 17:36:04 +01004205 ret = _regulator_do_disable(rdev);
Jingoo Han0d25d092014-01-08 10:02:16 +09004206 if (ret != 0)
Joe Perches5da84fd2010-11-30 05:53:48 -08004207 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00004208 } else {
4209 /* The intention is that in future we will
4210 * assume that full constraints are provided
4211 * so warn even if we aren't going to do
4212 * anything here.
4213 */
Joe Perches5da84fd2010-11-30 05:53:48 -08004214 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00004215 }
4216
4217unlock:
4218 mutex_unlock(&rdev->mutex);
4219 }
4220
4221 mutex_unlock(&regulator_list_mutex);
4222
4223 return 0;
4224}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004225late_initcall_sync(regulator_init_complete);