blob: 5f7678292cefdb30d0ea75491e83c55ad699ec27 [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);
Liam Girdwood414c70c2008-04-30 15:59:04 +010054static LIST_HEAD(regulator_map_list);
Kim, Milof19b00d2013-02-18 06:50:39 +000055static LIST_HEAD(regulator_ena_gpio_list);
Charles Keepaxa06ccd92013-10-15 20:14:20 +010056static LIST_HEAD(regulator_supply_alias_list);
Mark Brown21cf8912010-12-21 23:30:07 +000057static bool has_full_constraints;
Liam Girdwood414c70c2008-04-30 15:59:04 +010058
Mark Brown1130e5b2010-12-21 23:49:31 +000059static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000060
Mark Brown8dc53902008-12-31 12:52:40 +000061/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010062 * struct regulator_map
63 *
64 * Used to provide symbolic supply names to devices.
65 */
66struct regulator_map {
67 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010068 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010069 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010070 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010071};
72
Liam Girdwood414c70c2008-04-30 15:59:04 +010073/*
Kim, Milof19b00d2013-02-18 06:50:39 +000074 * struct regulator_enable_gpio
75 *
76 * Management for shared enable GPIO pin
77 */
78struct regulator_enable_gpio {
79 struct list_head list;
Russell King778b28b2014-06-29 17:55:54 +010080 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +000081 u32 enable_count; /* a number of enabled shared GPIO */
82 u32 request_count; /* a number of requested shared GPIO */
83 unsigned int ena_gpio_invert:1;
84};
85
Charles Keepaxa06ccd92013-10-15 20:14:20 +010086/*
87 * struct regulator_supply_alias
88 *
89 * Used to map lookups for a supply onto an alternative device.
90 */
91struct regulator_supply_alias {
92 struct list_head list;
93 struct device *src_dev;
94 const char *src_supply;
95 struct device *alias_dev;
96 const char *alias_supply;
97};
98
Liam Girdwood414c70c2008-04-30 15:59:04 +010099static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +0100100static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100101static int _regulator_get_voltage(struct regulator_dev *rdev);
102static int _regulator_get_current_limit(struct regulator_dev *rdev);
103static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
Heiko Stübner71795692014-08-28 12:36:04 -0700104static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100105 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +0000106static int _regulator_do_set_voltage(struct regulator_dev *rdev,
107 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +0100108static struct regulator *create_regulator(struct regulator_dev *rdev,
109 struct device *dev,
110 const char *supply_name);
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +0200111static void _regulator_put(struct regulator *regulator);
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
WEN Pingbo8a34e972016-04-23 15:11:05 +0800128static bool regulator_ops_is_valid(struct regulator_dev *rdev, int ops)
129{
130 if (!rdev->constraints) {
131 rdev_err(rdev, "no constraints\n");
132 return false;
133 }
134
135 if (rdev->constraints->valid_ops_mask & ops)
136 return true;
137
138 return false;
139}
140
Thierry Reding70a7fb82015-12-02 16:54:50 +0100141static inline struct regulator_dev *rdev_get_supply(struct regulator_dev *rdev)
142{
143 if (rdev && rdev->supply)
144 return rdev->supply->rdev;
145
146 return NULL;
147}
148
Rajendra Nayak69511a42011-11-18 16:47:20 +0530149/**
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200150 * regulator_lock_supply - lock a regulator and its supplies
151 * @rdev: regulator source
152 */
153static void regulator_lock_supply(struct regulator_dev *rdev)
154{
Arnd Bergmannfa731ac2015-11-20 15:24:39 +0100155 int i;
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200156
Thierry Reding70a7fb82015-12-02 16:54:50 +0100157 for (i = 0; rdev; rdev = rdev_get_supply(rdev), i++)
Arnd Bergmannfa731ac2015-11-20 15:24:39 +0100158 mutex_lock_nested(&rdev->mutex, i);
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200159}
160
161/**
162 * regulator_unlock_supply - unlock a regulator and its supplies
163 * @rdev: regulator source
164 */
165static void regulator_unlock_supply(struct regulator_dev *rdev)
166{
167 struct regulator *supply;
168
169 while (1) {
170 mutex_unlock(&rdev->mutex);
171 supply = rdev->supply;
172
173 if (!rdev->supply)
174 return;
175
176 rdev = supply->rdev;
177 }
178}
179
180/**
Rajendra Nayak69511a42011-11-18 16:47:20 +0530181 * of_get_regulator - get a regulator device node based on supply name
182 * @dev: Device pointer for the consumer (of regulator) device
183 * @supply: regulator supply name
184 *
185 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100186 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530187 * returns NULL.
188 */
189static struct device_node *of_get_regulator(struct device *dev, const char *supply)
190{
191 struct device_node *regnode = NULL;
192 char prop_name[32]; /* 32 is max size of property name */
193
194 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
195
196 snprintf(prop_name, 32, "%s-supply", supply);
197 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
198
199 if (!regnode) {
Rob Herring77991672017-07-18 16:43:26 -0500200 dev_dbg(dev, "Looking up %s property in node %pOF failed\n",
201 prop_name, dev->of_node);
Rajendra Nayak69511a42011-11-18 16:47:20 +0530202 return NULL;
203 }
204 return regnode;
205}
206
Liam Girdwood414c70c2008-04-30 15:59:04 +0100207/* Platform voltage constraint check */
208static int regulator_check_voltage(struct regulator_dev *rdev,
209 int *min_uV, int *max_uV)
210{
211 BUG_ON(*min_uV > *max_uV);
212
WEN Pingbo8a34e972016-04-23 15:11:05 +0800213 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700214 rdev_err(rdev, "voltage operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100215 return -EPERM;
216 }
217
218 if (*max_uV > rdev->constraints->max_uV)
219 *max_uV = rdev->constraints->max_uV;
220 if (*min_uV < rdev->constraints->min_uV)
221 *min_uV = rdev->constraints->min_uV;
222
Mark Brown89f425e2011-07-12 11:20:37 +0900223 if (*min_uV > *max_uV) {
224 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100225 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100226 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900227 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100228
229 return 0;
230}
231
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100232/* Make sure we select a voltage that suits the needs of all
233 * regulator consumers
234 */
235static int regulator_check_consumers(struct regulator_dev *rdev,
236 int *min_uV, int *max_uV)
237{
238 struct regulator *regulator;
239
240 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700241 /*
242 * Assume consumers that didn't say anything are OK
243 * with anything in the constraint range.
244 */
245 if (!regulator->min_uV && !regulator->max_uV)
246 continue;
247
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100248 if (*max_uV > regulator->max_uV)
249 *max_uV = regulator->max_uV;
250 if (*min_uV < regulator->min_uV)
251 *min_uV = regulator->min_uV;
252 }
253
Mark Browndd8004a2012-11-28 17:09:27 +0000254 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800255 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
256 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100257 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000258 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100259
260 return 0;
261}
262
Liam Girdwood414c70c2008-04-30 15:59:04 +0100263/* current constraint check */
264static int regulator_check_current_limit(struct regulator_dev *rdev,
265 int *min_uA, int *max_uA)
266{
267 BUG_ON(*min_uA > *max_uA);
268
WEN Pingbo8a34e972016-04-23 15:11:05 +0800269 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_CURRENT)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700270 rdev_err(rdev, "current operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100271 return -EPERM;
272 }
273
274 if (*max_uA > rdev->constraints->max_uA)
275 *max_uA = rdev->constraints->max_uA;
276 if (*min_uA < rdev->constraints->min_uA)
277 *min_uA = rdev->constraints->min_uA;
278
Mark Brown89f425e2011-07-12 11:20:37 +0900279 if (*min_uA > *max_uA) {
280 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100281 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100282 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900283 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100284
285 return 0;
286}
287
288/* operating mode constraint check */
Charles Keepax109c75a2016-11-29 11:50:03 +0000289static int regulator_mode_constrain(struct regulator_dev *rdev,
290 unsigned int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100291{
Mark Brown2c608232011-03-30 06:29:12 +0900292 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800293 case REGULATOR_MODE_FAST:
294 case REGULATOR_MODE_NORMAL:
295 case REGULATOR_MODE_IDLE:
296 case REGULATOR_MODE_STANDBY:
297 break;
298 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900299 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800300 return -EINVAL;
301 }
302
WEN Pingbo8a34e972016-04-23 15:11:05 +0800303 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_MODE)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700304 rdev_err(rdev, "mode operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100305 return -EPERM;
306 }
Mark Brown2c608232011-03-30 06:29:12 +0900307
308 /* The modes are bitmasks, the most power hungry modes having
309 * the lowest values. If the requested mode isn't supported
310 * try higher modes. */
311 while (*mode) {
312 if (rdev->constraints->valid_modes_mask & *mode)
313 return 0;
314 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100315 }
Mark Brown2c608232011-03-30 06:29:12 +0900316
317 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100318}
319
Liam Girdwood414c70c2008-04-30 15:59:04 +0100320static ssize_t regulator_uV_show(struct device *dev,
321 struct device_attribute *attr, char *buf)
322{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100323 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100324 ssize_t ret;
325
326 mutex_lock(&rdev->mutex);
327 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
328 mutex_unlock(&rdev->mutex);
329
330 return ret;
331}
David Brownell7ad68e22008-11-11 17:39:02 -0800332static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100333
334static ssize_t regulator_uA_show(struct device *dev,
335 struct device_attribute *attr, char *buf)
336{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100337 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100338
339 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
340}
David Brownell7ad68e22008-11-11 17:39:02 -0800341static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100342
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700343static ssize_t name_show(struct device *dev, struct device_attribute *attr,
344 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100345{
346 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100347
Mark Brown1083c392009-10-22 16:31:32 +0100348 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100349}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700350static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100351
David Brownell4fca9542008-11-11 17:38:53 -0800352static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100353{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100354 switch (mode) {
355 case REGULATOR_MODE_FAST:
356 return sprintf(buf, "fast\n");
357 case REGULATOR_MODE_NORMAL:
358 return sprintf(buf, "normal\n");
359 case REGULATOR_MODE_IDLE:
360 return sprintf(buf, "idle\n");
361 case REGULATOR_MODE_STANDBY:
362 return sprintf(buf, "standby\n");
363 }
364 return sprintf(buf, "unknown\n");
365}
366
David Brownell4fca9542008-11-11 17:38:53 -0800367static ssize_t regulator_opmode_show(struct device *dev,
368 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100369{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100370 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100371
David Brownell4fca9542008-11-11 17:38:53 -0800372 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
373}
David Brownell7ad68e22008-11-11 17:39:02 -0800374static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800375
376static ssize_t regulator_print_state(char *buf, int state)
377{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100378 if (state > 0)
379 return sprintf(buf, "enabled\n");
380 else if (state == 0)
381 return sprintf(buf, "disabled\n");
382 else
383 return sprintf(buf, "unknown\n");
384}
385
David Brownell4fca9542008-11-11 17:38:53 -0800386static ssize_t regulator_state_show(struct device *dev,
387 struct device_attribute *attr, char *buf)
388{
389 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100390 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800391
Mark Brown93325462009-08-03 18:49:56 +0100392 mutex_lock(&rdev->mutex);
393 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
394 mutex_unlock(&rdev->mutex);
395
396 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800397}
David Brownell7ad68e22008-11-11 17:39:02 -0800398static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800399
David Brownell853116a2009-01-14 23:03:17 -0800400static ssize_t regulator_status_show(struct device *dev,
401 struct device_attribute *attr, char *buf)
402{
403 struct regulator_dev *rdev = dev_get_drvdata(dev);
404 int status;
405 char *label;
406
407 status = rdev->desc->ops->get_status(rdev);
408 if (status < 0)
409 return status;
410
411 switch (status) {
412 case REGULATOR_STATUS_OFF:
413 label = "off";
414 break;
415 case REGULATOR_STATUS_ON:
416 label = "on";
417 break;
418 case REGULATOR_STATUS_ERROR:
419 label = "error";
420 break;
421 case REGULATOR_STATUS_FAST:
422 label = "fast";
423 break;
424 case REGULATOR_STATUS_NORMAL:
425 label = "normal";
426 break;
427 case REGULATOR_STATUS_IDLE:
428 label = "idle";
429 break;
430 case REGULATOR_STATUS_STANDBY:
431 label = "standby";
432 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700433 case REGULATOR_STATUS_BYPASS:
434 label = "bypass";
435 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100436 case REGULATOR_STATUS_UNDEFINED:
437 label = "undefined";
438 break;
David Brownell853116a2009-01-14 23:03:17 -0800439 default:
440 return -ERANGE;
441 }
442
443 return sprintf(buf, "%s\n", label);
444}
445static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
446
Liam Girdwood414c70c2008-04-30 15:59:04 +0100447static ssize_t regulator_min_uA_show(struct device *dev,
448 struct device_attribute *attr, char *buf)
449{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100450 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100451
452 if (!rdev->constraints)
453 return sprintf(buf, "constraint not defined\n");
454
455 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
456}
David Brownell7ad68e22008-11-11 17:39:02 -0800457static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100458
459static ssize_t regulator_max_uA_show(struct device *dev,
460 struct device_attribute *attr, char *buf)
461{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100462 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100463
464 if (!rdev->constraints)
465 return sprintf(buf, "constraint not defined\n");
466
467 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
468}
David Brownell7ad68e22008-11-11 17:39:02 -0800469static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100470
471static ssize_t regulator_min_uV_show(struct device *dev,
472 struct device_attribute *attr, char *buf)
473{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100474 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100475
476 if (!rdev->constraints)
477 return sprintf(buf, "constraint not defined\n");
478
479 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
480}
David Brownell7ad68e22008-11-11 17:39:02 -0800481static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100482
483static ssize_t regulator_max_uV_show(struct device *dev,
484 struct device_attribute *attr, char *buf)
485{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100486 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100487
488 if (!rdev->constraints)
489 return sprintf(buf, "constraint not defined\n");
490
491 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
492}
David Brownell7ad68e22008-11-11 17:39:02 -0800493static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100494
495static ssize_t regulator_total_uA_show(struct device *dev,
496 struct device_attribute *attr, char *buf)
497{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100498 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100499 struct regulator *regulator;
500 int uA = 0;
501
502 mutex_lock(&rdev->mutex);
503 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100504 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100505 mutex_unlock(&rdev->mutex);
506 return sprintf(buf, "%d\n", uA);
507}
David Brownell7ad68e22008-11-11 17:39:02 -0800508static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100509
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700510static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
511 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100512{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100513 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100514 return sprintf(buf, "%d\n", rdev->use_count);
515}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700516static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100517
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700518static ssize_t type_show(struct device *dev, struct device_attribute *attr,
519 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100520{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100521 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100522
523 switch (rdev->desc->type) {
524 case REGULATOR_VOLTAGE:
525 return sprintf(buf, "voltage\n");
526 case REGULATOR_CURRENT:
527 return sprintf(buf, "current\n");
528 }
529 return sprintf(buf, "unknown\n");
530}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700531static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100532
533static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
534 struct device_attribute *attr, char *buf)
535{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100536 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100537
Liam Girdwood414c70c2008-04-30 15:59:04 +0100538 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
539}
David Brownell7ad68e22008-11-11 17:39:02 -0800540static DEVICE_ATTR(suspend_mem_microvolts, 0444,
541 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100542
543static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
544 struct device_attribute *attr, char *buf)
545{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100546 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100547
Liam Girdwood414c70c2008-04-30 15:59:04 +0100548 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
549}
David Brownell7ad68e22008-11-11 17:39:02 -0800550static DEVICE_ATTR(suspend_disk_microvolts, 0444,
551 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100552
553static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
554 struct device_attribute *attr, char *buf)
555{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100556 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100557
Liam Girdwood414c70c2008-04-30 15:59:04 +0100558 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
559}
David Brownell7ad68e22008-11-11 17:39:02 -0800560static DEVICE_ATTR(suspend_standby_microvolts, 0444,
561 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100562
Liam Girdwood414c70c2008-04-30 15:59:04 +0100563static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
564 struct device_attribute *attr, char *buf)
565{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100566 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100567
David Brownell4fca9542008-11-11 17:38:53 -0800568 return regulator_print_opmode(buf,
569 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100570}
David Brownell7ad68e22008-11-11 17:39:02 -0800571static DEVICE_ATTR(suspend_mem_mode, 0444,
572 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100573
574static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
575 struct device_attribute *attr, char *buf)
576{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100577 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100578
David Brownell4fca9542008-11-11 17:38:53 -0800579 return regulator_print_opmode(buf,
580 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100581}
David Brownell7ad68e22008-11-11 17:39:02 -0800582static DEVICE_ATTR(suspend_disk_mode, 0444,
583 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100584
585static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
586 struct device_attribute *attr, char *buf)
587{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100588 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100589
David Brownell4fca9542008-11-11 17:38:53 -0800590 return regulator_print_opmode(buf,
591 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100592}
David Brownell7ad68e22008-11-11 17:39:02 -0800593static DEVICE_ATTR(suspend_standby_mode, 0444,
594 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100595
596static ssize_t regulator_suspend_mem_state_show(struct device *dev,
597 struct device_attribute *attr, char *buf)
598{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100599 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100600
David Brownell4fca9542008-11-11 17:38:53 -0800601 return regulator_print_state(buf,
602 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100603}
David Brownell7ad68e22008-11-11 17:39:02 -0800604static DEVICE_ATTR(suspend_mem_state, 0444,
605 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100606
607static ssize_t regulator_suspend_disk_state_show(struct device *dev,
608 struct device_attribute *attr, char *buf)
609{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100610 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100611
David Brownell4fca9542008-11-11 17:38:53 -0800612 return regulator_print_state(buf,
613 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100614}
David Brownell7ad68e22008-11-11 17:39:02 -0800615static DEVICE_ATTR(suspend_disk_state, 0444,
616 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100617
618static ssize_t regulator_suspend_standby_state_show(struct device *dev,
619 struct device_attribute *attr, char *buf)
620{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100621 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100622
David Brownell4fca9542008-11-11 17:38:53 -0800623 return regulator_print_state(buf,
624 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100625}
David Brownell7ad68e22008-11-11 17:39:02 -0800626static DEVICE_ATTR(suspend_standby_state, 0444,
627 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100628
Mark Brownf59c8f92012-08-31 10:36:37 -0700629static ssize_t regulator_bypass_show(struct device *dev,
630 struct device_attribute *attr, char *buf)
631{
632 struct regulator_dev *rdev = dev_get_drvdata(dev);
633 const char *report;
634 bool bypass;
635 int ret;
636
637 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
638
639 if (ret != 0)
640 report = "unknown";
641 else if (bypass)
642 report = "enabled";
643 else
644 report = "disabled";
645
646 return sprintf(buf, "%s\n", report);
647}
648static DEVICE_ATTR(bypass, 0444,
649 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800650
Liam Girdwood414c70c2008-04-30 15:59:04 +0100651/* Calculate the new optimum regulator operating mode based on the new total
652 * consumer load. All locks held by caller */
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800653static int drms_uA_update(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100654{
655 struct regulator *sibling;
656 int current_uA = 0, output_uV, input_uV, err;
657 unsigned int mode;
658
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +0900659 lockdep_assert_held_once(&rdev->mutex);
660
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800661 /*
662 * first check to see if we can set modes at all, otherwise just
663 * tell the consumer everything is OK.
664 */
WEN Pingbo8a34e972016-04-23 15:11:05 +0800665 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_DRMS))
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800666 return 0;
667
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800668 if (!rdev->desc->ops->get_optimum_mode &&
669 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800670 return 0;
671
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800672 if (!rdev->desc->ops->set_mode &&
673 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800674 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100675
Liam Girdwood414c70c2008-04-30 15:59:04 +0100676 /* calc total requested load */
677 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100678 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100679
Stephen Boyd22a10bc2015-06-11 17:37:03 -0700680 current_uA += rdev->constraints->system_load;
681
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800682 if (rdev->desc->ops->set_load) {
683 /* set the optimum mode for our new total regulator load */
684 err = rdev->desc->ops->set_load(rdev, current_uA);
685 if (err < 0)
686 rdev_err(rdev, "failed to set load %d\n", current_uA);
687 } else {
Joonwoo Park57776612016-09-19 14:46:54 -0700688 /* get output voltage */
689 output_uV = _regulator_get_voltage(rdev);
690 if (output_uV <= 0) {
691 rdev_err(rdev, "invalid output voltage found\n");
692 return -EINVAL;
693 }
694
695 /* get input voltage */
696 input_uV = 0;
697 if (rdev->supply)
698 input_uV = regulator_get_voltage(rdev->supply);
699 if (input_uV <= 0)
700 input_uV = rdev->constraints->input_uV;
701 if (input_uV <= 0) {
702 rdev_err(rdev, "invalid input voltage found\n");
703 return -EINVAL;
704 }
705
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800706 /* now get the optimum mode for our new total regulator load */
707 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
708 output_uV, current_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100709
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800710 /* check the new mode is allowed */
711 err = regulator_mode_constrain(rdev, &mode);
712 if (err < 0) {
713 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
714 current_uA, input_uV, output_uV);
715 return err;
716 }
717
718 err = rdev->desc->ops->set_mode(rdev, mode);
719 if (err < 0)
720 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800721 }
722
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800723 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100724}
725
726static int suspend_set_state(struct regulator_dev *rdev,
727 struct regulator_state *rstate)
728{
729 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100730
731 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800732 * only warn if the driver implements set_suspend_voltage or
733 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100734 */
735 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800736 if (rdev->desc->ops->set_suspend_voltage ||
737 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800738 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100739 return 0;
740 }
741
742 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800743 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100744 return -EINVAL;
745 }
746
Axel Lin8ac0e952012-04-14 09:14:34 +0800747 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100748 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800749 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100750 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800751 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
752 ret = 0;
753
Liam Girdwood414c70c2008-04-30 15:59:04 +0100754 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800755 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100756 return ret;
757 }
758
759 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
760 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
761 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800762 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100763 return ret;
764 }
765 }
766
767 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
768 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
769 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800770 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100771 return ret;
772 }
773 }
774 return ret;
775}
776
777/* locks held by caller */
778static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
779{
780 if (!rdev->constraints)
781 return -EINVAL;
782
783 switch (state) {
784 case PM_SUSPEND_STANDBY:
785 return suspend_set_state(rdev,
786 &rdev->constraints->state_standby);
787 case PM_SUSPEND_MEM:
788 return suspend_set_state(rdev,
789 &rdev->constraints->state_mem);
790 case PM_SUSPEND_MAX:
791 return suspend_set_state(rdev,
792 &rdev->constraints->state_disk);
793 default:
794 return -EINVAL;
795 }
796}
797
798static void print_constraints(struct regulator_dev *rdev)
799{
800 struct regulation_constraints *constraints = rdev->constraints;
Stefan Wahrena7068e32015-06-09 20:09:42 +0000801 char buf[160] = "";
Stefan Wahren5751a992015-06-10 06:13:15 +0000802 size_t len = sizeof(buf) - 1;
Mark Brown8f031b42009-10-22 16:31:31 +0100803 int count = 0;
804 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100805
Mark Brown8f031b42009-10-22 16:31:31 +0100806 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100807 if (constraints->min_uV == constraints->max_uV)
Stefan Wahren5751a992015-06-10 06:13:15 +0000808 count += scnprintf(buf + count, len - count, "%d mV ",
809 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100810 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000811 count += scnprintf(buf + count, len - count,
812 "%d <--> %d mV ",
813 constraints->min_uV / 1000,
814 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100815 }
Mark Brown8f031b42009-10-22 16:31:31 +0100816
817 if (!constraints->min_uV ||
818 constraints->min_uV != constraints->max_uV) {
819 ret = _regulator_get_voltage(rdev);
820 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000821 count += scnprintf(buf + count, len - count,
822 "at %d mV ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100823 }
824
Mark Brownbf5892a2011-05-08 22:13:37 +0100825 if (constraints->uV_offset)
Stefan Wahren5751a992015-06-10 06:13:15 +0000826 count += scnprintf(buf + count, len - count, "%dmV offset ",
827 constraints->uV_offset / 1000);
Mark Brownbf5892a2011-05-08 22:13:37 +0100828
Mark Brown8f031b42009-10-22 16:31:31 +0100829 if (constraints->min_uA && constraints->max_uA) {
830 if (constraints->min_uA == constraints->max_uA)
Stefan Wahren5751a992015-06-10 06:13:15 +0000831 count += scnprintf(buf + count, len - count, "%d mA ",
832 constraints->min_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100833 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000834 count += scnprintf(buf + count, len - count,
835 "%d <--> %d mA ",
836 constraints->min_uA / 1000,
837 constraints->max_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100838 }
839
840 if (!constraints->min_uA ||
841 constraints->min_uA != constraints->max_uA) {
842 ret = _regulator_get_current_limit(rdev);
843 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000844 count += scnprintf(buf + count, len - count,
845 "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100846 }
847
Liam Girdwood414c70c2008-04-30 15:59:04 +0100848 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
Stefan Wahren5751a992015-06-10 06:13:15 +0000849 count += scnprintf(buf + count, len - count, "fast ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100850 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
Stefan Wahren5751a992015-06-10 06:13:15 +0000851 count += scnprintf(buf + count, len - count, "normal ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100852 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
Stefan Wahren5751a992015-06-10 06:13:15 +0000853 count += scnprintf(buf + count, len - count, "idle ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100854 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
Stefan Wahren5751a992015-06-10 06:13:15 +0000855 count += scnprintf(buf + count, len - count, "standby");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100856
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200857 if (!count)
Stefan Wahren5751a992015-06-10 06:13:15 +0000858 scnprintf(buf, len, "no parameters");
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200859
Mark Brown194dbae2014-10-31 19:11:59 +0000860 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000861
862 if ((constraints->min_uV != constraints->max_uV) &&
WEN Pingbo8a34e972016-04-23 15:11:05 +0800863 !regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE))
Mark Brown4a682922012-02-09 13:26:13 +0000864 rdev_warn(rdev,
865 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100866}
867
Mark Browne79055d2009-10-19 15:53:50 +0100868static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100869 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100870{
Guodong Xu272e2312014-08-13 19:33:38 +0800871 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100872 int ret;
873
874 /* do we need to apply the constraint voltage */
875 if (rdev->constraints->apply_uV &&
Mark Brownfa93fd42016-03-21 18:12:52 +0000876 rdev->constraints->min_uV && rdev->constraints->max_uV) {
877 int target_min, target_max;
Alban Bedel064d5cd2014-05-20 12:12:16 +0200878 int current_uV = _regulator_get_voltage(rdev);
879 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500880 rdev_err(rdev,
881 "failed to get the current voltage(%d)\n",
882 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200883 return current_uV;
884 }
Mark Brownfa93fd42016-03-21 18:12:52 +0000885
886 /*
887 * If we're below the minimum voltage move up to the
888 * minimum voltage, if we're above the maximum voltage
889 * then move down to the maximum.
890 */
891 target_min = current_uV;
892 target_max = current_uV;
893
894 if (current_uV < rdev->constraints->min_uV) {
895 target_min = rdev->constraints->min_uV;
896 target_max = rdev->constraints->min_uV;
897 }
898
899 if (current_uV > rdev->constraints->max_uV) {
900 target_min = rdev->constraints->max_uV;
901 target_max = rdev->constraints->max_uV;
902 }
903
904 if (target_min != current_uV || target_max != current_uV) {
Mark Brown45a91e82016-03-29 16:33:42 -0700905 rdev_info(rdev, "Bringing %duV into %d-%duV\n",
906 current_uV, target_min, target_max);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200907 ret = _regulator_do_set_voltage(
Mark Brownfa93fd42016-03-21 18:12:52 +0000908 rdev, target_min, target_max);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200909 if (ret < 0) {
910 rdev_err(rdev,
Mark Brownfa93fd42016-03-21 18:12:52 +0000911 "failed to apply %d-%duV constraint(%d)\n",
912 target_min, target_max, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200913 return ret;
914 }
Mark Brown75790252010-12-12 14:25:50 +0000915 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100916 }
Mark Browne79055d2009-10-19 15:53:50 +0100917
918 /* constrain machine-level voltage specs to fit
919 * the actual range supported by this regulator.
920 */
921 if (ops->list_voltage && rdev->desc->n_voltages) {
922 int count = rdev->desc->n_voltages;
923 int i;
924 int min_uV = INT_MAX;
925 int max_uV = INT_MIN;
926 int cmin = constraints->min_uV;
927 int cmax = constraints->max_uV;
928
929 /* it's safe to autoconfigure fixed-voltage supplies
930 and the constraints are used by list_voltage. */
931 if (count == 1 && !cmin) {
932 cmin = 1;
933 cmax = INT_MAX;
934 constraints->min_uV = cmin;
935 constraints->max_uV = cmax;
936 }
937
938 /* voltage constraints are optional */
939 if ((cmin == 0) && (cmax == 0))
940 return 0;
941
942 /* else require explicit machine-level constraints */
943 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800944 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100945 return -EINVAL;
946 }
947
948 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
949 for (i = 0; i < count; i++) {
950 int value;
951
952 value = ops->list_voltage(rdev, i);
953 if (value <= 0)
954 continue;
955
956 /* maybe adjust [min_uV..max_uV] */
957 if (value >= cmin && value < min_uV)
958 min_uV = value;
959 if (value <= cmax && value > max_uV)
960 max_uV = value;
961 }
962
963 /* final: [min_uV..max_uV] valid iff constraints valid */
964 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000965 rdev_err(rdev,
966 "unsupportable voltage constraints %u-%uuV\n",
967 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100968 return -EINVAL;
969 }
970
971 /* use regulator's subset of machine constraints */
972 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800973 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
974 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100975 constraints->min_uV = min_uV;
976 }
977 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800978 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
979 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100980 constraints->max_uV = max_uV;
981 }
982 }
983
984 return 0;
985}
986
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530987static int machine_constraints_current(struct regulator_dev *rdev,
988 struct regulation_constraints *constraints)
989{
Guodong Xu272e2312014-08-13 19:33:38 +0800990 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530991 int ret;
992
993 if (!constraints->min_uA && !constraints->max_uA)
994 return 0;
995
996 if (constraints->min_uA > constraints->max_uA) {
997 rdev_err(rdev, "Invalid current constraints\n");
998 return -EINVAL;
999 }
1000
1001 if (!ops->set_current_limit || !ops->get_current_limit) {
1002 rdev_warn(rdev, "Operation of current configuration missing\n");
1003 return 0;
1004 }
1005
1006 /* Set regulator current in constraints range */
1007 ret = ops->set_current_limit(rdev, constraints->min_uA,
1008 constraints->max_uA);
1009 if (ret < 0) {
1010 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
1011 return ret;
1012 }
1013
1014 return 0;
1015}
1016
Markus Pargmann30c21972014-02-20 17:36:03 +01001017static int _regulator_do_enable(struct regulator_dev *rdev);
1018
Liam Girdwooda5766f12008-10-10 13:22:20 +01001019/**
1020 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +00001021 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +00001022 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001023 *
1024 * Allows platform initialisation code to define and constrain
1025 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
1026 * Constraints *must* be set by platform code in order for some
1027 * regulator operations to proceed i.e. set_voltage, set_current_limit,
1028 * set_mode.
1029 */
1030static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +00001031 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001032{
1033 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +08001034 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +01001035
Mark Brown9a8f5e02011-11-29 18:11:19 +00001036 if (constraints)
1037 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
1038 GFP_KERNEL);
1039 else
1040 rdev->constraints = kzalloc(sizeof(*constraints),
1041 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +00001042 if (!rdev->constraints)
1043 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001044
Mark Brownf8c12fe2010-11-29 15:55:17 +00001045 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001046 if (ret != 0)
Charles Keepax6333ef42016-01-26 16:38:59 +00001047 return ret;
David Brownell4367cfd2009-02-26 11:48:36 -08001048
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301049 ret = machine_constraints_current(rdev, rdev->constraints);
1050 if (ret != 0)
Charles Keepax6333ef42016-01-26 16:38:59 +00001051 return ret;
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301052
Stephen Boyd36e4f832015-06-11 17:37:06 -07001053 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1054 ret = ops->set_input_current_limit(rdev,
1055 rdev->constraints->ilim_uA);
1056 if (ret < 0) {
1057 rdev_err(rdev, "failed to set input limit\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001058 return ret;
Stephen Boyd36e4f832015-06-11 17:37:06 -07001059 }
1060 }
1061
Liam Girdwooda5766f12008-10-10 13:22:20 +01001062 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001063 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001064 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001065 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001066 rdev_err(rdev, "failed to set suspend state\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001067 return ret;
Mark Browne06f5b42008-09-09 16:21:19 +01001068 }
1069 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001070
Mark Brown9a8f5e02011-11-29 18:11:19 +00001071 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001072 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001073 rdev_err(rdev, "no set_mode operation\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001074 return -EINVAL;
Mark Browna3084662009-02-26 19:24:19 +00001075 }
1076
Mark Brownf8c12fe2010-11-29 15:55:17 +00001077 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001078 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001079 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Charles Keepax6333ef42016-01-26 16:38:59 +00001080 return ret;
Mark Browna3084662009-02-26 19:24:19 +00001081 }
1082 }
1083
Mark Browncacf90f2009-03-02 16:32:46 +00001084 /* If the constraints say the regulator should be on at this point
1085 * and we have control then make sure it is enabled.
1086 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001087 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1088 ret = _regulator_do_enable(rdev);
1089 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001090 rdev_err(rdev, "failed to enable\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001091 return ret;
Mark Browne5fda262008-09-09 16:21:20 +01001092 }
1093 }
1094
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301095 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1096 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301097 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1098 if (ret < 0) {
1099 rdev_err(rdev, "failed to set ramp_delay\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001100 return ret;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301101 }
1102 }
1103
Stephen Boyd23c779b2015-06-11 17:37:04 -07001104 if (rdev->constraints->pull_down && ops->set_pull_down) {
1105 ret = ops->set_pull_down(rdev);
1106 if (ret < 0) {
1107 rdev_err(rdev, "failed to set pull down\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001108 return ret;
Stephen Boyd23c779b2015-06-11 17:37:04 -07001109 }
1110 }
1111
Stephen Boyd57f66b72015-06-11 17:37:05 -07001112 if (rdev->constraints->soft_start && ops->set_soft_start) {
1113 ret = ops->set_soft_start(rdev);
1114 if (ret < 0) {
1115 rdev_err(rdev, "failed to set soft start\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001116 return ret;
Stephen Boyd57f66b72015-06-11 17:37:05 -07001117 }
1118 }
1119
Stephen Boyd3a003ba2015-07-17 14:41:54 -07001120 if (rdev->constraints->over_current_protection
1121 && ops->set_over_current_protection) {
1122 ret = ops->set_over_current_protection(rdev);
1123 if (ret < 0) {
1124 rdev_err(rdev, "failed to set over current protection\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001125 return ret;
Stephen Boyd3a003ba2015-07-17 14:41:54 -07001126 }
1127 }
1128
Laxman Dewangan670666b2016-03-02 16:24:46 +05301129 if (rdev->constraints->active_discharge && ops->set_active_discharge) {
1130 bool ad_state = (rdev->constraints->active_discharge ==
1131 REGULATOR_ACTIVE_DISCHARGE_ENABLE) ? true : false;
1132
1133 ret = ops->set_active_discharge(rdev, ad_state);
1134 if (ret < 0) {
1135 rdev_err(rdev, "failed to set active discharge\n");
1136 return ret;
1137 }
1138 }
1139
Liam Girdwooda5766f12008-10-10 13:22:20 +01001140 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001141 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001142}
1143
1144/**
1145 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001146 * @rdev: regulator name
1147 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001148 *
1149 * Called by platform initialisation code to set the supply regulator for this
1150 * regulator. This ensures that a regulators supply will also be enabled by the
1151 * core if it's child is enabled.
1152 */
1153static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001154 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001155{
1156 int err;
1157
Mark Brown3801b862011-06-09 16:22:22 +01001158 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1159
Javier Martinez Canillase2c09ae2015-07-15 16:10:28 +02001160 if (!try_module_get(supply_rdev->owner))
1161 return -ENODEV;
1162
Mark Brown3801b862011-06-09 16:22:22 +01001163 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001164 if (rdev->supply == NULL) {
1165 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001166 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001167 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301168 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001169
1170 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001171}
1172
1173/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001174 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001175 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001176 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001177 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001178 *
1179 * Allows platform initialisation code to map physical regulator
1180 * sources to symbolic names for supplies for use by devices. Devices
1181 * should use these symbolic names to request regulators, avoiding the
1182 * need to provide board-specific regulator names as platform data.
1183 */
1184static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001185 const char *consumer_dev_name,
1186 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001187{
1188 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001189 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001190
1191 if (supply == NULL)
1192 return -EINVAL;
1193
Mark Brown9ed20992009-07-21 16:00:26 +01001194 if (consumer_dev_name != NULL)
1195 has_dev = 1;
1196 else
1197 has_dev = 0;
1198
David Brownell6001e132008-12-31 12:54:19 +00001199 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001200 if (node->dev_name && consumer_dev_name) {
1201 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1202 continue;
1203 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001204 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001205 }
1206
David Brownell6001e132008-12-31 12:54:19 +00001207 if (strcmp(node->supply, supply) != 0)
1208 continue;
1209
Mark Brown737f3602012-02-02 00:10:51 +00001210 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1211 consumer_dev_name,
1212 dev_name(&node->regulator->dev),
1213 node->regulator->desc->name,
1214 supply,
1215 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001216 return -EBUSY;
1217 }
1218
Mark Brown9ed20992009-07-21 16:00:26 +01001219 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001220 if (node == NULL)
1221 return -ENOMEM;
1222
1223 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001224 node->supply = supply;
1225
Mark Brown9ed20992009-07-21 16:00:26 +01001226 if (has_dev) {
1227 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1228 if (node->dev_name == NULL) {
1229 kfree(node);
1230 return -ENOMEM;
1231 }
Mark Brown40f92442009-06-17 17:56:39 +01001232 }
1233
Liam Girdwooda5766f12008-10-10 13:22:20 +01001234 list_add(&node->list, &regulator_map_list);
1235 return 0;
1236}
1237
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001238static void unset_regulator_supplies(struct regulator_dev *rdev)
1239{
1240 struct regulator_map *node, *n;
1241
1242 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1243 if (rdev == node->regulator) {
1244 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001245 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001246 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001247 }
1248 }
1249}
1250
Richard Fitzgerald2d80a912016-04-21 17:23:21 +01001251#ifdef CONFIG_DEBUG_FS
1252static ssize_t constraint_flags_read_file(struct file *file,
1253 char __user *user_buf,
1254 size_t count, loff_t *ppos)
1255{
1256 const struct regulator *regulator = file->private_data;
1257 const struct regulation_constraints *c = regulator->rdev->constraints;
1258 char *buf;
1259 ssize_t ret;
1260
1261 if (!c)
1262 return 0;
1263
1264 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1265 if (!buf)
1266 return -ENOMEM;
1267
1268 ret = snprintf(buf, PAGE_SIZE,
1269 "always_on: %u\n"
1270 "boot_on: %u\n"
1271 "apply_uV: %u\n"
1272 "ramp_disable: %u\n"
1273 "soft_start: %u\n"
1274 "pull_down: %u\n"
1275 "over_current_protection: %u\n",
1276 c->always_on,
1277 c->boot_on,
1278 c->apply_uV,
1279 c->ramp_disable,
1280 c->soft_start,
1281 c->pull_down,
1282 c->over_current_protection);
1283
1284 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1285 kfree(buf);
1286
1287 return ret;
1288}
1289
1290#endif
1291
1292static const struct file_operations constraint_flags_fops = {
1293#ifdef CONFIG_DEBUG_FS
1294 .open = simple_open,
1295 .read = constraint_flags_read_file,
1296 .llseek = default_llseek,
1297#endif
1298};
1299
Mark Brownf5726ae2011-06-09 16:22:20 +01001300#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001301
1302static struct regulator *create_regulator(struct regulator_dev *rdev,
1303 struct device *dev,
1304 const char *supply_name)
1305{
1306 struct regulator *regulator;
1307 char buf[REG_STR_SIZE];
1308 int err, size;
1309
1310 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1311 if (regulator == NULL)
1312 return NULL;
1313
1314 mutex_lock(&rdev->mutex);
1315 regulator->rdev = rdev;
1316 list_add(&regulator->list, &rdev->consumer_list);
1317
1318 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001319 regulator->dev = dev;
1320
Mark Brown222cc7b2012-06-22 11:39:16 +01001321 /* Add a link to the device sysfs entry */
Bartosz Golaszewskib7cd1b12017-03-06 17:34:48 +01001322 size = snprintf(buf, REG_STR_SIZE, "%s-%s",
1323 dev->kobj.name, supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001324 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001325 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001326
1327 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1328 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001329 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001330
Stephen Boydff268b52015-06-01 18:47:54 -07001331 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
Liam Girdwood414c70c2008-04-30 15:59:04 +01001332 buf);
1333 if (err) {
Stephen Boydff268b52015-06-01 18:47:54 -07001334 rdev_dbg(rdev, "could not add device link %s err %d\n",
Joe Perches5da84fd2010-11-30 05:53:48 -08001335 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001336 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001337 }
Mark Brown5de70512011-06-19 13:33:16 +01001338 } else {
Stephen Boyd0630b612017-03-16 18:07:14 -07001339 regulator->supply_name = kstrdup_const(supply_name, GFP_KERNEL);
Mark Brown5de70512011-06-19 13:33:16 +01001340 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001341 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001342 }
Mark Brown5de70512011-06-19 13:33:16 +01001343
Mark Brown5de70512011-06-19 13:33:16 +01001344 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1345 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001346 if (!regulator->debugfs) {
Stephen Boydad3a9422015-06-01 18:47:55 -07001347 rdev_dbg(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001348 } else {
1349 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1350 &regulator->uA_load);
1351 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1352 &regulator->min_uV);
1353 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1354 &regulator->max_uV);
Richard Fitzgerald2d80a912016-04-21 17:23:21 +01001355 debugfs_create_file("constraint_flags", 0444,
1356 regulator->debugfs, regulator,
1357 &constraint_flags_fops);
Mark Brown5de70512011-06-19 13:33:16 +01001358 }
Mark Brown5de70512011-06-19 13:33:16 +01001359
Mark Brown6492bc12012-04-19 13:19:07 +01001360 /*
1361 * Check now if the regulator is an always on regulator - if
1362 * it is then we don't need to do nearly so much work for
1363 * enable/disable calls.
1364 */
WEN Pingbo8a34e972016-04-23 15:11:05 +08001365 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS) &&
Mark Brown6492bc12012-04-19 13:19:07 +01001366 _regulator_is_enabled(rdev))
1367 regulator->always_on = true;
1368
Liam Girdwood414c70c2008-04-30 15:59:04 +01001369 mutex_unlock(&rdev->mutex);
1370 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001371overflow_err:
1372 list_del(&regulator->list);
1373 kfree(regulator);
1374 mutex_unlock(&rdev->mutex);
1375 return NULL;
1376}
1377
Mark Brown31aae2b2009-12-21 12:21:52 +00001378static int _regulator_get_enable_time(struct regulator_dev *rdev)
1379{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301380 if (rdev->constraints && rdev->constraints->enable_time)
1381 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001382 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001383 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001384 return rdev->desc->ops->enable_time(rdev);
1385}
1386
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001387static struct regulator_supply_alias *regulator_find_supply_alias(
1388 struct device *dev, const char *supply)
1389{
1390 struct regulator_supply_alias *map;
1391
1392 list_for_each_entry(map, &regulator_supply_alias_list, list)
1393 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1394 return map;
1395
1396 return NULL;
1397}
1398
1399static void regulator_supply_alias(struct device **dev, const char **supply)
1400{
1401 struct regulator_supply_alias *map;
1402
1403 map = regulator_find_supply_alias(*dev, *supply);
1404 if (map) {
1405 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1406 *supply, map->alias_supply,
1407 dev_name(map->alias_dev));
1408 *dev = map->alias_dev;
1409 *supply = map->alias_supply;
1410 }
1411}
1412
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001413static int regulator_match(struct device *dev, const void *data)
1414{
1415 struct regulator_dev *r = dev_to_rdev(dev);
1416
1417 return strcmp(rdev_get_name(r), data) == 0;
1418}
1419
1420static struct regulator_dev *regulator_lookup_by_name(const char *name)
1421{
1422 struct device *dev;
1423
1424 dev = class_find_device(&regulator_class, NULL, name, regulator_match);
1425
1426 return dev ? dev_to_rdev(dev) : NULL;
1427}
1428
1429/**
1430 * regulator_dev_lookup - lookup a regulator device.
1431 * @dev: device for regulator "consumer".
1432 * @supply: Supply name or regulator ID.
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001433 *
1434 * If successful, returns a struct regulator_dev that corresponds to the name
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001435 * @supply and with the embedded struct device refcount incremented by one.
1436 * The refcount must be dropped by calling put_device().
1437 * On failure one of the following ERR-PTR-encoded values is returned:
1438 * -ENODEV if lookup fails permanently, -EPROBE_DEFER if lookup could succeed
1439 * in the future.
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001440 */
Rajendra Nayak69511a42011-11-18 16:47:20 +05301441static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001442 const char *supply)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301443{
Charles Keepax06217192017-06-13 16:12:47 +01001444 struct regulator_dev *r = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301445 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001446 struct regulator_map *map;
1447 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301448
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001449 regulator_supply_alias(&dev, &supply);
1450
Rajendra Nayak69511a42011-11-18 16:47:20 +05301451 /* first do a dt based lookup */
1452 if (dev && dev->of_node) {
1453 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001454 if (node) {
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001455 r = of_find_regulator_by_node(node);
1456 if (r)
1457 return r;
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001458
Mark Brown6d191a52012-03-29 14:19:02 +01001459 /*
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001460 * We have a node, but there is no device.
1461 * assume it has not registered yet.
Mark Brown6d191a52012-03-29 14:19:02 +01001462 */
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001463 return ERR_PTR(-EPROBE_DEFER);
Mark Brown6d191a52012-03-29 14:19:02 +01001464 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301465 }
1466
1467 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001468 if (dev)
1469 devname = dev_name(dev);
1470
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001471 mutex_lock(&regulator_list_mutex);
Mark Brown576ca4362012-03-30 12:24:37 +01001472 list_for_each_entry(map, &regulator_map_list, list) {
1473 /* If the mapping has a device set up it must match */
1474 if (map->dev_name &&
1475 (!devname || strcmp(map->dev_name, devname)))
1476 continue;
1477
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001478 if (strcmp(map->supply, supply) == 0 &&
1479 get_device(&map->regulator->dev)) {
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001480 r = map->regulator;
1481 break;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001482 }
Mark Brown576ca4362012-03-30 12:24:37 +01001483 }
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001484 mutex_unlock(&regulator_list_mutex);
Mark Brown576ca4362012-03-30 12:24:37 +01001485
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001486 if (r)
1487 return r;
1488
Charles Keepax06217192017-06-13 16:12:47 +01001489 r = regulator_lookup_by_name(supply);
1490 if (r)
1491 return r;
1492
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001493 return ERR_PTR(-ENODEV);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301494}
1495
Bjorn Andersson6261b062015-03-24 18:56:05 -07001496static int regulator_resolve_supply(struct regulator_dev *rdev)
1497{
1498 struct regulator_dev *r;
1499 struct device *dev = rdev->dev.parent;
1500 int ret;
1501
1502 /* No supply to resovle? */
1503 if (!rdev->supply_name)
1504 return 0;
1505
1506 /* Supply already resolved? */
1507 if (rdev->supply)
1508 return 0;
1509
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001510 r = regulator_dev_lookup(dev, rdev->supply_name);
1511 if (IS_ERR(r)) {
1512 ret = PTR_ERR(r);
1513
Mark Brown06423122015-10-01 10:59:48 +01001514 /* Did the lookup explicitly defer for us? */
1515 if (ret == -EPROBE_DEFER)
1516 return ret;
1517
Mark Brown9f7e25e2015-07-14 11:17:26 +01001518 if (have_full_constraints()) {
1519 r = dummy_regulator_rdev;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001520 get_device(&r->dev);
Mark Brown9f7e25e2015-07-14 11:17:26 +01001521 } else {
1522 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1523 rdev->supply_name, rdev->desc->name);
1524 return -EPROBE_DEFER;
1525 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001526 }
1527
Jon Hunter66d228a2017-01-11 17:44:25 +00001528 /*
1529 * If the supply's parent device is not the same as the
1530 * regulator's parent device, then ensure the parent device
1531 * is bound before we resolve the supply, in case the parent
1532 * device get probe deferred and unregisters the supply.
1533 */
1534 if (r->dev.parent && r->dev.parent != rdev->dev.parent) {
1535 if (!device_is_bound(r->dev.parent)) {
1536 put_device(&r->dev);
1537 return -EPROBE_DEFER;
1538 }
1539 }
1540
Bjorn Andersson6261b062015-03-24 18:56:05 -07001541 /* Recursively resolve the supply of the supply */
1542 ret = regulator_resolve_supply(r);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001543 if (ret < 0) {
1544 put_device(&r->dev);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001545 return ret;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001546 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001547
1548 ret = set_supply(rdev, r);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001549 if (ret < 0) {
1550 put_device(&r->dev);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001551 return ret;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001552 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001553
1554 /* Cascade always-on state to supply */
Javier Martinez Canillas95a293c2016-03-20 23:29:45 -03001555 if (_regulator_is_enabled(rdev)) {
Bjorn Andersson6261b062015-03-24 18:56:05 -07001556 ret = regulator_enable(rdev->supply);
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +02001557 if (ret < 0) {
Sudip Mukherjee9f8df6a2015-09-02 16:14:06 +05301558 _regulator_put(rdev->supply);
Jon Hunter8e5356a2016-04-21 17:11:58 +01001559 rdev->supply = NULL;
Bjorn Andersson6261b062015-03-24 18:56:05 -07001560 return ret;
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +02001561 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001562 }
1563
1564 return 0;
1565}
1566
Mark Brown5ffbd132009-07-21 16:00:23 +01001567/* Internal regulator request function */
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001568struct regulator *_regulator_get(struct device *dev, const char *id,
1569 enum regulator_get_type get_type)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001570{
1571 struct regulator_dev *rdev;
Dmitry Torokhov7d245af2017-02-03 13:56:00 -08001572 struct regulator *regulator;
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001573 const char *devname = dev ? dev_name(dev) : "deviceless";
Mark Brown317b5682014-01-27 17:34:07 +00001574 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001575
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001576 if (get_type >= MAX_GET_TYPE) {
1577 dev_err(dev, "invalid type %d in %s\n", get_type, __func__);
1578 return ERR_PTR(-EINVAL);
1579 }
1580
Liam Girdwood414c70c2008-04-30 15:59:04 +01001581 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001582 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001583 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001584 }
1585
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001586 rdev = regulator_dev_lookup(dev, id);
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001587 if (IS_ERR(rdev)) {
1588 ret = PTR_ERR(rdev);
Mark Brown40f92442009-06-17 17:56:39 +01001589
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001590 /*
1591 * If regulator_dev_lookup() fails with error other
1592 * than -ENODEV our job here is done, we simply return it.
1593 */
1594 if (ret != -ENODEV)
1595 return ERR_PTR(ret);
Mark Brown317b5682014-01-27 17:34:07 +00001596
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001597 if (!have_full_constraints()) {
1598 dev_warn(dev,
1599 "incomplete constraints, dummy supplies not allowed\n");
1600 return ERR_PTR(-ENODEV);
1601 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301602
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001603 switch (get_type) {
1604 case NORMAL_GET:
1605 /*
1606 * Assume that a regulator is physically present and
1607 * enabled, even if it isn't hooked up, and just
1608 * provide a dummy.
1609 */
1610 dev_warn(dev,
1611 "%s supply %s not found, using dummy regulator\n",
1612 devname, id);
1613 rdev = dummy_regulator_rdev;
1614 get_device(&rdev->dev);
1615 break;
Mark Brownef60abb2013-09-23 16:12:52 +01001616
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001617 case EXCLUSIVE_GET:
1618 dev_warn(dev,
1619 "dummy supplies not allowed for exclusive requests\n");
1620 /* fall through */
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001621
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001622 default:
1623 return ERR_PTR(-ENODEV);
1624 }
Mark Brown34abbd62010-02-12 10:18:08 +00001625 }
Mark Brown34abbd62010-02-12 10:18:08 +00001626
Mark Brown5ffbd132009-07-21 16:00:23 +01001627 if (rdev->exclusive) {
1628 regulator = ERR_PTR(-EPERM);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001629 put_device(&rdev->dev);
1630 return regulator;
Mark Brown5ffbd132009-07-21 16:00:23 +01001631 }
1632
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001633 if (get_type == EXCLUSIVE_GET && rdev->open_count) {
Mark Brown5ffbd132009-07-21 16:00:23 +01001634 regulator = ERR_PTR(-EBUSY);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001635 put_device(&rdev->dev);
1636 return regulator;
Mark Brown5ffbd132009-07-21 16:00:23 +01001637 }
1638
Bjorn Andersson6261b062015-03-24 18:56:05 -07001639 ret = regulator_resolve_supply(rdev);
1640 if (ret < 0) {
1641 regulator = ERR_PTR(ret);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001642 put_device(&rdev->dev);
1643 return regulator;
Bjorn Andersson6261b062015-03-24 18:56:05 -07001644 }
1645
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001646 if (!try_module_get(rdev->owner)) {
Dmitry Torokhov7d245af2017-02-03 13:56:00 -08001647 regulator = ERR_PTR(-EPROBE_DEFER);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001648 put_device(&rdev->dev);
1649 return regulator;
1650 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001651
Liam Girdwood414c70c2008-04-30 15:59:04 +01001652 regulator = create_regulator(rdev, dev, id);
1653 if (regulator == NULL) {
1654 regulator = ERR_PTR(-ENOMEM);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001655 put_device(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001656 module_put(rdev->owner);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001657 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001658 }
1659
Mark Brown5ffbd132009-07-21 16:00:23 +01001660 rdev->open_count++;
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001661 if (get_type == EXCLUSIVE_GET) {
Mark Brown5ffbd132009-07-21 16:00:23 +01001662 rdev->exclusive = 1;
1663
1664 ret = _regulator_is_enabled(rdev);
1665 if (ret > 0)
1666 rdev->use_count = 1;
1667 else
1668 rdev->use_count = 0;
1669 }
1670
Liam Girdwood414c70c2008-04-30 15:59:04 +01001671 return regulator;
1672}
Mark Brown5ffbd132009-07-21 16:00:23 +01001673
1674/**
1675 * regulator_get - lookup and obtain a reference to a regulator.
1676 * @dev: device for regulator "consumer"
1677 * @id: Supply name or regulator ID.
1678 *
1679 * Returns a struct regulator corresponding to the regulator producer,
1680 * or IS_ERR() condition containing errno.
1681 *
1682 * Use of supply names configured via regulator_set_device_supply() is
1683 * strongly encouraged. It is recommended that the supply name used
1684 * should match the name used for the supply and/or the relevant
1685 * device pins in the datasheet.
1686 */
1687struct regulator *regulator_get(struct device *dev, const char *id)
1688{
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001689 return _regulator_get(dev, id, NORMAL_GET);
Mark Brown5ffbd132009-07-21 16:00:23 +01001690}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001691EXPORT_SYMBOL_GPL(regulator_get);
1692
Stephen Boyd070b9072012-01-16 19:39:58 -08001693/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001694 * regulator_get_exclusive - obtain exclusive access to a regulator.
1695 * @dev: device for regulator "consumer"
1696 * @id: Supply name or regulator ID.
1697 *
1698 * Returns a struct regulator corresponding to the regulator producer,
1699 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001700 * unable to obtain this regulator while this reference is held and the
1701 * use count for the regulator will be initialised to reflect the current
1702 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001703 *
1704 * This is intended for use by consumers which cannot tolerate shared
1705 * use of the regulator such as those which need to force the
1706 * regulator off for correct operation of the hardware they are
1707 * controlling.
1708 *
1709 * Use of supply names configured via regulator_set_device_supply() is
1710 * strongly encouraged. It is recommended that the supply name used
1711 * should match the name used for the supply and/or the relevant
1712 * device pins in the datasheet.
1713 */
1714struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1715{
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001716 return _regulator_get(dev, id, EXCLUSIVE_GET);
Mark Brown5ffbd132009-07-21 16:00:23 +01001717}
1718EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1719
Mark Brownde1dd9f2013-07-29 21:42:42 +01001720/**
1721 * regulator_get_optional - obtain optional access to a regulator.
1722 * @dev: device for regulator "consumer"
1723 * @id: Supply name or regulator ID.
1724 *
1725 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001726 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001727 *
1728 * This is intended for use by consumers for devices which can have
1729 * some supplies unconnected in normal use, such as some MMC devices.
1730 * It can allow the regulator core to provide stub supplies for other
1731 * supplies requested using normal regulator_get() calls without
1732 * disrupting the operation of drivers that can handle absent
1733 * supplies.
1734 *
1735 * Use of supply names configured via regulator_set_device_supply() is
1736 * strongly encouraged. It is recommended that the supply name used
1737 * should match the name used for the supply and/or the relevant
1738 * device pins in the datasheet.
1739 */
1740struct regulator *regulator_get_optional(struct device *dev, const char *id)
1741{
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001742 return _regulator_get(dev, id, OPTIONAL_GET);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001743}
1744EXPORT_SYMBOL_GPL(regulator_get_optional);
1745
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301746/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001747static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001748{
1749 struct regulator_dev *rdev;
1750
Viresh Kumar93576842015-08-17 12:30:58 +05301751 if (IS_ERR_OR_NULL(regulator))
Liam Girdwood414c70c2008-04-30 15:59:04 +01001752 return;
1753
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09001754 lockdep_assert_held_once(&regulator_list_mutex);
1755
Liam Girdwood414c70c2008-04-30 15:59:04 +01001756 rdev = regulator->rdev;
1757
Mark Brown5de70512011-06-19 13:33:16 +01001758 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001759
Liam Girdwood414c70c2008-04-30 15:59:04 +01001760 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001761 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001762 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301763 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001764 list_del(&regulator->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001765
Mark Brown5ffbd132009-07-21 16:00:23 +01001766 rdev->open_count--;
1767 rdev->exclusive = 0;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001768 put_device(&rdev->dev);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301769 mutex_unlock(&rdev->mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001770
Stephen Boyd0630b612017-03-16 18:07:14 -07001771 kfree_const(regulator->supply_name);
Mark Brown17685142015-08-07 21:19:26 +01001772 kfree(regulator);
1773
Liam Girdwood414c70c2008-04-30 15:59:04 +01001774 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001775}
1776
1777/**
1778 * regulator_put - "free" the regulator source
1779 * @regulator: regulator source
1780 *
1781 * Note: drivers must ensure that all regulator_enable calls made on this
1782 * regulator source are balanced by regulator_disable calls prior to calling
1783 * this function.
1784 */
1785void regulator_put(struct regulator *regulator)
1786{
1787 mutex_lock(&regulator_list_mutex);
1788 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001789 mutex_unlock(&regulator_list_mutex);
1790}
1791EXPORT_SYMBOL_GPL(regulator_put);
1792
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001793/**
1794 * regulator_register_supply_alias - Provide device alias for supply lookup
1795 *
1796 * @dev: device that will be given as the regulator "consumer"
1797 * @id: Supply name or regulator ID
1798 * @alias_dev: device that should be used to lookup the supply
1799 * @alias_id: Supply name or regulator ID that should be used to lookup the
1800 * supply
1801 *
1802 * All lookups for id on dev will instead be conducted for alias_id on
1803 * alias_dev.
1804 */
1805int regulator_register_supply_alias(struct device *dev, const char *id,
1806 struct device *alias_dev,
1807 const char *alias_id)
1808{
1809 struct regulator_supply_alias *map;
1810
1811 map = regulator_find_supply_alias(dev, id);
1812 if (map)
1813 return -EEXIST;
1814
1815 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1816 if (!map)
1817 return -ENOMEM;
1818
1819 map->src_dev = dev;
1820 map->src_supply = id;
1821 map->alias_dev = alias_dev;
1822 map->alias_supply = alias_id;
1823
1824 list_add(&map->list, &regulator_supply_alias_list);
1825
1826 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1827 id, dev_name(dev), alias_id, dev_name(alias_dev));
1828
1829 return 0;
1830}
1831EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1832
1833/**
1834 * regulator_unregister_supply_alias - Remove device alias
1835 *
1836 * @dev: device that will be given as the regulator "consumer"
1837 * @id: Supply name or regulator ID
1838 *
1839 * Remove a lookup alias if one exists for id on dev.
1840 */
1841void regulator_unregister_supply_alias(struct device *dev, const char *id)
1842{
1843 struct regulator_supply_alias *map;
1844
1845 map = regulator_find_supply_alias(dev, id);
1846 if (map) {
1847 list_del(&map->list);
1848 kfree(map);
1849 }
1850}
1851EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1852
1853/**
1854 * regulator_bulk_register_supply_alias - register multiple aliases
1855 *
1856 * @dev: device that will be given as the regulator "consumer"
1857 * @id: List of supply names or regulator IDs
1858 * @alias_dev: device that should be used to lookup the supply
1859 * @alias_id: List of supply names or regulator IDs that should be used to
1860 * lookup the supply
1861 * @num_id: Number of aliases to register
1862 *
1863 * @return 0 on success, an errno on failure.
1864 *
1865 * This helper function allows drivers to register several supply
1866 * aliases in one operation. If any of the aliases cannot be
1867 * registered any aliases that were registered will be removed
1868 * before returning to the caller.
1869 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001870int regulator_bulk_register_supply_alias(struct device *dev,
1871 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001872 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001873 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001874 int num_id)
1875{
1876 int i;
1877 int ret;
1878
1879 for (i = 0; i < num_id; ++i) {
1880 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1881 alias_id[i]);
1882 if (ret < 0)
1883 goto err;
1884 }
1885
1886 return 0;
1887
1888err:
1889 dev_err(dev,
1890 "Failed to create supply alias %s,%s -> %s,%s\n",
1891 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1892
1893 while (--i >= 0)
1894 regulator_unregister_supply_alias(dev, id[i]);
1895
1896 return ret;
1897}
1898EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1899
1900/**
1901 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1902 *
1903 * @dev: device that will be given as the regulator "consumer"
1904 * @id: List of supply names or regulator IDs
1905 * @num_id: Number of aliases to unregister
1906 *
1907 * This helper function allows drivers to unregister several supply
1908 * aliases in one operation.
1909 */
1910void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001911 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001912 int num_id)
1913{
1914 int i;
1915
1916 for (i = 0; i < num_id; ++i)
1917 regulator_unregister_supply_alias(dev, id[i]);
1918}
1919EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1920
1921
Kim, Milof19b00d2013-02-18 06:50:39 +00001922/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1923static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1924 const struct regulator_config *config)
1925{
1926 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001927 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001928 int ret;
1929
Russell King778b28b2014-06-29 17:55:54 +01001930 gpiod = gpio_to_desc(config->ena_gpio);
1931
Kim, Milof19b00d2013-02-18 06:50:39 +00001932 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001933 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001934 rdev_dbg(rdev, "GPIO %d is already used\n",
1935 config->ena_gpio);
1936 goto update_ena_gpio_to_rdev;
1937 }
1938 }
1939
1940 ret = gpio_request_one(config->ena_gpio,
1941 GPIOF_DIR_OUT | config->ena_gpio_flags,
1942 rdev_get_name(rdev));
1943 if (ret)
1944 return ret;
1945
1946 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1947 if (pin == NULL) {
1948 gpio_free(config->ena_gpio);
1949 return -ENOMEM;
1950 }
1951
Russell King778b28b2014-06-29 17:55:54 +01001952 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001953 pin->ena_gpio_invert = config->ena_gpio_invert;
1954 list_add(&pin->list, &regulator_ena_gpio_list);
1955
1956update_ena_gpio_to_rdev:
1957 pin->request_count++;
1958 rdev->ena_pin = pin;
1959 return 0;
1960}
1961
1962static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1963{
1964 struct regulator_enable_gpio *pin, *n;
1965
1966 if (!rdev->ena_pin)
1967 return;
1968
1969 /* Free the GPIO only in case of no use */
1970 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001971 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001972 if (pin->request_count <= 1) {
1973 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001974 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001975 list_del(&pin->list);
1976 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001977 rdev->ena_pin = NULL;
1978 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001979 } else {
1980 pin->request_count--;
1981 }
1982 }
1983 }
1984}
1985
Kim, Milo967cfb12013-02-18 06:50:48 +00001986/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001987 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1988 * @rdev: regulator_dev structure
1989 * @enable: enable GPIO at initial use?
1990 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001991 * GPIO is enabled in case of initial use. (enable_count is 0)
1992 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1993 */
1994static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1995{
1996 struct regulator_enable_gpio *pin = rdev->ena_pin;
1997
1998 if (!pin)
1999 return -EINVAL;
2000
2001 if (enable) {
2002 /* Enable GPIO at initial use */
2003 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01002004 gpiod_set_value_cansleep(pin->gpiod,
2005 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00002006
2007 pin->enable_count++;
2008 } else {
2009 if (pin->enable_count > 1) {
2010 pin->enable_count--;
2011 return 0;
2012 }
2013
2014 /* Disable GPIO if not used */
2015 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01002016 gpiod_set_value_cansleep(pin->gpiod,
2017 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00002018 pin->enable_count = 0;
2019 }
2020 }
2021
2022 return 0;
2023}
2024
Guodong Xu79fd1142014-08-13 19:33:39 +08002025/**
2026 * _regulator_enable_delay - a delay helper function
2027 * @delay: time to delay in microseconds
2028 *
2029 * Delay for the requested amount of time as per the guidelines in:
2030 *
2031 * Documentation/timers/timers-howto.txt
2032 *
2033 * The assumption here is that regulators will never be enabled in
2034 * atomic context and therefore sleeping functions can be used.
2035 */
2036static void _regulator_enable_delay(unsigned int delay)
2037{
2038 unsigned int ms = delay / 1000;
2039 unsigned int us = delay % 1000;
2040
2041 if (ms > 0) {
2042 /*
2043 * For small enough values, handle super-millisecond
2044 * delays in the usleep_range() call below.
2045 */
2046 if (ms < 20)
2047 us += ms * 1000;
2048 else
2049 msleep(ms);
2050 }
2051
2052 /*
2053 * Give the scheduler some room to coalesce with any other
2054 * wakeup sources. For delays shorter than 10 us, don't even
2055 * bother setting up high-resolution timers and just busy-
2056 * loop.
2057 */
2058 if (us >= 10)
2059 usleep_range(us, us + 100);
2060 else
2061 udelay(us);
2062}
2063
Mark Brown5c5659d2012-06-27 13:21:26 +01002064static int _regulator_do_enable(struct regulator_dev *rdev)
2065{
2066 int ret, delay;
2067
2068 /* Query before enabling in case configuration dependent. */
2069 ret = _regulator_get_enable_time(rdev);
2070 if (ret >= 0) {
2071 delay = ret;
2072 } else {
2073 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
2074 delay = 0;
2075 }
2076
2077 trace_regulator_enable(rdev_get_name(rdev));
2078
Guodong Xu871f5652014-08-13 19:33:40 +08002079 if (rdev->desc->off_on_delay) {
2080 /* if needed, keep a distance of off_on_delay from last time
2081 * this regulator was disabled.
2082 */
2083 unsigned long start_jiffy = jiffies;
2084 unsigned long intended, max_delay, remaining;
2085
2086 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
2087 intended = rdev->last_off_jiffy + max_delay;
2088
2089 if (time_before(start_jiffy, intended)) {
2090 /* calc remaining jiffies to deal with one-time
2091 * timer wrapping.
2092 * in case of multiple timer wrapping, either it can be
2093 * detected by out-of-range remaining, or it cannot be
2094 * detected and we gets a panelty of
2095 * _regulator_enable_delay().
2096 */
2097 remaining = intended - start_jiffy;
2098 if (remaining <= max_delay)
2099 _regulator_enable_delay(
2100 jiffies_to_usecs(remaining));
2101 }
2102 }
2103
Kim, Milo967cfb12013-02-18 06:50:48 +00002104 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002105 if (!rdev->ena_gpio_state) {
2106 ret = regulator_ena_gpio_ctrl(rdev, true);
2107 if (ret < 0)
2108 return ret;
2109 rdev->ena_gpio_state = 1;
2110 }
Mark Brown65f73502012-06-27 14:14:38 +01002111 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01002112 ret = rdev->desc->ops->enable(rdev);
2113 if (ret < 0)
2114 return ret;
2115 } else {
2116 return -EINVAL;
2117 }
2118
2119 /* Allow the regulator to ramp; it would be useful to extend
2120 * this for bulk operations so that the regulators can ramp
2121 * together. */
2122 trace_regulator_enable_delay(rdev_get_name(rdev));
2123
Guodong Xu79fd1142014-08-13 19:33:39 +08002124 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01002125
2126 trace_regulator_enable_complete(rdev_get_name(rdev));
2127
2128 return 0;
2129}
2130
Liam Girdwood414c70c2008-04-30 15:59:04 +01002131/* locks held by regulator_enable() */
2132static int _regulator_enable(struct regulator_dev *rdev)
2133{
Mark Brown5c5659d2012-06-27 13:21:26 +01002134 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002135
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002136 lockdep_assert_held_once(&rdev->mutex);
2137
Liam Girdwood414c70c2008-04-30 15:59:04 +01002138 /* check voltage and requested load before enabling */
WEN Pingbo8a34e972016-04-23 15:11:05 +08002139 if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_DRMS))
Mark Brown9a2372f2009-08-03 18:49:57 +01002140 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002141
Mark Brown9a2372f2009-08-03 18:49:57 +01002142 if (rdev->use_count == 0) {
2143 /* The regulator may on if it's not switchable or left on */
2144 ret = _regulator_is_enabled(rdev);
2145 if (ret == -EINVAL || ret == 0) {
WEN Pingbo8a34e972016-04-23 15:11:05 +08002146 if (!regulator_ops_is_valid(rdev,
2147 REGULATOR_CHANGE_STATUS))
Mark Brown9a2372f2009-08-03 18:49:57 +01002148 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002149
Mark Brown5c5659d2012-06-27 13:21:26 +01002150 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00002151 if (ret < 0)
2152 return ret;
2153
Harald Geyer264b88c2017-02-23 17:06:52 +00002154 _notifier_call_chain(rdev, REGULATOR_EVENT_ENABLE,
2155 NULL);
Linus Walleija7433cf2009-08-26 12:54:04 +02002156 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002157 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002158 return ret;
2159 }
Linus Walleija7433cf2009-08-26 12:54:04 +02002160 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002161 }
2162
Mark Brown9a2372f2009-08-03 18:49:57 +01002163 rdev->use_count++;
2164
2165 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002166}
2167
2168/**
2169 * regulator_enable - enable regulator output
2170 * @regulator: regulator source
2171 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002172 * Request that the regulator be enabled with the regulator output at
2173 * the predefined voltage or current value. Calls to regulator_enable()
2174 * must be balanced with calls to regulator_disable().
2175 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002176 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00002177 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002178 */
2179int regulator_enable(struct regulator *regulator)
2180{
David Brownell412aec62008-11-16 11:44:46 -08002181 struct regulator_dev *rdev = regulator->rdev;
2182 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002183
Mark Brown6492bc12012-04-19 13:19:07 +01002184 if (regulator->always_on)
2185 return 0;
2186
Mark Brown3801b862011-06-09 16:22:22 +01002187 if (rdev->supply) {
2188 ret = regulator_enable(rdev->supply);
2189 if (ret != 0)
2190 return ret;
2191 }
2192
David Brownell412aec62008-11-16 11:44:46 -08002193 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08002194 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002195 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002196
Heiko Stübnerd1685e42011-10-14 18:00:29 +02002197 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002198 regulator_disable(rdev->supply);
2199
Liam Girdwood414c70c2008-04-30 15:59:04 +01002200 return ret;
2201}
2202EXPORT_SYMBOL_GPL(regulator_enable);
2203
Mark Brown5c5659d2012-06-27 13:21:26 +01002204static int _regulator_do_disable(struct regulator_dev *rdev)
2205{
2206 int ret;
2207
2208 trace_regulator_disable(rdev_get_name(rdev));
2209
Kim, Milo967cfb12013-02-18 06:50:48 +00002210 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002211 if (rdev->ena_gpio_state) {
2212 ret = regulator_ena_gpio_ctrl(rdev, false);
2213 if (ret < 0)
2214 return ret;
2215 rdev->ena_gpio_state = 0;
2216 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002217
2218 } else if (rdev->desc->ops->disable) {
2219 ret = rdev->desc->ops->disable(rdev);
2220 if (ret != 0)
2221 return ret;
2222 }
2223
Guodong Xu871f5652014-08-13 19:33:40 +08002224 /* cares about last_off_jiffy only if off_on_delay is required by
2225 * device.
2226 */
2227 if (rdev->desc->off_on_delay)
2228 rdev->last_off_jiffy = jiffies;
2229
Mark Brown5c5659d2012-06-27 13:21:26 +01002230 trace_regulator_disable_complete(rdev_get_name(rdev));
2231
Mark Brown5c5659d2012-06-27 13:21:26 +01002232 return 0;
2233}
2234
Liam Girdwood414c70c2008-04-30 15:59:04 +01002235/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002236static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002237{
2238 int ret = 0;
2239
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002240 lockdep_assert_held_once(&rdev->mutex);
2241
David Brownellcd94b502009-03-11 16:43:34 -08002242 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002243 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002244 return -EIO;
2245
Liam Girdwood414c70c2008-04-30 15:59:04 +01002246 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002247 if (rdev->use_count == 1 &&
2248 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002249
2250 /* we are last user */
WEN Pingbo8a34e972016-04-23 15:11:05 +08002251 if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002252 ret = _notifier_call_chain(rdev,
2253 REGULATOR_EVENT_PRE_DISABLE,
2254 NULL);
2255 if (ret & NOTIFY_STOP_MASK)
2256 return -EINVAL;
2257
Mark Brown5c5659d2012-06-27 13:21:26 +01002258 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002259 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002260 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002261 _notifier_call_chain(rdev,
2262 REGULATOR_EVENT_ABORT_DISABLE,
2263 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002264 return ret;
2265 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002266 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2267 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002268 }
2269
Liam Girdwood414c70c2008-04-30 15:59:04 +01002270 rdev->use_count = 0;
2271 } else if (rdev->use_count > 1) {
WEN Pingbo8a34e972016-04-23 15:11:05 +08002272 if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_DRMS))
Liam Girdwood414c70c2008-04-30 15:59:04 +01002273 drms_uA_update(rdev);
2274
2275 rdev->use_count--;
2276 }
Mark Brown3801b862011-06-09 16:22:22 +01002277
Liam Girdwood414c70c2008-04-30 15:59:04 +01002278 return ret;
2279}
2280
2281/**
2282 * regulator_disable - disable regulator output
2283 * @regulator: regulator source
2284 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002285 * Disable the regulator output voltage or current. Calls to
2286 * regulator_enable() must be balanced with calls to
2287 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002288 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002289 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002290 * devices have it enabled, the regulator device supports disabling and
2291 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002292 */
2293int regulator_disable(struct regulator *regulator)
2294{
David Brownell412aec62008-11-16 11:44:46 -08002295 struct regulator_dev *rdev = regulator->rdev;
2296 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002297
Mark Brown6492bc12012-04-19 13:19:07 +01002298 if (regulator->always_on)
2299 return 0;
2300
David Brownell412aec62008-11-16 11:44:46 -08002301 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002302 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002303 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002304
Mark Brown3801b862011-06-09 16:22:22 +01002305 if (ret == 0 && rdev->supply)
2306 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002307
Liam Girdwood414c70c2008-04-30 15:59:04 +01002308 return ret;
2309}
2310EXPORT_SYMBOL_GPL(regulator_disable);
2311
2312/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002313static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002314{
2315 int ret = 0;
2316
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002317 lockdep_assert_held_once(&rdev->mutex);
2318
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002319 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2320 REGULATOR_EVENT_PRE_DISABLE, NULL);
2321 if (ret & NOTIFY_STOP_MASK)
2322 return -EINVAL;
2323
Markus Pargmann66fda752014-02-20 17:36:04 +01002324 ret = _regulator_do_disable(rdev);
2325 if (ret < 0) {
2326 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002327 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2328 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002329 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002330 }
2331
Markus Pargmann66fda752014-02-20 17:36:04 +01002332 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2333 REGULATOR_EVENT_DISABLE, NULL);
2334
2335 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002336}
2337
2338/**
2339 * regulator_force_disable - force disable regulator output
2340 * @regulator: regulator source
2341 *
2342 * Forcibly disable the regulator output voltage or current.
2343 * NOTE: this *will* disable the regulator output even if other consumer
2344 * devices have it enabled. This should be used for situations when device
2345 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2346 */
2347int regulator_force_disable(struct regulator *regulator)
2348{
Mark Brown82d15832011-05-09 11:41:02 +02002349 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002350 int ret;
2351
Mark Brown82d15832011-05-09 11:41:02 +02002352 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002353 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002354 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002355 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002356
Mark Brown3801b862011-06-09 16:22:22 +01002357 if (rdev->supply)
2358 while (rdev->open_count--)
2359 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002360
Liam Girdwood414c70c2008-04-30 15:59:04 +01002361 return ret;
2362}
2363EXPORT_SYMBOL_GPL(regulator_force_disable);
2364
Mark Brownda07ecd2011-09-11 09:53:50 +01002365static void regulator_disable_work(struct work_struct *work)
2366{
2367 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2368 disable_work.work);
2369 int count, i, ret;
2370
2371 mutex_lock(&rdev->mutex);
2372
2373 BUG_ON(!rdev->deferred_disables);
2374
2375 count = rdev->deferred_disables;
2376 rdev->deferred_disables = 0;
2377
Tirupathi Reddyc9ccaa02017-07-12 17:08:13 +05302378 /*
2379 * Workqueue functions queue the new work instance while the previous
2380 * work instance is being processed. Cancel the queued work instance
2381 * as the work instance under processing does the job of the queued
2382 * work instance.
2383 */
2384 cancel_delayed_work(&rdev->disable_work);
2385
Mark Brownda07ecd2011-09-11 09:53:50 +01002386 for (i = 0; i < count; i++) {
2387 ret = _regulator_disable(rdev);
2388 if (ret != 0)
2389 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2390 }
2391
2392 mutex_unlock(&rdev->mutex);
2393
2394 if (rdev->supply) {
2395 for (i = 0; i < count; i++) {
2396 ret = regulator_disable(rdev->supply);
2397 if (ret != 0) {
2398 rdev_err(rdev,
2399 "Supply disable failed: %d\n", ret);
2400 }
2401 }
2402 }
2403}
2404
2405/**
2406 * regulator_disable_deferred - disable regulator output with delay
2407 * @regulator: regulator source
2408 * @ms: miliseconds until the regulator is disabled
2409 *
2410 * Execute regulator_disable() on the regulator after a delay. This
2411 * is intended for use with devices that require some time to quiesce.
2412 *
2413 * NOTE: this will only disable the regulator output if no other consumer
2414 * devices have it enabled, the regulator device supports disabling and
2415 * machine constraints permit this operation.
2416 */
2417int regulator_disable_deferred(struct regulator *regulator, int ms)
2418{
2419 struct regulator_dev *rdev = regulator->rdev;
2420
Mark Brown6492bc12012-04-19 13:19:07 +01002421 if (regulator->always_on)
2422 return 0;
2423
Mark Brown2b5a24a2012-09-07 11:00:53 +08002424 if (!ms)
2425 return regulator_disable(regulator);
2426
Mark Brownda07ecd2011-09-11 09:53:50 +01002427 mutex_lock(&rdev->mutex);
2428 rdev->deferred_disables++;
Tirupathi Reddyc9ccaa02017-07-12 17:08:13 +05302429 mod_delayed_work(system_power_efficient_wq, &rdev->disable_work,
2430 msecs_to_jiffies(ms));
Mark Brownda07ecd2011-09-11 09:53:50 +01002431 mutex_unlock(&rdev->mutex);
2432
Dan Carpenter70dc6da2016-01-07 13:03:08 +03002433 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002434}
2435EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2436
Liam Girdwood414c70c2008-04-30 15:59:04 +01002437static int _regulator_is_enabled(struct regulator_dev *rdev)
2438{
Mark Brown65f73502012-06-27 14:14:38 +01002439 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002440 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002441 return rdev->ena_gpio_state;
2442
Mark Brown9a7f6a42010-02-11 17:22:45 +00002443 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002444 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002445 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002446
Mark Brown93325462009-08-03 18:49:56 +01002447 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002448}
2449
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002450static int _regulator_list_voltage(struct regulator *regulator,
2451 unsigned selector, int lock)
2452{
2453 struct regulator_dev *rdev = regulator->rdev;
2454 const struct regulator_ops *ops = rdev->desc->ops;
2455 int ret;
2456
2457 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2458 return rdev->desc->fixed_uV;
2459
2460 if (ops->list_voltage) {
2461 if (selector >= rdev->desc->n_voltages)
2462 return -EINVAL;
2463 if (lock)
2464 mutex_lock(&rdev->mutex);
2465 ret = ops->list_voltage(rdev, selector);
2466 if (lock)
2467 mutex_unlock(&rdev->mutex);
Matthias Kaehlckefd086042017-03-27 16:54:12 -07002468 } else if (rdev->is_switch && rdev->supply) {
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002469 ret = _regulator_list_voltage(rdev->supply, selector, lock);
2470 } else {
2471 return -EINVAL;
2472 }
2473
2474 if (ret > 0) {
2475 if (ret < rdev->constraints->min_uV)
2476 ret = 0;
2477 else if (ret > rdev->constraints->max_uV)
2478 ret = 0;
2479 }
2480
2481 return ret;
2482}
2483
Liam Girdwood414c70c2008-04-30 15:59:04 +01002484/**
2485 * regulator_is_enabled - is the regulator output enabled
2486 * @regulator: regulator source
2487 *
David Brownell412aec62008-11-16 11:44:46 -08002488 * Returns positive if the regulator driver backing the source/client
2489 * has requested that the device be enabled, zero if it hasn't, else a
2490 * negative errno code.
2491 *
2492 * Note that the device backing this regulator handle can have multiple
2493 * users, so it might be enabled even if regulator_enable() was never
2494 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002495 */
2496int regulator_is_enabled(struct regulator *regulator)
2497{
Mark Brown93325462009-08-03 18:49:56 +01002498 int ret;
2499
Mark Brown6492bc12012-04-19 13:19:07 +01002500 if (regulator->always_on)
2501 return 1;
2502
Mark Brown93325462009-08-03 18:49:56 +01002503 mutex_lock(&regulator->rdev->mutex);
2504 ret = _regulator_is_enabled(regulator->rdev);
2505 mutex_unlock(&regulator->rdev->mutex);
2506
2507 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002508}
2509EXPORT_SYMBOL_GPL(regulator_is_enabled);
2510
2511/**
David Brownell4367cfd2009-02-26 11:48:36 -08002512 * regulator_count_voltages - count regulator_list_voltage() selectors
2513 * @regulator: regulator source
2514 *
2515 * Returns number of selectors, or negative errno. Selectors are
2516 * numbered starting at zero, and typically correspond to bitfields
2517 * in hardware registers.
2518 */
2519int regulator_count_voltages(struct regulator *regulator)
2520{
2521 struct regulator_dev *rdev = regulator->rdev;
2522
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002523 if (rdev->desc->n_voltages)
2524 return rdev->desc->n_voltages;
2525
Matthias Kaehlckefd086042017-03-27 16:54:12 -07002526 if (!rdev->is_switch || !rdev->supply)
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002527 return -EINVAL;
2528
2529 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002530}
2531EXPORT_SYMBOL_GPL(regulator_count_voltages);
2532
2533/**
2534 * regulator_list_voltage - enumerate supported voltages
2535 * @regulator: regulator source
2536 * @selector: identify voltage to list
2537 * Context: can sleep
2538 *
2539 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002540 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002541 * negative errno.
2542 */
2543int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2544{
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002545 return _regulator_list_voltage(regulator, selector, 1);
David Brownell4367cfd2009-02-26 11:48:36 -08002546}
2547EXPORT_SYMBOL_GPL(regulator_list_voltage);
2548
2549/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002550 * regulator_get_regmap - get the regulator's register map
2551 * @regulator: regulator source
2552 *
2553 * Returns the register map for the given regulator, or an ERR_PTR value
2554 * if the regulator doesn't use regmap.
2555 */
2556struct regmap *regulator_get_regmap(struct regulator *regulator)
2557{
2558 struct regmap *map = regulator->rdev->regmap;
2559
2560 return map ? map : ERR_PTR(-EOPNOTSUPP);
2561}
2562
2563/**
2564 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2565 * @regulator: regulator source
2566 * @vsel_reg: voltage selector register, output parameter
2567 * @vsel_mask: mask for voltage selector bitfield, output parameter
2568 *
2569 * Returns the hardware register offset and bitmask used for setting the
2570 * regulator voltage. This might be useful when configuring voltage-scaling
2571 * hardware or firmware that can make I2C requests behind the kernel's back,
2572 * for example.
2573 *
2574 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2575 * and 0 is returned, otherwise a negative errno is returned.
2576 */
2577int regulator_get_hardware_vsel_register(struct regulator *regulator,
2578 unsigned *vsel_reg,
2579 unsigned *vsel_mask)
2580{
Guodong Xu39f54602014-08-19 18:07:41 +08002581 struct regulator_dev *rdev = regulator->rdev;
2582 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002583
2584 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2585 return -EOPNOTSUPP;
2586
Colin Ian King0d5c8632017-12-07 13:30:09 +00002587 *vsel_reg = rdev->desc->vsel_reg;
2588 *vsel_mask = rdev->desc->vsel_mask;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002589
2590 return 0;
2591}
2592EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2593
2594/**
2595 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2596 * @regulator: regulator source
2597 * @selector: identify voltage to list
2598 *
2599 * Converts the selector to a hardware-specific voltage selector that can be
2600 * directly written to the regulator registers. The address of the voltage
2601 * register can be determined by calling @regulator_get_hardware_vsel_register.
2602 *
2603 * On error a negative errno is returned.
2604 */
2605int regulator_list_hardware_vsel(struct regulator *regulator,
2606 unsigned selector)
2607{
Guodong Xu39f54602014-08-19 18:07:41 +08002608 struct regulator_dev *rdev = regulator->rdev;
2609 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002610
2611 if (selector >= rdev->desc->n_voltages)
2612 return -EINVAL;
2613 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2614 return -EOPNOTSUPP;
2615
2616 return selector;
2617}
2618EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2619
2620/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002621 * regulator_get_linear_step - return the voltage step size between VSEL values
2622 * @regulator: regulator source
2623 *
2624 * Returns the voltage step size between VSEL values for linear
2625 * regulators, or return 0 if the regulator isn't a linear regulator.
2626 */
2627unsigned int regulator_get_linear_step(struct regulator *regulator)
2628{
2629 struct regulator_dev *rdev = regulator->rdev;
2630
2631 return rdev->desc->uV_step;
2632}
2633EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2634
2635/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002636 * regulator_is_supported_voltage - check if a voltage range can be supported
2637 *
2638 * @regulator: Regulator to check.
2639 * @min_uV: Minimum required voltage in uV.
2640 * @max_uV: Maximum required voltage in uV.
2641 *
2642 * Returns a boolean or a negative error code.
2643 */
2644int regulator_is_supported_voltage(struct regulator *regulator,
2645 int min_uV, int max_uV)
2646{
Mark Brownc5f39392012-07-02 15:00:18 +01002647 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002648 int i, voltages, ret;
2649
Mark Brownc5f39392012-07-02 15:00:18 +01002650 /* If we can't change voltage check the current voltage */
WEN Pingbo8a34e972016-04-23 15:11:05 +08002651 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
Mark Brownc5f39392012-07-02 15:00:18 +01002652 ret = regulator_get_voltage(regulator);
2653 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002654 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002655 else
2656 return ret;
2657 }
2658
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002659 /* Any voltage within constrains range is fine? */
2660 if (rdev->desc->continuous_voltage_range)
2661 return min_uV >= rdev->constraints->min_uV &&
2662 max_uV <= rdev->constraints->max_uV;
2663
Mark Browna7a1ad92009-07-21 16:00:24 +01002664 ret = regulator_count_voltages(regulator);
2665 if (ret < 0)
2666 return ret;
2667 voltages = ret;
2668
2669 for (i = 0; i < voltages; i++) {
2670 ret = regulator_list_voltage(regulator, i);
2671
2672 if (ret >= min_uV && ret <= max_uV)
2673 return 1;
2674 }
2675
2676 return 0;
2677}
Mark Browna398eaa2011-12-28 12:48:45 +00002678EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002679
Sascha Hauera204f412015-10-20 14:37:27 +02002680static int regulator_map_voltage(struct regulator_dev *rdev, int min_uV,
2681 int max_uV)
2682{
2683 const struct regulator_desc *desc = rdev->desc;
2684
2685 if (desc->ops->map_voltage)
2686 return desc->ops->map_voltage(rdev, min_uV, max_uV);
2687
2688 if (desc->ops->list_voltage == regulator_list_voltage_linear)
2689 return regulator_map_voltage_linear(rdev, min_uV, max_uV);
2690
2691 if (desc->ops->list_voltage == regulator_list_voltage_linear_range)
2692 return regulator_map_voltage_linear_range(rdev, min_uV, max_uV);
2693
2694 return regulator_map_voltage_iterate(rdev, min_uV, max_uV);
2695}
2696
Heiko Stübner71795692014-08-28 12:36:04 -07002697static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2698 int min_uV, int max_uV,
2699 unsigned *selector)
2700{
2701 struct pre_voltage_change_data data;
2702 int ret;
2703
2704 data.old_uV = _regulator_get_voltage(rdev);
2705 data.min_uV = min_uV;
2706 data.max_uV = max_uV;
2707 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2708 &data);
2709 if (ret & NOTIFY_STOP_MASK)
2710 return -EINVAL;
2711
2712 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2713 if (ret >= 0)
2714 return ret;
2715
2716 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2717 (void *)data.old_uV);
2718
2719 return ret;
2720}
2721
2722static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2723 int uV, unsigned selector)
2724{
2725 struct pre_voltage_change_data data;
2726 int ret;
2727
2728 data.old_uV = _regulator_get_voltage(rdev);
2729 data.min_uV = uV;
2730 data.max_uV = uV;
2731 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2732 &data);
2733 if (ret & NOTIFY_STOP_MASK)
2734 return -EINVAL;
2735
2736 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2737 if (ret >= 0)
2738 return ret;
2739
2740 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2741 (void *)data.old_uV);
2742
2743 return ret;
2744}
2745
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002746static int _regulator_set_voltage_time(struct regulator_dev *rdev,
2747 int old_uV, int new_uV)
2748{
2749 unsigned int ramp_delay = 0;
2750
2751 if (rdev->constraints->ramp_delay)
2752 ramp_delay = rdev->constraints->ramp_delay;
2753 else if (rdev->desc->ramp_delay)
2754 ramp_delay = rdev->desc->ramp_delay;
Laxman Dewangand6c1dc32017-04-04 18:59:50 +05302755 else if (rdev->constraints->settling_time)
2756 return rdev->constraints->settling_time;
Matthias Kaehlcke3ffad462017-05-16 11:43:43 -07002757 else if (rdev->constraints->settling_time_up &&
2758 (new_uV > old_uV))
2759 return rdev->constraints->settling_time_up;
2760 else if (rdev->constraints->settling_time_down &&
2761 (new_uV < old_uV))
2762 return rdev->constraints->settling_time_down;
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002763
2764 if (ramp_delay == 0) {
H. Nikolaus Schallerba14fa12016-10-27 14:31:39 +02002765 rdev_dbg(rdev, "ramp_delay not set\n");
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002766 return 0;
2767 }
2768
2769 return DIV_ROUND_UP(abs(new_uV - old_uV), ramp_delay);
2770}
2771
Mark Brown75790252010-12-12 14:25:50 +00002772static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2773 int min_uV, int max_uV)
2774{
2775 int ret;
Linus Walleij77af1b22011-03-17 13:24:36 +01002776 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002777 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002778 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002779 int old_selector = -1;
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002780 const struct regulator_ops *ops = rdev->desc->ops;
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002781 int old_uV = _regulator_get_voltage(rdev);
Mark Brown75790252010-12-12 14:25:50 +00002782
2783 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2784
Mark Brownbf5892a2011-05-08 22:13:37 +01002785 min_uV += rdev->constraints->uV_offset;
2786 max_uV += rdev->constraints->uV_offset;
2787
Axel Lineba41a52012-04-04 10:32:10 +08002788 /*
2789 * If we can't obtain the old selector there is not enough
2790 * info to call set_voltage_time_sel().
2791 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002792 if (_regulator_is_enabled(rdev) &&
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002793 ops->set_voltage_time_sel && ops->get_voltage_sel) {
2794 old_selector = ops->get_voltage_sel(rdev);
Axel Lineba41a52012-04-04 10:32:10 +08002795 if (old_selector < 0)
2796 return old_selector;
2797 }
2798
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002799 if (ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002800 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2801 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002802
2803 if (ret >= 0) {
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002804 if (ops->list_voltage)
2805 best_val = ops->list_voltage(rdev,
2806 selector);
Mark Browne113d792012-06-26 10:57:51 +01002807 else
2808 best_val = _regulator_get_voltage(rdev);
2809 }
2810
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002811 } else if (ops->set_voltage_sel) {
Sascha Hauera204f412015-10-20 14:37:27 +02002812 ret = regulator_map_voltage(rdev, min_uV, max_uV);
Mark Browne843fc42012-05-09 21:16:06 +01002813 if (ret >= 0) {
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002814 best_val = ops->list_voltage(rdev, ret);
Mark Browne113d792012-06-26 10:57:51 +01002815 if (min_uV <= best_val && max_uV >= best_val) {
2816 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002817 if (old_selector == selector)
2818 ret = 0;
2819 else
Heiko Stübner71795692014-08-28 12:36:04 -07002820 ret = _regulator_call_set_voltage_sel(
2821 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002822 } else {
2823 ret = -EINVAL;
2824 }
Mark Browne8eef822010-12-12 14:36:17 +00002825 }
Mark Brown75790252010-12-12 14:25:50 +00002826 } else {
2827 ret = -EINVAL;
2828 }
2829
Matthias Kaehlcke31dfe682016-09-14 09:52:06 -07002830 if (ret)
2831 goto out;
Axel Lineba41a52012-04-04 10:32:10 +08002832
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002833 if (ops->set_voltage_time_sel) {
2834 /*
2835 * Call set_voltage_time_sel if successfully obtained
2836 * old_selector
2837 */
2838 if (old_selector >= 0 && old_selector != selector)
2839 delay = ops->set_voltage_time_sel(rdev, old_selector,
2840 selector);
2841 } else {
2842 if (old_uV != best_val) {
2843 if (ops->set_voltage_time)
2844 delay = ops->set_voltage_time(rdev, old_uV,
2845 best_val);
2846 else
2847 delay = _regulator_set_voltage_time(rdev,
2848 old_uV,
2849 best_val);
Philip Rakity8b96de32012-06-14 15:07:56 -07002850 }
Linus Walleij77af1b22011-03-17 13:24:36 +01002851 }
2852
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002853 if (delay < 0) {
2854 rdev_warn(rdev, "failed to get delay: %d\n", delay);
2855 delay = 0;
2856 }
2857
2858 /* Insert any necessary delays */
2859 if (delay >= 1000) {
2860 mdelay(delay / 1000);
2861 udelay(delay % 1000);
2862 } else if (delay) {
2863 udelay(delay);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002864 }
Mark Brown69279fb2008-12-31 12:52:41 +00002865
Matthias Kaehlcke31dfe682016-09-14 09:52:06 -07002866 if (best_val >= 0) {
Axel Lin2f6c7972012-08-06 23:44:19 +08002867 unsigned long data = best_val;
2868
Liam Girdwood414c70c2008-04-30 15:59:04 +01002869 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002870 (void *)data);
2871 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002872
Matthias Kaehlcke31dfe682016-09-14 09:52:06 -07002873out:
Axel Lineba41a52012-04-04 10:32:10 +08002874 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002875
2876 return ret;
2877}
2878
Sascha Hauera9f226b2015-10-13 12:45:25 +02002879static int regulator_set_voltage_unlocked(struct regulator *regulator,
2880 int min_uV, int max_uV)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002881{
2882 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002883 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002884 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002885 int current_uV;
Sascha Hauerfc421122015-10-20 14:37:28 +02002886 int best_supply_uV = 0;
2887 int supply_change_uV = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002888
Mark Brown95a3c232010-12-16 15:49:37 +00002889 /* If we're setting the same range as last time the change
2890 * should be a noop (some cpufreq implementations use the same
2891 * voltage for multiple frequencies, for example).
2892 */
2893 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2894 goto out;
2895
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002896 /* If we're trying to set a range that overlaps the current voltage,
Viresh Kumard3fb9802015-08-13 18:09:49 +05302897 * return successfully even though the regulator does not support
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002898 * changing the voltage.
2899 */
WEN Pingbo8a34e972016-04-23 15:11:05 +08002900 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002901 current_uV = _regulator_get_voltage(rdev);
2902 if (min_uV <= current_uV && current_uV <= max_uV) {
2903 regulator->min_uV = min_uV;
2904 regulator->max_uV = max_uV;
2905 goto out;
2906 }
2907 }
2908
Liam Girdwood414c70c2008-04-30 15:59:04 +01002909 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002910 if (!rdev->desc->ops->set_voltage &&
2911 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002912 ret = -EINVAL;
2913 goto out;
2914 }
2915
2916 /* constraints check */
2917 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2918 if (ret < 0)
2919 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002920
Paolo Pisati92d7a552012-12-13 10:13:00 +01002921 /* restore original values in case of error */
2922 old_min_uV = regulator->min_uV;
2923 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002924 regulator->min_uV = min_uV;
2925 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002926
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002927 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2928 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002929 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002930
Mark Brown43fc99f2017-04-13 18:36:59 +01002931 if (rdev->supply &&
2932 regulator_ops_is_valid(rdev->supply->rdev,
2933 REGULATOR_CHANGE_VOLTAGE) &&
Tirupathi Reddy2c2874b2017-05-25 15:33:17 +05302934 (rdev->desc->min_dropout_uV || !(rdev->desc->ops->get_voltage ||
2935 rdev->desc->ops->get_voltage_sel))) {
Sascha Hauerfc421122015-10-20 14:37:28 +02002936 int current_supply_uV;
2937 int selector;
2938
2939 selector = regulator_map_voltage(rdev, min_uV, max_uV);
2940 if (selector < 0) {
2941 ret = selector;
2942 goto out2;
2943 }
2944
2945 best_supply_uV = _regulator_list_voltage(regulator, selector, 0);
2946 if (best_supply_uV < 0) {
2947 ret = best_supply_uV;
2948 goto out2;
2949 }
2950
2951 best_supply_uV += rdev->desc->min_dropout_uV;
2952
2953 current_supply_uV = _regulator_get_voltage(rdev->supply->rdev);
2954 if (current_supply_uV < 0) {
2955 ret = current_supply_uV;
2956 goto out2;
2957 }
2958
2959 supply_change_uV = best_supply_uV - current_supply_uV;
2960 }
2961
2962 if (supply_change_uV > 0) {
2963 ret = regulator_set_voltage_unlocked(rdev->supply,
2964 best_supply_uV, INT_MAX);
2965 if (ret) {
2966 dev_err(&rdev->dev, "Failed to increase supply voltage: %d\n",
2967 ret);
2968 goto out2;
2969 }
2970 }
2971
Mark Brown75790252010-12-12 14:25:50 +00002972 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002973 if (ret < 0)
2974 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002975
Sascha Hauerfc421122015-10-20 14:37:28 +02002976 if (supply_change_uV < 0) {
2977 ret = regulator_set_voltage_unlocked(rdev->supply,
2978 best_supply_uV, INT_MAX);
2979 if (ret)
2980 dev_warn(&rdev->dev, "Failed to decrease supply voltage: %d\n",
2981 ret);
2982 /* No need to fail here */
2983 ret = 0;
2984 }
2985
Liam Girdwood414c70c2008-04-30 15:59:04 +01002986out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01002987 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002988out2:
2989 regulator->min_uV = old_min_uV;
2990 regulator->max_uV = old_max_uV;
Sascha Hauera9f226b2015-10-13 12:45:25 +02002991
2992 return ret;
2993}
2994
2995/**
2996 * regulator_set_voltage - set regulator output voltage
2997 * @regulator: regulator source
2998 * @min_uV: Minimum required voltage in uV
2999 * @max_uV: Maximum acceptable voltage in uV
3000 *
3001 * Sets a voltage regulator to the desired output voltage. This can be set
3002 * during any regulator state. IOW, regulator can be disabled or enabled.
3003 *
3004 * If the regulator is enabled then the voltage will change to the new value
3005 * immediately otherwise if the regulator is disabled the regulator will
3006 * output at the new voltage when enabled.
3007 *
3008 * NOTE: If the regulator is shared between several devices then the lowest
3009 * request voltage that meets the system constraints will be used.
3010 * Regulator system constraints must be set for this regulator before
3011 * calling this function otherwise this call will fail.
3012 */
3013int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
3014{
3015 int ret = 0;
3016
Sascha Hauerfc421122015-10-20 14:37:28 +02003017 regulator_lock_supply(regulator->rdev);
Sascha Hauera9f226b2015-10-13 12:45:25 +02003018
3019 ret = regulator_set_voltage_unlocked(regulator, min_uV, max_uV);
3020
Sascha Hauerfc421122015-10-20 14:37:28 +02003021 regulator_unlock_supply(regulator->rdev);
Sascha Hauera9f226b2015-10-13 12:45:25 +02003022
Paolo Pisati92d7a552012-12-13 10:13:00 +01003023 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003024}
3025EXPORT_SYMBOL_GPL(regulator_set_voltage);
3026
Mark Brown606a2562010-12-16 15:49:36 +00003027/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01003028 * regulator_set_voltage_time - get raise/fall time
3029 * @regulator: regulator source
3030 * @old_uV: starting voltage in microvolts
3031 * @new_uV: target voltage in microvolts
3032 *
3033 * Provided with the starting and ending voltage, this function attempts to
3034 * calculate the time in microseconds required to rise or fall to this new
3035 * voltage.
3036 */
3037int regulator_set_voltage_time(struct regulator *regulator,
3038 int old_uV, int new_uV)
3039{
Guodong Xu272e2312014-08-13 19:33:38 +08003040 struct regulator_dev *rdev = regulator->rdev;
3041 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01003042 int old_sel = -1;
3043 int new_sel = -1;
3044 int voltage;
3045 int i;
3046
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07003047 if (ops->set_voltage_time)
3048 return ops->set_voltage_time(rdev, old_uV, new_uV);
3049 else if (!ops->set_voltage_time_sel)
3050 return _regulator_set_voltage_time(rdev, old_uV, new_uV);
3051
Linus Walleij88cd222b2011-03-17 13:24:52 +01003052 /* Currently requires operations to do this */
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07003053 if (!ops->list_voltage || !rdev->desc->n_voltages)
Linus Walleij88cd222b2011-03-17 13:24:52 +01003054 return -EINVAL;
3055
3056 for (i = 0; i < rdev->desc->n_voltages; i++) {
3057 /* We only look for exact voltage matches here */
3058 voltage = regulator_list_voltage(regulator, i);
3059 if (voltage < 0)
3060 return -EINVAL;
3061 if (voltage == 0)
3062 continue;
3063 if (voltage == old_uV)
3064 old_sel = i;
3065 if (voltage == new_uV)
3066 new_sel = i;
3067 }
3068
3069 if (old_sel < 0 || new_sel < 0)
3070 return -EINVAL;
3071
3072 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
3073}
3074EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
3075
3076/**
Randy Dunlap296c6562012-08-18 17:44:14 -07003077 * regulator_set_voltage_time_sel - get raise/fall time
3078 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303079 * @old_selector: selector for starting voltage
3080 * @new_selector: selector for target voltage
3081 *
3082 * Provided with the starting and target voltage selectors, this function
3083 * returns time in microseconds required to rise or fall to this new voltage
3084 *
Axel Linf11d08c2012-06-19 09:38:45 +08003085 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08003086 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303087 */
3088int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
3089 unsigned int old_selector,
3090 unsigned int new_selector)
3091{
Axel Linf11d08c2012-06-19 09:38:45 +08003092 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08003093
Axel Linf11d08c2012-06-19 09:38:45 +08003094 /* sanity check */
3095 if (!rdev->desc->ops->list_voltage)
3096 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08003097
Axel Linf11d08c2012-06-19 09:38:45 +08003098 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
3099 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
3100
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07003101 if (rdev->desc->ops->set_voltage_time)
3102 return rdev->desc->ops->set_voltage_time(rdev, old_volt,
3103 new_volt);
3104 else
3105 return _regulator_set_voltage_time(rdev, old_volt, new_volt);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303106}
Mark Brownb19dbf72012-06-23 11:34:20 +01003107EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303108
3109/**
Mark Brown606a2562010-12-16 15:49:36 +00003110 * regulator_sync_voltage - re-apply last regulator output voltage
3111 * @regulator: regulator source
3112 *
3113 * Re-apply the last configured voltage. This is intended to be used
3114 * where some external control source the consumer is cooperating with
3115 * has caused the configured voltage to change.
3116 */
3117int regulator_sync_voltage(struct regulator *regulator)
3118{
3119 struct regulator_dev *rdev = regulator->rdev;
3120 int ret, min_uV, max_uV;
3121
3122 mutex_lock(&rdev->mutex);
3123
3124 if (!rdev->desc->ops->set_voltage &&
3125 !rdev->desc->ops->set_voltage_sel) {
3126 ret = -EINVAL;
3127 goto out;
3128 }
3129
3130 /* This is only going to work if we've had a voltage configured. */
3131 if (!regulator->min_uV && !regulator->max_uV) {
3132 ret = -EINVAL;
3133 goto out;
3134 }
3135
3136 min_uV = regulator->min_uV;
3137 max_uV = regulator->max_uV;
3138
3139 /* This should be a paranoia check... */
3140 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
3141 if (ret < 0)
3142 goto out;
3143
3144 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
3145 if (ret < 0)
3146 goto out;
3147
3148 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
3149
3150out:
3151 mutex_unlock(&rdev->mutex);
3152 return ret;
3153}
3154EXPORT_SYMBOL_GPL(regulator_sync_voltage);
3155
Liam Girdwood414c70c2008-04-30 15:59:04 +01003156static int _regulator_get_voltage(struct regulator_dev *rdev)
3157{
Mark Brownbf5892a2011-05-08 22:13:37 +01003158 int sel, ret;
Mark Brownfef95012016-04-07 16:22:36 +02003159 bool bypassed;
3160
3161 if (rdev->desc->ops->get_bypass) {
3162 ret = rdev->desc->ops->get_bypass(rdev, &bypassed);
3163 if (ret < 0)
3164 return ret;
3165 if (bypassed) {
3166 /* if bypassed the regulator must have a supply */
Jon Hunter45389c42016-04-26 11:29:45 +01003167 if (!rdev->supply) {
3168 rdev_err(rdev,
3169 "bypassed regulator has no supply!\n");
3170 return -EPROBE_DEFER;
3171 }
Mark Brownfef95012016-04-07 16:22:36 +02003172
3173 return _regulator_get_voltage(rdev->supply->rdev);
3174 }
3175 }
Mark Brown476c2d82010-12-10 17:28:07 +00003176
3177 if (rdev->desc->ops->get_voltage_sel) {
3178 sel = rdev->desc->ops->get_voltage_sel(rdev);
3179 if (sel < 0)
3180 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01003181 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08003182 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01003183 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01003184 } else if (rdev->desc->ops->list_voltage) {
3185 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05303186 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
3187 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02003188 } else if (rdev->supply) {
Mark Brownd9b96d32015-11-03 05:58:14 +00003189 ret = _regulator_get_voltage(rdev->supply->rdev);
Axel Lincb220d12011-05-23 20:08:10 +08003190 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003191 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08003192 }
Mark Brownbf5892a2011-05-08 22:13:37 +01003193
Axel Lincb220d12011-05-23 20:08:10 +08003194 if (ret < 0)
3195 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01003196 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003197}
3198
3199/**
3200 * regulator_get_voltage - get regulator output voltage
3201 * @regulator: regulator source
3202 *
3203 * This returns the current regulator voltage in uV.
3204 *
3205 * NOTE: If the regulator is disabled it will return the voltage value. This
3206 * function should not be used to determine regulator state.
3207 */
3208int regulator_get_voltage(struct regulator *regulator)
3209{
3210 int ret;
3211
Mark Brownd9b96d32015-11-03 05:58:14 +00003212 regulator_lock_supply(regulator->rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003213
3214 ret = _regulator_get_voltage(regulator->rdev);
3215
Mark Brownd9b96d32015-11-03 05:58:14 +00003216 regulator_unlock_supply(regulator->rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003217
3218 return ret;
3219}
3220EXPORT_SYMBOL_GPL(regulator_get_voltage);
3221
3222/**
3223 * regulator_set_current_limit - set regulator output current limit
3224 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01003225 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01003226 * @max_uA: Maximum supported current in uA
3227 *
3228 * Sets current sink to the desired output current. This can be set during
3229 * any regulator state. IOW, regulator can be disabled or enabled.
3230 *
3231 * If the regulator is enabled then the current will change to the new value
3232 * immediately otherwise if the regulator is disabled the regulator will
3233 * output at the new current when enabled.
3234 *
3235 * NOTE: Regulator system constraints must be set for this regulator before
3236 * calling this function otherwise this call will fail.
3237 */
3238int regulator_set_current_limit(struct regulator *regulator,
3239 int min_uA, int max_uA)
3240{
3241 struct regulator_dev *rdev = regulator->rdev;
3242 int ret;
3243
3244 mutex_lock(&rdev->mutex);
3245
3246 /* sanity check */
3247 if (!rdev->desc->ops->set_current_limit) {
3248 ret = -EINVAL;
3249 goto out;
3250 }
3251
3252 /* constraints check */
3253 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
3254 if (ret < 0)
3255 goto out;
3256
3257 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
3258out:
3259 mutex_unlock(&rdev->mutex);
3260 return ret;
3261}
3262EXPORT_SYMBOL_GPL(regulator_set_current_limit);
3263
3264static int _regulator_get_current_limit(struct regulator_dev *rdev)
3265{
3266 int ret;
3267
3268 mutex_lock(&rdev->mutex);
3269
3270 /* sanity check */
3271 if (!rdev->desc->ops->get_current_limit) {
3272 ret = -EINVAL;
3273 goto out;
3274 }
3275
3276 ret = rdev->desc->ops->get_current_limit(rdev);
3277out:
3278 mutex_unlock(&rdev->mutex);
3279 return ret;
3280}
3281
3282/**
3283 * regulator_get_current_limit - get regulator output current
3284 * @regulator: regulator source
3285 *
3286 * This returns the current supplied by the specified current sink in uA.
3287 *
3288 * NOTE: If the regulator is disabled it will return the current value. This
3289 * function should not be used to determine regulator state.
3290 */
3291int regulator_get_current_limit(struct regulator *regulator)
3292{
3293 return _regulator_get_current_limit(regulator->rdev);
3294}
3295EXPORT_SYMBOL_GPL(regulator_get_current_limit);
3296
3297/**
3298 * regulator_set_mode - set regulator operating mode
3299 * @regulator: regulator source
3300 * @mode: operating mode - one of the REGULATOR_MODE constants
3301 *
3302 * Set regulator operating mode to increase regulator efficiency or improve
3303 * regulation performance.
3304 *
3305 * NOTE: Regulator system constraints must be set for this regulator before
3306 * calling this function otherwise this call will fail.
3307 */
3308int regulator_set_mode(struct regulator *regulator, unsigned int mode)
3309{
3310 struct regulator_dev *rdev = regulator->rdev;
3311 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303312 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003313
3314 mutex_lock(&rdev->mutex);
3315
3316 /* sanity check */
3317 if (!rdev->desc->ops->set_mode) {
3318 ret = -EINVAL;
3319 goto out;
3320 }
3321
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303322 /* return if the same mode is requested */
3323 if (rdev->desc->ops->get_mode) {
3324 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3325 if (regulator_curr_mode == mode) {
3326 ret = 0;
3327 goto out;
3328 }
3329 }
3330
Liam Girdwood414c70c2008-04-30 15:59:04 +01003331 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003332 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003333 if (ret < 0)
3334 goto out;
3335
3336 ret = rdev->desc->ops->set_mode(rdev, mode);
3337out:
3338 mutex_unlock(&rdev->mutex);
3339 return ret;
3340}
3341EXPORT_SYMBOL_GPL(regulator_set_mode);
3342
3343static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3344{
3345 int ret;
3346
3347 mutex_lock(&rdev->mutex);
3348
3349 /* sanity check */
3350 if (!rdev->desc->ops->get_mode) {
3351 ret = -EINVAL;
3352 goto out;
3353 }
3354
3355 ret = rdev->desc->ops->get_mode(rdev);
3356out:
3357 mutex_unlock(&rdev->mutex);
3358 return ret;
3359}
3360
3361/**
3362 * regulator_get_mode - get regulator operating mode
3363 * @regulator: regulator source
3364 *
3365 * Get the current regulator operating mode.
3366 */
3367unsigned int regulator_get_mode(struct regulator *regulator)
3368{
3369 return _regulator_get_mode(regulator->rdev);
3370}
3371EXPORT_SYMBOL_GPL(regulator_get_mode);
3372
Axel Haslam1b5b4222016-11-03 12:11:42 +01003373static int _regulator_get_error_flags(struct regulator_dev *rdev,
3374 unsigned int *flags)
3375{
3376 int ret;
3377
3378 mutex_lock(&rdev->mutex);
3379
3380 /* sanity check */
3381 if (!rdev->desc->ops->get_error_flags) {
3382 ret = -EINVAL;
3383 goto out;
3384 }
3385
3386 ret = rdev->desc->ops->get_error_flags(rdev, flags);
3387out:
3388 mutex_unlock(&rdev->mutex);
3389 return ret;
3390}
3391
3392/**
3393 * regulator_get_error_flags - get regulator error information
3394 * @regulator: regulator source
3395 * @flags: pointer to store error flags
3396 *
3397 * Get the current regulator error information.
3398 */
3399int regulator_get_error_flags(struct regulator *regulator,
3400 unsigned int *flags)
3401{
3402 return _regulator_get_error_flags(regulator->rdev, flags);
3403}
3404EXPORT_SYMBOL_GPL(regulator_get_error_flags);
3405
Liam Girdwood414c70c2008-04-30 15:59:04 +01003406/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003407 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003408 * @regulator: regulator source
3409 * @uA_load: load current
3410 *
3411 * Notifies the regulator core of a new device load. This is then used by
3412 * DRMS (if enabled by constraints) to set the most efficient regulator
3413 * operating mode for the new regulator loading.
3414 *
3415 * Consumer devices notify their supply regulator of the maximum power
3416 * they will require (can be taken from device datasheet in the power
3417 * consumption tables) when they change operational status and hence power
3418 * state. Examples of operational state changes that can affect power
3419 * consumption are :-
3420 *
3421 * o Device is opened / closed.
3422 * o Device I/O is about to begin or has just finished.
3423 * o Device is idling in between work.
3424 *
3425 * This information is also exported via sysfs to userspace.
3426 *
3427 * DRMS will sum the total requested load on the regulator and change
3428 * to the most efficient operating mode if platform constraints allow.
3429 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003430 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003431 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003432int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003433{
3434 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003435 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003436
Liam Girdwood414c70c2008-04-30 15:59:04 +01003437 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003438 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003439 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003440 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003441
Liam Girdwood414c70c2008-04-30 15:59:04 +01003442 return ret;
3443}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003444EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003445
3446/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003447 * regulator_allow_bypass - allow the regulator to go into bypass mode
3448 *
3449 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003450 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003451 *
3452 * Allow the regulator to go into bypass mode if all other consumers
3453 * for the regulator also enable bypass mode and the machine
3454 * constraints allow this. Bypass mode means that the regulator is
3455 * simply passing the input directly to the output with no regulation.
3456 */
3457int regulator_allow_bypass(struct regulator *regulator, bool enable)
3458{
3459 struct regulator_dev *rdev = regulator->rdev;
3460 int ret = 0;
3461
3462 if (!rdev->desc->ops->set_bypass)
3463 return 0;
3464
WEN Pingbo8a34e972016-04-23 15:11:05 +08003465 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_BYPASS))
Mark Brownf59c8f92012-08-31 10:36:37 -07003466 return 0;
3467
3468 mutex_lock(&rdev->mutex);
3469
3470 if (enable && !regulator->bypass) {
3471 rdev->bypass_count++;
3472
3473 if (rdev->bypass_count == rdev->open_count) {
3474 ret = rdev->desc->ops->set_bypass(rdev, enable);
3475 if (ret != 0)
3476 rdev->bypass_count--;
3477 }
3478
3479 } else if (!enable && regulator->bypass) {
3480 rdev->bypass_count--;
3481
3482 if (rdev->bypass_count != rdev->open_count) {
3483 ret = rdev->desc->ops->set_bypass(rdev, enable);
3484 if (ret != 0)
3485 rdev->bypass_count++;
3486 }
3487 }
3488
3489 if (ret == 0)
3490 regulator->bypass = enable;
3491
3492 mutex_unlock(&rdev->mutex);
3493
3494 return ret;
3495}
3496EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3497
3498/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003499 * regulator_register_notifier - register regulator event notifier
3500 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003501 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003502 *
3503 * Register notifier block to receive regulator events.
3504 */
3505int regulator_register_notifier(struct regulator *regulator,
3506 struct notifier_block *nb)
3507{
3508 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3509 nb);
3510}
3511EXPORT_SYMBOL_GPL(regulator_register_notifier);
3512
3513/**
3514 * regulator_unregister_notifier - unregister regulator event notifier
3515 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003516 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003517 *
3518 * Unregister regulator event notifier block.
3519 */
3520int regulator_unregister_notifier(struct regulator *regulator,
3521 struct notifier_block *nb)
3522{
3523 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3524 nb);
3525}
3526EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3527
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003528/* notify regulator consumers and downstream regulator consumers.
3529 * Note mutex must be held by caller.
3530 */
Heiko Stübner71795692014-08-28 12:36:04 -07003531static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003532 unsigned long event, void *data)
3533{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003534 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003535 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003536}
3537
3538/**
3539 * regulator_bulk_get - get multiple regulator consumers
3540 *
3541 * @dev: Device to supply
3542 * @num_consumers: Number of consumers to register
3543 * @consumers: Configuration of consumers; clients are stored here.
3544 *
3545 * @return 0 on success, an errno on failure.
3546 *
3547 * This helper function allows drivers to get several regulator
3548 * consumers in one operation. If any of the regulators cannot be
3549 * acquired then any regulators that were allocated will be freed
3550 * before returning to the caller.
3551 */
3552int regulator_bulk_get(struct device *dev, int num_consumers,
3553 struct regulator_bulk_data *consumers)
3554{
3555 int i;
3556 int ret;
3557
3558 for (i = 0; i < num_consumers; i++)
3559 consumers[i].consumer = NULL;
3560
3561 for (i = 0; i < num_consumers; i++) {
Bjorn Andersson565f9b02016-08-16 11:50:32 -07003562 consumers[i].consumer = regulator_get(dev,
3563 consumers[i].supply);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003564 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003565 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003566 dev_err(dev, "Failed to get supply '%s': %d\n",
3567 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003568 consumers[i].consumer = NULL;
3569 goto err;
3570 }
3571 }
3572
3573 return 0;
3574
3575err:
Axel Linb29c7692012-02-20 10:32:16 +08003576 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003577 regulator_put(consumers[i].consumer);
3578
3579 return ret;
3580}
3581EXPORT_SYMBOL_GPL(regulator_bulk_get);
3582
Mark Brownf21e0e82011-05-24 08:12:40 +08003583static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3584{
3585 struct regulator_bulk_data *bulk = data;
3586
3587 bulk->ret = regulator_enable(bulk->consumer);
3588}
3589
Liam Girdwood414c70c2008-04-30 15:59:04 +01003590/**
3591 * regulator_bulk_enable - enable multiple regulator consumers
3592 *
3593 * @num_consumers: Number of consumers
3594 * @consumers: Consumer data; clients are stored here.
3595 * @return 0 on success, an errno on failure
3596 *
3597 * This convenience API allows consumers to enable multiple regulator
3598 * clients in a single API call. If any consumers cannot be enabled
3599 * then any others that were enabled will be disabled again prior to
3600 * return.
3601 */
3602int regulator_bulk_enable(int num_consumers,
3603 struct regulator_bulk_data *consumers)
3604{
Dan Williams2955b472012-07-09 19:33:25 -07003605 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003606 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003607 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003608
Mark Brown6492bc12012-04-19 13:19:07 +01003609 for (i = 0; i < num_consumers; i++) {
3610 if (consumers[i].consumer->always_on)
3611 consumers[i].ret = 0;
3612 else
3613 async_schedule_domain(regulator_bulk_enable_async,
3614 &consumers[i], &async_domain);
3615 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003616
3617 async_synchronize_full_domain(&async_domain);
3618
3619 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003620 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003621 if (consumers[i].ret != 0) {
3622 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003623 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003624 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003625 }
3626
3627 return 0;
3628
3629err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003630 for (i = 0; i < num_consumers; i++) {
3631 if (consumers[i].ret < 0)
3632 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3633 consumers[i].ret);
3634 else
3635 regulator_disable(consumers[i].consumer);
3636 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003637
3638 return ret;
3639}
3640EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3641
3642/**
3643 * regulator_bulk_disable - disable multiple regulator consumers
3644 *
3645 * @num_consumers: Number of consumers
3646 * @consumers: Consumer data; clients are stored here.
3647 * @return 0 on success, an errno on failure
3648 *
3649 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003650 * clients in a single API call. If any consumers cannot be disabled
3651 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003652 * return.
3653 */
3654int regulator_bulk_disable(int num_consumers,
3655 struct regulator_bulk_data *consumers)
3656{
3657 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003658 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003659
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003660 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003661 ret = regulator_disable(consumers[i].consumer);
3662 if (ret != 0)
3663 goto err;
3664 }
3665
3666 return 0;
3667
3668err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003669 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003670 for (++i; i < num_consumers; ++i) {
3671 r = regulator_enable(consumers[i].consumer);
3672 if (r != 0)
Dmitry Torokhovd1642ea2017-02-03 15:16:16 -08003673 pr_err("Failed to re-enable %s: %d\n",
Mark Brown01e86f42012-03-28 21:36:38 +01003674 consumers[i].supply, r);
3675 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003676
3677 return ret;
3678}
3679EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3680
3681/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003682 * regulator_bulk_force_disable - force disable multiple regulator consumers
3683 *
3684 * @num_consumers: Number of consumers
3685 * @consumers: Consumer data; clients are stored here.
3686 * @return 0 on success, an errno on failure
3687 *
3688 * This convenience API allows consumers to forcibly disable multiple regulator
3689 * clients in a single API call.
3690 * NOTE: This should be used for situations when device damage will
3691 * likely occur if the regulators are not disabled (e.g. over temp).
3692 * Although regulator_force_disable function call for some consumers can
3693 * return error numbers, the function is called for all consumers.
3694 */
3695int regulator_bulk_force_disable(int num_consumers,
3696 struct regulator_bulk_data *consumers)
3697{
3698 int i;
Dmitry Torokhovb8c77ff2017-02-03 15:16:17 -08003699 int ret = 0;
Donggeun Kime1de2f42012-01-03 16:22:03 +09003700
Dmitry Torokhovb8c77ff2017-02-03 15:16:17 -08003701 for (i = 0; i < num_consumers; i++) {
Donggeun Kime1de2f42012-01-03 16:22:03 +09003702 consumers[i].ret =
3703 regulator_force_disable(consumers[i].consumer);
3704
Dmitry Torokhovb8c77ff2017-02-03 15:16:17 -08003705 /* Store first error for reporting */
3706 if (consumers[i].ret && !ret)
Donggeun Kime1de2f42012-01-03 16:22:03 +09003707 ret = consumers[i].ret;
Donggeun Kime1de2f42012-01-03 16:22:03 +09003708 }
3709
Donggeun Kime1de2f42012-01-03 16:22:03 +09003710 return ret;
3711}
3712EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3713
3714/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003715 * regulator_bulk_free - free multiple regulator consumers
3716 *
3717 * @num_consumers: Number of consumers
3718 * @consumers: Consumer data; clients are stored here.
3719 *
3720 * This convenience API allows consumers to free multiple regulator
3721 * clients in a single API call.
3722 */
3723void regulator_bulk_free(int num_consumers,
3724 struct regulator_bulk_data *consumers)
3725{
3726 int i;
3727
3728 for (i = 0; i < num_consumers; i++) {
3729 regulator_put(consumers[i].consumer);
3730 consumers[i].consumer = NULL;
3731 }
3732}
3733EXPORT_SYMBOL_GPL(regulator_bulk_free);
3734
3735/**
3736 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003737 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003738 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003739 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003740 *
3741 * Called by regulator drivers to notify clients a regulator event has
3742 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003743 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003744 */
3745int regulator_notifier_call_chain(struct regulator_dev *rdev,
3746 unsigned long event, void *data)
3747{
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09003748 lockdep_assert_held_once(&rdev->mutex);
3749
Liam Girdwood414c70c2008-04-30 15:59:04 +01003750 _notifier_call_chain(rdev, event, data);
3751 return NOTIFY_DONE;
3752
3753}
3754EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3755
Mark Brownbe721972009-08-04 20:09:52 +02003756/**
3757 * regulator_mode_to_status - convert a regulator mode into a status
3758 *
3759 * @mode: Mode to convert
3760 *
3761 * Convert a regulator mode into a status.
3762 */
3763int regulator_mode_to_status(unsigned int mode)
3764{
3765 switch (mode) {
3766 case REGULATOR_MODE_FAST:
3767 return REGULATOR_STATUS_FAST;
3768 case REGULATOR_MODE_NORMAL:
3769 return REGULATOR_STATUS_NORMAL;
3770 case REGULATOR_MODE_IDLE:
3771 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003772 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003773 return REGULATOR_STATUS_STANDBY;
3774 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003775 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003776 }
3777}
3778EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3779
Takashi Iwai39f802d2015-01-30 20:29:31 +01003780static struct attribute *regulator_dev_attrs[] = {
3781 &dev_attr_name.attr,
3782 &dev_attr_num_users.attr,
3783 &dev_attr_type.attr,
3784 &dev_attr_microvolts.attr,
3785 &dev_attr_microamps.attr,
3786 &dev_attr_opmode.attr,
3787 &dev_attr_state.attr,
3788 &dev_attr_status.attr,
3789 &dev_attr_bypass.attr,
3790 &dev_attr_requested_microamps.attr,
3791 &dev_attr_min_microvolts.attr,
3792 &dev_attr_max_microvolts.attr,
3793 &dev_attr_min_microamps.attr,
3794 &dev_attr_max_microamps.attr,
3795 &dev_attr_suspend_standby_state.attr,
3796 &dev_attr_suspend_mem_state.attr,
3797 &dev_attr_suspend_disk_state.attr,
3798 &dev_attr_suspend_standby_microvolts.attr,
3799 &dev_attr_suspend_mem_microvolts.attr,
3800 &dev_attr_suspend_disk_microvolts.attr,
3801 &dev_attr_suspend_standby_mode.attr,
3802 &dev_attr_suspend_mem_mode.attr,
3803 &dev_attr_suspend_disk_mode.attr,
3804 NULL
3805};
3806
David Brownell7ad68e22008-11-11 17:39:02 -08003807/*
3808 * To avoid cluttering sysfs (and memory) with useless state, only
3809 * create attributes that can be meaningfully displayed.
3810 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003811static umode_t regulator_attr_is_visible(struct kobject *kobj,
3812 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003813{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003814 struct device *dev = kobj_to_dev(kobj);
Geliang Tang83080a12016-01-05 22:07:55 +08003815 struct regulator_dev *rdev = dev_to_rdev(dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003816 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003817 umode_t mode = attr->mode;
3818
3819 /* these three are always present */
3820 if (attr == &dev_attr_name.attr ||
3821 attr == &dev_attr_num_users.attr ||
3822 attr == &dev_attr_type.attr)
3823 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003824
3825 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003826 if (attr == &dev_attr_microvolts.attr) {
3827 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3828 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3829 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3830 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3831 return mode;
3832 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003833 }
David Brownell7ad68e22008-11-11 17:39:02 -08003834
Takashi Iwai39f802d2015-01-30 20:29:31 +01003835 if (attr == &dev_attr_microamps.attr)
3836 return ops->get_current_limit ? mode : 0;
3837
3838 if (attr == &dev_attr_opmode.attr)
3839 return ops->get_mode ? mode : 0;
3840
3841 if (attr == &dev_attr_state.attr)
3842 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3843
3844 if (attr == &dev_attr_status.attr)
3845 return ops->get_status ? mode : 0;
3846
3847 if (attr == &dev_attr_bypass.attr)
3848 return ops->get_bypass ? mode : 0;
3849
David Brownell7ad68e22008-11-11 17:39:02 -08003850 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003851 if (attr == &dev_attr_requested_microamps.attr)
3852 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003853
David Brownell7ad68e22008-11-11 17:39:02 -08003854 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003855 if (attr == &dev_attr_min_microvolts.attr ||
3856 attr == &dev_attr_max_microvolts.attr)
3857 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003858
Takashi Iwai39f802d2015-01-30 20:29:31 +01003859 if (attr == &dev_attr_min_microamps.attr ||
3860 attr == &dev_attr_max_microamps.attr)
3861 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003862
Takashi Iwai39f802d2015-01-30 20:29:31 +01003863 if (attr == &dev_attr_suspend_standby_state.attr ||
3864 attr == &dev_attr_suspend_mem_state.attr ||
3865 attr == &dev_attr_suspend_disk_state.attr)
3866 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003867
Takashi Iwai39f802d2015-01-30 20:29:31 +01003868 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3869 attr == &dev_attr_suspend_mem_microvolts.attr ||
3870 attr == &dev_attr_suspend_disk_microvolts.attr)
3871 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003872
Takashi Iwai39f802d2015-01-30 20:29:31 +01003873 if (attr == &dev_attr_suspend_standby_mode.attr ||
3874 attr == &dev_attr_suspend_mem_mode.attr ||
3875 attr == &dev_attr_suspend_disk_mode.attr)
3876 return ops->set_suspend_mode ? mode : 0;
3877
3878 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003879}
3880
Takashi Iwai39f802d2015-01-30 20:29:31 +01003881static const struct attribute_group regulator_dev_group = {
3882 .attrs = regulator_dev_attrs,
3883 .is_visible = regulator_attr_is_visible,
3884};
3885
3886static const struct attribute_group *regulator_dev_groups[] = {
3887 &regulator_dev_group,
3888 NULL
3889};
3890
3891static void regulator_dev_release(struct device *dev)
3892{
3893 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown29f5f482015-08-07 20:01:32 +01003894
3895 kfree(rdev->constraints);
3896 of_node_put(rdev->dev.of_node);
Takashi Iwai39f802d2015-01-30 20:29:31 +01003897 kfree(rdev);
3898}
3899
Maciej Purski148096a2018-01-22 15:30:06 +01003900struct class regulator_class = {
Takashi Iwai39f802d2015-01-30 20:29:31 +01003901 .name = "regulator",
3902 .dev_release = regulator_dev_release,
3903 .dev_groups = regulator_dev_groups,
3904};
3905
Mark Brown1130e5b2010-12-21 23:49:31 +00003906static void rdev_init_debugfs(struct regulator_dev *rdev)
3907{
Guenter Roecka9eaa812014-10-17 08:17:03 -07003908 struct device *parent = rdev->dev.parent;
3909 const char *rname = rdev_get_name(rdev);
3910 char name[NAME_MAX];
3911
3912 /* Avoid duplicate debugfs directory names */
3913 if (parent && rname == rdev->desc->name) {
3914 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
3915 rname);
3916 rname = name;
3917 }
3918
3919 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003920 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003921 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003922 return;
3923 }
3924
3925 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3926 &rdev->use_count);
3927 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3928 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003929 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3930 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003931}
3932
Javier Martinez Canillas5e3ca2b2016-03-23 20:59:34 -03003933static int regulator_register_resolve_supply(struct device *dev, void *data)
3934{
Jon Hunter7ddede62016-04-21 17:11:57 +01003935 struct regulator_dev *rdev = dev_to_rdev(dev);
3936
3937 if (regulator_resolve_supply(rdev))
3938 rdev_dbg(rdev, "unable to resolve supply\n");
3939
3940 return 0;
Javier Martinez Canillas5e3ca2b2016-03-23 20:59:34 -03003941}
3942
Liam Girdwood414c70c2008-04-30 15:59:04 +01003943/**
3944 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003945 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003946 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003947 *
3948 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003949 * Returns a valid pointer to struct regulator_dev on success
3950 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003951 */
Mark Brown65f26842012-04-03 20:46:53 +01003952struct regulator_dev *
3953regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003954 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003955{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003956 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003957 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003958 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303959 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003960 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003961 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003962 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003963
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003964 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003965 return ERR_PTR(-EINVAL);
3966
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003967 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003968 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003969
Liam Girdwood414c70c2008-04-30 15:59:04 +01003970 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3971 return ERR_PTR(-EINVAL);
3972
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003973 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3974 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003975 return ERR_PTR(-EINVAL);
3976
Mark Brown476c2d82010-12-10 17:28:07 +00003977 /* Only one of each should be implemented */
3978 WARN_ON(regulator_desc->ops->get_voltage &&
3979 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003980 WARN_ON(regulator_desc->ops->set_voltage &&
3981 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003982
3983 /* If we're using selectors we must implement list_voltage. */
3984 if (regulator_desc->ops->get_voltage_sel &&
3985 !regulator_desc->ops->list_voltage) {
3986 return ERR_PTR(-EINVAL);
3987 }
Mark Browne8eef822010-12-12 14:36:17 +00003988 if (regulator_desc->ops->set_voltage_sel &&
3989 !regulator_desc->ops->list_voltage) {
3990 return ERR_PTR(-EINVAL);
3991 }
Mark Brown476c2d82010-12-10 17:28:07 +00003992
Liam Girdwood414c70c2008-04-30 15:59:04 +01003993 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3994 if (rdev == NULL)
3995 return ERR_PTR(-ENOMEM);
3996
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003997 /*
3998 * Duplicate the config so the driver could override it after
3999 * parsing init data.
4000 */
4001 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
4002 if (config == NULL) {
4003 kfree(rdev);
4004 return ERR_PTR(-ENOMEM);
4005 }
4006
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01004007 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01004008 &rdev->dev.of_node);
4009 if (!init_data) {
4010 init_data = config->init_data;
4011 rdev->dev.of_node = of_node_get(config->of_node);
4012 }
4013
Liam Girdwood414c70c2008-04-30 15:59:04 +01004014 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01004015 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004016 rdev->owner = regulator_desc->owner;
4017 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01004018 if (config->regmap)
4019 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05304020 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01004021 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05304022 else if (dev->parent)
4023 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004024 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004025 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004026 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01004027 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004028
Liam Girdwooda5766f12008-10-10 13:22:20 +01004029 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00004030 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01004031 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08004032 if (ret < 0)
4033 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01004034 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01004035
Krzysztof Adamskidaad1342016-02-22 09:24:00 +01004036 if ((config->ena_gpio || config->ena_gpio_initialized) &&
4037 gpio_is_valid(config->ena_gpio)) {
Jon Hunter45389c42016-04-26 11:29:45 +01004038 mutex_lock(&regulator_list_mutex);
Krzysztof Adamskidaad1342016-02-22 09:24:00 +01004039 ret = regulator_ena_gpio_request(rdev, config);
Jon Hunter45389c42016-04-26 11:29:45 +01004040 mutex_unlock(&regulator_list_mutex);
Krzysztof Adamskidaad1342016-02-22 09:24:00 +01004041 if (ret != 0) {
4042 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
4043 config->ena_gpio, ret);
Krzysztof Adamski32165232016-02-24 11:52:50 +01004044 goto clean;
Krzysztof Adamskidaad1342016-02-22 09:24:00 +01004045 }
4046 }
4047
Liam Girdwooda5766f12008-10-10 13:22:20 +01004048 /* register with sysfs */
4049 rdev->dev.class = &regulator_class;
4050 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05304051 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05304052 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01004053
Mike Rapoport74f544c2008-11-25 14:53:53 +02004054 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00004055 if (init_data)
4056 constraints = &init_data->constraints;
4057
Mark Brown9a8f5e02011-11-29 18:11:19 +00004058 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07004059 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05304060 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07004061 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05304062
Jon Hunter45389c42016-04-26 11:29:45 +01004063 /*
4064 * Attempt to resolve the regulator supply, if specified,
4065 * but don't return an error if we fail because we will try
4066 * to resolve it again later as more regulators are added.
4067 */
4068 if (regulator_resolve_supply(rdev))
4069 rdev_dbg(rdev, "unable to resolve supply\n");
4070
4071 ret = set_machine_constraints(rdev, constraints);
4072 if (ret < 0)
4073 goto wash;
4074
Liam Girdwooda5766f12008-10-10 13:22:20 +01004075 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00004076 if (init_data) {
Jon Hunter45389c42016-04-26 11:29:45 +01004077 mutex_lock(&regulator_list_mutex);
Mark Brown9a8f5e02011-11-29 18:11:19 +00004078 for (i = 0; i < init_data->num_consumer_supplies; i++) {
4079 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00004080 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00004081 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00004082 if (ret < 0) {
Jon Hunter45389c42016-04-26 11:29:45 +01004083 mutex_unlock(&regulator_list_mutex);
Mark Brown9a8f5e02011-11-29 18:11:19 +00004084 dev_err(dev, "Failed to set supply %s\n",
4085 init_data->consumer_supplies[i].supply);
4086 goto unset_supplies;
4087 }
Mark Brown23c2f042011-02-24 17:39:09 +00004088 }
Jon Hunter45389c42016-04-26 11:29:45 +01004089 mutex_unlock(&regulator_list_mutex);
Liam Girdwooda5766f12008-10-10 13:22:20 +01004090 }
4091
Matthias Kaehlckefd086042017-03-27 16:54:12 -07004092 if (!rdev->desc->ops->get_voltage &&
4093 !rdev->desc->ops->list_voltage &&
4094 !rdev->desc->fixed_uV)
4095 rdev->is_switch = true;
4096
Jon Hunterc438b9d2016-04-21 17:11:59 +01004097 ret = device_register(&rdev->dev);
4098 if (ret != 0) {
4099 put_device(&rdev->dev);
4100 goto unset_supplies;
4101 }
4102
4103 dev_set_drvdata(&rdev->dev, rdev);
Mark Brown1130e5b2010-12-21 23:49:31 +00004104 rdev_init_debugfs(rdev);
Javier Martinez Canillas5e3ca2b2016-03-23 20:59:34 -03004105
4106 /* try to resolve regulators supply since a new one was registered */
4107 class_for_each_device(&regulator_class, NULL, NULL,
4108 regulator_register_resolve_supply);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01004109 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004110 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08004111
Jani Nikulad4033b52010-04-29 10:55:11 +03004112unset_supplies:
Jon Hunter45389c42016-04-26 11:29:45 +01004113 mutex_lock(&regulator_list_mutex);
Jani Nikulad4033b52010-04-29 10:55:11 +03004114 unset_regulator_supplies(rdev);
Jon Hunter45389c42016-04-26 11:29:45 +01004115 mutex_unlock(&regulator_list_mutex);
Krzysztof Adamski32165232016-02-24 11:52:50 +01004116wash:
Boris Brezillon469b6402016-04-12 12:31:00 +02004117 kfree(rdev->constraints);
Jon Hunter45389c42016-04-26 11:29:45 +01004118 mutex_lock(&regulator_list_mutex);
Krzysztof Adamski32165232016-02-24 11:52:50 +01004119 regulator_ena_gpio_free(rdev);
Jon Hunter45389c42016-04-26 11:29:45 +01004120 mutex_unlock(&regulator_list_mutex);
David Brownell4fca9542008-11-11 17:38:53 -08004121clean:
4122 kfree(rdev);
Jon Huntera2151372016-03-30 17:09:13 +01004123 kfree(config);
4124 return ERR_PTR(ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004125}
4126EXPORT_SYMBOL_GPL(regulator_register);
4127
4128/**
4129 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00004130 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01004131 *
4132 * Called by regulator drivers to unregister a regulator.
4133 */
4134void regulator_unregister(struct regulator_dev *rdev)
4135{
4136 if (rdev == NULL)
4137 return;
4138
Mark Brown891636e2013-07-08 09:14:45 +01004139 if (rdev->supply) {
4140 while (rdev->use_count--)
4141 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01004142 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01004143 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01004144 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00004145 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07004146 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01004147 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02004148 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004149 list_del(&rdev->list);
Kim, Milof19b00d2013-02-18 06:50:39 +00004150 regulator_ena_gpio_free(rdev);
Mark Brown2c0a3032016-04-12 08:05:43 +01004151 mutex_unlock(&regulator_list_mutex);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01004152 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004153}
4154EXPORT_SYMBOL_GPL(regulator_unregister);
4155
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004156static int _regulator_suspend_prepare(struct device *dev, void *data)
4157{
4158 struct regulator_dev *rdev = dev_to_rdev(dev);
4159 const suspend_state_t *state = data;
4160 int ret;
4161
4162 mutex_lock(&rdev->mutex);
4163 ret = suspend_prepare(rdev, *state);
4164 mutex_unlock(&rdev->mutex);
4165
4166 return ret;
4167}
4168
Liam Girdwood414c70c2008-04-30 15:59:04 +01004169/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00004170 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01004171 * @state: system suspend state
4172 *
4173 * Configure each regulator with it's suspend operating parameters for state.
4174 * This will usually be called by machine suspend code prior to supending.
4175 */
4176int regulator_suspend_prepare(suspend_state_t state)
4177{
Liam Girdwood414c70c2008-04-30 15:59:04 +01004178 /* ON is handled by regulator active state */
4179 if (state == PM_SUSPEND_ON)
4180 return -EINVAL;
4181
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004182 return class_for_each_device(&regulator_class, NULL, &state,
4183 _regulator_suspend_prepare);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004184}
4185EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
4186
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004187static int _regulator_suspend_finish(struct device *dev, void *data)
4188{
4189 struct regulator_dev *rdev = dev_to_rdev(dev);
4190 int ret;
4191
4192 mutex_lock(&rdev->mutex);
4193 if (rdev->use_count > 0 || rdev->constraints->always_on) {
4194 if (!_regulator_is_enabled(rdev)) {
4195 ret = _regulator_do_enable(rdev);
4196 if (ret)
4197 dev_err(dev,
4198 "Failed to resume regulator %d\n",
4199 ret);
4200 }
4201 } else {
4202 if (!have_full_constraints())
4203 goto unlock;
4204 if (!_regulator_is_enabled(rdev))
4205 goto unlock;
4206
4207 ret = _regulator_do_disable(rdev);
4208 if (ret)
4209 dev_err(dev, "Failed to suspend regulator %d\n", ret);
4210 }
4211unlock:
4212 mutex_unlock(&rdev->mutex);
4213
4214 /* Keep processing regulators in spite of any errors */
4215 return 0;
4216}
4217
Liam Girdwood414c70c2008-04-30 15:59:04 +01004218/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09004219 * regulator_suspend_finish - resume regulators from system wide suspend
4220 *
4221 * Turn on regulators that might be turned off by regulator_suspend_prepare
4222 * and that should be turned on according to the regulators properties.
4223 */
4224int regulator_suspend_finish(void)
4225{
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004226 return class_for_each_device(&regulator_class, NULL, NULL,
4227 _regulator_suspend_finish);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09004228}
4229EXPORT_SYMBOL_GPL(regulator_suspend_finish);
4230
4231/**
Mark Brownca725562009-03-16 19:36:34 +00004232 * regulator_has_full_constraints - the system has fully specified constraints
4233 *
4234 * Calling this function will cause the regulator API to disable all
4235 * regulators which have a zero use count and don't have an always_on
4236 * constraint in a late_initcall.
4237 *
4238 * The intention is that this will become the default behaviour in a
4239 * future kernel release so users are encouraged to use this facility
4240 * now.
4241 */
4242void regulator_has_full_constraints(void)
4243{
4244 has_full_constraints = 1;
4245}
4246EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
4247
4248/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01004249 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00004250 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004251 *
4252 * Get rdev regulator driver private data. This call can be used in the
4253 * regulator driver context.
4254 */
4255void *rdev_get_drvdata(struct regulator_dev *rdev)
4256{
4257 return rdev->reg_data;
4258}
4259EXPORT_SYMBOL_GPL(rdev_get_drvdata);
4260
4261/**
4262 * regulator_get_drvdata - get regulator driver data
4263 * @regulator: regulator
4264 *
4265 * Get regulator driver private data. This call can be used in the consumer
4266 * driver context when non API regulator specific functions need to be called.
4267 */
4268void *regulator_get_drvdata(struct regulator *regulator)
4269{
4270 return regulator->rdev->reg_data;
4271}
4272EXPORT_SYMBOL_GPL(regulator_get_drvdata);
4273
4274/**
4275 * regulator_set_drvdata - set regulator driver data
4276 * @regulator: regulator
4277 * @data: data
4278 */
4279void regulator_set_drvdata(struct regulator *regulator, void *data)
4280{
4281 regulator->rdev->reg_data = data;
4282}
4283EXPORT_SYMBOL_GPL(regulator_set_drvdata);
4284
4285/**
4286 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00004287 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004288 */
4289int rdev_get_id(struct regulator_dev *rdev)
4290{
4291 return rdev->desc->id;
4292}
4293EXPORT_SYMBOL_GPL(rdev_get_id);
4294
Liam Girdwooda5766f12008-10-10 13:22:20 +01004295struct device *rdev_get_dev(struct regulator_dev *rdev)
4296{
4297 return &rdev->dev;
4298}
4299EXPORT_SYMBOL_GPL(rdev_get_dev);
4300
4301void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
4302{
4303 return reg_init_data->driver_data;
4304}
4305EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
4306
Mark Brownba55a972011-08-23 17:39:10 +01004307#ifdef CONFIG_DEBUG_FS
Haishan Zhoudbc55952017-06-30 11:43:42 +08004308static int supply_map_show(struct seq_file *sf, void *data)
Mark Brownba55a972011-08-23 17:39:10 +01004309{
Mark Brownba55a972011-08-23 17:39:10 +01004310 struct regulator_map *map;
4311
Mark Brownba55a972011-08-23 17:39:10 +01004312 list_for_each_entry(map, &regulator_map_list, list) {
Haishan Zhoudbc55952017-06-30 11:43:42 +08004313 seq_printf(sf, "%s -> %s.%s\n",
4314 rdev_get_name(map->regulator), map->dev_name,
4315 map->supply);
Mark Brownba55a972011-08-23 17:39:10 +01004316 }
4317
Haishan Zhoudbc55952017-06-30 11:43:42 +08004318 return 0;
4319}
Mark Brownba55a972011-08-23 17:39:10 +01004320
Haishan Zhoudbc55952017-06-30 11:43:42 +08004321static int supply_map_open(struct inode *inode, struct file *file)
4322{
4323 return single_open(file, supply_map_show, inode->i_private);
Mark Brownba55a972011-08-23 17:39:10 +01004324}
Stephen Boyd24751432012-02-20 22:50:42 -08004325#endif
Mark Brownba55a972011-08-23 17:39:10 +01004326
4327static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08004328#ifdef CONFIG_DEBUG_FS
Haishan Zhoudbc55952017-06-30 11:43:42 +08004329 .open = supply_map_open,
4330 .read = seq_read,
4331 .llseek = seq_lseek,
4332 .release = single_release,
Mark Brownba55a972011-08-23 17:39:10 +01004333#endif
Stephen Boyd24751432012-02-20 22:50:42 -08004334};
Mark Brownba55a972011-08-23 17:39:10 +01004335
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004336#ifdef CONFIG_DEBUG_FS
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004337struct summary_data {
4338 struct seq_file *s;
4339 struct regulator_dev *parent;
4340 int level;
4341};
4342
4343static void regulator_summary_show_subtree(struct seq_file *s,
4344 struct regulator_dev *rdev,
4345 int level);
4346
4347static int regulator_summary_show_children(struct device *dev, void *data)
4348{
4349 struct regulator_dev *rdev = dev_to_rdev(dev);
4350 struct summary_data *summary_data = data;
4351
4352 if (rdev->supply && rdev->supply->rdev == summary_data->parent)
4353 regulator_summary_show_subtree(summary_data->s, rdev,
4354 summary_data->level + 1);
4355
4356 return 0;
4357}
4358
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004359static void regulator_summary_show_subtree(struct seq_file *s,
4360 struct regulator_dev *rdev,
4361 int level)
4362{
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004363 struct regulation_constraints *c;
4364 struct regulator *consumer;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004365 struct summary_data summary_data;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004366
4367 if (!rdev)
4368 return;
4369
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004370 seq_printf(s, "%*s%-*s %3d %4d %6d ",
4371 level * 3 + 1, "",
4372 30 - level * 3, rdev_get_name(rdev),
4373 rdev->use_count, rdev->open_count, rdev->bypass_count);
4374
Heiko Stübner232960992015-04-10 13:48:41 +02004375 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
4376 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004377
4378 c = rdev->constraints;
4379 if (c) {
4380 switch (rdev->desc->type) {
4381 case REGULATOR_VOLTAGE:
4382 seq_printf(s, "%5dmV %5dmV ",
4383 c->min_uV / 1000, c->max_uV / 1000);
4384 break;
4385 case REGULATOR_CURRENT:
4386 seq_printf(s, "%5dmA %5dmA ",
4387 c->min_uA / 1000, c->max_uA / 1000);
4388 break;
4389 }
4390 }
4391
4392 seq_puts(s, "\n");
4393
4394 list_for_each_entry(consumer, &rdev->consumer_list, list) {
Leonard Cresteze42a46b2017-02-14 17:31:03 +02004395 if (consumer->dev && consumer->dev->class == &regulator_class)
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004396 continue;
4397
4398 seq_printf(s, "%*s%-*s ",
4399 (level + 1) * 3 + 1, "",
Leonard Cresteze42a46b2017-02-14 17:31:03 +02004400 30 - (level + 1) * 3,
4401 consumer->dev ? dev_name(consumer->dev) : "deviceless");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004402
4403 switch (rdev->desc->type) {
4404 case REGULATOR_VOLTAGE:
Heiko Stübner232960992015-04-10 13:48:41 +02004405 seq_printf(s, "%37dmV %5dmV",
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004406 consumer->min_uV / 1000,
4407 consumer->max_uV / 1000);
4408 break;
4409 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004410 break;
4411 }
4412
4413 seq_puts(s, "\n");
4414 }
4415
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004416 summary_data.s = s;
4417 summary_data.level = level;
4418 summary_data.parent = rdev;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004419
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004420 class_for_each_device(&regulator_class, NULL, &summary_data,
4421 regulator_summary_show_children);
4422}
4423
4424static int regulator_summary_show_roots(struct device *dev, void *data)
4425{
4426 struct regulator_dev *rdev = dev_to_rdev(dev);
4427 struct seq_file *s = data;
4428
4429 if (!rdev->supply)
4430 regulator_summary_show_subtree(s, rdev, 0);
4431
4432 return 0;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004433}
4434
4435static int regulator_summary_show(struct seq_file *s, void *data)
4436{
Heiko Stübner232960992015-04-10 13:48:41 +02004437 seq_puts(s, " regulator use open bypass voltage current min max\n");
4438 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004439
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004440 class_for_each_device(&regulator_class, NULL, s,
4441 regulator_summary_show_roots);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004442
4443 return 0;
4444}
4445
4446static int regulator_summary_open(struct inode *inode, struct file *file)
4447{
4448 return single_open(file, regulator_summary_show, inode->i_private);
4449}
4450#endif
4451
4452static const struct file_operations regulator_summary_fops = {
4453#ifdef CONFIG_DEBUG_FS
4454 .open = regulator_summary_open,
4455 .read = seq_read,
4456 .llseek = seq_lseek,
4457 .release = single_release,
4458#endif
4459};
4460
Liam Girdwood414c70c2008-04-30 15:59:04 +01004461static int __init regulator_init(void)
4462{
Mark Brown34abbd62010-02-12 10:18:08 +00004463 int ret;
4464
Mark Brown34abbd62010-02-12 10:18:08 +00004465 ret = class_register(&regulator_class);
4466
Mark Brown1130e5b2010-12-21 23:49:31 +00004467 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004468 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004469 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004470
Mark Brownf4d562c2012-02-20 21:01:04 +00004471 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4472 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004473
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004474 debugfs_create_file("regulator_summary", 0444, debugfs_root,
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004475 NULL, &regulator_summary_fops);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004476
Mark Brown34abbd62010-02-12 10:18:08 +00004477 regulator_dummy_init();
4478
4479 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004480}
4481
4482/* init early to allow our consumers to complete system booting */
4483core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004484
Mark Brown609ca5f2015-08-10 19:43:47 +01004485static int __init regulator_late_cleanup(struct device *dev, void *data)
Mark Brownca725562009-03-16 19:36:34 +00004486{
Mark Brown609ca5f2015-08-10 19:43:47 +01004487 struct regulator_dev *rdev = dev_to_rdev(dev);
4488 const struct regulator_ops *ops = rdev->desc->ops;
4489 struct regulation_constraints *c = rdev->constraints;
Mark Brownca725562009-03-16 19:36:34 +00004490 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004491
Mark Brown609ca5f2015-08-10 19:43:47 +01004492 if (c && c->always_on)
4493 return 0;
4494
WEN Pingbo8a34e972016-04-23 15:11:05 +08004495 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS))
Mark Brown609ca5f2015-08-10 19:43:47 +01004496 return 0;
4497
4498 mutex_lock(&rdev->mutex);
4499
4500 if (rdev->use_count)
4501 goto unlock;
4502
4503 /* If we can't read the status assume it's on. */
4504 if (ops->is_enabled)
4505 enabled = ops->is_enabled(rdev);
4506 else
4507 enabled = 1;
4508
4509 if (!enabled)
4510 goto unlock;
4511
4512 if (have_full_constraints()) {
4513 /* We log since this may kill the system if it goes
4514 * wrong. */
4515 rdev_info(rdev, "disabling\n");
4516 ret = _regulator_do_disable(rdev);
4517 if (ret != 0)
4518 rdev_err(rdev, "couldn't disable: %d\n", ret);
4519 } else {
4520 /* The intention is that in future we will
4521 * assume that full constraints are provided
4522 * so warn even if we aren't going to do
4523 * anything here.
4524 */
4525 rdev_warn(rdev, "incomplete constraints, leaving on\n");
4526 }
4527
4528unlock:
4529 mutex_unlock(&rdev->mutex);
4530
4531 return 0;
4532}
4533
4534static int __init regulator_init_complete(void)
4535{
Mark Brown86f5fcf2012-07-06 18:19:13 +01004536 /*
4537 * Since DT doesn't provide an idiomatic mechanism for
4538 * enabling full constraints and since it's much more natural
4539 * with DT to provide them just assume that a DT enabled
4540 * system has full constraints.
4541 */
4542 if (of_have_populated_dt())
4543 has_full_constraints = true;
4544
Javier Martinez Canillas3827b642017-02-16 14:30:02 -03004545 /*
4546 * Regulators may had failed to resolve their input supplies
4547 * when were registered, either because the input supply was
4548 * not registered yet or because its parent device was not
4549 * bound yet. So attempt to resolve the input supplies for
4550 * pending regulators before trying to disable unused ones.
4551 */
4552 class_for_each_device(&regulator_class, NULL, NULL,
4553 regulator_register_resolve_supply);
4554
Mark Brownca725562009-03-16 19:36:34 +00004555 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004556 * we have permission to change the status for and which are
4557 * not in use or always_on. This is effectively the default
4558 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004559 */
Mark Brown609ca5f2015-08-10 19:43:47 +01004560 class_for_each_device(&regulator_class, NULL, NULL,
4561 regulator_late_cleanup);
Mark Brownca725562009-03-16 19:36:34 +00004562
4563 return 0;
4564}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004565late_initcall_sync(regulator_init_complete);