blob: f28c133693adc00b101ca07db307f9482322d328 [file] [log] [blame]
Liam Girdwood414c70c2008-04-30 15:59:04 +01001/*
2 * core.c -- Voltage/Current Regulator framework.
3 *
4 * Copyright 2007, 2008 Wolfson Microelectronics PLC.
Liam Girdwooda5766f12008-10-10 13:22:20 +01005 * Copyright 2008 SlimLogic Ltd.
Liam Girdwood414c70c2008-04-30 15:59:04 +01006 *
Liam Girdwooda5766f12008-10-10 13:22:20 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood414c70c2008-04-30 15:59:04 +01008 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
15
16#include <linux/kernel.h>
17#include <linux/init.h>
Mark Brown1130e5b2010-12-21 23:49:31 +000018#include <linux/debugfs.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010019#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Mark Brownf21e0e82011-05-24 08:12:40 +080021#include <linux/async.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010022#include <linux/err.h>
23#include <linux/mutex.h>
24#include <linux/suspend.h>
Mark Brown31aae2b2009-12-21 12:21:52 +000025#include <linux/delay.h>
Mark Brown65f73502012-06-27 14:14:38 +010026#include <linux/gpio.h>
Russell King778b28b2014-06-29 17:55:54 +010027#include <linux/gpio/consumer.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053028#include <linux/of.h>
Mark Brown65b19ce2012-04-15 11:16:05 +010029#include <linux/regmap.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053030#include <linux/regulator/of_regulator.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010031#include <linux/regulator/consumer.h>
32#include <linux/regulator/driver.h>
33#include <linux/regulator/machine.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040034#include <linux/module.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010035
Mark Brown02fa3ec2010-11-10 14:38:30 +000036#define CREATE_TRACE_POINTS
37#include <trace/events/regulator.h>
38
Mark Brown34abbd62010-02-12 10:18:08 +000039#include "dummy.h"
Mark Brown0cdfcc02013-09-11 13:15:40 +010040#include "internal.h"
Mark Brown34abbd62010-02-12 10:18:08 +000041
Mark Brown7d51a0d2011-06-09 16:06:37 +010042#define rdev_crit(rdev, fmt, ...) \
43 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
Joe Perches5da84fd2010-11-30 05:53:48 -080044#define rdev_err(rdev, fmt, ...) \
45 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
46#define rdev_warn(rdev, fmt, ...) \
47 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
48#define rdev_info(rdev, fmt, ...) \
49 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
50#define rdev_dbg(rdev, fmt, ...) \
51 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
52
Liam Girdwood414c70c2008-04-30 15:59:04 +010053static DEFINE_MUTEX(regulator_list_mutex);
54static LIST_HEAD(regulator_list);
55static LIST_HEAD(regulator_map_list);
Kim, Milof19b00d2013-02-18 06:50:39 +000056static LIST_HEAD(regulator_ena_gpio_list);
Charles Keepaxa06ccd92013-10-15 20:14:20 +010057static LIST_HEAD(regulator_supply_alias_list);
Mark Brown21cf8912010-12-21 23:30:07 +000058static bool has_full_constraints;
Liam Girdwood414c70c2008-04-30 15:59:04 +010059
Mark Brown1130e5b2010-12-21 23:49:31 +000060static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000061
Mark Brown8dc53902008-12-31 12:52:40 +000062/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010063 * struct regulator_map
64 *
65 * Used to provide symbolic supply names to devices.
66 */
67struct regulator_map {
68 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010069 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010070 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010071 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010072};
73
Liam Girdwood414c70c2008-04-30 15:59:04 +010074/*
Kim, Milof19b00d2013-02-18 06:50:39 +000075 * struct regulator_enable_gpio
76 *
77 * Management for shared enable GPIO pin
78 */
79struct regulator_enable_gpio {
80 struct list_head list;
Russell King778b28b2014-06-29 17:55:54 +010081 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +000082 u32 enable_count; /* a number of enabled shared GPIO */
83 u32 request_count; /* a number of requested shared GPIO */
84 unsigned int ena_gpio_invert:1;
85};
86
Charles Keepaxa06ccd92013-10-15 20:14:20 +010087/*
88 * struct regulator_supply_alias
89 *
90 * Used to map lookups for a supply onto an alternative device.
91 */
92struct regulator_supply_alias {
93 struct list_head list;
94 struct device *src_dev;
95 const char *src_supply;
96 struct device *alias_dev;
97 const char *alias_supply;
98};
99
Liam Girdwood414c70c2008-04-30 15:59:04 +0100100static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +0100101static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100102static int _regulator_get_voltage(struct regulator_dev *rdev);
103static int _regulator_get_current_limit(struct regulator_dev *rdev);
104static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
Heiko Stübner71795692014-08-28 12:36:04 -0700105static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100106 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +0000107static int _regulator_do_set_voltage(struct regulator_dev *rdev,
108 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +0100109static struct regulator *create_regulator(struct regulator_dev *rdev,
110 struct device *dev,
111 const char *supply_name);
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +0200112static void _regulator_put(struct regulator *regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100113
Mark Brown609ca5f2015-08-10 19:43:47 +0100114static struct regulator_dev *dev_to_rdev(struct device *dev)
115{
116 return container_of(dev, struct regulator_dev, dev);
117}
Liam Girdwood414c70c2008-04-30 15:59:04 +0100118
Mark Brown1083c392009-10-22 16:31:32 +0100119static const char *rdev_get_name(struct regulator_dev *rdev)
120{
121 if (rdev->constraints && rdev->constraints->name)
122 return rdev->constraints->name;
123 else if (rdev->desc->name)
124 return rdev->desc->name;
125 else
126 return "";
127}
128
Mark Brown87b28412013-11-27 16:13:10 +0000129static bool have_full_constraints(void)
130{
Mark Brown75bc9642013-11-27 16:22:53 +0000131 return has_full_constraints || of_have_populated_dt();
Mark Brown87b28412013-11-27 16:13:10 +0000132}
133
Rajendra Nayak69511a42011-11-18 16:47:20 +0530134/**
Sascha Hauer9f01cd42015-09-30 16:05:42 +0200135 * regulator_lock_supply - lock a regulator and its supplies
136 * @rdev: regulator source
137 */
138static void regulator_lock_supply(struct regulator_dev *rdev)
139{
140 struct regulator *supply;
141 int i = 0;
142
143 while (1) {
144 mutex_lock_nested(&rdev->mutex, i++);
145 supply = rdev->supply;
146
147 if (!rdev->supply)
148 return;
149
150 rdev = supply->rdev;
151 }
152}
153
154/**
155 * regulator_unlock_supply - unlock a regulator and its supplies
156 * @rdev: regulator source
157 */
158static void regulator_unlock_supply(struct regulator_dev *rdev)
159{
160 struct regulator *supply;
161
162 while (1) {
163 mutex_unlock(&rdev->mutex);
164 supply = rdev->supply;
165
166 if (!rdev->supply)
167 return;
168
169 rdev = supply->rdev;
170 }
171}
172
173/**
Rajendra Nayak69511a42011-11-18 16:47:20 +0530174 * of_get_regulator - get a regulator device node based on supply name
175 * @dev: Device pointer for the consumer (of regulator) device
176 * @supply: regulator supply name
177 *
178 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100179 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530180 * returns NULL.
181 */
182static struct device_node *of_get_regulator(struct device *dev, const char *supply)
183{
184 struct device_node *regnode = NULL;
185 char prop_name[32]; /* 32 is max size of property name */
186
187 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
188
189 snprintf(prop_name, 32, "%s-supply", supply);
190 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
191
192 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530193 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530194 prop_name, dev->of_node->full_name);
195 return NULL;
196 }
197 return regnode;
198}
199
Mark Brown6492bc12012-04-19 13:19:07 +0100200static int _regulator_can_change_status(struct regulator_dev *rdev)
201{
202 if (!rdev->constraints)
203 return 0;
204
205 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
206 return 1;
207 else
208 return 0;
209}
210
Liam Girdwood414c70c2008-04-30 15:59:04 +0100211/* Platform voltage constraint check */
212static int regulator_check_voltage(struct regulator_dev *rdev,
213 int *min_uV, int *max_uV)
214{
215 BUG_ON(*min_uV > *max_uV);
216
217 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800218 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100219 return -ENODEV;
220 }
221 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800222 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100223 return -EPERM;
224 }
225
226 if (*max_uV > rdev->constraints->max_uV)
227 *max_uV = rdev->constraints->max_uV;
228 if (*min_uV < rdev->constraints->min_uV)
229 *min_uV = rdev->constraints->min_uV;
230
Mark Brown89f425e2011-07-12 11:20:37 +0900231 if (*min_uV > *max_uV) {
232 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100233 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100234 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900235 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100236
237 return 0;
238}
239
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100240/* Make sure we select a voltage that suits the needs of all
241 * regulator consumers
242 */
243static int regulator_check_consumers(struct regulator_dev *rdev,
244 int *min_uV, int *max_uV)
245{
246 struct regulator *regulator;
247
248 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700249 /*
250 * Assume consumers that didn't say anything are OK
251 * with anything in the constraint range.
252 */
253 if (!regulator->min_uV && !regulator->max_uV)
254 continue;
255
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100256 if (*max_uV > regulator->max_uV)
257 *max_uV = regulator->max_uV;
258 if (*min_uV < regulator->min_uV)
259 *min_uV = regulator->min_uV;
260 }
261
Mark Browndd8004a2012-11-28 17:09:27 +0000262 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800263 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
264 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100265 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000266 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100267
268 return 0;
269}
270
Liam Girdwood414c70c2008-04-30 15:59:04 +0100271/* current constraint check */
272static int regulator_check_current_limit(struct regulator_dev *rdev,
273 int *min_uA, int *max_uA)
274{
275 BUG_ON(*min_uA > *max_uA);
276
277 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800278 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100279 return -ENODEV;
280 }
281 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800282 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100283 return -EPERM;
284 }
285
286 if (*max_uA > rdev->constraints->max_uA)
287 *max_uA = rdev->constraints->max_uA;
288 if (*min_uA < rdev->constraints->min_uA)
289 *min_uA = rdev->constraints->min_uA;
290
Mark Brown89f425e2011-07-12 11:20:37 +0900291 if (*min_uA > *max_uA) {
292 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100293 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100294 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900295 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100296
297 return 0;
298}
299
300/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900301static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100302{
Mark Brown2c608232011-03-30 06:29:12 +0900303 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800304 case REGULATOR_MODE_FAST:
305 case REGULATOR_MODE_NORMAL:
306 case REGULATOR_MODE_IDLE:
307 case REGULATOR_MODE_STANDBY:
308 break;
309 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900310 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800311 return -EINVAL;
312 }
313
Liam Girdwood414c70c2008-04-30 15:59:04 +0100314 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800315 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100316 return -ENODEV;
317 }
318 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800319 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100320 return -EPERM;
321 }
Mark Brown2c608232011-03-30 06:29:12 +0900322
323 /* The modes are bitmasks, the most power hungry modes having
324 * the lowest values. If the requested mode isn't supported
325 * try higher modes. */
326 while (*mode) {
327 if (rdev->constraints->valid_modes_mask & *mode)
328 return 0;
329 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100330 }
Mark Brown2c608232011-03-30 06:29:12 +0900331
332 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100333}
334
335/* dynamic regulator mode switching constraint check */
336static int regulator_check_drms(struct regulator_dev *rdev)
337{
338 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800339 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100340 return -ENODEV;
341 }
342 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Archit Taneja099982f2015-08-28 16:22:18 +0530343 rdev_dbg(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100344 return -EPERM;
345 }
346 return 0;
347}
348
Liam Girdwood414c70c2008-04-30 15:59:04 +0100349static ssize_t regulator_uV_show(struct device *dev,
350 struct device_attribute *attr, char *buf)
351{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100352 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100353 ssize_t ret;
354
355 mutex_lock(&rdev->mutex);
356 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
357 mutex_unlock(&rdev->mutex);
358
359 return ret;
360}
David Brownell7ad68e22008-11-11 17:39:02 -0800361static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100362
363static ssize_t regulator_uA_show(struct device *dev,
364 struct device_attribute *attr, char *buf)
365{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100366 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100367
368 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
369}
David Brownell7ad68e22008-11-11 17:39:02 -0800370static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100371
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700372static ssize_t name_show(struct device *dev, struct device_attribute *attr,
373 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100374{
375 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100376
Mark Brown1083c392009-10-22 16:31:32 +0100377 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100378}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700379static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100380
David Brownell4fca9542008-11-11 17:38:53 -0800381static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100382{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100383 switch (mode) {
384 case REGULATOR_MODE_FAST:
385 return sprintf(buf, "fast\n");
386 case REGULATOR_MODE_NORMAL:
387 return sprintf(buf, "normal\n");
388 case REGULATOR_MODE_IDLE:
389 return sprintf(buf, "idle\n");
390 case REGULATOR_MODE_STANDBY:
391 return sprintf(buf, "standby\n");
392 }
393 return sprintf(buf, "unknown\n");
394}
395
David Brownell4fca9542008-11-11 17:38:53 -0800396static ssize_t regulator_opmode_show(struct device *dev,
397 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100398{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100399 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100400
David Brownell4fca9542008-11-11 17:38:53 -0800401 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
402}
David Brownell7ad68e22008-11-11 17:39:02 -0800403static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800404
405static ssize_t regulator_print_state(char *buf, int state)
406{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100407 if (state > 0)
408 return sprintf(buf, "enabled\n");
409 else if (state == 0)
410 return sprintf(buf, "disabled\n");
411 else
412 return sprintf(buf, "unknown\n");
413}
414
David Brownell4fca9542008-11-11 17:38:53 -0800415static ssize_t regulator_state_show(struct device *dev,
416 struct device_attribute *attr, char *buf)
417{
418 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100419 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800420
Mark Brown93325462009-08-03 18:49:56 +0100421 mutex_lock(&rdev->mutex);
422 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
423 mutex_unlock(&rdev->mutex);
424
425 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800426}
David Brownell7ad68e22008-11-11 17:39:02 -0800427static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800428
David Brownell853116a2009-01-14 23:03:17 -0800429static ssize_t regulator_status_show(struct device *dev,
430 struct device_attribute *attr, char *buf)
431{
432 struct regulator_dev *rdev = dev_get_drvdata(dev);
433 int status;
434 char *label;
435
436 status = rdev->desc->ops->get_status(rdev);
437 if (status < 0)
438 return status;
439
440 switch (status) {
441 case REGULATOR_STATUS_OFF:
442 label = "off";
443 break;
444 case REGULATOR_STATUS_ON:
445 label = "on";
446 break;
447 case REGULATOR_STATUS_ERROR:
448 label = "error";
449 break;
450 case REGULATOR_STATUS_FAST:
451 label = "fast";
452 break;
453 case REGULATOR_STATUS_NORMAL:
454 label = "normal";
455 break;
456 case REGULATOR_STATUS_IDLE:
457 label = "idle";
458 break;
459 case REGULATOR_STATUS_STANDBY:
460 label = "standby";
461 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700462 case REGULATOR_STATUS_BYPASS:
463 label = "bypass";
464 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100465 case REGULATOR_STATUS_UNDEFINED:
466 label = "undefined";
467 break;
David Brownell853116a2009-01-14 23:03:17 -0800468 default:
469 return -ERANGE;
470 }
471
472 return sprintf(buf, "%s\n", label);
473}
474static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
475
Liam Girdwood414c70c2008-04-30 15:59:04 +0100476static ssize_t regulator_min_uA_show(struct device *dev,
477 struct device_attribute *attr, char *buf)
478{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100479 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100480
481 if (!rdev->constraints)
482 return sprintf(buf, "constraint not defined\n");
483
484 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
485}
David Brownell7ad68e22008-11-11 17:39:02 -0800486static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100487
488static ssize_t regulator_max_uA_show(struct device *dev,
489 struct device_attribute *attr, char *buf)
490{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100491 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100492
493 if (!rdev->constraints)
494 return sprintf(buf, "constraint not defined\n");
495
496 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
497}
David Brownell7ad68e22008-11-11 17:39:02 -0800498static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100499
500static ssize_t regulator_min_uV_show(struct device *dev,
501 struct device_attribute *attr, char *buf)
502{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100503 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100504
505 if (!rdev->constraints)
506 return sprintf(buf, "constraint not defined\n");
507
508 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
509}
David Brownell7ad68e22008-11-11 17:39:02 -0800510static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100511
512static ssize_t regulator_max_uV_show(struct device *dev,
513 struct device_attribute *attr, char *buf)
514{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100515 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100516
517 if (!rdev->constraints)
518 return sprintf(buf, "constraint not defined\n");
519
520 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
521}
David Brownell7ad68e22008-11-11 17:39:02 -0800522static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100523
524static ssize_t regulator_total_uA_show(struct device *dev,
525 struct device_attribute *attr, char *buf)
526{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100527 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100528 struct regulator *regulator;
529 int uA = 0;
530
531 mutex_lock(&rdev->mutex);
532 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100533 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100534 mutex_unlock(&rdev->mutex);
535 return sprintf(buf, "%d\n", uA);
536}
David Brownell7ad68e22008-11-11 17:39:02 -0800537static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100538
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700539static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
540 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100541{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100542 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100543 return sprintf(buf, "%d\n", rdev->use_count);
544}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700545static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100546
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700547static ssize_t type_show(struct device *dev, struct device_attribute *attr,
548 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100549{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100550 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100551
552 switch (rdev->desc->type) {
553 case REGULATOR_VOLTAGE:
554 return sprintf(buf, "voltage\n");
555 case REGULATOR_CURRENT:
556 return sprintf(buf, "current\n");
557 }
558 return sprintf(buf, "unknown\n");
559}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700560static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100561
562static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
563 struct device_attribute *attr, char *buf)
564{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100565 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100566
Liam Girdwood414c70c2008-04-30 15:59:04 +0100567 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
568}
David Brownell7ad68e22008-11-11 17:39:02 -0800569static DEVICE_ATTR(suspend_mem_microvolts, 0444,
570 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100571
572static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
573 struct device_attribute *attr, char *buf)
574{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100575 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100576
Liam Girdwood414c70c2008-04-30 15:59:04 +0100577 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
578}
David Brownell7ad68e22008-11-11 17:39:02 -0800579static DEVICE_ATTR(suspend_disk_microvolts, 0444,
580 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100581
582static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
583 struct device_attribute *attr, char *buf)
584{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100585 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100586
Liam Girdwood414c70c2008-04-30 15:59:04 +0100587 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
588}
David Brownell7ad68e22008-11-11 17:39:02 -0800589static DEVICE_ATTR(suspend_standby_microvolts, 0444,
590 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100591
Liam Girdwood414c70c2008-04-30 15:59:04 +0100592static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
593 struct device_attribute *attr, char *buf)
594{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100595 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100596
David Brownell4fca9542008-11-11 17:38:53 -0800597 return regulator_print_opmode(buf,
598 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100599}
David Brownell7ad68e22008-11-11 17:39:02 -0800600static DEVICE_ATTR(suspend_mem_mode, 0444,
601 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100602
603static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
604 struct device_attribute *attr, char *buf)
605{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100606 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100607
David Brownell4fca9542008-11-11 17:38:53 -0800608 return regulator_print_opmode(buf,
609 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100610}
David Brownell7ad68e22008-11-11 17:39:02 -0800611static DEVICE_ATTR(suspend_disk_mode, 0444,
612 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100613
614static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
615 struct device_attribute *attr, char *buf)
616{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100617 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100618
David Brownell4fca9542008-11-11 17:38:53 -0800619 return regulator_print_opmode(buf,
620 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100621}
David Brownell7ad68e22008-11-11 17:39:02 -0800622static DEVICE_ATTR(suspend_standby_mode, 0444,
623 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100624
625static ssize_t regulator_suspend_mem_state_show(struct device *dev,
626 struct device_attribute *attr, char *buf)
627{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100628 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100629
David Brownell4fca9542008-11-11 17:38:53 -0800630 return regulator_print_state(buf,
631 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100632}
David Brownell7ad68e22008-11-11 17:39:02 -0800633static DEVICE_ATTR(suspend_mem_state, 0444,
634 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100635
636static ssize_t regulator_suspend_disk_state_show(struct device *dev,
637 struct device_attribute *attr, char *buf)
638{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100639 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100640
David Brownell4fca9542008-11-11 17:38:53 -0800641 return regulator_print_state(buf,
642 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100643}
David Brownell7ad68e22008-11-11 17:39:02 -0800644static DEVICE_ATTR(suspend_disk_state, 0444,
645 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100646
647static ssize_t regulator_suspend_standby_state_show(struct device *dev,
648 struct device_attribute *attr, char *buf)
649{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100650 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100651
David Brownell4fca9542008-11-11 17:38:53 -0800652 return regulator_print_state(buf,
653 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100654}
David Brownell7ad68e22008-11-11 17:39:02 -0800655static DEVICE_ATTR(suspend_standby_state, 0444,
656 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100657
Mark Brownf59c8f92012-08-31 10:36:37 -0700658static ssize_t regulator_bypass_show(struct device *dev,
659 struct device_attribute *attr, char *buf)
660{
661 struct regulator_dev *rdev = dev_get_drvdata(dev);
662 const char *report;
663 bool bypass;
664 int ret;
665
666 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
667
668 if (ret != 0)
669 report = "unknown";
670 else if (bypass)
671 report = "enabled";
672 else
673 report = "disabled";
674
675 return sprintf(buf, "%s\n", report);
676}
677static DEVICE_ATTR(bypass, 0444,
678 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800679
Liam Girdwood414c70c2008-04-30 15:59:04 +0100680/* Calculate the new optimum regulator operating mode based on the new total
681 * consumer load. All locks held by caller */
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800682static int drms_uA_update(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100683{
684 struct regulator *sibling;
685 int current_uA = 0, output_uV, input_uV, err;
686 unsigned int mode;
687
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +0900688 lockdep_assert_held_once(&rdev->mutex);
689
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800690 /*
691 * first check to see if we can set modes at all, otherwise just
692 * tell the consumer everything is OK.
693 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100694 err = regulator_check_drms(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800695 if (err < 0)
696 return 0;
697
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800698 if (!rdev->desc->ops->get_optimum_mode &&
699 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800700 return 0;
701
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800702 if (!rdev->desc->ops->set_mode &&
703 !rdev->desc->ops->set_load)
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800704 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100705
706 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000707 output_uV = _regulator_get_voltage(rdev);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800708 if (output_uV <= 0) {
709 rdev_err(rdev, "invalid output voltage found\n");
710 return -EINVAL;
711 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100712
713 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000714 input_uV = 0;
715 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800716 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000717 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100718 input_uV = rdev->constraints->input_uV;
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800719 if (input_uV <= 0) {
720 rdev_err(rdev, "invalid input voltage found\n");
721 return -EINVAL;
722 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100723
724 /* calc total requested load */
725 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100726 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100727
Stephen Boyd22a10bc2015-06-11 17:37:03 -0700728 current_uA += rdev->constraints->system_load;
729
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800730 if (rdev->desc->ops->set_load) {
731 /* set the optimum mode for our new total regulator load */
732 err = rdev->desc->ops->set_load(rdev, current_uA);
733 if (err < 0)
734 rdev_err(rdev, "failed to set load %d\n", current_uA);
735 } else {
736 /* now get the optimum mode for our new total regulator load */
737 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
738 output_uV, current_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100739
Bjorn Andersson8f4490e2015-02-11 19:39:12 -0800740 /* check the new mode is allowed */
741 err = regulator_mode_constrain(rdev, &mode);
742 if (err < 0) {
743 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
744 current_uA, input_uV, output_uV);
745 return err;
746 }
747
748 err = rdev->desc->ops->set_mode(rdev, mode);
749 if (err < 0)
750 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800751 }
752
Bjorn Andersson8460ef32015-01-27 18:46:31 -0800753 return err;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100754}
755
756static int suspend_set_state(struct regulator_dev *rdev,
757 struct regulator_state *rstate)
758{
759 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100760
761 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800762 * only warn if the driver implements set_suspend_voltage or
763 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100764 */
765 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800766 if (rdev->desc->ops->set_suspend_voltage ||
767 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800768 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100769 return 0;
770 }
771
772 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800773 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100774 return -EINVAL;
775 }
776
Axel Lin8ac0e952012-04-14 09:14:34 +0800777 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100778 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800779 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100780 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800781 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
782 ret = 0;
783
Liam Girdwood414c70c2008-04-30 15:59:04 +0100784 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800785 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100786 return ret;
787 }
788
789 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
790 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
791 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800792 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100793 return ret;
794 }
795 }
796
797 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
798 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
799 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800800 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100801 return ret;
802 }
803 }
804 return ret;
805}
806
807/* locks held by caller */
808static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
809{
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +0900810 lockdep_assert_held_once(&rdev->mutex);
811
Liam Girdwood414c70c2008-04-30 15:59:04 +0100812 if (!rdev->constraints)
813 return -EINVAL;
814
815 switch (state) {
816 case PM_SUSPEND_STANDBY:
817 return suspend_set_state(rdev,
818 &rdev->constraints->state_standby);
819 case PM_SUSPEND_MEM:
820 return suspend_set_state(rdev,
821 &rdev->constraints->state_mem);
822 case PM_SUSPEND_MAX:
823 return suspend_set_state(rdev,
824 &rdev->constraints->state_disk);
825 default:
826 return -EINVAL;
827 }
828}
829
830static void print_constraints(struct regulator_dev *rdev)
831{
832 struct regulation_constraints *constraints = rdev->constraints;
Stefan Wahrena7068e32015-06-09 20:09:42 +0000833 char buf[160] = "";
Stefan Wahren5751a992015-06-10 06:13:15 +0000834 size_t len = sizeof(buf) - 1;
Mark Brown8f031b42009-10-22 16:31:31 +0100835 int count = 0;
836 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100837
Mark Brown8f031b42009-10-22 16:31:31 +0100838 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100839 if (constraints->min_uV == constraints->max_uV)
Stefan Wahren5751a992015-06-10 06:13:15 +0000840 count += scnprintf(buf + count, len - count, "%d mV ",
841 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100842 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000843 count += scnprintf(buf + count, len - count,
844 "%d <--> %d mV ",
845 constraints->min_uV / 1000,
846 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100847 }
Mark Brown8f031b42009-10-22 16:31:31 +0100848
849 if (!constraints->min_uV ||
850 constraints->min_uV != constraints->max_uV) {
851 ret = _regulator_get_voltage(rdev);
852 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000853 count += scnprintf(buf + count, len - count,
854 "at %d mV ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100855 }
856
Mark Brownbf5892a2011-05-08 22:13:37 +0100857 if (constraints->uV_offset)
Stefan Wahren5751a992015-06-10 06:13:15 +0000858 count += scnprintf(buf + count, len - count, "%dmV offset ",
859 constraints->uV_offset / 1000);
Mark Brownbf5892a2011-05-08 22:13:37 +0100860
Mark Brown8f031b42009-10-22 16:31:31 +0100861 if (constraints->min_uA && constraints->max_uA) {
862 if (constraints->min_uA == constraints->max_uA)
Stefan Wahren5751a992015-06-10 06:13:15 +0000863 count += scnprintf(buf + count, len - count, "%d mA ",
864 constraints->min_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100865 else
Stefan Wahren5751a992015-06-10 06:13:15 +0000866 count += scnprintf(buf + count, len - count,
867 "%d <--> %d mA ",
868 constraints->min_uA / 1000,
869 constraints->max_uA / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100870 }
871
872 if (!constraints->min_uA ||
873 constraints->min_uA != constraints->max_uA) {
874 ret = _regulator_get_current_limit(rdev);
875 if (ret > 0)
Stefan Wahren5751a992015-06-10 06:13:15 +0000876 count += scnprintf(buf + count, len - count,
877 "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100878 }
879
Liam Girdwood414c70c2008-04-30 15:59:04 +0100880 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
Stefan Wahren5751a992015-06-10 06:13:15 +0000881 count += scnprintf(buf + count, len - count, "fast ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100882 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
Stefan Wahren5751a992015-06-10 06:13:15 +0000883 count += scnprintf(buf + count, len - count, "normal ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100884 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
Stefan Wahren5751a992015-06-10 06:13:15 +0000885 count += scnprintf(buf + count, len - count, "idle ");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100886 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
Stefan Wahren5751a992015-06-10 06:13:15 +0000887 count += scnprintf(buf + count, len - count, "standby");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100888
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200889 if (!count)
Stefan Wahren5751a992015-06-10 06:13:15 +0000890 scnprintf(buf, len, "no parameters");
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200891
Mark Brown194dbae2014-10-31 19:11:59 +0000892 rdev_dbg(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000893
894 if ((constraints->min_uV != constraints->max_uV) &&
895 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
896 rdev_warn(rdev,
897 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100898}
899
Mark Browne79055d2009-10-19 15:53:50 +0100900static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100901 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100902{
Guodong Xu272e2312014-08-13 19:33:38 +0800903 const struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100904 int ret;
905
906 /* do we need to apply the constraint voltage */
907 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000908 rdev->constraints->min_uV == rdev->constraints->max_uV) {
Alban Bedel064d5cd2014-05-20 12:12:16 +0200909 int current_uV = _regulator_get_voltage(rdev);
910 if (current_uV < 0) {
Nishanth Menon69d58832014-06-04 14:53:25 -0500911 rdev_err(rdev,
912 "failed to get the current voltage(%d)\n",
913 current_uV);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200914 return current_uV;
915 }
916 if (current_uV < rdev->constraints->min_uV ||
917 current_uV > rdev->constraints->max_uV) {
918 ret = _regulator_do_set_voltage(
919 rdev, rdev->constraints->min_uV,
920 rdev->constraints->max_uV);
921 if (ret < 0) {
922 rdev_err(rdev,
Nishanth Menon69d58832014-06-04 14:53:25 -0500923 "failed to apply %duV constraint(%d)\n",
924 rdev->constraints->min_uV, ret);
Alban Bedel064d5cd2014-05-20 12:12:16 +0200925 return ret;
926 }
Mark Brown75790252010-12-12 14:25:50 +0000927 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100928 }
Mark Browne79055d2009-10-19 15:53:50 +0100929
930 /* constrain machine-level voltage specs to fit
931 * the actual range supported by this regulator.
932 */
933 if (ops->list_voltage && rdev->desc->n_voltages) {
934 int count = rdev->desc->n_voltages;
935 int i;
936 int min_uV = INT_MAX;
937 int max_uV = INT_MIN;
938 int cmin = constraints->min_uV;
939 int cmax = constraints->max_uV;
940
941 /* it's safe to autoconfigure fixed-voltage supplies
942 and the constraints are used by list_voltage. */
943 if (count == 1 && !cmin) {
944 cmin = 1;
945 cmax = INT_MAX;
946 constraints->min_uV = cmin;
947 constraints->max_uV = cmax;
948 }
949
950 /* voltage constraints are optional */
951 if ((cmin == 0) && (cmax == 0))
952 return 0;
953
954 /* else require explicit machine-level constraints */
955 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800956 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100957 return -EINVAL;
958 }
959
960 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
961 for (i = 0; i < count; i++) {
962 int value;
963
964 value = ops->list_voltage(rdev, i);
965 if (value <= 0)
966 continue;
967
968 /* maybe adjust [min_uV..max_uV] */
969 if (value >= cmin && value < min_uV)
970 min_uV = value;
971 if (value <= cmax && value > max_uV)
972 max_uV = value;
973 }
974
975 /* final: [min_uV..max_uV] valid iff constraints valid */
976 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000977 rdev_err(rdev,
978 "unsupportable voltage constraints %u-%uuV\n",
979 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100980 return -EINVAL;
981 }
982
983 /* use regulator's subset of machine constraints */
984 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800985 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
986 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100987 constraints->min_uV = min_uV;
988 }
989 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800990 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
991 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100992 constraints->max_uV = max_uV;
993 }
994 }
995
996 return 0;
997}
998
Laxman Dewanganf8c17002013-09-20 13:13:02 +0530999static int machine_constraints_current(struct regulator_dev *rdev,
1000 struct regulation_constraints *constraints)
1001{
Guodong Xu272e2312014-08-13 19:33:38 +08001002 const struct regulator_ops *ops = rdev->desc->ops;
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301003 int ret;
1004
1005 if (!constraints->min_uA && !constraints->max_uA)
1006 return 0;
1007
1008 if (constraints->min_uA > constraints->max_uA) {
1009 rdev_err(rdev, "Invalid current constraints\n");
1010 return -EINVAL;
1011 }
1012
1013 if (!ops->set_current_limit || !ops->get_current_limit) {
1014 rdev_warn(rdev, "Operation of current configuration missing\n");
1015 return 0;
1016 }
1017
1018 /* Set regulator current in constraints range */
1019 ret = ops->set_current_limit(rdev, constraints->min_uA,
1020 constraints->max_uA);
1021 if (ret < 0) {
1022 rdev_err(rdev, "Failed to set current constraint, %d\n", ret);
1023 return ret;
1024 }
1025
1026 return 0;
1027}
1028
Markus Pargmann30c21972014-02-20 17:36:03 +01001029static int _regulator_do_enable(struct regulator_dev *rdev);
1030
Liam Girdwooda5766f12008-10-10 13:22:20 +01001031/**
1032 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +00001033 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +00001034 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001035 *
1036 * Allows platform initialisation code to define and constrain
1037 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
1038 * Constraints *must* be set by platform code in order for some
1039 * regulator operations to proceed i.e. set_voltage, set_current_limit,
1040 * set_mode.
1041 */
1042static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +00001043 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001044{
1045 int ret = 0;
Guodong Xu272e2312014-08-13 19:33:38 +08001046 const struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +01001047
Mark Brown9a8f5e02011-11-29 18:11:19 +00001048 if (constraints)
1049 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
1050 GFP_KERNEL);
1051 else
1052 rdev->constraints = kzalloc(sizeof(*constraints),
1053 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +00001054 if (!rdev->constraints)
1055 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +01001056
Mark Brownf8c12fe2010-11-29 15:55:17 +00001057 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +01001058 if (ret != 0)
1059 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -08001060
Laxman Dewanganf8c17002013-09-20 13:13:02 +05301061 ret = machine_constraints_current(rdev, rdev->constraints);
1062 if (ret != 0)
1063 goto out;
1064
Stephen Boyd36e4f832015-06-11 17:37:06 -07001065 if (rdev->constraints->ilim_uA && ops->set_input_current_limit) {
1066 ret = ops->set_input_current_limit(rdev,
1067 rdev->constraints->ilim_uA);
1068 if (ret < 0) {
1069 rdev_err(rdev, "failed to set input limit\n");
1070 goto out;
1071 }
1072 }
1073
Liam Girdwooda5766f12008-10-10 13:22:20 +01001074 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +00001075 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +00001076 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +01001077 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001078 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +01001079 goto out;
1080 }
1081 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01001082
Mark Brown9a8f5e02011-11-29 18:11:19 +00001083 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +00001084 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001085 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +00001086 ret = -EINVAL;
1087 goto out;
1088 }
1089
Mark Brownf8c12fe2010-11-29 15:55:17 +00001090 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +00001091 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001092 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +00001093 goto out;
1094 }
1095 }
1096
Mark Browncacf90f2009-03-02 16:32:46 +00001097 /* If the constraints say the regulator should be on at this point
1098 * and we have control then make sure it is enabled.
1099 */
Markus Pargmann30c21972014-02-20 17:36:03 +01001100 if (rdev->constraints->always_on || rdev->constraints->boot_on) {
1101 ret = _regulator_do_enable(rdev);
1102 if (ret < 0 && ret != -EINVAL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001103 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +01001104 goto out;
1105 }
1106 }
1107
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +05301108 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
1109 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05301110 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
1111 if (ret < 0) {
1112 rdev_err(rdev, "failed to set ramp_delay\n");
1113 goto out;
1114 }
1115 }
1116
Stephen Boyd23c779b2015-06-11 17:37:04 -07001117 if (rdev->constraints->pull_down && ops->set_pull_down) {
1118 ret = ops->set_pull_down(rdev);
1119 if (ret < 0) {
1120 rdev_err(rdev, "failed to set pull down\n");
1121 goto out;
1122 }
1123 }
1124
Stephen Boyd57f66b72015-06-11 17:37:05 -07001125 if (rdev->constraints->soft_start && ops->set_soft_start) {
1126 ret = ops->set_soft_start(rdev);
1127 if (ret < 0) {
1128 rdev_err(rdev, "failed to set soft start\n");
1129 goto out;
1130 }
1131 }
1132
Stephen Boyd3a003ba2015-07-17 14:41:54 -07001133 if (rdev->constraints->over_current_protection
1134 && ops->set_over_current_protection) {
1135 ret = ops->set_over_current_protection(rdev);
1136 if (ret < 0) {
1137 rdev_err(rdev, "failed to set over current protection\n");
1138 goto out;
1139 }
1140 }
1141
Liam Girdwooda5766f12008-10-10 13:22:20 +01001142 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001143 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001144out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001145 kfree(rdev->constraints);
1146 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001147 return ret;
1148}
1149
1150/**
1151 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001152 * @rdev: regulator name
1153 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001154 *
1155 * Called by platform initialisation code to set the supply regulator for this
1156 * regulator. This ensures that a regulators supply will also be enabled by the
1157 * core if it's child is enabled.
1158 */
1159static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001160 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001161{
1162 int err;
1163
Mark Brown3801b862011-06-09 16:22:22 +01001164 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1165
Javier Martinez Canillase2c09ae2015-07-15 16:10:28 +02001166 if (!try_module_get(supply_rdev->owner))
1167 return -ENODEV;
1168
Mark Brown3801b862011-06-09 16:22:22 +01001169 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001170 if (rdev->supply == NULL) {
1171 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001172 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001173 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301174 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001175
1176 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001177}
1178
1179/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001180 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001181 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001182 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001183 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001184 *
1185 * Allows platform initialisation code to map physical regulator
1186 * sources to symbolic names for supplies for use by devices. Devices
1187 * should use these symbolic names to request regulators, avoiding the
1188 * need to provide board-specific regulator names as platform data.
1189 */
1190static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001191 const char *consumer_dev_name,
1192 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001193{
1194 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001195 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001196
1197 if (supply == NULL)
1198 return -EINVAL;
1199
Mark Brown9ed20992009-07-21 16:00:26 +01001200 if (consumer_dev_name != NULL)
1201 has_dev = 1;
1202 else
1203 has_dev = 0;
1204
David Brownell6001e132008-12-31 12:54:19 +00001205 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001206 if (node->dev_name && consumer_dev_name) {
1207 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1208 continue;
1209 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001210 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001211 }
1212
David Brownell6001e132008-12-31 12:54:19 +00001213 if (strcmp(node->supply, supply) != 0)
1214 continue;
1215
Mark Brown737f3602012-02-02 00:10:51 +00001216 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1217 consumer_dev_name,
1218 dev_name(&node->regulator->dev),
1219 node->regulator->desc->name,
1220 supply,
1221 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001222 return -EBUSY;
1223 }
1224
Mark Brown9ed20992009-07-21 16:00:26 +01001225 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001226 if (node == NULL)
1227 return -ENOMEM;
1228
1229 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001230 node->supply = supply;
1231
Mark Brown9ed20992009-07-21 16:00:26 +01001232 if (has_dev) {
1233 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1234 if (node->dev_name == NULL) {
1235 kfree(node);
1236 return -ENOMEM;
1237 }
Mark Brown40f92442009-06-17 17:56:39 +01001238 }
1239
Liam Girdwooda5766f12008-10-10 13:22:20 +01001240 list_add(&node->list, &regulator_map_list);
1241 return 0;
1242}
1243
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001244static void unset_regulator_supplies(struct regulator_dev *rdev)
1245{
1246 struct regulator_map *node, *n;
1247
1248 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1249 if (rdev == node->regulator) {
1250 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001251 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001252 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001253 }
1254 }
1255}
1256
Mark Brownf5726ae2011-06-09 16:22:20 +01001257#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001258
1259static struct regulator *create_regulator(struct regulator_dev *rdev,
1260 struct device *dev,
1261 const char *supply_name)
1262{
1263 struct regulator *regulator;
1264 char buf[REG_STR_SIZE];
1265 int err, size;
1266
1267 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1268 if (regulator == NULL)
1269 return NULL;
1270
1271 mutex_lock(&rdev->mutex);
1272 regulator->rdev = rdev;
1273 list_add(&regulator->list, &rdev->consumer_list);
1274
1275 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001276 regulator->dev = dev;
1277
Mark Brown222cc7b2012-06-22 11:39:16 +01001278 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001279 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1280 dev->kobj.name, supply_name);
1281 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001282 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001283
1284 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1285 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001286 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001287
Stephen Boydff268b52015-06-01 18:47:54 -07001288 err = sysfs_create_link_nowarn(&rdev->dev.kobj, &dev->kobj,
Liam Girdwood414c70c2008-04-30 15:59:04 +01001289 buf);
1290 if (err) {
Stephen Boydff268b52015-06-01 18:47:54 -07001291 rdev_dbg(rdev, "could not add device link %s err %d\n",
Joe Perches5da84fd2010-11-30 05:53:48 -08001292 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001293 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001294 }
Mark Brown5de70512011-06-19 13:33:16 +01001295 } else {
1296 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1297 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001298 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001299 }
Mark Brown5de70512011-06-19 13:33:16 +01001300
Mark Brown5de70512011-06-19 13:33:16 +01001301 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1302 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001303 if (!regulator->debugfs) {
Stephen Boydad3a9422015-06-01 18:47:55 -07001304 rdev_dbg(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001305 } else {
1306 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1307 &regulator->uA_load);
1308 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1309 &regulator->min_uV);
1310 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1311 &regulator->max_uV);
1312 }
Mark Brown5de70512011-06-19 13:33:16 +01001313
Mark Brown6492bc12012-04-19 13:19:07 +01001314 /*
1315 * Check now if the regulator is an always on regulator - if
1316 * it is then we don't need to do nearly so much work for
1317 * enable/disable calls.
1318 */
1319 if (!_regulator_can_change_status(rdev) &&
1320 _regulator_is_enabled(rdev))
1321 regulator->always_on = true;
1322
Liam Girdwood414c70c2008-04-30 15:59:04 +01001323 mutex_unlock(&rdev->mutex);
1324 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001325overflow_err:
1326 list_del(&regulator->list);
1327 kfree(regulator);
1328 mutex_unlock(&rdev->mutex);
1329 return NULL;
1330}
1331
Mark Brown31aae2b2009-12-21 12:21:52 +00001332static int _regulator_get_enable_time(struct regulator_dev *rdev)
1333{
Laxman Dewangan00c877c2013-09-18 18:18:02 +05301334 if (rdev->constraints && rdev->constraints->enable_time)
1335 return rdev->constraints->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001336 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001337 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001338 return rdev->desc->ops->enable_time(rdev);
1339}
1340
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001341static struct regulator_supply_alias *regulator_find_supply_alias(
1342 struct device *dev, const char *supply)
1343{
1344 struct regulator_supply_alias *map;
1345
1346 list_for_each_entry(map, &regulator_supply_alias_list, list)
1347 if (map->src_dev == dev && strcmp(map->src_supply, supply) == 0)
1348 return map;
1349
1350 return NULL;
1351}
1352
1353static void regulator_supply_alias(struct device **dev, const char **supply)
1354{
1355 struct regulator_supply_alias *map;
1356
1357 map = regulator_find_supply_alias(*dev, *supply);
1358 if (map) {
1359 dev_dbg(*dev, "Mapping supply %s to %s,%s\n",
1360 *supply, map->alias_supply,
1361 dev_name(map->alias_dev));
1362 *dev = map->alias_dev;
1363 *supply = map->alias_supply;
1364 }
1365}
1366
Rajendra Nayak69511a42011-11-18 16:47:20 +05301367static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001368 const char *supply,
1369 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301370{
1371 struct regulator_dev *r;
1372 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001373 struct regulator_map *map;
1374 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301375
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001376 regulator_supply_alias(&dev, &supply);
1377
Rajendra Nayak69511a42011-11-18 16:47:20 +05301378 /* first do a dt based lookup */
1379 if (dev && dev->of_node) {
1380 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001381 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301382 list_for_each_entry(r, &regulator_list, list)
1383 if (r->dev.parent &&
1384 node == r->dev.of_node)
1385 return r;
Mark Brown317b5682014-01-27 17:34:07 +00001386 *ret = -EPROBE_DEFER;
1387 return NULL;
Mark Brown6d191a52012-03-29 14:19:02 +01001388 } else {
1389 /*
1390 * If we couldn't even get the node then it's
1391 * not just that the device didn't register
1392 * yet, there's no node and we'll never
1393 * succeed.
1394 */
1395 *ret = -ENODEV;
1396 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301397 }
1398
1399 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001400 if (dev)
1401 devname = dev_name(dev);
1402
Rajendra Nayak69511a42011-11-18 16:47:20 +05301403 list_for_each_entry(r, &regulator_list, list)
1404 if (strcmp(rdev_get_name(r), supply) == 0)
1405 return r;
1406
Mark Brown576ca4362012-03-30 12:24:37 +01001407 list_for_each_entry(map, &regulator_map_list, list) {
1408 /* If the mapping has a device set up it must match */
1409 if (map->dev_name &&
1410 (!devname || strcmp(map->dev_name, devname)))
1411 continue;
1412
1413 if (strcmp(map->supply, supply) == 0)
1414 return map->regulator;
1415 }
1416
1417
Rajendra Nayak69511a42011-11-18 16:47:20 +05301418 return NULL;
1419}
1420
Bjorn Andersson6261b062015-03-24 18:56:05 -07001421static int regulator_resolve_supply(struct regulator_dev *rdev)
1422{
1423 struct regulator_dev *r;
1424 struct device *dev = rdev->dev.parent;
1425 int ret;
1426
1427 /* No supply to resovle? */
1428 if (!rdev->supply_name)
1429 return 0;
1430
1431 /* Supply already resolved? */
1432 if (rdev->supply)
1433 return 0;
1434
1435 r = regulator_dev_lookup(dev, rdev->supply_name, &ret);
1436 if (ret == -ENODEV) {
1437 /*
1438 * No supply was specified for this regulator and
1439 * there will never be one.
1440 */
1441 return 0;
1442 }
1443
1444 if (!r) {
Mark Brown9f7e25e2015-07-14 11:17:26 +01001445 if (have_full_constraints()) {
1446 r = dummy_regulator_rdev;
1447 } else {
1448 dev_err(dev, "Failed to resolve %s-supply for %s\n",
1449 rdev->supply_name, rdev->desc->name);
1450 return -EPROBE_DEFER;
1451 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001452 }
1453
1454 /* Recursively resolve the supply of the supply */
1455 ret = regulator_resolve_supply(r);
1456 if (ret < 0)
1457 return ret;
1458
1459 ret = set_supply(rdev, r);
1460 if (ret < 0)
1461 return ret;
1462
1463 /* Cascade always-on state to supply */
1464 if (_regulator_is_enabled(rdev)) {
1465 ret = regulator_enable(rdev->supply);
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +02001466 if (ret < 0) {
1467 if (rdev->supply)
1468 _regulator_put(rdev->supply);
Bjorn Andersson6261b062015-03-24 18:56:05 -07001469 return ret;
Javier Martinez Canillas36a1f1b2015-07-15 16:10:29 +02001470 }
Bjorn Andersson6261b062015-03-24 18:56:05 -07001471 }
1472
1473 return 0;
1474}
1475
Mark Brown5ffbd132009-07-21 16:00:23 +01001476/* Internal regulator request function */
1477static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001478 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001479{
1480 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001481 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001482 const char *devname = NULL;
Mark Brown317b5682014-01-27 17:34:07 +00001483 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001484
1485 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001486 pr_err("get() with no identifier\n");
Mark Brown043c9982013-09-20 12:32:18 +01001487 return ERR_PTR(-EINVAL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001488 }
1489
Mark Brown40f92442009-06-17 17:56:39 +01001490 if (dev)
1491 devname = dev_name(dev);
1492
Mark Brown317b5682014-01-27 17:34:07 +00001493 if (have_full_constraints())
1494 ret = -ENODEV;
1495 else
1496 ret = -EPROBE_DEFER;
1497
Liam Girdwood414c70c2008-04-30 15:59:04 +01001498 mutex_lock(&regulator_list_mutex);
1499
Mark Brown6d191a52012-03-29 14:19:02 +01001500 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301501 if (rdev)
1502 goto found;
1503
Mark Brownef60abb2013-09-23 16:12:52 +01001504 regulator = ERR_PTR(ret);
1505
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001506 /*
1507 * If we have return value from dev_lookup fail, we do not expect to
1508 * succeed, so, quit with appropriate error value
1509 */
Jingoo Han0d25d092014-01-08 10:02:16 +09001510 if (ret && ret != -ENODEV)
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001511 goto out;
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001512
Mark Brown34abbd62010-02-12 10:18:08 +00001513 if (!devname)
1514 devname = "deviceless";
1515
Mark Brown4ddfebd2013-09-13 19:50:37 +01001516 /*
1517 * Assume that a regulator is physically present and enabled
1518 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001519 */
Mark Brown87b28412013-11-27 16:13:10 +00001520 if (have_full_constraints() && allow_dummy) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001521 pr_warn("%s supply %s not found, using dummy regulator\n",
1522 devname, id);
Mark Brown4ddfebd2013-09-13 19:50:37 +01001523
Mark Brown34abbd62010-02-12 10:18:08 +00001524 rdev = dummy_regulator_rdev;
1525 goto found;
Hans de Goede07817192013-12-17 16:24:57 +01001526 /* Don't log an error when called from regulator_get_optional() */
1527 } else if (!have_full_constraints() || exclusive) {
Shuah Khanacc3d5c2014-02-20 12:58:15 -07001528 dev_warn(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001529 }
Mark Brown34abbd62010-02-12 10:18:08 +00001530
Liam Girdwood414c70c2008-04-30 15:59:04 +01001531 mutex_unlock(&regulator_list_mutex);
1532 return regulator;
1533
1534found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001535 if (rdev->exclusive) {
1536 regulator = ERR_PTR(-EPERM);
1537 goto out;
1538 }
1539
1540 if (exclusive && rdev->open_count) {
1541 regulator = ERR_PTR(-EBUSY);
1542 goto out;
1543 }
1544
Bjorn Andersson6261b062015-03-24 18:56:05 -07001545 ret = regulator_resolve_supply(rdev);
1546 if (ret < 0) {
1547 regulator = ERR_PTR(ret);
1548 goto out;
1549 }
1550
Liam Girdwooda5766f12008-10-10 13:22:20 +01001551 if (!try_module_get(rdev->owner))
1552 goto out;
1553
Liam Girdwood414c70c2008-04-30 15:59:04 +01001554 regulator = create_regulator(rdev, dev, id);
1555 if (regulator == NULL) {
1556 regulator = ERR_PTR(-ENOMEM);
1557 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001558 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001559 }
1560
Mark Brown5ffbd132009-07-21 16:00:23 +01001561 rdev->open_count++;
1562 if (exclusive) {
1563 rdev->exclusive = 1;
1564
1565 ret = _regulator_is_enabled(rdev);
1566 if (ret > 0)
1567 rdev->use_count = 1;
1568 else
1569 rdev->use_count = 0;
1570 }
1571
Liam Girdwooda5766f12008-10-10 13:22:20 +01001572out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001573 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001574
Liam Girdwood414c70c2008-04-30 15:59:04 +01001575 return regulator;
1576}
Mark Brown5ffbd132009-07-21 16:00:23 +01001577
1578/**
1579 * regulator_get - lookup and obtain a reference to a regulator.
1580 * @dev: device for regulator "consumer"
1581 * @id: Supply name or regulator ID.
1582 *
1583 * Returns a struct regulator corresponding to the regulator producer,
1584 * or IS_ERR() condition containing errno.
1585 *
1586 * Use of supply names configured via regulator_set_device_supply() is
1587 * strongly encouraged. It is recommended that the supply name used
1588 * should match the name used for the supply and/or the relevant
1589 * device pins in the datasheet.
1590 */
1591struct regulator *regulator_get(struct device *dev, const char *id)
1592{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001593 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001594}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001595EXPORT_SYMBOL_GPL(regulator_get);
1596
Stephen Boyd070b9072012-01-16 19:39:58 -08001597/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001598 * regulator_get_exclusive - obtain exclusive access to a regulator.
1599 * @dev: device for regulator "consumer"
1600 * @id: Supply name or regulator ID.
1601 *
1602 * Returns a struct regulator corresponding to the regulator producer,
1603 * or IS_ERR() condition containing errno. Other consumers will be
Stephen Boyd69c3f722014-05-28 12:41:28 -07001604 * unable to obtain this regulator while this reference is held and the
1605 * use count for the regulator will be initialised to reflect the current
1606 * state of the regulator.
Mark Brown5ffbd132009-07-21 16:00:23 +01001607 *
1608 * This is intended for use by consumers which cannot tolerate shared
1609 * use of the regulator such as those which need to force the
1610 * regulator off for correct operation of the hardware they are
1611 * controlling.
1612 *
1613 * Use of supply names configured via regulator_set_device_supply() is
1614 * strongly encouraged. It is recommended that the supply name used
1615 * should match the name used for the supply and/or the relevant
1616 * device pins in the datasheet.
1617 */
1618struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1619{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001620 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001621}
1622EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1623
Mark Brownde1dd9f2013-07-29 21:42:42 +01001624/**
1625 * regulator_get_optional - obtain optional access 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,
Stephen Boyd69c3f722014-05-28 12:41:28 -07001630 * or IS_ERR() condition containing errno.
Mark Brownde1dd9f2013-07-29 21:42:42 +01001631 *
1632 * This is intended for use by consumers for devices which can have
1633 * some supplies unconnected in normal use, such as some MMC devices.
1634 * It can allow the regulator core to provide stub supplies for other
1635 * supplies requested using normal regulator_get() calls without
1636 * disrupting the operation of drivers that can handle absent
1637 * supplies.
1638 *
1639 * Use of supply names configured via regulator_set_device_supply() is
1640 * strongly encouraged. It is recommended that the supply name used
1641 * should match the name used for the supply and/or the relevant
1642 * device pins in the datasheet.
1643 */
1644struct regulator *regulator_get_optional(struct device *dev, const char *id)
1645{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001646 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001647}
1648EXPORT_SYMBOL_GPL(regulator_get_optional);
1649
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301650/* regulator_list_mutex lock held by regulator_put() */
Charles Keepax23ff2f02012-11-14 09:39:31 +00001651static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001652{
1653 struct regulator_dev *rdev;
1654
Viresh Kumar93576842015-08-17 12:30:58 +05301655 if (IS_ERR_OR_NULL(regulator))
Liam Girdwood414c70c2008-04-30 15:59:04 +01001656 return;
1657
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09001658 lockdep_assert_held_once(&regulator_list_mutex);
1659
Liam Girdwood414c70c2008-04-30 15:59:04 +01001660 rdev = regulator->rdev;
1661
Mark Brown5de70512011-06-19 13:33:16 +01001662 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001663
Liam Girdwood414c70c2008-04-30 15:59:04 +01001664 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001665 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001666 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301667 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001668 list_del(&regulator->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001669
Mark Brown5ffbd132009-07-21 16:00:23 +01001670 rdev->open_count--;
1671 rdev->exclusive = 0;
Ashay Jaiswal83b03022015-01-08 18:54:25 +05301672 mutex_unlock(&rdev->mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001673
Mark Brown17685142015-08-07 21:19:26 +01001674 kfree(regulator->supply_name);
1675 kfree(regulator);
1676
Liam Girdwood414c70c2008-04-30 15:59:04 +01001677 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001678}
1679
1680/**
1681 * regulator_put - "free" the regulator source
1682 * @regulator: regulator source
1683 *
1684 * Note: drivers must ensure that all regulator_enable calls made on this
1685 * regulator source are balanced by regulator_disable calls prior to calling
1686 * this function.
1687 */
1688void regulator_put(struct regulator *regulator)
1689{
1690 mutex_lock(&regulator_list_mutex);
1691 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001692 mutex_unlock(&regulator_list_mutex);
1693}
1694EXPORT_SYMBOL_GPL(regulator_put);
1695
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001696/**
1697 * regulator_register_supply_alias - Provide device alias for supply lookup
1698 *
1699 * @dev: device that will be given as the regulator "consumer"
1700 * @id: Supply name or regulator ID
1701 * @alias_dev: device that should be used to lookup the supply
1702 * @alias_id: Supply name or regulator ID that should be used to lookup the
1703 * supply
1704 *
1705 * All lookups for id on dev will instead be conducted for alias_id on
1706 * alias_dev.
1707 */
1708int regulator_register_supply_alias(struct device *dev, const char *id,
1709 struct device *alias_dev,
1710 const char *alias_id)
1711{
1712 struct regulator_supply_alias *map;
1713
1714 map = regulator_find_supply_alias(dev, id);
1715 if (map)
1716 return -EEXIST;
1717
1718 map = kzalloc(sizeof(struct regulator_supply_alias), GFP_KERNEL);
1719 if (!map)
1720 return -ENOMEM;
1721
1722 map->src_dev = dev;
1723 map->src_supply = id;
1724 map->alias_dev = alias_dev;
1725 map->alias_supply = alias_id;
1726
1727 list_add(&map->list, &regulator_supply_alias_list);
1728
1729 pr_info("Adding alias for supply %s,%s -> %s,%s\n",
1730 id, dev_name(dev), alias_id, dev_name(alias_dev));
1731
1732 return 0;
1733}
1734EXPORT_SYMBOL_GPL(regulator_register_supply_alias);
1735
1736/**
1737 * regulator_unregister_supply_alias - Remove device alias
1738 *
1739 * @dev: device that will be given as the regulator "consumer"
1740 * @id: Supply name or regulator ID
1741 *
1742 * Remove a lookup alias if one exists for id on dev.
1743 */
1744void regulator_unregister_supply_alias(struct device *dev, const char *id)
1745{
1746 struct regulator_supply_alias *map;
1747
1748 map = regulator_find_supply_alias(dev, id);
1749 if (map) {
1750 list_del(&map->list);
1751 kfree(map);
1752 }
1753}
1754EXPORT_SYMBOL_GPL(regulator_unregister_supply_alias);
1755
1756/**
1757 * regulator_bulk_register_supply_alias - register multiple aliases
1758 *
1759 * @dev: device that will be given as the regulator "consumer"
1760 * @id: List of supply names or regulator IDs
1761 * @alias_dev: device that should be used to lookup the supply
1762 * @alias_id: List of supply names or regulator IDs that should be used to
1763 * lookup the supply
1764 * @num_id: Number of aliases to register
1765 *
1766 * @return 0 on success, an errno on failure.
1767 *
1768 * This helper function allows drivers to register several supply
1769 * aliases in one operation. If any of the aliases cannot be
1770 * registered any aliases that were registered will be removed
1771 * before returning to the caller.
1772 */
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001773int regulator_bulk_register_supply_alias(struct device *dev,
1774 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001775 struct device *alias_dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001776 const char *const *alias_id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001777 int num_id)
1778{
1779 int i;
1780 int ret;
1781
1782 for (i = 0; i < num_id; ++i) {
1783 ret = regulator_register_supply_alias(dev, id[i], alias_dev,
1784 alias_id[i]);
1785 if (ret < 0)
1786 goto err;
1787 }
1788
1789 return 0;
1790
1791err:
1792 dev_err(dev,
1793 "Failed to create supply alias %s,%s -> %s,%s\n",
1794 id[i], dev_name(dev), alias_id[i], dev_name(alias_dev));
1795
1796 while (--i >= 0)
1797 regulator_unregister_supply_alias(dev, id[i]);
1798
1799 return ret;
1800}
1801EXPORT_SYMBOL_GPL(regulator_bulk_register_supply_alias);
1802
1803/**
1804 * regulator_bulk_unregister_supply_alias - unregister multiple aliases
1805 *
1806 * @dev: device that will be given as the regulator "consumer"
1807 * @id: List of supply names or regulator IDs
1808 * @num_id: Number of aliases to unregister
1809 *
1810 * This helper function allows drivers to unregister several supply
1811 * aliases in one operation.
1812 */
1813void regulator_bulk_unregister_supply_alias(struct device *dev,
Lee Jones9f8c0fe2014-05-23 16:44:10 +01001814 const char *const *id,
Charles Keepaxa06ccd92013-10-15 20:14:20 +01001815 int num_id)
1816{
1817 int i;
1818
1819 for (i = 0; i < num_id; ++i)
1820 regulator_unregister_supply_alias(dev, id[i]);
1821}
1822EXPORT_SYMBOL_GPL(regulator_bulk_unregister_supply_alias);
1823
1824
Kim, Milof19b00d2013-02-18 06:50:39 +00001825/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1826static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1827 const struct regulator_config *config)
1828{
1829 struct regulator_enable_gpio *pin;
Russell King778b28b2014-06-29 17:55:54 +01001830 struct gpio_desc *gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001831 int ret;
1832
Russell King778b28b2014-06-29 17:55:54 +01001833 gpiod = gpio_to_desc(config->ena_gpio);
1834
Kim, Milof19b00d2013-02-18 06:50:39 +00001835 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001836 if (pin->gpiod == gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001837 rdev_dbg(rdev, "GPIO %d is already used\n",
1838 config->ena_gpio);
1839 goto update_ena_gpio_to_rdev;
1840 }
1841 }
1842
1843 ret = gpio_request_one(config->ena_gpio,
1844 GPIOF_DIR_OUT | config->ena_gpio_flags,
1845 rdev_get_name(rdev));
1846 if (ret)
1847 return ret;
1848
1849 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1850 if (pin == NULL) {
1851 gpio_free(config->ena_gpio);
1852 return -ENOMEM;
1853 }
1854
Russell King778b28b2014-06-29 17:55:54 +01001855 pin->gpiod = gpiod;
Kim, Milof19b00d2013-02-18 06:50:39 +00001856 pin->ena_gpio_invert = config->ena_gpio_invert;
1857 list_add(&pin->list, &regulator_ena_gpio_list);
1858
1859update_ena_gpio_to_rdev:
1860 pin->request_count++;
1861 rdev->ena_pin = pin;
1862 return 0;
1863}
1864
1865static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1866{
1867 struct regulator_enable_gpio *pin, *n;
1868
1869 if (!rdev->ena_pin)
1870 return;
1871
1872 /* Free the GPIO only in case of no use */
1873 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
Russell King778b28b2014-06-29 17:55:54 +01001874 if (pin->gpiod == rdev->ena_pin->gpiod) {
Kim, Milof19b00d2013-02-18 06:50:39 +00001875 if (pin->request_count <= 1) {
1876 pin->request_count = 0;
Russell King778b28b2014-06-29 17:55:54 +01001877 gpiod_put(pin->gpiod);
Kim, Milof19b00d2013-02-18 06:50:39 +00001878 list_del(&pin->list);
1879 kfree(pin);
Seung-Woo Kim60a23622014-12-04 19:17:17 +09001880 rdev->ena_pin = NULL;
1881 return;
Kim, Milof19b00d2013-02-18 06:50:39 +00001882 } else {
1883 pin->request_count--;
1884 }
1885 }
1886 }
1887}
1888
Kim, Milo967cfb12013-02-18 06:50:48 +00001889/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001890 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1891 * @rdev: regulator_dev structure
1892 * @enable: enable GPIO at initial use?
1893 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001894 * GPIO is enabled in case of initial use. (enable_count is 0)
1895 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1896 */
1897static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1898{
1899 struct regulator_enable_gpio *pin = rdev->ena_pin;
1900
1901 if (!pin)
1902 return -EINVAL;
1903
1904 if (enable) {
1905 /* Enable GPIO at initial use */
1906 if (pin->enable_count == 0)
Russell King778b28b2014-06-29 17:55:54 +01001907 gpiod_set_value_cansleep(pin->gpiod,
1908 !pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001909
1910 pin->enable_count++;
1911 } else {
1912 if (pin->enable_count > 1) {
1913 pin->enable_count--;
1914 return 0;
1915 }
1916
1917 /* Disable GPIO if not used */
1918 if (pin->enable_count <= 1) {
Russell King778b28b2014-06-29 17:55:54 +01001919 gpiod_set_value_cansleep(pin->gpiod,
1920 pin->ena_gpio_invert);
Kim, Milo967cfb12013-02-18 06:50:48 +00001921 pin->enable_count = 0;
1922 }
1923 }
1924
1925 return 0;
1926}
1927
Guodong Xu79fd1142014-08-13 19:33:39 +08001928/**
1929 * _regulator_enable_delay - a delay helper function
1930 * @delay: time to delay in microseconds
1931 *
1932 * Delay for the requested amount of time as per the guidelines in:
1933 *
1934 * Documentation/timers/timers-howto.txt
1935 *
1936 * The assumption here is that regulators will never be enabled in
1937 * atomic context and therefore sleeping functions can be used.
1938 */
1939static void _regulator_enable_delay(unsigned int delay)
1940{
1941 unsigned int ms = delay / 1000;
1942 unsigned int us = delay % 1000;
1943
1944 if (ms > 0) {
1945 /*
1946 * For small enough values, handle super-millisecond
1947 * delays in the usleep_range() call below.
1948 */
1949 if (ms < 20)
1950 us += ms * 1000;
1951 else
1952 msleep(ms);
1953 }
1954
1955 /*
1956 * Give the scheduler some room to coalesce with any other
1957 * wakeup sources. For delays shorter than 10 us, don't even
1958 * bother setting up high-resolution timers and just busy-
1959 * loop.
1960 */
1961 if (us >= 10)
1962 usleep_range(us, us + 100);
1963 else
1964 udelay(us);
1965}
1966
Mark Brown5c5659d2012-06-27 13:21:26 +01001967static int _regulator_do_enable(struct regulator_dev *rdev)
1968{
1969 int ret, delay;
1970
1971 /* Query before enabling in case configuration dependent. */
1972 ret = _regulator_get_enable_time(rdev);
1973 if (ret >= 0) {
1974 delay = ret;
1975 } else {
1976 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1977 delay = 0;
1978 }
1979
1980 trace_regulator_enable(rdev_get_name(rdev));
1981
Guodong Xu871f5652014-08-13 19:33:40 +08001982 if (rdev->desc->off_on_delay) {
1983 /* if needed, keep a distance of off_on_delay from last time
1984 * this regulator was disabled.
1985 */
1986 unsigned long start_jiffy = jiffies;
1987 unsigned long intended, max_delay, remaining;
1988
1989 max_delay = usecs_to_jiffies(rdev->desc->off_on_delay);
1990 intended = rdev->last_off_jiffy + max_delay;
1991
1992 if (time_before(start_jiffy, intended)) {
1993 /* calc remaining jiffies to deal with one-time
1994 * timer wrapping.
1995 * in case of multiple timer wrapping, either it can be
1996 * detected by out-of-range remaining, or it cannot be
1997 * detected and we gets a panelty of
1998 * _regulator_enable_delay().
1999 */
2000 remaining = intended - start_jiffy;
2001 if (remaining <= max_delay)
2002 _regulator_enable_delay(
2003 jiffies_to_usecs(remaining));
2004 }
2005 }
2006
Kim, Milo967cfb12013-02-18 06:50:48 +00002007 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002008 if (!rdev->ena_gpio_state) {
2009 ret = regulator_ena_gpio_ctrl(rdev, true);
2010 if (ret < 0)
2011 return ret;
2012 rdev->ena_gpio_state = 1;
2013 }
Mark Brown65f73502012-06-27 14:14:38 +01002014 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01002015 ret = rdev->desc->ops->enable(rdev);
2016 if (ret < 0)
2017 return ret;
2018 } else {
2019 return -EINVAL;
2020 }
2021
2022 /* Allow the regulator to ramp; it would be useful to extend
2023 * this for bulk operations so that the regulators can ramp
2024 * together. */
2025 trace_regulator_enable_delay(rdev_get_name(rdev));
2026
Guodong Xu79fd1142014-08-13 19:33:39 +08002027 _regulator_enable_delay(delay);
Mark Brown5c5659d2012-06-27 13:21:26 +01002028
2029 trace_regulator_enable_complete(rdev_get_name(rdev));
2030
2031 return 0;
2032}
2033
Liam Girdwood414c70c2008-04-30 15:59:04 +01002034/* locks held by regulator_enable() */
2035static int _regulator_enable(struct regulator_dev *rdev)
2036{
Mark Brown5c5659d2012-06-27 13:21:26 +01002037 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002038
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002039 lockdep_assert_held_once(&rdev->mutex);
2040
Liam Girdwood414c70c2008-04-30 15:59:04 +01002041 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01002042 if (rdev->constraints &&
2043 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
2044 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002045
Mark Brown9a2372f2009-08-03 18:49:57 +01002046 if (rdev->use_count == 0) {
2047 /* The regulator may on if it's not switchable or left on */
2048 ret = _regulator_is_enabled(rdev);
2049 if (ret == -EINVAL || ret == 0) {
2050 if (!_regulator_can_change_status(rdev))
2051 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002052
Mark Brown5c5659d2012-06-27 13:21:26 +01002053 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00002054 if (ret < 0)
2055 return ret;
2056
Linus Walleija7433cf2009-08-26 12:54:04 +02002057 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002058 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002059 return ret;
2060 }
Linus Walleija7433cf2009-08-26 12:54:04 +02002061 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002062 }
2063
Mark Brown9a2372f2009-08-03 18:49:57 +01002064 rdev->use_count++;
2065
2066 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002067}
2068
2069/**
2070 * regulator_enable - enable regulator output
2071 * @regulator: regulator source
2072 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002073 * Request that the regulator be enabled with the regulator output at
2074 * the predefined voltage or current value. Calls to regulator_enable()
2075 * must be balanced with calls to regulator_disable().
2076 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002077 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00002078 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002079 */
2080int regulator_enable(struct regulator *regulator)
2081{
David Brownell412aec62008-11-16 11:44:46 -08002082 struct regulator_dev *rdev = regulator->rdev;
2083 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002084
Mark Brown6492bc12012-04-19 13:19:07 +01002085 if (regulator->always_on)
2086 return 0;
2087
Mark Brown3801b862011-06-09 16:22:22 +01002088 if (rdev->supply) {
2089 ret = regulator_enable(rdev->supply);
2090 if (ret != 0)
2091 return ret;
2092 }
2093
David Brownell412aec62008-11-16 11:44:46 -08002094 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08002095 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002096 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002097
Heiko Stübnerd1685e42011-10-14 18:00:29 +02002098 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01002099 regulator_disable(rdev->supply);
2100
Liam Girdwood414c70c2008-04-30 15:59:04 +01002101 return ret;
2102}
2103EXPORT_SYMBOL_GPL(regulator_enable);
2104
Mark Brown5c5659d2012-06-27 13:21:26 +01002105static int _regulator_do_disable(struct regulator_dev *rdev)
2106{
2107 int ret;
2108
2109 trace_regulator_disable(rdev_get_name(rdev));
2110
Kim, Milo967cfb12013-02-18 06:50:48 +00002111 if (rdev->ena_pin) {
Doug Anderson29d62ec2015-03-03 15:20:47 -08002112 if (rdev->ena_gpio_state) {
2113 ret = regulator_ena_gpio_ctrl(rdev, false);
2114 if (ret < 0)
2115 return ret;
2116 rdev->ena_gpio_state = 0;
2117 }
Mark Brown5c5659d2012-06-27 13:21:26 +01002118
2119 } else if (rdev->desc->ops->disable) {
2120 ret = rdev->desc->ops->disable(rdev);
2121 if (ret != 0)
2122 return ret;
2123 }
2124
Guodong Xu871f5652014-08-13 19:33:40 +08002125 /* cares about last_off_jiffy only if off_on_delay is required by
2126 * device.
2127 */
2128 if (rdev->desc->off_on_delay)
2129 rdev->last_off_jiffy = jiffies;
2130
Mark Brown5c5659d2012-06-27 13:21:26 +01002131 trace_regulator_disable_complete(rdev_get_name(rdev));
2132
Mark Brown5c5659d2012-06-27 13:21:26 +01002133 return 0;
2134}
2135
Liam Girdwood414c70c2008-04-30 15:59:04 +01002136/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002137static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002138{
2139 int ret = 0;
2140
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002141 lockdep_assert_held_once(&rdev->mutex);
2142
David Brownellcd94b502009-03-11 16:43:34 -08002143 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08002144 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08002145 return -EIO;
2146
Liam Girdwood414c70c2008-04-30 15:59:04 +01002147 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01002148 if (rdev->use_count == 1 &&
2149 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002150
2151 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01002152 if (_regulator_can_change_status(rdev)) {
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002153 ret = _notifier_call_chain(rdev,
2154 REGULATOR_EVENT_PRE_DISABLE,
2155 NULL);
2156 if (ret & NOTIFY_STOP_MASK)
2157 return -EINVAL;
2158
Mark Brown5c5659d2012-06-27 13:21:26 +01002159 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002160 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002161 rdev_err(rdev, "failed to disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002162 _notifier_call_chain(rdev,
2163 REGULATOR_EVENT_ABORT_DISABLE,
2164 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002165 return ret;
2166 }
Markus Pargmann66fda752014-02-20 17:36:04 +01002167 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
2168 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002169 }
2170
Liam Girdwood414c70c2008-04-30 15:59:04 +01002171 rdev->use_count = 0;
2172 } else if (rdev->use_count > 1) {
2173
2174 if (rdev->constraints &&
2175 (rdev->constraints->valid_ops_mask &
2176 REGULATOR_CHANGE_DRMS))
2177 drms_uA_update(rdev);
2178
2179 rdev->use_count--;
2180 }
Mark Brown3801b862011-06-09 16:22:22 +01002181
Liam Girdwood414c70c2008-04-30 15:59:04 +01002182 return ret;
2183}
2184
2185/**
2186 * regulator_disable - disable regulator output
2187 * @regulator: regulator source
2188 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00002189 * Disable the regulator output voltage or current. Calls to
2190 * regulator_enable() must be balanced with calls to
2191 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00002192 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01002193 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00002194 * devices have it enabled, the regulator device supports disabling and
2195 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002196 */
2197int regulator_disable(struct regulator *regulator)
2198{
David Brownell412aec62008-11-16 11:44:46 -08002199 struct regulator_dev *rdev = regulator->rdev;
2200 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002201
Mark Brown6492bc12012-04-19 13:19:07 +01002202 if (regulator->always_on)
2203 return 0;
2204
David Brownell412aec62008-11-16 11:44:46 -08002205 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01002206 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08002207 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002208
Mark Brown3801b862011-06-09 16:22:22 +01002209 if (ret == 0 && rdev->supply)
2210 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002211
Liam Girdwood414c70c2008-04-30 15:59:04 +01002212 return ret;
2213}
2214EXPORT_SYMBOL_GPL(regulator_disable);
2215
2216/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01002217static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002218{
2219 int ret = 0;
2220
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09002221 lockdep_assert_held_once(&rdev->mutex);
2222
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002223 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2224 REGULATOR_EVENT_PRE_DISABLE, NULL);
2225 if (ret & NOTIFY_STOP_MASK)
2226 return -EINVAL;
2227
Markus Pargmann66fda752014-02-20 17:36:04 +01002228 ret = _regulator_do_disable(rdev);
2229 if (ret < 0) {
2230 rdev_err(rdev, "failed to force disable\n");
Richard Fitzgeralda1c8a552014-11-24 14:10:52 +00002231 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2232 REGULATOR_EVENT_ABORT_DISABLE, NULL);
Markus Pargmann66fda752014-02-20 17:36:04 +01002233 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002234 }
2235
Markus Pargmann66fda752014-02-20 17:36:04 +01002236 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
2237 REGULATOR_EVENT_DISABLE, NULL);
2238
2239 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002240}
2241
2242/**
2243 * regulator_force_disable - force disable regulator output
2244 * @regulator: regulator source
2245 *
2246 * Forcibly disable the regulator output voltage or current.
2247 * NOTE: this *will* disable the regulator output even if other consumer
2248 * devices have it enabled. This should be used for situations when device
2249 * damage will likely occur if the regulator is not disabled (e.g. over temp).
2250 */
2251int regulator_force_disable(struct regulator *regulator)
2252{
Mark Brown82d15832011-05-09 11:41:02 +02002253 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002254 int ret;
2255
Mark Brown82d15832011-05-09 11:41:02 +02002256 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002257 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01002258 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02002259 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002260
Mark Brown3801b862011-06-09 16:22:22 +01002261 if (rdev->supply)
2262 while (rdev->open_count--)
2263 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05002264
Liam Girdwood414c70c2008-04-30 15:59:04 +01002265 return ret;
2266}
2267EXPORT_SYMBOL_GPL(regulator_force_disable);
2268
Mark Brownda07ecd2011-09-11 09:53:50 +01002269static void regulator_disable_work(struct work_struct *work)
2270{
2271 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
2272 disable_work.work);
2273 int count, i, ret;
2274
2275 mutex_lock(&rdev->mutex);
2276
2277 BUG_ON(!rdev->deferred_disables);
2278
2279 count = rdev->deferred_disables;
2280 rdev->deferred_disables = 0;
2281
2282 for (i = 0; i < count; i++) {
2283 ret = _regulator_disable(rdev);
2284 if (ret != 0)
2285 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
2286 }
2287
2288 mutex_unlock(&rdev->mutex);
2289
2290 if (rdev->supply) {
2291 for (i = 0; i < count; i++) {
2292 ret = regulator_disable(rdev->supply);
2293 if (ret != 0) {
2294 rdev_err(rdev,
2295 "Supply disable failed: %d\n", ret);
2296 }
2297 }
2298 }
2299}
2300
2301/**
2302 * regulator_disable_deferred - disable regulator output with delay
2303 * @regulator: regulator source
2304 * @ms: miliseconds until the regulator is disabled
2305 *
2306 * Execute regulator_disable() on the regulator after a delay. This
2307 * is intended for use with devices that require some time to quiesce.
2308 *
2309 * NOTE: this will only disable the regulator output if no other consumer
2310 * devices have it enabled, the regulator device supports disabling and
2311 * machine constraints permit this operation.
2312 */
2313int regulator_disable_deferred(struct regulator *regulator, int ms)
2314{
2315 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01002316 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01002317
Mark Brown6492bc12012-04-19 13:19:07 +01002318 if (regulator->always_on)
2319 return 0;
2320
Mark Brown2b5a24a2012-09-07 11:00:53 +08002321 if (!ms)
2322 return regulator_disable(regulator);
2323
Mark Brownda07ecd2011-09-11 09:53:50 +01002324 mutex_lock(&rdev->mutex);
2325 rdev->deferred_disables++;
2326 mutex_unlock(&rdev->mutex);
2327
Mark Brown070260f2013-07-18 11:52:04 +01002328 ret = queue_delayed_work(system_power_efficient_wq,
2329 &rdev->disable_work,
2330 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01002331 if (ret < 0)
2332 return ret;
2333 else
2334 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01002335}
2336EXPORT_SYMBOL_GPL(regulator_disable_deferred);
2337
Liam Girdwood414c70c2008-04-30 15:59:04 +01002338static int _regulator_is_enabled(struct regulator_dev *rdev)
2339{
Mark Brown65f73502012-06-27 14:14:38 +01002340 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002341 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002342 return rdev->ena_gpio_state;
2343
Mark Brown9a7f6a42010-02-11 17:22:45 +00002344 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002345 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002346 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002347
Mark Brown93325462009-08-03 18:49:56 +01002348 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002349}
2350
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002351static int _regulator_list_voltage(struct regulator *regulator,
2352 unsigned selector, int lock)
2353{
2354 struct regulator_dev *rdev = regulator->rdev;
2355 const struct regulator_ops *ops = rdev->desc->ops;
2356 int ret;
2357
2358 if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector)
2359 return rdev->desc->fixed_uV;
2360
2361 if (ops->list_voltage) {
2362 if (selector >= rdev->desc->n_voltages)
2363 return -EINVAL;
2364 if (lock)
2365 mutex_lock(&rdev->mutex);
2366 ret = ops->list_voltage(rdev, selector);
2367 if (lock)
2368 mutex_unlock(&rdev->mutex);
2369 } else if (rdev->supply) {
2370 ret = _regulator_list_voltage(rdev->supply, selector, lock);
2371 } else {
2372 return -EINVAL;
2373 }
2374
2375 if (ret > 0) {
2376 if (ret < rdev->constraints->min_uV)
2377 ret = 0;
2378 else if (ret > rdev->constraints->max_uV)
2379 ret = 0;
2380 }
2381
2382 return ret;
2383}
2384
Liam Girdwood414c70c2008-04-30 15:59:04 +01002385/**
2386 * regulator_is_enabled - is the regulator output enabled
2387 * @regulator: regulator source
2388 *
David Brownell412aec62008-11-16 11:44:46 -08002389 * Returns positive if the regulator driver backing the source/client
2390 * has requested that the device be enabled, zero if it hasn't, else a
2391 * negative errno code.
2392 *
2393 * Note that the device backing this regulator handle can have multiple
2394 * users, so it might be enabled even if regulator_enable() was never
2395 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002396 */
2397int regulator_is_enabled(struct regulator *regulator)
2398{
Mark Brown93325462009-08-03 18:49:56 +01002399 int ret;
2400
Mark Brown6492bc12012-04-19 13:19:07 +01002401 if (regulator->always_on)
2402 return 1;
2403
Mark Brown93325462009-08-03 18:49:56 +01002404 mutex_lock(&regulator->rdev->mutex);
2405 ret = _regulator_is_enabled(regulator->rdev);
2406 mutex_unlock(&regulator->rdev->mutex);
2407
2408 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002409}
2410EXPORT_SYMBOL_GPL(regulator_is_enabled);
2411
2412/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002413 * regulator_can_change_voltage - check if regulator can change voltage
2414 * @regulator: regulator source
2415 *
2416 * Returns positive if the regulator driver backing the source/client
Masanari Iidae2278672014-02-18 22:54:36 +09002417 * can change its voltage, false otherwise. Useful for detecting fixed
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002418 * or dummy regulators and disabling voltage change logic in the client
2419 * driver.
2420 */
2421int regulator_can_change_voltage(struct regulator *regulator)
2422{
2423 struct regulator_dev *rdev = regulator->rdev;
2424
2425 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002426 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2427 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2428 return 1;
2429
2430 if (rdev->desc->continuous_voltage_range &&
2431 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2432 rdev->constraints->min_uV != rdev->constraints->max_uV)
2433 return 1;
2434 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002435
2436 return 0;
2437}
2438EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2439
2440/**
David Brownell4367cfd2009-02-26 11:48:36 -08002441 * regulator_count_voltages - count regulator_list_voltage() selectors
2442 * @regulator: regulator source
2443 *
2444 * Returns number of selectors, or negative errno. Selectors are
2445 * numbered starting at zero, and typically correspond to bitfields
2446 * in hardware registers.
2447 */
2448int regulator_count_voltages(struct regulator *regulator)
2449{
2450 struct regulator_dev *rdev = regulator->rdev;
2451
Javier Martinez Canillas26988ef2014-07-29 18:28:56 +02002452 if (rdev->desc->n_voltages)
2453 return rdev->desc->n_voltages;
2454
2455 if (!rdev->supply)
2456 return -EINVAL;
2457
2458 return regulator_count_voltages(rdev->supply);
David Brownell4367cfd2009-02-26 11:48:36 -08002459}
2460EXPORT_SYMBOL_GPL(regulator_count_voltages);
2461
2462/**
2463 * regulator_list_voltage - enumerate supported voltages
2464 * @regulator: regulator source
2465 * @selector: identify voltage to list
2466 * Context: can sleep
2467 *
2468 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002469 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002470 * negative errno.
2471 */
2472int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2473{
Sascha Hauer3a40cfc2015-09-30 16:05:43 +02002474 return _regulator_list_voltage(regulator, selector, 1);
David Brownell4367cfd2009-02-26 11:48:36 -08002475}
2476EXPORT_SYMBOL_GPL(regulator_list_voltage);
2477
2478/**
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002479 * regulator_get_regmap - get the regulator's register map
2480 * @regulator: regulator source
2481 *
2482 * Returns the register map for the given regulator, or an ERR_PTR value
2483 * if the regulator doesn't use regmap.
2484 */
2485struct regmap *regulator_get_regmap(struct regulator *regulator)
2486{
2487 struct regmap *map = regulator->rdev->regmap;
2488
2489 return map ? map : ERR_PTR(-EOPNOTSUPP);
2490}
2491
2492/**
2493 * regulator_get_hardware_vsel_register - get the HW voltage selector register
2494 * @regulator: regulator source
2495 * @vsel_reg: voltage selector register, output parameter
2496 * @vsel_mask: mask for voltage selector bitfield, output parameter
2497 *
2498 * Returns the hardware register offset and bitmask used for setting the
2499 * regulator voltage. This might be useful when configuring voltage-scaling
2500 * hardware or firmware that can make I2C requests behind the kernel's back,
2501 * for example.
2502 *
2503 * On success, the output parameters @vsel_reg and @vsel_mask are filled in
2504 * and 0 is returned, otherwise a negative errno is returned.
2505 */
2506int regulator_get_hardware_vsel_register(struct regulator *regulator,
2507 unsigned *vsel_reg,
2508 unsigned *vsel_mask)
2509{
Guodong Xu39f54602014-08-19 18:07:41 +08002510 struct regulator_dev *rdev = regulator->rdev;
2511 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002512
2513 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2514 return -EOPNOTSUPP;
2515
2516 *vsel_reg = rdev->desc->vsel_reg;
2517 *vsel_mask = rdev->desc->vsel_mask;
2518
2519 return 0;
2520}
2521EXPORT_SYMBOL_GPL(regulator_get_hardware_vsel_register);
2522
2523/**
2524 * regulator_list_hardware_vsel - get the HW-specific register value for a selector
2525 * @regulator: regulator source
2526 * @selector: identify voltage to list
2527 *
2528 * Converts the selector to a hardware-specific voltage selector that can be
2529 * directly written to the regulator registers. The address of the voltage
2530 * register can be determined by calling @regulator_get_hardware_vsel_register.
2531 *
2532 * On error a negative errno is returned.
2533 */
2534int regulator_list_hardware_vsel(struct regulator *regulator,
2535 unsigned selector)
2536{
Guodong Xu39f54602014-08-19 18:07:41 +08002537 struct regulator_dev *rdev = regulator->rdev;
2538 const struct regulator_ops *ops = rdev->desc->ops;
Tuomas Tynkkynen04eca282014-07-21 18:38:48 +03002539
2540 if (selector >= rdev->desc->n_voltages)
2541 return -EINVAL;
2542 if (ops->set_voltage_sel != regulator_set_voltage_sel_regmap)
2543 return -EOPNOTSUPP;
2544
2545 return selector;
2546}
2547EXPORT_SYMBOL_GPL(regulator_list_hardware_vsel);
2548
2549/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002550 * regulator_get_linear_step - return the voltage step size between VSEL values
2551 * @regulator: regulator source
2552 *
2553 * Returns the voltage step size between VSEL values for linear
2554 * regulators, or return 0 if the regulator isn't a linear regulator.
2555 */
2556unsigned int regulator_get_linear_step(struct regulator *regulator)
2557{
2558 struct regulator_dev *rdev = regulator->rdev;
2559
2560 return rdev->desc->uV_step;
2561}
2562EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2563
2564/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002565 * regulator_is_supported_voltage - check if a voltage range can be supported
2566 *
2567 * @regulator: Regulator to check.
2568 * @min_uV: Minimum required voltage in uV.
2569 * @max_uV: Maximum required voltage in uV.
2570 *
2571 * Returns a boolean or a negative error code.
2572 */
2573int regulator_is_supported_voltage(struct regulator *regulator,
2574 int min_uV, int max_uV)
2575{
Mark Brownc5f39392012-07-02 15:00:18 +01002576 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002577 int i, voltages, ret;
2578
Mark Brownc5f39392012-07-02 15:00:18 +01002579 /* If we can't change voltage check the current voltage */
2580 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2581 ret = regulator_get_voltage(regulator);
2582 if (ret >= 0)
Jingoo Han0d25d092014-01-08 10:02:16 +09002583 return min_uV <= ret && ret <= max_uV;
Mark Brownc5f39392012-07-02 15:00:18 +01002584 else
2585 return ret;
2586 }
2587
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002588 /* Any voltage within constrains range is fine? */
2589 if (rdev->desc->continuous_voltage_range)
2590 return min_uV >= rdev->constraints->min_uV &&
2591 max_uV <= rdev->constraints->max_uV;
2592
Mark Browna7a1ad92009-07-21 16:00:24 +01002593 ret = regulator_count_voltages(regulator);
2594 if (ret < 0)
2595 return ret;
2596 voltages = ret;
2597
2598 for (i = 0; i < voltages; i++) {
2599 ret = regulator_list_voltage(regulator, i);
2600
2601 if (ret >= min_uV && ret <= max_uV)
2602 return 1;
2603 }
2604
2605 return 0;
2606}
Mark Browna398eaa2011-12-28 12:48:45 +00002607EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002608
Heiko Stübner71795692014-08-28 12:36:04 -07002609static int _regulator_call_set_voltage(struct regulator_dev *rdev,
2610 int min_uV, int max_uV,
2611 unsigned *selector)
2612{
2613 struct pre_voltage_change_data data;
2614 int ret;
2615
2616 data.old_uV = _regulator_get_voltage(rdev);
2617 data.min_uV = min_uV;
2618 data.max_uV = max_uV;
2619 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2620 &data);
2621 if (ret & NOTIFY_STOP_MASK)
2622 return -EINVAL;
2623
2624 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, selector);
2625 if (ret >= 0)
2626 return ret;
2627
2628 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2629 (void *)data.old_uV);
2630
2631 return ret;
2632}
2633
2634static int _regulator_call_set_voltage_sel(struct regulator_dev *rdev,
2635 int uV, unsigned selector)
2636{
2637 struct pre_voltage_change_data data;
2638 int ret;
2639
2640 data.old_uV = _regulator_get_voltage(rdev);
2641 data.min_uV = uV;
2642 data.max_uV = uV;
2643 ret = _notifier_call_chain(rdev, REGULATOR_EVENT_PRE_VOLTAGE_CHANGE,
2644 &data);
2645 if (ret & NOTIFY_STOP_MASK)
2646 return -EINVAL;
2647
2648 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
2649 if (ret >= 0)
2650 return ret;
2651
2652 _notifier_call_chain(rdev, REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE,
2653 (void *)data.old_uV);
2654
2655 return ret;
2656}
2657
Mark Brown75790252010-12-12 14:25:50 +00002658static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2659 int min_uV, int max_uV)
2660{
2661 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002662 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002663 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002664 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002665 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002666
2667 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2668
Mark Brownbf5892a2011-05-08 22:13:37 +01002669 min_uV += rdev->constraints->uV_offset;
2670 max_uV += rdev->constraints->uV_offset;
2671
Axel Lineba41a52012-04-04 10:32:10 +08002672 /*
2673 * If we can't obtain the old selector there is not enough
2674 * info to call set_voltage_time_sel().
2675 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002676 if (_regulator_is_enabled(rdev) &&
2677 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002678 rdev->desc->ops->get_voltage_sel) {
2679 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2680 if (old_selector < 0)
2681 return old_selector;
2682 }
2683
Mark Brown75790252010-12-12 14:25:50 +00002684 if (rdev->desc->ops->set_voltage) {
Heiko Stübner71795692014-08-28 12:36:04 -07002685 ret = _regulator_call_set_voltage(rdev, min_uV, max_uV,
2686 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002687
2688 if (ret >= 0) {
2689 if (rdev->desc->ops->list_voltage)
2690 best_val = rdev->desc->ops->list_voltage(rdev,
2691 selector);
2692 else
2693 best_val = _regulator_get_voltage(rdev);
2694 }
2695
Mark Browne8eef822010-12-12 14:36:17 +00002696 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002697 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002698 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2699 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002700 } else {
2701 if (rdev->desc->ops->list_voltage ==
2702 regulator_list_voltage_linear)
2703 ret = regulator_map_voltage_linear(rdev,
2704 min_uV, max_uV);
Axel Lin36698622014-05-24 11:10:43 +08002705 else if (rdev->desc->ops->list_voltage ==
2706 regulator_list_voltage_linear_range)
2707 ret = regulator_map_voltage_linear_range(rdev,
2708 min_uV, max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002709 else
2710 ret = regulator_map_voltage_iterate(rdev,
2711 min_uV, max_uV);
2712 }
Mark Browne8eef822010-12-12 14:36:17 +00002713
Mark Browne843fc42012-05-09 21:16:06 +01002714 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002715 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2716 if (min_uV <= best_val && max_uV >= best_val) {
2717 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002718 if (old_selector == selector)
2719 ret = 0;
2720 else
Heiko Stübner71795692014-08-28 12:36:04 -07002721 ret = _regulator_call_set_voltage_sel(
2722 rdev, best_val, selector);
Mark Browne113d792012-06-26 10:57:51 +01002723 } else {
2724 ret = -EINVAL;
2725 }
Mark Browne8eef822010-12-12 14:36:17 +00002726 }
Mark Brown75790252010-12-12 14:25:50 +00002727 } else {
2728 ret = -EINVAL;
2729 }
2730
Axel Lineba41a52012-04-04 10:32:10 +08002731 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302732 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2733 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002734
2735 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2736 old_selector, selector);
2737 if (delay < 0) {
2738 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2739 delay);
2740 delay = 0;
2741 }
Axel Lineba41a52012-04-04 10:32:10 +08002742
Philip Rakity8b96de32012-06-14 15:07:56 -07002743 /* Insert any necessary delays */
2744 if (delay >= 1000) {
2745 mdelay(delay / 1000);
2746 udelay(delay % 1000);
2747 } else if (delay) {
2748 udelay(delay);
2749 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002750 }
2751
Axel Lin2f6c7972012-08-06 23:44:19 +08002752 if (ret == 0 && best_val >= 0) {
2753 unsigned long data = best_val;
2754
Mark Brownded06a52010-12-16 13:59:10 +00002755 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002756 (void *)data);
2757 }
Mark Brownded06a52010-12-16 13:59:10 +00002758
Axel Lineba41a52012-04-04 10:32:10 +08002759 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002760
2761 return ret;
2762}
2763
Mark Browna7a1ad92009-07-21 16:00:24 +01002764/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002765 * regulator_set_voltage - set regulator output voltage
2766 * @regulator: regulator source
2767 * @min_uV: Minimum required voltage in uV
2768 * @max_uV: Maximum acceptable voltage in uV
2769 *
2770 * Sets a voltage regulator to the desired output voltage. This can be set
2771 * during any regulator state. IOW, regulator can be disabled or enabled.
2772 *
2773 * If the regulator is enabled then the voltage will change to the new value
2774 * immediately otherwise if the regulator is disabled the regulator will
2775 * output at the new voltage when enabled.
2776 *
2777 * NOTE: If the regulator is shared between several devices then the lowest
2778 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002779 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002780 * calling this function otherwise this call will fail.
2781 */
2782int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2783{
2784 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002785 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002786 int old_min_uV, old_max_uV;
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002787 int current_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002788
2789 mutex_lock(&rdev->mutex);
2790
Mark Brown95a3c232010-12-16 15:49:37 +00002791 /* If we're setting the same range as last time the change
2792 * should be a noop (some cpufreq implementations use the same
2793 * voltage for multiple frequencies, for example).
2794 */
2795 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2796 goto out;
2797
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002798 /* If we're trying to set a range that overlaps the current voltage,
Viresh Kumard3fb9802015-08-13 18:09:49 +05302799 * return successfully even though the regulator does not support
Bjorn Anderssonc00dc352014-02-05 12:30:26 -08002800 * changing the voltage.
2801 */
2802 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2803 current_uV = _regulator_get_voltage(rdev);
2804 if (min_uV <= current_uV && current_uV <= max_uV) {
2805 regulator->min_uV = min_uV;
2806 regulator->max_uV = max_uV;
2807 goto out;
2808 }
2809 }
2810
Liam Girdwood414c70c2008-04-30 15:59:04 +01002811 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002812 if (!rdev->desc->ops->set_voltage &&
2813 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002814 ret = -EINVAL;
2815 goto out;
2816 }
2817
2818 /* constraints check */
2819 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2820 if (ret < 0)
2821 goto out;
Jingoo Han0d25d092014-01-08 10:02:16 +09002822
Paolo Pisati92d7a552012-12-13 10:13:00 +01002823 /* restore original values in case of error */
2824 old_min_uV = regulator->min_uV;
2825 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002826 regulator->min_uV = min_uV;
2827 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002828
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002829 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2830 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002831 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002832
Mark Brown75790252010-12-12 14:25:50 +00002833 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002834 if (ret < 0)
2835 goto out2;
Jingoo Han0d25d092014-01-08 10:02:16 +09002836
Liam Girdwood414c70c2008-04-30 15:59:04 +01002837out:
2838 mutex_unlock(&rdev->mutex);
2839 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002840out2:
2841 regulator->min_uV = old_min_uV;
2842 regulator->max_uV = old_max_uV;
2843 mutex_unlock(&rdev->mutex);
2844 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002845}
2846EXPORT_SYMBOL_GPL(regulator_set_voltage);
2847
Mark Brown606a2562010-12-16 15:49:36 +00002848/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002849 * regulator_set_voltage_time - get raise/fall time
2850 * @regulator: regulator source
2851 * @old_uV: starting voltage in microvolts
2852 * @new_uV: target voltage in microvolts
2853 *
2854 * Provided with the starting and ending voltage, this function attempts to
2855 * calculate the time in microseconds required to rise or fall to this new
2856 * voltage.
2857 */
2858int regulator_set_voltage_time(struct regulator *regulator,
2859 int old_uV, int new_uV)
2860{
Guodong Xu272e2312014-08-13 19:33:38 +08002861 struct regulator_dev *rdev = regulator->rdev;
2862 const struct regulator_ops *ops = rdev->desc->ops;
Linus Walleij88cd222b2011-03-17 13:24:52 +01002863 int old_sel = -1;
2864 int new_sel = -1;
2865 int voltage;
2866 int i;
2867
2868 /* Currently requires operations to do this */
2869 if (!ops->list_voltage || !ops->set_voltage_time_sel
2870 || !rdev->desc->n_voltages)
2871 return -EINVAL;
2872
2873 for (i = 0; i < rdev->desc->n_voltages; i++) {
2874 /* We only look for exact voltage matches here */
2875 voltage = regulator_list_voltage(regulator, i);
2876 if (voltage < 0)
2877 return -EINVAL;
2878 if (voltage == 0)
2879 continue;
2880 if (voltage == old_uV)
2881 old_sel = i;
2882 if (voltage == new_uV)
2883 new_sel = i;
2884 }
2885
2886 if (old_sel < 0 || new_sel < 0)
2887 return -EINVAL;
2888
2889 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2890}
2891EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2892
2893/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002894 * regulator_set_voltage_time_sel - get raise/fall time
2895 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302896 * @old_selector: selector for starting voltage
2897 * @new_selector: selector for target voltage
2898 *
2899 * Provided with the starting and target voltage selectors, this function
2900 * returns time in microseconds required to rise or fall to this new voltage
2901 *
Axel Linf11d08c2012-06-19 09:38:45 +08002902 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002903 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302904 */
2905int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2906 unsigned int old_selector,
2907 unsigned int new_selector)
2908{
Axel Lin398715a2012-06-18 10:11:28 +08002909 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002910 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002911
2912 if (rdev->constraints->ramp_delay)
2913 ramp_delay = rdev->constraints->ramp_delay;
2914 else if (rdev->desc->ramp_delay)
2915 ramp_delay = rdev->desc->ramp_delay;
2916
2917 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302918 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002919 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302920 }
Axel Lin398715a2012-06-18 10:11:28 +08002921
Axel Linf11d08c2012-06-19 09:38:45 +08002922 /* sanity check */
2923 if (!rdev->desc->ops->list_voltage)
2924 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002925
Axel Linf11d08c2012-06-19 09:38:45 +08002926 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2927 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2928
2929 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302930}
Mark Brownb19dbf72012-06-23 11:34:20 +01002931EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302932
2933/**
Mark Brown606a2562010-12-16 15:49:36 +00002934 * regulator_sync_voltage - re-apply last regulator output voltage
2935 * @regulator: regulator source
2936 *
2937 * Re-apply the last configured voltage. This is intended to be used
2938 * where some external control source the consumer is cooperating with
2939 * has caused the configured voltage to change.
2940 */
2941int regulator_sync_voltage(struct regulator *regulator)
2942{
2943 struct regulator_dev *rdev = regulator->rdev;
2944 int ret, min_uV, max_uV;
2945
2946 mutex_lock(&rdev->mutex);
2947
2948 if (!rdev->desc->ops->set_voltage &&
2949 !rdev->desc->ops->set_voltage_sel) {
2950 ret = -EINVAL;
2951 goto out;
2952 }
2953
2954 /* This is only going to work if we've had a voltage configured. */
2955 if (!regulator->min_uV && !regulator->max_uV) {
2956 ret = -EINVAL;
2957 goto out;
2958 }
2959
2960 min_uV = regulator->min_uV;
2961 max_uV = regulator->max_uV;
2962
2963 /* This should be a paranoia check... */
2964 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2965 if (ret < 0)
2966 goto out;
2967
2968 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2969 if (ret < 0)
2970 goto out;
2971
2972 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2973
2974out:
2975 mutex_unlock(&rdev->mutex);
2976 return ret;
2977}
2978EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2979
Liam Girdwood414c70c2008-04-30 15:59:04 +01002980static int _regulator_get_voltage(struct regulator_dev *rdev)
2981{
Mark Brownbf5892a2011-05-08 22:13:37 +01002982 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002983
2984 if (rdev->desc->ops->get_voltage_sel) {
2985 sel = rdev->desc->ops->get_voltage_sel(rdev);
2986 if (sel < 0)
2987 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002988 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002989 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002990 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002991 } else if (rdev->desc->ops->list_voltage) {
2992 ret = rdev->desc->ops->list_voltage(rdev, 0);
Laxman Dewangan5a523602013-09-10 15:45:05 +05302993 } else if (rdev->desc->fixed_uV && (rdev->desc->n_voltages == 1)) {
2994 ret = rdev->desc->fixed_uV;
Javier Martinez Canillase3039962014-07-29 18:28:55 +02002995 } else if (rdev->supply) {
2996 ret = regulator_get_voltage(rdev->supply);
Axel Lincb220d12011-05-23 20:08:10 +08002997 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002998 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002999 }
Mark Brownbf5892a2011-05-08 22:13:37 +01003000
Axel Lincb220d12011-05-23 20:08:10 +08003001 if (ret < 0)
3002 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01003003 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003004}
3005
3006/**
3007 * regulator_get_voltage - get regulator output voltage
3008 * @regulator: regulator source
3009 *
3010 * This returns the current regulator voltage in uV.
3011 *
3012 * NOTE: If the regulator is disabled it will return the voltage value. This
3013 * function should not be used to determine regulator state.
3014 */
3015int regulator_get_voltage(struct regulator *regulator)
3016{
3017 int ret;
3018
3019 mutex_lock(&regulator->rdev->mutex);
3020
3021 ret = _regulator_get_voltage(regulator->rdev);
3022
3023 mutex_unlock(&regulator->rdev->mutex);
3024
3025 return ret;
3026}
3027EXPORT_SYMBOL_GPL(regulator_get_voltage);
3028
3029/**
3030 * regulator_set_current_limit - set regulator output current limit
3031 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01003032 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01003033 * @max_uA: Maximum supported current in uA
3034 *
3035 * Sets current sink to the desired output current. This can be set during
3036 * any regulator state. IOW, regulator can be disabled or enabled.
3037 *
3038 * If the regulator is enabled then the current will change to the new value
3039 * immediately otherwise if the regulator is disabled the regulator will
3040 * output at the new current when enabled.
3041 *
3042 * NOTE: Regulator system constraints must be set for this regulator before
3043 * calling this function otherwise this call will fail.
3044 */
3045int regulator_set_current_limit(struct regulator *regulator,
3046 int min_uA, int max_uA)
3047{
3048 struct regulator_dev *rdev = regulator->rdev;
3049 int ret;
3050
3051 mutex_lock(&rdev->mutex);
3052
3053 /* sanity check */
3054 if (!rdev->desc->ops->set_current_limit) {
3055 ret = -EINVAL;
3056 goto out;
3057 }
3058
3059 /* constraints check */
3060 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
3061 if (ret < 0)
3062 goto out;
3063
3064 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
3065out:
3066 mutex_unlock(&rdev->mutex);
3067 return ret;
3068}
3069EXPORT_SYMBOL_GPL(regulator_set_current_limit);
3070
3071static int _regulator_get_current_limit(struct regulator_dev *rdev)
3072{
3073 int ret;
3074
3075 mutex_lock(&rdev->mutex);
3076
3077 /* sanity check */
3078 if (!rdev->desc->ops->get_current_limit) {
3079 ret = -EINVAL;
3080 goto out;
3081 }
3082
3083 ret = rdev->desc->ops->get_current_limit(rdev);
3084out:
3085 mutex_unlock(&rdev->mutex);
3086 return ret;
3087}
3088
3089/**
3090 * regulator_get_current_limit - get regulator output current
3091 * @regulator: regulator source
3092 *
3093 * This returns the current supplied by the specified current sink in uA.
3094 *
3095 * NOTE: If the regulator is disabled it will return the current value. This
3096 * function should not be used to determine regulator state.
3097 */
3098int regulator_get_current_limit(struct regulator *regulator)
3099{
3100 return _regulator_get_current_limit(regulator->rdev);
3101}
3102EXPORT_SYMBOL_GPL(regulator_get_current_limit);
3103
3104/**
3105 * regulator_set_mode - set regulator operating mode
3106 * @regulator: regulator source
3107 * @mode: operating mode - one of the REGULATOR_MODE constants
3108 *
3109 * Set regulator operating mode to increase regulator efficiency or improve
3110 * regulation performance.
3111 *
3112 * NOTE: Regulator system constraints must be set for this regulator before
3113 * calling this function otherwise this call will fail.
3114 */
3115int regulator_set_mode(struct regulator *regulator, unsigned int mode)
3116{
3117 struct regulator_dev *rdev = regulator->rdev;
3118 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303119 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003120
3121 mutex_lock(&rdev->mutex);
3122
3123 /* sanity check */
3124 if (!rdev->desc->ops->set_mode) {
3125 ret = -EINVAL;
3126 goto out;
3127 }
3128
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05303129 /* return if the same mode is requested */
3130 if (rdev->desc->ops->get_mode) {
3131 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
3132 if (regulator_curr_mode == mode) {
3133 ret = 0;
3134 goto out;
3135 }
3136 }
3137
Liam Girdwood414c70c2008-04-30 15:59:04 +01003138 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08003139 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003140 if (ret < 0)
3141 goto out;
3142
3143 ret = rdev->desc->ops->set_mode(rdev, mode);
3144out:
3145 mutex_unlock(&rdev->mutex);
3146 return ret;
3147}
3148EXPORT_SYMBOL_GPL(regulator_set_mode);
3149
3150static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
3151{
3152 int ret;
3153
3154 mutex_lock(&rdev->mutex);
3155
3156 /* sanity check */
3157 if (!rdev->desc->ops->get_mode) {
3158 ret = -EINVAL;
3159 goto out;
3160 }
3161
3162 ret = rdev->desc->ops->get_mode(rdev);
3163out:
3164 mutex_unlock(&rdev->mutex);
3165 return ret;
3166}
3167
3168/**
3169 * regulator_get_mode - get regulator operating mode
3170 * @regulator: regulator source
3171 *
3172 * Get the current regulator operating mode.
3173 */
3174unsigned int regulator_get_mode(struct regulator *regulator)
3175{
3176 return _regulator_get_mode(regulator->rdev);
3177}
3178EXPORT_SYMBOL_GPL(regulator_get_mode);
3179
3180/**
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003181 * regulator_set_load - set regulator load
Liam Girdwood414c70c2008-04-30 15:59:04 +01003182 * @regulator: regulator source
3183 * @uA_load: load current
3184 *
3185 * Notifies the regulator core of a new device load. This is then used by
3186 * DRMS (if enabled by constraints) to set the most efficient regulator
3187 * operating mode for the new regulator loading.
3188 *
3189 * Consumer devices notify their supply regulator of the maximum power
3190 * they will require (can be taken from device datasheet in the power
3191 * consumption tables) when they change operational status and hence power
3192 * state. Examples of operational state changes that can affect power
3193 * consumption are :-
3194 *
3195 * o Device is opened / closed.
3196 * o Device I/O is about to begin or has just finished.
3197 * o Device is idling in between work.
3198 *
3199 * This information is also exported via sysfs to userspace.
3200 *
3201 * DRMS will sum the total requested load on the regulator and change
3202 * to the most efficient operating mode if platform constraints allow.
3203 *
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003204 * On error a negative errno is returned.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003205 */
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003206int regulator_set_load(struct regulator *regulator, int uA_load)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003207{
3208 struct regulator_dev *rdev = regulator->rdev;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003209 int ret;
Stephen Boydd92d95b62012-07-02 19:21:06 -07003210
Liam Girdwood414c70c2008-04-30 15:59:04 +01003211 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003212 regulator->uA_load = uA_load;
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003213 ret = drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003214 mutex_unlock(&rdev->mutex);
Bjorn Andersson8460ef32015-01-27 18:46:31 -08003215
Liam Girdwood414c70c2008-04-30 15:59:04 +01003216 return ret;
3217}
Bjorn Anderssone39ce482015-02-11 19:35:27 -08003218EXPORT_SYMBOL_GPL(regulator_set_load);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003219
3220/**
Mark Brownf59c8f92012-08-31 10:36:37 -07003221 * regulator_allow_bypass - allow the regulator to go into bypass mode
3222 *
3223 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06003224 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07003225 *
3226 * Allow the regulator to go into bypass mode if all other consumers
3227 * for the regulator also enable bypass mode and the machine
3228 * constraints allow this. Bypass mode means that the regulator is
3229 * simply passing the input directly to the output with no regulation.
3230 */
3231int regulator_allow_bypass(struct regulator *regulator, bool enable)
3232{
3233 struct regulator_dev *rdev = regulator->rdev;
3234 int ret = 0;
3235
3236 if (!rdev->desc->ops->set_bypass)
3237 return 0;
3238
3239 if (rdev->constraints &&
3240 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
3241 return 0;
3242
3243 mutex_lock(&rdev->mutex);
3244
3245 if (enable && !regulator->bypass) {
3246 rdev->bypass_count++;
3247
3248 if (rdev->bypass_count == rdev->open_count) {
3249 ret = rdev->desc->ops->set_bypass(rdev, enable);
3250 if (ret != 0)
3251 rdev->bypass_count--;
3252 }
3253
3254 } else if (!enable && regulator->bypass) {
3255 rdev->bypass_count--;
3256
3257 if (rdev->bypass_count != rdev->open_count) {
3258 ret = rdev->desc->ops->set_bypass(rdev, enable);
3259 if (ret != 0)
3260 rdev->bypass_count++;
3261 }
3262 }
3263
3264 if (ret == 0)
3265 regulator->bypass = enable;
3266
3267 mutex_unlock(&rdev->mutex);
3268
3269 return ret;
3270}
3271EXPORT_SYMBOL_GPL(regulator_allow_bypass);
3272
3273/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003274 * regulator_register_notifier - register regulator event notifier
3275 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003276 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003277 *
3278 * Register notifier block to receive regulator events.
3279 */
3280int regulator_register_notifier(struct regulator *regulator,
3281 struct notifier_block *nb)
3282{
3283 return blocking_notifier_chain_register(&regulator->rdev->notifier,
3284 nb);
3285}
3286EXPORT_SYMBOL_GPL(regulator_register_notifier);
3287
3288/**
3289 * regulator_unregister_notifier - unregister regulator event notifier
3290 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00003291 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01003292 *
3293 * Unregister regulator event notifier block.
3294 */
3295int regulator_unregister_notifier(struct regulator *regulator,
3296 struct notifier_block *nb)
3297{
3298 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
3299 nb);
3300}
3301EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
3302
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003303/* notify regulator consumers and downstream regulator consumers.
3304 * Note mutex must be held by caller.
3305 */
Heiko Stübner71795692014-08-28 12:36:04 -07003306static int _notifier_call_chain(struct regulator_dev *rdev,
Liam Girdwood414c70c2008-04-30 15:59:04 +01003307 unsigned long event, void *data)
3308{
Liam Girdwood414c70c2008-04-30 15:59:04 +01003309 /* call rdev chain first */
Heiko Stübner71795692014-08-28 12:36:04 -07003310 return blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003311}
3312
3313/**
3314 * regulator_bulk_get - get multiple regulator consumers
3315 *
3316 * @dev: Device to supply
3317 * @num_consumers: Number of consumers to register
3318 * @consumers: Configuration of consumers; clients are stored here.
3319 *
3320 * @return 0 on success, an errno on failure.
3321 *
3322 * This helper function allows drivers to get several regulator
3323 * consumers in one operation. If any of the regulators cannot be
3324 * acquired then any regulators that were allocated will be freed
3325 * before returning to the caller.
3326 */
3327int regulator_bulk_get(struct device *dev, int num_consumers,
3328 struct regulator_bulk_data *consumers)
3329{
3330 int i;
3331 int ret;
3332
3333 for (i = 0; i < num_consumers; i++)
3334 consumers[i].consumer = NULL;
3335
3336 for (i = 0; i < num_consumers; i++) {
3337 consumers[i].consumer = regulator_get(dev,
3338 consumers[i].supply);
3339 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003340 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01003341 dev_err(dev, "Failed to get supply '%s': %d\n",
3342 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003343 consumers[i].consumer = NULL;
3344 goto err;
3345 }
3346 }
3347
3348 return 0;
3349
3350err:
Axel Linb29c7692012-02-20 10:32:16 +08003351 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003352 regulator_put(consumers[i].consumer);
3353
3354 return ret;
3355}
3356EXPORT_SYMBOL_GPL(regulator_bulk_get);
3357
Mark Brownf21e0e82011-05-24 08:12:40 +08003358static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
3359{
3360 struct regulator_bulk_data *bulk = data;
3361
3362 bulk->ret = regulator_enable(bulk->consumer);
3363}
3364
Liam Girdwood414c70c2008-04-30 15:59:04 +01003365/**
3366 * regulator_bulk_enable - enable multiple regulator consumers
3367 *
3368 * @num_consumers: Number of consumers
3369 * @consumers: Consumer data; clients are stored here.
3370 * @return 0 on success, an errno on failure
3371 *
3372 * This convenience API allows consumers to enable multiple regulator
3373 * clients in a single API call. If any consumers cannot be enabled
3374 * then any others that were enabled will be disabled again prior to
3375 * return.
3376 */
3377int regulator_bulk_enable(int num_consumers,
3378 struct regulator_bulk_data *consumers)
3379{
Dan Williams2955b472012-07-09 19:33:25 -07003380 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003381 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08003382 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003383
Mark Brown6492bc12012-04-19 13:19:07 +01003384 for (i = 0; i < num_consumers; i++) {
3385 if (consumers[i].consumer->always_on)
3386 consumers[i].ret = 0;
3387 else
3388 async_schedule_domain(regulator_bulk_enable_async,
3389 &consumers[i], &async_domain);
3390 }
Mark Brownf21e0e82011-05-24 08:12:40 +08003391
3392 async_synchronize_full_domain(&async_domain);
3393
3394 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003395 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003396 if (consumers[i].ret != 0) {
3397 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003398 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003399 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003400 }
3401
3402 return 0;
3403
3404err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003405 for (i = 0; i < num_consumers; i++) {
3406 if (consumers[i].ret < 0)
3407 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3408 consumers[i].ret);
3409 else
3410 regulator_disable(consumers[i].consumer);
3411 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003412
3413 return ret;
3414}
3415EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3416
3417/**
3418 * regulator_bulk_disable - disable multiple regulator consumers
3419 *
3420 * @num_consumers: Number of consumers
3421 * @consumers: Consumer data; clients are stored here.
3422 * @return 0 on success, an errno on failure
3423 *
3424 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003425 * clients in a single API call. If any consumers cannot be disabled
3426 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003427 * return.
3428 */
3429int regulator_bulk_disable(int num_consumers,
3430 struct regulator_bulk_data *consumers)
3431{
3432 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003433 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003434
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003435 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003436 ret = regulator_disable(consumers[i].consumer);
3437 if (ret != 0)
3438 goto err;
3439 }
3440
3441 return 0;
3442
3443err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003444 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003445 for (++i; i < num_consumers; ++i) {
3446 r = regulator_enable(consumers[i].consumer);
3447 if (r != 0)
3448 pr_err("Failed to reename %s: %d\n",
3449 consumers[i].supply, r);
3450 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003451
3452 return ret;
3453}
3454EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3455
3456/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003457 * regulator_bulk_force_disable - force disable multiple regulator consumers
3458 *
3459 * @num_consumers: Number of consumers
3460 * @consumers: Consumer data; clients are stored here.
3461 * @return 0 on success, an errno on failure
3462 *
3463 * This convenience API allows consumers to forcibly disable multiple regulator
3464 * clients in a single API call.
3465 * NOTE: This should be used for situations when device damage will
3466 * likely occur if the regulators are not disabled (e.g. over temp).
3467 * Although regulator_force_disable function call for some consumers can
3468 * return error numbers, the function is called for all consumers.
3469 */
3470int regulator_bulk_force_disable(int num_consumers,
3471 struct regulator_bulk_data *consumers)
3472{
3473 int i;
3474 int ret;
3475
3476 for (i = 0; i < num_consumers; i++)
3477 consumers[i].ret =
3478 regulator_force_disable(consumers[i].consumer);
3479
3480 for (i = 0; i < num_consumers; i++) {
3481 if (consumers[i].ret != 0) {
3482 ret = consumers[i].ret;
3483 goto out;
3484 }
3485 }
3486
3487 return 0;
3488out:
3489 return ret;
3490}
3491EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3492
3493/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003494 * regulator_bulk_free - free multiple regulator consumers
3495 *
3496 * @num_consumers: Number of consumers
3497 * @consumers: Consumer data; clients are stored here.
3498 *
3499 * This convenience API allows consumers to free multiple regulator
3500 * clients in a single API call.
3501 */
3502void regulator_bulk_free(int num_consumers,
3503 struct regulator_bulk_data *consumers)
3504{
3505 int i;
3506
3507 for (i = 0; i < num_consumers; i++) {
3508 regulator_put(consumers[i].consumer);
3509 consumers[i].consumer = NULL;
3510 }
3511}
3512EXPORT_SYMBOL_GPL(regulator_bulk_free);
3513
3514/**
3515 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003516 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003517 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003518 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003519 *
3520 * Called by regulator drivers to notify clients a regulator event has
3521 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003522 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003523 */
3524int regulator_notifier_call_chain(struct regulator_dev *rdev,
3525 unsigned long event, void *data)
3526{
Krzysztof Kozlowski70cfef22015-06-29 09:04:43 +09003527 lockdep_assert_held_once(&rdev->mutex);
3528
Liam Girdwood414c70c2008-04-30 15:59:04 +01003529 _notifier_call_chain(rdev, event, data);
3530 return NOTIFY_DONE;
3531
3532}
3533EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3534
Mark Brownbe721972009-08-04 20:09:52 +02003535/**
3536 * regulator_mode_to_status - convert a regulator mode into a status
3537 *
3538 * @mode: Mode to convert
3539 *
3540 * Convert a regulator mode into a status.
3541 */
3542int regulator_mode_to_status(unsigned int mode)
3543{
3544 switch (mode) {
3545 case REGULATOR_MODE_FAST:
3546 return REGULATOR_STATUS_FAST;
3547 case REGULATOR_MODE_NORMAL:
3548 return REGULATOR_STATUS_NORMAL;
3549 case REGULATOR_MODE_IDLE:
3550 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003551 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003552 return REGULATOR_STATUS_STANDBY;
3553 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003554 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003555 }
3556}
3557EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3558
Takashi Iwai39f802d2015-01-30 20:29:31 +01003559static struct attribute *regulator_dev_attrs[] = {
3560 &dev_attr_name.attr,
3561 &dev_attr_num_users.attr,
3562 &dev_attr_type.attr,
3563 &dev_attr_microvolts.attr,
3564 &dev_attr_microamps.attr,
3565 &dev_attr_opmode.attr,
3566 &dev_attr_state.attr,
3567 &dev_attr_status.attr,
3568 &dev_attr_bypass.attr,
3569 &dev_attr_requested_microamps.attr,
3570 &dev_attr_min_microvolts.attr,
3571 &dev_attr_max_microvolts.attr,
3572 &dev_attr_min_microamps.attr,
3573 &dev_attr_max_microamps.attr,
3574 &dev_attr_suspend_standby_state.attr,
3575 &dev_attr_suspend_mem_state.attr,
3576 &dev_attr_suspend_disk_state.attr,
3577 &dev_attr_suspend_standby_microvolts.attr,
3578 &dev_attr_suspend_mem_microvolts.attr,
3579 &dev_attr_suspend_disk_microvolts.attr,
3580 &dev_attr_suspend_standby_mode.attr,
3581 &dev_attr_suspend_mem_mode.attr,
3582 &dev_attr_suspend_disk_mode.attr,
3583 NULL
3584};
3585
David Brownell7ad68e22008-11-11 17:39:02 -08003586/*
3587 * To avoid cluttering sysfs (and memory) with useless state, only
3588 * create attributes that can be meaningfully displayed.
3589 */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003590static umode_t regulator_attr_is_visible(struct kobject *kobj,
3591 struct attribute *attr, int idx)
David Brownell7ad68e22008-11-11 17:39:02 -08003592{
Takashi Iwai39f802d2015-01-30 20:29:31 +01003593 struct device *dev = kobj_to_dev(kobj);
3594 struct regulator_dev *rdev = container_of(dev, struct regulator_dev, dev);
Guodong Xu272e2312014-08-13 19:33:38 +08003595 const struct regulator_ops *ops = rdev->desc->ops;
Takashi Iwai39f802d2015-01-30 20:29:31 +01003596 umode_t mode = attr->mode;
3597
3598 /* these three are always present */
3599 if (attr == &dev_attr_name.attr ||
3600 attr == &dev_attr_num_users.attr ||
3601 attr == &dev_attr_type.attr)
3602 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003603
3604 /* some attributes need specific methods to be displayed */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003605 if (attr == &dev_attr_microvolts.attr) {
3606 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
3607 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3608 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0) ||
3609 (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1))
3610 return mode;
3611 return 0;
Mark Brownf59c8f92012-08-31 10:36:37 -07003612 }
David Brownell7ad68e22008-11-11 17:39:02 -08003613
Takashi Iwai39f802d2015-01-30 20:29:31 +01003614 if (attr == &dev_attr_microamps.attr)
3615 return ops->get_current_limit ? mode : 0;
3616
3617 if (attr == &dev_attr_opmode.attr)
3618 return ops->get_mode ? mode : 0;
3619
3620 if (attr == &dev_attr_state.attr)
3621 return (rdev->ena_pin || ops->is_enabled) ? mode : 0;
3622
3623 if (attr == &dev_attr_status.attr)
3624 return ops->get_status ? mode : 0;
3625
3626 if (attr == &dev_attr_bypass.attr)
3627 return ops->get_bypass ? mode : 0;
3628
David Brownell7ad68e22008-11-11 17:39:02 -08003629 /* some attributes are type-specific */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003630 if (attr == &dev_attr_requested_microamps.attr)
3631 return rdev->desc->type == REGULATOR_CURRENT ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003632
David Brownell7ad68e22008-11-11 17:39:02 -08003633 /* constraints need specific supporting methods */
Takashi Iwai39f802d2015-01-30 20:29:31 +01003634 if (attr == &dev_attr_min_microvolts.attr ||
3635 attr == &dev_attr_max_microvolts.attr)
3636 return (ops->set_voltage || ops->set_voltage_sel) ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003637
Takashi Iwai39f802d2015-01-30 20:29:31 +01003638 if (attr == &dev_attr_min_microamps.attr ||
3639 attr == &dev_attr_max_microamps.attr)
3640 return ops->set_current_limit ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003641
Takashi Iwai39f802d2015-01-30 20:29:31 +01003642 if (attr == &dev_attr_suspend_standby_state.attr ||
3643 attr == &dev_attr_suspend_mem_state.attr ||
3644 attr == &dev_attr_suspend_disk_state.attr)
3645 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003646
Takashi Iwai39f802d2015-01-30 20:29:31 +01003647 if (attr == &dev_attr_suspend_standby_microvolts.attr ||
3648 attr == &dev_attr_suspend_mem_microvolts.attr ||
3649 attr == &dev_attr_suspend_disk_microvolts.attr)
3650 return ops->set_suspend_voltage ? mode : 0;
David Brownell7ad68e22008-11-11 17:39:02 -08003651
Takashi Iwai39f802d2015-01-30 20:29:31 +01003652 if (attr == &dev_attr_suspend_standby_mode.attr ||
3653 attr == &dev_attr_suspend_mem_mode.attr ||
3654 attr == &dev_attr_suspend_disk_mode.attr)
3655 return ops->set_suspend_mode ? mode : 0;
3656
3657 return mode;
David Brownell7ad68e22008-11-11 17:39:02 -08003658}
3659
Takashi Iwai39f802d2015-01-30 20:29:31 +01003660static const struct attribute_group regulator_dev_group = {
3661 .attrs = regulator_dev_attrs,
3662 .is_visible = regulator_attr_is_visible,
3663};
3664
3665static const struct attribute_group *regulator_dev_groups[] = {
3666 &regulator_dev_group,
3667 NULL
3668};
3669
3670static void regulator_dev_release(struct device *dev)
3671{
3672 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown29f5f482015-08-07 20:01:32 +01003673
3674 kfree(rdev->constraints);
3675 of_node_put(rdev->dev.of_node);
Takashi Iwai39f802d2015-01-30 20:29:31 +01003676 kfree(rdev);
3677}
3678
3679static struct class regulator_class = {
3680 .name = "regulator",
3681 .dev_release = regulator_dev_release,
3682 .dev_groups = regulator_dev_groups,
3683};
3684
Mark Brown1130e5b2010-12-21 23:49:31 +00003685static void rdev_init_debugfs(struct regulator_dev *rdev)
3686{
Guenter Roecka9eaa812014-10-17 08:17:03 -07003687 struct device *parent = rdev->dev.parent;
3688 const char *rname = rdev_get_name(rdev);
3689 char name[NAME_MAX];
3690
3691 /* Avoid duplicate debugfs directory names */
3692 if (parent && rname == rdev->desc->name) {
3693 snprintf(name, sizeof(name), "%s-%s", dev_name(parent),
3694 rname);
3695 rname = name;
3696 }
3697
3698 rdev->debugfs = debugfs_create_dir(rname, debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003699 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003700 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003701 return;
3702 }
3703
3704 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3705 &rdev->use_count);
3706 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3707 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003708 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3709 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003710}
3711
Liam Girdwood414c70c2008-04-30 15:59:04 +01003712/**
3713 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003714 * @regulator_desc: regulator to register
Krzysztof Kozlowskif47531b2015-01-12 09:01:39 +01003715 * @cfg: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003716 *
3717 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003718 * Returns a valid pointer to struct regulator_dev on success
3719 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003720 */
Mark Brown65f26842012-04-03 20:46:53 +01003721struct regulator_dev *
3722regulator_register(const struct regulator_desc *regulator_desc,
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003723 const struct regulator_config *cfg)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003724{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003725 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003726 const struct regulator_init_data *init_data;
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003727 struct regulator_config *config = NULL;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303728 static atomic_t regulator_no = ATOMIC_INIT(-1);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003729 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003730 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003731 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003732
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003733 if (regulator_desc == NULL || cfg == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003734 return ERR_PTR(-EINVAL);
3735
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003736 dev = cfg->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003737 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003738
Liam Girdwood414c70c2008-04-30 15:59:04 +01003739 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3740 return ERR_PTR(-EINVAL);
3741
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003742 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3743 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003744 return ERR_PTR(-EINVAL);
3745
Mark Brown476c2d82010-12-10 17:28:07 +00003746 /* Only one of each should be implemented */
3747 WARN_ON(regulator_desc->ops->get_voltage &&
3748 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003749 WARN_ON(regulator_desc->ops->set_voltage &&
3750 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003751
3752 /* If we're using selectors we must implement list_voltage. */
3753 if (regulator_desc->ops->get_voltage_sel &&
3754 !regulator_desc->ops->list_voltage) {
3755 return ERR_PTR(-EINVAL);
3756 }
Mark Browne8eef822010-12-12 14:36:17 +00003757 if (regulator_desc->ops->set_voltage_sel &&
3758 !regulator_desc->ops->list_voltage) {
3759 return ERR_PTR(-EINVAL);
3760 }
Mark Brown476c2d82010-12-10 17:28:07 +00003761
Liam Girdwood414c70c2008-04-30 15:59:04 +01003762 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3763 if (rdev == NULL)
3764 return ERR_PTR(-ENOMEM);
3765
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003766 /*
3767 * Duplicate the config so the driver could override it after
3768 * parsing init data.
3769 */
3770 config = kmemdup(cfg, sizeof(*cfg), GFP_KERNEL);
3771 if (config == NULL) {
3772 kfree(rdev);
3773 return ERR_PTR(-ENOMEM);
3774 }
3775
Krzysztof Kozlowskibfa21a02015-01-05 12:48:42 +01003776 init_data = regulator_of_get_init_data(dev, regulator_desc, config,
Mark Browna0c7b162014-09-09 23:13:57 +01003777 &rdev->dev.of_node);
3778 if (!init_data) {
3779 init_data = config->init_data;
3780 rdev->dev.of_node = of_node_get(config->of_node);
3781 }
3782
Liam Girdwood414c70c2008-04-30 15:59:04 +01003783 mutex_lock(&regulator_list_mutex);
3784
3785 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003786 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003787 rdev->owner = regulator_desc->owner;
3788 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003789 if (config->regmap)
3790 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303791 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003792 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303793 else if (dev->parent)
3794 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003795 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003796 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003797 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003798 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003799
Liam Girdwooda5766f12008-10-10 13:22:20 +01003800 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003801 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003802 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003803 if (ret < 0)
3804 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003805 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003806
Liam Girdwooda5766f12008-10-10 13:22:20 +01003807 /* register with sysfs */
3808 rdev->dev.class = &regulator_class;
3809 rdev->dev.parent = dev;
Aniroop Mathur72dca062014-12-28 22:08:38 +05303810 dev_set_name(&rdev->dev, "regulator.%lu",
Aniroop Mathur39138812014-12-29 22:36:48 +05303811 (unsigned long) atomic_inc_return(&regulator_no));
Liam Girdwooda5766f12008-10-10 13:22:20 +01003812 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003813 if (ret != 0) {
3814 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003815 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003816 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003817
3818 dev_set_drvdata(&rdev->dev, rdev);
3819
Markus Pargmann76f439d2014-10-08 15:47:05 +02003820 if ((config->ena_gpio || config->ena_gpio_initialized) &&
3821 gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003822 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003823 if (ret != 0) {
3824 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3825 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003826 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003827 }
Mark Brown65f73502012-06-27 14:14:38 +01003828 }
3829
Mike Rapoport74f544c2008-11-25 14:53:53 +02003830 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003831 if (init_data)
3832 constraints = &init_data->constraints;
3833
3834 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003835 if (ret < 0)
3836 goto scrub;
3837
Mark Brown9a8f5e02011-11-29 18:11:19 +00003838 if (init_data && init_data->supply_regulator)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003839 rdev->supply_name = init_data->supply_regulator;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303840 else if (regulator_desc->supply_name)
Bjorn Andersson6261b062015-03-24 18:56:05 -07003841 rdev->supply_name = regulator_desc->supply_name;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303842
Liam Girdwooda5766f12008-10-10 13:22:20 +01003843 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003844 if (init_data) {
3845 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3846 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003847 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003848 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003849 if (ret < 0) {
3850 dev_err(dev, "Failed to set supply %s\n",
3851 init_data->consumer_supplies[i].supply);
3852 goto unset_supplies;
3853 }
Mark Brown23c2f042011-02-24 17:39:09 +00003854 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003855 }
3856
3857 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003858
3859 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003860out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003861 mutex_unlock(&regulator_list_mutex);
Krzysztof Kozlowski1b3de222015-01-05 12:48:41 +01003862 kfree(config);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003863 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003864
Jani Nikulad4033b52010-04-29 10:55:11 +03003865unset_supplies:
3866 unset_regulator_supplies(rdev);
3867
David Brownell4fca9542008-11-11 17:38:53 -08003868scrub:
Kim, Milof19b00d2013-02-18 06:50:39 +00003869 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003870 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003871wash:
David Brownell4fca9542008-11-11 17:38:53 -08003872 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003873 /* device core frees rdev */
3874 rdev = ERR_PTR(ret);
3875 goto out;
3876
David Brownell4fca9542008-11-11 17:38:53 -08003877clean:
3878 kfree(rdev);
3879 rdev = ERR_PTR(ret);
3880 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003881}
3882EXPORT_SYMBOL_GPL(regulator_register);
3883
3884/**
3885 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003886 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003887 *
3888 * Called by regulator drivers to unregister a regulator.
3889 */
3890void regulator_unregister(struct regulator_dev *rdev)
3891{
3892 if (rdev == NULL)
3893 return;
3894
Mark Brown891636e2013-07-08 09:14:45 +01003895 if (rdev->supply) {
3896 while (rdev->use_count--)
3897 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003898 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003899 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003900 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003901 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003902 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003903 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003904 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003905 list_del(&rdev->list);
Mark Brown7cd71c32015-08-07 13:00:35 +01003906 mutex_unlock(&regulator_list_mutex);
Kim, Milof19b00d2013-02-18 06:50:39 +00003907 regulator_ena_gpio_free(rdev);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003908 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003909}
3910EXPORT_SYMBOL_GPL(regulator_unregister);
3911
3912/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003913 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003914 * @state: system suspend state
3915 *
3916 * Configure each regulator with it's suspend operating parameters for state.
3917 * This will usually be called by machine suspend code prior to supending.
3918 */
3919int regulator_suspend_prepare(suspend_state_t state)
3920{
3921 struct regulator_dev *rdev;
3922 int ret = 0;
3923
3924 /* ON is handled by regulator active state */
3925 if (state == PM_SUSPEND_ON)
3926 return -EINVAL;
3927
3928 mutex_lock(&regulator_list_mutex);
3929 list_for_each_entry(rdev, &regulator_list, list) {
3930
3931 mutex_lock(&rdev->mutex);
3932 ret = suspend_prepare(rdev, state);
3933 mutex_unlock(&rdev->mutex);
3934
3935 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003936 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003937 goto out;
3938 }
3939 }
3940out:
3941 mutex_unlock(&regulator_list_mutex);
3942 return ret;
3943}
3944EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3945
3946/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003947 * regulator_suspend_finish - resume regulators from system wide suspend
3948 *
3949 * Turn on regulators that might be turned off by regulator_suspend_prepare
3950 * and that should be turned on according to the regulators properties.
3951 */
3952int regulator_suspend_finish(void)
3953{
3954 struct regulator_dev *rdev;
3955 int ret = 0, error;
3956
3957 mutex_lock(&regulator_list_mutex);
3958 list_for_each_entry(rdev, &regulator_list, list) {
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003959 mutex_lock(&rdev->mutex);
Markus Pargmann30c21972014-02-20 17:36:03 +01003960 if (rdev->use_count > 0 || rdev->constraints->always_on) {
Javier Martinez Canillas0548bf42015-03-02 21:40:39 +01003961 if (!_regulator_is_enabled(rdev)) {
3962 error = _regulator_do_enable(rdev);
3963 if (error)
3964 ret = error;
3965 }
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003966 } else {
Mark Brown87b28412013-11-27 16:13:10 +00003967 if (!have_full_constraints())
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003968 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003969 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003970 goto unlock;
3971
Markus Pargmann66fda752014-02-20 17:36:04 +01003972 error = _regulator_do_disable(rdev);
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003973 if (error)
3974 ret = error;
3975 }
3976unlock:
3977 mutex_unlock(&rdev->mutex);
3978 }
3979 mutex_unlock(&regulator_list_mutex);
3980 return ret;
3981}
3982EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3983
3984/**
Mark Brownca725562009-03-16 19:36:34 +00003985 * regulator_has_full_constraints - the system has fully specified constraints
3986 *
3987 * Calling this function will cause the regulator API to disable all
3988 * regulators which have a zero use count and don't have an always_on
3989 * constraint in a late_initcall.
3990 *
3991 * The intention is that this will become the default behaviour in a
3992 * future kernel release so users are encouraged to use this facility
3993 * now.
3994 */
3995void regulator_has_full_constraints(void)
3996{
3997 has_full_constraints = 1;
3998}
3999EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
4000
4001/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01004002 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00004003 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004004 *
4005 * Get rdev regulator driver private data. This call can be used in the
4006 * regulator driver context.
4007 */
4008void *rdev_get_drvdata(struct regulator_dev *rdev)
4009{
4010 return rdev->reg_data;
4011}
4012EXPORT_SYMBOL_GPL(rdev_get_drvdata);
4013
4014/**
4015 * regulator_get_drvdata - get regulator driver data
4016 * @regulator: regulator
4017 *
4018 * Get regulator driver private data. This call can be used in the consumer
4019 * driver context when non API regulator specific functions need to be called.
4020 */
4021void *regulator_get_drvdata(struct regulator *regulator)
4022{
4023 return regulator->rdev->reg_data;
4024}
4025EXPORT_SYMBOL_GPL(regulator_get_drvdata);
4026
4027/**
4028 * regulator_set_drvdata - set regulator driver data
4029 * @regulator: regulator
4030 * @data: data
4031 */
4032void regulator_set_drvdata(struct regulator *regulator, void *data)
4033{
4034 regulator->rdev->reg_data = data;
4035}
4036EXPORT_SYMBOL_GPL(regulator_set_drvdata);
4037
4038/**
4039 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00004040 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01004041 */
4042int rdev_get_id(struct regulator_dev *rdev)
4043{
4044 return rdev->desc->id;
4045}
4046EXPORT_SYMBOL_GPL(rdev_get_id);
4047
Liam Girdwooda5766f12008-10-10 13:22:20 +01004048struct device *rdev_get_dev(struct regulator_dev *rdev)
4049{
4050 return &rdev->dev;
4051}
4052EXPORT_SYMBOL_GPL(rdev_get_dev);
4053
4054void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
4055{
4056 return reg_init_data->driver_data;
4057}
4058EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
4059
Mark Brownba55a972011-08-23 17:39:10 +01004060#ifdef CONFIG_DEBUG_FS
4061static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
4062 size_t count, loff_t *ppos)
4063{
4064 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4065 ssize_t len, ret = 0;
4066 struct regulator_map *map;
4067
4068 if (!buf)
4069 return -ENOMEM;
4070
4071 list_for_each_entry(map, &regulator_map_list, list) {
4072 len = snprintf(buf + ret, PAGE_SIZE - ret,
4073 "%s -> %s.%s\n",
4074 rdev_get_name(map->regulator), map->dev_name,
4075 map->supply);
4076 if (len >= 0)
4077 ret += len;
4078 if (ret > PAGE_SIZE) {
4079 ret = PAGE_SIZE;
4080 break;
4081 }
4082 }
4083
4084 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
4085
4086 kfree(buf);
4087
4088 return ret;
4089}
Stephen Boyd24751432012-02-20 22:50:42 -08004090#endif
Mark Brownba55a972011-08-23 17:39:10 +01004091
4092static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08004093#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01004094 .read = supply_map_read_file,
4095 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01004096#endif
Stephen Boyd24751432012-02-20 22:50:42 -08004097};
Mark Brownba55a972011-08-23 17:39:10 +01004098
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004099#ifdef CONFIG_DEBUG_FS
4100static void regulator_summary_show_subtree(struct seq_file *s,
4101 struct regulator_dev *rdev,
4102 int level)
4103{
4104 struct list_head *list = s->private;
4105 struct regulator_dev *child;
4106 struct regulation_constraints *c;
4107 struct regulator *consumer;
4108
4109 if (!rdev)
4110 return;
4111
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004112 seq_printf(s, "%*s%-*s %3d %4d %6d ",
4113 level * 3 + 1, "",
4114 30 - level * 3, rdev_get_name(rdev),
4115 rdev->use_count, rdev->open_count, rdev->bypass_count);
4116
Heiko Stübner23296092015-04-10 13:48:41 +02004117 seq_printf(s, "%5dmV ", _regulator_get_voltage(rdev) / 1000);
4118 seq_printf(s, "%5dmA ", _regulator_get_current_limit(rdev) / 1000);
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004119
4120 c = rdev->constraints;
4121 if (c) {
4122 switch (rdev->desc->type) {
4123 case REGULATOR_VOLTAGE:
4124 seq_printf(s, "%5dmV %5dmV ",
4125 c->min_uV / 1000, c->max_uV / 1000);
4126 break;
4127 case REGULATOR_CURRENT:
4128 seq_printf(s, "%5dmA %5dmA ",
4129 c->min_uA / 1000, c->max_uA / 1000);
4130 break;
4131 }
4132 }
4133
4134 seq_puts(s, "\n");
4135
4136 list_for_each_entry(consumer, &rdev->consumer_list, list) {
4137 if (consumer->dev->class == &regulator_class)
4138 continue;
4139
4140 seq_printf(s, "%*s%-*s ",
4141 (level + 1) * 3 + 1, "",
4142 30 - (level + 1) * 3, dev_name(consumer->dev));
4143
4144 switch (rdev->desc->type) {
4145 case REGULATOR_VOLTAGE:
Heiko Stübner23296092015-04-10 13:48:41 +02004146 seq_printf(s, "%37dmV %5dmV",
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004147 consumer->min_uV / 1000,
4148 consumer->max_uV / 1000);
4149 break;
4150 case REGULATOR_CURRENT:
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004151 break;
4152 }
4153
4154 seq_puts(s, "\n");
4155 }
4156
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004157 list_for_each_entry(child, list, list) {
4158 /* handle only non-root regulators supplied by current rdev */
4159 if (!child->supply || child->supply->rdev != rdev)
4160 continue;
4161
4162 regulator_summary_show_subtree(s, child, level + 1);
4163 }
4164}
4165
4166static int regulator_summary_show(struct seq_file *s, void *data)
4167{
4168 struct list_head *list = s->private;
4169 struct regulator_dev *rdev;
4170
Heiko Stübner23296092015-04-10 13:48:41 +02004171 seq_puts(s, " regulator use open bypass voltage current min max\n");
4172 seq_puts(s, "-------------------------------------------------------------------------------\n");
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004173
4174 mutex_lock(&regulator_list_mutex);
4175
4176 list_for_each_entry(rdev, list, list) {
4177 if (rdev->supply)
4178 continue;
4179
4180 regulator_summary_show_subtree(s, rdev, 0);
4181 }
4182
4183 mutex_unlock(&regulator_list_mutex);
4184
4185 return 0;
4186}
4187
4188static int regulator_summary_open(struct inode *inode, struct file *file)
4189{
4190 return single_open(file, regulator_summary_show, inode->i_private);
4191}
4192#endif
4193
4194static const struct file_operations regulator_summary_fops = {
4195#ifdef CONFIG_DEBUG_FS
4196 .open = regulator_summary_open,
4197 .read = seq_read,
4198 .llseek = seq_lseek,
4199 .release = single_release,
4200#endif
4201};
4202
Liam Girdwood414c70c2008-04-30 15:59:04 +01004203static int __init regulator_init(void)
4204{
Mark Brown34abbd62010-02-12 10:18:08 +00004205 int ret;
4206
Mark Brown34abbd62010-02-12 10:18:08 +00004207 ret = class_register(&regulator_class);
4208
Mark Brown1130e5b2010-12-21 23:49:31 +00004209 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08004210 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00004211 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01004212
Mark Brownf4d562c2012-02-20 21:01:04 +00004213 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
4214 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00004215
Heiko Stübner7c225ec2015-04-07 16:16:39 +02004216 debugfs_create_file("regulator_summary", 0444, debugfs_root,
4217 &regulator_list, &regulator_summary_fops);
4218
Mark Brown34abbd62010-02-12 10:18:08 +00004219 regulator_dummy_init();
4220
4221 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01004222}
4223
4224/* init early to allow our consumers to complete system booting */
4225core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00004226
Mark Brown609ca5f2015-08-10 19:43:47 +01004227static int __init regulator_late_cleanup(struct device *dev, void *data)
Mark Brownca725562009-03-16 19:36:34 +00004228{
Mark Brown609ca5f2015-08-10 19:43:47 +01004229 struct regulator_dev *rdev = dev_to_rdev(dev);
4230 const struct regulator_ops *ops = rdev->desc->ops;
4231 struct regulation_constraints *c = rdev->constraints;
Mark Brownca725562009-03-16 19:36:34 +00004232 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00004233
Mark Brown609ca5f2015-08-10 19:43:47 +01004234 if (c && c->always_on)
4235 return 0;
4236
4237 if (c && !(c->valid_ops_mask & REGULATOR_CHANGE_STATUS))
4238 return 0;
4239
4240 mutex_lock(&rdev->mutex);
4241
4242 if (rdev->use_count)
4243 goto unlock;
4244
4245 /* If we can't read the status assume it's on. */
4246 if (ops->is_enabled)
4247 enabled = ops->is_enabled(rdev);
4248 else
4249 enabled = 1;
4250
4251 if (!enabled)
4252 goto unlock;
4253
4254 if (have_full_constraints()) {
4255 /* We log since this may kill the system if it goes
4256 * wrong. */
4257 rdev_info(rdev, "disabling\n");
4258 ret = _regulator_do_disable(rdev);
4259 if (ret != 0)
4260 rdev_err(rdev, "couldn't disable: %d\n", ret);
4261 } else {
4262 /* The intention is that in future we will
4263 * assume that full constraints are provided
4264 * so warn even if we aren't going to do
4265 * anything here.
4266 */
4267 rdev_warn(rdev, "incomplete constraints, leaving on\n");
4268 }
4269
4270unlock:
4271 mutex_unlock(&rdev->mutex);
4272
4273 return 0;
4274}
4275
4276static int __init regulator_init_complete(void)
4277{
Mark Brown86f5fcf2012-07-06 18:19:13 +01004278 /*
4279 * Since DT doesn't provide an idiomatic mechanism for
4280 * enabling full constraints and since it's much more natural
4281 * with DT to provide them just assume that a DT enabled
4282 * system has full constraints.
4283 */
4284 if (of_have_populated_dt())
4285 has_full_constraints = true;
4286
Mark Brownca725562009-03-16 19:36:34 +00004287 /* If we have a full configuration then disable any regulators
Mark Browne9535832014-06-01 19:15:16 +01004288 * we have permission to change the status for and which are
4289 * not in use or always_on. This is effectively the default
4290 * for DT and ACPI as they have full constraints.
Mark Brownca725562009-03-16 19:36:34 +00004291 */
Mark Brown609ca5f2015-08-10 19:43:47 +01004292 class_for_each_device(&regulator_class, NULL, NULL,
4293 regulator_late_cleanup);
Mark Brownca725562009-03-16 19:36:34 +00004294
4295 return 0;
4296}
Saravana Kannanfd482a32014-04-23 18:10:50 -05004297late_initcall_sync(regulator_init_complete);