blob: c70017d5f74bb2d1305eb5d3f35a2885fbf9b51f [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
Tomeu Vizoso85f3b432015-09-21 16:02:47 +020061static struct class regulator_class;
62
Mark Brown8dc53902008-12-31 12:52:40 +000063/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010064 * struct regulator_map
65 *
66 * Used to provide symbolic supply names to devices.
67 */
68struct regulator_map {
69 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010070 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010071 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010072 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010073};
74
Liam Girdwood414c70c2008-04-30 15:59:04 +010075/*
Kim, Milof19b00d2013-02-18 06:50:39 +000076 * struct regulator_enable_gpio
77 *
78 * Management for shared enable GPIO pin
79 */
80struct regulator_enable_gpio {
81 struct list_head list;
Russell King778b28b2014-06-29 17:55:54 +010082 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +000083 u32 enable_count; /* a number of enabled shared GPIO */
84 u32 request_count; /* a number of requested shared GPIO */
85 unsigned int ena_gpio_invert:1;
86};
87
Charles Keepaxa06ccd92013-10-15 20:14:20 +010088/*
89 * struct regulator_supply_alias
90 *
91 * Used to map lookups for a supply onto an alternative device.
92 */
93struct regulator_supply_alias {
94 struct list_head list;
95 struct device *src_dev;
96 const char *src_supply;
97 struct device *alias_dev;
98 const char *alias_supply;
99};
100
Liam Girdwood414c70c2008-04-30 15:59:04 +0100101static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +0100102static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100103static int _regulator_get_voltage(struct regulator_dev *rdev);
104static int _regulator_get_current_limit(struct regulator_dev *rdev);
105static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
Heiko Stübner71795692014-08-28 12:36:04 -0700106static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100107 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +0000108static int _regulator_do_set_voltage(struct regulator_dev *rdev,
109 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +0100110static struct regulator *create_regulator(struct regulator_dev *rdev,
111 struct device *dev,
112 const char *supply_name);
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +0200113static void _regulator_put(struct regulator *regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100114
Mark Brown609ca5f2015-08-10 19:43:47 +0100115static struct regulator_dev *dev_to_rdev(struct device *dev)
116{
117 return container_of(dev, struct regulator_dev, dev);
118}
Liam Girdwood414c70c2008-04-30 15:59:04 +0100119
Mark Brown1083c392009-10-22 16:31:32 +0100120static const char *rdev_get_name(struct regulator_dev *rdev)
121{
122 if (rdev->constraints && rdev->constraints->name)
123 return rdev->constraints->name;
124 else if (rdev->desc->name)
125 return rdev->desc->name;
126 else
127 return "";
128}
129
Mark Brown87b28412013-11-27 16:13:10 +0000130static bool have_full_constraints(void)
131{
Mark Brown75bc9642013-11-27 16:22:53 +0000132 return has_full_constraints || of_have_populated_dt();
Mark Brown87b28412013-11-27 16:13:10 +0000133}
134
Rajendra Nayak69511a42011-11-18 16:47:20 +0530135/**
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200136 * regulator_lock_supply - lock a regulator and its supplies
137 * @rdev: regulator source
138 */
139static void regulator_lock_supply(struct regulator_dev *rdev)
140{
Arnd Bergmannfa731ac2015-11-20 15:24:39 +0100141 int i;
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200142
Arnd Bergmannfa731ac2015-11-20 15:24:39 +0100143 for (i = 0; rdev->supply; rdev = rdev->supply->rdev, i++)
144 mutex_lock_nested(&rdev->mutex, i);
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200145}
146
147/**
148 * regulator_unlock_supply - unlock a regulator and its supplies
149 * @rdev: regulator source
150 */
151static void regulator_unlock_supply(struct regulator_dev *rdev)
152{
153 struct regulator *supply;
154
155 while (1) {
156 mutex_unlock(&rdev->mutex);
157 supply = rdev->supply;
158
159 if (!rdev->supply)
160 return;
161
162 rdev = supply->rdev;
163 }
164}
165
166/**
Rajendra Nayak69511a42011-11-18 16:47:20 +0530167 * of_get_regulator - get a regulator device node based on supply name
168 * @dev: Device pointer for the consumer (of regulator) device
169 * @supply: regulator supply name
170 *
171 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100172 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530173 * returns NULL.
174 */
175static struct device_node *of_get_regulator(struct device *dev, const char *supply)
176{
177 struct device_node *regnode = NULL;
178 char prop_name[32]; /* 32 is max size of property name */
179
180 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
181
182 snprintf(prop_name, 32, "%s-supply", supply);
183 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
184
185 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530186 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530187 prop_name, dev->of_node->full_name);
188 return NULL;
189 }
190 return regnode;
191}
192
Mark Brown6492bc12012-04-19 13:19:07 +0100193static int _regulator_can_change_status(struct regulator_dev *rdev)
194{
195 if (!rdev->constraints)
196 return 0;
197
198 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
199 return 1;
200 else
201 return 0;
202}
203
Liam Girdwood414c70c2008-04-30 15:59:04 +0100204/* Platform voltage constraint check */
205static int regulator_check_voltage(struct regulator_dev *rdev,
206 int *min_uV, int *max_uV)
207{
208 BUG_ON(*min_uV > *max_uV);
209
210 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800211 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100212 return -ENODEV;
213 }
214 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700215 rdev_err(rdev, "voltage operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100216 return -EPERM;
217 }
218
219 if (*max_uV > rdev->constraints->max_uV)
220 *max_uV = rdev->constraints->max_uV;
221 if (*min_uV < rdev->constraints->min_uV)
222 *min_uV = rdev->constraints->min_uV;
223
Mark Brown89f425e2011-07-12 11:20:37 +0900224 if (*min_uV > *max_uV) {
225 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100226 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100227 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900228 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100229
230 return 0;
231}
232
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100233/* Make sure we select a voltage that suits the needs of all
234 * regulator consumers
235 */
236static int regulator_check_consumers(struct regulator_dev *rdev,
237 int *min_uV, int *max_uV)
238{
239 struct regulator *regulator;
240
241 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700242 /*
243 * Assume consumers that didn't say anything are OK
244 * with anything in the constraint range.
245 */
246 if (!regulator->min_uV && !regulator->max_uV)
247 continue;
248
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100249 if (*max_uV > regulator->max_uV)
250 *max_uV = regulator->max_uV;
251 if (*min_uV < regulator->min_uV)
252 *min_uV = regulator->min_uV;
253 }
254
Mark Browndd8004a2012-11-28 17:09:27 +0000255 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800256 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
257 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100258 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000259 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100260
261 return 0;
262}
263
Liam Girdwood414c70c2008-04-30 15:59:04 +0100264/* current constraint check */
265static int regulator_check_current_limit(struct regulator_dev *rdev,
266 int *min_uA, int *max_uA)
267{
268 BUG_ON(*min_uA > *max_uA);
269
270 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800271 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100272 return -ENODEV;
273 }
274 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700275 rdev_err(rdev, "current operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100276 return -EPERM;
277 }
278
279 if (*max_uA > rdev->constraints->max_uA)
280 *max_uA = rdev->constraints->max_uA;
281 if (*min_uA < rdev->constraints->min_uA)
282 *min_uA = rdev->constraints->min_uA;
283
Mark Brown89f425e2011-07-12 11:20:37 +0900284 if (*min_uA > *max_uA) {
285 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100286 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100287 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900288 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100289
290 return 0;
291}
292
293/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900294static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100295{
Mark Brown2c608232011-03-30 06:29:12 +0900296 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800297 case REGULATOR_MODE_FAST:
298 case REGULATOR_MODE_NORMAL:
299 case REGULATOR_MODE_IDLE:
300 case REGULATOR_MODE_STANDBY:
301 break;
302 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900303 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800304 return -EINVAL;
305 }
306
Liam Girdwood414c70c2008-04-30 15:59:04 +0100307 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800308 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100309 return -ENODEV;
310 }
311 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700312 rdev_err(rdev, "mode operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100313 return -EPERM;
314 }
Mark Brown2c608232011-03-30 06:29:12 +0900315
316 /* The modes are bitmasks, the most power hungry modes having
317 * the lowest values. If the requested mode isn't supported
318 * try higher modes. */
319 while (*mode) {
320 if (rdev->constraints->valid_modes_mask & *mode)
321 return 0;
322 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100323 }
Mark Brown2c608232011-03-30 06:29:12 +0900324
325 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100326}
327
328/* dynamic regulator mode switching constraint check */
329static int regulator_check_drms(struct regulator_dev *rdev)
330{
331 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800332 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100333 return -ENODEV;
334 }
335 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Stephen Boyd7ebcf262015-09-16 12:10:26 -0700336 rdev_dbg(rdev, "drms operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100337 return -EPERM;
338 }
339 return 0;
340}
341
Liam Girdwood414c70c2008-04-30 15:59:04 +0100342static ssize_t regulator_uV_show(struct device *dev,
343 struct device_attribute *attr, char *buf)
344{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100345 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100346 ssize_t ret;
347
348 mutex_lock(&rdev->mutex);
349 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
350 mutex_unlock(&rdev->mutex);
351
352 return ret;
353}
David Brownell7ad68e22008-11-11 17:39:02 -0800354static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100355
356static ssize_t regulator_uA_show(struct device *dev,
357 struct device_attribute *attr, char *buf)
358{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100359 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100360
361 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
362}
David Brownell7ad68e22008-11-11 17:39:02 -0800363static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100364
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700365static ssize_t name_show(struct device *dev, struct device_attribute *attr,
366 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100367{
368 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100369
Mark Brown1083c392009-10-22 16:31:32 +0100370 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100371}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700372static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100373
David Brownell4fca9542008-11-11 17:38:53 -0800374static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100375{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100376 switch (mode) {
377 case REGULATOR_MODE_FAST:
378 return sprintf(buf, "fast\n");
379 case REGULATOR_MODE_NORMAL:
380 return sprintf(buf, "normal\n");
381 case REGULATOR_MODE_IDLE:
382 return sprintf(buf, "idle\n");
383 case REGULATOR_MODE_STANDBY:
384 return sprintf(buf, "standby\n");
385 }
386 return sprintf(buf, "unknown\n");
387}
388
David Brownell4fca9542008-11-11 17:38:53 -0800389static ssize_t regulator_opmode_show(struct device *dev,
390 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100391{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100392 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100393
David Brownell4fca9542008-11-11 17:38:53 -0800394 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
395}
David Brownell7ad68e22008-11-11 17:39:02 -0800396static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800397
398static ssize_t regulator_print_state(char *buf, int state)
399{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100400 if (state > 0)
401 return sprintf(buf, "enabled\n");
402 else if (state == 0)
403 return sprintf(buf, "disabled\n");
404 else
405 return sprintf(buf, "unknown\n");
406}
407
David Brownell4fca9542008-11-11 17:38:53 -0800408static ssize_t regulator_state_show(struct device *dev,
409 struct device_attribute *attr, char *buf)
410{
411 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100412 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800413
Mark Brown93325462009-08-03 18:49:56 +0100414 mutex_lock(&rdev->mutex);
415 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
416 mutex_unlock(&rdev->mutex);
417
418 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800419}
David Brownell7ad68e22008-11-11 17:39:02 -0800420static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800421
David Brownell853116a2009-01-14 23:03:17 -0800422static ssize_t regulator_status_show(struct device *dev,
423 struct device_attribute *attr, char *buf)
424{
425 struct regulator_dev *rdev = dev_get_drvdata(dev);
426 int status;
427 char *label;
428
429 status = rdev->desc->ops->get_status(rdev);
430 if (status < 0)
431 return status;
432
433 switch (status) {
434 case REGULATOR_STATUS_OFF:
435 label = "off";
436 break;
437 case REGULATOR_STATUS_ON:
438 label = "on";
439 break;
440 case REGULATOR_STATUS_ERROR:
441 label = "error";
442 break;
443 case REGULATOR_STATUS_FAST:
444 label = "fast";
445 break;
446 case REGULATOR_STATUS_NORMAL:
447 label = "normal";
448 break;
449 case REGULATOR_STATUS_IDLE:
450 label = "idle";
451 break;
452 case REGULATOR_STATUS_STANDBY:
453 label = "standby";
454 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700455 case REGULATOR_STATUS_BYPASS:
456 label = "bypass";
457 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100458 case REGULATOR_STATUS_UNDEFINED:
459 label = "undefined";
460 break;
David Brownell853116a2009-01-14 23:03:17 -0800461 default:
462 return -ERANGE;
463 }
464
465 return sprintf(buf, "%s\n", label);
466}
467static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
468
Liam Girdwood414c70c2008-04-30 15:59:04 +0100469static ssize_t regulator_min_uA_show(struct device *dev,
470 struct device_attribute *attr, char *buf)
471{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100472 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100473
474 if (!rdev->constraints)
475 return sprintf(buf, "constraint not defined\n");
476
477 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
478}
David Brownell7ad68e22008-11-11 17:39:02 -0800479static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100480
481static ssize_t regulator_max_uA_show(struct device *dev,
482 struct device_attribute *attr, char *buf)
483{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100484 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100485
486 if (!rdev->constraints)
487 return sprintf(buf, "constraint not defined\n");
488
489 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
490}
David Brownell7ad68e22008-11-11 17:39:02 -0800491static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100492
493static ssize_t regulator_min_uV_show(struct device *dev,
494 struct device_attribute *attr, char *buf)
495{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100496 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100497
498 if (!rdev->constraints)
499 return sprintf(buf, "constraint not defined\n");
500
501 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
502}
David Brownell7ad68e22008-11-11 17:39:02 -0800503static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100504
505static ssize_t regulator_max_uV_show(struct device *dev,
506 struct device_attribute *attr, char *buf)
507{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100508 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100509
510 if (!rdev->constraints)
511 return sprintf(buf, "constraint not defined\n");
512
513 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
514}
David Brownell7ad68e22008-11-11 17:39:02 -0800515static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100516
517static ssize_t regulator_total_uA_show(struct device *dev,
518 struct device_attribute *attr, char *buf)
519{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100520 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100521 struct regulator *regulator;
522 int uA = 0;
523
524 mutex_lock(&rdev->mutex);
525 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100526 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100527 mutex_unlock(&rdev->mutex);
528 return sprintf(buf, "%d\n", uA);
529}
David Brownell7ad68e22008-11-11 17:39:02 -0800530static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100531
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700532static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
533 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100534{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100535 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100536 return sprintf(buf, "%d\n", rdev->use_count);
537}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700538static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100539
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700540static ssize_t type_show(struct device *dev, struct device_attribute *attr,
541 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100542{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100543 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100544
545 switch (rdev->desc->type) {
546 case REGULATOR_VOLTAGE:
547 return sprintf(buf, "voltage\n");
548 case REGULATOR_CURRENT:
549 return sprintf(buf, "current\n");
550 }
551 return sprintf(buf, "unknown\n");
552}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700553static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100554
555static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
556 struct device_attribute *attr, char *buf)
557{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100558 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100559
Liam Girdwood414c70c2008-04-30 15:59:04 +0100560 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
561}
David Brownell7ad68e22008-11-11 17:39:02 -0800562static DEVICE_ATTR(suspend_mem_microvolts, 0444,
563 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100564
565static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
566 struct device_attribute *attr, char *buf)
567{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100568 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100569
Liam Girdwood414c70c2008-04-30 15:59:04 +0100570 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
571}
David Brownell7ad68e22008-11-11 17:39:02 -0800572static DEVICE_ATTR(suspend_disk_microvolts, 0444,
573 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100574
575static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
576 struct device_attribute *attr, char *buf)
577{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100578 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100579
Liam Girdwood414c70c2008-04-30 15:59:04 +0100580 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
581}
David Brownell7ad68e22008-11-11 17:39:02 -0800582static DEVICE_ATTR(suspend_standby_microvolts, 0444,
583 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100584
Liam Girdwood414c70c2008-04-30 15:59:04 +0100585static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
586 struct device_attribute *attr, char *buf)
587{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100588 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100589
David Brownell4fca9542008-11-11 17:38:53 -0800590 return regulator_print_opmode(buf,
591 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100592}
David Brownell7ad68e22008-11-11 17:39:02 -0800593static DEVICE_ATTR(suspend_mem_mode, 0444,
594 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100595
596static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
597 struct device_attribute *attr, char *buf)
598{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100599 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100600
David Brownell4fca9542008-11-11 17:38:53 -0800601 return regulator_print_opmode(buf,
602 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100603}
David Brownell7ad68e22008-11-11 17:39:02 -0800604static DEVICE_ATTR(suspend_disk_mode, 0444,
605 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100606
607static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
608 struct device_attribute *attr, char *buf)
609{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100610 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100611
David Brownell4fca9542008-11-11 17:38:53 -0800612 return regulator_print_opmode(buf,
613 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100614}
David Brownell7ad68e22008-11-11 17:39:02 -0800615static DEVICE_ATTR(suspend_standby_mode, 0444,
616 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100617
618static ssize_t regulator_suspend_mem_state_show(struct device *dev,
619 struct device_attribute *attr, char *buf)
620{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100621 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100622
David Brownell4fca9542008-11-11 17:38:53 -0800623 return regulator_print_state(buf,
624 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100625}
David Brownell7ad68e22008-11-11 17:39:02 -0800626static DEVICE_ATTR(suspend_mem_state, 0444,
627 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100628
629static ssize_t regulator_suspend_disk_state_show(struct device *dev,
630 struct device_attribute *attr, char *buf)
631{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100632 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100633
David Brownell4fca9542008-11-11 17:38:53 -0800634 return regulator_print_state(buf,
635 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100636}
David Brownell7ad68e22008-11-11 17:39:02 -0800637static DEVICE_ATTR(suspend_disk_state, 0444,
638 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100639
640static ssize_t regulator_suspend_standby_state_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_state(buf,
646 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100647}
David Brownell7ad68e22008-11-11 17:39:02 -0800648static DEVICE_ATTR(suspend_standby_state, 0444,
649 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100650
Mark Brownf59c8f92012-08-31 10:36:37 -0700651static ssize_t regulator_bypass_show(struct device *dev,
652 struct device_attribute *attr, char *buf)
653{
654 struct regulator_dev *rdev = dev_get_drvdata(dev);
655 const char *report;
656 bool bypass;
657 int ret;
658
659 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
660
661 if (ret != 0)
662 report = "unknown";
663 else if (bypass)
664 report = "enabled";
665 else
666 report = "disabled";
667
668 return sprintf(buf, "%s\n", report);
669}
670static DEVICE_ATTR(bypass, 0444,
671 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800672
Liam Girdwood414c70c2008-04-30 15:59:04 +0100673/* Calculate the new optimum regulator operating mode based on the new total
674 * consumer load. All locks held by caller */
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800675static int drms_uA_update(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100676{
677 struct regulator *sibling;
678 int current_uA = 0, output_uV, input_uV, err;
679 unsigned int mode;
680
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +0900681 lockdep_assert_held_once(&rdev->mutex);
682
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800683 /*
684 * first check to see if we can set modes at all, otherwise just
685 * tell the consumer everything is OK.
686 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100687 err = regulator_check_drms(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800688 if (err < 0)
689 return 0;
690
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800691 if (!rdev->desc->ops->get_optimum_mode &&
692 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800693 return 0;
694
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800695 if (!rdev->desc->ops->set_mode &&
696 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800697 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100698
699 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000700 output_uV = _regulator_get_voltage(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800701 if (output_uV <= 0) {
702 rdev_err(rdev, "invalid output voltage found\n");
703 return -EINVAL;
704 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100705
706 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000707 input_uV = 0;
708 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800709 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000710 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100711 input_uV = rdev->constraints->input_uV;
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800712 if (input_uV <= 0) {
713 rdev_err(rdev, "invalid input voltage found\n");
714 return -EINVAL;
715 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100716
717 /* calc total requested load */
718 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100719 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100720
Stephen Boyd22a10bc2015-06-11 17:37:03 -0700721 current_uA += rdev->constraints->system_load;
722
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800723 if (rdev->desc->ops->set_load) {
724 /* set the optimum mode for our new total regulator load */
725 err = rdev->desc->ops->set_load(rdev, current_uA);
726 if (err < 0)
727 rdev_err(rdev, "failed to set load %d\n", current_uA);
728 } else {
729 /* now get the optimum mode for our new total regulator load */
730 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
731 output_uV, current_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100732
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800733 /* check the new mode is allowed */
734 err = regulator_mode_constrain(rdev, &mode);
735 if (err < 0) {
736 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
737 current_uA, input_uV, output_uV);
738 return err;
739 }
740
741 err = rdev->desc->ops->set_mode(rdev, mode);
742 if (err < 0)
743 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800744 }
745
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800746 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100747}
748
749static int suspend_set_state(struct regulator_dev *rdev,
750 struct regulator_state *rstate)
751{
752 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100753
754 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800755 * only warn if the driver implements set_suspend_voltage or
756 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100757 */
758 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800759 if (rdev->desc->ops->set_suspend_voltage ||
760 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800761 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100762 return 0;
763 }
764
765 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800766 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100767 return -EINVAL;
768 }
769
Axel Lin8ac0e952012-04-14 09:14:34 +0800770 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100771 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800772 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100773 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800774 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
775 ret = 0;
776
Liam Girdwood414c70c2008-04-30 15:59:04 +0100777 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800778 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100779 return ret;
780 }
781
782 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
783 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
784 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800785 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100786 return ret;
787 }
788 }
789
790 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
791 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
792 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800793 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100794 return ret;
795 }
796 }
797 return ret;
798}
799
800/* locks held by caller */
801static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
802{
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +0900803 lockdep_assert_held_once(&rdev->mutex);
804
Liam Girdwood414c70c2008-04-30 15:59:04 +0100805 if (!rdev->constraints)
806 return -EINVAL;
807
808 switch (state) {
809 case PM_SUSPEND_STANDBY:
810 return suspend_set_state(rdev,
811 &rdev->constraints->state_standby);
812 case PM_SUSPEND_MEM:
813 return suspend_set_state(rdev,
814 &rdev->constraints->state_mem);
815 case PM_SUSPEND_MAX:
816 return suspend_set_state(rdev,
817 &rdev->constraints->state_disk);
818 default:
819 return -EINVAL;
820 }
821}
822
823static void print_constraints(struct regulator_dev *rdev)
824{
825 struct regulation_constraints *constraints = rdev->constraints;
Stefan Wahrena7068e32015-06-09 20:09:42 +0000826 char buf[160] = "";
Stefan Wahren5751a992015-06-10 06:13:15 +0000827 size_t len = sizeof(buf) - 1;
Mark Brown8f031b42009-10-22 16:31:31 +0100828 int count = 0;
829 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100830
Mark Brown8f031b42009-10-22 16:31:31 +0100831 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100832 if (constraints->min_uV == constraints->max_uV)
Stefan Wahren5751a992015-06-10 06:13:15 +0000833 count += scnprintf(buf + count, len - count, "%d mV ",
834 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100835 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000836 count += scnprintf(buf + count, len - count,
837 "%d <--> %d mV ",
838 constraints->min_uV / 1000,
839 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100840 }
Mark Brown8f031b42009-10-22 16:31:31 +0100841
842 if (!constraints->min_uV ||
843 constraints->min_uV != constraints->max_uV) {
844 ret = _regulator_get_voltage(rdev);
845 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000846 count += scnprintf(buf + count, len - count,
847 "at %d mV ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100848 }
849
Mark Brownbf5892a2011-05-08 22:13:37 +0100850 if (constraints->uV_offset)
Stefan Wahren5751a992015-06-10 06:13:15 +0000851 count += scnprintf(buf + count, len - count, "%dmV offset ",
852 constraints->uV_offset / 1000);
Mark Brownbf5892a2011-05-08 22:13:37 +0100853
Mark Brown8f031b42009-10-22 16:31:31 +0100854 if (constraints->min_uA && constraints->max_uA) {
855 if (constraints->min_uA == constraints->max_uA)
Stefan Wahren5751a992015-06-10 06:13:15 +0000856 count += scnprintf(buf + count, len - count, "%d mA ",
857 constraints->min_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100858 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000859 count += scnprintf(buf + count, len - count,
860 "%d <--> %d mA ",
861 constraints->min_uA / 1000,
862 constraints->max_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100863 }
864
865 if (!constraints->min_uA ||
866 constraints->min_uA != constraints->max_uA) {
867 ret = _regulator_get_current_limit(rdev);
868 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000869 count += scnprintf(buf + count, len - count,
870 "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100871 }
872
Liam Girdwood414c70c2008-04-30 15:59:04 +0100873 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
Stefan Wahren5751a992015-06-10 06:13:15 +0000874 count += scnprintf(buf + count, len - count, "fast ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100875 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
Stefan Wahren5751a992015-06-10 06:13:15 +0000876 count += scnprintf(buf + count, len - count, "normal ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100877 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
Stefan Wahren5751a992015-06-10 06:13:15 +0000878 count += scnprintf(buf + count, len - count, "idle ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100879 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
Stefan Wahren5751a992015-06-10 06:13:15 +0000880 count += scnprintf(buf + count, len - count, "standby");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100881
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200882 if (!count)
Stefan Wahren5751a992015-06-10 06:13:15 +0000883 scnprintf(buf, len, "no parameters");
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200884
Mark Brown194dbae2014-10-31 19:11:59 +0000885 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000886
887 if ((constraints->min_uV != constraints->max_uV) &&
888 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
889 rdev_warn(rdev,
890 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100891}
892
Mark Browne79055d2009-10-19 15:53:50 +0100893static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100894 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100895{
Guodong Xu272e2312014-08-13 19:33:38 +0800896 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100897 int ret;
898
899 /* do we need to apply the constraint voltage */
900 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000901 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200902 int current_uV = _regulator_get_voltage(rdev);
903 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500904 rdev_err(rdev,
905 "failed to get the current voltage(%d)\n",
906 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200907 return current_uV;
908 }
909 if (current_uV < rdev->constraints->min_uV ||
910 current_uV > rdev->constraints->max_uV) {
911 ret = _regulator_do_set_voltage(
912 rdev, rdev->constraints->min_uV,
913 rdev->constraints->max_uV);
914 if (ret < 0) {
915 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500916 "failed to apply %duV constraint(%d)\n",
917 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200918 return ret;
919 }
Mark Brown75790252010-12-12 14:25:50 +0000920 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100921 }
Mark Browne79055d2009-10-19 15:53:50 +0100922
923 /* constrain machine-level voltage specs to fit
924 * the actual range supported by this regulator.
925 */
926 if (ops->list_voltage && rdev->desc->n_voltages) {
927 int count = rdev->desc->n_voltages;
928 int i;
929 int min_uV = INT_MAX;
930 int max_uV = INT_MIN;
931 int cmin = constraints->min_uV;
932 int cmax = constraints->max_uV;
933
934 /* it's safe to autoconfigure fixed-voltage supplies
935 and the constraints are used by list_voltage. */
936 if (count == 1 && !cmin) {
937 cmin = 1;
938 cmax = INT_MAX;
939 constraints->min_uV = cmin;
940 constraints->max_uV = cmax;
941 }
942
943 /* voltage constraints are optional */
944 if ((cmin == 0) && (cmax == 0))
945 return 0;
946
947 /* else require explicit machine-level constraints */
948 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800949 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100950 return -EINVAL;
951 }
952
953 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
954 for (i = 0; i < count; i++) {
955 int value;
956
957 value = ops->list_voltage(rdev, i);
958 if (value <= 0)
959 continue;
960
961 /* maybe adjust [min_uV..max_uV] */
962 if (value >= cmin && value < min_uV)
963 min_uV = value;
964 if (value <= cmax && value > max_uV)
965 max_uV = value;
966 }
967
968 /* final: [min_uV..max_uV] valid iff constraints valid */
969 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000970 rdev_err(rdev,
971 "unsupportable voltage constraints %u-%uuV\n",
972 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100973 return -EINVAL;
974 }
975
976 /* use regulator's subset of machine constraints */
977 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800978 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
979 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100980 constraints->min_uV = min_uV;
981 }
982 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800983 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
984 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100985 constraints->max_uV = max_uV;
986 }
987 }
988
989 return 0;
990}
991
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530992static int machine_constraints_current(struct regulator_dev *rdev,
993 struct regulation_constraints *constraints)
994{
Guodong Xu272e2312014-08-13 19:33:38 +0800995 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530996 int ret;
997
998 if (!constraints->min_uA && !constraints->max_uA)
999 return 0;
1000
1001 if (constraints->min_uA > constraints->max_uA) {
1002 rdev_err(rdev, "Invalid current constraints\n");
1003 return -EINVAL;
1004 }
1005
1006 if (!ops->set_current_limit || !ops->get_current_limit) {
1007 rdev_warn(rdev, "Operation of current configuration missing\n");
1008 return 0;
1009 }
1010
1011 /* Set regulator current in constraints range */
1012 ret = ops->set_current_limit(rdev, constraints->min_uA,
1013 constraints->max_uA);
1014 if (ret < 0) {
1015 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
1016 return ret;
1017 }
1018
1019 return 0;
1020}
1021
Markus Pargmann30c21972014-02-20 17:36:03 +01001022static int _regulator_do_enable(struct regulator_dev *rdev);
1023
Liam Girdwooda5766f12008-10-10 13:22:20 +01001024/**
1025 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +00001026 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +00001027 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001028 *
1029 * Allows platform initialisation code to define and constrain
1030 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
1031 * Constraints *must* be set by platform code in order for some
1032 * regulator operations to proceed i.e. set_voltage, set_current_limit,
1033 * set_mode.
1034 */
1035static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +00001036 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001037{
1038 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +08001039 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +01001040
Mark Brown9a8f5e02011-11-29 18:11:19 +00001041 if (constraints)
1042 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
1043 GFP_KERNEL);
1044 else
1045 rdev->constraints = kzalloc(sizeof(*constraints),
1046 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +00001047 if (!rdev->constraints)
1048 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001049
Mark Brownf8c12fe2010-11-29 15:55:17 +00001050 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001051 if (ret != 0)
1052 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -08001053
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301054 ret = machine_constraints_current(rdev, rdev->constraints);
1055 if (ret != 0)
1056 goto out;
1057
Stephen Boyd36e4f832015-06-11 17:37:06 -07001058 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1059 ret = ops->set_input_current_limit(rdev,
1060 rdev->constraints->ilim_uA);
1061 if (ret < 0) {
1062 rdev_err(rdev, "failed to set input limit\n");
1063 goto out;
1064 }
1065 }
1066
Liam Girdwooda5766f12008-10-10 13:22:20 +01001067 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001068 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001069 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001070 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001071 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +01001072 goto out;
1073 }
1074 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001075
Mark Brown9a8f5e02011-11-29 18:11:19 +00001076 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001077 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001078 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +00001079 ret = -EINVAL;
1080 goto out;
1081 }
1082
Mark Brownf8c12fe2010-11-29 15:55:17 +00001083 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001084 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001085 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +00001086 goto out;
1087 }
1088 }
1089
Mark Browncacf90f2009-03-02 16:32:46 +00001090 /* If the constraints say the regulator should be on at this point
1091 * and we have control then make sure it is enabled.
1092 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001093 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1094 ret = _regulator_do_enable(rdev);
1095 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001096 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001097 goto out;
1098 }
1099 }
1100
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301101 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1102 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301103 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1104 if (ret < 0) {
1105 rdev_err(rdev, "failed to set ramp_delay\n");
1106 goto out;
1107 }
1108 }
1109
Stephen Boyd23c779b2015-06-11 17:37:04 -07001110 if (rdev->constraints->pull_down && ops->set_pull_down) {
1111 ret = ops->set_pull_down(rdev);
1112 if (ret < 0) {
1113 rdev_err(rdev, "failed to set pull down\n");
1114 goto out;
1115 }
1116 }
1117
Stephen Boyd57f66b72015-06-11 17:37:05 -07001118 if (rdev->constraints->soft_start && ops->set_soft_start) {
1119 ret = ops->set_soft_start(rdev);
1120 if (ret < 0) {
1121 rdev_err(rdev, "failed to set soft start\n");
1122 goto out;
1123 }
1124 }
1125
Stephen Boyd3a003ba2015-07-17 14:41:54 -07001126 if (rdev->constraints->over_current_protection
1127 && ops->set_over_current_protection) {
1128 ret = ops->set_over_current_protection(rdev);
1129 if (ret < 0) {
1130 rdev_err(rdev, "failed to set over current protection\n");
1131 goto out;
1132 }
1133 }
1134
Liam Girdwooda5766f12008-10-10 13:22:20 +01001135 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001136 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001137out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001138 kfree(rdev->constraints);
1139 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001140 return ret;
1141}
1142
1143/**
1144 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001145 * @rdev: regulator name
1146 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001147 *
1148 * Called by platform initialisation code to set the supply regulator for this
1149 * regulator. This ensures that a regulators supply will also be enabled by the
1150 * core if it's child is enabled.
1151 */
1152static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001153 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001154{
1155 int err;
1156
Mark Brown3801b862011-06-09 16:22:22 +01001157 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1158
Javier Martinez Canillase2c09ae2015-07-15 16:10:28 +02001159 if (!try_module_get(supply_rdev->owner))
1160 return -ENODEV;
1161
Mark Brown3801b862011-06-09 16:22:22 +01001162 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001163 if (rdev->supply == NULL) {
1164 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001165 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001166 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301167 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001168
1169 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001170}
1171
1172/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001173 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001174 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001175 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001176 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001177 *
1178 * Allows platform initialisation code to map physical regulator
1179 * sources to symbolic names for supplies for use by devices. Devices
1180 * should use these symbolic names to request regulators, avoiding the
1181 * need to provide board-specific regulator names as platform data.
1182 */
1183static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001184 const char *consumer_dev_name,
1185 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001186{
1187 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001188 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001189
1190 if (supply == NULL)
1191 return -EINVAL;
1192
Mark Brown9ed20992009-07-21 16:00:26 +01001193 if (consumer_dev_name != NULL)
1194 has_dev = 1;
1195 else
1196 has_dev = 0;
1197
David Brownell6001e132008-12-31 12:54:19 +00001198 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001199 if (node->dev_name && consumer_dev_name) {
1200 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1201 continue;
1202 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001203 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001204 }
1205
David Brownell6001e132008-12-31 12:54:19 +00001206 if (strcmp(node->supply, supply) != 0)
1207 continue;
1208
Mark Brown737f3602012-02-02 00:10:51 +00001209 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1210 consumer_dev_name,
1211 dev_name(&node->regulator->dev),
1212 node->regulator->desc->name,
1213 supply,
1214 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001215 return -EBUSY;
1216 }
1217
Mark Brown9ed20992009-07-21 16:00:26 +01001218 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001219 if (node == NULL)
1220 return -ENOMEM;
1221
1222 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001223 node->supply = supply;
1224
Mark Brown9ed20992009-07-21 16:00:26 +01001225 if (has_dev) {
1226 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1227 if (node->dev_name == NULL) {
1228 kfree(node);
1229 return -ENOMEM;
1230 }
Mark Brown40f92442009-06-17 17:56:39 +01001231 }
1232
Liam Girdwooda5766f12008-10-10 13:22:20 +01001233 list_add(&node->list, &regulator_map_list);
1234 return 0;
1235}
1236
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001237static void unset_regulator_supplies(struct regulator_dev *rdev)
1238{
1239 struct regulator_map *node, *n;
1240
1241 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1242 if (rdev == node->regulator) {
1243 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001244 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001245 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001246 }
1247 }
1248}
1249
Mark Brownf5726ae2011-06-09 16:22:20 +01001250#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001251
1252static struct regulator *create_regulator(struct regulator_dev *rdev,
1253 struct device *dev,
1254 const char *supply_name)
1255{
1256 struct regulator *regulator;
1257 char buf[REG_STR_SIZE];
1258 int err, size;
1259
1260 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1261 if (regulator == NULL)
1262 return NULL;
1263
1264 mutex_lock(&rdev->mutex);
1265 regulator->rdev = rdev;
1266 list_add(&regulator->list, &rdev->consumer_list);
1267
1268 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001269 regulator->dev = dev;
1270
Mark Brown222cc7b2012-06-22 11:39:16 +01001271 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001272 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1273 dev->kobj.name, supply_name);
1274 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001275 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001276
1277 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1278 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001279 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001280
Stephen Boydff268b52015-06-01 18:47:54 -07001281 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
Liam Girdwood414c70c2008-04-30 15:59:04 +01001282 buf);
1283 if (err) {
Stephen Boydff268b52015-06-01 18:47:54 -07001284 rdev_dbg(rdev, "could not add device link %s err %d\n",
Joe Perches5da84fd2010-11-30 05:53:48 -08001285 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001286 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001287 }
Mark Brown5de70512011-06-19 13:33:16 +01001288 } else {
1289 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1290 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001291 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001292 }
Mark Brown5de70512011-06-19 13:33:16 +01001293
Mark Brown5de70512011-06-19 13:33:16 +01001294 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1295 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001296 if (!regulator->debugfs) {
Stephen Boydad3a9422015-06-01 18:47:55 -07001297 rdev_dbg(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001298 } else {
1299 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1300 &regulator->uA_load);
1301 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1302 &regulator->min_uV);
1303 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1304 &regulator->max_uV);
1305 }
Mark Brown5de70512011-06-19 13:33:16 +01001306
Mark Brown6492bc12012-04-19 13:19:07 +01001307 /*
1308 * Check now if the regulator is an always on regulator - if
1309 * it is then we don't need to do nearly so much work for
1310 * enable/disable calls.
1311 */
1312 if (!_regulator_can_change_status(rdev) &&
1313 _regulator_is_enabled(rdev))
1314 regulator->always_on = true;
1315
Liam Girdwood414c70c2008-04-30 15:59:04 +01001316 mutex_unlock(&rdev->mutex);
1317 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001318overflow_err:
1319 list_del(&regulator->list);
1320 kfree(regulator);
1321 mutex_unlock(&rdev->mutex);
1322 return NULL;
1323}
1324
Mark Brown31aae2b2009-12-21 12:21:52 +00001325static int _regulator_get_enable_time(struct regulator_dev *rdev)
1326{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301327 if (rdev->constraints && rdev->constraints->enable_time)
1328 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001329 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001330 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001331 return rdev->desc->ops->enable_time(rdev);
1332}
1333
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001334static struct regulator_supply_alias *regulator_find_supply_alias(
1335 struct device *dev, const char *supply)
1336{
1337 struct regulator_supply_alias *map;
1338
1339 list_for_each_entry(map, &regulator_supply_alias_list, list)
1340 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1341 return map;
1342
1343 return NULL;
1344}
1345
1346static void regulator_supply_alias(struct device **dev, const char **supply)
1347{
1348 struct regulator_supply_alias *map;
1349
1350 map = regulator_find_supply_alias(*dev, *supply);
1351 if (map) {
1352 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1353 *supply, map->alias_supply,
1354 dev_name(map->alias_dev));
1355 *dev = map->alias_dev;
1356 *supply = map->alias_supply;
1357 }
1358}
1359
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001360static int of_node_match(struct device *dev, const void *data)
1361{
1362 return dev->of_node == data;
1363}
1364
1365static struct regulator_dev *of_find_regulator_by_node(struct device_node *np)
1366{
1367 struct device *dev;
1368
1369 dev = class_find_device(&regulator_class, NULL, np, of_node_match);
1370
1371 return dev ? dev_to_rdev(dev) : NULL;
1372}
1373
1374static int regulator_match(struct device *dev, const void *data)
1375{
1376 struct regulator_dev *r = dev_to_rdev(dev);
1377
1378 return strcmp(rdev_get_name(r), data) == 0;
1379}
1380
1381static struct regulator_dev *regulator_lookup_by_name(const char *name)
1382{
1383 struct device *dev;
1384
1385 dev = class_find_device(&regulator_class, NULL, name, regulator_match);
1386
1387 return dev ? dev_to_rdev(dev) : NULL;
1388}
1389
1390/**
1391 * regulator_dev_lookup - lookup a regulator device.
1392 * @dev: device for regulator "consumer".
1393 * @supply: Supply name or regulator ID.
1394 * @ret: 0 on success, -ENODEV if lookup fails permanently, -EPROBE_DEFER if
1395 * lookup could succeed in the future.
1396 *
1397 * If successful, returns a struct regulator_dev that corresponds to the name
1398 * @supply and with the embedded struct device refcount incremented by one,
1399 * or NULL on failure. The refcount must be dropped by calling put_device().
1400 */
Rajendra Nayak69511a42011-11-18 16:47:20 +05301401static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001402 const char *supply,
1403 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301404{
1405 struct regulator_dev *r;
1406 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001407 struct regulator_map *map;
1408 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301409
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001410 regulator_supply_alias(&dev, &supply);
1411
Rajendra Nayak69511a42011-11-18 16:47:20 +05301412 /* first do a dt based lookup */
1413 if (dev && dev->of_node) {
1414 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001415 if (node) {
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001416 r = of_find_regulator_by_node(node);
1417 if (r)
1418 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001419 *ret = -EPROBE_DEFER;
1420 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001421 } else {
1422 /*
1423 * If we couldn't even get the node then it's
1424 * not just that the device didn't register
1425 * yet, there's no node and we'll never
1426 * succeed.
1427 */
1428 *ret = -ENODEV;
1429 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301430 }
1431
1432 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001433 if (dev)
1434 devname = dev_name(dev);
1435
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001436 r = regulator_lookup_by_name(supply);
1437 if (r)
1438 return r;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301439
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001440 mutex_lock(&regulator_list_mutex);
Mark Brown576ca4362012-03-30 12:24:37 +01001441 list_for_each_entry(map, &regulator_map_list, list) {
1442 /* If the mapping has a device set up it must match */
1443 if (map->dev_name &&
1444 (!devname || strcmp(map->dev_name, devname)))
1445 continue;
1446
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001447 if (strcmp(map->supply, supply) == 0 &&
1448 get_device(&map->regulator->dev)) {
1449 mutex_unlock(&regulator_list_mutex);
Mark Brown576ca4362012-03-30 12:24:37 +01001450 return map->regulator;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001451 }
Mark Brown576ca4362012-03-30 12:24:37 +01001452 }
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001453 mutex_unlock(&regulator_list_mutex);
Mark Brown576ca4362012-03-30 12:24:37 +01001454
Rajendra Nayak69511a42011-11-18 16:47:20 +05301455 return NULL;
1456}
1457
Bjorn Andersson6261b062015-03-24 18:56:05 -07001458static int regulator_resolve_supply(struct regulator_dev *rdev)
1459{
1460 struct regulator_dev *r;
1461 struct device *dev = rdev->dev.parent;
1462 int ret;
1463
1464 /* No supply to resovle? */
1465 if (!rdev->supply_name)
1466 return 0;
1467
1468 /* Supply already resolved? */
1469 if (rdev->supply)
1470 return 0;
1471
1472 r = regulator_dev_lookup(dev, rdev->supply_name, &ret);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001473 if (!r) {
Charles Keepax23c3f312015-09-17 14:50:20 +01001474 if (ret == -ENODEV) {
1475 /*
1476 * No supply was specified for this regulator and
1477 * there will never be one.
1478 */
1479 return 0;
1480 }
1481
Mark Brown06423122015-10-01 10:59:48 +01001482 /* Did the lookup explicitly defer for us? */
1483 if (ret == -EPROBE_DEFER)
1484 return ret;
1485
Mark Brown9f7e25e2015-07-14 11:17:26 +01001486 if (have_full_constraints()) {
1487 r = dummy_regulator_rdev;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001488 get_device(&r->dev);
Mark Brown9f7e25e2015-07-14 11:17:26 +01001489 } else {
1490 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1491 rdev->supply_name, rdev->desc->name);
1492 return -EPROBE_DEFER;
1493 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001494 }
1495
1496 /* Recursively resolve the supply of the supply */
1497 ret = regulator_resolve_supply(r);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001498 if (ret < 0) {
1499 put_device(&r->dev);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001500 return ret;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001501 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001502
1503 ret = set_supply(rdev, r);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001504 if (ret < 0) {
1505 put_device(&r->dev);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001506 return ret;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001507 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001508
1509 /* Cascade always-on state to supply */
Sudip Mukherjee9f8df6a2015-09-02 16:14:06 +05301510 if (_regulator_is_enabled(rdev) && rdev->supply) {
Bjorn Andersson6261b062015-03-24 18:56:05 -07001511 ret = regulator_enable(rdev->supply);
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +02001512 if (ret < 0) {
Sudip Mukherjee9f8df6a2015-09-02 16:14:06 +05301513 _regulator_put(rdev->supply);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001514 return ret;
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +02001515 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001516 }
1517
1518 return 0;
1519}
1520
Mark Brown5ffbd132009-07-21 16:00:23 +01001521/* Internal regulator request function */
1522static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001523 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001524{
1525 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001526 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001527 const char *devname = NULL;
Mark Brown317b5682014-01-27 17:34:07 +00001528 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001529
1530 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001531 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001532 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001533 }
1534
Mark Brown40f92442009-06-17 17:56:39 +01001535 if (dev)
1536 devname = dev_name(dev);
1537
Mark Brown317b5682014-01-27 17:34:07 +00001538 if (have_full_constraints())
1539 ret = -ENODEV;
1540 else
1541 ret = -EPROBE_DEFER;
1542
Mark Brown6d191a52012-03-29 14:19:02 +01001543 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301544 if (rdev)
1545 goto found;
1546
Mark Brownef60abb2013-09-23 16:12:52 +01001547 regulator = ERR_PTR(ret);
1548
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001549 /*
1550 * If we have return value from dev_lookup fail, we do not expect to
1551 * succeed, so, quit with appropriate error value
1552 */
Jingoo Han0d25d092014-01-08 10:02:16 +09001553 if (ret && ret != -ENODEV)
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001554 return regulator;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001555
Mark Brown34abbd62010-02-12 10:18:08 +00001556 if (!devname)
1557 devname = "deviceless";
1558
Mark Brown4ddfebd2013-09-13 19:50:37 +01001559 /*
1560 * Assume that a regulator is physically present and enabled
1561 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001562 */
Mark Brown87b28412013-11-27 16:13:10 +00001563 if (have_full_constraints() && allow_dummy) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001564 pr_warn("%s supply %s not found, using dummy regulator\n",
1565 devname, id);
Mark Brown4ddfebd2013-09-13 19:50:37 +01001566
Mark Brown34abbd62010-02-12 10:18:08 +00001567 rdev = dummy_regulator_rdev;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001568 get_device(&rdev->dev);
Mark Brown34abbd62010-02-12 10:18:08 +00001569 goto found;
Hans de Goede07817192013-12-17 16:24:57 +01001570 /* Don't log an error when called from regulator_get_optional() */
1571 } else if (!have_full_constraints() || exclusive) {
Shuah Khanacc3d5c2014-02-20 12:58:15 -07001572 dev_warn(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001573 }
Mark Brown34abbd62010-02-12 10:18:08 +00001574
Liam Girdwood414c70c2008-04-30 15:59:04 +01001575 return regulator;
1576
1577found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001578 if (rdev->exclusive) {
1579 regulator = ERR_PTR(-EPERM);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001580 put_device(&rdev->dev);
1581 return regulator;
Mark Brown5ffbd132009-07-21 16:00:23 +01001582 }
1583
1584 if (exclusive && rdev->open_count) {
1585 regulator = ERR_PTR(-EBUSY);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001586 put_device(&rdev->dev);
1587 return regulator;
Mark Brown5ffbd132009-07-21 16:00:23 +01001588 }
1589
Bjorn Andersson6261b062015-03-24 18:56:05 -07001590 ret = regulator_resolve_supply(rdev);
1591 if (ret < 0) {
1592 regulator = ERR_PTR(ret);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001593 put_device(&rdev->dev);
1594 return regulator;
Bjorn Andersson6261b062015-03-24 18:56:05 -07001595 }
1596
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001597 if (!try_module_get(rdev->owner)) {
1598 put_device(&rdev->dev);
1599 return regulator;
1600 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001601
Liam Girdwood414c70c2008-04-30 15:59:04 +01001602 regulator = create_regulator(rdev, dev, id);
1603 if (regulator == NULL) {
1604 regulator = ERR_PTR(-ENOMEM);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001605 put_device(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001606 module_put(rdev->owner);
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001607 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001608 }
1609
Mark Brown5ffbd132009-07-21 16:00:23 +01001610 rdev->open_count++;
1611 if (exclusive) {
1612 rdev->exclusive = 1;
1613
1614 ret = _regulator_is_enabled(rdev);
1615 if (ret > 0)
1616 rdev->use_count = 1;
1617 else
1618 rdev->use_count = 0;
1619 }
1620
Liam Girdwood414c70c2008-04-30 15:59:04 +01001621 return regulator;
1622}
Mark Brown5ffbd132009-07-21 16:00:23 +01001623
1624/**
1625 * regulator_get - lookup and obtain a reference to a regulator.
1626 * @dev: device for regulator "consumer"
1627 * @id: Supply name or regulator ID.
1628 *
1629 * Returns a struct regulator corresponding to the regulator producer,
1630 * or IS_ERR() condition containing errno.
1631 *
1632 * Use of supply names configured via regulator_set_device_supply() is
1633 * strongly encouraged. It is recommended that the supply name used
1634 * should match the name used for the supply and/or the relevant
1635 * device pins in the datasheet.
1636 */
1637struct regulator *regulator_get(struct device *dev, const char *id)
1638{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001639 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001640}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001641EXPORT_SYMBOL_GPL(regulator_get);
1642
Stephen Boyd070b9072012-01-16 19:39:58 -08001643/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001644 * regulator_get_exclusive - obtain exclusive access to a regulator.
1645 * @dev: device for regulator "consumer"
1646 * @id: Supply name or regulator ID.
1647 *
1648 * Returns a struct regulator corresponding to the regulator producer,
1649 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001650 * unable to obtain this regulator while this reference is held and the
1651 * use count for the regulator will be initialised to reflect the current
1652 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001653 *
1654 * This is intended for use by consumers which cannot tolerate shared
1655 * use of the regulator such as those which need to force the
1656 * regulator off for correct operation of the hardware they are
1657 * controlling.
1658 *
1659 * Use of supply names configured via regulator_set_device_supply() is
1660 * strongly encouraged. It is recommended that the supply name used
1661 * should match the name used for the supply and/or the relevant
1662 * device pins in the datasheet.
1663 */
1664struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1665{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001666 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001667}
1668EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1669
Mark Brownde1dd9f2013-07-29 21:42:42 +01001670/**
1671 * regulator_get_optional - obtain optional access to a regulator.
1672 * @dev: device for regulator "consumer"
1673 * @id: Supply name or regulator ID.
1674 *
1675 * Returns a struct regulator corresponding to the regulator producer,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001676 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001677 *
1678 * This is intended for use by consumers for devices which can have
1679 * some supplies unconnected in normal use, such as some MMC devices.
1680 * It can allow the regulator core to provide stub supplies for other
1681 * supplies requested using normal regulator_get() calls without
1682 * disrupting the operation of drivers that can handle absent
1683 * supplies.
1684 *
1685 * Use of supply names configured via regulator_set_device_supply() is
1686 * strongly encouraged. It is recommended that the supply name used
1687 * should match the name used for the supply and/or the relevant
1688 * device pins in the datasheet.
1689 */
1690struct regulator *regulator_get_optional(struct device *dev, const char *id)
1691{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001692 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001693}
1694EXPORT_SYMBOL_GPL(regulator_get_optional);
1695
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301696/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001697static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001698{
1699 struct regulator_dev *rdev;
1700
Viresh Kumar93576842015-08-17 12:30:58 +05301701 if (IS_ERR_OR_NULL(regulator))
Liam Girdwood414c70c2008-04-30 15:59:04 +01001702 return;
1703
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09001704 lockdep_assert_held_once(&regulator_list_mutex);
1705
Liam Girdwood414c70c2008-04-30 15:59:04 +01001706 rdev = regulator->rdev;
1707
Mark Brown5de70512011-06-19 13:33:16 +01001708 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001709
Liam Girdwood414c70c2008-04-30 15:59:04 +01001710 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001711 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001712 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301713 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001714 list_del(&regulator->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001715
Mark Brown5ffbd132009-07-21 16:00:23 +01001716 rdev->open_count--;
1717 rdev->exclusive = 0;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02001718 put_device(&rdev->dev);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301719 mutex_unlock(&rdev->mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001720
Mark Brown17685142015-08-07 21:19:26 +01001721 kfree(regulator->supply_name);
1722 kfree(regulator);
1723
Liam Girdwood414c70c2008-04-30 15:59:04 +01001724 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001725}
1726
1727/**
1728 * regulator_put - "free" the regulator source
1729 * @regulator: regulator source
1730 *
1731 * Note: drivers must ensure that all regulator_enable calls made on this
1732 * regulator source are balanced by regulator_disable calls prior to calling
1733 * this function.
1734 */
1735void regulator_put(struct regulator *regulator)
1736{
1737 mutex_lock(&regulator_list_mutex);
1738 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001739 mutex_unlock(&regulator_list_mutex);
1740}
1741EXPORT_SYMBOL_GPL(regulator_put);
1742
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001743/**
1744 * regulator_register_supply_alias - Provide device alias for supply lookup
1745 *
1746 * @dev: device that will be given as the regulator "consumer"
1747 * @id: Supply name or regulator ID
1748 * @alias_dev: device that should be used to lookup the supply
1749 * @alias_id: Supply name or regulator ID that should be used to lookup the
1750 * supply
1751 *
1752 * All lookups for id on dev will instead be conducted for alias_id on
1753 * alias_dev.
1754 */
1755int regulator_register_supply_alias(struct device *dev, const char *id,
1756 struct device *alias_dev,
1757 const char *alias_id)
1758{
1759 struct regulator_supply_alias *map;
1760
1761 map = regulator_find_supply_alias(dev, id);
1762 if (map)
1763 return -EEXIST;
1764
1765 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1766 if (!map)
1767 return -ENOMEM;
1768
1769 map->src_dev = dev;
1770 map->src_supply = id;
1771 map->alias_dev = alias_dev;
1772 map->alias_supply = alias_id;
1773
1774 list_add(&map->list, &regulator_supply_alias_list);
1775
1776 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1777 id, dev_name(dev), alias_id, dev_name(alias_dev));
1778
1779 return 0;
1780}
1781EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1782
1783/**
1784 * regulator_unregister_supply_alias - Remove device alias
1785 *
1786 * @dev: device that will be given as the regulator "consumer"
1787 * @id: Supply name or regulator ID
1788 *
1789 * Remove a lookup alias if one exists for id on dev.
1790 */
1791void regulator_unregister_supply_alias(struct device *dev, const char *id)
1792{
1793 struct regulator_supply_alias *map;
1794
1795 map = regulator_find_supply_alias(dev, id);
1796 if (map) {
1797 list_del(&map->list);
1798 kfree(map);
1799 }
1800}
1801EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1802
1803/**
1804 * regulator_bulk_register_supply_alias - register multiple aliases
1805 *
1806 * @dev: device that will be given as the regulator "consumer"
1807 * @id: List of supply names or regulator IDs
1808 * @alias_dev: device that should be used to lookup the supply
1809 * @alias_id: List of supply names or regulator IDs that should be used to
1810 * lookup the supply
1811 * @num_id: Number of aliases to register
1812 *
1813 * @return 0 on success, an errno on failure.
1814 *
1815 * This helper function allows drivers to register several supply
1816 * aliases in one operation. If any of the aliases cannot be
1817 * registered any aliases that were registered will be removed
1818 * before returning to the caller.
1819 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001820int regulator_bulk_register_supply_alias(struct device *dev,
1821 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001822 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001823 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001824 int num_id)
1825{
1826 int i;
1827 int ret;
1828
1829 for (i = 0; i < num_id; ++i) {
1830 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1831 alias_id[i]);
1832 if (ret < 0)
1833 goto err;
1834 }
1835
1836 return 0;
1837
1838err:
1839 dev_err(dev,
1840 "Failed to create supply alias %s,%s -> %s,%s\n",
1841 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1842
1843 while (--i >= 0)
1844 regulator_unregister_supply_alias(dev, id[i]);
1845
1846 return ret;
1847}
1848EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1849
1850/**
1851 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1852 *
1853 * @dev: device that will be given as the regulator "consumer"
1854 * @id: List of supply names or regulator IDs
1855 * @num_id: Number of aliases to unregister
1856 *
1857 * This helper function allows drivers to unregister several supply
1858 * aliases in one operation.
1859 */
1860void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001861 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001862 int num_id)
1863{
1864 int i;
1865
1866 for (i = 0; i < num_id; ++i)
1867 regulator_unregister_supply_alias(dev, id[i]);
1868}
1869EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1870
1871
Kim, Milof19b00d2013-02-18 06:50:39 +00001872/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1873static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1874 const struct regulator_config *config)
1875{
1876 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001877 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001878 int ret;
1879
Russell King778b28b2014-06-29 17:55:54 +01001880 gpiod = gpio_to_desc(config->ena_gpio);
1881
Kim, Milof19b00d2013-02-18 06:50:39 +00001882 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001883 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001884 rdev_dbg(rdev, "GPIO %d is already used\n",
1885 config->ena_gpio);
1886 goto update_ena_gpio_to_rdev;
1887 }
1888 }
1889
1890 ret = gpio_request_one(config->ena_gpio,
1891 GPIOF_DIR_OUT | config->ena_gpio_flags,
1892 rdev_get_name(rdev));
1893 if (ret)
1894 return ret;
1895
1896 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1897 if (pin == NULL) {
1898 gpio_free(config->ena_gpio);
1899 return -ENOMEM;
1900 }
1901
Russell King778b28b2014-06-29 17:55:54 +01001902 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001903 pin->ena_gpio_invert = config->ena_gpio_invert;
1904 list_add(&pin->list, &regulator_ena_gpio_list);
1905
1906update_ena_gpio_to_rdev:
1907 pin->request_count++;
1908 rdev->ena_pin = pin;
1909 return 0;
1910}
1911
1912static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1913{
1914 struct regulator_enable_gpio *pin, *n;
1915
1916 if (!rdev->ena_pin)
1917 return;
1918
1919 /* Free the GPIO only in case of no use */
1920 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001921 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001922 if (pin->request_count <= 1) {
1923 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001924 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001925 list_del(&pin->list);
1926 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001927 rdev->ena_pin = NULL;
1928 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001929 } else {
1930 pin->request_count--;
1931 }
1932 }
1933 }
1934}
1935
Kim, Milo967cfb12013-02-18 06:50:48 +00001936/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001937 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1938 * @rdev: regulator_dev structure
1939 * @enable: enable GPIO at initial use?
1940 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001941 * GPIO is enabled in case of initial use. (enable_count is 0)
1942 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1943 */
1944static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1945{
1946 struct regulator_enable_gpio *pin = rdev->ena_pin;
1947
1948 if (!pin)
1949 return -EINVAL;
1950
1951 if (enable) {
1952 /* Enable GPIO at initial use */
1953 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001954 gpiod_set_value_cansleep(pin->gpiod,
1955 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001956
1957 pin->enable_count++;
1958 } else {
1959 if (pin->enable_count > 1) {
1960 pin->enable_count--;
1961 return 0;
1962 }
1963
1964 /* Disable GPIO if not used */
1965 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001966 gpiod_set_value_cansleep(pin->gpiod,
1967 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001968 pin->enable_count = 0;
1969 }
1970 }
1971
1972 return 0;
1973}
1974
Guodong Xu79fd1142014-08-13 19:33:39 +08001975/**
1976 * _regulator_enable_delay - a delay helper function
1977 * @delay: time to delay in microseconds
1978 *
1979 * Delay for the requested amount of time as per the guidelines in:
1980 *
1981 * Documentation/timers/timers-howto.txt
1982 *
1983 * The assumption here is that regulators will never be enabled in
1984 * atomic context and therefore sleeping functions can be used.
1985 */
1986static void _regulator_enable_delay(unsigned int delay)
1987{
1988 unsigned int ms = delay / 1000;
1989 unsigned int us = delay % 1000;
1990
1991 if (ms > 0) {
1992 /*
1993 * For small enough values, handle super-millisecond
1994 * delays in the usleep_range() call below.
1995 */
1996 if (ms < 20)
1997 us += ms * 1000;
1998 else
1999 msleep(ms);
2000 }
2001
2002 /*
2003 * Give the scheduler some room to coalesce with any other
2004 * wakeup sources. For delays shorter than 10 us, don't even
2005 * bother setting up high-resolution timers and just busy-
2006 * loop.
2007 */
2008 if (us >= 10)
2009 usleep_range(us, us + 100);
2010 else
2011 udelay(us);
2012}
2013
Mark Brown5c5659d2012-06-27 13:21:26 +01002014static int _regulator_do_enable(struct regulator_dev *rdev)
2015{
2016 int ret, delay;
2017
2018 /* Query before enabling in case configuration dependent. */
2019 ret = _regulator_get_enable_time(rdev);
2020 if (ret >= 0) {
2021 delay = ret;
2022 } else {
2023 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
2024 delay = 0;
2025 }
2026
2027 trace_regulator_enable(rdev_get_name(rdev));
2028
Guodong Xu871f5652014-08-13 19:33:40 +08002029 if (rdev->desc->off_on_delay) {
2030 /* if needed, keep a distance of off_on_delay from last time
2031 * this regulator was disabled.
2032 */
2033 unsigned long start_jiffy = jiffies;
2034 unsigned long intended, max_delay, remaining;
2035
2036 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
2037 intended = rdev->last_off_jiffy + max_delay;
2038
2039 if (time_before(start_jiffy, intended)) {
2040 /* calc remaining jiffies to deal with one-time
2041 * timer wrapping.
2042 * in case of multiple timer wrapping, either it can be
2043 * detected by out-of-range remaining, or it cannot be
2044 * detected and we gets a panelty of
2045 * _regulator_enable_delay().
2046 */
2047 remaining = intended - start_jiffy;
2048 if (remaining <= max_delay)
2049 _regulator_enable_delay(
2050 jiffies_to_usecs(remaining));
2051 }
2052 }
2053
Kim, Milo967cfb12013-02-18 06:50:48 +00002054 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002055 if (!rdev->ena_gpio_state) {
2056 ret = regulator_ena_gpio_ctrl(rdev, true);
2057 if (ret < 0)
2058 return ret;
2059 rdev->ena_gpio_state = 1;
2060 }
Mark Brown65f73502012-06-27 14:14:38 +01002061 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01002062 ret = rdev->desc->ops->enable(rdev);
2063 if (ret < 0)
2064 return ret;
2065 } else {
2066 return -EINVAL;
2067 }
2068
2069 /* Allow the regulator to ramp; it would be useful to extend
2070 * this for bulk operations so that the regulators can ramp
2071 * together. */
2072 trace_regulator_enable_delay(rdev_get_name(rdev));
2073
Guodong Xu79fd1142014-08-13 19:33:39 +08002074 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01002075
2076 trace_regulator_enable_complete(rdev_get_name(rdev));
2077
2078 return 0;
2079}
2080
Liam Girdwood414c70c2008-04-30 15:59:04 +01002081/* locks held by regulator_enable() */
2082static int _regulator_enable(struct regulator_dev *rdev)
2083{
Mark Brown5c5659d2012-06-27 13:21:26 +01002084 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002085
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002086 lockdep_assert_held_once(&rdev->mutex);
2087
Liam Girdwood414c70c2008-04-30 15:59:04 +01002088 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01002089 if (rdev->constraints &&
2090 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
2091 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002092
Mark Brown9a2372f2009-08-03 18:49:57 +01002093 if (rdev->use_count == 0) {
2094 /* The regulator may on if it's not switchable or left on */
2095 ret = _regulator_is_enabled(rdev);
2096 if (ret == -EINVAL || ret == 0) {
2097 if (!_regulator_can_change_status(rdev))
2098 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002099
Mark Brown5c5659d2012-06-27 13:21:26 +01002100 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00002101 if (ret < 0)
2102 return ret;
2103
Linus Walleija7433cf2009-08-26 12:54:04 +02002104 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002105 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002106 return ret;
2107 }
Linus Walleija7433cf2009-08-26 12:54:04 +02002108 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002109 }
2110
Mark Brown9a2372f2009-08-03 18:49:57 +01002111 rdev->use_count++;
2112
2113 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002114}
2115
2116/**
2117 * regulator_enable - enable regulator output
2118 * @regulator: regulator source
2119 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002120 * Request that the regulator be enabled with the regulator output at
2121 * the predefined voltage or current value. Calls to regulator_enable()
2122 * must be balanced with calls to regulator_disable().
2123 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002124 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00002125 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002126 */
2127int regulator_enable(struct regulator *regulator)
2128{
David Brownell412aec62008-11-16 11:44:46 -08002129 struct regulator_dev *rdev = regulator->rdev;
2130 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002131
Mark Brown6492bc12012-04-19 13:19:07 +01002132 if (regulator->always_on)
2133 return 0;
2134
Mark Brown3801b862011-06-09 16:22:22 +01002135 if (rdev->supply) {
2136 ret = regulator_enable(rdev->supply);
2137 if (ret != 0)
2138 return ret;
2139 }
2140
David Brownell412aec62008-11-16 11:44:46 -08002141 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08002142 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002143 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002144
Heiko Stübnerd1685e42011-10-14 18:00:29 +02002145 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002146 regulator_disable(rdev->supply);
2147
Liam Girdwood414c70c2008-04-30 15:59:04 +01002148 return ret;
2149}
2150EXPORT_SYMBOL_GPL(regulator_enable);
2151
Mark Brown5c5659d2012-06-27 13:21:26 +01002152static int _regulator_do_disable(struct regulator_dev *rdev)
2153{
2154 int ret;
2155
2156 trace_regulator_disable(rdev_get_name(rdev));
2157
Kim, Milo967cfb12013-02-18 06:50:48 +00002158 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002159 if (rdev->ena_gpio_state) {
2160 ret = regulator_ena_gpio_ctrl(rdev, false);
2161 if (ret < 0)
2162 return ret;
2163 rdev->ena_gpio_state = 0;
2164 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002165
2166 } else if (rdev->desc->ops->disable) {
2167 ret = rdev->desc->ops->disable(rdev);
2168 if (ret != 0)
2169 return ret;
2170 }
2171
Guodong Xu871f5652014-08-13 19:33:40 +08002172 /* cares about last_off_jiffy only if off_on_delay is required by
2173 * device.
2174 */
2175 if (rdev->desc->off_on_delay)
2176 rdev->last_off_jiffy = jiffies;
2177
Mark Brown5c5659d2012-06-27 13:21:26 +01002178 trace_regulator_disable_complete(rdev_get_name(rdev));
2179
Mark Brown5c5659d2012-06-27 13:21:26 +01002180 return 0;
2181}
2182
Liam Girdwood414c70c2008-04-30 15:59:04 +01002183/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002184static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002185{
2186 int ret = 0;
2187
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002188 lockdep_assert_held_once(&rdev->mutex);
2189
David Brownellcd94b502009-03-11 16:43:34 -08002190 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002191 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002192 return -EIO;
2193
Liam Girdwood414c70c2008-04-30 15:59:04 +01002194 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002195 if (rdev->use_count == 1 &&
2196 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002197
2198 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01002199 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002200 ret = _notifier_call_chain(rdev,
2201 REGULATOR_EVENT_PRE_DISABLE,
2202 NULL);
2203 if (ret & NOTIFY_STOP_MASK)
2204 return -EINVAL;
2205
Mark Brown5c5659d2012-06-27 13:21:26 +01002206 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002207 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002208 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002209 _notifier_call_chain(rdev,
2210 REGULATOR_EVENT_ABORT_DISABLE,
2211 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002212 return ret;
2213 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002214 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2215 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002216 }
2217
Liam Girdwood414c70c2008-04-30 15:59:04 +01002218 rdev->use_count = 0;
2219 } else if (rdev->use_count > 1) {
2220
2221 if (rdev->constraints &&
2222 (rdev->constraints->valid_ops_mask &
2223 REGULATOR_CHANGE_DRMS))
2224 drms_uA_update(rdev);
2225
2226 rdev->use_count--;
2227 }
Mark Brown3801b862011-06-09 16:22:22 +01002228
Liam Girdwood414c70c2008-04-30 15:59:04 +01002229 return ret;
2230}
2231
2232/**
2233 * regulator_disable - disable regulator output
2234 * @regulator: regulator source
2235 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002236 * Disable the regulator output voltage or current. Calls to
2237 * regulator_enable() must be balanced with calls to
2238 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002239 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002240 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002241 * devices have it enabled, the regulator device supports disabling and
2242 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002243 */
2244int regulator_disable(struct regulator *regulator)
2245{
David Brownell412aec62008-11-16 11:44:46 -08002246 struct regulator_dev *rdev = regulator->rdev;
2247 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002248
Mark Brown6492bc12012-04-19 13:19:07 +01002249 if (regulator->always_on)
2250 return 0;
2251
David Brownell412aec62008-11-16 11:44:46 -08002252 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002253 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002254 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002255
Mark Brown3801b862011-06-09 16:22:22 +01002256 if (ret == 0 && rdev->supply)
2257 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002258
Liam Girdwood414c70c2008-04-30 15:59:04 +01002259 return ret;
2260}
2261EXPORT_SYMBOL_GPL(regulator_disable);
2262
2263/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002264static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002265{
2266 int ret = 0;
2267
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002268 lockdep_assert_held_once(&rdev->mutex);
2269
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002270 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2271 REGULATOR_EVENT_PRE_DISABLE, NULL);
2272 if (ret & NOTIFY_STOP_MASK)
2273 return -EINVAL;
2274
Markus Pargmann66fda752014-02-20 17:36:04 +01002275 ret = _regulator_do_disable(rdev);
2276 if (ret < 0) {
2277 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002278 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2279 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002280 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002281 }
2282
Markus Pargmann66fda752014-02-20 17:36:04 +01002283 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2284 REGULATOR_EVENT_DISABLE, NULL);
2285
2286 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002287}
2288
2289/**
2290 * regulator_force_disable - force disable regulator output
2291 * @regulator: regulator source
2292 *
2293 * Forcibly disable the regulator output voltage or current.
2294 * NOTE: this *will* disable the regulator output even if other consumer
2295 * devices have it enabled. This should be used for situations when device
2296 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2297 */
2298int regulator_force_disable(struct regulator *regulator)
2299{
Mark Brown82d15832011-05-09 11:41:02 +02002300 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002301 int ret;
2302
Mark Brown82d15832011-05-09 11:41:02 +02002303 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002304 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002305 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002306 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002307
Mark Brown3801b862011-06-09 16:22:22 +01002308 if (rdev->supply)
2309 while (rdev->open_count--)
2310 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002311
Liam Girdwood414c70c2008-04-30 15:59:04 +01002312 return ret;
2313}
2314EXPORT_SYMBOL_GPL(regulator_force_disable);
2315
Mark Brownda07ecd2011-09-11 09:53:50 +01002316static void regulator_disable_work(struct work_struct *work)
2317{
2318 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2319 disable_work.work);
2320 int count, i, ret;
2321
2322 mutex_lock(&rdev->mutex);
2323
2324 BUG_ON(!rdev->deferred_disables);
2325
2326 count = rdev->deferred_disables;
2327 rdev->deferred_disables = 0;
2328
2329 for (i = 0; i < count; i++) {
2330 ret = _regulator_disable(rdev);
2331 if (ret != 0)
2332 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2333 }
2334
2335 mutex_unlock(&rdev->mutex);
2336
2337 if (rdev->supply) {
2338 for (i = 0; i < count; i++) {
2339 ret = regulator_disable(rdev->supply);
2340 if (ret != 0) {
2341 rdev_err(rdev,
2342 "Supply disable failed: %d\n", ret);
2343 }
2344 }
2345 }
2346}
2347
2348/**
2349 * regulator_disable_deferred - disable regulator output with delay
2350 * @regulator: regulator source
2351 * @ms: miliseconds until the regulator is disabled
2352 *
2353 * Execute regulator_disable() on the regulator after a delay. This
2354 * is intended for use with devices that require some time to quiesce.
2355 *
2356 * NOTE: this will only disable the regulator output if no other consumer
2357 * devices have it enabled, the regulator device supports disabling and
2358 * machine constraints permit this operation.
2359 */
2360int regulator_disable_deferred(struct regulator *regulator, int ms)
2361{
2362 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002363 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002364
Mark Brown6492bc12012-04-19 13:19:07 +01002365 if (regulator->always_on)
2366 return 0;
2367
Mark Brown2b5a24a2012-09-07 11:00:53 +08002368 if (!ms)
2369 return regulator_disable(regulator);
2370
Mark Brownda07ecd2011-09-11 09:53:50 +01002371 mutex_lock(&rdev->mutex);
2372 rdev->deferred_disables++;
2373 mutex_unlock(&rdev->mutex);
2374
Mark Brown070260f2013-07-18 11:52:04 +01002375 ret = queue_delayed_work(system_power_efficient_wq,
2376 &rdev->disable_work,
2377 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002378 if (ret < 0)
2379 return ret;
2380 else
2381 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002382}
2383EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2384
Liam Girdwood414c70c2008-04-30 15:59:04 +01002385static int _regulator_is_enabled(struct regulator_dev *rdev)
2386{
Mark Brown65f73502012-06-27 14:14:38 +01002387 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002388 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002389 return rdev->ena_gpio_state;
2390
Mark Brown9a7f6a42010-02-11 17:22:45 +00002391 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002392 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002393 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002394
Mark Brown93325462009-08-03 18:49:56 +01002395 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002396}
2397
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002398static int _regulator_list_voltage(struct regulator *regulator,
2399 unsigned selector, int lock)
2400{
2401 struct regulator_dev *rdev = regulator->rdev;
2402 const struct regulator_ops *ops = rdev->desc->ops;
2403 int ret;
2404
2405 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2406 return rdev->desc->fixed_uV;
2407
2408 if (ops->list_voltage) {
2409 if (selector >= rdev->desc->n_voltages)
2410 return -EINVAL;
2411 if (lock)
2412 mutex_lock(&rdev->mutex);
2413 ret = ops->list_voltage(rdev, selector);
2414 if (lock)
2415 mutex_unlock(&rdev->mutex);
2416 } else if (rdev->supply) {
2417 ret = _regulator_list_voltage(rdev->supply, selector, lock);
2418 } else {
2419 return -EINVAL;
2420 }
2421
2422 if (ret > 0) {
2423 if (ret < rdev->constraints->min_uV)
2424 ret = 0;
2425 else if (ret > rdev->constraints->max_uV)
2426 ret = 0;
2427 }
2428
2429 return ret;
2430}
2431
Liam Girdwood414c70c2008-04-30 15:59:04 +01002432/**
2433 * regulator_is_enabled - is the regulator output enabled
2434 * @regulator: regulator source
2435 *
David Brownell412aec62008-11-16 11:44:46 -08002436 * Returns positive if the regulator driver backing the source/client
2437 * has requested that the device be enabled, zero if it hasn't, else a
2438 * negative errno code.
2439 *
2440 * Note that the device backing this regulator handle can have multiple
2441 * users, so it might be enabled even if regulator_enable() was never
2442 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002443 */
2444int regulator_is_enabled(struct regulator *regulator)
2445{
Mark Brown93325462009-08-03 18:49:56 +01002446 int ret;
2447
Mark Brown6492bc12012-04-19 13:19:07 +01002448 if (regulator->always_on)
2449 return 1;
2450
Mark Brown93325462009-08-03 18:49:56 +01002451 mutex_lock(&regulator->rdev->mutex);
2452 ret = _regulator_is_enabled(regulator->rdev);
2453 mutex_unlock(&regulator->rdev->mutex);
2454
2455 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002456}
2457EXPORT_SYMBOL_GPL(regulator_is_enabled);
2458
2459/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002460 * regulator_can_change_voltage - check if regulator can change voltage
2461 * @regulator: regulator source
2462 *
2463 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002464 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002465 * or dummy regulators and disabling voltage change logic in the client
2466 * driver.
2467 */
2468int regulator_can_change_voltage(struct regulator *regulator)
2469{
2470 struct regulator_dev *rdev = regulator->rdev;
2471
2472 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002473 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2474 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2475 return 1;
2476
2477 if (rdev->desc->continuous_voltage_range &&
2478 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2479 rdev->constraints->min_uV != rdev->constraints->max_uV)
2480 return 1;
2481 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002482
2483 return 0;
2484}
2485EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2486
2487/**
David Brownell4367cfd2009-02-26 11:48:36 -08002488 * regulator_count_voltages - count regulator_list_voltage() selectors
2489 * @regulator: regulator source
2490 *
2491 * Returns number of selectors, or negative errno. Selectors are
2492 * numbered starting at zero, and typically correspond to bitfields
2493 * in hardware registers.
2494 */
2495int regulator_count_voltages(struct regulator *regulator)
2496{
2497 struct regulator_dev *rdev = regulator->rdev;
2498
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002499 if (rdev->desc->n_voltages)
2500 return rdev->desc->n_voltages;
2501
2502 if (!rdev->supply)
2503 return -EINVAL;
2504
2505 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002506}
2507EXPORT_SYMBOL_GPL(regulator_count_voltages);
2508
2509/**
2510 * regulator_list_voltage - enumerate supported voltages
2511 * @regulator: regulator source
2512 * @selector: identify voltage to list
2513 * Context: can sleep
2514 *
2515 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002516 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002517 * negative errno.
2518 */
2519int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2520{
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002521 return _regulator_list_voltage(regulator, selector, 1);
David Brownell4367cfd2009-02-26 11:48:36 -08002522}
2523EXPORT_SYMBOL_GPL(regulator_list_voltage);
2524
2525/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002526 * regulator_get_regmap - get the regulator's register map
2527 * @regulator: regulator source
2528 *
2529 * Returns the register map for the given regulator, or an ERR_PTR value
2530 * if the regulator doesn't use regmap.
2531 */
2532struct regmap *regulator_get_regmap(struct regulator *regulator)
2533{
2534 struct regmap *map = regulator->rdev->regmap;
2535
2536 return map ? map : ERR_PTR(-EOPNOTSUPP);
2537}
2538
2539/**
2540 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2541 * @regulator: regulator source
2542 * @vsel_reg: voltage selector register, output parameter
2543 * @vsel_mask: mask for voltage selector bitfield, output parameter
2544 *
2545 * Returns the hardware register offset and bitmask used for setting the
2546 * regulator voltage. This might be useful when configuring voltage-scaling
2547 * hardware or firmware that can make I2C requests behind the kernel's back,
2548 * for example.
2549 *
2550 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2551 * and 0 is returned, otherwise a negative errno is returned.
2552 */
2553int regulator_get_hardware_vsel_register(struct regulator *regulator,
2554 unsigned *vsel_reg,
2555 unsigned *vsel_mask)
2556{
Guodong Xu39f54602014-08-19 18:07:41 +08002557 struct regulator_dev *rdev = regulator->rdev;
2558 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002559
2560 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2561 return -EOPNOTSUPP;
2562
2563 *vsel_reg = rdev->desc->vsel_reg;
2564 *vsel_mask = rdev->desc->vsel_mask;
2565
2566 return 0;
2567}
2568EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2569
2570/**
2571 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2572 * @regulator: regulator source
2573 * @selector: identify voltage to list
2574 *
2575 * Converts the selector to a hardware-specific voltage selector that can be
2576 * directly written to the regulator registers. The address of the voltage
2577 * register can be determined by calling @regulator_get_hardware_vsel_register.
2578 *
2579 * On error a negative errno is returned.
2580 */
2581int regulator_list_hardware_vsel(struct regulator *regulator,
2582 unsigned selector)
2583{
Guodong Xu39f54602014-08-19 18:07:41 +08002584 struct regulator_dev *rdev = regulator->rdev;
2585 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002586
2587 if (selector >= rdev->desc->n_voltages)
2588 return -EINVAL;
2589 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2590 return -EOPNOTSUPP;
2591
2592 return selector;
2593}
2594EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2595
2596/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002597 * regulator_get_linear_step - return the voltage step size between VSEL values
2598 * @regulator: regulator source
2599 *
2600 * Returns the voltage step size between VSEL values for linear
2601 * regulators, or return 0 if the regulator isn't a linear regulator.
2602 */
2603unsigned int regulator_get_linear_step(struct regulator *regulator)
2604{
2605 struct regulator_dev *rdev = regulator->rdev;
2606
2607 return rdev->desc->uV_step;
2608}
2609EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2610
2611/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002612 * regulator_is_supported_voltage - check if a voltage range can be supported
2613 *
2614 * @regulator: Regulator to check.
2615 * @min_uV: Minimum required voltage in uV.
2616 * @max_uV: Maximum required voltage in uV.
2617 *
2618 * Returns a boolean or a negative error code.
2619 */
2620int regulator_is_supported_voltage(struct regulator *regulator,
2621 int min_uV, int max_uV)
2622{
Mark Brownc5f39392012-07-02 15:00:18 +01002623 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002624 int i, voltages, ret;
2625
Mark Brownc5f39392012-07-02 15:00:18 +01002626 /* If we can't change voltage check the current voltage */
2627 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2628 ret = regulator_get_voltage(regulator);
2629 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002630 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002631 else
2632 return ret;
2633 }
2634
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002635 /* Any voltage within constrains range is fine? */
2636 if (rdev->desc->continuous_voltage_range)
2637 return min_uV >= rdev->constraints->min_uV &&
2638 max_uV <= rdev->constraints->max_uV;
2639
Mark Browna7a1ad92009-07-21 16:00:24 +01002640 ret = regulator_count_voltages(regulator);
2641 if (ret < 0)
2642 return ret;
2643 voltages = ret;
2644
2645 for (i = 0; i < voltages; i++) {
2646 ret = regulator_list_voltage(regulator, i);
2647
2648 if (ret >= min_uV && ret <= max_uV)
2649 return 1;
2650 }
2651
2652 return 0;
2653}
Mark Browna398eaa2011-12-28 12:48:45 +00002654EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002655
Sascha Hauera204f412015-10-20 14:37:27 +02002656static int regulator_map_voltage(struct regulator_dev *rdev, int min_uV,
2657 int max_uV)
2658{
2659 const struct regulator_desc *desc = rdev->desc;
2660
2661 if (desc->ops->map_voltage)
2662 return desc->ops->map_voltage(rdev, min_uV, max_uV);
2663
2664 if (desc->ops->list_voltage == regulator_list_voltage_linear)
2665 return regulator_map_voltage_linear(rdev, min_uV, max_uV);
2666
2667 if (desc->ops->list_voltage == regulator_list_voltage_linear_range)
2668 return regulator_map_voltage_linear_range(rdev, min_uV, max_uV);
2669
2670 return regulator_map_voltage_iterate(rdev, min_uV, max_uV);
2671}
2672
Heiko Stübner71795692014-08-28 12:36:04 -07002673static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2674 int min_uV, int max_uV,
2675 unsigned *selector)
2676{
2677 struct pre_voltage_change_data data;
2678 int ret;
2679
2680 data.old_uV = _regulator_get_voltage(rdev);
2681 data.min_uV = min_uV;
2682 data.max_uV = max_uV;
2683 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2684 &data);
2685 if (ret & NOTIFY_STOP_MASK)
2686 return -EINVAL;
2687
2688 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2689 if (ret >= 0)
2690 return ret;
2691
2692 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2693 (void *)data.old_uV);
2694
2695 return ret;
2696}
2697
2698static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2699 int uV, unsigned selector)
2700{
2701 struct pre_voltage_change_data data;
2702 int ret;
2703
2704 data.old_uV = _regulator_get_voltage(rdev);
2705 data.min_uV = uV;
2706 data.max_uV = uV;
2707 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2708 &data);
2709 if (ret & NOTIFY_STOP_MASK)
2710 return -EINVAL;
2711
2712 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2713 if (ret >= 0)
2714 return ret;
2715
2716 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2717 (void *)data.old_uV);
2718
2719 return ret;
2720}
2721
Mark Brown75790252010-12-12 14:25:50 +00002722static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2723 int min_uV, int max_uV)
2724{
2725 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002726 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002727 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002728 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002729 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002730
2731 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2732
Mark Brownbf5892a2011-05-08 22:13:37 +01002733 min_uV += rdev->constraints->uV_offset;
2734 max_uV += rdev->constraints->uV_offset;
2735
Axel Lineba41a52012-04-04 10:32:10 +08002736 /*
2737 * If we can't obtain the old selector there is not enough
2738 * info to call set_voltage_time_sel().
2739 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002740 if (_regulator_is_enabled(rdev) &&
2741 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002742 rdev->desc->ops->get_voltage_sel) {
2743 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2744 if (old_selector < 0)
2745 return old_selector;
2746 }
2747
Mark Brown75790252010-12-12 14:25:50 +00002748 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002749 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2750 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002751
2752 if (ret >= 0) {
2753 if (rdev->desc->ops->list_voltage)
2754 best_val = rdev->desc->ops->list_voltage(rdev,
2755 selector);
2756 else
2757 best_val = _regulator_get_voltage(rdev);
2758 }
2759
Mark Browne8eef822010-12-12 14:36:17 +00002760 } else if (rdev->desc->ops->set_voltage_sel) {
Sascha Hauera204f412015-10-20 14:37:27 +02002761 ret = regulator_map_voltage(rdev, min_uV, max_uV);
Mark Browne843fc42012-05-09 21:16:06 +01002762 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002763 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2764 if (min_uV <= best_val && max_uV >= best_val) {
2765 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002766 if (old_selector == selector)
2767 ret = 0;
2768 else
Heiko Stübner71795692014-08-28 12:36:04 -07002769 ret = _regulator_call_set_voltage_sel(
2770 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002771 } else {
2772 ret = -EINVAL;
2773 }
Mark Browne8eef822010-12-12 14:36:17 +00002774 }
Mark Brown75790252010-12-12 14:25:50 +00002775 } else {
2776 ret = -EINVAL;
2777 }
2778
Axel Lineba41a52012-04-04 10:32:10 +08002779 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302780 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2781 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002782
2783 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2784 old_selector, selector);
2785 if (delay < 0) {
2786 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2787 delay);
2788 delay = 0;
2789 }
Axel Lineba41a52012-04-04 10:32:10 +08002790
Philip Rakity8b96de32012-06-14 15:07:56 -07002791 /* Insert any necessary delays */
2792 if (delay >= 1000) {
2793 mdelay(delay / 1000);
2794 udelay(delay % 1000);
2795 } else if (delay) {
2796 udelay(delay);
2797 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002798 }
2799
Axel Lin2f6c7972012-08-06 23:44:19 +08002800 if (ret == 0 && best_val >= 0) {
2801 unsigned long data = best_val;
2802
Mark Brownded06a52010-12-16 13:59:10 +00002803 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002804 (void *)data);
2805 }
Mark Brownded06a52010-12-16 13:59:10 +00002806
Axel Lineba41a52012-04-04 10:32:10 +08002807 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002808
2809 return ret;
2810}
2811
Sascha Hauera9f226b2015-10-13 12:45:25 +02002812static int regulator_set_voltage_unlocked(struct regulator *regulator,
2813 int min_uV, int max_uV)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002814{
2815 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002816 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002817 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002818 int current_uV;
Sascha Hauerfc421122015-10-20 14:37:28 +02002819 int best_supply_uV = 0;
2820 int supply_change_uV = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002821
Mark Brown95a3c232010-12-16 15:49:37 +00002822 /* If we're setting the same range as last time the change
2823 * should be a noop (some cpufreq implementations use the same
2824 * voltage for multiple frequencies, for example).
2825 */
2826 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2827 goto out;
2828
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002829 /* If we're trying to set a range that overlaps the current voltage,
Viresh Kumard3fb9802015-08-13 18:09:49 +05302830 * return successfully even though the regulator does not support
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002831 * changing the voltage.
2832 */
2833 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2834 current_uV = _regulator_get_voltage(rdev);
2835 if (min_uV <= current_uV && current_uV <= max_uV) {
2836 regulator->min_uV = min_uV;
2837 regulator->max_uV = max_uV;
2838 goto out;
2839 }
2840 }
2841
Liam Girdwood414c70c2008-04-30 15:59:04 +01002842 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002843 if (!rdev->desc->ops->set_voltage &&
2844 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002845 ret = -EINVAL;
2846 goto out;
2847 }
2848
2849 /* constraints check */
2850 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2851 if (ret < 0)
2852 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002853
Paolo Pisati92d7a552012-12-13 10:13:00 +01002854 /* restore original values in case of error */
2855 old_min_uV = regulator->min_uV;
2856 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002857 regulator->min_uV = min_uV;
2858 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002859
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002860 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2861 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002862 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002863
Sascha Hauerfc421122015-10-20 14:37:28 +02002864 if (rdev->supply && (rdev->desc->min_dropout_uV ||
2865 !rdev->desc->ops->get_voltage)) {
2866 int current_supply_uV;
2867 int selector;
2868
2869 selector = regulator_map_voltage(rdev, min_uV, max_uV);
2870 if (selector < 0) {
2871 ret = selector;
2872 goto out2;
2873 }
2874
2875 best_supply_uV = _regulator_list_voltage(regulator, selector, 0);
2876 if (best_supply_uV < 0) {
2877 ret = best_supply_uV;
2878 goto out2;
2879 }
2880
2881 best_supply_uV += rdev->desc->min_dropout_uV;
2882
2883 current_supply_uV = _regulator_get_voltage(rdev->supply->rdev);
2884 if (current_supply_uV < 0) {
2885 ret = current_supply_uV;
2886 goto out2;
2887 }
2888
2889 supply_change_uV = best_supply_uV - current_supply_uV;
2890 }
2891
2892 if (supply_change_uV > 0) {
2893 ret = regulator_set_voltage_unlocked(rdev->supply,
2894 best_supply_uV, INT_MAX);
2895 if (ret) {
2896 dev_err(&rdev->dev, "Failed to increase supply voltage: %d\n",
2897 ret);
2898 goto out2;
2899 }
2900 }
2901
Mark Brown75790252010-12-12 14:25:50 +00002902 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002903 if (ret < 0)
2904 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002905
Sascha Hauerfc421122015-10-20 14:37:28 +02002906 if (supply_change_uV < 0) {
2907 ret = regulator_set_voltage_unlocked(rdev->supply,
2908 best_supply_uV, INT_MAX);
2909 if (ret)
2910 dev_warn(&rdev->dev, "Failed to decrease supply voltage: %d\n",
2911 ret);
2912 /* No need to fail here */
2913 ret = 0;
2914 }
2915
Liam Girdwood414c70c2008-04-30 15:59:04 +01002916out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01002917 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002918out2:
2919 regulator->min_uV = old_min_uV;
2920 regulator->max_uV = old_max_uV;
Sascha Hauera9f226b2015-10-13 12:45:25 +02002921
2922 return ret;
2923}
2924
2925/**
2926 * regulator_set_voltage - set regulator output voltage
2927 * @regulator: regulator source
2928 * @min_uV: Minimum required voltage in uV
2929 * @max_uV: Maximum acceptable voltage in uV
2930 *
2931 * Sets a voltage regulator to the desired output voltage. This can be set
2932 * during any regulator state. IOW, regulator can be disabled or enabled.
2933 *
2934 * If the regulator is enabled then the voltage will change to the new value
2935 * immediately otherwise if the regulator is disabled the regulator will
2936 * output at the new voltage when enabled.
2937 *
2938 * NOTE: If the regulator is shared between several devices then the lowest
2939 * request voltage that meets the system constraints will be used.
2940 * Regulator system constraints must be set for this regulator before
2941 * calling this function otherwise this call will fail.
2942 */
2943int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2944{
2945 int ret = 0;
2946
Sascha Hauerfc421122015-10-20 14:37:28 +02002947 regulator_lock_supply(regulator->rdev);
Sascha Hauera9f226b2015-10-13 12:45:25 +02002948
2949 ret = regulator_set_voltage_unlocked(regulator, min_uV, max_uV);
2950
Sascha Hauerfc421122015-10-20 14:37:28 +02002951 regulator_unlock_supply(regulator->rdev);
Sascha Hauera9f226b2015-10-13 12:45:25 +02002952
Paolo Pisati92d7a552012-12-13 10:13:00 +01002953 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002954}
2955EXPORT_SYMBOL_GPL(regulator_set_voltage);
2956
Mark Brown606a2562010-12-16 15:49:36 +00002957/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002958 * regulator_set_voltage_time - get raise/fall time
2959 * @regulator: regulator source
2960 * @old_uV: starting voltage in microvolts
2961 * @new_uV: target voltage in microvolts
2962 *
2963 * Provided with the starting and ending voltage, this function attempts to
2964 * calculate the time in microseconds required to rise or fall to this new
2965 * voltage.
2966 */
2967int regulator_set_voltage_time(struct regulator *regulator,
2968 int old_uV, int new_uV)
2969{
Guodong Xu272e2312014-08-13 19:33:38 +08002970 struct regulator_dev *rdev = regulator->rdev;
2971 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002972 int old_sel = -1;
2973 int new_sel = -1;
2974 int voltage;
2975 int i;
2976
2977 /* Currently requires operations to do this */
2978 if (!ops->list_voltage || !ops->set_voltage_time_sel
2979 || !rdev->desc->n_voltages)
2980 return -EINVAL;
2981
2982 for (i = 0; i < rdev->desc->n_voltages; i++) {
2983 /* We only look for exact voltage matches here */
2984 voltage = regulator_list_voltage(regulator, i);
2985 if (voltage < 0)
2986 return -EINVAL;
2987 if (voltage == 0)
2988 continue;
2989 if (voltage == old_uV)
2990 old_sel = i;
2991 if (voltage == new_uV)
2992 new_sel = i;
2993 }
2994
2995 if (old_sel < 0 || new_sel < 0)
2996 return -EINVAL;
2997
2998 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2999}
3000EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
3001
3002/**
Randy Dunlap296c6562012-08-18 17:44:14 -07003003 * regulator_set_voltage_time_sel - get raise/fall time
3004 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303005 * @old_selector: selector for starting voltage
3006 * @new_selector: selector for target voltage
3007 *
3008 * Provided with the starting and target voltage selectors, this function
3009 * returns time in microseconds required to rise or fall to this new voltage
3010 *
Axel Linf11d08c2012-06-19 09:38:45 +08003011 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08003012 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303013 */
3014int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
3015 unsigned int old_selector,
3016 unsigned int new_selector)
3017{
Axel Lin398715a2012-06-18 10:11:28 +08003018 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08003019 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08003020
3021 if (rdev->constraints->ramp_delay)
3022 ramp_delay = rdev->constraints->ramp_delay;
3023 else if (rdev->desc->ramp_delay)
3024 ramp_delay = rdev->desc->ramp_delay;
3025
3026 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05303027 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08003028 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05303029 }
Axel Lin398715a2012-06-18 10:11:28 +08003030
Axel Linf11d08c2012-06-19 09:38:45 +08003031 /* sanity check */
3032 if (!rdev->desc->ops->list_voltage)
3033 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08003034
Axel Linf11d08c2012-06-19 09:38:45 +08003035 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
3036 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
3037
3038 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303039}
Mark Brownb19dbf72012-06-23 11:34:20 +01003040EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05303041
3042/**
Mark Brown606a2562010-12-16 15:49:36 +00003043 * regulator_sync_voltage - re-apply last regulator output voltage
3044 * @regulator: regulator source
3045 *
3046 * Re-apply the last configured voltage. This is intended to be used
3047 * where some external control source the consumer is cooperating with
3048 * has caused the configured voltage to change.
3049 */
3050int regulator_sync_voltage(struct regulator *regulator)
3051{
3052 struct regulator_dev *rdev = regulator->rdev;
3053 int ret, min_uV, max_uV;
3054
3055 mutex_lock(&rdev->mutex);
3056
3057 if (!rdev->desc->ops->set_voltage &&
3058 !rdev->desc->ops->set_voltage_sel) {
3059 ret = -EINVAL;
3060 goto out;
3061 }
3062
3063 /* This is only going to work if we've had a voltage configured. */
3064 if (!regulator->min_uV && !regulator->max_uV) {
3065 ret = -EINVAL;
3066 goto out;
3067 }
3068
3069 min_uV = regulator->min_uV;
3070 max_uV = regulator->max_uV;
3071
3072 /* This should be a paranoia check... */
3073 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
3074 if (ret < 0)
3075 goto out;
3076
3077 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
3078 if (ret < 0)
3079 goto out;
3080
3081 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
3082
3083out:
3084 mutex_unlock(&rdev->mutex);
3085 return ret;
3086}
3087EXPORT_SYMBOL_GPL(regulator_sync_voltage);
3088
Liam Girdwood414c70c2008-04-30 15:59:04 +01003089static int _regulator_get_voltage(struct regulator_dev *rdev)
3090{
Mark Brownbf5892a2011-05-08 22:13:37 +01003091 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00003092
3093 if (rdev->desc->ops->get_voltage_sel) {
3094 sel = rdev->desc->ops->get_voltage_sel(rdev);
3095 if (sel < 0)
3096 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01003097 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08003098 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01003099 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01003100 } else if (rdev->desc->ops->list_voltage) {
3101 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05303102 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
3103 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02003104 } else if (rdev->supply) {
Mark Brownd9b96d32015-11-03 05:58:14 +00003105 ret = _regulator_get_voltage(rdev->supply->rdev);
Axel Lincb220d12011-05-23 20:08:10 +08003106 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003107 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08003108 }
Mark Brownbf5892a2011-05-08 22:13:37 +01003109
Axel Lincb220d12011-05-23 20:08:10 +08003110 if (ret < 0)
3111 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01003112 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003113}
3114
3115/**
3116 * regulator_get_voltage - get regulator output voltage
3117 * @regulator: regulator source
3118 *
3119 * This returns the current regulator voltage in uV.
3120 *
3121 * NOTE: If the regulator is disabled it will return the voltage value. This
3122 * function should not be used to determine regulator state.
3123 */
3124int regulator_get_voltage(struct regulator *regulator)
3125{
3126 int ret;
3127
Mark Brownd9b96d32015-11-03 05:58:14 +00003128 regulator_lock_supply(regulator->rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003129
3130 ret = _regulator_get_voltage(regulator->rdev);
3131
Mark Brownd9b96d32015-11-03 05:58:14 +00003132 regulator_unlock_supply(regulator->rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003133
3134 return ret;
3135}
3136EXPORT_SYMBOL_GPL(regulator_get_voltage);
3137
3138/**
3139 * regulator_set_current_limit - set regulator output current limit
3140 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01003141 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01003142 * @max_uA: Maximum supported current in uA
3143 *
3144 * Sets current sink to the desired output current. This can be set during
3145 * any regulator state. IOW, regulator can be disabled or enabled.
3146 *
3147 * If the regulator is enabled then the current will change to the new value
3148 * immediately otherwise if the regulator is disabled the regulator will
3149 * output at the new current when enabled.
3150 *
3151 * NOTE: Regulator system constraints must be set for this regulator before
3152 * calling this function otherwise this call will fail.
3153 */
3154int regulator_set_current_limit(struct regulator *regulator,
3155 int min_uA, int max_uA)
3156{
3157 struct regulator_dev *rdev = regulator->rdev;
3158 int ret;
3159
3160 mutex_lock(&rdev->mutex);
3161
3162 /* sanity check */
3163 if (!rdev->desc->ops->set_current_limit) {
3164 ret = -EINVAL;
3165 goto out;
3166 }
3167
3168 /* constraints check */
3169 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
3170 if (ret < 0)
3171 goto out;
3172
3173 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
3174out:
3175 mutex_unlock(&rdev->mutex);
3176 return ret;
3177}
3178EXPORT_SYMBOL_GPL(regulator_set_current_limit);
3179
3180static int _regulator_get_current_limit(struct regulator_dev *rdev)
3181{
3182 int ret;
3183
3184 mutex_lock(&rdev->mutex);
3185
3186 /* sanity check */
3187 if (!rdev->desc->ops->get_current_limit) {
3188 ret = -EINVAL;
3189 goto out;
3190 }
3191
3192 ret = rdev->desc->ops->get_current_limit(rdev);
3193out:
3194 mutex_unlock(&rdev->mutex);
3195 return ret;
3196}
3197
3198/**
3199 * regulator_get_current_limit - get regulator output current
3200 * @regulator: regulator source
3201 *
3202 * This returns the current supplied by the specified current sink in uA.
3203 *
3204 * NOTE: If the regulator is disabled it will return the current value. This
3205 * function should not be used to determine regulator state.
3206 */
3207int regulator_get_current_limit(struct regulator *regulator)
3208{
3209 return _regulator_get_current_limit(regulator->rdev);
3210}
3211EXPORT_SYMBOL_GPL(regulator_get_current_limit);
3212
3213/**
3214 * regulator_set_mode - set regulator operating mode
3215 * @regulator: regulator source
3216 * @mode: operating mode - one of the REGULATOR_MODE constants
3217 *
3218 * Set regulator operating mode to increase regulator efficiency or improve
3219 * regulation performance.
3220 *
3221 * NOTE: Regulator system constraints must be set for this regulator before
3222 * calling this function otherwise this call will fail.
3223 */
3224int regulator_set_mode(struct regulator *regulator, unsigned int mode)
3225{
3226 struct regulator_dev *rdev = regulator->rdev;
3227 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303228 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003229
3230 mutex_lock(&rdev->mutex);
3231
3232 /* sanity check */
3233 if (!rdev->desc->ops->set_mode) {
3234 ret = -EINVAL;
3235 goto out;
3236 }
3237
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303238 /* return if the same mode is requested */
3239 if (rdev->desc->ops->get_mode) {
3240 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3241 if (regulator_curr_mode == mode) {
3242 ret = 0;
3243 goto out;
3244 }
3245 }
3246
Liam Girdwood414c70c2008-04-30 15:59:04 +01003247 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003248 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003249 if (ret < 0)
3250 goto out;
3251
3252 ret = rdev->desc->ops->set_mode(rdev, mode);
3253out:
3254 mutex_unlock(&rdev->mutex);
3255 return ret;
3256}
3257EXPORT_SYMBOL_GPL(regulator_set_mode);
3258
3259static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3260{
3261 int ret;
3262
3263 mutex_lock(&rdev->mutex);
3264
3265 /* sanity check */
3266 if (!rdev->desc->ops->get_mode) {
3267 ret = -EINVAL;
3268 goto out;
3269 }
3270
3271 ret = rdev->desc->ops->get_mode(rdev);
3272out:
3273 mutex_unlock(&rdev->mutex);
3274 return ret;
3275}
3276
3277/**
3278 * regulator_get_mode - get regulator operating mode
3279 * @regulator: regulator source
3280 *
3281 * Get the current regulator operating mode.
3282 */
3283unsigned int regulator_get_mode(struct regulator *regulator)
3284{
3285 return _regulator_get_mode(regulator->rdev);
3286}
3287EXPORT_SYMBOL_GPL(regulator_get_mode);
3288
3289/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003290 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003291 * @regulator: regulator source
3292 * @uA_load: load current
3293 *
3294 * Notifies the regulator core of a new device load. This is then used by
3295 * DRMS (if enabled by constraints) to set the most efficient regulator
3296 * operating mode for the new regulator loading.
3297 *
3298 * Consumer devices notify their supply regulator of the maximum power
3299 * they will require (can be taken from device datasheet in the power
3300 * consumption tables) when they change operational status and hence power
3301 * state. Examples of operational state changes that can affect power
3302 * consumption are :-
3303 *
3304 * o Device is opened / closed.
3305 * o Device I/O is about to begin or has just finished.
3306 * o Device is idling in between work.
3307 *
3308 * This information is also exported via sysfs to userspace.
3309 *
3310 * DRMS will sum the total requested load on the regulator and change
3311 * to the most efficient operating mode if platform constraints allow.
3312 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003313 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003314 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003315int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003316{
3317 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003318 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003319
Liam Girdwood414c70c2008-04-30 15:59:04 +01003320 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003321 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003322 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003323 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003324
Liam Girdwood414c70c2008-04-30 15:59:04 +01003325 return ret;
3326}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003327EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003328
3329/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003330 * regulator_allow_bypass - allow the regulator to go into bypass mode
3331 *
3332 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003333 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003334 *
3335 * Allow the regulator to go into bypass mode if all other consumers
3336 * for the regulator also enable bypass mode and the machine
3337 * constraints allow this. Bypass mode means that the regulator is
3338 * simply passing the input directly to the output with no regulation.
3339 */
3340int regulator_allow_bypass(struct regulator *regulator, bool enable)
3341{
3342 struct regulator_dev *rdev = regulator->rdev;
3343 int ret = 0;
3344
3345 if (!rdev->desc->ops->set_bypass)
3346 return 0;
3347
3348 if (rdev->constraints &&
3349 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3350 return 0;
3351
3352 mutex_lock(&rdev->mutex);
3353
3354 if (enable && !regulator->bypass) {
3355 rdev->bypass_count++;
3356
3357 if (rdev->bypass_count == rdev->open_count) {
3358 ret = rdev->desc->ops->set_bypass(rdev, enable);
3359 if (ret != 0)
3360 rdev->bypass_count--;
3361 }
3362
3363 } else if (!enable && regulator->bypass) {
3364 rdev->bypass_count--;
3365
3366 if (rdev->bypass_count != rdev->open_count) {
3367 ret = rdev->desc->ops->set_bypass(rdev, enable);
3368 if (ret != 0)
3369 rdev->bypass_count++;
3370 }
3371 }
3372
3373 if (ret == 0)
3374 regulator->bypass = enable;
3375
3376 mutex_unlock(&rdev->mutex);
3377
3378 return ret;
3379}
3380EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3381
3382/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003383 * regulator_register_notifier - register regulator event notifier
3384 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003385 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003386 *
3387 * Register notifier block to receive regulator events.
3388 */
3389int regulator_register_notifier(struct regulator *regulator,
3390 struct notifier_block *nb)
3391{
3392 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3393 nb);
3394}
3395EXPORT_SYMBOL_GPL(regulator_register_notifier);
3396
3397/**
3398 * regulator_unregister_notifier - unregister regulator event notifier
3399 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003400 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003401 *
3402 * Unregister regulator event notifier block.
3403 */
3404int regulator_unregister_notifier(struct regulator *regulator,
3405 struct notifier_block *nb)
3406{
3407 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3408 nb);
3409}
3410EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3411
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003412/* notify regulator consumers and downstream regulator consumers.
3413 * Note mutex must be held by caller.
3414 */
Heiko Stübner71795692014-08-28 12:36:04 -07003415static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003416 unsigned long event, void *data)
3417{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003418 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003419 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003420}
3421
3422/**
3423 * regulator_bulk_get - get multiple regulator consumers
3424 *
3425 * @dev: Device to supply
3426 * @num_consumers: Number of consumers to register
3427 * @consumers: Configuration of consumers; clients are stored here.
3428 *
3429 * @return 0 on success, an errno on failure.
3430 *
3431 * This helper function allows drivers to get several regulator
3432 * consumers in one operation. If any of the regulators cannot be
3433 * acquired then any regulators that were allocated will be freed
3434 * before returning to the caller.
3435 */
3436int regulator_bulk_get(struct device *dev, int num_consumers,
3437 struct regulator_bulk_data *consumers)
3438{
3439 int i;
3440 int ret;
3441
3442 for (i = 0; i < num_consumers; i++)
3443 consumers[i].consumer = NULL;
3444
3445 for (i = 0; i < num_consumers; i++) {
3446 consumers[i].consumer = regulator_get(dev,
3447 consumers[i].supply);
3448 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003449 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003450 dev_err(dev, "Failed to get supply '%s': %d\n",
3451 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003452 consumers[i].consumer = NULL;
3453 goto err;
3454 }
3455 }
3456
3457 return 0;
3458
3459err:
Axel Linb29c7692012-02-20 10:32:16 +08003460 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003461 regulator_put(consumers[i].consumer);
3462
3463 return ret;
3464}
3465EXPORT_SYMBOL_GPL(regulator_bulk_get);
3466
Mark Brownf21e0e82011-05-24 08:12:40 +08003467static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3468{
3469 struct regulator_bulk_data *bulk = data;
3470
3471 bulk->ret = regulator_enable(bulk->consumer);
3472}
3473
Liam Girdwood414c70c2008-04-30 15:59:04 +01003474/**
3475 * regulator_bulk_enable - enable multiple regulator consumers
3476 *
3477 * @num_consumers: Number of consumers
3478 * @consumers: Consumer data; clients are stored here.
3479 * @return 0 on success, an errno on failure
3480 *
3481 * This convenience API allows consumers to enable multiple regulator
3482 * clients in a single API call. If any consumers cannot be enabled
3483 * then any others that were enabled will be disabled again prior to
3484 * return.
3485 */
3486int regulator_bulk_enable(int num_consumers,
3487 struct regulator_bulk_data *consumers)
3488{
Dan Williams2955b472012-07-09 19:33:25 -07003489 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003490 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003491 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003492
Mark Brown6492bc12012-04-19 13:19:07 +01003493 for (i = 0; i < num_consumers; i++) {
3494 if (consumers[i].consumer->always_on)
3495 consumers[i].ret = 0;
3496 else
3497 async_schedule_domain(regulator_bulk_enable_async,
3498 &consumers[i], &async_domain);
3499 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003500
3501 async_synchronize_full_domain(&async_domain);
3502
3503 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003504 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003505 if (consumers[i].ret != 0) {
3506 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003507 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003508 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003509 }
3510
3511 return 0;
3512
3513err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003514 for (i = 0; i < num_consumers; i++) {
3515 if (consumers[i].ret < 0)
3516 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3517 consumers[i].ret);
3518 else
3519 regulator_disable(consumers[i].consumer);
3520 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003521
3522 return ret;
3523}
3524EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3525
3526/**
3527 * regulator_bulk_disable - disable multiple regulator consumers
3528 *
3529 * @num_consumers: Number of consumers
3530 * @consumers: Consumer data; clients are stored here.
3531 * @return 0 on success, an errno on failure
3532 *
3533 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003534 * clients in a single API call. If any consumers cannot be disabled
3535 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003536 * return.
3537 */
3538int regulator_bulk_disable(int num_consumers,
3539 struct regulator_bulk_data *consumers)
3540{
3541 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003542 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003543
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003544 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003545 ret = regulator_disable(consumers[i].consumer);
3546 if (ret != 0)
3547 goto err;
3548 }
3549
3550 return 0;
3551
3552err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003553 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003554 for (++i; i < num_consumers; ++i) {
3555 r = regulator_enable(consumers[i].consumer);
3556 if (r != 0)
3557 pr_err("Failed to reename %s: %d\n",
3558 consumers[i].supply, r);
3559 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003560
3561 return ret;
3562}
3563EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3564
3565/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003566 * regulator_bulk_force_disable - force disable multiple regulator consumers
3567 *
3568 * @num_consumers: Number of consumers
3569 * @consumers: Consumer data; clients are stored here.
3570 * @return 0 on success, an errno on failure
3571 *
3572 * This convenience API allows consumers to forcibly disable multiple regulator
3573 * clients in a single API call.
3574 * NOTE: This should be used for situations when device damage will
3575 * likely occur if the regulators are not disabled (e.g. over temp).
3576 * Although regulator_force_disable function call for some consumers can
3577 * return error numbers, the function is called for all consumers.
3578 */
3579int regulator_bulk_force_disable(int num_consumers,
3580 struct regulator_bulk_data *consumers)
3581{
3582 int i;
3583 int ret;
3584
3585 for (i = 0; i < num_consumers; i++)
3586 consumers[i].ret =
3587 regulator_force_disable(consumers[i].consumer);
3588
3589 for (i = 0; i < num_consumers; i++) {
3590 if (consumers[i].ret != 0) {
3591 ret = consumers[i].ret;
3592 goto out;
3593 }
3594 }
3595
3596 return 0;
3597out:
3598 return ret;
3599}
3600EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3601
3602/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003603 * regulator_bulk_free - free multiple regulator consumers
3604 *
3605 * @num_consumers: Number of consumers
3606 * @consumers: Consumer data; clients are stored here.
3607 *
3608 * This convenience API allows consumers to free multiple regulator
3609 * clients in a single API call.
3610 */
3611void regulator_bulk_free(int num_consumers,
3612 struct regulator_bulk_data *consumers)
3613{
3614 int i;
3615
3616 for (i = 0; i < num_consumers; i++) {
3617 regulator_put(consumers[i].consumer);
3618 consumers[i].consumer = NULL;
3619 }
3620}
3621EXPORT_SYMBOL_GPL(regulator_bulk_free);
3622
3623/**
3624 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003625 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003626 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003627 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003628 *
3629 * Called by regulator drivers to notify clients a regulator event has
3630 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003631 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003632 */
3633int regulator_notifier_call_chain(struct regulator_dev *rdev,
3634 unsigned long event, void *data)
3635{
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09003636 lockdep_assert_held_once(&rdev->mutex);
3637
Liam Girdwood414c70c2008-04-30 15:59:04 +01003638 _notifier_call_chain(rdev, event, data);
3639 return NOTIFY_DONE;
3640
3641}
3642EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3643
Mark Brownbe721972009-08-04 20:09:52 +02003644/**
3645 * regulator_mode_to_status - convert a regulator mode into a status
3646 *
3647 * @mode: Mode to convert
3648 *
3649 * Convert a regulator mode into a status.
3650 */
3651int regulator_mode_to_status(unsigned int mode)
3652{
3653 switch (mode) {
3654 case REGULATOR_MODE_FAST:
3655 return REGULATOR_STATUS_FAST;
3656 case REGULATOR_MODE_NORMAL:
3657 return REGULATOR_STATUS_NORMAL;
3658 case REGULATOR_MODE_IDLE:
3659 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003660 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003661 return REGULATOR_STATUS_STANDBY;
3662 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003663 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003664 }
3665}
3666EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3667
Takashi Iwai39f802d2015-01-30 20:29:31 +01003668static struct attribute *regulator_dev_attrs[] = {
3669 &dev_attr_name.attr,
3670 &dev_attr_num_users.attr,
3671 &dev_attr_type.attr,
3672 &dev_attr_microvolts.attr,
3673 &dev_attr_microamps.attr,
3674 &dev_attr_opmode.attr,
3675 &dev_attr_state.attr,
3676 &dev_attr_status.attr,
3677 &dev_attr_bypass.attr,
3678 &dev_attr_requested_microamps.attr,
3679 &dev_attr_min_microvolts.attr,
3680 &dev_attr_max_microvolts.attr,
3681 &dev_attr_min_microamps.attr,
3682 &dev_attr_max_microamps.attr,
3683 &dev_attr_suspend_standby_state.attr,
3684 &dev_attr_suspend_mem_state.attr,
3685 &dev_attr_suspend_disk_state.attr,
3686 &dev_attr_suspend_standby_microvolts.attr,
3687 &dev_attr_suspend_mem_microvolts.attr,
3688 &dev_attr_suspend_disk_microvolts.attr,
3689 &dev_attr_suspend_standby_mode.attr,
3690 &dev_attr_suspend_mem_mode.attr,
3691 &dev_attr_suspend_disk_mode.attr,
3692 NULL
3693};
3694
David Brownell7ad68e22008-11-11 17:39:02 -08003695/*
3696 * To avoid cluttering sysfs (and memory) with useless state, only
3697 * create attributes that can be meaningfully displayed.
3698 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003699static umode_t regulator_attr_is_visible(struct kobject *kobj,
3700 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003701{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003702 struct device *dev = kobj_to_dev(kobj);
3703 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003704 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003705 umode_t mode = attr->mode;
3706
3707 /* these three are always present */
3708 if (attr == &dev_attr_name.attr ||
3709 attr == &dev_attr_num_users.attr ||
3710 attr == &dev_attr_type.attr)
3711 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003712
3713 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003714 if (attr == &dev_attr_microvolts.attr) {
3715 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3716 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3717 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3718 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3719 return mode;
3720 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003721 }
David Brownell7ad68e22008-11-11 17:39:02 -08003722
Takashi Iwai39f802d2015-01-30 20:29:31 +01003723 if (attr == &dev_attr_microamps.attr)
3724 return ops->get_current_limit ? mode : 0;
3725
3726 if (attr == &dev_attr_opmode.attr)
3727 return ops->get_mode ? mode : 0;
3728
3729 if (attr == &dev_attr_state.attr)
3730 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3731
3732 if (attr == &dev_attr_status.attr)
3733 return ops->get_status ? mode : 0;
3734
3735 if (attr == &dev_attr_bypass.attr)
3736 return ops->get_bypass ? mode : 0;
3737
David Brownell7ad68e22008-11-11 17:39:02 -08003738 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003739 if (attr == &dev_attr_requested_microamps.attr)
3740 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003741
David Brownell7ad68e22008-11-11 17:39:02 -08003742 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003743 if (attr == &dev_attr_min_microvolts.attr ||
3744 attr == &dev_attr_max_microvolts.attr)
3745 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003746
Takashi Iwai39f802d2015-01-30 20:29:31 +01003747 if (attr == &dev_attr_min_microamps.attr ||
3748 attr == &dev_attr_max_microamps.attr)
3749 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003750
Takashi Iwai39f802d2015-01-30 20:29:31 +01003751 if (attr == &dev_attr_suspend_standby_state.attr ||
3752 attr == &dev_attr_suspend_mem_state.attr ||
3753 attr == &dev_attr_suspend_disk_state.attr)
3754 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003755
Takashi Iwai39f802d2015-01-30 20:29:31 +01003756 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3757 attr == &dev_attr_suspend_mem_microvolts.attr ||
3758 attr == &dev_attr_suspend_disk_microvolts.attr)
3759 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003760
Takashi Iwai39f802d2015-01-30 20:29:31 +01003761 if (attr == &dev_attr_suspend_standby_mode.attr ||
3762 attr == &dev_attr_suspend_mem_mode.attr ||
3763 attr == &dev_attr_suspend_disk_mode.attr)
3764 return ops->set_suspend_mode ? mode : 0;
3765
3766 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003767}
3768
Takashi Iwai39f802d2015-01-30 20:29:31 +01003769static const struct attribute_group regulator_dev_group = {
3770 .attrs = regulator_dev_attrs,
3771 .is_visible = regulator_attr_is_visible,
3772};
3773
3774static const struct attribute_group *regulator_dev_groups[] = {
3775 &regulator_dev_group,
3776 NULL
3777};
3778
3779static void regulator_dev_release(struct device *dev)
3780{
3781 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown29f5f482015-08-07 20:01:32 +01003782
3783 kfree(rdev->constraints);
3784 of_node_put(rdev->dev.of_node);
Takashi Iwai39f802d2015-01-30 20:29:31 +01003785 kfree(rdev);
3786}
3787
3788static struct class regulator_class = {
3789 .name = "regulator",
3790 .dev_release = regulator_dev_release,
3791 .dev_groups = regulator_dev_groups,
3792};
3793
Mark Brown1130e5b2010-12-21 23:49:31 +00003794static void rdev_init_debugfs(struct regulator_dev *rdev)
3795{
Guenter Roecka9eaa812014-10-17 08:17:03 -07003796 struct device *parent = rdev->dev.parent;
3797 const char *rname = rdev_get_name(rdev);
3798 char name[NAME_MAX];
3799
3800 /* Avoid duplicate debugfs directory names */
3801 if (parent && rname == rdev->desc->name) {
3802 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
3803 rname);
3804 rname = name;
3805 }
3806
3807 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003808 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003809 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003810 return;
3811 }
3812
3813 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3814 &rdev->use_count);
3815 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3816 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003817 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3818 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003819}
3820
Liam Girdwood414c70c2008-04-30 15:59:04 +01003821/**
3822 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003823 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003824 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003825 *
3826 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003827 * Returns a valid pointer to struct regulator_dev on success
3828 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003829 */
Mark Brown65f26842012-04-03 20:46:53 +01003830struct regulator_dev *
3831regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003832 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003833{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003834 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003835 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003836 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303837 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003838 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003839 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003840 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003841
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003842 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003843 return ERR_PTR(-EINVAL);
3844
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003845 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003846 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003847
Liam Girdwood414c70c2008-04-30 15:59:04 +01003848 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3849 return ERR_PTR(-EINVAL);
3850
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003851 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3852 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003853 return ERR_PTR(-EINVAL);
3854
Mark Brown476c2d82010-12-10 17:28:07 +00003855 /* Only one of each should be implemented */
3856 WARN_ON(regulator_desc->ops->get_voltage &&
3857 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003858 WARN_ON(regulator_desc->ops->set_voltage &&
3859 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003860
3861 /* If we're using selectors we must implement list_voltage. */
3862 if (regulator_desc->ops->get_voltage_sel &&
3863 !regulator_desc->ops->list_voltage) {
3864 return ERR_PTR(-EINVAL);
3865 }
Mark Browne8eef822010-12-12 14:36:17 +00003866 if (regulator_desc->ops->set_voltage_sel &&
3867 !regulator_desc->ops->list_voltage) {
3868 return ERR_PTR(-EINVAL);
3869 }
Mark Brown476c2d82010-12-10 17:28:07 +00003870
Liam Girdwood414c70c2008-04-30 15:59:04 +01003871 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3872 if (rdev == NULL)
3873 return ERR_PTR(-ENOMEM);
3874
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003875 /*
3876 * Duplicate the config so the driver could override it after
3877 * parsing init data.
3878 */
3879 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
3880 if (config == NULL) {
3881 kfree(rdev);
3882 return ERR_PTR(-ENOMEM);
3883 }
3884
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01003885 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01003886 &rdev->dev.of_node);
3887 if (!init_data) {
3888 init_data = config->init_data;
3889 rdev->dev.of_node = of_node_get(config->of_node);
3890 }
3891
Liam Girdwood414c70c2008-04-30 15:59:04 +01003892 mutex_lock(&regulator_list_mutex);
3893
3894 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003895 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003896 rdev->owner = regulator_desc->owner;
3897 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003898 if (config->regmap)
3899 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303900 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003901 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303902 else if (dev->parent)
3903 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003904 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003905 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003906 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003907 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003908
Liam Girdwooda5766f12008-10-10 13:22:20 +01003909 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003910 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003911 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003912 if (ret < 0)
3913 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003914 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003915
Liam Girdwooda5766f12008-10-10 13:22:20 +01003916 /* register with sysfs */
3917 rdev->dev.class = &regulator_class;
3918 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303919 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303920 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003921 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003922 if (ret != 0) {
3923 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003924 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003925 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003926
3927 dev_set_drvdata(&rdev->dev, rdev);
3928
Markus Pargmann76f439d2014-10-08 15:47:05 +02003929 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3930 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003931 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003932 if (ret != 0) {
3933 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3934 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003935 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003936 }
Mark Brown65f73502012-06-27 14:14:38 +01003937 }
3938
Mike Rapoport74f544c2008-11-25 14:53:53 +02003939 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003940 if (init_data)
3941 constraints = &init_data->constraints;
3942
3943 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003944 if (ret < 0)
3945 goto scrub;
3946
Mark Brown9a8f5e02011-11-29 18:11:19 +00003947 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003948 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303949 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003950 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303951
Liam Girdwooda5766f12008-10-10 13:22:20 +01003952 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003953 if (init_data) {
3954 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3955 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003956 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003957 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003958 if (ret < 0) {
3959 dev_err(dev, "Failed to set supply %s\n",
3960 init_data->consumer_supplies[i].supply);
3961 goto unset_supplies;
3962 }
Mark Brown23c2f042011-02-24 17:39:09 +00003963 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003964 }
3965
Mark Brown1130e5b2010-12-21 23:49:31 +00003966 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003967out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003968 mutex_unlock(&regulator_list_mutex);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003969 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003970 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003971
Jani Nikulad4033b52010-04-29 10:55:11 +03003972unset_supplies:
3973 unset_regulator_supplies(rdev);
3974
David Brownell4fca9542008-11-11 17:38:53 -08003975scrub:
Kim, Milof19b00d2013-02-18 06:50:39 +00003976 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003977 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003978wash:
David Brownell4fca9542008-11-11 17:38:53 -08003979 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003980 /* device core frees rdev */
3981 rdev = ERR_PTR(ret);
3982 goto out;
3983
David Brownell4fca9542008-11-11 17:38:53 -08003984clean:
3985 kfree(rdev);
3986 rdev = ERR_PTR(ret);
3987 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003988}
3989EXPORT_SYMBOL_GPL(regulator_register);
3990
3991/**
3992 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003993 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003994 *
3995 * Called by regulator drivers to unregister a regulator.
3996 */
3997void regulator_unregister(struct regulator_dev *rdev)
3998{
3999 if (rdev == NULL)
4000 return;
4001
Mark Brown891636e2013-07-08 09:14:45 +01004002 if (rdev->supply) {
4003 while (rdev->use_count--)
4004 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01004005 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01004006 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01004007 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00004008 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07004009 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01004010 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02004011 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004012 list_del(&rdev->list);
Mark Brown7cd71c32015-08-07 13:00:35 +01004013 mutex_unlock(&regulator_list_mutex);
Kim, Milof19b00d2013-02-18 06:50:39 +00004014 regulator_ena_gpio_free(rdev);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01004015 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004016}
4017EXPORT_SYMBOL_GPL(regulator_unregister);
4018
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004019static int _regulator_suspend_prepare(struct device *dev, void *data)
4020{
4021 struct regulator_dev *rdev = dev_to_rdev(dev);
4022 const suspend_state_t *state = data;
4023 int ret;
4024
4025 mutex_lock(&rdev->mutex);
4026 ret = suspend_prepare(rdev, *state);
4027 mutex_unlock(&rdev->mutex);
4028
4029 return ret;
4030}
4031
Liam Girdwood414c70c2008-04-30 15:59:04 +01004032/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00004033 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01004034 * @state: system suspend state
4035 *
4036 * Configure each regulator with it's suspend operating parameters for state.
4037 * This will usually be called by machine suspend code prior to supending.
4038 */
4039int regulator_suspend_prepare(suspend_state_t state)
4040{
Liam Girdwood414c70c2008-04-30 15:59:04 +01004041 /* ON is handled by regulator active state */
4042 if (state == PM_SUSPEND_ON)
4043 return -EINVAL;
4044
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004045 return class_for_each_device(&regulator_class, NULL, &state,
4046 _regulator_suspend_prepare);
Liam Girdwood414c70c2008-04-30 15:59:04 +01004047}
4048EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
4049
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004050static int _regulator_suspend_finish(struct device *dev, void *data)
4051{
4052 struct regulator_dev *rdev = dev_to_rdev(dev);
4053 int ret;
4054
4055 mutex_lock(&rdev->mutex);
4056 if (rdev->use_count > 0 || rdev->constraints->always_on) {
4057 if (!_regulator_is_enabled(rdev)) {
4058 ret = _regulator_do_enable(rdev);
4059 if (ret)
4060 dev_err(dev,
4061 "Failed to resume regulator %d\n",
4062 ret);
4063 }
4064 } else {
4065 if (!have_full_constraints())
4066 goto unlock;
4067 if (!_regulator_is_enabled(rdev))
4068 goto unlock;
4069
4070 ret = _regulator_do_disable(rdev);
4071 if (ret)
4072 dev_err(dev, "Failed to suspend regulator %d\n", ret);
4073 }
4074unlock:
4075 mutex_unlock(&rdev->mutex);
4076
4077 /* Keep processing regulators in spite of any errors */
4078 return 0;
4079}
4080
Liam Girdwood414c70c2008-04-30 15:59:04 +01004081/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09004082 * regulator_suspend_finish - resume regulators from system wide suspend
4083 *
4084 * Turn on regulators that might be turned off by regulator_suspend_prepare
4085 * and that should be turned on according to the regulators properties.
4086 */
4087int regulator_suspend_finish(void)
4088{
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004089 return class_for_each_device(&regulator_class, NULL, NULL,
4090 _regulator_suspend_finish);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09004091}
4092EXPORT_SYMBOL_GPL(regulator_suspend_finish);
4093
4094/**
Mark Brownca725562009-03-16 19:36:34 +00004095 * regulator_has_full_constraints - the system has fully specified constraints
4096 *
4097 * Calling this function will cause the regulator API to disable all
4098 * regulators which have a zero use count and don't have an always_on
4099 * constraint in a late_initcall.
4100 *
4101 * The intention is that this will become the default behaviour in a
4102 * future kernel release so users are encouraged to use this facility
4103 * now.
4104 */
4105void regulator_has_full_constraints(void)
4106{
4107 has_full_constraints = 1;
4108}
4109EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
4110
4111/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01004112 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00004113 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004114 *
4115 * Get rdev regulator driver private data. This call can be used in the
4116 * regulator driver context.
4117 */
4118void *rdev_get_drvdata(struct regulator_dev *rdev)
4119{
4120 return rdev->reg_data;
4121}
4122EXPORT_SYMBOL_GPL(rdev_get_drvdata);
4123
4124/**
4125 * regulator_get_drvdata - get regulator driver data
4126 * @regulator: regulator
4127 *
4128 * Get regulator driver private data. This call can be used in the consumer
4129 * driver context when non API regulator specific functions need to be called.
4130 */
4131void *regulator_get_drvdata(struct regulator *regulator)
4132{
4133 return regulator->rdev->reg_data;
4134}
4135EXPORT_SYMBOL_GPL(regulator_get_drvdata);
4136
4137/**
4138 * regulator_set_drvdata - set regulator driver data
4139 * @regulator: regulator
4140 * @data: data
4141 */
4142void regulator_set_drvdata(struct regulator *regulator, void *data)
4143{
4144 regulator->rdev->reg_data = data;
4145}
4146EXPORT_SYMBOL_GPL(regulator_set_drvdata);
4147
4148/**
4149 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00004150 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004151 */
4152int rdev_get_id(struct regulator_dev *rdev)
4153{
4154 return rdev->desc->id;
4155}
4156EXPORT_SYMBOL_GPL(rdev_get_id);
4157
Liam Girdwooda5766f12008-10-10 13:22:20 +01004158struct device *rdev_get_dev(struct regulator_dev *rdev)
4159{
4160 return &rdev->dev;
4161}
4162EXPORT_SYMBOL_GPL(rdev_get_dev);
4163
4164void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
4165{
4166 return reg_init_data->driver_data;
4167}
4168EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
4169
Mark Brownba55a972011-08-23 17:39:10 +01004170#ifdef CONFIG_DEBUG_FS
4171static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
4172 size_t count, loff_t *ppos)
4173{
4174 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4175 ssize_t len, ret = 0;
4176 struct regulator_map *map;
4177
4178 if (!buf)
4179 return -ENOMEM;
4180
4181 list_for_each_entry(map, &regulator_map_list, list) {
4182 len = snprintf(buf + ret, PAGE_SIZE - ret,
4183 "%s -> %s.%s\n",
4184 rdev_get_name(map->regulator), map->dev_name,
4185 map->supply);
4186 if (len >= 0)
4187 ret += len;
4188 if (ret > PAGE_SIZE) {
4189 ret = PAGE_SIZE;
4190 break;
4191 }
4192 }
4193
4194 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
4195
4196 kfree(buf);
4197
4198 return ret;
4199}
Stephen Boyd24751432012-02-20 22:50:42 -08004200#endif
Mark Brownba55a972011-08-23 17:39:10 +01004201
4202static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08004203#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01004204 .read = supply_map_read_file,
4205 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01004206#endif
Stephen Boyd24751432012-02-20 22:50:42 -08004207};
Mark Brownba55a972011-08-23 17:39:10 +01004208
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004209#ifdef CONFIG_DEBUG_FS
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004210struct summary_data {
4211 struct seq_file *s;
4212 struct regulator_dev *parent;
4213 int level;
4214};
4215
4216static void regulator_summary_show_subtree(struct seq_file *s,
4217 struct regulator_dev *rdev,
4218 int level);
4219
4220static int regulator_summary_show_children(struct device *dev, void *data)
4221{
4222 struct regulator_dev *rdev = dev_to_rdev(dev);
4223 struct summary_data *summary_data = data;
4224
4225 if (rdev->supply && rdev->supply->rdev == summary_data->parent)
4226 regulator_summary_show_subtree(summary_data->s, rdev,
4227 summary_data->level + 1);
4228
4229 return 0;
4230}
4231
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004232static void regulator_summary_show_subtree(struct seq_file *s,
4233 struct regulator_dev *rdev,
4234 int level)
4235{
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004236 struct regulation_constraints *c;
4237 struct regulator *consumer;
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004238 struct summary_data summary_data;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004239
4240 if (!rdev)
4241 return;
4242
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004243 seq_printf(s, "%*s%-*s %3d %4d %6d ",
4244 level * 3 + 1, "",
4245 30 - level * 3, rdev_get_name(rdev),
4246 rdev->use_count, rdev->open_count, rdev->bypass_count);
4247
Heiko Stübner23296092015-04-10 13:48:41 +02004248 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
4249 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004250
4251 c = rdev->constraints;
4252 if (c) {
4253 switch (rdev->desc->type) {
4254 case REGULATOR_VOLTAGE:
4255 seq_printf(s, "%5dmV %5dmV ",
4256 c->min_uV / 1000, c->max_uV / 1000);
4257 break;
4258 case REGULATOR_CURRENT:
4259 seq_printf(s, "%5dmA %5dmA ",
4260 c->min_uA / 1000, c->max_uA / 1000);
4261 break;
4262 }
4263 }
4264
4265 seq_puts(s, "\n");
4266
4267 list_for_each_entry(consumer, &rdev->consumer_list, list) {
4268 if (consumer->dev->class == &regulator_class)
4269 continue;
4270
4271 seq_printf(s, "%*s%-*s ",
4272 (level + 1) * 3 + 1, "",
4273 30 - (level + 1) * 3, dev_name(consumer->dev));
4274
4275 switch (rdev->desc->type) {
4276 case REGULATOR_VOLTAGE:
Heiko Stübner23296092015-04-10 13:48:41 +02004277 seq_printf(s, "%37dmV %5dmV",
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004278 consumer->min_uV / 1000,
4279 consumer->max_uV / 1000);
4280 break;
4281 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004282 break;
4283 }
4284
4285 seq_puts(s, "\n");
4286 }
4287
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004288 summary_data.s = s;
4289 summary_data.level = level;
4290 summary_data.parent = rdev;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004291
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004292 class_for_each_device(&regulator_class, NULL, &summary_data,
4293 regulator_summary_show_children);
4294}
4295
4296static int regulator_summary_show_roots(struct device *dev, void *data)
4297{
4298 struct regulator_dev *rdev = dev_to_rdev(dev);
4299 struct seq_file *s = data;
4300
4301 if (!rdev->supply)
4302 regulator_summary_show_subtree(s, rdev, 0);
4303
4304 return 0;
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004305}
4306
4307static int regulator_summary_show(struct seq_file *s, void *data)
4308{
Heiko Stübner23296092015-04-10 13:48:41 +02004309 seq_puts(s, " regulator use open bypass voltage current min max\n");
4310 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004311
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004312 class_for_each_device(&regulator_class, NULL, s,
4313 regulator_summary_show_roots);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004314
4315 return 0;
4316}
4317
4318static int regulator_summary_open(struct inode *inode, struct file *file)
4319{
4320 return single_open(file, regulator_summary_show, inode->i_private);
4321}
4322#endif
4323
4324static const struct file_operations regulator_summary_fops = {
4325#ifdef CONFIG_DEBUG_FS
4326 .open = regulator_summary_open,
4327 .read = seq_read,
4328 .llseek = seq_lseek,
4329 .release = single_release,
4330#endif
4331};
4332
Liam Girdwood414c70c2008-04-30 15:59:04 +01004333static int __init regulator_init(void)
4334{
Mark Brown34abbd62010-02-12 10:18:08 +00004335 int ret;
4336
Mark Brown34abbd62010-02-12 10:18:08 +00004337 ret = class_register(&regulator_class);
4338
Mark Brown1130e5b2010-12-21 23:49:31 +00004339 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004340 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004341 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004342
Mark Brownf4d562c2012-02-20 21:01:04 +00004343 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4344 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004345
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004346 debugfs_create_file("regulator_summary", 0444, debugfs_root,
Tomeu Vizoso85f3b432015-09-21 16:02:47 +02004347 NULL, &regulator_summary_fops);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004348
Mark Brown34abbd62010-02-12 10:18:08 +00004349 regulator_dummy_init();
4350
4351 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004352}
4353
4354/* init early to allow our consumers to complete system booting */
4355core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004356
Mark Brown609ca5f2015-08-10 19:43:47 +01004357static int __init regulator_late_cleanup(struct device *dev, void *data)
Mark Brownca725562009-03-16 19:36:34 +00004358{
Mark Brown609ca5f2015-08-10 19:43:47 +01004359 struct regulator_dev *rdev = dev_to_rdev(dev);
4360 const struct regulator_ops *ops = rdev->desc->ops;
4361 struct regulation_constraints *c = rdev->constraints;
Mark Brownca725562009-03-16 19:36:34 +00004362 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004363
Mark Brown609ca5f2015-08-10 19:43:47 +01004364 if (c && c->always_on)
4365 return 0;
4366
4367 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
4368 return 0;
4369
4370 mutex_lock(&rdev->mutex);
4371
4372 if (rdev->use_count)
4373 goto unlock;
4374
4375 /* If we can't read the status assume it's on. */
4376 if (ops->is_enabled)
4377 enabled = ops->is_enabled(rdev);
4378 else
4379 enabled = 1;
4380
4381 if (!enabled)
4382 goto unlock;
4383
4384 if (have_full_constraints()) {
4385 /* We log since this may kill the system if it goes
4386 * wrong. */
4387 rdev_info(rdev, "disabling\n");
4388 ret = _regulator_do_disable(rdev);
4389 if (ret != 0)
4390 rdev_err(rdev, "couldn't disable: %d\n", ret);
4391 } else {
4392 /* The intention is that in future we will
4393 * assume that full constraints are provided
4394 * so warn even if we aren't going to do
4395 * anything here.
4396 */
4397 rdev_warn(rdev, "incomplete constraints, leaving on\n");
4398 }
4399
4400unlock:
4401 mutex_unlock(&rdev->mutex);
4402
4403 return 0;
4404}
4405
4406static int __init regulator_init_complete(void)
4407{
Mark Brown86f5fcf2012-07-06 18:19:13 +01004408 /*
4409 * Since DT doesn't provide an idiomatic mechanism for
4410 * enabling full constraints and since it's much more natural
4411 * with DT to provide them just assume that a DT enabled
4412 * system has full constraints.
4413 */
4414 if (of_have_populated_dt())
4415 has_full_constraints = true;
4416
Mark Brownca725562009-03-16 19:36:34 +00004417 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004418 * we have permission to change the status for and which are
4419 * not in use or always_on. This is effectively the default
4420 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004421 */
Mark Brown609ca5f2015-08-10 19:43:47 +01004422 class_for_each_device(&regulator_class, NULL, NULL,
4423 regulator_late_cleanup);
Mark Brownca725562009-03-16 19:36:34 +00004424
4425 return 0;
4426}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004427late_initcall_sync(regulator_init_complete);