blob: 6ed568b96c0ec1edf77cc2b4059c36d51b58cb93 [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/**
Maciej Purski66cf9a72018-04-23 16:33:37 +0200150 * regulator_lock_nested - lock a single regulator
151 * @rdev: regulator source
152 * @subclass: mutex subclass used for lockdep
153 *
154 * This function can be called many times by one task on
155 * a single regulator and its mutex will be locked only
156 * once. If a task, which is calling this function is other
157 * than the one, which initially locked the mutex, it will
158 * wait on mutex.
159 */
160static void regulator_lock_nested(struct regulator_dev *rdev,
161 unsigned int subclass)
162{
163 if (!mutex_trylock(&rdev->mutex)) {
164 if (rdev->mutex_owner == current) {
165 rdev->ref_cnt++;
166 return;
167 }
168 mutex_lock_nested(&rdev->mutex, subclass);
169 }
170
171 rdev->ref_cnt = 1;
172 rdev->mutex_owner = current;
173}
174
175static inline void regulator_lock(struct regulator_dev *rdev)
176{
177 regulator_lock_nested(rdev, 0);
178}
179
180/**
181 * regulator_unlock - unlock a single regulator
182 * @rdev: regulator_source
183 *
184 * This function unlocks the mutex when the
185 * reference counter reaches 0.
186 */
187static void regulator_unlock(struct regulator_dev *rdev)
188{
189 if (rdev->ref_cnt != 0) {
190 rdev->ref_cnt--;
191
192 if (!rdev->ref_cnt) {
193 rdev->mutex_owner = NULL;
194 mutex_unlock(&rdev->mutex);
195 }
196 }
197}
198
Mark Brown38de19f2018-05-30 15:20:03 +0100199/**
200 * regulator_lock_supply - lock a regulator and its supplies
201 * @rdev: regulator source
202 */
203static void regulator_lock_supply(struct regulator_dev *rdev)
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200204{
Arnd Bergmannfa731ac2015-11-20 15:24:39 +0100205 int i;
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200206
Mark Brown38de19f2018-05-30 15:20:03 +0100207 for (i = 0; rdev; rdev = rdev_get_supply(rdev), i++)
208 regulator_lock_nested(rdev, i);
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200209}
210
211/**
Mark Brown38de19f2018-05-30 15:20:03 +0100212 * regulator_unlock_supply - unlock a regulator and its supplies
213 * @rdev: regulator source
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200214 */
Mark Brown38de19f2018-05-30 15:20:03 +0100215static void regulator_unlock_supply(struct regulator_dev *rdev)
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200216{
Mark Brown38de19f2018-05-30 15:20:03 +0100217 struct regulator *supply;
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200218
Mark Brown38de19f2018-05-30 15:20:03 +0100219 while (1) {
220 regulator_unlock(rdev);
221 supply = rdev->supply;
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200222
Mark Brown38de19f2018-05-30 15:20:03 +0100223 if (!rdev->supply)
224 return;
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200225
Mark Brown38de19f2018-05-30 15:20:03 +0100226 rdev = supply->rdev;
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200227 }
228}
229
230/**
Rajendra Nayak69511a42011-11-18 16:47:20 +0530231 * of_get_regulator - get a regulator device node based on supply name
232 * @dev: Device pointer for the consumer (of regulator) device
233 * @supply: regulator supply name
234 *
235 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100236 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530237 * returns NULL.
238 */
239static struct device_node *of_get_regulator(struct device *dev, const char *supply)
240{
241 struct device_node *regnode = NULL;
242 char prop_name[32]; /* 32 is max size of property name */
243
244 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
245
246 snprintf(prop_name, 32, "%s-supply", supply);
247 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
248
249 if (!regnode) {
Rob Herring77991672017-07-18 16:43:26 -0500250 dev_dbg(dev, "Looking up %s property in node %pOF failed\n",
251 prop_name, dev->of_node);
Rajendra Nayak69511a42011-11-18 16:47:20 +0530252 return NULL;
253 }
254 return regnode;
255}
256
Liam Girdwood414c70c2008-04-30 15:59:04 +0100257/* Platform voltage constraint check */
258static int regulator_check_voltage(struct regulator_dev *rdev,
259 int *min_uV, int *max_uV)
260{
261 BUG_ON(*min_uV > *max_uV);
262
WEN Pingbo8a34e972016-04-23 15:11:05 +0800263 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700264 rdev_err(rdev, "voltage operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100265 return -EPERM;
266 }
267
268 if (*max_uV > rdev->constraints->max_uV)
269 *max_uV = rdev->constraints->max_uV;
270 if (*min_uV < rdev->constraints->min_uV)
271 *min_uV = rdev->constraints->min_uV;
272
Mark Brown89f425e2011-07-12 11:20:37 +0900273 if (*min_uV > *max_uV) {
274 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100275 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100276 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900277 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100278
279 return 0;
280}
281
Chunyan Zhangf7efad12018-01-26 21:08:47 +0800282/* return 0 if the state is valid */
283static int regulator_check_states(suspend_state_t state)
284{
285 return (state > PM_SUSPEND_MAX || state == PM_SUSPEND_TO_IDLE);
286}
287
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100288/* Make sure we select a voltage that suits the needs of all
289 * regulator consumers
290 */
291static int regulator_check_consumers(struct regulator_dev *rdev,
Chunyan Zhangc360a6d2018-01-26 21:08:44 +0800292 int *min_uV, int *max_uV,
293 suspend_state_t state)
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100294{
295 struct regulator *regulator;
Chunyan Zhangc360a6d2018-01-26 21:08:44 +0800296 struct regulator_voltage *voltage;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100297
298 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Chunyan Zhangc360a6d2018-01-26 21:08:44 +0800299 voltage = &regulator->voltage[state];
Mark Brown4aa922c2011-05-14 13:42:34 -0700300 /*
301 * Assume consumers that didn't say anything are OK
302 * with anything in the constraint range.
303 */
Chunyan Zhangc360a6d2018-01-26 21:08:44 +0800304 if (!voltage->min_uV && !voltage->max_uV)
Mark Brown4aa922c2011-05-14 13:42:34 -0700305 continue;
306
Chunyan Zhangc360a6d2018-01-26 21:08:44 +0800307 if (*max_uV > voltage->max_uV)
308 *max_uV = voltage->max_uV;
309 if (*min_uV < voltage->min_uV)
310 *min_uV = voltage->min_uV;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100311 }
312
Mark Browndd8004a2012-11-28 17:09:27 +0000313 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800314 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
315 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100316 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000317 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100318
319 return 0;
320}
321
Liam Girdwood414c70c2008-04-30 15:59:04 +0100322/* current constraint check */
323static int regulator_check_current_limit(struct regulator_dev *rdev,
324 int *min_uA, int *max_uA)
325{
326 BUG_ON(*min_uA > *max_uA);
327
WEN Pingbo8a34e972016-04-23 15:11:05 +0800328 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_CURRENT)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700329 rdev_err(rdev, "current operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100330 return -EPERM;
331 }
332
333 if (*max_uA > rdev->constraints->max_uA)
334 *max_uA = rdev->constraints->max_uA;
335 if (*min_uA < rdev->constraints->min_uA)
336 *min_uA = rdev->constraints->min_uA;
337
Mark Brown89f425e2011-07-12 11:20:37 +0900338 if (*min_uA > *max_uA) {
339 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100340 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100341 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900342 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100343
344 return 0;
345}
346
347/* operating mode constraint check */
Charles Keepax109c75a2016-11-29 11:50:03 +0000348static int regulator_mode_constrain(struct regulator_dev *rdev,
349 unsigned int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100350{
Mark Brown2c608232011-03-30 06:29:12 +0900351 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800352 case REGULATOR_MODE_FAST:
353 case REGULATOR_MODE_NORMAL:
354 case REGULATOR_MODE_IDLE:
355 case REGULATOR_MODE_STANDBY:
356 break;
357 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900358 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800359 return -EINVAL;
360 }
361
WEN Pingbo8a34e972016-04-23 15:11:05 +0800362 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_MODE)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700363 rdev_err(rdev, "mode operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100364 return -EPERM;
365 }
Mark Brown2c608232011-03-30 06:29:12 +0900366
367 /* The modes are bitmasks, the most power hungry modes having
368 * the lowest values. If the requested mode isn't supported
369 * try higher modes. */
370 while (*mode) {
371 if (rdev->constraints->valid_modes_mask & *mode)
372 return 0;
373 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100374 }
Mark Brown2c608232011-03-30 06:29:12 +0900375
376 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100377}
378
Chunyan Zhangf7efad12018-01-26 21:08:47 +0800379static inline struct regulator_state *
380regulator_get_suspend_state(struct regulator_dev *rdev, suspend_state_t state)
381{
382 if (rdev->constraints == NULL)
383 return NULL;
384
385 switch (state) {
386 case PM_SUSPEND_STANDBY:
387 return &rdev->constraints->state_standby;
388 case PM_SUSPEND_MEM:
389 return &rdev->constraints->state_mem;
390 case PM_SUSPEND_MAX:
391 return &rdev->constraints->state_disk;
392 default:
393 return NULL;
394 }
395}
396
Liam Girdwood414c70c2008-04-30 15:59:04 +0100397static ssize_t regulator_uV_show(struct device *dev,
398 struct device_attribute *attr, char *buf)
399{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100400 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100401 ssize_t ret;
402
Maciej Purski66cf9a72018-04-23 16:33:37 +0200403 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100404 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
Maciej Purski66cf9a72018-04-23 16:33:37 +0200405 regulator_unlock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100406
407 return ret;
408}
David Brownell7ad68e22008-11-11 17:39:02 -0800409static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100410
411static ssize_t regulator_uA_show(struct device *dev,
412 struct device_attribute *attr, char *buf)
413{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100414 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100415
416 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
417}
David Brownell7ad68e22008-11-11 17:39:02 -0800418static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100419
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700420static ssize_t name_show(struct device *dev, struct device_attribute *attr,
421 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100422{
423 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100424
Mark Brown1083c392009-10-22 16:31:32 +0100425 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100426}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700427static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100428
David Brownell4fca9542008-11-11 17:38:53 -0800429static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100430{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100431 switch (mode) {
432 case REGULATOR_MODE_FAST:
433 return sprintf(buf, "fast\n");
434 case REGULATOR_MODE_NORMAL:
435 return sprintf(buf, "normal\n");
436 case REGULATOR_MODE_IDLE:
437 return sprintf(buf, "idle\n");
438 case REGULATOR_MODE_STANDBY:
439 return sprintf(buf, "standby\n");
440 }
441 return sprintf(buf, "unknown\n");
442}
443
David Brownell4fca9542008-11-11 17:38:53 -0800444static ssize_t regulator_opmode_show(struct device *dev,
445 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100446{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100447 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100448
David Brownell4fca9542008-11-11 17:38:53 -0800449 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
450}
David Brownell7ad68e22008-11-11 17:39:02 -0800451static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800452
453static ssize_t regulator_print_state(char *buf, int state)
454{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100455 if (state > 0)
456 return sprintf(buf, "enabled\n");
457 else if (state == 0)
458 return sprintf(buf, "disabled\n");
459 else
460 return sprintf(buf, "unknown\n");
461}
462
David Brownell4fca9542008-11-11 17:38:53 -0800463static ssize_t regulator_state_show(struct device *dev,
464 struct device_attribute *attr, char *buf)
465{
466 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100467 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800468
Maciej Purski66cf9a72018-04-23 16:33:37 +0200469 regulator_lock(rdev);
Mark Brown93325462009-08-03 18:49:56 +0100470 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
Maciej Purski66cf9a72018-04-23 16:33:37 +0200471 regulator_unlock(rdev);
Mark Brown93325462009-08-03 18:49:56 +0100472
473 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800474}
David Brownell7ad68e22008-11-11 17:39:02 -0800475static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800476
David Brownell853116a2009-01-14 23:03:17 -0800477static ssize_t regulator_status_show(struct device *dev,
478 struct device_attribute *attr, char *buf)
479{
480 struct regulator_dev *rdev = dev_get_drvdata(dev);
481 int status;
482 char *label;
483
484 status = rdev->desc->ops->get_status(rdev);
485 if (status < 0)
486 return status;
487
488 switch (status) {
489 case REGULATOR_STATUS_OFF:
490 label = "off";
491 break;
492 case REGULATOR_STATUS_ON:
493 label = "on";
494 break;
495 case REGULATOR_STATUS_ERROR:
496 label = "error";
497 break;
498 case REGULATOR_STATUS_FAST:
499 label = "fast";
500 break;
501 case REGULATOR_STATUS_NORMAL:
502 label = "normal";
503 break;
504 case REGULATOR_STATUS_IDLE:
505 label = "idle";
506 break;
507 case REGULATOR_STATUS_STANDBY:
508 label = "standby";
509 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700510 case REGULATOR_STATUS_BYPASS:
511 label = "bypass";
512 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100513 case REGULATOR_STATUS_UNDEFINED:
514 label = "undefined";
515 break;
David Brownell853116a2009-01-14 23:03:17 -0800516 default:
517 return -ERANGE;
518 }
519
520 return sprintf(buf, "%s\n", label);
521}
522static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
523
Liam Girdwood414c70c2008-04-30 15:59:04 +0100524static ssize_t regulator_min_uA_show(struct device *dev,
525 struct device_attribute *attr, char *buf)
526{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100527 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100528
529 if (!rdev->constraints)
530 return sprintf(buf, "constraint not defined\n");
531
532 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
533}
David Brownell7ad68e22008-11-11 17:39:02 -0800534static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100535
536static ssize_t regulator_max_uA_show(struct device *dev,
537 struct device_attribute *attr, char *buf)
538{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100539 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100540
541 if (!rdev->constraints)
542 return sprintf(buf, "constraint not defined\n");
543
544 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
545}
David Brownell7ad68e22008-11-11 17:39:02 -0800546static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100547
548static ssize_t regulator_min_uV_show(struct device *dev,
549 struct device_attribute *attr, char *buf)
550{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100551 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100552
553 if (!rdev->constraints)
554 return sprintf(buf, "constraint not defined\n");
555
556 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
557}
David Brownell7ad68e22008-11-11 17:39:02 -0800558static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100559
560static ssize_t regulator_max_uV_show(struct device *dev,
561 struct device_attribute *attr, char *buf)
562{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100563 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100564
565 if (!rdev->constraints)
566 return sprintf(buf, "constraint not defined\n");
567
568 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
569}
David Brownell7ad68e22008-11-11 17:39:02 -0800570static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100571
572static ssize_t regulator_total_uA_show(struct device *dev,
573 struct device_attribute *attr, char *buf)
574{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100575 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100576 struct regulator *regulator;
577 int uA = 0;
578
Maciej Purski66cf9a72018-04-23 16:33:37 +0200579 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100580 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100581 uA += regulator->uA_load;
Maciej Purski66cf9a72018-04-23 16:33:37 +0200582 regulator_unlock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100583 return sprintf(buf, "%d\n", uA);
584}
David Brownell7ad68e22008-11-11 17:39:02 -0800585static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100586
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700587static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
588 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100589{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100590 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100591 return sprintf(buf, "%d\n", rdev->use_count);
592}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700593static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100594
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700595static ssize_t type_show(struct device *dev, struct device_attribute *attr,
596 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100597{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100598 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100599
600 switch (rdev->desc->type) {
601 case REGULATOR_VOLTAGE:
602 return sprintf(buf, "voltage\n");
603 case REGULATOR_CURRENT:
604 return sprintf(buf, "current\n");
605 }
606 return sprintf(buf, "unknown\n");
607}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700608static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100609
610static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
611 struct device_attribute *attr, char *buf)
612{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100613 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100614
Liam Girdwood414c70c2008-04-30 15:59:04 +0100615 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
616}
David Brownell7ad68e22008-11-11 17:39:02 -0800617static DEVICE_ATTR(suspend_mem_microvolts, 0444,
618 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100619
620static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
621 struct device_attribute *attr, char *buf)
622{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100623 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100624
Liam Girdwood414c70c2008-04-30 15:59:04 +0100625 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
626}
David Brownell7ad68e22008-11-11 17:39:02 -0800627static DEVICE_ATTR(suspend_disk_microvolts, 0444,
628 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100629
630static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
631 struct device_attribute *attr, char *buf)
632{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100633 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100634
Liam Girdwood414c70c2008-04-30 15:59:04 +0100635 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
636}
David Brownell7ad68e22008-11-11 17:39:02 -0800637static DEVICE_ATTR(suspend_standby_microvolts, 0444,
638 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100639
Liam Girdwood414c70c2008-04-30 15:59:04 +0100640static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
641 struct device_attribute *attr, char *buf)
642{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100643 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100644
David Brownell4fca9542008-11-11 17:38:53 -0800645 return regulator_print_opmode(buf,
646 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100647}
David Brownell7ad68e22008-11-11 17:39:02 -0800648static DEVICE_ATTR(suspend_mem_mode, 0444,
649 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100650
651static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
652 struct device_attribute *attr, char *buf)
653{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100654 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100655
David Brownell4fca9542008-11-11 17:38:53 -0800656 return regulator_print_opmode(buf,
657 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100658}
David Brownell7ad68e22008-11-11 17:39:02 -0800659static DEVICE_ATTR(suspend_disk_mode, 0444,
660 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100661
662static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
663 struct device_attribute *attr, char *buf)
664{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100665 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100666
David Brownell4fca9542008-11-11 17:38:53 -0800667 return regulator_print_opmode(buf,
668 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100669}
David Brownell7ad68e22008-11-11 17:39:02 -0800670static DEVICE_ATTR(suspend_standby_mode, 0444,
671 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100672
673static ssize_t regulator_suspend_mem_state_show(struct device *dev,
674 struct device_attribute *attr, char *buf)
675{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100676 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100677
David Brownell4fca9542008-11-11 17:38:53 -0800678 return regulator_print_state(buf,
679 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100680}
David Brownell7ad68e22008-11-11 17:39:02 -0800681static DEVICE_ATTR(suspend_mem_state, 0444,
682 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100683
684static ssize_t regulator_suspend_disk_state_show(struct device *dev,
685 struct device_attribute *attr, char *buf)
686{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100687 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100688
David Brownell4fca9542008-11-11 17:38:53 -0800689 return regulator_print_state(buf,
690 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100691}
David Brownell7ad68e22008-11-11 17:39:02 -0800692static DEVICE_ATTR(suspend_disk_state, 0444,
693 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100694
695static ssize_t regulator_suspend_standby_state_show(struct device *dev,
696 struct device_attribute *attr, char *buf)
697{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100698 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100699
David Brownell4fca9542008-11-11 17:38:53 -0800700 return regulator_print_state(buf,
701 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100702}
David Brownell7ad68e22008-11-11 17:39:02 -0800703static DEVICE_ATTR(suspend_standby_state, 0444,
704 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100705
Mark Brownf59c8f92012-08-31 10:36:37 -0700706static ssize_t regulator_bypass_show(struct device *dev,
707 struct device_attribute *attr, char *buf)
708{
709 struct regulator_dev *rdev = dev_get_drvdata(dev);
710 const char *report;
711 bool bypass;
712 int ret;
713
714 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
715
716 if (ret != 0)
717 report = "unknown";
718 else if (bypass)
719 report = "enabled";
720 else
721 report = "disabled";
722
723 return sprintf(buf, "%s\n", report);
724}
725static DEVICE_ATTR(bypass, 0444,
726 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800727
Liam Girdwood414c70c2008-04-30 15:59:04 +0100728/* Calculate the new optimum regulator operating mode based on the new total
729 * consumer load. All locks held by caller */
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800730static int drms_uA_update(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100731{
732 struct regulator *sibling;
733 int current_uA = 0, output_uV, input_uV, err;
734 unsigned int mode;
735
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +0900736 lockdep_assert_held_once(&rdev->mutex);
737
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800738 /*
739 * first check to see if we can set modes at all, otherwise just
740 * tell the consumer everything is OK.
741 */
WEN Pingbo8a34e972016-04-23 15:11:05 +0800742 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_DRMS))
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800743 return 0;
744
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800745 if (!rdev->desc->ops->get_optimum_mode &&
746 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800747 return 0;
748
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800749 if (!rdev->desc->ops->set_mode &&
750 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800751 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100752
Liam Girdwood414c70c2008-04-30 15:59:04 +0100753 /* calc total requested load */
754 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100755 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100756
Stephen Boyd22a10bc2015-06-11 17:37:03 -0700757 current_uA += rdev->constraints->system_load;
758
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800759 if (rdev->desc->ops->set_load) {
760 /* set the optimum mode for our new total regulator load */
761 err = rdev->desc->ops->set_load(rdev, current_uA);
762 if (err < 0)
763 rdev_err(rdev, "failed to set load %d\n", current_uA);
764 } else {
Joonwoo Park57776612016-09-19 14:46:54 -0700765 /* get output voltage */
766 output_uV = _regulator_get_voltage(rdev);
767 if (output_uV <= 0) {
768 rdev_err(rdev, "invalid output voltage found\n");
769 return -EINVAL;
770 }
771
772 /* get input voltage */
773 input_uV = 0;
774 if (rdev->supply)
775 input_uV = regulator_get_voltage(rdev->supply);
776 if (input_uV <= 0)
777 input_uV = rdev->constraints->input_uV;
778 if (input_uV <= 0) {
779 rdev_err(rdev, "invalid input voltage found\n");
780 return -EINVAL;
781 }
782
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800783 /* now get the optimum mode for our new total regulator load */
784 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
785 output_uV, current_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100786
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800787 /* check the new mode is allowed */
788 err = regulator_mode_constrain(rdev, &mode);
789 if (err < 0) {
790 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
791 current_uA, input_uV, output_uV);
792 return err;
793 }
794
795 err = rdev->desc->ops->set_mode(rdev, mode);
796 if (err < 0)
797 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800798 }
799
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800800 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100801}
802
803static int suspend_set_state(struct regulator_dev *rdev,
Chunyan Zhangf7efad12018-01-26 21:08:47 +0800804 suspend_state_t state)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100805{
806 int ret = 0;
Chunyan Zhangf7efad12018-01-26 21:08:47 +0800807 struct regulator_state *rstate;
808
809 rstate = regulator_get_suspend_state(rdev, state);
810 if (rstate == NULL)
Mark Brown57a0dd12018-01-30 12:16:31 +0000811 return 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100812
813 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800814 * only warn if the driver implements set_suspend_voltage or
815 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100816 */
Chunyan Zhang72069f92018-01-26 21:08:45 +0800817 if (rstate->enabled != ENABLE_IN_SUSPEND &&
818 rstate->enabled != DISABLE_IN_SUSPEND) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800819 if (rdev->desc->ops->set_suspend_voltage ||
820 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800821 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100822 return 0;
823 }
824
Chunyan Zhang72069f92018-01-26 21:08:45 +0800825 if (rstate->enabled == ENABLE_IN_SUSPEND &&
826 rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100827 ret = rdev->desc->ops->set_suspend_enable(rdev);
Chunyan Zhang72069f92018-01-26 21:08:45 +0800828 else if (rstate->enabled == DISABLE_IN_SUSPEND &&
829 rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100830 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800831 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
832 ret = 0;
833
Liam Girdwood414c70c2008-04-30 15:59:04 +0100834 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800835 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100836 return ret;
837 }
838
839 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
840 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
841 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800842 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100843 return ret;
844 }
845 }
846
847 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
848 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
849 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800850 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100851 return ret;
852 }
853 }
Chunyan Zhangf7efad12018-01-26 21:08:47 +0800854
Liam Girdwood414c70c2008-04-30 15:59:04 +0100855 return ret;
856}
857
Liam Girdwood414c70c2008-04-30 15:59:04 +0100858static void print_constraints(struct regulator_dev *rdev)
859{
860 struct regulation_constraints *constraints = rdev->constraints;
Stefan Wahrena7068e32015-06-09 20:09:42 +0000861 char buf[160] = "";
Stefan Wahren5751a992015-06-10 06:13:15 +0000862 size_t len = sizeof(buf) - 1;
Mark Brown8f031b42009-10-22 16:31:31 +0100863 int count = 0;
864 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100865
Mark Brown8f031b42009-10-22 16:31:31 +0100866 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100867 if (constraints->min_uV == constraints->max_uV)
Stefan Wahren5751a992015-06-10 06:13:15 +0000868 count += scnprintf(buf + count, len - count, "%d mV ",
869 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100870 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000871 count += scnprintf(buf + count, len - count,
872 "%d <--> %d mV ",
873 constraints->min_uV / 1000,
874 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100875 }
Mark Brown8f031b42009-10-22 16:31:31 +0100876
877 if (!constraints->min_uV ||
878 constraints->min_uV != constraints->max_uV) {
879 ret = _regulator_get_voltage(rdev);
880 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000881 count += scnprintf(buf + count, len - count,
882 "at %d mV ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100883 }
884
Mark Brownbf5892a2011-05-08 22:13:37 +0100885 if (constraints->uV_offset)
Stefan Wahren5751a992015-06-10 06:13:15 +0000886 count += scnprintf(buf + count, len - count, "%dmV offset ",
887 constraints->uV_offset / 1000);
Mark Brownbf5892a2011-05-08 22:13:37 +0100888
Mark Brown8f031b42009-10-22 16:31:31 +0100889 if (constraints->min_uA && constraints->max_uA) {
890 if (constraints->min_uA == constraints->max_uA)
Stefan Wahren5751a992015-06-10 06:13:15 +0000891 count += scnprintf(buf + count, len - count, "%d mA ",
892 constraints->min_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100893 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000894 count += scnprintf(buf + count, len - count,
895 "%d <--> %d mA ",
896 constraints->min_uA / 1000,
897 constraints->max_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100898 }
899
900 if (!constraints->min_uA ||
901 constraints->min_uA != constraints->max_uA) {
902 ret = _regulator_get_current_limit(rdev);
903 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000904 count += scnprintf(buf + count, len - count,
905 "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100906 }
907
Liam Girdwood414c70c2008-04-30 15:59:04 +0100908 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
Stefan Wahren5751a992015-06-10 06:13:15 +0000909 count += scnprintf(buf + count, len - count, "fast ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100910 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
Stefan Wahren5751a992015-06-10 06:13:15 +0000911 count += scnprintf(buf + count, len - count, "normal ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100912 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
Stefan Wahren5751a992015-06-10 06:13:15 +0000913 count += scnprintf(buf + count, len - count, "idle ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100914 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
Stefan Wahren5751a992015-06-10 06:13:15 +0000915 count += scnprintf(buf + count, len - count, "standby");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100916
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200917 if (!count)
Stefan Wahren5751a992015-06-10 06:13:15 +0000918 scnprintf(buf, len, "no parameters");
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200919
Mark Brown194dbae2014-10-31 19:11:59 +0000920 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000921
922 if ((constraints->min_uV != constraints->max_uV) &&
WEN Pingbo8a34e972016-04-23 15:11:05 +0800923 !regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE))
Mark Brown4a682922012-02-09 13:26:13 +0000924 rdev_warn(rdev,
925 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100926}
927
Mark Browne79055d2009-10-19 15:53:50 +0100928static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100929 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100930{
Guodong Xu272e2312014-08-13 19:33:38 +0800931 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100932 int ret;
933
934 /* do we need to apply the constraint voltage */
935 if (rdev->constraints->apply_uV &&
Mark Brownfa93fd42016-03-21 18:12:52 +0000936 rdev->constraints->min_uV && rdev->constraints->max_uV) {
937 int target_min, target_max;
Alban Bedel064d5cd2014-05-20 12:12:16 +0200938 int current_uV = _regulator_get_voltage(rdev);
Douglas Anderson84b3a7c2018-05-15 15:07:17 -0700939
940 if (current_uV == -ENOTRECOVERABLE) {
941 /* This regulator can't be read and must be initted */
942 rdev_info(rdev, "Setting %d-%duV\n",
943 rdev->constraints->min_uV,
944 rdev->constraints->max_uV);
945 _regulator_do_set_voltage(rdev,
946 rdev->constraints->min_uV,
947 rdev->constraints->max_uV);
948 current_uV = _regulator_get_voltage(rdev);
949 }
950
Alban Bedel064d5cd2014-05-20 12:12:16 +0200951 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500952 rdev_err(rdev,
953 "failed to get the current voltage(%d)\n",
954 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200955 return current_uV;
956 }
Mark Brownfa93fd42016-03-21 18:12:52 +0000957
958 /*
959 * If we're below the minimum voltage move up to the
960 * minimum voltage, if we're above the maximum voltage
961 * then move down to the maximum.
962 */
963 target_min = current_uV;
964 target_max = current_uV;
965
966 if (current_uV < rdev->constraints->min_uV) {
967 target_min = rdev->constraints->min_uV;
968 target_max = rdev->constraints->min_uV;
969 }
970
971 if (current_uV > rdev->constraints->max_uV) {
972 target_min = rdev->constraints->max_uV;
973 target_max = rdev->constraints->max_uV;
974 }
975
976 if (target_min != current_uV || target_max != current_uV) {
Mark Brown45a91e82016-03-29 16:33:42 -0700977 rdev_info(rdev, "Bringing %duV into %d-%duV\n",
978 current_uV, target_min, target_max);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200979 ret = _regulator_do_set_voltage(
Mark Brownfa93fd42016-03-21 18:12:52 +0000980 rdev, target_min, target_max);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200981 if (ret < 0) {
982 rdev_err(rdev,
Mark Brownfa93fd42016-03-21 18:12:52 +0000983 "failed to apply %d-%duV constraint(%d)\n",
984 target_min, target_max, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200985 return ret;
986 }
Mark Brown75790252010-12-12 14:25:50 +0000987 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100988 }
Mark Browne79055d2009-10-19 15:53:50 +0100989
990 /* constrain machine-level voltage specs to fit
991 * the actual range supported by this regulator.
992 */
993 if (ops->list_voltage && rdev->desc->n_voltages) {
994 int count = rdev->desc->n_voltages;
995 int i;
996 int min_uV = INT_MAX;
997 int max_uV = INT_MIN;
998 int cmin = constraints->min_uV;
999 int cmax = constraints->max_uV;
1000
1001 /* it's safe to autoconfigure fixed-voltage supplies
1002 and the constraints are used by list_voltage. */
1003 if (count == 1 && !cmin) {
1004 cmin = 1;
1005 cmax = INT_MAX;
1006 constraints->min_uV = cmin;
1007 constraints->max_uV = cmax;
1008 }
1009
1010 /* voltage constraints are optional */
1011 if ((cmin == 0) && (cmax == 0))
1012 return 0;
1013
1014 /* else require explicit machine-level constraints */
1015 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001016 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +01001017 return -EINVAL;
1018 }
1019
1020 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
1021 for (i = 0; i < count; i++) {
1022 int value;
1023
1024 value = ops->list_voltage(rdev, i);
1025 if (value <= 0)
1026 continue;
1027
1028 /* maybe adjust [min_uV..max_uV] */
1029 if (value >= cmin && value < min_uV)
1030 min_uV = value;
1031 if (value <= cmax && value > max_uV)
1032 max_uV = value;
1033 }
1034
1035 /* final: [min_uV..max_uV] valid iff constraints valid */
1036 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +00001037 rdev_err(rdev,
1038 "unsupportable voltage constraints %u-%uuV\n",
1039 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +01001040 return -EINVAL;
1041 }
1042
1043 /* use regulator's subset of machine constraints */
1044 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001045 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
1046 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +01001047 constraints->min_uV = min_uV;
1048 }
1049 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001050 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
1051 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +01001052 constraints->max_uV = max_uV;
1053 }
1054 }
1055
1056 return 0;
1057}
1058
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301059static int machine_constraints_current(struct regulator_dev *rdev,
1060 struct regulation_constraints *constraints)
1061{
Guodong Xu272e2312014-08-13 19:33:38 +08001062 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301063 int ret;
1064
1065 if (!constraints->min_uA && !constraints->max_uA)
1066 return 0;
1067
1068 if (constraints->min_uA > constraints->max_uA) {
1069 rdev_err(rdev, "Invalid current constraints\n");
1070 return -EINVAL;
1071 }
1072
1073 if (!ops->set_current_limit || !ops->get_current_limit) {
1074 rdev_warn(rdev, "Operation of current configuration missing\n");
1075 return 0;
1076 }
1077
1078 /* Set regulator current in constraints range */
1079 ret = ops->set_current_limit(rdev, constraints->min_uA,
1080 constraints->max_uA);
1081 if (ret < 0) {
1082 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
1083 return ret;
1084 }
1085
1086 return 0;
1087}
1088
Markus Pargmann30c21972014-02-20 17:36:03 +01001089static int _regulator_do_enable(struct regulator_dev *rdev);
1090
Liam Girdwooda5766f12008-10-10 13:22:20 +01001091/**
1092 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +00001093 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +00001094 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001095 *
1096 * Allows platform initialisation code to define and constrain
1097 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
1098 * Constraints *must* be set by platform code in order for some
1099 * regulator operations to proceed i.e. set_voltage, set_current_limit,
1100 * set_mode.
1101 */
1102static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +00001103 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001104{
1105 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +08001106 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +01001107
Mark Brown9a8f5e02011-11-29 18:11:19 +00001108 if (constraints)
1109 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
1110 GFP_KERNEL);
1111 else
1112 rdev->constraints = kzalloc(sizeof(*constraints),
1113 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +00001114 if (!rdev->constraints)
1115 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001116
Mark Brownf8c12fe2010-11-29 15:55:17 +00001117 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001118 if (ret != 0)
Charles Keepax6333ef42016-01-26 16:38:59 +00001119 return ret;
David Brownell4367cfd2009-02-26 11:48:36 -08001120
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301121 ret = machine_constraints_current(rdev, rdev->constraints);
1122 if (ret != 0)
Charles Keepax6333ef42016-01-26 16:38:59 +00001123 return ret;
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301124
Stephen Boyd36e4f832015-06-11 17:37:06 -07001125 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1126 ret = ops->set_input_current_limit(rdev,
1127 rdev->constraints->ilim_uA);
1128 if (ret < 0) {
1129 rdev_err(rdev, "failed to set input limit\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001130 return ret;
Stephen Boyd36e4f832015-06-11 17:37:06 -07001131 }
1132 }
1133
Liam Girdwooda5766f12008-10-10 13:22:20 +01001134 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001135 if (rdev->constraints->initial_state) {
Chunyan Zhangf7efad12018-01-26 21:08:47 +08001136 ret = suspend_set_state(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001137 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001138 rdev_err(rdev, "failed to set suspend state\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001139 return ret;
Mark Browne06f5b42008-09-09 16:21:19 +01001140 }
1141 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001142
Mark Brown9a8f5e02011-11-29 18:11:19 +00001143 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001144 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001145 rdev_err(rdev, "no set_mode operation\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001146 return -EINVAL;
Mark Browna3084662009-02-26 19:24:19 +00001147 }
1148
Mark Brownf8c12fe2010-11-29 15:55:17 +00001149 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001150 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001151 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Charles Keepax6333ef42016-01-26 16:38:59 +00001152 return ret;
Mark Browna3084662009-02-26 19:24:19 +00001153 }
1154 }
1155
Mark Browncacf90f2009-03-02 16:32:46 +00001156 /* If the constraints say the regulator should be on at this point
1157 * and we have control then make sure it is enabled.
1158 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001159 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1160 ret = _regulator_do_enable(rdev);
1161 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001162 rdev_err(rdev, "failed to enable\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001163 return ret;
Mark Browne5fda262008-09-09 16:21:20 +01001164 }
1165 }
1166
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301167 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1168 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301169 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1170 if (ret < 0) {
1171 rdev_err(rdev, "failed to set ramp_delay\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001172 return ret;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301173 }
1174 }
1175
Stephen Boyd23c779b2015-06-11 17:37:04 -07001176 if (rdev->constraints->pull_down && ops->set_pull_down) {
1177 ret = ops->set_pull_down(rdev);
1178 if (ret < 0) {
1179 rdev_err(rdev, "failed to set pull down\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001180 return ret;
Stephen Boyd23c779b2015-06-11 17:37:04 -07001181 }
1182 }
1183
Stephen Boyd57f66b72015-06-11 17:37:05 -07001184 if (rdev->constraints->soft_start && ops->set_soft_start) {
1185 ret = ops->set_soft_start(rdev);
1186 if (ret < 0) {
1187 rdev_err(rdev, "failed to set soft start\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001188 return ret;
Stephen Boyd57f66b72015-06-11 17:37:05 -07001189 }
1190 }
1191
Stephen Boyd3a003ba2015-07-17 14:41:54 -07001192 if (rdev->constraints->over_current_protection
1193 && ops->set_over_current_protection) {
1194 ret = ops->set_over_current_protection(rdev);
1195 if (ret < 0) {
1196 rdev_err(rdev, "failed to set over current protection\n");
Charles Keepax6333ef42016-01-26 16:38:59 +00001197 return ret;
Stephen Boyd3a003ba2015-07-17 14:41:54 -07001198 }
1199 }
1200
Laxman Dewangan670666b2016-03-02 16:24:46 +05301201 if (rdev->constraints->active_discharge && ops->set_active_discharge) {
1202 bool ad_state = (rdev->constraints->active_discharge ==
1203 REGULATOR_ACTIVE_DISCHARGE_ENABLE) ? true : false;
1204
1205 ret = ops->set_active_discharge(rdev, ad_state);
1206 if (ret < 0) {
1207 rdev_err(rdev, "failed to set active discharge\n");
1208 return ret;
1209 }
1210 }
1211
Liam Girdwooda5766f12008-10-10 13:22:20 +01001212 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001213 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001214}
1215
1216/**
1217 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001218 * @rdev: regulator name
1219 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001220 *
1221 * Called by platform initialisation code to set the supply regulator for this
1222 * regulator. This ensures that a regulators supply will also be enabled by the
1223 * core if it's child is enabled.
1224 */
1225static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001226 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001227{
1228 int err;
1229
Mark Brown3801b862011-06-09 16:22:22 +01001230 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1231
Javier Martinez Canillase2c09ae2015-07-15 16:10:28 +02001232 if (!try_module_get(supply_rdev->owner))
1233 return -ENODEV;
1234
Mark Brown3801b862011-06-09 16:22:22 +01001235 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001236 if (rdev->supply == NULL) {
1237 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001238 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001239 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301240 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001241
1242 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001243}
1244
1245/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001246 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001247 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001248 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001249 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001250 *
1251 * Allows platform initialisation code to map physical regulator
1252 * sources to symbolic names for supplies for use by devices. Devices
1253 * should use these symbolic names to request regulators, avoiding the
1254 * need to provide board-specific regulator names as platform data.
1255 */
1256static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001257 const char *consumer_dev_name,
1258 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001259{
1260 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001261 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001262
1263 if (supply == NULL)
1264 return -EINVAL;
1265
Mark Brown9ed20992009-07-21 16:00:26 +01001266 if (consumer_dev_name != NULL)
1267 has_dev = 1;
1268 else
1269 has_dev = 0;
1270
David Brownell6001e132008-12-31 12:54:19 +00001271 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001272 if (node->dev_name && consumer_dev_name) {
1273 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1274 continue;
1275 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001276 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001277 }
1278
David Brownell6001e132008-12-31 12:54:19 +00001279 if (strcmp(node->supply, supply) != 0)
1280 continue;
1281
Mark Brown737f3602012-02-02 00:10:51 +00001282 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1283 consumer_dev_name,
1284 dev_name(&node->regulator->dev),
1285 node->regulator->desc->name,
1286 supply,
1287 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001288 return -EBUSY;
1289 }
1290
Mark Brown9ed20992009-07-21 16:00:26 +01001291 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001292 if (node == NULL)
1293 return -ENOMEM;
1294
1295 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001296 node->supply = supply;
1297
Mark Brown9ed20992009-07-21 16:00:26 +01001298 if (has_dev) {
1299 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1300 if (node->dev_name == NULL) {
1301 kfree(node);
1302 return -ENOMEM;
1303 }
Mark Brown40f92442009-06-17 17:56:39 +01001304 }
1305
Liam Girdwooda5766f12008-10-10 13:22:20 +01001306 list_add(&node->list, &regulator_map_list);
1307 return 0;
1308}
1309
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001310static void unset_regulator_supplies(struct regulator_dev *rdev)
1311{
1312 struct regulator_map *node, *n;
1313
1314 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1315 if (rdev == node->regulator) {
1316 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001317 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001318 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001319 }
1320 }
1321}
1322
Richard Fitzgerald2d80a912016-04-21 17:23:21 +01001323#ifdef CONFIG_DEBUG_FS
1324static ssize_t constraint_flags_read_file(struct file *file,
1325 char __user *user_buf,
1326 size_t count, loff_t *ppos)
1327{
1328 const struct regulator *regulator = file->private_data;
1329 const struct regulation_constraints *c = regulator->rdev->constraints;
1330 char *buf;
1331 ssize_t ret;
1332
1333 if (!c)
1334 return 0;
1335
1336 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1337 if (!buf)
1338 return -ENOMEM;
1339
1340 ret = snprintf(buf, PAGE_SIZE,
1341 "always_on: %u\n"
1342 "boot_on: %u\n"
1343 "apply_uV: %u\n"
1344 "ramp_disable: %u\n"
1345 "soft_start: %u\n"
1346 "pull_down: %u\n"
1347 "over_current_protection: %u\n",
1348 c->always_on,
1349 c->boot_on,
1350 c->apply_uV,
1351 c->ramp_disable,
1352 c->soft_start,
1353 c->pull_down,
1354 c->over_current_protection);
1355
1356 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1357 kfree(buf);
1358
1359 return ret;
1360}
1361
1362#endif
1363
1364static const struct file_operations constraint_flags_fops = {
1365#ifdef CONFIG_DEBUG_FS
1366 .open = simple_open,
1367 .read = constraint_flags_read_file,
1368 .llseek = default_llseek,
1369#endif
1370};
1371
Mark Brownf5726ae2011-06-09 16:22:20 +01001372#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001373
1374static struct regulator *create_regulator(struct regulator_dev *rdev,
1375 struct device *dev,
1376 const char *supply_name)
1377{
1378 struct regulator *regulator;
1379 char buf[REG_STR_SIZE];
1380 int err, size;
1381
1382 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1383 if (regulator == NULL)
1384 return NULL;
1385
Maciej Purski66cf9a72018-04-23 16:33:37 +02001386 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001387 regulator->rdev = rdev;
1388 list_add(&regulator->list, &rdev->consumer_list);
1389
1390 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001391 regulator->dev = dev;
1392
Mark Brown222cc7b2012-06-22 11:39:16 +01001393 /* Add a link to the device sysfs entry */
Bartosz Golaszewskib7cd1b12017-03-06 17:34:48 +01001394 size = snprintf(buf, REG_STR_SIZE, "%s-%s",
1395 dev->kobj.name, supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001396 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001397 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001398
1399 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1400 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001401 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001402
Stephen Boydff268b52015-06-01 18:47:54 -07001403 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
Liam Girdwood414c70c2008-04-30 15:59:04 +01001404 buf);
1405 if (err) {
Stephen Boydff268b52015-06-01 18:47:54 -07001406 rdev_dbg(rdev, "could not add device link %s err %d\n",
Joe Perches5da84fd2010-11-30 05:53:48 -08001407 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001408 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001409 }
Mark Brown5de70512011-06-19 13:33:16 +01001410 } else {
Stephen Boyd0630b612017-03-16 18:07:14 -07001411 regulator->supply_name = kstrdup_const(supply_name, GFP_KERNEL);
Mark Brown5de70512011-06-19 13:33:16 +01001412 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001413 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001414 }
Mark Brown5de70512011-06-19 13:33:16 +01001415
Mark Brown5de70512011-06-19 13:33:16 +01001416 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1417 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001418 if (!regulator->debugfs) {
Stephen Boydad3a9422015-06-01 18:47:55 -07001419 rdev_dbg(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001420 } else {
1421 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1422 &regulator->uA_load);
1423 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08001424 &regulator->voltage[PM_SUSPEND_ON].min_uV);
Mark Brown5de70512011-06-19 13:33:16 +01001425 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08001426 &regulator->voltage[PM_SUSPEND_ON].max_uV);
Richard Fitzgerald2d80a912016-04-21 17:23:21 +01001427 debugfs_create_file("constraint_flags", 0444,
1428 regulator->debugfs, regulator,
1429 &constraint_flags_fops);
Mark Brown5de70512011-06-19 13:33:16 +01001430 }
Mark Brown5de70512011-06-19 13:33:16 +01001431
Mark Brown6492bc12012-04-19 13:19:07 +01001432 /*
1433 * Check now if the regulator is an always on regulator - if
1434 * it is then we don't need to do nearly so much work for
1435 * enable/disable calls.
1436 */
WEN Pingbo8a34e972016-04-23 15:11:05 +08001437 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS) &&
Mark Brown6492bc12012-04-19 13:19:07 +01001438 _regulator_is_enabled(rdev))
1439 regulator->always_on = true;
1440
Maciej Purski66cf9a72018-04-23 16:33:37 +02001441 regulator_unlock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001442 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001443overflow_err:
1444 list_del(&regulator->list);
1445 kfree(regulator);
Maciej Purski66cf9a72018-04-23 16:33:37 +02001446 regulator_unlock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001447 return NULL;
1448}
1449
Mark Brown31aae2b2009-12-21 12:21:52 +00001450static int _regulator_get_enable_time(struct regulator_dev *rdev)
1451{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301452 if (rdev->constraints && rdev->constraints->enable_time)
1453 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001454 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001455 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001456 return rdev->desc->ops->enable_time(rdev);
1457}
1458
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001459static struct regulator_supply_alias *regulator_find_supply_alias(
1460 struct device *dev, const char *supply)
1461{
1462 struct regulator_supply_alias *map;
1463
1464 list_for_each_entry(map, &regulator_supply_alias_list, list)
1465 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1466 return map;
1467
1468 return NULL;
1469}
1470
1471static void regulator_supply_alias(struct device **dev, const char **supply)
1472{
1473 struct regulator_supply_alias *map;
1474
1475 map = regulator_find_supply_alias(*dev, *supply);
1476 if (map) {
1477 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1478 *supply, map->alias_supply,
1479 dev_name(map->alias_dev));
1480 *dev = map->alias_dev;
1481 *supply = map->alias_supply;
1482 }
1483}
1484
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001485static int regulator_match(struct device *dev, const void *data)
1486{
1487 struct regulator_dev *r = dev_to_rdev(dev);
1488
1489 return strcmp(rdev_get_name(r), data) == 0;
1490}
1491
1492static struct regulator_dev *regulator_lookup_by_name(const char *name)
1493{
1494 struct device *dev;
1495
1496 dev = class_find_device(&regulator_class, NULL, name, regulator_match);
1497
1498 return dev ? dev_to_rdev(dev) : NULL;
1499}
1500
1501/**
1502 * regulator_dev_lookup - lookup a regulator device.
1503 * @dev: device for regulator "consumer".
1504 * @supply: Supply name or regulator ID.
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001505 *
1506 * If successful, returns a struct regulator_dev that corresponds to the name
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001507 * @supply and with the embedded struct device refcount incremented by one.
1508 * The refcount must be dropped by calling put_device().
1509 * On failure one of the following ERR-PTR-encoded values is returned:
1510 * -ENODEV if lookup fails permanently, -EPROBE_DEFER if lookup could succeed
1511 * in the future.
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001512 */
Rajendra Nayak69511a42011-11-18 16:47:20 +05301513static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001514 const char *supply)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301515{
Charles Keepax06217192017-06-13 16:12:47 +01001516 struct regulator_dev *r = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301517 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001518 struct regulator_map *map;
1519 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301520
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001521 regulator_supply_alias(&dev, &supply);
1522
Rajendra Nayak69511a42011-11-18 16:47:20 +05301523 /* first do a dt based lookup */
1524 if (dev && dev->of_node) {
1525 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001526 if (node) {
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001527 r = of_find_regulator_by_node(node);
1528 if (r)
1529 return r;
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001530
Mark Brown6d191a52012-03-29 14:19:02 +01001531 /*
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001532 * We have a node, but there is no device.
1533 * assume it has not registered yet.
Mark Brown6d191a52012-03-29 14:19:02 +01001534 */
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001535 return ERR_PTR(-EPROBE_DEFER);
Mark Brown6d191a52012-03-29 14:19:02 +01001536 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301537 }
1538
1539 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001540 if (dev)
1541 devname = dev_name(dev);
1542
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001543 mutex_lock(&regulator_list_mutex);
Mark Brown576ca4362012-03-30 12:24:37 +01001544 list_for_each_entry(map, &regulator_map_list, list) {
1545 /* If the mapping has a device set up it must match */
1546 if (map->dev_name &&
1547 (!devname || strcmp(map->dev_name, devname)))
1548 continue;
1549
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001550 if (strcmp(map->supply, supply) == 0 &&
1551 get_device(&map->regulator->dev)) {
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001552 r = map->regulator;
1553 break;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001554 }
Mark Brown576ca4362012-03-30 12:24:37 +01001555 }
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001556 mutex_unlock(&regulator_list_mutex);
Mark Brown576ca4362012-03-30 12:24:37 +01001557
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001558 if (r)
1559 return r;
1560
Charles Keepax06217192017-06-13 16:12:47 +01001561 r = regulator_lookup_by_name(supply);
1562 if (r)
1563 return r;
1564
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001565 return ERR_PTR(-ENODEV);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301566}
1567
Bjorn Andersson6261b062015-03-24 18:56:05 -07001568static int regulator_resolve_supply(struct regulator_dev *rdev)
1569{
1570 struct regulator_dev *r;
1571 struct device *dev = rdev->dev.parent;
1572 int ret;
1573
1574 /* No supply to resovle? */
1575 if (!rdev->supply_name)
1576 return 0;
1577
1578 /* Supply already resolved? */
1579 if (rdev->supply)
1580 return 0;
1581
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001582 r = regulator_dev_lookup(dev, rdev->supply_name);
1583 if (IS_ERR(r)) {
1584 ret = PTR_ERR(r);
1585
Mark Brown06423122015-10-01 10:59:48 +01001586 /* Did the lookup explicitly defer for us? */
1587 if (ret == -EPROBE_DEFER)
1588 return ret;
1589
Mark Brown9f7e25e2015-07-14 11:17:26 +01001590 if (have_full_constraints()) {
1591 r = dummy_regulator_rdev;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001592 get_device(&r->dev);
Mark Brown9f7e25e2015-07-14 11:17:26 +01001593 } else {
1594 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1595 rdev->supply_name, rdev->desc->name);
1596 return -EPROBE_DEFER;
1597 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001598 }
1599
Jon Hunter66d228a2017-01-11 17:44:25 +00001600 /*
1601 * If the supply's parent device is not the same as the
1602 * regulator's parent device, then ensure the parent device
1603 * is bound before we resolve the supply, in case the parent
1604 * device get probe deferred and unregisters the supply.
1605 */
1606 if (r->dev.parent && r->dev.parent != rdev->dev.parent) {
1607 if (!device_is_bound(r->dev.parent)) {
1608 put_device(&r->dev);
1609 return -EPROBE_DEFER;
1610 }
1611 }
1612
Bjorn Andersson6261b062015-03-24 18:56:05 -07001613 /* Recursively resolve the supply of the supply */
1614 ret = regulator_resolve_supply(r);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001615 if (ret < 0) {
1616 put_device(&r->dev);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001617 return ret;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001618 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001619
1620 ret = set_supply(rdev, r);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001621 if (ret < 0) {
1622 put_device(&r->dev);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001623 return ret;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001624 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001625
1626 /* Cascade always-on state to supply */
Javier Martinez Canillas95a293c2016-03-20 23:29:45 -03001627 if (_regulator_is_enabled(rdev)) {
Bjorn Andersson6261b062015-03-24 18:56:05 -07001628 ret = regulator_enable(rdev->supply);
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +02001629 if (ret < 0) {
Sudip Mukherjee9f8df6a2015-09-02 16:14:06 +05301630 _regulator_put(rdev->supply);
Jon Hunter8e5356a2016-04-21 17:11:58 +01001631 rdev->supply = NULL;
Bjorn Andersson6261b062015-03-24 18:56:05 -07001632 return ret;
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +02001633 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001634 }
1635
1636 return 0;
1637}
1638
Mark Brown5ffbd132009-07-21 16:00:23 +01001639/* Internal regulator request function */
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001640struct regulator *_regulator_get(struct device *dev, const char *id,
1641 enum regulator_get_type get_type)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001642{
1643 struct regulator_dev *rdev;
Dmitry Torokhov7d245af2017-02-03 13:56:00 -08001644 struct regulator *regulator;
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001645 const char *devname = dev ? dev_name(dev) : "deviceless";
Mark Brown317b5682014-01-27 17:34:07 +00001646 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001647
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001648 if (get_type >= MAX_GET_TYPE) {
1649 dev_err(dev, "invalid type %d in %s\n", get_type, __func__);
1650 return ERR_PTR(-EINVAL);
1651 }
1652
Liam Girdwood414c70c2008-04-30 15:59:04 +01001653 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001654 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001655 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001656 }
1657
Dmitry Torokhov163478d2017-02-04 10:19:21 -08001658 rdev = regulator_dev_lookup(dev, id);
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001659 if (IS_ERR(rdev)) {
1660 ret = PTR_ERR(rdev);
Mark Brown40f92442009-06-17 17:56:39 +01001661
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001662 /*
1663 * If regulator_dev_lookup() fails with error other
1664 * than -ENODEV our job here is done, we simply return it.
1665 */
1666 if (ret != -ENODEV)
1667 return ERR_PTR(ret);
Mark Brown317b5682014-01-27 17:34:07 +00001668
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001669 if (!have_full_constraints()) {
1670 dev_warn(dev,
1671 "incomplete constraints, dummy supplies not allowed\n");
1672 return ERR_PTR(-ENODEV);
1673 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301674
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001675 switch (get_type) {
1676 case NORMAL_GET:
1677 /*
1678 * Assume that a regulator is physically present and
1679 * enabled, even if it isn't hooked up, and just
1680 * provide a dummy.
1681 */
1682 dev_warn(dev,
1683 "%s supply %s not found, using dummy regulator\n",
1684 devname, id);
1685 rdev = dummy_regulator_rdev;
1686 get_device(&rdev->dev);
1687 break;
Mark Brownef60abb2013-09-23 16:12:52 +01001688
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001689 case EXCLUSIVE_GET:
1690 dev_warn(dev,
1691 "dummy supplies not allowed for exclusive requests\n");
1692 /* fall through */
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001693
Dmitry Torokhova4d76412017-02-06 19:56:14 -08001694 default:
1695 return ERR_PTR(-ENODEV);
1696 }
Mark Brown34abbd62010-02-12 10:18:08 +00001697 }
Mark Brown34abbd62010-02-12 10:18:08 +00001698
Mark Brown5ffbd132009-07-21 16:00:23 +01001699 if (rdev->exclusive) {
1700 regulator = ERR_PTR(-EPERM);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001701 put_device(&rdev->dev);
1702 return regulator;
Mark Brown5ffbd132009-07-21 16:00:23 +01001703 }
1704
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001705 if (get_type == EXCLUSIVE_GET && rdev->open_count) {
Mark Brown5ffbd132009-07-21 16:00:23 +01001706 regulator = ERR_PTR(-EBUSY);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001707 put_device(&rdev->dev);
1708 return regulator;
Mark Brown5ffbd132009-07-21 16:00:23 +01001709 }
1710
Bjorn Andersson6261b062015-03-24 18:56:05 -07001711 ret = regulator_resolve_supply(rdev);
1712 if (ret < 0) {
1713 regulator = ERR_PTR(ret);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001714 put_device(&rdev->dev);
1715 return regulator;
Bjorn Andersson6261b062015-03-24 18:56:05 -07001716 }
1717
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001718 if (!try_module_get(rdev->owner)) {
Dmitry Torokhov7d245af2017-02-03 13:56:00 -08001719 regulator = ERR_PTR(-EPROBE_DEFER);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001720 put_device(&rdev->dev);
1721 return regulator;
1722 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001723
Liam Girdwood414c70c2008-04-30 15:59:04 +01001724 regulator = create_regulator(rdev, dev, id);
1725 if (regulator == NULL) {
1726 regulator = ERR_PTR(-ENOMEM);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001727 put_device(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001728 module_put(rdev->owner);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001729 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001730 }
1731
Mark Brown5ffbd132009-07-21 16:00:23 +01001732 rdev->open_count++;
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001733 if (get_type == EXCLUSIVE_GET) {
Mark Brown5ffbd132009-07-21 16:00:23 +01001734 rdev->exclusive = 1;
1735
1736 ret = _regulator_is_enabled(rdev);
1737 if (ret > 0)
1738 rdev->use_count = 1;
1739 else
1740 rdev->use_count = 0;
1741 }
1742
Liam Girdwood414c70c2008-04-30 15:59:04 +01001743 return regulator;
1744}
Mark Brown5ffbd132009-07-21 16:00:23 +01001745
1746/**
1747 * regulator_get - lookup and obtain a reference to a regulator.
1748 * @dev: device for regulator "consumer"
1749 * @id: Supply name or regulator ID.
1750 *
1751 * Returns a struct regulator corresponding to the regulator producer,
1752 * or IS_ERR() condition containing errno.
1753 *
1754 * Use of supply names configured via regulator_set_device_supply() is
1755 * strongly encouraged. It is recommended that the supply name used
1756 * should match the name used for the supply and/or the relevant
1757 * device pins in the datasheet.
1758 */
1759struct regulator *regulator_get(struct device *dev, const char *id)
1760{
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001761 return _regulator_get(dev, id, NORMAL_GET);
Mark Brown5ffbd132009-07-21 16:00:23 +01001762}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001763EXPORT_SYMBOL_GPL(regulator_get);
1764
Stephen Boyd070b9072012-01-16 19:39:58 -08001765/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001766 * regulator_get_exclusive - obtain exclusive access to a regulator.
1767 * @dev: device for regulator "consumer"
1768 * @id: Supply name or regulator ID.
1769 *
1770 * Returns a struct regulator corresponding to the regulator producer,
1771 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001772 * unable to obtain this regulator while this reference is held and the
1773 * use count for the regulator will be initialised to reflect the current
1774 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001775 *
1776 * This is intended for use by consumers which cannot tolerate shared
1777 * use of the regulator such as those which need to force the
1778 * regulator off for correct operation of the hardware they are
1779 * controlling.
1780 *
1781 * Use of supply names configured via regulator_set_device_supply() is
1782 * strongly encouraged. It is recommended that the supply name used
1783 * should match the name used for the supply and/or the relevant
1784 * device pins in the datasheet.
1785 */
1786struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1787{
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001788 return _regulator_get(dev, id, EXCLUSIVE_GET);
Mark Brown5ffbd132009-07-21 16:00:23 +01001789}
1790EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1791
Mark Brownde1dd9f2013-07-29 21:42:42 +01001792/**
1793 * regulator_get_optional - obtain optional access to a regulator.
1794 * @dev: device for regulator "consumer"
1795 * @id: Supply name or regulator ID.
1796 *
1797 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001798 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001799 *
1800 * This is intended for use by consumers for devices which can have
1801 * some supplies unconnected in normal use, such as some MMC devices.
1802 * It can allow the regulator core to provide stub supplies for other
1803 * supplies requested using normal regulator_get() calls without
1804 * disrupting the operation of drivers that can handle absent
1805 * supplies.
1806 *
1807 * Use of supply names configured via regulator_set_device_supply() is
1808 * strongly encouraged. It is recommended that the supply name used
1809 * should match the name used for the supply and/or the relevant
1810 * device pins in the datasheet.
1811 */
1812struct regulator *regulator_get_optional(struct device *dev, const char *id)
1813{
Dmitry Torokhova8bd42a2017-02-03 13:56:02 -08001814 return _regulator_get(dev, id, OPTIONAL_GET);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001815}
1816EXPORT_SYMBOL_GPL(regulator_get_optional);
1817
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301818/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001819static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001820{
1821 struct regulator_dev *rdev;
1822
Viresh Kumar93576842015-08-17 12:30:58 +05301823 if (IS_ERR_OR_NULL(regulator))
Liam Girdwood414c70c2008-04-30 15:59:04 +01001824 return;
1825
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09001826 lockdep_assert_held_once(&regulator_list_mutex);
1827
Liam Girdwood414c70c2008-04-30 15:59:04 +01001828 rdev = regulator->rdev;
1829
Mark Brown5de70512011-06-19 13:33:16 +01001830 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001831
Liam Girdwood414c70c2008-04-30 15:59:04 +01001832 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001833 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001834 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Maciej Purski66cf9a72018-04-23 16:33:37 +02001835 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001836 list_del(&regulator->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001837
Mark Brown5ffbd132009-07-21 16:00:23 +01001838 rdev->open_count--;
1839 rdev->exclusive = 0;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001840 put_device(&rdev->dev);
Maciej Purski66cf9a72018-04-23 16:33:37 +02001841 regulator_unlock(rdev);
Mark Brown5ffbd132009-07-21 16:00:23 +01001842
Stephen Boyd0630b612017-03-16 18:07:14 -07001843 kfree_const(regulator->supply_name);
Mark Brown17685142015-08-07 21:19:26 +01001844 kfree(regulator);
1845
Liam Girdwood414c70c2008-04-30 15:59:04 +01001846 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001847}
1848
1849/**
1850 * regulator_put - "free" the regulator source
1851 * @regulator: regulator source
1852 *
1853 * Note: drivers must ensure that all regulator_enable calls made on this
1854 * regulator source are balanced by regulator_disable calls prior to calling
1855 * this function.
1856 */
1857void regulator_put(struct regulator *regulator)
1858{
1859 mutex_lock(&regulator_list_mutex);
1860 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001861 mutex_unlock(&regulator_list_mutex);
1862}
1863EXPORT_SYMBOL_GPL(regulator_put);
1864
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001865/**
1866 * regulator_register_supply_alias - Provide device alias for supply lookup
1867 *
1868 * @dev: device that will be given as the regulator "consumer"
1869 * @id: Supply name or regulator ID
1870 * @alias_dev: device that should be used to lookup the supply
1871 * @alias_id: Supply name or regulator ID that should be used to lookup the
1872 * supply
1873 *
1874 * All lookups for id on dev will instead be conducted for alias_id on
1875 * alias_dev.
1876 */
1877int regulator_register_supply_alias(struct device *dev, const char *id,
1878 struct device *alias_dev,
1879 const char *alias_id)
1880{
1881 struct regulator_supply_alias *map;
1882
1883 map = regulator_find_supply_alias(dev, id);
1884 if (map)
1885 return -EEXIST;
1886
1887 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1888 if (!map)
1889 return -ENOMEM;
1890
1891 map->src_dev = dev;
1892 map->src_supply = id;
1893 map->alias_dev = alias_dev;
1894 map->alias_supply = alias_id;
1895
1896 list_add(&map->list, &regulator_supply_alias_list);
1897
1898 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1899 id, dev_name(dev), alias_id, dev_name(alias_dev));
1900
1901 return 0;
1902}
1903EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1904
1905/**
1906 * regulator_unregister_supply_alias - Remove device alias
1907 *
1908 * @dev: device that will be given as the regulator "consumer"
1909 * @id: Supply name or regulator ID
1910 *
1911 * Remove a lookup alias if one exists for id on dev.
1912 */
1913void regulator_unregister_supply_alias(struct device *dev, const char *id)
1914{
1915 struct regulator_supply_alias *map;
1916
1917 map = regulator_find_supply_alias(dev, id);
1918 if (map) {
1919 list_del(&map->list);
1920 kfree(map);
1921 }
1922}
1923EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1924
1925/**
1926 * regulator_bulk_register_supply_alias - register multiple aliases
1927 *
1928 * @dev: device that will be given as the regulator "consumer"
1929 * @id: List of supply names or regulator IDs
1930 * @alias_dev: device that should be used to lookup the supply
1931 * @alias_id: List of supply names or regulator IDs that should be used to
1932 * lookup the supply
1933 * @num_id: Number of aliases to register
1934 *
1935 * @return 0 on success, an errno on failure.
1936 *
1937 * This helper function allows drivers to register several supply
1938 * aliases in one operation. If any of the aliases cannot be
1939 * registered any aliases that were registered will be removed
1940 * before returning to the caller.
1941 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001942int regulator_bulk_register_supply_alias(struct device *dev,
1943 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001944 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001945 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001946 int num_id)
1947{
1948 int i;
1949 int ret;
1950
1951 for (i = 0; i < num_id; ++i) {
1952 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1953 alias_id[i]);
1954 if (ret < 0)
1955 goto err;
1956 }
1957
1958 return 0;
1959
1960err:
1961 dev_err(dev,
1962 "Failed to create supply alias %s,%s -> %s,%s\n",
1963 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1964
1965 while (--i >= 0)
1966 regulator_unregister_supply_alias(dev, id[i]);
1967
1968 return ret;
1969}
1970EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1971
1972/**
1973 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1974 *
1975 * @dev: device that will be given as the regulator "consumer"
1976 * @id: List of supply names or regulator IDs
1977 * @num_id: Number of aliases to unregister
1978 *
1979 * This helper function allows drivers to unregister several supply
1980 * aliases in one operation.
1981 */
1982void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001983 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001984 int num_id)
1985{
1986 int i;
1987
1988 for (i = 0; i < num_id; ++i)
1989 regulator_unregister_supply_alias(dev, id[i]);
1990}
1991EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1992
1993
Kim, Milof19b00d2013-02-18 06:50:39 +00001994/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1995static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1996 const struct regulator_config *config)
1997{
1998 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001999 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00002000 int ret;
2001
Linus Walleije45e2902018-02-12 14:16:57 +01002002 if (config->ena_gpiod)
2003 gpiod = config->ena_gpiod;
2004 else
2005 gpiod = gpio_to_desc(config->ena_gpio);
Russell King778b28b2014-06-29 17:55:54 +01002006
Kim, Milof19b00d2013-02-18 06:50:39 +00002007 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01002008 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00002009 rdev_dbg(rdev, "GPIO %d is already used\n",
2010 config->ena_gpio);
2011 goto update_ena_gpio_to_rdev;
2012 }
2013 }
2014
Linus Walleije45e2902018-02-12 14:16:57 +01002015 if (!config->ena_gpiod) {
2016 ret = gpio_request_one(config->ena_gpio,
2017 GPIOF_DIR_OUT | config->ena_gpio_flags,
2018 rdev_get_name(rdev));
2019 if (ret)
2020 return ret;
2021 }
Kim, Milof19b00d2013-02-18 06:50:39 +00002022
2023 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
2024 if (pin == NULL) {
Linus Walleije45e2902018-02-12 14:16:57 +01002025 if (!config->ena_gpiod)
2026 gpio_free(config->ena_gpio);
Kim, Milof19b00d2013-02-18 06:50:39 +00002027 return -ENOMEM;
2028 }
2029
Russell King778b28b2014-06-29 17:55:54 +01002030 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00002031 pin->ena_gpio_invert = config->ena_gpio_invert;
2032 list_add(&pin->list, &regulator_ena_gpio_list);
2033
2034update_ena_gpio_to_rdev:
2035 pin->request_count++;
2036 rdev->ena_pin = pin;
2037 return 0;
2038}
2039
2040static void regulator_ena_gpio_free(struct regulator_dev *rdev)
2041{
2042 struct regulator_enable_gpio *pin, *n;
2043
2044 if (!rdev->ena_pin)
2045 return;
2046
2047 /* Free the GPIO only in case of no use */
2048 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01002049 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00002050 if (pin->request_count <= 1) {
2051 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01002052 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00002053 list_del(&pin->list);
2054 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09002055 rdev->ena_pin = NULL;
2056 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00002057 } else {
2058 pin->request_count--;
2059 }
2060 }
2061 }
2062}
2063
Kim, Milo967cfb12013-02-18 06:50:48 +00002064/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04002065 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
2066 * @rdev: regulator_dev structure
2067 * @enable: enable GPIO at initial use?
2068 *
Kim, Milo967cfb12013-02-18 06:50:48 +00002069 * GPIO is enabled in case of initial use. (enable_count is 0)
2070 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
2071 */
2072static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
2073{
2074 struct regulator_enable_gpio *pin = rdev->ena_pin;
2075
2076 if (!pin)
2077 return -EINVAL;
2078
2079 if (enable) {
2080 /* Enable GPIO at initial use */
2081 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01002082 gpiod_set_value_cansleep(pin->gpiod,
2083 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00002084
2085 pin->enable_count++;
2086 } else {
2087 if (pin->enable_count > 1) {
2088 pin->enable_count--;
2089 return 0;
2090 }
2091
2092 /* Disable GPIO if not used */
2093 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01002094 gpiod_set_value_cansleep(pin->gpiod,
2095 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00002096 pin->enable_count = 0;
2097 }
2098 }
2099
2100 return 0;
2101}
2102
Guodong Xu79fd1142014-08-13 19:33:39 +08002103/**
2104 * _regulator_enable_delay - a delay helper function
2105 * @delay: time to delay in microseconds
2106 *
2107 * Delay for the requested amount of time as per the guidelines in:
2108 *
2109 * Documentation/timers/timers-howto.txt
2110 *
2111 * The assumption here is that regulators will never be enabled in
2112 * atomic context and therefore sleeping functions can be used.
2113 */
2114static void _regulator_enable_delay(unsigned int delay)
2115{
2116 unsigned int ms = delay / 1000;
2117 unsigned int us = delay % 1000;
2118
2119 if (ms > 0) {
2120 /*
2121 * For small enough values, handle super-millisecond
2122 * delays in the usleep_range() call below.
2123 */
2124 if (ms < 20)
2125 us += ms * 1000;
2126 else
2127 msleep(ms);
2128 }
2129
2130 /*
2131 * Give the scheduler some room to coalesce with any other
2132 * wakeup sources. For delays shorter than 10 us, don't even
2133 * bother setting up high-resolution timers and just busy-
2134 * loop.
2135 */
2136 if (us >= 10)
2137 usleep_range(us, us + 100);
2138 else
2139 udelay(us);
2140}
2141
Mark Brown5c5659d2012-06-27 13:21:26 +01002142static int _regulator_do_enable(struct regulator_dev *rdev)
2143{
2144 int ret, delay;
2145
2146 /* Query before enabling in case configuration dependent. */
2147 ret = _regulator_get_enable_time(rdev);
2148 if (ret >= 0) {
2149 delay = ret;
2150 } else {
2151 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
2152 delay = 0;
2153 }
2154
2155 trace_regulator_enable(rdev_get_name(rdev));
2156
Guodong Xu871f5652014-08-13 19:33:40 +08002157 if (rdev->desc->off_on_delay) {
2158 /* if needed, keep a distance of off_on_delay from last time
2159 * this regulator was disabled.
2160 */
2161 unsigned long start_jiffy = jiffies;
2162 unsigned long intended, max_delay, remaining;
2163
2164 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
2165 intended = rdev->last_off_jiffy + max_delay;
2166
2167 if (time_before(start_jiffy, intended)) {
2168 /* calc remaining jiffies to deal with one-time
2169 * timer wrapping.
2170 * in case of multiple timer wrapping, either it can be
2171 * detected by out-of-range remaining, or it cannot be
2172 * detected and we gets a panelty of
2173 * _regulator_enable_delay().
2174 */
2175 remaining = intended - start_jiffy;
2176 if (remaining <= max_delay)
2177 _regulator_enable_delay(
2178 jiffies_to_usecs(remaining));
2179 }
2180 }
2181
Kim, Milo967cfb12013-02-18 06:50:48 +00002182 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002183 if (!rdev->ena_gpio_state) {
2184 ret = regulator_ena_gpio_ctrl(rdev, true);
2185 if (ret < 0)
2186 return ret;
2187 rdev->ena_gpio_state = 1;
2188 }
Mark Brown65f73502012-06-27 14:14:38 +01002189 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01002190 ret = rdev->desc->ops->enable(rdev);
2191 if (ret < 0)
2192 return ret;
2193 } else {
2194 return -EINVAL;
2195 }
2196
2197 /* Allow the regulator to ramp; it would be useful to extend
2198 * this for bulk operations so that the regulators can ramp
2199 * together. */
2200 trace_regulator_enable_delay(rdev_get_name(rdev));
2201
Guodong Xu79fd1142014-08-13 19:33:39 +08002202 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01002203
2204 trace_regulator_enable_complete(rdev_get_name(rdev));
2205
2206 return 0;
2207}
2208
Liam Girdwood414c70c2008-04-30 15:59:04 +01002209/* locks held by regulator_enable() */
2210static int _regulator_enable(struct regulator_dev *rdev)
2211{
Mark Brown5c5659d2012-06-27 13:21:26 +01002212 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002213
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002214 lockdep_assert_held_once(&rdev->mutex);
2215
Liam Girdwood414c70c2008-04-30 15:59:04 +01002216 /* check voltage and requested load before enabling */
WEN Pingbo8a34e972016-04-23 15:11:05 +08002217 if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_DRMS))
Mark Brown9a2372f2009-08-03 18:49:57 +01002218 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002219
Mark Brown9a2372f2009-08-03 18:49:57 +01002220 if (rdev->use_count == 0) {
2221 /* The regulator may on if it's not switchable or left on */
2222 ret = _regulator_is_enabled(rdev);
2223 if (ret == -EINVAL || ret == 0) {
WEN Pingbo8a34e972016-04-23 15:11:05 +08002224 if (!regulator_ops_is_valid(rdev,
2225 REGULATOR_CHANGE_STATUS))
Mark Brown9a2372f2009-08-03 18:49:57 +01002226 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002227
Mark Brown5c5659d2012-06-27 13:21:26 +01002228 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00002229 if (ret < 0)
2230 return ret;
2231
Harald Geyer264b88c2017-02-23 17:06:52 +00002232 _notifier_call_chain(rdev, REGULATOR_EVENT_ENABLE,
2233 NULL);
Linus Walleija7433cf2009-08-26 12:54:04 +02002234 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002235 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002236 return ret;
2237 }
Linus Walleija7433cf2009-08-26 12:54:04 +02002238 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002239 }
2240
Mark Brown9a2372f2009-08-03 18:49:57 +01002241 rdev->use_count++;
2242
2243 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002244}
2245
2246/**
2247 * regulator_enable - enable regulator output
2248 * @regulator: regulator source
2249 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002250 * Request that the regulator be enabled with the regulator output at
2251 * the predefined voltage or current value. Calls to regulator_enable()
2252 * must be balanced with calls to regulator_disable().
2253 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002254 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00002255 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002256 */
2257int regulator_enable(struct regulator *regulator)
2258{
David Brownell412aec62008-11-16 11:44:46 -08002259 struct regulator_dev *rdev = regulator->rdev;
2260 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002261
Mark Brown6492bc12012-04-19 13:19:07 +01002262 if (regulator->always_on)
2263 return 0;
2264
Mark Brown3801b862011-06-09 16:22:22 +01002265 if (rdev->supply) {
2266 ret = regulator_enable(rdev->supply);
2267 if (ret != 0)
2268 return ret;
2269 }
2270
Mark Brown38de19f2018-05-30 15:20:03 +01002271 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08002272 ret = _regulator_enable(rdev);
Mark Brown38de19f2018-05-30 15:20:03 +01002273 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002274
Heiko Stübnerd1685e42011-10-14 18:00:29 +02002275 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002276 regulator_disable(rdev->supply);
2277
Liam Girdwood414c70c2008-04-30 15:59:04 +01002278 return ret;
2279}
2280EXPORT_SYMBOL_GPL(regulator_enable);
2281
Mark Brown5c5659d2012-06-27 13:21:26 +01002282static int _regulator_do_disable(struct regulator_dev *rdev)
2283{
2284 int ret;
2285
2286 trace_regulator_disable(rdev_get_name(rdev));
2287
Kim, Milo967cfb12013-02-18 06:50:48 +00002288 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002289 if (rdev->ena_gpio_state) {
2290 ret = regulator_ena_gpio_ctrl(rdev, false);
2291 if (ret < 0)
2292 return ret;
2293 rdev->ena_gpio_state = 0;
2294 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002295
2296 } else if (rdev->desc->ops->disable) {
2297 ret = rdev->desc->ops->disable(rdev);
2298 if (ret != 0)
2299 return ret;
2300 }
2301
Guodong Xu871f5652014-08-13 19:33:40 +08002302 /* cares about last_off_jiffy only if off_on_delay is required by
2303 * device.
2304 */
2305 if (rdev->desc->off_on_delay)
2306 rdev->last_off_jiffy = jiffies;
2307
Mark Brown5c5659d2012-06-27 13:21:26 +01002308 trace_regulator_disable_complete(rdev_get_name(rdev));
2309
Mark Brown5c5659d2012-06-27 13:21:26 +01002310 return 0;
2311}
2312
Liam Girdwood414c70c2008-04-30 15:59:04 +01002313/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002314static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002315{
2316 int ret = 0;
2317
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002318 lockdep_assert_held_once(&rdev->mutex);
2319
David Brownellcd94b502009-03-11 16:43:34 -08002320 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002321 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002322 return -EIO;
2323
Liam Girdwood414c70c2008-04-30 15:59:04 +01002324 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002325 if (rdev->use_count == 1 &&
2326 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002327
2328 /* we are last user */
WEN Pingbo8a34e972016-04-23 15:11:05 +08002329 if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002330 ret = _notifier_call_chain(rdev,
2331 REGULATOR_EVENT_PRE_DISABLE,
2332 NULL);
2333 if (ret & NOTIFY_STOP_MASK)
2334 return -EINVAL;
2335
Mark Brown5c5659d2012-06-27 13:21:26 +01002336 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002337 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002338 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002339 _notifier_call_chain(rdev,
2340 REGULATOR_EVENT_ABORT_DISABLE,
2341 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002342 return ret;
2343 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002344 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2345 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002346 }
2347
Liam Girdwood414c70c2008-04-30 15:59:04 +01002348 rdev->use_count = 0;
2349 } else if (rdev->use_count > 1) {
WEN Pingbo8a34e972016-04-23 15:11:05 +08002350 if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_DRMS))
Liam Girdwood414c70c2008-04-30 15:59:04 +01002351 drms_uA_update(rdev);
2352
2353 rdev->use_count--;
2354 }
Mark Brown3801b862011-06-09 16:22:22 +01002355
Liam Girdwood414c70c2008-04-30 15:59:04 +01002356 return ret;
2357}
2358
2359/**
2360 * regulator_disable - disable regulator output
2361 * @regulator: regulator source
2362 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002363 * Disable the regulator output voltage or current. Calls to
2364 * regulator_enable() must be balanced with calls to
2365 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002366 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002367 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002368 * devices have it enabled, the regulator device supports disabling and
2369 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002370 */
2371int regulator_disable(struct regulator *regulator)
2372{
David Brownell412aec62008-11-16 11:44:46 -08002373 struct regulator_dev *rdev = regulator->rdev;
2374 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002375
Mark Brown6492bc12012-04-19 13:19:07 +01002376 if (regulator->always_on)
2377 return 0;
2378
Mark Brown38de19f2018-05-30 15:20:03 +01002379 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002380 ret = _regulator_disable(rdev);
Mark Brown38de19f2018-05-30 15:20:03 +01002381 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002382
Mark Brown3801b862011-06-09 16:22:22 +01002383 if (ret == 0 && rdev->supply)
2384 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002385
Liam Girdwood414c70c2008-04-30 15:59:04 +01002386 return ret;
2387}
2388EXPORT_SYMBOL_GPL(regulator_disable);
2389
2390/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002391static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002392{
2393 int ret = 0;
2394
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002395 lockdep_assert_held_once(&rdev->mutex);
2396
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002397 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2398 REGULATOR_EVENT_PRE_DISABLE, NULL);
2399 if (ret & NOTIFY_STOP_MASK)
2400 return -EINVAL;
2401
Markus Pargmann66fda752014-02-20 17:36:04 +01002402 ret = _regulator_do_disable(rdev);
2403 if (ret < 0) {
2404 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002405 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2406 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002407 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002408 }
2409
Markus Pargmann66fda752014-02-20 17:36:04 +01002410 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2411 REGULATOR_EVENT_DISABLE, NULL);
2412
2413 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002414}
2415
2416/**
2417 * regulator_force_disable - force disable regulator output
2418 * @regulator: regulator source
2419 *
2420 * Forcibly disable the regulator output voltage or current.
2421 * NOTE: this *will* disable the regulator output even if other consumer
2422 * devices have it enabled. This should be used for situations when device
2423 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2424 */
2425int regulator_force_disable(struct regulator *regulator)
2426{
Mark Brown82d15832011-05-09 11:41:02 +02002427 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002428 int ret;
2429
Mark Brown38de19f2018-05-30 15:20:03 +01002430 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002431 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002432 ret = _regulator_force_disable(regulator->rdev);
Mark Brown38de19f2018-05-30 15:20:03 +01002433 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002434
Mark Brown3801b862011-06-09 16:22:22 +01002435 if (rdev->supply)
2436 while (rdev->open_count--)
2437 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002438
Liam Girdwood414c70c2008-04-30 15:59:04 +01002439 return ret;
2440}
2441EXPORT_SYMBOL_GPL(regulator_force_disable);
2442
Mark Brownda07ecd2011-09-11 09:53:50 +01002443static void regulator_disable_work(struct work_struct *work)
2444{
2445 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2446 disable_work.work);
2447 int count, i, ret;
2448
Maciej Purski66cf9a72018-04-23 16:33:37 +02002449 regulator_lock(rdev);
Mark Brownda07ecd2011-09-11 09:53:50 +01002450
2451 BUG_ON(!rdev->deferred_disables);
2452
2453 count = rdev->deferred_disables;
2454 rdev->deferred_disables = 0;
2455
Tirupathi Reddyc9ccaa02017-07-12 17:08:13 +05302456 /*
2457 * Workqueue functions queue the new work instance while the previous
2458 * work instance is being processed. Cancel the queued work instance
2459 * as the work instance under processing does the job of the queued
2460 * work instance.
2461 */
2462 cancel_delayed_work(&rdev->disable_work);
2463
Mark Brownda07ecd2011-09-11 09:53:50 +01002464 for (i = 0; i < count; i++) {
2465 ret = _regulator_disable(rdev);
2466 if (ret != 0)
2467 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2468 }
2469
Maciej Purski66cf9a72018-04-23 16:33:37 +02002470 regulator_unlock(rdev);
Mark Brownda07ecd2011-09-11 09:53:50 +01002471
2472 if (rdev->supply) {
2473 for (i = 0; i < count; i++) {
2474 ret = regulator_disable(rdev->supply);
2475 if (ret != 0) {
2476 rdev_err(rdev,
2477 "Supply disable failed: %d\n", ret);
2478 }
2479 }
2480 }
2481}
2482
2483/**
2484 * regulator_disable_deferred - disable regulator output with delay
2485 * @regulator: regulator source
2486 * @ms: miliseconds until the regulator is disabled
2487 *
2488 * Execute regulator_disable() on the regulator after a delay. This
2489 * is intended for use with devices that require some time to quiesce.
2490 *
2491 * NOTE: this will only disable the regulator output if no other consumer
2492 * devices have it enabled, the regulator device supports disabling and
2493 * machine constraints permit this operation.
2494 */
2495int regulator_disable_deferred(struct regulator *regulator, int ms)
2496{
2497 struct regulator_dev *rdev = regulator->rdev;
2498
Mark Brown6492bc12012-04-19 13:19:07 +01002499 if (regulator->always_on)
2500 return 0;
2501
Mark Brown2b5a24a2012-09-07 11:00:53 +08002502 if (!ms)
2503 return regulator_disable(regulator);
2504
Maciej Purski66cf9a72018-04-23 16:33:37 +02002505 regulator_lock(rdev);
Mark Brownda07ecd2011-09-11 09:53:50 +01002506 rdev->deferred_disables++;
Tirupathi Reddyc9ccaa02017-07-12 17:08:13 +05302507 mod_delayed_work(system_power_efficient_wq, &rdev->disable_work,
2508 msecs_to_jiffies(ms));
Maciej Purski66cf9a72018-04-23 16:33:37 +02002509 regulator_unlock(rdev);
Mark Brownda07ecd2011-09-11 09:53:50 +01002510
Dan Carpenter70dc6da2016-01-07 13:03:08 +03002511 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002512}
2513EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2514
Liam Girdwood414c70c2008-04-30 15:59:04 +01002515static int _regulator_is_enabled(struct regulator_dev *rdev)
2516{
Mark Brown65f73502012-06-27 14:14:38 +01002517 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002518 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002519 return rdev->ena_gpio_state;
2520
Mark Brown9a7f6a42010-02-11 17:22:45 +00002521 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002522 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002523 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002524
Mark Brown93325462009-08-03 18:49:56 +01002525 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002526}
2527
Maciej Purski3d67fe92018-01-22 15:30:07 +01002528static int _regulator_list_voltage(struct regulator_dev *rdev,
2529 unsigned selector, int lock)
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002530{
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002531 const struct regulator_ops *ops = rdev->desc->ops;
2532 int ret;
2533
2534 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2535 return rdev->desc->fixed_uV;
2536
2537 if (ops->list_voltage) {
2538 if (selector >= rdev->desc->n_voltages)
2539 return -EINVAL;
2540 if (lock)
Maciej Purski66cf9a72018-04-23 16:33:37 +02002541 regulator_lock(rdev);
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002542 ret = ops->list_voltage(rdev, selector);
2543 if (lock)
Maciej Purski66cf9a72018-04-23 16:33:37 +02002544 regulator_unlock(rdev);
Matthias Kaehlckefd086042017-03-27 16:54:12 -07002545 } else if (rdev->is_switch && rdev->supply) {
Maciej Purski3d67fe92018-01-22 15:30:07 +01002546 ret = _regulator_list_voltage(rdev->supply->rdev,
2547 selector, lock);
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002548 } else {
2549 return -EINVAL;
2550 }
2551
2552 if (ret > 0) {
2553 if (ret < rdev->constraints->min_uV)
2554 ret = 0;
2555 else if (ret > rdev->constraints->max_uV)
2556 ret = 0;
2557 }
2558
2559 return ret;
2560}
2561
Liam Girdwood414c70c2008-04-30 15:59:04 +01002562/**
2563 * regulator_is_enabled - is the regulator output enabled
2564 * @regulator: regulator source
2565 *
David Brownell412aec62008-11-16 11:44:46 -08002566 * Returns positive if the regulator driver backing the source/client
2567 * has requested that the device be enabled, zero if it hasn't, else a
2568 * negative errno code.
2569 *
2570 * Note that the device backing this regulator handle can have multiple
2571 * users, so it might be enabled even if regulator_enable() was never
2572 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002573 */
2574int regulator_is_enabled(struct regulator *regulator)
2575{
Mark Brown93325462009-08-03 18:49:56 +01002576 int ret;
2577
Mark Brown6492bc12012-04-19 13:19:07 +01002578 if (regulator->always_on)
2579 return 1;
2580
Mark Brown38de19f2018-05-30 15:20:03 +01002581 mutex_lock(&regulator->rdev->mutex);
Mark Brown93325462009-08-03 18:49:56 +01002582 ret = _regulator_is_enabled(regulator->rdev);
Mark Brown38de19f2018-05-30 15:20:03 +01002583 mutex_unlock(&regulator->rdev->mutex);
Mark Brown93325462009-08-03 18:49:56 +01002584
2585 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002586}
2587EXPORT_SYMBOL_GPL(regulator_is_enabled);
2588
2589/**
David Brownell4367cfd2009-02-26 11:48:36 -08002590 * regulator_count_voltages - count regulator_list_voltage() selectors
2591 * @regulator: regulator source
2592 *
2593 * Returns number of selectors, or negative errno. Selectors are
2594 * numbered starting at zero, and typically correspond to bitfields
2595 * in hardware registers.
2596 */
2597int regulator_count_voltages(struct regulator *regulator)
2598{
2599 struct regulator_dev *rdev = regulator->rdev;
2600
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002601 if (rdev->desc->n_voltages)
2602 return rdev->desc->n_voltages;
2603
Matthias Kaehlckefd086042017-03-27 16:54:12 -07002604 if (!rdev->is_switch || !rdev->supply)
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002605 return -EINVAL;
2606
2607 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002608}
2609EXPORT_SYMBOL_GPL(regulator_count_voltages);
2610
2611/**
2612 * regulator_list_voltage - enumerate supported voltages
2613 * @regulator: regulator source
2614 * @selector: identify voltage to list
2615 * Context: can sleep
2616 *
2617 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002618 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002619 * negative errno.
2620 */
2621int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2622{
Maciej Purski3d67fe92018-01-22 15:30:07 +01002623 return _regulator_list_voltage(regulator->rdev, selector, 1);
David Brownell4367cfd2009-02-26 11:48:36 -08002624}
2625EXPORT_SYMBOL_GPL(regulator_list_voltage);
2626
2627/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002628 * regulator_get_regmap - get the regulator's register map
2629 * @regulator: regulator source
2630 *
2631 * Returns the register map for the given regulator, or an ERR_PTR value
2632 * if the regulator doesn't use regmap.
2633 */
2634struct regmap *regulator_get_regmap(struct regulator *regulator)
2635{
2636 struct regmap *map = regulator->rdev->regmap;
2637
2638 return map ? map : ERR_PTR(-EOPNOTSUPP);
2639}
2640
2641/**
2642 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2643 * @regulator: regulator source
2644 * @vsel_reg: voltage selector register, output parameter
2645 * @vsel_mask: mask for voltage selector bitfield, output parameter
2646 *
2647 * Returns the hardware register offset and bitmask used for setting the
2648 * regulator voltage. This might be useful when configuring voltage-scaling
2649 * hardware or firmware that can make I2C requests behind the kernel's back,
2650 * for example.
2651 *
2652 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2653 * and 0 is returned, otherwise a negative errno is returned.
2654 */
2655int regulator_get_hardware_vsel_register(struct regulator *regulator,
2656 unsigned *vsel_reg,
2657 unsigned *vsel_mask)
2658{
Guodong Xu39f54602014-08-19 18:07:41 +08002659 struct regulator_dev *rdev = regulator->rdev;
2660 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002661
2662 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2663 return -EOPNOTSUPP;
2664
Colin Ian King0d5c8632017-12-07 13:30:09 +00002665 *vsel_reg = rdev->desc->vsel_reg;
2666 *vsel_mask = rdev->desc->vsel_mask;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002667
2668 return 0;
2669}
2670EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2671
2672/**
2673 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2674 * @regulator: regulator source
2675 * @selector: identify voltage to list
2676 *
2677 * Converts the selector to a hardware-specific voltage selector that can be
2678 * directly written to the regulator registers. The address of the voltage
2679 * register can be determined by calling @regulator_get_hardware_vsel_register.
2680 *
2681 * On error a negative errno is returned.
2682 */
2683int regulator_list_hardware_vsel(struct regulator *regulator,
2684 unsigned selector)
2685{
Guodong Xu39f54602014-08-19 18:07:41 +08002686 struct regulator_dev *rdev = regulator->rdev;
2687 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002688
2689 if (selector >= rdev->desc->n_voltages)
2690 return -EINVAL;
2691 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2692 return -EOPNOTSUPP;
2693
2694 return selector;
2695}
2696EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2697
2698/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002699 * regulator_get_linear_step - return the voltage step size between VSEL values
2700 * @regulator: regulator source
2701 *
2702 * Returns the voltage step size between VSEL values for linear
2703 * regulators, or return 0 if the regulator isn't a linear regulator.
2704 */
2705unsigned int regulator_get_linear_step(struct regulator *regulator)
2706{
2707 struct regulator_dev *rdev = regulator->rdev;
2708
2709 return rdev->desc->uV_step;
2710}
2711EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2712
2713/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002714 * regulator_is_supported_voltage - check if a voltage range can be supported
2715 *
2716 * @regulator: Regulator to check.
2717 * @min_uV: Minimum required voltage in uV.
2718 * @max_uV: Maximum required voltage in uV.
2719 *
2720 * Returns a boolean or a negative error code.
2721 */
2722int regulator_is_supported_voltage(struct regulator *regulator,
2723 int min_uV, int max_uV)
2724{
Mark Brownc5f39392012-07-02 15:00:18 +01002725 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002726 int i, voltages, ret;
2727
Mark Brownc5f39392012-07-02 15:00:18 +01002728 /* If we can't change voltage check the current voltage */
WEN Pingbo8a34e972016-04-23 15:11:05 +08002729 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
Mark Brownc5f39392012-07-02 15:00:18 +01002730 ret = regulator_get_voltage(regulator);
2731 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002732 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002733 else
2734 return ret;
2735 }
2736
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002737 /* Any voltage within constrains range is fine? */
2738 if (rdev->desc->continuous_voltage_range)
2739 return min_uV >= rdev->constraints->min_uV &&
2740 max_uV <= rdev->constraints->max_uV;
2741
Mark Browna7a1ad92009-07-21 16:00:24 +01002742 ret = regulator_count_voltages(regulator);
2743 if (ret < 0)
2744 return ret;
2745 voltages = ret;
2746
2747 for (i = 0; i < voltages; i++) {
2748 ret = regulator_list_voltage(regulator, i);
2749
2750 if (ret >= min_uV && ret <= max_uV)
2751 return 1;
2752 }
2753
2754 return 0;
2755}
Mark Browna398eaa2011-12-28 12:48:45 +00002756EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002757
Sascha Hauera204f412015-10-20 14:37:27 +02002758static int regulator_map_voltage(struct regulator_dev *rdev, int min_uV,
2759 int max_uV)
2760{
2761 const struct regulator_desc *desc = rdev->desc;
2762
2763 if (desc->ops->map_voltage)
2764 return desc->ops->map_voltage(rdev, min_uV, max_uV);
2765
2766 if (desc->ops->list_voltage == regulator_list_voltage_linear)
2767 return regulator_map_voltage_linear(rdev, min_uV, max_uV);
2768
2769 if (desc->ops->list_voltage == regulator_list_voltage_linear_range)
2770 return regulator_map_voltage_linear_range(rdev, min_uV, max_uV);
2771
2772 return regulator_map_voltage_iterate(rdev, min_uV, max_uV);
2773}
2774
Heiko Stübner71795692014-08-28 12:36:04 -07002775static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2776 int min_uV, int max_uV,
2777 unsigned *selector)
2778{
2779 struct pre_voltage_change_data data;
2780 int ret;
2781
2782 data.old_uV = _regulator_get_voltage(rdev);
2783 data.min_uV = min_uV;
2784 data.max_uV = max_uV;
2785 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2786 &data);
2787 if (ret & NOTIFY_STOP_MASK)
2788 return -EINVAL;
2789
2790 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2791 if (ret >= 0)
2792 return ret;
2793
2794 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2795 (void *)data.old_uV);
2796
2797 return ret;
2798}
2799
2800static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2801 int uV, unsigned selector)
2802{
2803 struct pre_voltage_change_data data;
2804 int ret;
2805
2806 data.old_uV = _regulator_get_voltage(rdev);
2807 data.min_uV = uV;
2808 data.max_uV = uV;
2809 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2810 &data);
2811 if (ret & NOTIFY_STOP_MASK)
2812 return -EINVAL;
2813
2814 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2815 if (ret >= 0)
2816 return ret;
2817
2818 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2819 (void *)data.old_uV);
2820
2821 return ret;
2822}
2823
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002824static int _regulator_set_voltage_time(struct regulator_dev *rdev,
2825 int old_uV, int new_uV)
2826{
2827 unsigned int ramp_delay = 0;
2828
2829 if (rdev->constraints->ramp_delay)
2830 ramp_delay = rdev->constraints->ramp_delay;
2831 else if (rdev->desc->ramp_delay)
2832 ramp_delay = rdev->desc->ramp_delay;
Laxman Dewangand6c1dc32017-04-04 18:59:50 +05302833 else if (rdev->constraints->settling_time)
2834 return rdev->constraints->settling_time;
Matthias Kaehlcke3ffad462017-05-16 11:43:43 -07002835 else if (rdev->constraints->settling_time_up &&
2836 (new_uV > old_uV))
2837 return rdev->constraints->settling_time_up;
2838 else if (rdev->constraints->settling_time_down &&
2839 (new_uV < old_uV))
2840 return rdev->constraints->settling_time_down;
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002841
2842 if (ramp_delay == 0) {
H. Nikolaus Schallerba14fa12016-10-27 14:31:39 +02002843 rdev_dbg(rdev, "ramp_delay not set\n");
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002844 return 0;
2845 }
2846
2847 return DIV_ROUND_UP(abs(new_uV - old_uV), ramp_delay);
2848}
2849
Mark Brown75790252010-12-12 14:25:50 +00002850static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2851 int min_uV, int max_uV)
2852{
2853 int ret;
Linus Walleij77af1b22011-03-17 13:24:36 +01002854 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002855 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002856 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002857 int old_selector = -1;
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002858 const struct regulator_ops *ops = rdev->desc->ops;
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002859 int old_uV = _regulator_get_voltage(rdev);
Mark Brown75790252010-12-12 14:25:50 +00002860
2861 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2862
Mark Brownbf5892a2011-05-08 22:13:37 +01002863 min_uV += rdev->constraints->uV_offset;
2864 max_uV += rdev->constraints->uV_offset;
2865
Axel Lineba41a52012-04-04 10:32:10 +08002866 /*
2867 * If we can't obtain the old selector there is not enough
2868 * info to call set_voltage_time_sel().
2869 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002870 if (_regulator_is_enabled(rdev) &&
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002871 ops->set_voltage_time_sel && ops->get_voltage_sel) {
2872 old_selector = ops->get_voltage_sel(rdev);
Axel Lineba41a52012-04-04 10:32:10 +08002873 if (old_selector < 0)
2874 return old_selector;
2875 }
2876
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002877 if (ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002878 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2879 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002880
2881 if (ret >= 0) {
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002882 if (ops->list_voltage)
2883 best_val = ops->list_voltage(rdev,
2884 selector);
Mark Browne113d792012-06-26 10:57:51 +01002885 else
2886 best_val = _regulator_get_voltage(rdev);
2887 }
2888
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002889 } else if (ops->set_voltage_sel) {
Sascha Hauera204f412015-10-20 14:37:27 +02002890 ret = regulator_map_voltage(rdev, min_uV, max_uV);
Mark Browne843fc42012-05-09 21:16:06 +01002891 if (ret >= 0) {
Matthias Kaehlcke57995a42016-09-14 09:52:05 -07002892 best_val = ops->list_voltage(rdev, ret);
Mark Browne113d792012-06-26 10:57:51 +01002893 if (min_uV <= best_val && max_uV >= best_val) {
2894 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002895 if (old_selector == selector)
2896 ret = 0;
2897 else
Heiko Stübner71795692014-08-28 12:36:04 -07002898 ret = _regulator_call_set_voltage_sel(
2899 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002900 } else {
2901 ret = -EINVAL;
2902 }
Mark Browne8eef822010-12-12 14:36:17 +00002903 }
Mark Brown75790252010-12-12 14:25:50 +00002904 } else {
2905 ret = -EINVAL;
2906 }
2907
Matthias Kaehlcke31dfe682016-09-14 09:52:06 -07002908 if (ret)
2909 goto out;
Axel Lineba41a52012-04-04 10:32:10 +08002910
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002911 if (ops->set_voltage_time_sel) {
2912 /*
2913 * Call set_voltage_time_sel if successfully obtained
2914 * old_selector
2915 */
2916 if (old_selector >= 0 && old_selector != selector)
2917 delay = ops->set_voltage_time_sel(rdev, old_selector,
2918 selector);
2919 } else {
2920 if (old_uV != best_val) {
2921 if (ops->set_voltage_time)
2922 delay = ops->set_voltage_time(rdev, old_uV,
2923 best_val);
2924 else
2925 delay = _regulator_set_voltage_time(rdev,
2926 old_uV,
2927 best_val);
Philip Rakity8b96de32012-06-14 15:07:56 -07002928 }
Linus Walleij77af1b22011-03-17 13:24:36 +01002929 }
2930
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07002931 if (delay < 0) {
2932 rdev_warn(rdev, "failed to get delay: %d\n", delay);
2933 delay = 0;
2934 }
2935
2936 /* Insert any necessary delays */
2937 if (delay >= 1000) {
2938 mdelay(delay / 1000);
2939 udelay(delay % 1000);
2940 } else if (delay) {
2941 udelay(delay);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002942 }
Mark Brown69279fb2008-12-31 12:52:41 +00002943
Matthias Kaehlcke31dfe682016-09-14 09:52:06 -07002944 if (best_val >= 0) {
Axel Lin2f6c7972012-08-06 23:44:19 +08002945 unsigned long data = best_val;
2946
Liam Girdwood414c70c2008-04-30 15:59:04 +01002947 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002948 (void *)data);
2949 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002950
Matthias Kaehlcke31dfe682016-09-14 09:52:06 -07002951out:
Axel Lineba41a52012-04-04 10:32:10 +08002952 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002953
2954 return ret;
2955}
2956
Chunyan Zhangf7efad12018-01-26 21:08:47 +08002957static int _regulator_do_set_suspend_voltage(struct regulator_dev *rdev,
2958 int min_uV, int max_uV, suspend_state_t state)
2959{
2960 struct regulator_state *rstate;
2961 int uV, sel;
2962
2963 rstate = regulator_get_suspend_state(rdev, state);
2964 if (rstate == NULL)
2965 return -EINVAL;
2966
2967 if (min_uV < rstate->min_uV)
2968 min_uV = rstate->min_uV;
2969 if (max_uV > rstate->max_uV)
2970 max_uV = rstate->max_uV;
2971
2972 sel = regulator_map_voltage(rdev, min_uV, max_uV);
2973 if (sel < 0)
2974 return sel;
2975
2976 uV = rdev->desc->ops->list_voltage(rdev, sel);
2977 if (uV >= min_uV && uV <= max_uV)
2978 rstate->uV = uV;
2979
2980 return 0;
2981}
2982
Sascha Hauera9f226b2015-10-13 12:45:25 +02002983static int regulator_set_voltage_unlocked(struct regulator *regulator,
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08002984 int min_uV, int max_uV,
2985 suspend_state_t state)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002986{
2987 struct regulator_dev *rdev = regulator->rdev;
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08002988 struct regulator_voltage *voltage = &regulator->voltage[state];
Mark Brown95a3c232010-12-16 15:49:37 +00002989 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002990 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002991 int current_uV;
Mark Brown38de19f2018-05-30 15:20:03 +01002992 int best_supply_uV = 0;
2993 int supply_change_uV = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002994
Mark Brown95a3c232010-12-16 15:49:37 +00002995 /* If we're setting the same range as last time the change
2996 * should be a noop (some cpufreq implementations use the same
2997 * voltage for multiple frequencies, for example).
2998 */
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08002999 if (voltage->min_uV == min_uV && voltage->max_uV == max_uV)
Mark Brown95a3c232010-12-16 15:49:37 +00003000 goto out;
3001
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08003002 /* If we're trying to set a range that overlaps the current voltage,
Viresh Kumard3fb9802015-08-13 18:09:49 +05303003 * return successfully even though the regulator does not support
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08003004 * changing the voltage.
3005 */
WEN Pingbo8a34e972016-04-23 15:11:05 +08003006 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08003007 current_uV = _regulator_get_voltage(rdev);
3008 if (min_uV <= current_uV && current_uV <= max_uV) {
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003009 voltage->min_uV = min_uV;
3010 voltage->max_uV = max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08003011 goto out;
3012 }
3013 }
3014
Liam Girdwood414c70c2008-04-30 15:59:04 +01003015 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00003016 if (!rdev->desc->ops->set_voltage &&
3017 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003018 ret = -EINVAL;
3019 goto out;
3020 }
3021
3022 /* constraints check */
3023 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
3024 if (ret < 0)
3025 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09003026
Paolo Pisati92d7a552012-12-13 10:13:00 +01003027 /* restore original values in case of error */
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003028 old_min_uV = voltage->min_uV;
3029 old_max_uV = voltage->max_uV;
3030 voltage->min_uV = min_uV;
3031 voltage->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00003032
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003033 ret = regulator_check_consumers(rdev, &min_uV, &max_uV, state);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01003034 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01003035 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01003036
Mark Brown43fc99f2017-04-13 18:36:59 +01003037 if (rdev->supply &&
3038 regulator_ops_is_valid(rdev->supply->rdev,
3039 REGULATOR_CHANGE_VOLTAGE) &&
Tirupathi Reddy2c2874b2017-05-25 15:33:17 +05303040 (rdev->desc->min_dropout_uV || !(rdev->desc->ops->get_voltage ||
3041 rdev->desc->ops->get_voltage_sel))) {
Sascha Hauerfc421122015-10-20 14:37:28 +02003042 int current_supply_uV;
3043 int selector;
3044
3045 selector = regulator_map_voltage(rdev, min_uV, max_uV);
3046 if (selector < 0) {
3047 ret = selector;
Mark Brown38de19f2018-05-30 15:20:03 +01003048 goto out2;
Sascha Hauerfc421122015-10-20 14:37:28 +02003049 }
3050
Mark Brown00cb9f42018-01-26 17:55:30 +00003051 best_supply_uV = _regulator_list_voltage(rdev, selector, 0);
Sascha Hauerfc421122015-10-20 14:37:28 +02003052 if (best_supply_uV < 0) {
3053 ret = best_supply_uV;
Mark Brown38de19f2018-05-30 15:20:03 +01003054 goto out2;
Sascha Hauerfc421122015-10-20 14:37:28 +02003055 }
3056
3057 best_supply_uV += rdev->desc->min_dropout_uV;
3058
3059 current_supply_uV = _regulator_get_voltage(rdev->supply->rdev);
3060 if (current_supply_uV < 0) {
3061 ret = current_supply_uV;
Mark Brown38de19f2018-05-30 15:20:03 +01003062 goto out2;
Sascha Hauerfc421122015-10-20 14:37:28 +02003063 }
3064
3065 supply_change_uV = best_supply_uV - current_supply_uV;
3066 }
3067
3068 if (supply_change_uV > 0) {
3069 ret = regulator_set_voltage_unlocked(rdev->supply,
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003070 best_supply_uV, INT_MAX, state);
Sascha Hauerfc421122015-10-20 14:37:28 +02003071 if (ret) {
3072 dev_err(&rdev->dev, "Failed to increase supply voltage: %d\n",
3073 ret);
Mark Brown38de19f2018-05-30 15:20:03 +01003074 goto out2;
Sascha Hauerfc421122015-10-20 14:37:28 +02003075 }
3076 }
3077
Chunyan Zhangf7efad12018-01-26 21:08:47 +08003078 if (state == PM_SUSPEND_ON)
3079 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
3080 else
3081 ret = _regulator_do_set_suspend_voltage(rdev, min_uV,
3082 max_uV, state);
Paolo Pisati92d7a552012-12-13 10:13:00 +01003083 if (ret < 0)
Mark Brown38de19f2018-05-30 15:20:03 +01003084 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09003085
Sascha Hauerfc421122015-10-20 14:37:28 +02003086 if (supply_change_uV < 0) {
3087 ret = regulator_set_voltage_unlocked(rdev->supply,
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003088 best_supply_uV, INT_MAX, state);
Sascha Hauerfc421122015-10-20 14:37:28 +02003089 if (ret)
3090 dev_warn(&rdev->dev, "Failed to decrease supply voltage: %d\n",
3091 ret);
3092 /* No need to fail here */
3093 ret = 0;
3094 }
3095
Liam Girdwood414c70c2008-04-30 15:59:04 +01003096out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003097 return ret;
Mark Brown38de19f2018-05-30 15:20:03 +01003098out2:
3099 voltage->min_uV = old_min_uV;
3100 voltage->max_uV = old_max_uV;
Sascha Hauera9f226b2015-10-13 12:45:25 +02003101
Maciej Purski69686172018-04-23 16:33:41 +02003102 return ret;
3103}
3104
Sascha Hauera9f226b2015-10-13 12:45:25 +02003105/**
3106 * regulator_set_voltage - set regulator output voltage
3107 * @regulator: regulator source
3108 * @min_uV: Minimum required voltage in uV
3109 * @max_uV: Maximum acceptable voltage in uV
3110 *
3111 * Sets a voltage regulator to the desired output voltage. This can be set
3112 * during any regulator state. IOW, regulator can be disabled or enabled.
3113 *
3114 * If the regulator is enabled then the voltage will change to the new value
3115 * immediately otherwise if the regulator is disabled the regulator will
3116 * output at the new voltage when enabled.
3117 *
3118 * NOTE: If the regulator is shared between several devices then the lowest
3119 * request voltage that meets the system constraints will be used.
3120 * Regulator system constraints must be set for this regulator before
3121 * calling this function otherwise this call will fail.
3122 */
3123int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
3124{
3125 int ret = 0;
3126
Mark Brown38de19f2018-05-30 15:20:03 +01003127 regulator_lock_supply(regulator->rdev);
Sascha Hauera9f226b2015-10-13 12:45:25 +02003128
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003129 ret = regulator_set_voltage_unlocked(regulator, min_uV, max_uV,
3130 PM_SUSPEND_ON);
Sascha Hauera9f226b2015-10-13 12:45:25 +02003131
Mark Brown38de19f2018-05-30 15:20:03 +01003132 regulator_unlock_supply(regulator->rdev);
Sascha Hauera9f226b2015-10-13 12:45:25 +02003133
Paolo Pisati92d7a552012-12-13 10:13:00 +01003134 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003135}
3136EXPORT_SYMBOL_GPL(regulator_set_voltage);
3137
Chunyan Zhangf7efad12018-01-26 21:08:47 +08003138static inline int regulator_suspend_toggle(struct regulator_dev *rdev,
3139 suspend_state_t state, bool en)
3140{
3141 struct regulator_state *rstate;
3142
3143 rstate = regulator_get_suspend_state(rdev, state);
3144 if (rstate == NULL)
3145 return -EINVAL;
3146
3147 if (!rstate->changeable)
3148 return -EPERM;
3149
3150 rstate->enabled = en;
3151
3152 return 0;
3153}
3154
3155int regulator_suspend_enable(struct regulator_dev *rdev,
3156 suspend_state_t state)
3157{
3158 return regulator_suspend_toggle(rdev, state, true);
3159}
3160EXPORT_SYMBOL_GPL(regulator_suspend_enable);
3161
3162int regulator_suspend_disable(struct regulator_dev *rdev,
3163 suspend_state_t state)
3164{
3165 struct regulator *regulator;
3166 struct regulator_voltage *voltage;
3167
3168 /*
3169 * if any consumer wants this regulator device keeping on in
3170 * suspend states, don't set it as disabled.
3171 */
3172 list_for_each_entry(regulator, &rdev->consumer_list, list) {
3173 voltage = &regulator->voltage[state];
3174 if (voltage->min_uV || voltage->max_uV)
3175 return 0;
3176 }
3177
3178 return regulator_suspend_toggle(rdev, state, false);
3179}
3180EXPORT_SYMBOL_GPL(regulator_suspend_disable);
3181
3182static int _regulator_set_suspend_voltage(struct regulator *regulator,
3183 int min_uV, int max_uV,
3184 suspend_state_t state)
3185{
3186 struct regulator_dev *rdev = regulator->rdev;
3187 struct regulator_state *rstate;
3188
3189 rstate = regulator_get_suspend_state(rdev, state);
3190 if (rstate == NULL)
3191 return -EINVAL;
3192
3193 if (rstate->min_uV == rstate->max_uV) {
3194 rdev_err(rdev, "The suspend voltage can't be changed!\n");
3195 return -EPERM;
3196 }
3197
3198 return regulator_set_voltage_unlocked(regulator, min_uV, max_uV, state);
3199}
3200
3201int regulator_set_suspend_voltage(struct regulator *regulator, int min_uV,
3202 int max_uV, suspend_state_t state)
3203{
3204 int ret = 0;
3205
3206 /* PM_SUSPEND_ON is handled by regulator_set_voltage() */
3207 if (regulator_check_states(state) || state == PM_SUSPEND_ON)
3208 return -EINVAL;
3209
Mark Brown38de19f2018-05-30 15:20:03 +01003210 regulator_lock_supply(regulator->rdev);
Chunyan Zhangf7efad12018-01-26 21:08:47 +08003211
3212 ret = _regulator_set_suspend_voltage(regulator, min_uV,
3213 max_uV, state);
3214
Mark Brown38de19f2018-05-30 15:20:03 +01003215 regulator_unlock_supply(regulator->rdev);
Chunyan Zhangf7efad12018-01-26 21:08:47 +08003216
3217 return ret;
3218}
3219EXPORT_SYMBOL_GPL(regulator_set_suspend_voltage);
3220
Mark Brown606a2562010-12-16 15:49:36 +00003221/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01003222 * regulator_set_voltage_time - get raise/fall time
3223 * @regulator: regulator source
3224 * @old_uV: starting voltage in microvolts
3225 * @new_uV: target voltage in microvolts
3226 *
3227 * Provided with the starting and ending voltage, this function attempts to
3228 * calculate the time in microseconds required to rise or fall to this new
3229 * voltage.
3230 */
3231int regulator_set_voltage_time(struct regulator *regulator,
3232 int old_uV, int new_uV)
3233{
Guodong Xu272e2312014-08-13 19:33:38 +08003234 struct regulator_dev *rdev = regulator->rdev;
3235 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01003236 int old_sel = -1;
3237 int new_sel = -1;
3238 int voltage;
3239 int i;
3240
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07003241 if (ops->set_voltage_time)
3242 return ops->set_voltage_time(rdev, old_uV, new_uV);
3243 else if (!ops->set_voltage_time_sel)
3244 return _regulator_set_voltage_time(rdev, old_uV, new_uV);
3245
Linus Walleij88cd222b2011-03-17 13:24:52 +01003246 /* Currently requires operations to do this */
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07003247 if (!ops->list_voltage || !rdev->desc->n_voltages)
Linus Walleij88cd222b2011-03-17 13:24:52 +01003248 return -EINVAL;
3249
3250 for (i = 0; i < rdev->desc->n_voltages; i++) {
3251 /* We only look for exact voltage matches here */
3252 voltage = regulator_list_voltage(regulator, i);
3253 if (voltage < 0)
3254 return -EINVAL;
3255 if (voltage == 0)
3256 continue;
3257 if (voltage == old_uV)
3258 old_sel = i;
3259 if (voltage == new_uV)
3260 new_sel = i;
3261 }
3262
3263 if (old_sel < 0 || new_sel < 0)
3264 return -EINVAL;
3265
3266 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
3267}
3268EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
3269
3270/**
Randy Dunlap296c6562012-08-18 17:44:14 -07003271 * regulator_set_voltage_time_sel - get raise/fall time
3272 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303273 * @old_selector: selector for starting voltage
3274 * @new_selector: selector for target voltage
3275 *
3276 * Provided with the starting and target voltage selectors, this function
3277 * returns time in microseconds required to rise or fall to this new voltage
3278 *
Axel Linf11d08c2012-06-19 09:38:45 +08003279 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08003280 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303281 */
3282int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
3283 unsigned int old_selector,
3284 unsigned int new_selector)
3285{
Axel Linf11d08c2012-06-19 09:38:45 +08003286 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08003287
Axel Linf11d08c2012-06-19 09:38:45 +08003288 /* sanity check */
3289 if (!rdev->desc->ops->list_voltage)
3290 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08003291
Axel Linf11d08c2012-06-19 09:38:45 +08003292 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
3293 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
3294
Matthias Kaehlcke73e705b2016-09-14 09:52:08 -07003295 if (rdev->desc->ops->set_voltage_time)
3296 return rdev->desc->ops->set_voltage_time(rdev, old_volt,
3297 new_volt);
3298 else
3299 return _regulator_set_voltage_time(rdev, old_volt, new_volt);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303300}
Mark Brownb19dbf72012-06-23 11:34:20 +01003301EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303302
3303/**
Mark Brown606a2562010-12-16 15:49:36 +00003304 * regulator_sync_voltage - re-apply last regulator output voltage
3305 * @regulator: regulator source
3306 *
3307 * Re-apply the last configured voltage. This is intended to be used
3308 * where some external control source the consumer is cooperating with
3309 * has caused the configured voltage to change.
3310 */
3311int regulator_sync_voltage(struct regulator *regulator)
3312{
3313 struct regulator_dev *rdev = regulator->rdev;
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003314 struct regulator_voltage *voltage = &regulator->voltage[PM_SUSPEND_ON];
Mark Brown606a2562010-12-16 15:49:36 +00003315 int ret, min_uV, max_uV;
3316
Maciej Purski66cf9a72018-04-23 16:33:37 +02003317 regulator_lock(rdev);
Mark Brown606a2562010-12-16 15:49:36 +00003318
3319 if (!rdev->desc->ops->set_voltage &&
3320 !rdev->desc->ops->set_voltage_sel) {
3321 ret = -EINVAL;
3322 goto out;
3323 }
3324
3325 /* This is only going to work if we've had a voltage configured. */
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003326 if (!voltage->min_uV && !voltage->max_uV) {
Mark Brown606a2562010-12-16 15:49:36 +00003327 ret = -EINVAL;
3328 goto out;
3329 }
3330
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003331 min_uV = voltage->min_uV;
3332 max_uV = voltage->max_uV;
Mark Brown606a2562010-12-16 15:49:36 +00003333
3334 /* This should be a paranoia check... */
3335 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
3336 if (ret < 0)
3337 goto out;
3338
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08003339 ret = regulator_check_consumers(rdev, &min_uV, &max_uV, 0);
Mark Brown606a2562010-12-16 15:49:36 +00003340 if (ret < 0)
3341 goto out;
3342
3343 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
3344
3345out:
Maciej Purski66cf9a72018-04-23 16:33:37 +02003346 regulator_unlock(rdev);
Mark Brown606a2562010-12-16 15:49:36 +00003347 return ret;
3348}
3349EXPORT_SYMBOL_GPL(regulator_sync_voltage);
3350
Liam Girdwood414c70c2008-04-30 15:59:04 +01003351static int _regulator_get_voltage(struct regulator_dev *rdev)
3352{
Mark Brownbf5892a2011-05-08 22:13:37 +01003353 int sel, ret;
Mark Brownfef95012016-04-07 16:22:36 +02003354 bool bypassed;
3355
3356 if (rdev->desc->ops->get_bypass) {
3357 ret = rdev->desc->ops->get_bypass(rdev, &bypassed);
3358 if (ret < 0)
3359 return ret;
3360 if (bypassed) {
3361 /* if bypassed the regulator must have a supply */
Jon Hunter45389c42016-04-26 11:29:45 +01003362 if (!rdev->supply) {
3363 rdev_err(rdev,
3364 "bypassed regulator has no supply!\n");
3365 return -EPROBE_DEFER;
3366 }
Mark Brownfef95012016-04-07 16:22:36 +02003367
3368 return _regulator_get_voltage(rdev->supply->rdev);
3369 }
3370 }
Mark Brown476c2d82010-12-10 17:28:07 +00003371
3372 if (rdev->desc->ops->get_voltage_sel) {
3373 sel = rdev->desc->ops->get_voltage_sel(rdev);
3374 if (sel < 0)
3375 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01003376 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08003377 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01003378 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01003379 } else if (rdev->desc->ops->list_voltage) {
3380 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05303381 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
3382 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02003383 } else if (rdev->supply) {
Mark Brownd9b96d32015-11-03 05:58:14 +00003384 ret = _regulator_get_voltage(rdev->supply->rdev);
Axel Lincb220d12011-05-23 20:08:10 +08003385 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003386 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08003387 }
Mark Brownbf5892a2011-05-08 22:13:37 +01003388
Axel Lincb220d12011-05-23 20:08:10 +08003389 if (ret < 0)
3390 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01003391 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003392}
3393
3394/**
3395 * regulator_get_voltage - get regulator output voltage
3396 * @regulator: regulator source
3397 *
3398 * This returns the current regulator voltage in uV.
3399 *
3400 * NOTE: If the regulator is disabled it will return the voltage value. This
3401 * function should not be used to determine regulator state.
3402 */
3403int regulator_get_voltage(struct regulator *regulator)
3404{
3405 int ret;
3406
Mark Brown38de19f2018-05-30 15:20:03 +01003407 regulator_lock_supply(regulator->rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003408
3409 ret = _regulator_get_voltage(regulator->rdev);
3410
Mark Brown38de19f2018-05-30 15:20:03 +01003411 regulator_unlock_supply(regulator->rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003412
3413 return ret;
3414}
3415EXPORT_SYMBOL_GPL(regulator_get_voltage);
3416
3417/**
3418 * regulator_set_current_limit - set regulator output current limit
3419 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01003420 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01003421 * @max_uA: Maximum supported current in uA
3422 *
3423 * Sets current sink to the desired output current. This can be set during
3424 * any regulator state. IOW, regulator can be disabled or enabled.
3425 *
3426 * If the regulator is enabled then the current will change to the new value
3427 * immediately otherwise if the regulator is disabled the regulator will
3428 * output at the new current when enabled.
3429 *
3430 * NOTE: Regulator system constraints must be set for this regulator before
3431 * calling this function otherwise this call will fail.
3432 */
3433int regulator_set_current_limit(struct regulator *regulator,
3434 int min_uA, int max_uA)
3435{
3436 struct regulator_dev *rdev = regulator->rdev;
3437 int ret;
3438
Maciej Purski66cf9a72018-04-23 16:33:37 +02003439 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003440
3441 /* sanity check */
3442 if (!rdev->desc->ops->set_current_limit) {
3443 ret = -EINVAL;
3444 goto out;
3445 }
3446
3447 /* constraints check */
3448 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
3449 if (ret < 0)
3450 goto out;
3451
3452 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
3453out:
Maciej Purski66cf9a72018-04-23 16:33:37 +02003454 regulator_unlock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003455 return ret;
3456}
3457EXPORT_SYMBOL_GPL(regulator_set_current_limit);
3458
3459static int _regulator_get_current_limit(struct regulator_dev *rdev)
3460{
3461 int ret;
3462
Maciej Purski66cf9a72018-04-23 16:33:37 +02003463 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003464
3465 /* sanity check */
3466 if (!rdev->desc->ops->get_current_limit) {
3467 ret = -EINVAL;
3468 goto out;
3469 }
3470
3471 ret = rdev->desc->ops->get_current_limit(rdev);
3472out:
Maciej Purski66cf9a72018-04-23 16:33:37 +02003473 regulator_unlock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003474 return ret;
3475}
3476
3477/**
3478 * regulator_get_current_limit - get regulator output current
3479 * @regulator: regulator source
3480 *
3481 * This returns the current supplied by the specified current sink in uA.
3482 *
3483 * NOTE: If the regulator is disabled it will return the current value. This
3484 * function should not be used to determine regulator state.
3485 */
3486int regulator_get_current_limit(struct regulator *regulator)
3487{
3488 return _regulator_get_current_limit(regulator->rdev);
3489}
3490EXPORT_SYMBOL_GPL(regulator_get_current_limit);
3491
3492/**
3493 * regulator_set_mode - set regulator operating mode
3494 * @regulator: regulator source
3495 * @mode: operating mode - one of the REGULATOR_MODE constants
3496 *
3497 * Set regulator operating mode to increase regulator efficiency or improve
3498 * regulation performance.
3499 *
3500 * NOTE: Regulator system constraints must be set for this regulator before
3501 * calling this function otherwise this call will fail.
3502 */
3503int regulator_set_mode(struct regulator *regulator, unsigned int mode)
3504{
3505 struct regulator_dev *rdev = regulator->rdev;
3506 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303507 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003508
Maciej Purski66cf9a72018-04-23 16:33:37 +02003509 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003510
3511 /* sanity check */
3512 if (!rdev->desc->ops->set_mode) {
3513 ret = -EINVAL;
3514 goto out;
3515 }
3516
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303517 /* return if the same mode is requested */
3518 if (rdev->desc->ops->get_mode) {
3519 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3520 if (regulator_curr_mode == mode) {
3521 ret = 0;
3522 goto out;
3523 }
3524 }
3525
Liam Girdwood414c70c2008-04-30 15:59:04 +01003526 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003527 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003528 if (ret < 0)
3529 goto out;
3530
3531 ret = rdev->desc->ops->set_mode(rdev, mode);
3532out:
Maciej Purski66cf9a72018-04-23 16:33:37 +02003533 regulator_unlock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003534 return ret;
3535}
3536EXPORT_SYMBOL_GPL(regulator_set_mode);
3537
3538static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3539{
3540 int ret;
3541
Maciej Purski66cf9a72018-04-23 16:33:37 +02003542 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003543
3544 /* sanity check */
3545 if (!rdev->desc->ops->get_mode) {
3546 ret = -EINVAL;
3547 goto out;
3548 }
3549
3550 ret = rdev->desc->ops->get_mode(rdev);
3551out:
Maciej Purski66cf9a72018-04-23 16:33:37 +02003552 regulator_unlock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003553 return ret;
3554}
3555
3556/**
3557 * regulator_get_mode - get regulator operating mode
3558 * @regulator: regulator source
3559 *
3560 * Get the current regulator operating mode.
3561 */
3562unsigned int regulator_get_mode(struct regulator *regulator)
3563{
3564 return _regulator_get_mode(regulator->rdev);
3565}
3566EXPORT_SYMBOL_GPL(regulator_get_mode);
3567
Axel Haslam1b5b4222016-11-03 12:11:42 +01003568static int _regulator_get_error_flags(struct regulator_dev *rdev,
3569 unsigned int *flags)
3570{
3571 int ret;
3572
Maciej Purski66cf9a72018-04-23 16:33:37 +02003573 regulator_lock(rdev);
Axel Haslam1b5b4222016-11-03 12:11:42 +01003574
3575 /* sanity check */
3576 if (!rdev->desc->ops->get_error_flags) {
3577 ret = -EINVAL;
3578 goto out;
3579 }
3580
3581 ret = rdev->desc->ops->get_error_flags(rdev, flags);
3582out:
Maciej Purski66cf9a72018-04-23 16:33:37 +02003583 regulator_unlock(rdev);
Axel Haslam1b5b4222016-11-03 12:11:42 +01003584 return ret;
3585}
3586
3587/**
3588 * regulator_get_error_flags - get regulator error information
3589 * @regulator: regulator source
3590 * @flags: pointer to store error flags
3591 *
3592 * Get the current regulator error information.
3593 */
3594int regulator_get_error_flags(struct regulator *regulator,
3595 unsigned int *flags)
3596{
3597 return _regulator_get_error_flags(regulator->rdev, flags);
3598}
3599EXPORT_SYMBOL_GPL(regulator_get_error_flags);
3600
Liam Girdwood414c70c2008-04-30 15:59:04 +01003601/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003602 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003603 * @regulator: regulator source
3604 * @uA_load: load current
3605 *
3606 * Notifies the regulator core of a new device load. This is then used by
3607 * DRMS (if enabled by constraints) to set the most efficient regulator
3608 * operating mode for the new regulator loading.
3609 *
3610 * Consumer devices notify their supply regulator of the maximum power
3611 * they will require (can be taken from device datasheet in the power
3612 * consumption tables) when they change operational status and hence power
3613 * state. Examples of operational state changes that can affect power
3614 * consumption are :-
3615 *
3616 * o Device is opened / closed.
3617 * o Device I/O is about to begin or has just finished.
3618 * o Device is idling in between work.
3619 *
3620 * This information is also exported via sysfs to userspace.
3621 *
3622 * DRMS will sum the total requested load on the regulator and change
3623 * to the most efficient operating mode if platform constraints allow.
3624 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003625 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003626 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003627int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003628{
3629 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003630 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003631
Maciej Purski66cf9a72018-04-23 16:33:37 +02003632 regulator_lock(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003633 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003634 ret = drms_uA_update(rdev);
Maciej Purski66cf9a72018-04-23 16:33:37 +02003635 regulator_unlock(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003636
Liam Girdwood414c70c2008-04-30 15:59:04 +01003637 return ret;
3638}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003639EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003640
3641/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003642 * regulator_allow_bypass - allow the regulator to go into bypass mode
3643 *
3644 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003645 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003646 *
3647 * Allow the regulator to go into bypass mode if all other consumers
3648 * for the regulator also enable bypass mode and the machine
3649 * constraints allow this. Bypass mode means that the regulator is
3650 * simply passing the input directly to the output with no regulation.
3651 */
3652int regulator_allow_bypass(struct regulator *regulator, bool enable)
3653{
3654 struct regulator_dev *rdev = regulator->rdev;
3655 int ret = 0;
3656
3657 if (!rdev->desc->ops->set_bypass)
3658 return 0;
3659
WEN Pingbo8a34e972016-04-23 15:11:05 +08003660 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_BYPASS))
Mark Brownf59c8f92012-08-31 10:36:37 -07003661 return 0;
3662
Maciej Purski66cf9a72018-04-23 16:33:37 +02003663 regulator_lock(rdev);
Mark Brownf59c8f92012-08-31 10:36:37 -07003664
3665 if (enable && !regulator->bypass) {
3666 rdev->bypass_count++;
3667
3668 if (rdev->bypass_count == rdev->open_count) {
3669 ret = rdev->desc->ops->set_bypass(rdev, enable);
3670 if (ret != 0)
3671 rdev->bypass_count--;
3672 }
3673
3674 } else if (!enable && regulator->bypass) {
3675 rdev->bypass_count--;
3676
3677 if (rdev->bypass_count != rdev->open_count) {
3678 ret = rdev->desc->ops->set_bypass(rdev, enable);
3679 if (ret != 0)
3680 rdev->bypass_count++;
3681 }
3682 }
3683
3684 if (ret == 0)
3685 regulator->bypass = enable;
3686
Maciej Purski66cf9a72018-04-23 16:33:37 +02003687 regulator_unlock(rdev);
Mark Brownf59c8f92012-08-31 10:36:37 -07003688
3689 return ret;
3690}
3691EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3692
3693/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003694 * regulator_register_notifier - register regulator event notifier
3695 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003696 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003697 *
3698 * Register notifier block to receive regulator events.
3699 */
3700int regulator_register_notifier(struct regulator *regulator,
3701 struct notifier_block *nb)
3702{
3703 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3704 nb);
3705}
3706EXPORT_SYMBOL_GPL(regulator_register_notifier);
3707
3708/**
3709 * regulator_unregister_notifier - unregister regulator event notifier
3710 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003711 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003712 *
3713 * Unregister regulator event notifier block.
3714 */
3715int regulator_unregister_notifier(struct regulator *regulator,
3716 struct notifier_block *nb)
3717{
3718 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3719 nb);
3720}
3721EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3722
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003723/* notify regulator consumers and downstream regulator consumers.
3724 * Note mutex must be held by caller.
3725 */
Heiko Stübner71795692014-08-28 12:36:04 -07003726static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003727 unsigned long event, void *data)
3728{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003729 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003730 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003731}
3732
3733/**
3734 * regulator_bulk_get - get multiple regulator consumers
3735 *
3736 * @dev: Device to supply
3737 * @num_consumers: Number of consumers to register
3738 * @consumers: Configuration of consumers; clients are stored here.
3739 *
3740 * @return 0 on success, an errno on failure.
3741 *
3742 * This helper function allows drivers to get several regulator
3743 * consumers in one operation. If any of the regulators cannot be
3744 * acquired then any regulators that were allocated will be freed
3745 * before returning to the caller.
3746 */
3747int regulator_bulk_get(struct device *dev, int num_consumers,
3748 struct regulator_bulk_data *consumers)
3749{
3750 int i;
3751 int ret;
3752
3753 for (i = 0; i < num_consumers; i++)
3754 consumers[i].consumer = NULL;
3755
3756 for (i = 0; i < num_consumers; i++) {
Bjorn Andersson565f9b02016-08-16 11:50:32 -07003757 consumers[i].consumer = regulator_get(dev,
3758 consumers[i].supply);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003759 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003760 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003761 dev_err(dev, "Failed to get supply '%s': %d\n",
3762 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003763 consumers[i].consumer = NULL;
3764 goto err;
3765 }
3766 }
3767
3768 return 0;
3769
3770err:
Axel Linb29c7692012-02-20 10:32:16 +08003771 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003772 regulator_put(consumers[i].consumer);
3773
3774 return ret;
3775}
3776EXPORT_SYMBOL_GPL(regulator_bulk_get);
3777
Mark Brownf21e0e82011-05-24 08:12:40 +08003778static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3779{
3780 struct regulator_bulk_data *bulk = data;
3781
3782 bulk->ret = regulator_enable(bulk->consumer);
3783}
3784
Liam Girdwood414c70c2008-04-30 15:59:04 +01003785/**
3786 * regulator_bulk_enable - enable multiple regulator consumers
3787 *
3788 * @num_consumers: Number of consumers
3789 * @consumers: Consumer data; clients are stored here.
3790 * @return 0 on success, an errno on failure
3791 *
3792 * This convenience API allows consumers to enable multiple regulator
3793 * clients in a single API call. If any consumers cannot be enabled
3794 * then any others that were enabled will be disabled again prior to
3795 * return.
3796 */
3797int regulator_bulk_enable(int num_consumers,
3798 struct regulator_bulk_data *consumers)
3799{
Dan Williams2955b472012-07-09 19:33:25 -07003800 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003801 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003802 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003803
Mark Brown6492bc12012-04-19 13:19:07 +01003804 for (i = 0; i < num_consumers; i++) {
3805 if (consumers[i].consumer->always_on)
3806 consumers[i].ret = 0;
3807 else
3808 async_schedule_domain(regulator_bulk_enable_async,
3809 &consumers[i], &async_domain);
3810 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003811
3812 async_synchronize_full_domain(&async_domain);
3813
3814 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003815 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003816 if (consumers[i].ret != 0) {
3817 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003818 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003819 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003820 }
3821
3822 return 0;
3823
3824err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003825 for (i = 0; i < num_consumers; i++) {
3826 if (consumers[i].ret < 0)
3827 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3828 consumers[i].ret);
3829 else
3830 regulator_disable(consumers[i].consumer);
3831 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003832
3833 return ret;
3834}
3835EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3836
3837/**
3838 * regulator_bulk_disable - disable multiple regulator consumers
3839 *
3840 * @num_consumers: Number of consumers
3841 * @consumers: Consumer data; clients are stored here.
3842 * @return 0 on success, an errno on failure
3843 *
3844 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003845 * clients in a single API call. If any consumers cannot be disabled
3846 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003847 * return.
3848 */
3849int regulator_bulk_disable(int num_consumers,
3850 struct regulator_bulk_data *consumers)
3851{
3852 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003853 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003854
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003855 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003856 ret = regulator_disable(consumers[i].consumer);
3857 if (ret != 0)
3858 goto err;
3859 }
3860
3861 return 0;
3862
3863err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003864 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003865 for (++i; i < num_consumers; ++i) {
3866 r = regulator_enable(consumers[i].consumer);
3867 if (r != 0)
Dmitry Torokhovd1642ea2017-02-03 15:16:16 -08003868 pr_err("Failed to re-enable %s: %d\n",
Mark Brown01e86f42012-03-28 21:36:38 +01003869 consumers[i].supply, r);
3870 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003871
3872 return ret;
3873}
3874EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3875
3876/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003877 * regulator_bulk_force_disable - force disable multiple regulator consumers
3878 *
3879 * @num_consumers: Number of consumers
3880 * @consumers: Consumer data; clients are stored here.
3881 * @return 0 on success, an errno on failure
3882 *
3883 * This convenience API allows consumers to forcibly disable multiple regulator
3884 * clients in a single API call.
3885 * NOTE: This should be used for situations when device damage will
3886 * likely occur if the regulators are not disabled (e.g. over temp).
3887 * Although regulator_force_disable function call for some consumers can
3888 * return error numbers, the function is called for all consumers.
3889 */
3890int regulator_bulk_force_disable(int num_consumers,
3891 struct regulator_bulk_data *consumers)
3892{
3893 int i;
Dmitry Torokhovb8c77ff2017-02-03 15:16:17 -08003894 int ret = 0;
Donggeun Kime1de2f42012-01-03 16:22:03 +09003895
Dmitry Torokhovb8c77ff2017-02-03 15:16:17 -08003896 for (i = 0; i < num_consumers; i++) {
Donggeun Kime1de2f42012-01-03 16:22:03 +09003897 consumers[i].ret =
3898 regulator_force_disable(consumers[i].consumer);
3899
Dmitry Torokhovb8c77ff2017-02-03 15:16:17 -08003900 /* Store first error for reporting */
3901 if (consumers[i].ret && !ret)
Donggeun Kime1de2f42012-01-03 16:22:03 +09003902 ret = consumers[i].ret;
Donggeun Kime1de2f42012-01-03 16:22:03 +09003903 }
3904
Donggeun Kime1de2f42012-01-03 16:22:03 +09003905 return ret;
3906}
3907EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3908
3909/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003910 * regulator_bulk_free - free multiple regulator consumers
3911 *
3912 * @num_consumers: Number of consumers
3913 * @consumers: Consumer data; clients are stored here.
3914 *
3915 * This convenience API allows consumers to free multiple regulator
3916 * clients in a single API call.
3917 */
3918void regulator_bulk_free(int num_consumers,
3919 struct regulator_bulk_data *consumers)
3920{
3921 int i;
3922
3923 for (i = 0; i < num_consumers; i++) {
3924 regulator_put(consumers[i].consumer);
3925 consumers[i].consumer = NULL;
3926 }
3927}
3928EXPORT_SYMBOL_GPL(regulator_bulk_free);
3929
3930/**
3931 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003932 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003933 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003934 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003935 *
3936 * Called by regulator drivers to notify clients a regulator event has
3937 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003938 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003939 */
3940int regulator_notifier_call_chain(struct regulator_dev *rdev,
3941 unsigned long event, void *data)
3942{
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09003943 lockdep_assert_held_once(&rdev->mutex);
3944
Liam Girdwood414c70c2008-04-30 15:59:04 +01003945 _notifier_call_chain(rdev, event, data);
3946 return NOTIFY_DONE;
3947
3948}
3949EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3950
Mark Brownbe721972009-08-04 20:09:52 +02003951/**
3952 * regulator_mode_to_status - convert a regulator mode into a status
3953 *
3954 * @mode: Mode to convert
3955 *
3956 * Convert a regulator mode into a status.
3957 */
3958int regulator_mode_to_status(unsigned int mode)
3959{
3960 switch (mode) {
3961 case REGULATOR_MODE_FAST:
3962 return REGULATOR_STATUS_FAST;
3963 case REGULATOR_MODE_NORMAL:
3964 return REGULATOR_STATUS_NORMAL;
3965 case REGULATOR_MODE_IDLE:
3966 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003967 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003968 return REGULATOR_STATUS_STANDBY;
3969 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003970 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003971 }
3972}
3973EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3974
Takashi Iwai39f802d2015-01-30 20:29:31 +01003975static struct attribute *regulator_dev_attrs[] = {
3976 &dev_attr_name.attr,
3977 &dev_attr_num_users.attr,
3978 &dev_attr_type.attr,
3979 &dev_attr_microvolts.attr,
3980 &dev_attr_microamps.attr,
3981 &dev_attr_opmode.attr,
3982 &dev_attr_state.attr,
3983 &dev_attr_status.attr,
3984 &dev_attr_bypass.attr,
3985 &dev_attr_requested_microamps.attr,
3986 &dev_attr_min_microvolts.attr,
3987 &dev_attr_max_microvolts.attr,
3988 &dev_attr_min_microamps.attr,
3989 &dev_attr_max_microamps.attr,
3990 &dev_attr_suspend_standby_state.attr,
3991 &dev_attr_suspend_mem_state.attr,
3992 &dev_attr_suspend_disk_state.attr,
3993 &dev_attr_suspend_standby_microvolts.attr,
3994 &dev_attr_suspend_mem_microvolts.attr,
3995 &dev_attr_suspend_disk_microvolts.attr,
3996 &dev_attr_suspend_standby_mode.attr,
3997 &dev_attr_suspend_mem_mode.attr,
3998 &dev_attr_suspend_disk_mode.attr,
3999 NULL
4000};
4001
David Brownell7ad68e22008-11-11 17:39:02 -08004002/*
4003 * To avoid cluttering sysfs (and memory) with useless state, only
4004 * create attributes that can be meaningfully displayed.
4005 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01004006static umode_t regulator_attr_is_visible(struct kobject *kobj,
4007 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08004008{
Takashi Iwai39f802d2015-01-30 20:29:31 +01004009 struct device *dev = kobj_to_dev(kobj);
Geliang Tang83080a12016-01-05 22:07:55 +08004010 struct regulator_dev *rdev = dev_to_rdev(dev);
Guodong Xu272e2312014-08-13 19:33:38 +08004011 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01004012 umode_t mode = attr->mode;
4013
4014 /* these three are always present */
4015 if (attr == &dev_attr_name.attr ||
4016 attr == &dev_attr_num_users.attr ||
4017 attr == &dev_attr_type.attr)
4018 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08004019
4020 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01004021 if (attr == &dev_attr_microvolts.attr) {
4022 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
4023 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
4024 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
4025 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
4026 return mode;
4027 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07004028 }
David Brownell7ad68e22008-11-11 17:39:02 -08004029
Takashi Iwai39f802d2015-01-30 20:29:31 +01004030 if (attr == &dev_attr_microamps.attr)
4031 return ops->get_current_limit ? mode : 0;
4032
4033 if (attr == &dev_attr_opmode.attr)
4034 return ops->get_mode ? mode : 0;
4035
4036 if (attr == &dev_attr_state.attr)
4037 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
4038
4039 if (attr == &dev_attr_status.attr)
4040 return ops->get_status ? mode : 0;
4041
4042 if (attr == &dev_attr_bypass.attr)
4043 return ops->get_bypass ? mode : 0;
4044
David Brownell7ad68e22008-11-11 17:39:02 -08004045 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01004046 if (attr == &dev_attr_requested_microamps.attr)
4047 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08004048
David Brownell7ad68e22008-11-11 17:39:02 -08004049 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01004050 if (attr == &dev_attr_min_microvolts.attr ||
4051 attr == &dev_attr_max_microvolts.attr)
4052 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08004053
Takashi Iwai39f802d2015-01-30 20:29:31 +01004054 if (attr == &dev_attr_min_microamps.attr ||
4055 attr == &dev_attr_max_microamps.attr)
4056 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08004057
Takashi Iwai39f802d2015-01-30 20:29:31 +01004058 if (attr == &dev_attr_suspend_standby_state.attr ||
4059 attr == &dev_attr_suspend_mem_state.attr ||
4060 attr == &dev_attr_suspend_disk_state.attr)
4061 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08004062
Takashi Iwai39f802d2015-01-30 20:29:31 +01004063 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
4064 attr == &dev_attr_suspend_mem_microvolts.attr ||
4065 attr == &dev_attr_suspend_disk_microvolts.attr)
4066 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08004067
Takashi Iwai39f802d2015-01-30 20:29:31 +01004068 if (attr == &dev_attr_suspend_standby_mode.attr ||
4069 attr == &dev_attr_suspend_mem_mode.attr ||
4070 attr == &dev_attr_suspend_disk_mode.attr)
4071 return ops->set_suspend_mode ? mode : 0;
4072
4073 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08004074}
4075
Takashi Iwai39f802d2015-01-30 20:29:31 +01004076static const struct attribute_group regulator_dev_group = {
4077 .attrs = regulator_dev_attrs,
4078 .is_visible = regulator_attr_is_visible,
4079};
4080
4081static const struct attribute_group *regulator_dev_groups[] = {
4082 &regulator_dev_group,
4083 NULL
4084};
4085
4086static void regulator_dev_release(struct device *dev)
4087{
4088 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown29f5f482015-08-07 20:01:32 +01004089
4090 kfree(rdev->constraints);
4091 of_node_put(rdev->dev.of_node);
Takashi Iwai39f802d2015-01-30 20:29:31 +01004092 kfree(rdev);
4093}
4094
Mark Brown1130e5b2010-12-21 23:49:31 +00004095static void rdev_init_debugfs(struct regulator_dev *rdev)
4096{
Guenter Roecka9eaa812014-10-17 08:17:03 -07004097 struct device *parent = rdev->dev.parent;
4098 const char *rname = rdev_get_name(rdev);
4099 char name[NAME_MAX];
4100
4101 /* Avoid duplicate debugfs directory names */
4102 if (parent && rname == rdev->desc->name) {
4103 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
4104 rname);
4105 rname = name;
4106 }
4107
4108 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08004109 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00004110 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00004111 return;
4112 }
4113
4114 debugfs_create_u32("use_count", 0444, rdev->debugfs,
4115 &rdev->use_count);
4116 debugfs_create_u32("open_count", 0444, rdev->debugfs,
4117 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07004118 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
4119 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00004120}
4121
Javier Martinez Canillas5e3ca2b2016-03-23 20:59:34 -03004122static int regulator_register_resolve_supply(struct device *dev, void *data)
4123{
Jon Hunter7ddede62016-04-21 17:11:57 +01004124 struct regulator_dev *rdev = dev_to_rdev(dev);
4125
4126 if (regulator_resolve_supply(rdev))
4127 rdev_dbg(rdev, "unable to resolve supply\n");
4128
4129 return 0;
Javier Martinez Canillas5e3ca2b2016-03-23 20:59:34 -03004130}
4131
Maciej Purskid3d64532018-04-23 16:33:40 +02004132static int regulator_fill_coupling_array(struct regulator_dev *rdev)
4133{
4134 struct coupling_desc *c_desc = &rdev->coupling_desc;
4135 int n_coupled = c_desc->n_coupled;
4136 struct regulator_dev *c_rdev;
4137 int i;
4138
4139 for (i = 1; i < n_coupled; i++) {
4140 /* already resolved */
4141 if (c_desc->coupled_rdevs[i])
4142 continue;
4143
4144 c_rdev = of_parse_coupled_regulator(rdev, i - 1);
4145
4146 if (c_rdev) {
4147 c_desc->coupled_rdevs[i] = c_rdev;
4148 c_desc->n_resolved++;
4149 }
4150 }
4151
4152 if (rdev->coupling_desc.n_resolved < n_coupled)
4153 return -1;
4154 else
4155 return 0;
4156}
4157
4158static int regulator_register_fill_coupling_array(struct device *dev,
4159 void *data)
4160{
4161 struct regulator_dev *rdev = dev_to_rdev(dev);
4162
4163 if (!IS_ENABLED(CONFIG_OF))
4164 return 0;
4165
4166 if (regulator_fill_coupling_array(rdev))
4167 rdev_dbg(rdev, "unable to resolve coupling\n");
4168
4169 return 0;
4170}
4171
4172static int regulator_resolve_coupling(struct regulator_dev *rdev)
4173{
4174 int n_phandles;
4175
4176 if (!IS_ENABLED(CONFIG_OF))
4177 n_phandles = 0;
4178 else
4179 n_phandles = of_get_n_coupled(rdev);
4180
4181 if (n_phandles + 1 > MAX_COUPLED) {
4182 rdev_err(rdev, "too many regulators coupled\n");
4183 return -EPERM;
4184 }
4185
4186 /*
4187 * Every regulator should always have coupling descriptor filled with
4188 * at least pointer to itself.
4189 */
4190 rdev->coupling_desc.coupled_rdevs[0] = rdev;
4191 rdev->coupling_desc.n_coupled = n_phandles + 1;
4192 rdev->coupling_desc.n_resolved++;
4193
4194 /* regulator isn't coupled */
4195 if (n_phandles == 0)
4196 return 0;
4197
4198 /* regulator, which can't change its voltage, can't be coupled */
4199 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_VOLTAGE)) {
4200 rdev_err(rdev, "voltage operation not allowed\n");
4201 return -EPERM;
4202 }
4203
4204 if (rdev->constraints->max_spread <= 0) {
4205 rdev_err(rdev, "wrong max_spread value\n");
4206 return -EPERM;
4207 }
4208
4209 if (!of_check_coupling_data(rdev))
4210 return -EPERM;
4211
4212 /*
4213 * After everything has been checked, try to fill rdevs array
4214 * with pointers to regulators parsed from device tree. If some
4215 * regulators are not registered yet, retry in late init call
4216 */
4217 regulator_fill_coupling_array(rdev);
4218
4219 return 0;
4220}
4221
Liam Girdwood414c70c2008-04-30 15:59:04 +01004222/**
4223 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00004224 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01004225 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004226 *
4227 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08004228 * Returns a valid pointer to struct regulator_dev on success
4229 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01004230 */
Mark Brown65f26842012-04-03 20:46:53 +01004231struct regulator_dev *
4232regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01004233 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01004234{
Mark Brown9a8f5e02011-11-29 18:11:19 +00004235 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01004236 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01004237 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05304238 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004239 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01004240 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01004241 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004242
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01004243 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01004244 return ERR_PTR(-EINVAL);
4245
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01004246 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01004247 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01004248
Liam Girdwood414c70c2008-04-30 15:59:04 +01004249 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
4250 return ERR_PTR(-EINVAL);
4251
Diego Lizierocd78dfc2009-04-14 03:04:47 +02004252 if (regulator_desc->type != REGULATOR_VOLTAGE &&
4253 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01004254 return ERR_PTR(-EINVAL);
4255
Mark Brown476c2d82010-12-10 17:28:07 +00004256 /* Only one of each should be implemented */
4257 WARN_ON(regulator_desc->ops->get_voltage &&
4258 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00004259 WARN_ON(regulator_desc->ops->set_voltage &&
4260 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00004261
4262 /* If we're using selectors we must implement list_voltage. */
4263 if (regulator_desc->ops->get_voltage_sel &&
4264 !regulator_desc->ops->list_voltage) {
4265 return ERR_PTR(-EINVAL);
4266 }
Mark Browne8eef822010-12-12 14:36:17 +00004267 if (regulator_desc->ops->set_voltage_sel &&
4268 !regulator_desc->ops->list_voltage) {
4269 return ERR_PTR(-EINVAL);
4270 }
Mark Brown476c2d82010-12-10 17:28:07 +00004271
Liam Girdwood414c70c2008-04-30 15:59:04 +01004272 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
4273 if (rdev == NULL)
4274 return ERR_PTR(-ENOMEM);
4275
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01004276 /*
4277 * Duplicate the config so the driver could override it after
4278 * parsing init data.
4279 */
4280 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
4281 if (config == NULL) {
4282 kfree(rdev);
4283 return ERR_PTR(-ENOMEM);
4284 }
4285
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01004286 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01004287 &rdev->dev.of_node);
4288 if (!init_data) {
4289 init_data = config->init_data;
4290 rdev->dev.of_node = of_node_get(config->of_node);
4291 }
4292
Liam Girdwood414c70c2008-04-30 15:59:04 +01004293 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01004294 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004295 rdev->owner = regulator_desc->owner;
4296 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01004297 if (config->regmap)
4298 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05304299 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01004300 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05304301 else if (dev->parent)
4302 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004303 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004304 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004305 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01004306 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004307
Liam Girdwooda5766f12008-10-10 13:22:20 +01004308 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00004309 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01004310 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08004311 if (ret < 0)
4312 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01004313 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01004314
Linus Walleije45e2902018-02-12 14:16:57 +01004315 if (config->ena_gpiod ||
4316 ((config->ena_gpio || config->ena_gpio_initialized) &&
4317 gpio_is_valid(config->ena_gpio))) {
Jon Hunter45389c42016-04-26 11:29:45 +01004318 mutex_lock(&regulator_list_mutex);
Krzysztof Adamskidaad1342016-02-22 09:24:00 +01004319 ret = regulator_ena_gpio_request(rdev, config);
Jon Hunter45389c42016-04-26 11:29:45 +01004320 mutex_unlock(&regulator_list_mutex);
Krzysztof Adamskidaad1342016-02-22 09:24:00 +01004321 if (ret != 0) {
4322 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
4323 config->ena_gpio, ret);
Krzysztof Adamski32165232016-02-24 11:52:50 +01004324 goto clean;
Krzysztof Adamskidaad1342016-02-22 09:24:00 +01004325 }
4326 }
4327
Liam Girdwooda5766f12008-10-10 13:22:20 +01004328 /* register with sysfs */
4329 rdev->dev.class = &regulator_class;
4330 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05304331 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05304332 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01004333
Mike Rapoport74f544c2008-11-25 14:53:53 +02004334 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00004335 if (init_data)
4336 constraints = &init_data->constraints;
4337
Mark Brown9a8f5e02011-11-29 18:11:19 +00004338 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07004339 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05304340 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07004341 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05304342
Jon Hunter45389c42016-04-26 11:29:45 +01004343 /*
4344 * Attempt to resolve the regulator supply, if specified,
4345 * but don't return an error if we fail because we will try
4346 * to resolve it again later as more regulators are added.
4347 */
4348 if (regulator_resolve_supply(rdev))
4349 rdev_dbg(rdev, "unable to resolve supply\n");
4350
4351 ret = set_machine_constraints(rdev, constraints);
4352 if (ret < 0)
4353 goto wash;
4354
Maciej Purskid3d64532018-04-23 16:33:40 +02004355 mutex_lock(&regulator_list_mutex);
4356 ret = regulator_resolve_coupling(rdev);
4357 mutex_unlock(&regulator_list_mutex);
4358
4359 if (ret != 0)
4360 goto wash;
4361
Liam Girdwooda5766f12008-10-10 13:22:20 +01004362 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00004363 if (init_data) {
Jon Hunter45389c42016-04-26 11:29:45 +01004364 mutex_lock(&regulator_list_mutex);
Mark Brown9a8f5e02011-11-29 18:11:19 +00004365 for (i = 0; i < init_data->num_consumer_supplies; i++) {
4366 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00004367 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00004368 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00004369 if (ret < 0) {
Jon Hunter45389c42016-04-26 11:29:45 +01004370 mutex_unlock(&regulator_list_mutex);
Mark Brown9a8f5e02011-11-29 18:11:19 +00004371 dev_err(dev, "Failed to set supply %s\n",
4372 init_data->consumer_supplies[i].supply);
4373 goto unset_supplies;
4374 }
Mark Brown23c2f042011-02-24 17:39:09 +00004375 }
Jon Hunter45389c42016-04-26 11:29:45 +01004376 mutex_unlock(&regulator_list_mutex);
Liam Girdwooda5766f12008-10-10 13:22:20 +01004377 }
4378
Matthias Kaehlckefd086042017-03-27 16:54:12 -07004379 if (!rdev->desc->ops->get_voltage &&
4380 !rdev->desc->ops->list_voltage &&
4381 !rdev->desc->fixed_uV)
4382 rdev->is_switch = true;
4383
Jon Hunterc438b9d2016-04-21 17:11:59 +01004384 ret = device_register(&rdev->dev);
4385 if (ret != 0) {
4386 put_device(&rdev->dev);
4387 goto unset_supplies;
4388 }
4389
4390 dev_set_drvdata(&rdev->dev, rdev);
Mark Brown1130e5b2010-12-21 23:49:31 +00004391 rdev_init_debugfs(rdev);
Javier Martinez Canillas5e3ca2b2016-03-23 20:59:34 -03004392
4393 /* try to resolve regulators supply since a new one was registered */
4394 class_for_each_device(&regulator_class, NULL, NULL,
4395 regulator_register_resolve_supply);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01004396 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004397 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08004398
Jani Nikulad4033b52010-04-29 10:55:11 +03004399unset_supplies:
Jon Hunter45389c42016-04-26 11:29:45 +01004400 mutex_lock(&regulator_list_mutex);
Jani Nikulad4033b52010-04-29 10:55:11 +03004401 unset_regulator_supplies(rdev);
Jon Hunter45389c42016-04-26 11:29:45 +01004402 mutex_unlock(&regulator_list_mutex);
Krzysztof Adamski32165232016-02-24 11:52:50 +01004403wash:
Boris Brezillon469b6402016-04-12 12:31:00 +02004404 kfree(rdev->constraints);
Jon Hunter45389c42016-04-26 11:29:45 +01004405 mutex_lock(&regulator_list_mutex);
Krzysztof Adamski32165232016-02-24 11:52:50 +01004406 regulator_ena_gpio_free(rdev);
Jon Hunter45389c42016-04-26 11:29:45 +01004407 mutex_unlock(&regulator_list_mutex);
David Brownell4fca9542008-11-11 17:38:53 -08004408clean:
4409 kfree(rdev);
Jon Huntera2151372016-03-30 17:09:13 +01004410 kfree(config);
4411 return ERR_PTR(ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004412}
4413EXPORT_SYMBOL_GPL(regulator_register);
4414
4415/**
4416 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00004417 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01004418 *
4419 * Called by regulator drivers to unregister a regulator.
4420 */
4421void regulator_unregister(struct regulator_dev *rdev)
4422{
4423 if (rdev == NULL)
4424 return;
4425
Mark Brown891636e2013-07-08 09:14:45 +01004426 if (rdev->supply) {
4427 while (rdev->use_count--)
4428 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01004429 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01004430 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01004431 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00004432 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07004433 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01004434 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02004435 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004436 list_del(&rdev->list);
Kim, Milof19b00d2013-02-18 06:50:39 +00004437 regulator_ena_gpio_free(rdev);
Mark Brown2c0a3032016-04-12 08:05:43 +01004438 mutex_unlock(&regulator_list_mutex);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01004439 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004440}
4441EXPORT_SYMBOL_GPL(regulator_unregister);
4442
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004443#ifdef CONFIG_SUSPEND
4444static int _regulator_suspend_late(struct device *dev, void *data)
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004445{
4446 struct regulator_dev *rdev = dev_to_rdev(dev);
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004447 suspend_state_t *state = data;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004448 int ret;
4449
Maciej Purski66cf9a72018-04-23 16:33:37 +02004450 regulator_lock(rdev);
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004451 ret = suspend_set_state(rdev, *state);
Maciej Purski66cf9a72018-04-23 16:33:37 +02004452 regulator_unlock(rdev);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004453
4454 return ret;
4455}
4456
Liam Girdwood414c70c2008-04-30 15:59:04 +01004457/**
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004458 * regulator_suspend_late - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01004459 * @state: system suspend state
4460 *
4461 * Configure each regulator with it's suspend operating parameters for state.
Liam Girdwood414c70c2008-04-30 15:59:04 +01004462 */
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004463static int regulator_suspend_late(struct device *dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01004464{
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004465 suspend_state_t state = pm_suspend_target_state;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004466
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004467 return class_for_each_device(&regulator_class, NULL, &state,
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004468 _regulator_suspend_late);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004469}
Mark Brownd3e4ecc2018-03-22 15:23:35 +08004470
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004471static int _regulator_resume_early(struct device *dev, void *data)
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004472{
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004473 int ret = 0;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004474 struct regulator_dev *rdev = dev_to_rdev(dev);
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004475 suspend_state_t *state = data;
4476 struct regulator_state *rstate;
4477
4478 rstate = regulator_get_suspend_state(rdev, *state);
4479 if (rstate == NULL)
Geert Uytterhoeven35b5f142018-02-13 10:37:59 +01004480 return 0;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004481
Maciej Purski66cf9a72018-04-23 16:33:37 +02004482 regulator_lock(rdev);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004483
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004484 if (rdev->desc->ops->resume_early &&
4485 (rstate->enabled == ENABLE_IN_SUSPEND ||
4486 rstate->enabled == DISABLE_IN_SUSPEND))
4487 ret = rdev->desc->ops->resume_early(rdev);
4488
Maciej Purski66cf9a72018-04-23 16:33:37 +02004489 regulator_unlock(rdev);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004490
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004491 return ret;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004492}
4493
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004494static int regulator_resume_early(struct device *dev)
MyungJoo Ham7a32b582011-03-11 10:13:59 +09004495{
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004496 suspend_state_t state = pm_suspend_target_state;
MyungJoo Ham7a32b582011-03-11 10:13:59 +09004497
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004498 return class_for_each_device(&regulator_class, NULL, &state,
4499 _regulator_resume_early);
4500}
4501
4502#else /* !CONFIG_SUSPEND */
4503
4504#define regulator_suspend_late NULL
4505#define regulator_resume_early NULL
4506
4507#endif /* !CONFIG_SUSPEND */
4508
4509#ifdef CONFIG_PM
4510static const struct dev_pm_ops __maybe_unused regulator_pm_ops = {
4511 .suspend_late = regulator_suspend_late,
4512 .resume_early = regulator_resume_early,
4513};
4514#endif
4515
Mark Brown285c22d2018-01-26 17:40:03 +00004516struct class regulator_class = {
Chunyan Zhangf7efad12018-01-26 21:08:47 +08004517 .name = "regulator",
4518 .dev_release = regulator_dev_release,
4519 .dev_groups = regulator_dev_groups,
4520#ifdef CONFIG_PM
4521 .pm = &regulator_pm_ops,
4522#endif
4523};
MyungJoo Ham7a32b582011-03-11 10:13:59 +09004524/**
Mark Brownca725562009-03-16 19:36:34 +00004525 * regulator_has_full_constraints - the system has fully specified constraints
4526 *
4527 * Calling this function will cause the regulator API to disable all
4528 * regulators which have a zero use count and don't have an always_on
4529 * constraint in a late_initcall.
4530 *
4531 * The intention is that this will become the default behaviour in a
4532 * future kernel release so users are encouraged to use this facility
4533 * now.
4534 */
4535void regulator_has_full_constraints(void)
4536{
4537 has_full_constraints = 1;
4538}
4539EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
4540
4541/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01004542 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00004543 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004544 *
4545 * Get rdev regulator driver private data. This call can be used in the
4546 * regulator driver context.
4547 */
4548void *rdev_get_drvdata(struct regulator_dev *rdev)
4549{
4550 return rdev->reg_data;
4551}
4552EXPORT_SYMBOL_GPL(rdev_get_drvdata);
4553
4554/**
4555 * regulator_get_drvdata - get regulator driver data
4556 * @regulator: regulator
4557 *
4558 * Get regulator driver private data. This call can be used in the consumer
4559 * driver context when non API regulator specific functions need to be called.
4560 */
4561void *regulator_get_drvdata(struct regulator *regulator)
4562{
4563 return regulator->rdev->reg_data;
4564}
4565EXPORT_SYMBOL_GPL(regulator_get_drvdata);
4566
4567/**
4568 * regulator_set_drvdata - set regulator driver data
4569 * @regulator: regulator
4570 * @data: data
4571 */
4572void regulator_set_drvdata(struct regulator *regulator, void *data)
4573{
4574 regulator->rdev->reg_data = data;
4575}
4576EXPORT_SYMBOL_GPL(regulator_set_drvdata);
4577
4578/**
4579 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00004580 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004581 */
4582int rdev_get_id(struct regulator_dev *rdev)
4583{
4584 return rdev->desc->id;
4585}
4586EXPORT_SYMBOL_GPL(rdev_get_id);
4587
Liam Girdwooda5766f12008-10-10 13:22:20 +01004588struct device *rdev_get_dev(struct regulator_dev *rdev)
4589{
4590 return &rdev->dev;
4591}
4592EXPORT_SYMBOL_GPL(rdev_get_dev);
4593
4594void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
4595{
4596 return reg_init_data->driver_data;
4597}
4598EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
4599
Mark Brownba55a972011-08-23 17:39:10 +01004600#ifdef CONFIG_DEBUG_FS
Haishan Zhoudbc55952017-06-30 11:43:42 +08004601static int supply_map_show(struct seq_file *sf, void *data)
Mark Brownba55a972011-08-23 17:39:10 +01004602{
Mark Brownba55a972011-08-23 17:39:10 +01004603 struct regulator_map *map;
4604
Mark Brownba55a972011-08-23 17:39:10 +01004605 list_for_each_entry(map, &regulator_map_list, list) {
Haishan Zhoudbc55952017-06-30 11:43:42 +08004606 seq_printf(sf, "%s -> %s.%s\n",
4607 rdev_get_name(map->regulator), map->dev_name,
4608 map->supply);
Mark Brownba55a972011-08-23 17:39:10 +01004609 }
4610
Haishan Zhoudbc55952017-06-30 11:43:42 +08004611 return 0;
4612}
Mark Brownba55a972011-08-23 17:39:10 +01004613
Haishan Zhoudbc55952017-06-30 11:43:42 +08004614static int supply_map_open(struct inode *inode, struct file *file)
4615{
4616 return single_open(file, supply_map_show, inode->i_private);
Mark Brownba55a972011-08-23 17:39:10 +01004617}
Stephen Boyd24751432012-02-20 22:50:42 -08004618#endif
Mark Brownba55a972011-08-23 17:39:10 +01004619
4620static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08004621#ifdef CONFIG_DEBUG_FS
Haishan Zhoudbc55952017-06-30 11:43:42 +08004622 .open = supply_map_open,
4623 .read = seq_read,
4624 .llseek = seq_lseek,
4625 .release = single_release,
Mark Brownba55a972011-08-23 17:39:10 +01004626#endif
Stephen Boyd24751432012-02-20 22:50:42 -08004627};
Mark Brownba55a972011-08-23 17:39:10 +01004628
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004629#ifdef CONFIG_DEBUG_FS
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004630struct summary_data {
4631 struct seq_file *s;
4632 struct regulator_dev *parent;
4633 int level;
4634};
4635
4636static void regulator_summary_show_subtree(struct seq_file *s,
4637 struct regulator_dev *rdev,
4638 int level);
4639
4640static int regulator_summary_show_children(struct device *dev, void *data)
4641{
4642 struct regulator_dev *rdev = dev_to_rdev(dev);
4643 struct summary_data *summary_data = data;
4644
4645 if (rdev->supply && rdev->supply->rdev == summary_data->parent)
4646 regulator_summary_show_subtree(summary_data->s, rdev,
4647 summary_data->level + 1);
4648
4649 return 0;
4650}
4651
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004652static void regulator_summary_show_subtree(struct seq_file *s,
4653 struct regulator_dev *rdev,
4654 int level)
4655{
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004656 struct regulation_constraints *c;
4657 struct regulator *consumer;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004658 struct summary_data summary_data;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004659
4660 if (!rdev)
4661 return;
4662
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004663 seq_printf(s, "%*s%-*s %3d %4d %6d ",
4664 level * 3 + 1, "",
4665 30 - level * 3, rdev_get_name(rdev),
4666 rdev->use_count, rdev->open_count, rdev->bypass_count);
4667
Heiko Stübner232960992015-04-10 13:48:41 +02004668 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
4669 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004670
4671 c = rdev->constraints;
4672 if (c) {
4673 switch (rdev->desc->type) {
4674 case REGULATOR_VOLTAGE:
4675 seq_printf(s, "%5dmV %5dmV ",
4676 c->min_uV / 1000, c->max_uV / 1000);
4677 break;
4678 case REGULATOR_CURRENT:
4679 seq_printf(s, "%5dmA %5dmA ",
4680 c->min_uA / 1000, c->max_uA / 1000);
4681 break;
4682 }
4683 }
4684
4685 seq_puts(s, "\n");
4686
4687 list_for_each_entry(consumer, &rdev->consumer_list, list) {
Leonard Cresteze42a46b2017-02-14 17:31:03 +02004688 if (consumer->dev && consumer->dev->class == &regulator_class)
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004689 continue;
4690
4691 seq_printf(s, "%*s%-*s ",
4692 (level + 1) * 3 + 1, "",
Leonard Cresteze42a46b2017-02-14 17:31:03 +02004693 30 - (level + 1) * 3,
4694 consumer->dev ? dev_name(consumer->dev) : "deviceless");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004695
4696 switch (rdev->desc->type) {
4697 case REGULATOR_VOLTAGE:
Heiko Stübner232960992015-04-10 13:48:41 +02004698 seq_printf(s, "%37dmV %5dmV",
Chunyan Zhangc360a6d2018-01-26 21:08:44 +08004699 consumer->voltage[PM_SUSPEND_ON].min_uV / 1000,
4700 consumer->voltage[PM_SUSPEND_ON].max_uV / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004701 break;
4702 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004703 break;
4704 }
4705
4706 seq_puts(s, "\n");
4707 }
4708
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004709 summary_data.s = s;
4710 summary_data.level = level;
4711 summary_data.parent = rdev;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004712
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004713 class_for_each_device(&regulator_class, NULL, &summary_data,
4714 regulator_summary_show_children);
4715}
4716
4717static int regulator_summary_show_roots(struct device *dev, void *data)
4718{
4719 struct regulator_dev *rdev = dev_to_rdev(dev);
4720 struct seq_file *s = data;
4721
4722 if (!rdev->supply)
4723 regulator_summary_show_subtree(s, rdev, 0);
4724
4725 return 0;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004726}
4727
4728static int regulator_summary_show(struct seq_file *s, void *data)
4729{
Heiko Stübner232960992015-04-10 13:48:41 +02004730 seq_puts(s, " regulator use open bypass voltage current min max\n");
4731 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004732
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004733 class_for_each_device(&regulator_class, NULL, s,
4734 regulator_summary_show_roots);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004735
4736 return 0;
4737}
4738
4739static int regulator_summary_open(struct inode *inode, struct file *file)
4740{
4741 return single_open(file, regulator_summary_show, inode->i_private);
4742}
4743#endif
4744
4745static const struct file_operations regulator_summary_fops = {
4746#ifdef CONFIG_DEBUG_FS
4747 .open = regulator_summary_open,
4748 .read = seq_read,
4749 .llseek = seq_lseek,
4750 .release = single_release,
4751#endif
4752};
4753
Liam Girdwood414c70c2008-04-30 15:59:04 +01004754static int __init regulator_init(void)
4755{
Mark Brown34abbd62010-02-12 10:18:08 +00004756 int ret;
4757
Mark Brown34abbd62010-02-12 10:18:08 +00004758 ret = class_register(&regulator_class);
4759
Mark Brown1130e5b2010-12-21 23:49:31 +00004760 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004761 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004762 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004763
Mark Brownf4d562c2012-02-20 21:01:04 +00004764 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4765 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004766
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004767 debugfs_create_file("regulator_summary", 0444, debugfs_root,
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004768 NULL, &regulator_summary_fops);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004769
Mark Brown34abbd62010-02-12 10:18:08 +00004770 regulator_dummy_init();
4771
4772 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004773}
4774
4775/* init early to allow our consumers to complete system booting */
4776core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004777
Mark Brown609ca5f2015-08-10 19:43:47 +01004778static int __init regulator_late_cleanup(struct device *dev, void *data)
Mark Brownca725562009-03-16 19:36:34 +00004779{
Mark Brown609ca5f2015-08-10 19:43:47 +01004780 struct regulator_dev *rdev = dev_to_rdev(dev);
4781 const struct regulator_ops *ops = rdev->desc->ops;
4782 struct regulation_constraints *c = rdev->constraints;
Mark Brownca725562009-03-16 19:36:34 +00004783 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004784
Mark Brown609ca5f2015-08-10 19:43:47 +01004785 if (c && c->always_on)
4786 return 0;
4787
WEN Pingbo8a34e972016-04-23 15:11:05 +08004788 if (!regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS))
Mark Brown609ca5f2015-08-10 19:43:47 +01004789 return 0;
4790
Maciej Purski66cf9a72018-04-23 16:33:37 +02004791 regulator_lock(rdev);
Mark Brown609ca5f2015-08-10 19:43:47 +01004792
4793 if (rdev->use_count)
4794 goto unlock;
4795
4796 /* If we can't read the status assume it's on. */
4797 if (ops->is_enabled)
4798 enabled = ops->is_enabled(rdev);
4799 else
4800 enabled = 1;
4801
4802 if (!enabled)
4803 goto unlock;
4804
4805 if (have_full_constraints()) {
4806 /* We log since this may kill the system if it goes
4807 * wrong. */
4808 rdev_info(rdev, "disabling\n");
4809 ret = _regulator_do_disable(rdev);
4810 if (ret != 0)
4811 rdev_err(rdev, "couldn't disable: %d\n", ret);
4812 } else {
4813 /* The intention is that in future we will
4814 * assume that full constraints are provided
4815 * so warn even if we aren't going to do
4816 * anything here.
4817 */
4818 rdev_warn(rdev, "incomplete constraints, leaving on\n");
4819 }
4820
4821unlock:
Maciej Purski66cf9a72018-04-23 16:33:37 +02004822 regulator_unlock(rdev);
Mark Brown609ca5f2015-08-10 19:43:47 +01004823
4824 return 0;
4825}
4826
4827static int __init regulator_init_complete(void)
4828{
Mark Brown86f5fcf2012-07-06 18:19:13 +01004829 /*
4830 * Since DT doesn't provide an idiomatic mechanism for
4831 * enabling full constraints and since it's much more natural
4832 * with DT to provide them just assume that a DT enabled
4833 * system has full constraints.
4834 */
4835 if (of_have_populated_dt())
4836 has_full_constraints = true;
4837
Javier Martinez Canillas3827b642017-02-16 14:30:02 -03004838 /*
4839 * Regulators may had failed to resolve their input supplies
4840 * when were registered, either because the input supply was
4841 * not registered yet or because its parent device was not
4842 * bound yet. So attempt to resolve the input supplies for
4843 * pending regulators before trying to disable unused ones.
4844 */
4845 class_for_each_device(&regulator_class, NULL, NULL,
4846 regulator_register_resolve_supply);
4847
Mark Brownca725562009-03-16 19:36:34 +00004848 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004849 * we have permission to change the status for and which are
4850 * not in use or always_on. This is effectively the default
4851 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004852 */
Mark Brown609ca5f2015-08-10 19:43:47 +01004853 class_for_each_device(&regulator_class, NULL, NULL,
4854 regulator_late_cleanup);
Mark Brownca725562009-03-16 19:36:34 +00004855
Maciej Purskid3d64532018-04-23 16:33:40 +02004856 class_for_each_device(&regulator_class, NULL, NULL,
4857 regulator_register_fill_coupling_array);
4858
Mark Brownca725562009-03-16 19:36:34 +00004859 return 0;
4860}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004861late_initcall_sync(regulator_init_complete);