blob: a40055edaae456c3f59d0d7fa7e432c90e362c19 [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>
Rajendra Nayak69511a42011-11-18 16:47:20 +053027#include <linux/of.h>
Mark Brown65b19ce2012-04-15 11:16:05 +010028#include <linux/regmap.h>
Rajendra Nayak69511a42011-11-18 16:47:20 +053029#include <linux/regulator/of_regulator.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010030#include <linux/regulator/consumer.h>
31#include <linux/regulator/driver.h>
32#include <linux/regulator/machine.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040033#include <linux/module.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010034
Mark Brown02fa3ec2010-11-10 14:38:30 +000035#define CREATE_TRACE_POINTS
36#include <trace/events/regulator.h>
37
Mark Brown34abbd62010-02-12 10:18:08 +000038#include "dummy.h"
39
Mark Brown7d51a0d2011-06-09 16:06:37 +010040#define rdev_crit(rdev, fmt, ...) \
41 pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
Joe Perches5da84fd2010-11-30 05:53:48 -080042#define rdev_err(rdev, fmt, ...) \
43 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
44#define rdev_warn(rdev, fmt, ...) \
45 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
46#define rdev_info(rdev, fmt, ...) \
47 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
48#define rdev_dbg(rdev, fmt, ...) \
49 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
50
Liam Girdwood414c70c2008-04-30 15:59:04 +010051static DEFINE_MUTEX(regulator_list_mutex);
52static LIST_HEAD(regulator_list);
53static LIST_HEAD(regulator_map_list);
Kim, Milof19b00d2013-02-18 06:50:39 +000054static LIST_HEAD(regulator_ena_gpio_list);
Mark Brown21cf8912010-12-21 23:30:07 +000055static bool has_full_constraints;
Liam Girdwood414c70c2008-04-30 15:59:04 +010056
Mark Brown1130e5b2010-12-21 23:49:31 +000057static struct dentry *debugfs_root;
Mark Brown1130e5b2010-12-21 23:49:31 +000058
Mark Brown8dc53902008-12-31 12:52:40 +000059/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010060 * struct regulator_map
61 *
62 * Used to provide symbolic supply names to devices.
63 */
64struct regulator_map {
65 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010066 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010067 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010068 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010069};
70
Liam Girdwood414c70c2008-04-30 15:59:04 +010071/*
Kim, Milof19b00d2013-02-18 06:50:39 +000072 * struct regulator_enable_gpio
73 *
74 * Management for shared enable GPIO pin
75 */
76struct regulator_enable_gpio {
77 struct list_head list;
78 int gpio;
79 u32 enable_count; /* a number of enabled shared GPIO */
80 u32 request_count; /* a number of requested shared GPIO */
81 unsigned int ena_gpio_invert:1;
82};
83
84/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010085 * struct regulator
86 *
87 * One for each consumer device.
88 */
89struct regulator {
90 struct device *dev;
91 struct list_head list;
Mark Brown6492bc12012-04-19 13:19:07 +010092 unsigned int always_on:1;
Mark Brownf59c8f92012-08-31 10:36:37 -070093 unsigned int bypass:1;
Liam Girdwood414c70c2008-04-30 15:59:04 +010094 int uA_load;
95 int min_uV;
96 int max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +010097 char *supply_name;
98 struct device_attribute dev_attr;
99 struct regulator_dev *rdev;
Mark Brown5de70512011-06-19 13:33:16 +0100100 struct dentry *debugfs;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100101};
102
103static int _regulator_is_enabled(struct regulator_dev *rdev);
Mark Brown3801b862011-06-09 16:22:22 +0100104static int _regulator_disable(struct regulator_dev *rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100105static int _regulator_get_voltage(struct regulator_dev *rdev);
106static int _regulator_get_current_limit(struct regulator_dev *rdev);
107static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
108static void _notifier_call_chain(struct regulator_dev *rdev,
109 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +0000110static int _regulator_do_set_voltage(struct regulator_dev *rdev,
111 int min_uV, int max_uV);
Mark Brown3801b862011-06-09 16:22:22 +0100112static struct regulator *create_regulator(struct regulator_dev *rdev,
113 struct device *dev,
114 const char *supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100115
Mark Brown1083c392009-10-22 16:31:32 +0100116static const char *rdev_get_name(struct regulator_dev *rdev)
117{
118 if (rdev->constraints && rdev->constraints->name)
119 return rdev->constraints->name;
120 else if (rdev->desc->name)
121 return rdev->desc->name;
122 else
123 return "";
124}
125
Rajendra Nayak69511a42011-11-18 16:47:20 +0530126/**
127 * of_get_regulator - get a regulator device node based on supply name
128 * @dev: Device pointer for the consumer (of regulator) device
129 * @supply: regulator supply name
130 *
131 * Extract the regulator device node corresponding to the supply name.
Maxime Ripard167d41d2013-03-23 11:00:41 +0100132 * returns the device node corresponding to the regulator if found, else
Rajendra Nayak69511a42011-11-18 16:47:20 +0530133 * returns NULL.
134 */
135static struct device_node *of_get_regulator(struct device *dev, const char *supply)
136{
137 struct device_node *regnode = NULL;
138 char prop_name[32]; /* 32 is max size of property name */
139
140 dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
141
142 snprintf(prop_name, 32, "%s-supply", supply);
143 regnode = of_parse_phandle(dev->of_node, prop_name, 0);
144
145 if (!regnode) {
Rajendra Nayak16fbcc32012-03-16 15:50:21 +0530146 dev_dbg(dev, "Looking up %s property in node %s failed",
Rajendra Nayak69511a42011-11-18 16:47:20 +0530147 prop_name, dev->of_node->full_name);
148 return NULL;
149 }
150 return regnode;
151}
152
Mark Brown6492bc12012-04-19 13:19:07 +0100153static int _regulator_can_change_status(struct regulator_dev *rdev)
154{
155 if (!rdev->constraints)
156 return 0;
157
158 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
159 return 1;
160 else
161 return 0;
162}
163
Liam Girdwood414c70c2008-04-30 15:59:04 +0100164/* Platform voltage constraint check */
165static int regulator_check_voltage(struct regulator_dev *rdev,
166 int *min_uV, int *max_uV)
167{
168 BUG_ON(*min_uV > *max_uV);
169
170 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800171 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100172 return -ENODEV;
173 }
174 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800175 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100176 return -EPERM;
177 }
178
179 if (*max_uV > rdev->constraints->max_uV)
180 *max_uV = rdev->constraints->max_uV;
181 if (*min_uV < rdev->constraints->min_uV)
182 *min_uV = rdev->constraints->min_uV;
183
Mark Brown89f425e2011-07-12 11:20:37 +0900184 if (*min_uV > *max_uV) {
185 rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
Mark Brown54abd332011-07-21 15:07:37 +0100186 *min_uV, *max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100187 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900188 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100189
190 return 0;
191}
192
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100193/* Make sure we select a voltage that suits the needs of all
194 * regulator consumers
195 */
196static int regulator_check_consumers(struct regulator_dev *rdev,
197 int *min_uV, int *max_uV)
198{
199 struct regulator *regulator;
200
201 list_for_each_entry(regulator, &rdev->consumer_list, list) {
Mark Brown4aa922c2011-05-14 13:42:34 -0700202 /*
203 * Assume consumers that didn't say anything are OK
204 * with anything in the constraint range.
205 */
206 if (!regulator->min_uV && !regulator->max_uV)
207 continue;
208
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100209 if (*max_uV > regulator->max_uV)
210 *max_uV = regulator->max_uV;
211 if (*min_uV < regulator->min_uV)
212 *min_uV = regulator->min_uV;
213 }
214
Mark Browndd8004a2012-11-28 17:09:27 +0000215 if (*min_uV > *max_uV) {
Russ Dill9c7b4e82013-02-14 04:46:33 -0800216 rdev_err(rdev, "Restricting voltage, %u-%uuV\n",
217 *min_uV, *max_uV);
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100218 return -EINVAL;
Mark Browndd8004a2012-11-28 17:09:27 +0000219 }
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100220
221 return 0;
222}
223
Liam Girdwood414c70c2008-04-30 15:59:04 +0100224/* current constraint check */
225static int regulator_check_current_limit(struct regulator_dev *rdev,
226 int *min_uA, int *max_uA)
227{
228 BUG_ON(*min_uA > *max_uA);
229
230 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800231 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100232 return -ENODEV;
233 }
234 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800235 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100236 return -EPERM;
237 }
238
239 if (*max_uA > rdev->constraints->max_uA)
240 *max_uA = rdev->constraints->max_uA;
241 if (*min_uA < rdev->constraints->min_uA)
242 *min_uA = rdev->constraints->min_uA;
243
Mark Brown89f425e2011-07-12 11:20:37 +0900244 if (*min_uA > *max_uA) {
245 rdev_err(rdev, "unsupportable current range: %d-%duA\n",
Mark Brown54abd332011-07-21 15:07:37 +0100246 *min_uA, *max_uA);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100247 return -EINVAL;
Mark Brown89f425e2011-07-12 11:20:37 +0900248 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100249
250 return 0;
251}
252
253/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900254static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100255{
Mark Brown2c608232011-03-30 06:29:12 +0900256 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800257 case REGULATOR_MODE_FAST:
258 case REGULATOR_MODE_NORMAL:
259 case REGULATOR_MODE_IDLE:
260 case REGULATOR_MODE_STANDBY:
261 break;
262 default:
Mark Brown89f425e2011-07-12 11:20:37 +0900263 rdev_err(rdev, "invalid mode %x specified\n", *mode);
David Brownelle5735202008-11-16 11:46:56 -0800264 return -EINVAL;
265 }
266
Liam Girdwood414c70c2008-04-30 15:59:04 +0100267 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800268 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100269 return -ENODEV;
270 }
271 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800272 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100273 return -EPERM;
274 }
Mark Brown2c608232011-03-30 06:29:12 +0900275
276 /* The modes are bitmasks, the most power hungry modes having
277 * the lowest values. If the requested mode isn't supported
278 * try higher modes. */
279 while (*mode) {
280 if (rdev->constraints->valid_modes_mask & *mode)
281 return 0;
282 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100283 }
Mark Brown2c608232011-03-30 06:29:12 +0900284
285 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100286}
287
288/* dynamic regulator mode switching constraint check */
289static int regulator_check_drms(struct regulator_dev *rdev)
290{
291 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800292 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100293 return -ENODEV;
294 }
295 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800296 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100297 return -EPERM;
298 }
299 return 0;
300}
301
Liam Girdwood414c70c2008-04-30 15:59:04 +0100302static ssize_t regulator_uV_show(struct device *dev,
303 struct device_attribute *attr, char *buf)
304{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100305 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100306 ssize_t ret;
307
308 mutex_lock(&rdev->mutex);
309 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
310 mutex_unlock(&rdev->mutex);
311
312 return ret;
313}
David Brownell7ad68e22008-11-11 17:39:02 -0800314static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100315
316static ssize_t regulator_uA_show(struct device *dev,
317 struct device_attribute *attr, char *buf)
318{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100319 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100320
321 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
322}
David Brownell7ad68e22008-11-11 17:39:02 -0800323static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100324
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700325static ssize_t name_show(struct device *dev, struct device_attribute *attr,
326 char *buf)
Mark Brownbc558a62008-10-10 15:33:20 +0100327{
328 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100329
Mark Brown1083c392009-10-22 16:31:32 +0100330 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100331}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700332static DEVICE_ATTR_RO(name);
Mark Brownbc558a62008-10-10 15:33:20 +0100333
David Brownell4fca9542008-11-11 17:38:53 -0800334static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100335{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100336 switch (mode) {
337 case REGULATOR_MODE_FAST:
338 return sprintf(buf, "fast\n");
339 case REGULATOR_MODE_NORMAL:
340 return sprintf(buf, "normal\n");
341 case REGULATOR_MODE_IDLE:
342 return sprintf(buf, "idle\n");
343 case REGULATOR_MODE_STANDBY:
344 return sprintf(buf, "standby\n");
345 }
346 return sprintf(buf, "unknown\n");
347}
348
David Brownell4fca9542008-11-11 17:38:53 -0800349static ssize_t regulator_opmode_show(struct device *dev,
350 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100351{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100352 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100353
David Brownell4fca9542008-11-11 17:38:53 -0800354 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
355}
David Brownell7ad68e22008-11-11 17:39:02 -0800356static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800357
358static ssize_t regulator_print_state(char *buf, int state)
359{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100360 if (state > 0)
361 return sprintf(buf, "enabled\n");
362 else if (state == 0)
363 return sprintf(buf, "disabled\n");
364 else
365 return sprintf(buf, "unknown\n");
366}
367
David Brownell4fca9542008-11-11 17:38:53 -0800368static ssize_t regulator_state_show(struct device *dev,
369 struct device_attribute *attr, char *buf)
370{
371 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100372 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800373
Mark Brown93325462009-08-03 18:49:56 +0100374 mutex_lock(&rdev->mutex);
375 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
376 mutex_unlock(&rdev->mutex);
377
378 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800379}
David Brownell7ad68e22008-11-11 17:39:02 -0800380static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800381
David Brownell853116a2009-01-14 23:03:17 -0800382static ssize_t regulator_status_show(struct device *dev,
383 struct device_attribute *attr, char *buf)
384{
385 struct regulator_dev *rdev = dev_get_drvdata(dev);
386 int status;
387 char *label;
388
389 status = rdev->desc->ops->get_status(rdev);
390 if (status < 0)
391 return status;
392
393 switch (status) {
394 case REGULATOR_STATUS_OFF:
395 label = "off";
396 break;
397 case REGULATOR_STATUS_ON:
398 label = "on";
399 break;
400 case REGULATOR_STATUS_ERROR:
401 label = "error";
402 break;
403 case REGULATOR_STATUS_FAST:
404 label = "fast";
405 break;
406 case REGULATOR_STATUS_NORMAL:
407 label = "normal";
408 break;
409 case REGULATOR_STATUS_IDLE:
410 label = "idle";
411 break;
412 case REGULATOR_STATUS_STANDBY:
413 label = "standby";
414 break;
Mark Brownf59c8f92012-08-31 10:36:37 -0700415 case REGULATOR_STATUS_BYPASS:
416 label = "bypass";
417 break;
Krystian Garbaciak1beaf762012-07-12 13:53:35 +0100418 case REGULATOR_STATUS_UNDEFINED:
419 label = "undefined";
420 break;
David Brownell853116a2009-01-14 23:03:17 -0800421 default:
422 return -ERANGE;
423 }
424
425 return sprintf(buf, "%s\n", label);
426}
427static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
428
Liam Girdwood414c70c2008-04-30 15:59:04 +0100429static ssize_t regulator_min_uA_show(struct device *dev,
430 struct device_attribute *attr, char *buf)
431{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100432 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100433
434 if (!rdev->constraints)
435 return sprintf(buf, "constraint not defined\n");
436
437 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
438}
David Brownell7ad68e22008-11-11 17:39:02 -0800439static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100440
441static ssize_t regulator_max_uA_show(struct device *dev,
442 struct device_attribute *attr, char *buf)
443{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100444 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100445
446 if (!rdev->constraints)
447 return sprintf(buf, "constraint not defined\n");
448
449 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
450}
David Brownell7ad68e22008-11-11 17:39:02 -0800451static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100452
453static ssize_t regulator_min_uV_show(struct device *dev,
454 struct device_attribute *attr, char *buf)
455{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100456 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100457
458 if (!rdev->constraints)
459 return sprintf(buf, "constraint not defined\n");
460
461 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
462}
David Brownell7ad68e22008-11-11 17:39:02 -0800463static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100464
465static ssize_t regulator_max_uV_show(struct device *dev,
466 struct device_attribute *attr, char *buf)
467{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100468 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100469
470 if (!rdev->constraints)
471 return sprintf(buf, "constraint not defined\n");
472
473 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
474}
David Brownell7ad68e22008-11-11 17:39:02 -0800475static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100476
477static ssize_t regulator_total_uA_show(struct device *dev,
478 struct device_attribute *attr, char *buf)
479{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100480 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100481 struct regulator *regulator;
482 int uA = 0;
483
484 mutex_lock(&rdev->mutex);
485 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100486 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100487 mutex_unlock(&rdev->mutex);
488 return sprintf(buf, "%d\n", uA);
489}
David Brownell7ad68e22008-11-11 17:39:02 -0800490static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100491
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700492static ssize_t num_users_show(struct device *dev, struct device_attribute *attr,
493 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100494{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100495 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100496 return sprintf(buf, "%d\n", rdev->use_count);
497}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700498static DEVICE_ATTR_RO(num_users);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100499
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700500static ssize_t type_show(struct device *dev, struct device_attribute *attr,
501 char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100502{
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 switch (rdev->desc->type) {
506 case REGULATOR_VOLTAGE:
507 return sprintf(buf, "voltage\n");
508 case REGULATOR_CURRENT:
509 return sprintf(buf, "current\n");
510 }
511 return sprintf(buf, "unknown\n");
512}
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700513static DEVICE_ATTR_RO(type);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100514
515static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
516 struct device_attribute *attr, char *buf)
517{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100518 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100519
Liam Girdwood414c70c2008-04-30 15:59:04 +0100520 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
521}
David Brownell7ad68e22008-11-11 17:39:02 -0800522static DEVICE_ATTR(suspend_mem_microvolts, 0444,
523 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100524
525static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
526 struct device_attribute *attr, char *buf)
527{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100528 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100529
Liam Girdwood414c70c2008-04-30 15:59:04 +0100530 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
531}
David Brownell7ad68e22008-11-11 17:39:02 -0800532static DEVICE_ATTR(suspend_disk_microvolts, 0444,
533 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100534
535static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
536 struct device_attribute *attr, char *buf)
537{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100538 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100539
Liam Girdwood414c70c2008-04-30 15:59:04 +0100540 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
541}
David Brownell7ad68e22008-11-11 17:39:02 -0800542static DEVICE_ATTR(suspend_standby_microvolts, 0444,
543 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100544
Liam Girdwood414c70c2008-04-30 15:59:04 +0100545static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
546 struct device_attribute *attr, char *buf)
547{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100548 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100549
David Brownell4fca9542008-11-11 17:38:53 -0800550 return regulator_print_opmode(buf,
551 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100552}
David Brownell7ad68e22008-11-11 17:39:02 -0800553static DEVICE_ATTR(suspend_mem_mode, 0444,
554 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100555
556static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
557 struct device_attribute *attr, char *buf)
558{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100559 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100560
David Brownell4fca9542008-11-11 17:38:53 -0800561 return regulator_print_opmode(buf,
562 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100563}
David Brownell7ad68e22008-11-11 17:39:02 -0800564static DEVICE_ATTR(suspend_disk_mode, 0444,
565 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100566
567static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
568 struct device_attribute *attr, char *buf)
569{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100570 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100571
David Brownell4fca9542008-11-11 17:38:53 -0800572 return regulator_print_opmode(buf,
573 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100574}
David Brownell7ad68e22008-11-11 17:39:02 -0800575static DEVICE_ATTR(suspend_standby_mode, 0444,
576 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100577
578static ssize_t regulator_suspend_mem_state_show(struct device *dev,
579 struct device_attribute *attr, char *buf)
580{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100581 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100582
David Brownell4fca9542008-11-11 17:38:53 -0800583 return regulator_print_state(buf,
584 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100585}
David Brownell7ad68e22008-11-11 17:39:02 -0800586static DEVICE_ATTR(suspend_mem_state, 0444,
587 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100588
589static ssize_t regulator_suspend_disk_state_show(struct device *dev,
590 struct device_attribute *attr, char *buf)
591{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100592 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100593
David Brownell4fca9542008-11-11 17:38:53 -0800594 return regulator_print_state(buf,
595 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100596}
David Brownell7ad68e22008-11-11 17:39:02 -0800597static DEVICE_ATTR(suspend_disk_state, 0444,
598 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100599
600static ssize_t regulator_suspend_standby_state_show(struct device *dev,
601 struct device_attribute *attr, char *buf)
602{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100603 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100604
David Brownell4fca9542008-11-11 17:38:53 -0800605 return regulator_print_state(buf,
606 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100607}
David Brownell7ad68e22008-11-11 17:39:02 -0800608static DEVICE_ATTR(suspend_standby_state, 0444,
609 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100610
Mark Brownf59c8f92012-08-31 10:36:37 -0700611static ssize_t regulator_bypass_show(struct device *dev,
612 struct device_attribute *attr, char *buf)
613{
614 struct regulator_dev *rdev = dev_get_drvdata(dev);
615 const char *report;
616 bool bypass;
617 int ret;
618
619 ret = rdev->desc->ops->get_bypass(rdev, &bypass);
620
621 if (ret != 0)
622 report = "unknown";
623 else if (bypass)
624 report = "enabled";
625 else
626 report = "disabled";
627
628 return sprintf(buf, "%s\n", report);
629}
630static DEVICE_ATTR(bypass, 0444,
631 regulator_bypass_show, NULL);
David Brownell7ad68e22008-11-11 17:39:02 -0800632
633/*
634 * These are the only attributes are present for all regulators.
635 * Other attributes are a function of regulator functionality.
636 */
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700637static struct attribute *regulator_dev_attrs[] = {
638 &dev_attr_name.attr,
639 &dev_attr_num_users.attr,
640 &dev_attr_type.attr,
641 NULL,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100642};
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700643ATTRIBUTE_GROUPS(regulator_dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100644
645static void regulator_dev_release(struct device *dev)
646{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100647 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100648 kfree(rdev);
649}
650
651static struct class regulator_class = {
652 .name = "regulator",
653 .dev_release = regulator_dev_release,
Greg Kroah-Hartman587cea22013-07-24 15:05:21 -0700654 .dev_groups = regulator_dev_groups,
Liam Girdwood414c70c2008-04-30 15:59:04 +0100655};
656
657/* Calculate the new optimum regulator operating mode based on the new total
658 * consumer load. All locks held by caller */
659static void drms_uA_update(struct regulator_dev *rdev)
660{
661 struct regulator *sibling;
662 int current_uA = 0, output_uV, input_uV, err;
663 unsigned int mode;
664
665 err = regulator_check_drms(rdev);
666 if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
Mark Brown476c2d82010-12-10 17:28:07 +0000667 (!rdev->desc->ops->get_voltage &&
668 !rdev->desc->ops->get_voltage_sel) ||
669 !rdev->desc->ops->set_mode)
Dan Carpenter036de8e2009-04-08 13:52:39 +0300670 return;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100671
672 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000673 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100674 if (output_uV <= 0)
675 return;
676
677 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000678 input_uV = 0;
679 if (rdev->supply)
Axel Lin3f24f5a2012-04-13 21:35:05 +0800680 input_uV = regulator_get_voltage(rdev->supply);
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000681 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100682 input_uV = rdev->constraints->input_uV;
683 if (input_uV <= 0)
684 return;
685
686 /* calc total requested load */
687 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100688 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100689
690 /* now get the optimum mode for our new total regulator load */
691 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
692 output_uV, current_uA);
693
694 /* check the new mode is allowed */
Mark Brown2c608232011-03-30 06:29:12 +0900695 err = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100696 if (err == 0)
697 rdev->desc->ops->set_mode(rdev, mode);
698}
699
700static int suspend_set_state(struct regulator_dev *rdev,
701 struct regulator_state *rstate)
702{
703 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100704
705 /* If we have no suspend mode configration don't set anything;
Axel Lin8ac0e952012-04-14 09:14:34 +0800706 * only warn if the driver implements set_suspend_voltage or
707 * set_suspend_mode callback.
Mark Brown638f85c2009-10-22 16:31:33 +0100708 */
709 if (!rstate->enabled && !rstate->disabled) {
Axel Lin8ac0e952012-04-14 09:14:34 +0800710 if (rdev->desc->ops->set_suspend_voltage ||
711 rdev->desc->ops->set_suspend_mode)
Joe Perches5da84fd2010-11-30 05:53:48 -0800712 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100713 return 0;
714 }
715
716 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800717 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100718 return -EINVAL;
719 }
720
Axel Lin8ac0e952012-04-14 09:14:34 +0800721 if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100722 ret = rdev->desc->ops->set_suspend_enable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800723 else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100724 ret = rdev->desc->ops->set_suspend_disable(rdev);
Axel Lin8ac0e952012-04-14 09:14:34 +0800725 else /* OK if set_suspend_enable or set_suspend_disable is NULL */
726 ret = 0;
727
Liam Girdwood414c70c2008-04-30 15:59:04 +0100728 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800729 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100730 return ret;
731 }
732
733 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
734 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
735 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800736 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100737 return ret;
738 }
739 }
740
741 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
742 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
743 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800744 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100745 return ret;
746 }
747 }
748 return ret;
749}
750
751/* locks held by caller */
752static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
753{
754 if (!rdev->constraints)
755 return -EINVAL;
756
757 switch (state) {
758 case PM_SUSPEND_STANDBY:
759 return suspend_set_state(rdev,
760 &rdev->constraints->state_standby);
761 case PM_SUSPEND_MEM:
762 return suspend_set_state(rdev,
763 &rdev->constraints->state_mem);
764 case PM_SUSPEND_MAX:
765 return suspend_set_state(rdev,
766 &rdev->constraints->state_disk);
767 default:
768 return -EINVAL;
769 }
770}
771
772static void print_constraints(struct regulator_dev *rdev)
773{
774 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000775 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100776 int count = 0;
777 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100778
Mark Brown8f031b42009-10-22 16:31:31 +0100779 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100780 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100781 count += sprintf(buf + count, "%d mV ",
782 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100783 else
Mark Brown8f031b42009-10-22 16:31:31 +0100784 count += sprintf(buf + count, "%d <--> %d mV ",
785 constraints->min_uV / 1000,
786 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100787 }
Mark Brown8f031b42009-10-22 16:31:31 +0100788
789 if (!constraints->min_uV ||
790 constraints->min_uV != constraints->max_uV) {
791 ret = _regulator_get_voltage(rdev);
792 if (ret > 0)
793 count += sprintf(buf + count, "at %d mV ", ret / 1000);
794 }
795
Mark Brownbf5892a2011-05-08 22:13:37 +0100796 if (constraints->uV_offset)
797 count += sprintf(buf, "%dmV offset ",
798 constraints->uV_offset / 1000);
799
Mark Brown8f031b42009-10-22 16:31:31 +0100800 if (constraints->min_uA && constraints->max_uA) {
801 if (constraints->min_uA == constraints->max_uA)
802 count += sprintf(buf + count, "%d mA ",
803 constraints->min_uA / 1000);
804 else
805 count += sprintf(buf + count, "%d <--> %d mA ",
806 constraints->min_uA / 1000,
807 constraints->max_uA / 1000);
808 }
809
810 if (!constraints->min_uA ||
811 constraints->min_uA != constraints->max_uA) {
812 ret = _regulator_get_current_limit(rdev);
813 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400814 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100815 }
816
Liam Girdwood414c70c2008-04-30 15:59:04 +0100817 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
818 count += sprintf(buf + count, "fast ");
819 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
820 count += sprintf(buf + count, "normal ");
821 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
822 count += sprintf(buf + count, "idle ");
823 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
824 count += sprintf(buf + count, "standby");
825
Uwe Kleine-König215b8b02012-08-07 21:01:37 +0200826 if (!count)
827 sprintf(buf, "no parameters");
828
Mark Brown13ce29f2010-12-17 16:04:12 +0000829 rdev_info(rdev, "%s\n", buf);
Mark Brown4a682922012-02-09 13:26:13 +0000830
831 if ((constraints->min_uV != constraints->max_uV) &&
832 !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
833 rdev_warn(rdev,
834 "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100835}
836
Mark Browne79055d2009-10-19 15:53:50 +0100837static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100838 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100839{
840 struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100841 int ret;
842
843 /* do we need to apply the constraint voltage */
844 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000845 rdev->constraints->min_uV == rdev->constraints->max_uV) {
846 ret = _regulator_do_set_voltage(rdev,
847 rdev->constraints->min_uV,
848 rdev->constraints->max_uV);
849 if (ret < 0) {
850 rdev_err(rdev, "failed to apply %duV constraint\n",
851 rdev->constraints->min_uV);
Mark Brown75790252010-12-12 14:25:50 +0000852 return ret;
853 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100854 }
Mark Browne79055d2009-10-19 15:53:50 +0100855
856 /* constrain machine-level voltage specs to fit
857 * the actual range supported by this regulator.
858 */
859 if (ops->list_voltage && rdev->desc->n_voltages) {
860 int count = rdev->desc->n_voltages;
861 int i;
862 int min_uV = INT_MAX;
863 int max_uV = INT_MIN;
864 int cmin = constraints->min_uV;
865 int cmax = constraints->max_uV;
866
867 /* it's safe to autoconfigure fixed-voltage supplies
868 and the constraints are used by list_voltage. */
869 if (count == 1 && !cmin) {
870 cmin = 1;
871 cmax = INT_MAX;
872 constraints->min_uV = cmin;
873 constraints->max_uV = cmax;
874 }
875
876 /* voltage constraints are optional */
877 if ((cmin == 0) && (cmax == 0))
878 return 0;
879
880 /* else require explicit machine-level constraints */
881 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800882 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100883 return -EINVAL;
884 }
885
886 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
887 for (i = 0; i < count; i++) {
888 int value;
889
890 value = ops->list_voltage(rdev, i);
891 if (value <= 0)
892 continue;
893
894 /* maybe adjust [min_uV..max_uV] */
895 if (value >= cmin && value < min_uV)
896 min_uV = value;
897 if (value <= cmax && value > max_uV)
898 max_uV = value;
899 }
900
901 /* final: [min_uV..max_uV] valid iff constraints valid */
902 if (max_uV < min_uV) {
Mark Brownfff15be2012-11-27 18:48:56 +0000903 rdev_err(rdev,
904 "unsupportable voltage constraints %u-%uuV\n",
905 min_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100906 return -EINVAL;
907 }
908
909 /* use regulator's subset of machine constraints */
910 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800911 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
912 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100913 constraints->min_uV = min_uV;
914 }
915 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800916 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
917 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100918 constraints->max_uV = max_uV;
919 }
920 }
921
922 return 0;
923}
924
Liam Girdwooda5766f12008-10-10 13:22:20 +0100925/**
926 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000927 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000928 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100929 *
930 * Allows platform initialisation code to define and constrain
931 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
932 * Constraints *must* be set by platform code in order for some
933 * regulator operations to proceed i.e. set_voltage, set_current_limit,
934 * set_mode.
935 */
936static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000937 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100938{
939 int ret = 0;
Mark Browne5fda262008-09-09 16:21:20 +0100940 struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100941
Mark Brown9a8f5e02011-11-29 18:11:19 +0000942 if (constraints)
943 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
944 GFP_KERNEL);
945 else
946 rdev->constraints = kzalloc(sizeof(*constraints),
947 GFP_KERNEL);
Mark Brownf8c12fe2010-11-29 15:55:17 +0000948 if (!rdev->constraints)
949 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100950
Mark Brownf8c12fe2010-11-29 15:55:17 +0000951 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100952 if (ret != 0)
953 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800954
Liam Girdwooda5766f12008-10-10 13:22:20 +0100955 /* do we need to setup our suspend state */
Mark Brown9a8f5e02011-11-29 18:11:19 +0000956 if (rdev->constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +0000957 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +0100958 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800959 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +0100960 goto out;
961 }
962 }
Liam Girdwooda5766f12008-10-10 13:22:20 +0100963
Mark Brown9a8f5e02011-11-29 18:11:19 +0000964 if (rdev->constraints->initial_mode) {
Mark Browna3084662009-02-26 19:24:19 +0000965 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800966 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +0000967 ret = -EINVAL;
968 goto out;
969 }
970
Mark Brownf8c12fe2010-11-29 15:55:17 +0000971 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +0000972 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800973 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +0000974 goto out;
975 }
976 }
977
Mark Browncacf90f2009-03-02 16:32:46 +0000978 /* If the constraints say the regulator should be on at this point
979 * and we have control then make sure it is enabled.
980 */
Mark Brownf8c12fe2010-11-29 15:55:17 +0000981 if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
982 ops->enable) {
Mark Browne5fda262008-09-09 16:21:20 +0100983 ret = ops->enable(rdev);
984 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800985 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +0100986 goto out;
987 }
988 }
989
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +0530990 if ((rdev->constraints->ramp_delay || rdev->constraints->ramp_disable)
991 && ops->set_ramp_delay) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +0530992 ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
993 if (ret < 0) {
994 rdev_err(rdev, "failed to set ramp_delay\n");
995 goto out;
996 }
997 }
998
Liam Girdwooda5766f12008-10-10 13:22:20 +0100999 print_constraints(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08001000 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001001out:
Axel Lin1a6958e72011-07-15 10:50:43 +08001002 kfree(rdev->constraints);
1003 rdev->constraints = NULL;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001004 return ret;
1005}
1006
1007/**
1008 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +00001009 * @rdev: regulator name
1010 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +01001011 *
1012 * Called by platform initialisation code to set the supply regulator for this
1013 * regulator. This ensures that a regulators supply will also be enabled by the
1014 * core if it's child is enabled.
1015 */
1016static int set_supply(struct regulator_dev *rdev,
Mark Brown3801b862011-06-09 16:22:22 +01001017 struct regulator_dev *supply_rdev)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001018{
1019 int err;
1020
Mark Brown3801b862011-06-09 16:22:22 +01001021 rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
1022
1023 rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
Axel Lin32c78de2011-12-29 17:03:20 +08001024 if (rdev->supply == NULL) {
1025 err = -ENOMEM;
Mark Brown3801b862011-06-09 16:22:22 +01001026 return err;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001027 }
Laxman Dewangan57ad526a2012-07-23 20:35:46 +05301028 supply_rdev->open_count++;
Mark Brown3801b862011-06-09 16:22:22 +01001029
1030 return 0;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001031}
1032
1033/**
Randy Dunlap06c63f92010-11-18 15:02:26 -08001034 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +00001035 * @rdev: regulator source
Mark Brown40f92442009-06-17 17:56:39 +01001036 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +00001037 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +01001038 *
1039 * Allows platform initialisation code to map physical regulator
1040 * sources to symbolic names for supplies for use by devices. Devices
1041 * should use these symbolic names to request regulators, avoiding the
1042 * need to provide board-specific regulator names as platform data.
1043 */
1044static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown737f3602012-02-02 00:10:51 +00001045 const char *consumer_dev_name,
1046 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +01001047{
1048 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +01001049 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001050
1051 if (supply == NULL)
1052 return -EINVAL;
1053
Mark Brown9ed20992009-07-21 16:00:26 +01001054 if (consumer_dev_name != NULL)
1055 has_dev = 1;
1056 else
1057 has_dev = 0;
1058
David Brownell6001e132008-12-31 12:54:19 +00001059 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +03001060 if (node->dev_name && consumer_dev_name) {
1061 if (strcmp(node->dev_name, consumer_dev_name) != 0)
1062 continue;
1063 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +00001064 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +03001065 }
1066
David Brownell6001e132008-12-31 12:54:19 +00001067 if (strcmp(node->supply, supply) != 0)
1068 continue;
1069
Mark Brown737f3602012-02-02 00:10:51 +00001070 pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
1071 consumer_dev_name,
1072 dev_name(&node->regulator->dev),
1073 node->regulator->desc->name,
1074 supply,
1075 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +00001076 return -EBUSY;
1077 }
1078
Mark Brown9ed20992009-07-21 16:00:26 +01001079 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +01001080 if (node == NULL)
1081 return -ENOMEM;
1082
1083 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001084 node->supply = supply;
1085
Mark Brown9ed20992009-07-21 16:00:26 +01001086 if (has_dev) {
1087 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1088 if (node->dev_name == NULL) {
1089 kfree(node);
1090 return -ENOMEM;
1091 }
Mark Brown40f92442009-06-17 17:56:39 +01001092 }
1093
Liam Girdwooda5766f12008-10-10 13:22:20 +01001094 list_add(&node->list, &regulator_map_list);
1095 return 0;
1096}
1097
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001098static void unset_regulator_supplies(struct regulator_dev *rdev)
1099{
1100 struct regulator_map *node, *n;
1101
1102 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1103 if (rdev == node->regulator) {
1104 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001105 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001106 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001107 }
1108 }
1109}
1110
Mark Brownf5726ae2011-06-09 16:22:20 +01001111#define REG_STR_SIZE 64
Liam Girdwood414c70c2008-04-30 15:59:04 +01001112
1113static struct regulator *create_regulator(struct regulator_dev *rdev,
1114 struct device *dev,
1115 const char *supply_name)
1116{
1117 struct regulator *regulator;
1118 char buf[REG_STR_SIZE];
1119 int err, size;
1120
1121 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1122 if (regulator == NULL)
1123 return NULL;
1124
1125 mutex_lock(&rdev->mutex);
1126 regulator->rdev = rdev;
1127 list_add(&regulator->list, &rdev->consumer_list);
1128
1129 if (dev) {
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001130 regulator->dev = dev;
1131
Mark Brown222cc7b2012-06-22 11:39:16 +01001132 /* Add a link to the device sysfs entry */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001133 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1134 dev->kobj.name, supply_name);
1135 if (size >= REG_STR_SIZE)
Mark Brown222cc7b2012-06-22 11:39:16 +01001136 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001137
1138 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1139 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001140 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001141
1142 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1143 buf);
1144 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001145 rdev_warn(rdev, "could not add device link %s err %d\n",
1146 dev->kobj.name, err);
Mark Brown222cc7b2012-06-22 11:39:16 +01001147 /* non-fatal */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001148 }
Mark Brown5de70512011-06-19 13:33:16 +01001149 } else {
1150 regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
1151 if (regulator->supply_name == NULL)
Mark Brown222cc7b2012-06-22 11:39:16 +01001152 goto overflow_err;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001153 }
Mark Brown5de70512011-06-19 13:33:16 +01001154
Mark Brown5de70512011-06-19 13:33:16 +01001155 regulator->debugfs = debugfs_create_dir(regulator->supply_name,
1156 rdev->debugfs);
Stephen Boyd24751432012-02-20 22:50:42 -08001157 if (!regulator->debugfs) {
Mark Brown5de70512011-06-19 13:33:16 +01001158 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown5de70512011-06-19 13:33:16 +01001159 } else {
1160 debugfs_create_u32("uA_load", 0444, regulator->debugfs,
1161 &regulator->uA_load);
1162 debugfs_create_u32("min_uV", 0444, regulator->debugfs,
1163 &regulator->min_uV);
1164 debugfs_create_u32("max_uV", 0444, regulator->debugfs,
1165 &regulator->max_uV);
1166 }
Mark Brown5de70512011-06-19 13:33:16 +01001167
Mark Brown6492bc12012-04-19 13:19:07 +01001168 /*
1169 * Check now if the regulator is an always on regulator - if
1170 * it is then we don't need to do nearly so much work for
1171 * enable/disable calls.
1172 */
1173 if (!_regulator_can_change_status(rdev) &&
1174 _regulator_is_enabled(rdev))
1175 regulator->always_on = true;
1176
Liam Girdwood414c70c2008-04-30 15:59:04 +01001177 mutex_unlock(&rdev->mutex);
1178 return regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001179overflow_err:
1180 list_del(&regulator->list);
1181 kfree(regulator);
1182 mutex_unlock(&rdev->mutex);
1183 return NULL;
1184}
1185
Mark Brown31aae2b2009-12-21 12:21:52 +00001186static int _regulator_get_enable_time(struct regulator_dev *rdev)
1187{
1188 if (!rdev->desc->ops->enable_time)
Mark Brown79511ed2012-06-27 14:23:10 +01001189 return rdev->desc->enable_time;
Mark Brown31aae2b2009-12-21 12:21:52 +00001190 return rdev->desc->ops->enable_time(rdev);
1191}
1192
Rajendra Nayak69511a42011-11-18 16:47:20 +05301193static struct regulator_dev *regulator_dev_lookup(struct device *dev,
Mark Brown6d191a52012-03-29 14:19:02 +01001194 const char *supply,
1195 int *ret)
Rajendra Nayak69511a42011-11-18 16:47:20 +05301196{
1197 struct regulator_dev *r;
1198 struct device_node *node;
Mark Brown576ca4362012-03-30 12:24:37 +01001199 struct regulator_map *map;
1200 const char *devname = NULL;
Rajendra Nayak69511a42011-11-18 16:47:20 +05301201
1202 /* first do a dt based lookup */
1203 if (dev && dev->of_node) {
1204 node = of_get_regulator(dev, supply);
Mark Brown6d191a52012-03-29 14:19:02 +01001205 if (node) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05301206 list_for_each_entry(r, &regulator_list, list)
1207 if (r->dev.parent &&
1208 node == r->dev.of_node)
1209 return r;
Mark Brown6d191a52012-03-29 14:19:02 +01001210 } else {
1211 /*
1212 * If we couldn't even get the node then it's
1213 * not just that the device didn't register
1214 * yet, there's no node and we'll never
1215 * succeed.
1216 */
1217 *ret = -ENODEV;
1218 }
Rajendra Nayak69511a42011-11-18 16:47:20 +05301219 }
1220
1221 /* if not found, try doing it non-dt way */
Mark Brown576ca4362012-03-30 12:24:37 +01001222 if (dev)
1223 devname = dev_name(dev);
1224
Rajendra Nayak69511a42011-11-18 16:47:20 +05301225 list_for_each_entry(r, &regulator_list, list)
1226 if (strcmp(rdev_get_name(r), supply) == 0)
1227 return r;
1228
Mark Brown576ca4362012-03-30 12:24:37 +01001229 list_for_each_entry(map, &regulator_map_list, list) {
1230 /* If the mapping has a device set up it must match */
1231 if (map->dev_name &&
1232 (!devname || strcmp(map->dev_name, devname)))
1233 continue;
1234
1235 if (strcmp(map->supply, supply) == 0)
1236 return map->regulator;
1237 }
1238
1239
Rajendra Nayak69511a42011-11-18 16:47:20 +05301240 return NULL;
1241}
1242
Mark Brown5ffbd132009-07-21 16:00:23 +01001243/* Internal regulator request function */
1244static struct regulator *_regulator_get(struct device *dev, const char *id,
Mark Brown4ddfebd2013-09-13 19:50:37 +01001245 bool exclusive, bool allow_dummy)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001246{
1247 struct regulator_dev *rdev;
Mark Brown04bf3012012-03-11 13:07:56 +00001248 struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
Mark Brown40f92442009-06-17 17:56:39 +01001249 const char *devname = NULL;
Mark Brown9b92da12013-09-20 12:23:30 +01001250 int ret = -EPROBE_DEFER;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001251
1252 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001253 pr_err("get() with no identifier\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001254 return regulator;
1255 }
1256
Mark Brown40f92442009-06-17 17:56:39 +01001257 if (dev)
1258 devname = dev_name(dev);
1259
Liam Girdwood414c70c2008-04-30 15:59:04 +01001260 mutex_lock(&regulator_list_mutex);
1261
Mark Brown6d191a52012-03-29 14:19:02 +01001262 rdev = regulator_dev_lookup(dev, id, &ret);
Rajendra Nayak69511a42011-11-18 16:47:20 +05301263 if (rdev)
1264 goto found;
1265
Mark Brownef60abb2013-09-23 16:12:52 +01001266 regulator = ERR_PTR(ret);
1267
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001268 /*
1269 * If we have return value from dev_lookup fail, we do not expect to
1270 * succeed, so, quit with appropriate error value
1271 */
Mark Brown4ddfebd2013-09-13 19:50:37 +01001272 if (ret && ret != -ENODEV) {
Nishanth Menon1e4b5452013-04-16 16:45:16 -05001273 goto out;
1274 }
1275
Mark Brown34abbd62010-02-12 10:18:08 +00001276 if (!devname)
1277 devname = "deviceless";
1278
Mark Brown4ddfebd2013-09-13 19:50:37 +01001279 /*
1280 * Assume that a regulator is physically present and enabled
1281 * even if it isn't hooked up and just provide a dummy.
Mark Brown34abbd62010-02-12 10:18:08 +00001282 */
Mark Brown4ddfebd2013-09-13 19:50:37 +01001283 if (has_full_constraints && allow_dummy) {
1284 /*
1285 * Log the substitution if regulator configuration is
1286 * not complete to help development.
1287 */
1288 if (!has_full_constraints)
1289 pr_warn("%s supply %s not found, using dummy regulator\n",
1290 devname, id);
1291
Mark Brown34abbd62010-02-12 10:18:08 +00001292 rdev = dummy_regulator_rdev;
1293 goto found;
Mark Brown4ddfebd2013-09-13 19:50:37 +01001294 } else {
1295 dev_err(dev, "dummy supplies not allowed\n");
Mark Brown34abbd62010-02-12 10:18:08 +00001296 }
Mark Brown34abbd62010-02-12 10:18:08 +00001297
Liam Girdwood414c70c2008-04-30 15:59:04 +01001298 mutex_unlock(&regulator_list_mutex);
1299 return regulator;
1300
1301found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001302 if (rdev->exclusive) {
1303 regulator = ERR_PTR(-EPERM);
1304 goto out;
1305 }
1306
1307 if (exclusive && rdev->open_count) {
1308 regulator = ERR_PTR(-EBUSY);
1309 goto out;
1310 }
1311
Liam Girdwooda5766f12008-10-10 13:22:20 +01001312 if (!try_module_get(rdev->owner))
1313 goto out;
1314
Liam Girdwood414c70c2008-04-30 15:59:04 +01001315 regulator = create_regulator(rdev, dev, id);
1316 if (regulator == NULL) {
1317 regulator = ERR_PTR(-ENOMEM);
1318 module_put(rdev->owner);
Axel Linbcda4322011-12-29 17:02:08 +08001319 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001320 }
1321
Mark Brown5ffbd132009-07-21 16:00:23 +01001322 rdev->open_count++;
1323 if (exclusive) {
1324 rdev->exclusive = 1;
1325
1326 ret = _regulator_is_enabled(rdev);
1327 if (ret > 0)
1328 rdev->use_count = 1;
1329 else
1330 rdev->use_count = 0;
1331 }
1332
Liam Girdwooda5766f12008-10-10 13:22:20 +01001333out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001334 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001335
Liam Girdwood414c70c2008-04-30 15:59:04 +01001336 return regulator;
1337}
Mark Brown5ffbd132009-07-21 16:00:23 +01001338
1339/**
1340 * regulator_get - lookup and obtain a reference to a regulator.
1341 * @dev: device for regulator "consumer"
1342 * @id: Supply name or regulator ID.
1343 *
1344 * Returns a struct regulator corresponding to the regulator producer,
1345 * or IS_ERR() condition containing errno.
1346 *
1347 * Use of supply names configured via regulator_set_device_supply() is
1348 * strongly encouraged. It is recommended that the supply name used
1349 * should match the name used for the supply and/or the relevant
1350 * device pins in the datasheet.
1351 */
1352struct regulator *regulator_get(struct device *dev, const char *id)
1353{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001354 return _regulator_get(dev, id, false, true);
Mark Brown5ffbd132009-07-21 16:00:23 +01001355}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001356EXPORT_SYMBOL_GPL(regulator_get);
1357
Stephen Boyd070b9072012-01-16 19:39:58 -08001358static void devm_regulator_release(struct device *dev, void *res)
1359{
1360 regulator_put(*(struct regulator **)res);
1361}
1362
1363/**
1364 * devm_regulator_get - Resource managed regulator_get()
1365 * @dev: device for regulator "consumer"
1366 * @id: Supply name or regulator ID.
1367 *
1368 * Managed regulator_get(). Regulators returned from this function are
1369 * automatically regulator_put() on driver detach. See regulator_get() for more
1370 * information.
1371 */
1372struct regulator *devm_regulator_get(struct device *dev, const char *id)
1373{
1374 struct regulator **ptr, *regulator;
1375
1376 ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
1377 if (!ptr)
1378 return ERR_PTR(-ENOMEM);
1379
1380 regulator = regulator_get(dev, id);
1381 if (!IS_ERR(regulator)) {
1382 *ptr = regulator;
1383 devres_add(dev, ptr);
1384 } else {
1385 devres_free(ptr);
1386 }
1387
1388 return regulator;
1389}
1390EXPORT_SYMBOL_GPL(devm_regulator_get);
1391
Liam Girdwood414c70c2008-04-30 15:59:04 +01001392/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001393 * regulator_get_exclusive - obtain exclusive access to a regulator.
1394 * @dev: device for regulator "consumer"
1395 * @id: Supply name or regulator ID.
1396 *
1397 * Returns a struct regulator corresponding to the regulator producer,
1398 * or IS_ERR() condition containing errno. Other consumers will be
1399 * unable to obtain this reference is held and the use count for the
1400 * regulator will be initialised to reflect the current state of the
1401 * regulator.
1402 *
1403 * This is intended for use by consumers which cannot tolerate shared
1404 * use of the regulator such as those which need to force the
1405 * regulator off for correct operation of the hardware they are
1406 * controlling.
1407 *
1408 * Use of supply names configured via regulator_set_device_supply() is
1409 * strongly encouraged. It is recommended that the supply name used
1410 * should match the name used for the supply and/or the relevant
1411 * device pins in the datasheet.
1412 */
1413struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1414{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001415 return _regulator_get(dev, id, true, false);
Mark Brown5ffbd132009-07-21 16:00:23 +01001416}
1417EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1418
Mark Brownde1dd9f2013-07-29 21:42:42 +01001419/**
1420 * regulator_get_optional - obtain optional access to a regulator.
1421 * @dev: device for regulator "consumer"
1422 * @id: Supply name or regulator ID.
1423 *
1424 * Returns a struct regulator corresponding to the regulator producer,
1425 * or IS_ERR() condition containing errno. Other consumers will be
1426 * unable to obtain this reference is held and the use count for the
1427 * regulator will be initialised to reflect the current state of the
1428 * regulator.
1429 *
1430 * This is intended for use by consumers for devices which can have
1431 * some supplies unconnected in normal use, such as some MMC devices.
1432 * It can allow the regulator core to provide stub supplies for other
1433 * supplies requested using normal regulator_get() calls without
1434 * disrupting the operation of drivers that can handle absent
1435 * supplies.
1436 *
1437 * Use of supply names configured via regulator_set_device_supply() is
1438 * strongly encouraged. It is recommended that the supply name used
1439 * should match the name used for the supply and/or the relevant
1440 * device pins in the datasheet.
1441 */
1442struct regulator *regulator_get_optional(struct device *dev, const char *id)
1443{
Mark Brown4ddfebd2013-09-13 19:50:37 +01001444 return _regulator_get(dev, id, false, false);
Mark Brownde1dd9f2013-07-29 21:42:42 +01001445}
1446EXPORT_SYMBOL_GPL(regulator_get_optional);
1447
1448/**
1449 * devm_regulator_get_optional - Resource managed regulator_get_optional()
1450 * @dev: device for regulator "consumer"
1451 * @id: Supply name or regulator ID.
1452 *
1453 * Managed regulator_get_optional(). Regulators returned from this
1454 * function are automatically regulator_put() on driver detach. See
1455 * regulator_get_optional() for more information.
1456 */
1457struct regulator *devm_regulator_get_optional(struct device *dev,
1458 const char *id)
1459{
1460 struct regulator **ptr, *regulator;
1461
1462 ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
1463 if (!ptr)
1464 return ERR_PTR(-ENOMEM);
1465
1466 regulator = regulator_get_optional(dev, id);
1467 if (!IS_ERR(regulator)) {
1468 *ptr = regulator;
1469 devres_add(dev, ptr);
1470 } else {
1471 devres_free(ptr);
1472 }
1473
1474 return regulator;
1475}
1476EXPORT_SYMBOL_GPL(devm_regulator_get_optional);
1477
Charles Keepax23ff2f02012-11-14 09:39:31 +00001478/* Locks held by regulator_put() */
1479static void _regulator_put(struct regulator *regulator)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001480{
1481 struct regulator_dev *rdev;
1482
1483 if (regulator == NULL || IS_ERR(regulator))
1484 return;
1485
Liam Girdwood414c70c2008-04-30 15:59:04 +01001486 rdev = regulator->rdev;
1487
Mark Brown5de70512011-06-19 13:33:16 +01001488 debugfs_remove_recursive(regulator->debugfs);
Mark Brown5de70512011-06-19 13:33:16 +01001489
Liam Girdwood414c70c2008-04-30 15:59:04 +01001490 /* remove any sysfs entries */
Shawn Guoe2c98ea2012-07-05 14:19:42 +08001491 if (regulator->dev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001492 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
Mark Brown5de70512011-06-19 13:33:16 +01001493 kfree(regulator->supply_name);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001494 list_del(&regulator->list);
1495 kfree(regulator);
1496
Mark Brown5ffbd132009-07-21 16:00:23 +01001497 rdev->open_count--;
1498 rdev->exclusive = 0;
1499
Liam Girdwood414c70c2008-04-30 15:59:04 +01001500 module_put(rdev->owner);
Charles Keepax23ff2f02012-11-14 09:39:31 +00001501}
1502
1503/**
Matthias Kaehlcke9efdd272013-08-25 17:54:13 +02001504 * devm_regulator_get_exclusive - Resource managed regulator_get_exclusive()
1505 * @dev: device for regulator "consumer"
1506 * @id: Supply name or regulator ID.
1507 *
1508 * Managed regulator_get_exclusive(). Regulators returned from this function
1509 * are automatically regulator_put() on driver detach. See regulator_get() for
1510 * more information.
1511 */
1512struct regulator *devm_regulator_get_exclusive(struct device *dev,
1513 const char *id)
1514{
1515 struct regulator **ptr, *regulator;
1516
1517 ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
1518 if (!ptr)
1519 return ERR_PTR(-ENOMEM);
1520
1521 regulator = _regulator_get(dev, id, 1);
1522 if (!IS_ERR(regulator)) {
1523 *ptr = regulator;
1524 devres_add(dev, ptr);
1525 } else {
1526 devres_free(ptr);
1527 }
1528
1529 return regulator;
1530}
1531EXPORT_SYMBOL_GPL(devm_regulator_get_exclusive);
1532
1533/**
Charles Keepax23ff2f02012-11-14 09:39:31 +00001534 * regulator_put - "free" the regulator source
1535 * @regulator: regulator source
1536 *
1537 * Note: drivers must ensure that all regulator_enable calls made on this
1538 * regulator source are balanced by regulator_disable calls prior to calling
1539 * this function.
1540 */
1541void regulator_put(struct regulator *regulator)
1542{
1543 mutex_lock(&regulator_list_mutex);
1544 _regulator_put(regulator);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001545 mutex_unlock(&regulator_list_mutex);
1546}
1547EXPORT_SYMBOL_GPL(regulator_put);
1548
Mark Brownd5ad34f2012-01-20 20:09:18 +00001549static int devm_regulator_match(struct device *dev, void *res, void *data)
1550{
1551 struct regulator **r = res;
1552 if (!r || !*r) {
1553 WARN_ON(!r || !*r);
1554 return 0;
1555 }
1556 return *r == data;
1557}
1558
1559/**
1560 * devm_regulator_put - Resource managed regulator_put()
1561 * @regulator: regulator to free
1562 *
1563 * Deallocate a regulator allocated with devm_regulator_get(). Normally
1564 * this function will not need to be called and the resource management
1565 * code will ensure that the resource is freed.
1566 */
1567void devm_regulator_put(struct regulator *regulator)
1568{
1569 int rc;
1570
Mark Brown361ff502012-05-07 14:14:30 +01001571 rc = devres_release(regulator->dev, devm_regulator_release,
Mark Brownd5ad34f2012-01-20 20:09:18 +00001572 devm_regulator_match, regulator);
Mark Brown230a5a1c2012-06-15 18:25:08 +01001573 if (rc != 0)
Mark Brown968c2c12012-05-07 11:34:52 +01001574 WARN_ON(rc);
Mark Brownd5ad34f2012-01-20 20:09:18 +00001575}
1576EXPORT_SYMBOL_GPL(devm_regulator_put);
1577
Kim, Milof19b00d2013-02-18 06:50:39 +00001578/* Manage enable GPIO list. Same GPIO pin can be shared among regulators */
1579static int regulator_ena_gpio_request(struct regulator_dev *rdev,
1580 const struct regulator_config *config)
1581{
1582 struct regulator_enable_gpio *pin;
1583 int ret;
1584
1585 list_for_each_entry(pin, &regulator_ena_gpio_list, list) {
1586 if (pin->gpio == config->ena_gpio) {
1587 rdev_dbg(rdev, "GPIO %d is already used\n",
1588 config->ena_gpio);
1589 goto update_ena_gpio_to_rdev;
1590 }
1591 }
1592
1593 ret = gpio_request_one(config->ena_gpio,
1594 GPIOF_DIR_OUT | config->ena_gpio_flags,
1595 rdev_get_name(rdev));
1596 if (ret)
1597 return ret;
1598
1599 pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL);
1600 if (pin == NULL) {
1601 gpio_free(config->ena_gpio);
1602 return -ENOMEM;
1603 }
1604
1605 pin->gpio = config->ena_gpio;
1606 pin->ena_gpio_invert = config->ena_gpio_invert;
1607 list_add(&pin->list, &regulator_ena_gpio_list);
1608
1609update_ena_gpio_to_rdev:
1610 pin->request_count++;
1611 rdev->ena_pin = pin;
1612 return 0;
1613}
1614
1615static void regulator_ena_gpio_free(struct regulator_dev *rdev)
1616{
1617 struct regulator_enable_gpio *pin, *n;
1618
1619 if (!rdev->ena_pin)
1620 return;
1621
1622 /* Free the GPIO only in case of no use */
1623 list_for_each_entry_safe(pin, n, &regulator_ena_gpio_list, list) {
1624 if (pin->gpio == rdev->ena_pin->gpio) {
1625 if (pin->request_count <= 1) {
1626 pin->request_count = 0;
1627 gpio_free(pin->gpio);
1628 list_del(&pin->list);
1629 kfree(pin);
1630 } else {
1631 pin->request_count--;
1632 }
1633 }
1634 }
1635}
1636
Kim, Milo967cfb12013-02-18 06:50:48 +00001637/**
Robert P. J. Day31d6eeb2013-05-02 10:19:11 -04001638 * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control
1639 * @rdev: regulator_dev structure
1640 * @enable: enable GPIO at initial use?
1641 *
Kim, Milo967cfb12013-02-18 06:50:48 +00001642 * GPIO is enabled in case of initial use. (enable_count is 0)
1643 * GPIO is disabled when it is not shared any more. (enable_count <= 1)
1644 */
1645static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable)
1646{
1647 struct regulator_enable_gpio *pin = rdev->ena_pin;
1648
1649 if (!pin)
1650 return -EINVAL;
1651
1652 if (enable) {
1653 /* Enable GPIO at initial use */
1654 if (pin->enable_count == 0)
1655 gpio_set_value_cansleep(pin->gpio,
1656 !pin->ena_gpio_invert);
1657
1658 pin->enable_count++;
1659 } else {
1660 if (pin->enable_count > 1) {
1661 pin->enable_count--;
1662 return 0;
1663 }
1664
1665 /* Disable GPIO if not used */
1666 if (pin->enable_count <= 1) {
1667 gpio_set_value_cansleep(pin->gpio,
1668 pin->ena_gpio_invert);
1669 pin->enable_count = 0;
1670 }
1671 }
1672
1673 return 0;
1674}
1675
Mark Brown5c5659d2012-06-27 13:21:26 +01001676static int _regulator_do_enable(struct regulator_dev *rdev)
1677{
1678 int ret, delay;
1679
1680 /* Query before enabling in case configuration dependent. */
1681 ret = _regulator_get_enable_time(rdev);
1682 if (ret >= 0) {
1683 delay = ret;
1684 } else {
1685 rdev_warn(rdev, "enable_time() failed: %d\n", ret);
1686 delay = 0;
1687 }
1688
1689 trace_regulator_enable(rdev_get_name(rdev));
1690
Kim, Milo967cfb12013-02-18 06:50:48 +00001691 if (rdev->ena_pin) {
1692 ret = regulator_ena_gpio_ctrl(rdev, true);
1693 if (ret < 0)
1694 return ret;
Mark Brown65f73502012-06-27 14:14:38 +01001695 rdev->ena_gpio_state = 1;
1696 } else if (rdev->desc->ops->enable) {
Mark Brown5c5659d2012-06-27 13:21:26 +01001697 ret = rdev->desc->ops->enable(rdev);
1698 if (ret < 0)
1699 return ret;
1700 } else {
1701 return -EINVAL;
1702 }
1703
1704 /* Allow the regulator to ramp; it would be useful to extend
1705 * this for bulk operations so that the regulators can ramp
1706 * together. */
1707 trace_regulator_enable_delay(rdev_get_name(rdev));
1708
1709 if (delay >= 1000) {
1710 mdelay(delay / 1000);
1711 udelay(delay % 1000);
1712 } else if (delay) {
1713 udelay(delay);
1714 }
1715
1716 trace_regulator_enable_complete(rdev_get_name(rdev));
1717
1718 return 0;
1719}
1720
Liam Girdwood414c70c2008-04-30 15:59:04 +01001721/* locks held by regulator_enable() */
1722static int _regulator_enable(struct regulator_dev *rdev)
1723{
Mark Brown5c5659d2012-06-27 13:21:26 +01001724 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001725
Liam Girdwood414c70c2008-04-30 15:59:04 +01001726 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001727 if (rdev->constraints &&
1728 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1729 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001730
Mark Brown9a2372f2009-08-03 18:49:57 +01001731 if (rdev->use_count == 0) {
1732 /* The regulator may on if it's not switchable or left on */
1733 ret = _regulator_is_enabled(rdev);
1734 if (ret == -EINVAL || ret == 0) {
1735 if (!_regulator_can_change_status(rdev))
1736 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001737
Mark Brown5c5659d2012-06-27 13:21:26 +01001738 ret = _regulator_do_enable(rdev);
Mark Brown31aae2b2009-12-21 12:21:52 +00001739 if (ret < 0)
1740 return ret;
1741
Linus Walleija7433cf2009-08-26 12:54:04 +02001742 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001743 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001744 return ret;
1745 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001746 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001747 }
1748
Mark Brown9a2372f2009-08-03 18:49:57 +01001749 rdev->use_count++;
1750
1751 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001752}
1753
1754/**
1755 * regulator_enable - enable regulator output
1756 * @regulator: regulator source
1757 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001758 * Request that the regulator be enabled with the regulator output at
1759 * the predefined voltage or current value. Calls to regulator_enable()
1760 * must be balanced with calls to regulator_disable().
1761 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001762 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001763 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001764 */
1765int regulator_enable(struct regulator *regulator)
1766{
David Brownell412aec62008-11-16 11:44:46 -08001767 struct regulator_dev *rdev = regulator->rdev;
1768 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001769
Mark Brown6492bc12012-04-19 13:19:07 +01001770 if (regulator->always_on)
1771 return 0;
1772
Mark Brown3801b862011-06-09 16:22:22 +01001773 if (rdev->supply) {
1774 ret = regulator_enable(rdev->supply);
1775 if (ret != 0)
1776 return ret;
1777 }
1778
David Brownell412aec62008-11-16 11:44:46 -08001779 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001780 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001781 mutex_unlock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001782
Heiko Stübnerd1685e42011-10-14 18:00:29 +02001783 if (ret != 0 && rdev->supply)
Mark Brown3801b862011-06-09 16:22:22 +01001784 regulator_disable(rdev->supply);
1785
Liam Girdwood414c70c2008-04-30 15:59:04 +01001786 return ret;
1787}
1788EXPORT_SYMBOL_GPL(regulator_enable);
1789
Mark Brown5c5659d2012-06-27 13:21:26 +01001790static int _regulator_do_disable(struct regulator_dev *rdev)
1791{
1792 int ret;
1793
1794 trace_regulator_disable(rdev_get_name(rdev));
1795
Kim, Milo967cfb12013-02-18 06:50:48 +00001796 if (rdev->ena_pin) {
1797 ret = regulator_ena_gpio_ctrl(rdev, false);
1798 if (ret < 0)
1799 return ret;
Mark Brown5c5659d2012-06-27 13:21:26 +01001800 rdev->ena_gpio_state = 0;
1801
1802 } else if (rdev->desc->ops->disable) {
1803 ret = rdev->desc->ops->disable(rdev);
1804 if (ret != 0)
1805 return ret;
1806 }
1807
1808 trace_regulator_disable_complete(rdev_get_name(rdev));
1809
1810 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1811 NULL);
1812 return 0;
1813}
1814
Liam Girdwood414c70c2008-04-30 15:59:04 +01001815/* locks held by regulator_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001816static int _regulator_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001817{
1818 int ret = 0;
1819
David Brownellcd94b502009-03-11 16:43:34 -08001820 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001821 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001822 return -EIO;
1823
Liam Girdwood414c70c2008-04-30 15:59:04 +01001824 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001825 if (rdev->use_count == 1 &&
1826 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001827
1828 /* we are last user */
Mark Brown5c5659d2012-06-27 13:21:26 +01001829 if (_regulator_can_change_status(rdev)) {
1830 ret = _regulator_do_disable(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001831 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001832 rdev_err(rdev, "failed to disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001833 return ret;
1834 }
1835 }
1836
Liam Girdwood414c70c2008-04-30 15:59:04 +01001837 rdev->use_count = 0;
1838 } else if (rdev->use_count > 1) {
1839
1840 if (rdev->constraints &&
1841 (rdev->constraints->valid_ops_mask &
1842 REGULATOR_CHANGE_DRMS))
1843 drms_uA_update(rdev);
1844
1845 rdev->use_count--;
1846 }
Mark Brown3801b862011-06-09 16:22:22 +01001847
Liam Girdwood414c70c2008-04-30 15:59:04 +01001848 return ret;
1849}
1850
1851/**
1852 * regulator_disable - disable regulator output
1853 * @regulator: regulator source
1854 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001855 * Disable the regulator output voltage or current. Calls to
1856 * regulator_enable() must be balanced with calls to
1857 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00001858 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001859 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00001860 * devices have it enabled, the regulator device supports disabling and
1861 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001862 */
1863int regulator_disable(struct regulator *regulator)
1864{
David Brownell412aec62008-11-16 11:44:46 -08001865 struct regulator_dev *rdev = regulator->rdev;
1866 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001867
Mark Brown6492bc12012-04-19 13:19:07 +01001868 if (regulator->always_on)
1869 return 0;
1870
David Brownell412aec62008-11-16 11:44:46 -08001871 mutex_lock(&rdev->mutex);
Mark Brown3801b862011-06-09 16:22:22 +01001872 ret = _regulator_disable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001873 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001874
Mark Brown3801b862011-06-09 16:22:22 +01001875 if (ret == 0 && rdev->supply)
1876 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001877
Liam Girdwood414c70c2008-04-30 15:59:04 +01001878 return ret;
1879}
1880EXPORT_SYMBOL_GPL(regulator_disable);
1881
1882/* locks held by regulator_force_disable() */
Mark Brown3801b862011-06-09 16:22:22 +01001883static int _regulator_force_disable(struct regulator_dev *rdev)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001884{
1885 int ret = 0;
1886
1887 /* force disable */
1888 if (rdev->desc->ops->disable) {
1889 /* ah well, who wants to live forever... */
1890 ret = rdev->desc->ops->disable(rdev);
1891 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001892 rdev_err(rdev, "failed to force disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001893 return ret;
1894 }
1895 /* notify other consumers that power has been forced off */
Mark Brown84b68262009-12-01 21:12:27 +00001896 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
1897 REGULATOR_EVENT_DISABLE, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001898 }
1899
Liam Girdwood414c70c2008-04-30 15:59:04 +01001900 return ret;
1901}
1902
1903/**
1904 * regulator_force_disable - force disable regulator output
1905 * @regulator: regulator source
1906 *
1907 * Forcibly disable the regulator output voltage or current.
1908 * NOTE: this *will* disable the regulator output even if other consumer
1909 * devices have it enabled. This should be used for situations when device
1910 * damage will likely occur if the regulator is not disabled (e.g. over temp).
1911 */
1912int regulator_force_disable(struct regulator *regulator)
1913{
Mark Brown82d15832011-05-09 11:41:02 +02001914 struct regulator_dev *rdev = regulator->rdev;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001915 int ret;
1916
Mark Brown82d15832011-05-09 11:41:02 +02001917 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001918 regulator->uA_load = 0;
Mark Brown3801b862011-06-09 16:22:22 +01001919 ret = _regulator_force_disable(regulator->rdev);
Mark Brown82d15832011-05-09 11:41:02 +02001920 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001921
Mark Brown3801b862011-06-09 16:22:22 +01001922 if (rdev->supply)
1923 while (rdev->open_count--)
1924 regulator_disable(rdev->supply);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001925
Liam Girdwood414c70c2008-04-30 15:59:04 +01001926 return ret;
1927}
1928EXPORT_SYMBOL_GPL(regulator_force_disable);
1929
Mark Brownda07ecd2011-09-11 09:53:50 +01001930static void regulator_disable_work(struct work_struct *work)
1931{
1932 struct regulator_dev *rdev = container_of(work, struct regulator_dev,
1933 disable_work.work);
1934 int count, i, ret;
1935
1936 mutex_lock(&rdev->mutex);
1937
1938 BUG_ON(!rdev->deferred_disables);
1939
1940 count = rdev->deferred_disables;
1941 rdev->deferred_disables = 0;
1942
1943 for (i = 0; i < count; i++) {
1944 ret = _regulator_disable(rdev);
1945 if (ret != 0)
1946 rdev_err(rdev, "Deferred disable failed: %d\n", ret);
1947 }
1948
1949 mutex_unlock(&rdev->mutex);
1950
1951 if (rdev->supply) {
1952 for (i = 0; i < count; i++) {
1953 ret = regulator_disable(rdev->supply);
1954 if (ret != 0) {
1955 rdev_err(rdev,
1956 "Supply disable failed: %d\n", ret);
1957 }
1958 }
1959 }
1960}
1961
1962/**
1963 * regulator_disable_deferred - disable regulator output with delay
1964 * @regulator: regulator source
1965 * @ms: miliseconds until the regulator is disabled
1966 *
1967 * Execute regulator_disable() on the regulator after a delay. This
1968 * is intended for use with devices that require some time to quiesce.
1969 *
1970 * NOTE: this will only disable the regulator output if no other consumer
1971 * devices have it enabled, the regulator device supports disabling and
1972 * machine constraints permit this operation.
1973 */
1974int regulator_disable_deferred(struct regulator *regulator, int ms)
1975{
1976 struct regulator_dev *rdev = regulator->rdev;
Mark Brownaa598022011-10-03 22:42:43 +01001977 int ret;
Mark Brownda07ecd2011-09-11 09:53:50 +01001978
Mark Brown6492bc12012-04-19 13:19:07 +01001979 if (regulator->always_on)
1980 return 0;
1981
Mark Brown2b5a24a2012-09-07 11:00:53 +08001982 if (!ms)
1983 return regulator_disable(regulator);
1984
Mark Brownda07ecd2011-09-11 09:53:50 +01001985 mutex_lock(&rdev->mutex);
1986 rdev->deferred_disables++;
1987 mutex_unlock(&rdev->mutex);
1988
Mark Brown070260f2013-07-18 11:52:04 +01001989 ret = queue_delayed_work(system_power_efficient_wq,
1990 &rdev->disable_work,
1991 msecs_to_jiffies(ms));
Mark Brownaa598022011-10-03 22:42:43 +01001992 if (ret < 0)
1993 return ret;
1994 else
1995 return 0;
Mark Brownda07ecd2011-09-11 09:53:50 +01001996}
1997EXPORT_SYMBOL_GPL(regulator_disable_deferred);
1998
Liam Girdwood414c70c2008-04-30 15:59:04 +01001999static int _regulator_is_enabled(struct regulator_dev *rdev)
2000{
Mark Brown65f73502012-06-27 14:14:38 +01002001 /* A GPIO control always takes precedence */
Kim, Milo7b74d142013-02-18 06:50:55 +00002002 if (rdev->ena_pin)
Mark Brown65f73502012-06-27 14:14:38 +01002003 return rdev->ena_gpio_state;
2004
Mark Brown9a7f6a42010-02-11 17:22:45 +00002005 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01002006 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00002007 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002008
Mark Brown93325462009-08-03 18:49:56 +01002009 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002010}
2011
2012/**
2013 * regulator_is_enabled - is the regulator output enabled
2014 * @regulator: regulator source
2015 *
David Brownell412aec62008-11-16 11:44:46 -08002016 * Returns positive if the regulator driver backing the source/client
2017 * has requested that the device be enabled, zero if it hasn't, else a
2018 * negative errno code.
2019 *
2020 * Note that the device backing this regulator handle can have multiple
2021 * users, so it might be enabled even if regulator_enable() was never
2022 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002023 */
2024int regulator_is_enabled(struct regulator *regulator)
2025{
Mark Brown93325462009-08-03 18:49:56 +01002026 int ret;
2027
Mark Brown6492bc12012-04-19 13:19:07 +01002028 if (regulator->always_on)
2029 return 1;
2030
Mark Brown93325462009-08-03 18:49:56 +01002031 mutex_lock(&regulator->rdev->mutex);
2032 ret = _regulator_is_enabled(regulator->rdev);
2033 mutex_unlock(&regulator->rdev->mutex);
2034
2035 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002036}
2037EXPORT_SYMBOL_GPL(regulator_is_enabled);
2038
2039/**
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002040 * regulator_can_change_voltage - check if regulator can change voltage
2041 * @regulator: regulator source
2042 *
2043 * Returns positive if the regulator driver backing the source/client
2044 * can change its voltage, false otherwise. Usefull for detecting fixed
2045 * or dummy regulators and disabling voltage change logic in the client
2046 * driver.
2047 */
2048int regulator_can_change_voltage(struct regulator *regulator)
2049{
2050 struct regulator_dev *rdev = regulator->rdev;
2051
2052 if (rdev->constraints &&
Axel Lin19280e42012-12-12 09:22:46 +08002053 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2054 if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1)
2055 return 1;
2056
2057 if (rdev->desc->continuous_voltage_range &&
2058 rdev->constraints->min_uV && rdev->constraints->max_uV &&
2059 rdev->constraints->min_uV != rdev->constraints->max_uV)
2060 return 1;
2061 }
Marek Szyprowskid1e7de32012-12-04 15:01:01 +01002062
2063 return 0;
2064}
2065EXPORT_SYMBOL_GPL(regulator_can_change_voltage);
2066
2067/**
David Brownell4367cfd2009-02-26 11:48:36 -08002068 * regulator_count_voltages - count regulator_list_voltage() selectors
2069 * @regulator: regulator source
2070 *
2071 * Returns number of selectors, or negative errno. Selectors are
2072 * numbered starting at zero, and typically correspond to bitfields
2073 * in hardware registers.
2074 */
2075int regulator_count_voltages(struct regulator *regulator)
2076{
2077 struct regulator_dev *rdev = regulator->rdev;
2078
2079 return rdev->desc->n_voltages ? : -EINVAL;
2080}
2081EXPORT_SYMBOL_GPL(regulator_count_voltages);
2082
2083/**
2084 * regulator_list_voltage - enumerate supported voltages
2085 * @regulator: regulator source
2086 * @selector: identify voltage to list
2087 * Context: can sleep
2088 *
2089 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01002090 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08002091 * negative errno.
2092 */
2093int regulator_list_voltage(struct regulator *regulator, unsigned selector)
2094{
2095 struct regulator_dev *rdev = regulator->rdev;
2096 struct regulator_ops *ops = rdev->desc->ops;
2097 int ret;
2098
2099 if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
2100 return -EINVAL;
2101
2102 mutex_lock(&rdev->mutex);
2103 ret = ops->list_voltage(rdev, selector);
2104 mutex_unlock(&rdev->mutex);
2105
2106 if (ret > 0) {
2107 if (ret < rdev->constraints->min_uV)
2108 ret = 0;
2109 else if (ret > rdev->constraints->max_uV)
2110 ret = 0;
2111 }
2112
2113 return ret;
2114}
2115EXPORT_SYMBOL_GPL(regulator_list_voltage);
2116
2117/**
Paul Walmsley2a668a82013-06-07 08:06:56 +00002118 * regulator_get_linear_step - return the voltage step size between VSEL values
2119 * @regulator: regulator source
2120 *
2121 * Returns the voltage step size between VSEL values for linear
2122 * regulators, or return 0 if the regulator isn't a linear regulator.
2123 */
2124unsigned int regulator_get_linear_step(struct regulator *regulator)
2125{
2126 struct regulator_dev *rdev = regulator->rdev;
2127
2128 return rdev->desc->uV_step;
2129}
2130EXPORT_SYMBOL_GPL(regulator_get_linear_step);
2131
2132/**
Mark Browna7a1ad92009-07-21 16:00:24 +01002133 * regulator_is_supported_voltage - check if a voltage range can be supported
2134 *
2135 * @regulator: Regulator to check.
2136 * @min_uV: Minimum required voltage in uV.
2137 * @max_uV: Maximum required voltage in uV.
2138 *
2139 * Returns a boolean or a negative error code.
2140 */
2141int regulator_is_supported_voltage(struct regulator *regulator,
2142 int min_uV, int max_uV)
2143{
Mark Brownc5f39392012-07-02 15:00:18 +01002144 struct regulator_dev *rdev = regulator->rdev;
Mark Browna7a1ad92009-07-21 16:00:24 +01002145 int i, voltages, ret;
2146
Mark Brownc5f39392012-07-02 15:00:18 +01002147 /* If we can't change voltage check the current voltage */
2148 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
2149 ret = regulator_get_voltage(regulator);
2150 if (ret >= 0)
Marek Szyprowskif0f98b12012-11-13 09:48:51 +01002151 return (min_uV <= ret && ret <= max_uV);
Mark Brownc5f39392012-07-02 15:00:18 +01002152 else
2153 return ret;
2154 }
2155
Pawel Mollbd7a2b62012-09-24 18:56:53 +01002156 /* Any voltage within constrains range is fine? */
2157 if (rdev->desc->continuous_voltage_range)
2158 return min_uV >= rdev->constraints->min_uV &&
2159 max_uV <= rdev->constraints->max_uV;
2160
Mark Browna7a1ad92009-07-21 16:00:24 +01002161 ret = regulator_count_voltages(regulator);
2162 if (ret < 0)
2163 return ret;
2164 voltages = ret;
2165
2166 for (i = 0; i < voltages; i++) {
2167 ret = regulator_list_voltage(regulator, i);
2168
2169 if (ret >= min_uV && ret <= max_uV)
2170 return 1;
2171 }
2172
2173 return 0;
2174}
Mark Browna398eaa2011-12-28 12:48:45 +00002175EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
Mark Browna7a1ad92009-07-21 16:00:24 +01002176
Mark Brown75790252010-12-12 14:25:50 +00002177static int _regulator_do_set_voltage(struct regulator_dev *rdev,
2178 int min_uV, int max_uV)
2179{
2180 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01002181 int delay = 0;
Mark Browne113d792012-06-26 10:57:51 +01002182 int best_val = 0;
Mark Brown75790252010-12-12 14:25:50 +00002183 unsigned int selector;
Axel Lineba41a52012-04-04 10:32:10 +08002184 int old_selector = -1;
Mark Brown75790252010-12-12 14:25:50 +00002185
2186 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
2187
Mark Brownbf5892a2011-05-08 22:13:37 +01002188 min_uV += rdev->constraints->uV_offset;
2189 max_uV += rdev->constraints->uV_offset;
2190
Axel Lineba41a52012-04-04 10:32:10 +08002191 /*
2192 * If we can't obtain the old selector there is not enough
2193 * info to call set_voltage_time_sel().
2194 */
Axel Lin8b7485e2012-05-21 09:37:52 +08002195 if (_regulator_is_enabled(rdev) &&
2196 rdev->desc->ops->set_voltage_time_sel &&
Axel Lineba41a52012-04-04 10:32:10 +08002197 rdev->desc->ops->get_voltage_sel) {
2198 old_selector = rdev->desc->ops->get_voltage_sel(rdev);
2199 if (old_selector < 0)
2200 return old_selector;
2201 }
2202
Mark Brown75790252010-12-12 14:25:50 +00002203 if (rdev->desc->ops->set_voltage) {
2204 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
2205 &selector);
Mark Browne113d792012-06-26 10:57:51 +01002206
2207 if (ret >= 0) {
2208 if (rdev->desc->ops->list_voltage)
2209 best_val = rdev->desc->ops->list_voltage(rdev,
2210 selector);
2211 else
2212 best_val = _regulator_get_voltage(rdev);
2213 }
2214
Mark Browne8eef822010-12-12 14:36:17 +00002215 } else if (rdev->desc->ops->set_voltage_sel) {
Axel Lin9152c362012-06-04 09:41:38 +08002216 if (rdev->desc->ops->map_voltage) {
Mark Browne843fc42012-05-09 21:16:06 +01002217 ret = rdev->desc->ops->map_voltage(rdev, min_uV,
2218 max_uV);
Axel Lin9152c362012-06-04 09:41:38 +08002219 } else {
2220 if (rdev->desc->ops->list_voltage ==
2221 regulator_list_voltage_linear)
2222 ret = regulator_map_voltage_linear(rdev,
2223 min_uV, max_uV);
2224 else
2225 ret = regulator_map_voltage_iterate(rdev,
2226 min_uV, max_uV);
2227 }
Mark Browne8eef822010-12-12 14:36:17 +00002228
Mark Browne843fc42012-05-09 21:16:06 +01002229 if (ret >= 0) {
Mark Browne113d792012-06-26 10:57:51 +01002230 best_val = rdev->desc->ops->list_voltage(rdev, ret);
2231 if (min_uV <= best_val && max_uV >= best_val) {
2232 selector = ret;
Axel Linc66a5662013-02-06 11:09:48 +08002233 if (old_selector == selector)
2234 ret = 0;
2235 else
2236 ret = rdev->desc->ops->set_voltage_sel(
2237 rdev, ret);
Mark Browne113d792012-06-26 10:57:51 +01002238 } else {
2239 ret = -EINVAL;
2240 }
Mark Browne8eef822010-12-12 14:36:17 +00002241 }
Mark Brown75790252010-12-12 14:25:50 +00002242 } else {
2243 ret = -EINVAL;
2244 }
2245
Axel Lineba41a52012-04-04 10:32:10 +08002246 /* Call set_voltage_time_sel if successfully obtained old_selector */
Yadwinder Singh Brar5b175952013-06-29 18:21:19 +05302247 if (ret == 0 && !rdev->constraints->ramp_disable && old_selector >= 0
2248 && old_selector != selector) {
Axel Lineba41a52012-04-04 10:32:10 +08002249
2250 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
2251 old_selector, selector);
2252 if (delay < 0) {
2253 rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
2254 delay);
2255 delay = 0;
2256 }
Axel Lineba41a52012-04-04 10:32:10 +08002257
Philip Rakity8b96de32012-06-14 15:07:56 -07002258 /* Insert any necessary delays */
2259 if (delay >= 1000) {
2260 mdelay(delay / 1000);
2261 udelay(delay % 1000);
2262 } else if (delay) {
2263 udelay(delay);
2264 }
Linus Walleij77af1b2642011-03-17 13:24:36 +01002265 }
2266
Axel Lin2f6c7972012-08-06 23:44:19 +08002267 if (ret == 0 && best_val >= 0) {
2268 unsigned long data = best_val;
2269
Mark Brownded06a52010-12-16 13:59:10 +00002270 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
Axel Lin2f6c7972012-08-06 23:44:19 +08002271 (void *)data);
2272 }
Mark Brownded06a52010-12-16 13:59:10 +00002273
Axel Lineba41a52012-04-04 10:32:10 +08002274 trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
Mark Brown75790252010-12-12 14:25:50 +00002275
2276 return ret;
2277}
2278
Mark Browna7a1ad92009-07-21 16:00:24 +01002279/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002280 * regulator_set_voltage - set regulator output voltage
2281 * @regulator: regulator source
2282 * @min_uV: Minimum required voltage in uV
2283 * @max_uV: Maximum acceptable voltage in uV
2284 *
2285 * Sets a voltage regulator to the desired output voltage. This can be set
2286 * during any regulator state. IOW, regulator can be disabled or enabled.
2287 *
2288 * If the regulator is enabled then the voltage will change to the new value
2289 * immediately otherwise if the regulator is disabled the regulator will
2290 * output at the new voltage when enabled.
2291 *
2292 * NOTE: If the regulator is shared between several devices then the lowest
2293 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00002294 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01002295 * calling this function otherwise this call will fail.
2296 */
2297int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
2298{
2299 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00002300 int ret = 0;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002301 int old_min_uV, old_max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002302
2303 mutex_lock(&rdev->mutex);
2304
Mark Brown95a3c232010-12-16 15:49:37 +00002305 /* If we're setting the same range as last time the change
2306 * should be a noop (some cpufreq implementations use the same
2307 * voltage for multiple frequencies, for example).
2308 */
2309 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
2310 goto out;
2311
Liam Girdwood414c70c2008-04-30 15:59:04 +01002312 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00002313 if (!rdev->desc->ops->set_voltage &&
2314 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002315 ret = -EINVAL;
2316 goto out;
2317 }
2318
2319 /* constraints check */
2320 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2321 if (ret < 0)
2322 goto out;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002323
2324 /* restore original values in case of error */
2325 old_min_uV = regulator->min_uV;
2326 old_max_uV = regulator->max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002327 regulator->min_uV = min_uV;
2328 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00002329
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002330 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2331 if (ret < 0)
Paolo Pisati92d7a552012-12-13 10:13:00 +01002332 goto out2;
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01002333
Mark Brown75790252010-12-12 14:25:50 +00002334 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Paolo Pisati92d7a552012-12-13 10:13:00 +01002335 if (ret < 0)
2336 goto out2;
2337
Liam Girdwood414c70c2008-04-30 15:59:04 +01002338out:
2339 mutex_unlock(&rdev->mutex);
2340 return ret;
Paolo Pisati92d7a552012-12-13 10:13:00 +01002341out2:
2342 regulator->min_uV = old_min_uV;
2343 regulator->max_uV = old_max_uV;
2344 mutex_unlock(&rdev->mutex);
2345 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002346}
2347EXPORT_SYMBOL_GPL(regulator_set_voltage);
2348
Mark Brown606a2562010-12-16 15:49:36 +00002349/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01002350 * regulator_set_voltage_time - get raise/fall time
2351 * @regulator: regulator source
2352 * @old_uV: starting voltage in microvolts
2353 * @new_uV: target voltage in microvolts
2354 *
2355 * Provided with the starting and ending voltage, this function attempts to
2356 * calculate the time in microseconds required to rise or fall to this new
2357 * voltage.
2358 */
2359int regulator_set_voltage_time(struct regulator *regulator,
2360 int old_uV, int new_uV)
2361{
2362 struct regulator_dev *rdev = regulator->rdev;
2363 struct regulator_ops *ops = rdev->desc->ops;
2364 int old_sel = -1;
2365 int new_sel = -1;
2366 int voltage;
2367 int i;
2368
2369 /* Currently requires operations to do this */
2370 if (!ops->list_voltage || !ops->set_voltage_time_sel
2371 || !rdev->desc->n_voltages)
2372 return -EINVAL;
2373
2374 for (i = 0; i < rdev->desc->n_voltages; i++) {
2375 /* We only look for exact voltage matches here */
2376 voltage = regulator_list_voltage(regulator, i);
2377 if (voltage < 0)
2378 return -EINVAL;
2379 if (voltage == 0)
2380 continue;
2381 if (voltage == old_uV)
2382 old_sel = i;
2383 if (voltage == new_uV)
2384 new_sel = i;
2385 }
2386
2387 if (old_sel < 0 || new_sel < 0)
2388 return -EINVAL;
2389
2390 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
2391}
2392EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
2393
2394/**
Randy Dunlap296c6562012-08-18 17:44:14 -07002395 * regulator_set_voltage_time_sel - get raise/fall time
2396 * @rdev: regulator source device
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302397 * @old_selector: selector for starting voltage
2398 * @new_selector: selector for target voltage
2399 *
2400 * Provided with the starting and target voltage selectors, this function
2401 * returns time in microseconds required to rise or fall to this new voltage
2402 *
Axel Linf11d08c2012-06-19 09:38:45 +08002403 * Drivers providing ramp_delay in regulation_constraints can use this as their
Axel Lin398715a2012-06-18 10:11:28 +08002404 * set_voltage_time_sel() operation.
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302405 */
2406int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
2407 unsigned int old_selector,
2408 unsigned int new_selector)
2409{
Axel Lin398715a2012-06-18 10:11:28 +08002410 unsigned int ramp_delay = 0;
Axel Linf11d08c2012-06-19 09:38:45 +08002411 int old_volt, new_volt;
Axel Lin398715a2012-06-18 10:11:28 +08002412
2413 if (rdev->constraints->ramp_delay)
2414 ramp_delay = rdev->constraints->ramp_delay;
2415 else if (rdev->desc->ramp_delay)
2416 ramp_delay = rdev->desc->ramp_delay;
2417
2418 if (ramp_delay == 0) {
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302419 rdev_warn(rdev, "ramp_delay not set\n");
Axel Lin398715a2012-06-18 10:11:28 +08002420 return 0;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +05302421 }
Axel Lin398715a2012-06-18 10:11:28 +08002422
Axel Linf11d08c2012-06-19 09:38:45 +08002423 /* sanity check */
2424 if (!rdev->desc->ops->list_voltage)
2425 return -EINVAL;
Axel Lin398715a2012-06-18 10:11:28 +08002426
Axel Linf11d08c2012-06-19 09:38:45 +08002427 old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
2428 new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
2429
2430 return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302431}
Mark Brownb19dbf72012-06-23 11:34:20 +01002432EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +05302433
2434/**
Mark Brown606a2562010-12-16 15:49:36 +00002435 * regulator_sync_voltage - re-apply last regulator output voltage
2436 * @regulator: regulator source
2437 *
2438 * Re-apply the last configured voltage. This is intended to be used
2439 * where some external control source the consumer is cooperating with
2440 * has caused the configured voltage to change.
2441 */
2442int regulator_sync_voltage(struct regulator *regulator)
2443{
2444 struct regulator_dev *rdev = regulator->rdev;
2445 int ret, min_uV, max_uV;
2446
2447 mutex_lock(&rdev->mutex);
2448
2449 if (!rdev->desc->ops->set_voltage &&
2450 !rdev->desc->ops->set_voltage_sel) {
2451 ret = -EINVAL;
2452 goto out;
2453 }
2454
2455 /* This is only going to work if we've had a voltage configured. */
2456 if (!regulator->min_uV && !regulator->max_uV) {
2457 ret = -EINVAL;
2458 goto out;
2459 }
2460
2461 min_uV = regulator->min_uV;
2462 max_uV = regulator->max_uV;
2463
2464 /* This should be a paranoia check... */
2465 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
2466 if (ret < 0)
2467 goto out;
2468
2469 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
2470 if (ret < 0)
2471 goto out;
2472
2473 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
2474
2475out:
2476 mutex_unlock(&rdev->mutex);
2477 return ret;
2478}
2479EXPORT_SYMBOL_GPL(regulator_sync_voltage);
2480
Liam Girdwood414c70c2008-04-30 15:59:04 +01002481static int _regulator_get_voltage(struct regulator_dev *rdev)
2482{
Mark Brownbf5892a2011-05-08 22:13:37 +01002483 int sel, ret;
Mark Brown476c2d82010-12-10 17:28:07 +00002484
2485 if (rdev->desc->ops->get_voltage_sel) {
2486 sel = rdev->desc->ops->get_voltage_sel(rdev);
2487 if (sel < 0)
2488 return sel;
Mark Brownbf5892a2011-05-08 22:13:37 +01002489 ret = rdev->desc->ops->list_voltage(rdev, sel);
Axel Lincb220d12011-05-23 20:08:10 +08002490 } else if (rdev->desc->ops->get_voltage) {
Mark Brownbf5892a2011-05-08 22:13:37 +01002491 ret = rdev->desc->ops->get_voltage(rdev);
Mark Brownf7df20e2012-08-09 16:42:19 +01002492 } else if (rdev->desc->ops->list_voltage) {
2493 ret = rdev->desc->ops->list_voltage(rdev, 0);
Axel Lincb220d12011-05-23 20:08:10 +08002494 } else {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002495 return -EINVAL;
Axel Lincb220d12011-05-23 20:08:10 +08002496 }
Mark Brownbf5892a2011-05-08 22:13:37 +01002497
Axel Lincb220d12011-05-23 20:08:10 +08002498 if (ret < 0)
2499 return ret;
Mark Brownbf5892a2011-05-08 22:13:37 +01002500 return ret - rdev->constraints->uV_offset;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002501}
2502
2503/**
2504 * regulator_get_voltage - get regulator output voltage
2505 * @regulator: regulator source
2506 *
2507 * This returns the current regulator voltage in uV.
2508 *
2509 * NOTE: If the regulator is disabled it will return the voltage value. This
2510 * function should not be used to determine regulator state.
2511 */
2512int regulator_get_voltage(struct regulator *regulator)
2513{
2514 int ret;
2515
2516 mutex_lock(&regulator->rdev->mutex);
2517
2518 ret = _regulator_get_voltage(regulator->rdev);
2519
2520 mutex_unlock(&regulator->rdev->mutex);
2521
2522 return ret;
2523}
2524EXPORT_SYMBOL_GPL(regulator_get_voltage);
2525
2526/**
2527 * regulator_set_current_limit - set regulator output current limit
2528 * @regulator: regulator source
Charles Keepaxce0d10f2013-05-21 15:04:07 +01002529 * @min_uA: Minimum supported current in uA
Liam Girdwood414c70c2008-04-30 15:59:04 +01002530 * @max_uA: Maximum supported current in uA
2531 *
2532 * Sets current sink to the desired output current. This can be set during
2533 * any regulator state. IOW, regulator can be disabled or enabled.
2534 *
2535 * If the regulator is enabled then the current will change to the new value
2536 * immediately otherwise if the regulator is disabled the regulator will
2537 * output at the new current when enabled.
2538 *
2539 * NOTE: Regulator system constraints must be set for this regulator before
2540 * calling this function otherwise this call will fail.
2541 */
2542int regulator_set_current_limit(struct regulator *regulator,
2543 int min_uA, int max_uA)
2544{
2545 struct regulator_dev *rdev = regulator->rdev;
2546 int ret;
2547
2548 mutex_lock(&rdev->mutex);
2549
2550 /* sanity check */
2551 if (!rdev->desc->ops->set_current_limit) {
2552 ret = -EINVAL;
2553 goto out;
2554 }
2555
2556 /* constraints check */
2557 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
2558 if (ret < 0)
2559 goto out;
2560
2561 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
2562out:
2563 mutex_unlock(&rdev->mutex);
2564 return ret;
2565}
2566EXPORT_SYMBOL_GPL(regulator_set_current_limit);
2567
2568static int _regulator_get_current_limit(struct regulator_dev *rdev)
2569{
2570 int ret;
2571
2572 mutex_lock(&rdev->mutex);
2573
2574 /* sanity check */
2575 if (!rdev->desc->ops->get_current_limit) {
2576 ret = -EINVAL;
2577 goto out;
2578 }
2579
2580 ret = rdev->desc->ops->get_current_limit(rdev);
2581out:
2582 mutex_unlock(&rdev->mutex);
2583 return ret;
2584}
2585
2586/**
2587 * regulator_get_current_limit - get regulator output current
2588 * @regulator: regulator source
2589 *
2590 * This returns the current supplied by the specified current sink in uA.
2591 *
2592 * NOTE: If the regulator is disabled it will return the current value. This
2593 * function should not be used to determine regulator state.
2594 */
2595int regulator_get_current_limit(struct regulator *regulator)
2596{
2597 return _regulator_get_current_limit(regulator->rdev);
2598}
2599EXPORT_SYMBOL_GPL(regulator_get_current_limit);
2600
2601/**
2602 * regulator_set_mode - set regulator operating mode
2603 * @regulator: regulator source
2604 * @mode: operating mode - one of the REGULATOR_MODE constants
2605 *
2606 * Set regulator operating mode to increase regulator efficiency or improve
2607 * regulation performance.
2608 *
2609 * NOTE: Regulator system constraints must be set for this regulator before
2610 * calling this function otherwise this call will fail.
2611 */
2612int regulator_set_mode(struct regulator *regulator, unsigned int mode)
2613{
2614 struct regulator_dev *rdev = regulator->rdev;
2615 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302616 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002617
2618 mutex_lock(&rdev->mutex);
2619
2620 /* sanity check */
2621 if (!rdev->desc->ops->set_mode) {
2622 ret = -EINVAL;
2623 goto out;
2624 }
2625
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302626 /* return if the same mode is requested */
2627 if (rdev->desc->ops->get_mode) {
2628 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2629 if (regulator_curr_mode == mode) {
2630 ret = 0;
2631 goto out;
2632 }
2633 }
2634
Liam Girdwood414c70c2008-04-30 15:59:04 +01002635 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08002636 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002637 if (ret < 0)
2638 goto out;
2639
2640 ret = rdev->desc->ops->set_mode(rdev, mode);
2641out:
2642 mutex_unlock(&rdev->mutex);
2643 return ret;
2644}
2645EXPORT_SYMBOL_GPL(regulator_set_mode);
2646
2647static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2648{
2649 int ret;
2650
2651 mutex_lock(&rdev->mutex);
2652
2653 /* sanity check */
2654 if (!rdev->desc->ops->get_mode) {
2655 ret = -EINVAL;
2656 goto out;
2657 }
2658
2659 ret = rdev->desc->ops->get_mode(rdev);
2660out:
2661 mutex_unlock(&rdev->mutex);
2662 return ret;
2663}
2664
2665/**
2666 * regulator_get_mode - get regulator operating mode
2667 * @regulator: regulator source
2668 *
2669 * Get the current regulator operating mode.
2670 */
2671unsigned int regulator_get_mode(struct regulator *regulator)
2672{
2673 return _regulator_get_mode(regulator->rdev);
2674}
2675EXPORT_SYMBOL_GPL(regulator_get_mode);
2676
2677/**
2678 * regulator_set_optimum_mode - set regulator optimum operating mode
2679 * @regulator: regulator source
2680 * @uA_load: load current
2681 *
2682 * Notifies the regulator core of a new device load. This is then used by
2683 * DRMS (if enabled by constraints) to set the most efficient regulator
2684 * operating mode for the new regulator loading.
2685 *
2686 * Consumer devices notify their supply regulator of the maximum power
2687 * they will require (can be taken from device datasheet in the power
2688 * consumption tables) when they change operational status and hence power
2689 * state. Examples of operational state changes that can affect power
2690 * consumption are :-
2691 *
2692 * o Device is opened / closed.
2693 * o Device I/O is about to begin or has just finished.
2694 * o Device is idling in between work.
2695 *
2696 * This information is also exported via sysfs to userspace.
2697 *
2698 * DRMS will sum the total requested load on the regulator and change
2699 * to the most efficient operating mode if platform constraints allow.
2700 *
2701 * Returns the new regulator mode or error.
2702 */
2703int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
2704{
2705 struct regulator_dev *rdev = regulator->rdev;
2706 struct regulator *consumer;
Stephen Boydd92d95b62012-07-02 19:21:06 -07002707 int ret, output_uV, input_uV = 0, total_uA_load = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002708 unsigned int mode;
2709
Stephen Boydd92d95b62012-07-02 19:21:06 -07002710 if (rdev->supply)
2711 input_uV = regulator_get_voltage(rdev->supply);
2712
Liam Girdwood414c70c2008-04-30 15:59:04 +01002713 mutex_lock(&rdev->mutex);
2714
Mark Browna4b41482011-05-14 11:19:45 -07002715 /*
2716 * first check to see if we can set modes at all, otherwise just
2717 * tell the consumer everything is OK.
2718 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002719 regulator->uA_load = uA_load;
2720 ret = regulator_check_drms(rdev);
Mark Browna4b41482011-05-14 11:19:45 -07002721 if (ret < 0) {
2722 ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002723 goto out;
Mark Browna4b41482011-05-14 11:19:45 -07002724 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002725
Liam Girdwood414c70c2008-04-30 15:59:04 +01002726 if (!rdev->desc->ops->get_optimum_mode)
2727 goto out;
2728
Mark Browna4b41482011-05-14 11:19:45 -07002729 /*
2730 * we can actually do this so any errors are indicators of
2731 * potential real failure.
2732 */
2733 ret = -EINVAL;
2734
Axel Lin854ccba2012-04-16 18:44:23 +08002735 if (!rdev->desc->ops->set_mode)
2736 goto out;
2737
Liam Girdwood414c70c2008-04-30 15:59:04 +01002738 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002739 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002740 if (output_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002741 rdev_err(rdev, "invalid output voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002742 goto out;
2743 }
2744
Stephen Boydd92d95b62012-07-02 19:21:06 -07002745 /* No supply? Use constraint voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002746 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002747 input_uV = rdev->constraints->input_uV;
2748 if (input_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002749 rdev_err(rdev, "invalid input voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002750 goto out;
2751 }
2752
2753 /* calc total requested load for this regulator */
2754 list_for_each_entry(consumer, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +01002755 total_uA_load += consumer->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002756
2757 mode = rdev->desc->ops->get_optimum_mode(rdev,
2758 input_uV, output_uV,
2759 total_uA_load);
Mark Brown2c608232011-03-30 06:29:12 +09002760 ret = regulator_mode_constrain(rdev, &mode);
David Brownelle5735202008-11-16 11:46:56 -08002761 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002762 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
2763 total_uA_load, input_uV, output_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002764 goto out;
2765 }
2766
2767 ret = rdev->desc->ops->set_mode(rdev, mode);
David Brownelle5735202008-11-16 11:46:56 -08002768 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002769 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002770 goto out;
2771 }
2772 ret = mode;
2773out:
2774 mutex_unlock(&rdev->mutex);
2775 return ret;
2776}
2777EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
2778
2779/**
Mark Brownf59c8f92012-08-31 10:36:37 -07002780 * regulator_allow_bypass - allow the regulator to go into bypass mode
2781 *
2782 * @regulator: Regulator to configure
Nishanth Menon9345dfb2013-02-28 18:44:54 -06002783 * @enable: enable or disable bypass mode
Mark Brownf59c8f92012-08-31 10:36:37 -07002784 *
2785 * Allow the regulator to go into bypass mode if all other consumers
2786 * for the regulator also enable bypass mode and the machine
2787 * constraints allow this. Bypass mode means that the regulator is
2788 * simply passing the input directly to the output with no regulation.
2789 */
2790int regulator_allow_bypass(struct regulator *regulator, bool enable)
2791{
2792 struct regulator_dev *rdev = regulator->rdev;
2793 int ret = 0;
2794
2795 if (!rdev->desc->ops->set_bypass)
2796 return 0;
2797
2798 if (rdev->constraints &&
2799 !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
2800 return 0;
2801
2802 mutex_lock(&rdev->mutex);
2803
2804 if (enable && !regulator->bypass) {
2805 rdev->bypass_count++;
2806
2807 if (rdev->bypass_count == rdev->open_count) {
2808 ret = rdev->desc->ops->set_bypass(rdev, enable);
2809 if (ret != 0)
2810 rdev->bypass_count--;
2811 }
2812
2813 } else if (!enable && regulator->bypass) {
2814 rdev->bypass_count--;
2815
2816 if (rdev->bypass_count != rdev->open_count) {
2817 ret = rdev->desc->ops->set_bypass(rdev, enable);
2818 if (ret != 0)
2819 rdev->bypass_count++;
2820 }
2821 }
2822
2823 if (ret == 0)
2824 regulator->bypass = enable;
2825
2826 mutex_unlock(&rdev->mutex);
2827
2828 return ret;
2829}
2830EXPORT_SYMBOL_GPL(regulator_allow_bypass);
2831
2832/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002833 * regulator_register_notifier - register regulator event notifier
2834 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002835 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002836 *
2837 * Register notifier block to receive regulator events.
2838 */
2839int regulator_register_notifier(struct regulator *regulator,
2840 struct notifier_block *nb)
2841{
2842 return blocking_notifier_chain_register(&regulator->rdev->notifier,
2843 nb);
2844}
2845EXPORT_SYMBOL_GPL(regulator_register_notifier);
2846
2847/**
2848 * regulator_unregister_notifier - unregister regulator event notifier
2849 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002850 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002851 *
2852 * Unregister regulator event notifier block.
2853 */
2854int regulator_unregister_notifier(struct regulator *regulator,
2855 struct notifier_block *nb)
2856{
2857 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
2858 nb);
2859}
2860EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
2861
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002862/* notify regulator consumers and downstream regulator consumers.
2863 * Note mutex must be held by caller.
2864 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002865static void _notifier_call_chain(struct regulator_dev *rdev,
2866 unsigned long event, void *data)
2867{
Liam Girdwood414c70c2008-04-30 15:59:04 +01002868 /* call rdev chain first */
Mark Brownd8493d22012-06-15 19:09:09 +01002869 blocking_notifier_call_chain(&rdev->notifier, event, data);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002870}
2871
2872/**
2873 * regulator_bulk_get - get multiple regulator consumers
2874 *
2875 * @dev: Device to supply
2876 * @num_consumers: Number of consumers to register
2877 * @consumers: Configuration of consumers; clients are stored here.
2878 *
2879 * @return 0 on success, an errno on failure.
2880 *
2881 * This helper function allows drivers to get several regulator
2882 * consumers in one operation. If any of the regulators cannot be
2883 * acquired then any regulators that were allocated will be freed
2884 * before returning to the caller.
2885 */
2886int regulator_bulk_get(struct device *dev, int num_consumers,
2887 struct regulator_bulk_data *consumers)
2888{
2889 int i;
2890 int ret;
2891
2892 for (i = 0; i < num_consumers; i++)
2893 consumers[i].consumer = NULL;
2894
2895 for (i = 0; i < num_consumers; i++) {
2896 consumers[i].consumer = regulator_get(dev,
2897 consumers[i].supply);
2898 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002899 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01002900 dev_err(dev, "Failed to get supply '%s': %d\n",
2901 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002902 consumers[i].consumer = NULL;
2903 goto err;
2904 }
2905 }
2906
2907 return 0;
2908
2909err:
Axel Linb29c7692012-02-20 10:32:16 +08002910 while (--i >= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002911 regulator_put(consumers[i].consumer);
2912
2913 return ret;
2914}
2915EXPORT_SYMBOL_GPL(regulator_bulk_get);
2916
Mark Browne6e74032012-01-20 20:10:08 +00002917/**
2918 * devm_regulator_bulk_get - managed get multiple regulator consumers
2919 *
2920 * @dev: Device to supply
2921 * @num_consumers: Number of consumers to register
2922 * @consumers: Configuration of consumers; clients are stored here.
2923 *
2924 * @return 0 on success, an errno on failure.
2925 *
2926 * This helper function allows drivers to get several regulator
2927 * consumers in one operation with management, the regulators will
2928 * automatically be freed when the device is unbound. If any of the
2929 * regulators cannot be acquired then any regulators that were
2930 * allocated will be freed before returning to the caller.
2931 */
2932int devm_regulator_bulk_get(struct device *dev, int num_consumers,
2933 struct regulator_bulk_data *consumers)
2934{
2935 int i;
2936 int ret;
2937
2938 for (i = 0; i < num_consumers; i++)
2939 consumers[i].consumer = NULL;
2940
2941 for (i = 0; i < num_consumers; i++) {
2942 consumers[i].consumer = devm_regulator_get(dev,
2943 consumers[i].supply);
2944 if (IS_ERR(consumers[i].consumer)) {
2945 ret = PTR_ERR(consumers[i].consumer);
2946 dev_err(dev, "Failed to get supply '%s': %d\n",
2947 consumers[i].supply, ret);
2948 consumers[i].consumer = NULL;
2949 goto err;
2950 }
2951 }
2952
2953 return 0;
2954
2955err:
2956 for (i = 0; i < num_consumers && consumers[i].consumer; i++)
2957 devm_regulator_put(consumers[i].consumer);
2958
2959 return ret;
2960}
2961EXPORT_SYMBOL_GPL(devm_regulator_bulk_get);
2962
Mark Brownf21e0e82011-05-24 08:12:40 +08002963static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
2964{
2965 struct regulator_bulk_data *bulk = data;
2966
2967 bulk->ret = regulator_enable(bulk->consumer);
2968}
2969
Liam Girdwood414c70c2008-04-30 15:59:04 +01002970/**
2971 * regulator_bulk_enable - enable multiple regulator consumers
2972 *
2973 * @num_consumers: Number of consumers
2974 * @consumers: Consumer data; clients are stored here.
2975 * @return 0 on success, an errno on failure
2976 *
2977 * This convenience API allows consumers to enable multiple regulator
2978 * clients in a single API call. If any consumers cannot be enabled
2979 * then any others that were enabled will be disabled again prior to
2980 * return.
2981 */
2982int regulator_bulk_enable(int num_consumers,
2983 struct regulator_bulk_data *consumers)
2984{
Dan Williams2955b472012-07-09 19:33:25 -07002985 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002986 int i;
Mark Brownf21e0e82011-05-24 08:12:40 +08002987 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002988
Mark Brown6492bc12012-04-19 13:19:07 +01002989 for (i = 0; i < num_consumers; i++) {
2990 if (consumers[i].consumer->always_on)
2991 consumers[i].ret = 0;
2992 else
2993 async_schedule_domain(regulator_bulk_enable_async,
2994 &consumers[i], &async_domain);
2995 }
Mark Brownf21e0e82011-05-24 08:12:40 +08002996
2997 async_synchronize_full_domain(&async_domain);
2998
2999 /* If any consumer failed we need to unwind any that succeeded */
Liam Girdwood414c70c2008-04-30 15:59:04 +01003000 for (i = 0; i < num_consumers; i++) {
Mark Brownf21e0e82011-05-24 08:12:40 +08003001 if (consumers[i].ret != 0) {
3002 ret = consumers[i].ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003003 goto err;
Mark Brownf21e0e82011-05-24 08:12:40 +08003004 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003005 }
3006
3007 return 0;
3008
3009err:
Andrzej Hajdafbe31052013-03-01 12:24:05 +01003010 for (i = 0; i < num_consumers; i++) {
3011 if (consumers[i].ret < 0)
3012 pr_err("Failed to enable %s: %d\n", consumers[i].supply,
3013 consumers[i].ret);
3014 else
3015 regulator_disable(consumers[i].consumer);
3016 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003017
3018 return ret;
3019}
3020EXPORT_SYMBOL_GPL(regulator_bulk_enable);
3021
3022/**
3023 * regulator_bulk_disable - disable multiple regulator consumers
3024 *
3025 * @num_consumers: Number of consumers
3026 * @consumers: Consumer data; clients are stored here.
3027 * @return 0 on success, an errno on failure
3028 *
3029 * This convenience API allows consumers to disable multiple regulator
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003030 * clients in a single API call. If any consumers cannot be disabled
3031 * then any others that were disabled will be enabled again prior to
Liam Girdwood414c70c2008-04-30 15:59:04 +01003032 * return.
3033 */
3034int regulator_bulk_disable(int num_consumers,
3035 struct regulator_bulk_data *consumers)
3036{
3037 int i;
Mark Brown01e86f42012-03-28 21:36:38 +01003038 int ret, r;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003039
Sylwester Nawrocki49e22632012-01-25 12:35:38 +01003040 for (i = num_consumers - 1; i >= 0; --i) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01003041 ret = regulator_disable(consumers[i].consumer);
3042 if (ret != 0)
3043 goto err;
3044 }
3045
3046 return 0;
3047
3048err:
Joe Perches5da84fd2010-11-30 05:53:48 -08003049 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Mark Brown01e86f42012-03-28 21:36:38 +01003050 for (++i; i < num_consumers; ++i) {
3051 r = regulator_enable(consumers[i].consumer);
3052 if (r != 0)
3053 pr_err("Failed to reename %s: %d\n",
3054 consumers[i].supply, r);
3055 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003056
3057 return ret;
3058}
3059EXPORT_SYMBOL_GPL(regulator_bulk_disable);
3060
3061/**
Donggeun Kime1de2f42012-01-03 16:22:03 +09003062 * regulator_bulk_force_disable - force disable multiple regulator consumers
3063 *
3064 * @num_consumers: Number of consumers
3065 * @consumers: Consumer data; clients are stored here.
3066 * @return 0 on success, an errno on failure
3067 *
3068 * This convenience API allows consumers to forcibly disable multiple regulator
3069 * clients in a single API call.
3070 * NOTE: This should be used for situations when device damage will
3071 * likely occur if the regulators are not disabled (e.g. over temp).
3072 * Although regulator_force_disable function call for some consumers can
3073 * return error numbers, the function is called for all consumers.
3074 */
3075int regulator_bulk_force_disable(int num_consumers,
3076 struct regulator_bulk_data *consumers)
3077{
3078 int i;
3079 int ret;
3080
3081 for (i = 0; i < num_consumers; i++)
3082 consumers[i].ret =
3083 regulator_force_disable(consumers[i].consumer);
3084
3085 for (i = 0; i < num_consumers; i++) {
3086 if (consumers[i].ret != 0) {
3087 ret = consumers[i].ret;
3088 goto out;
3089 }
3090 }
3091
3092 return 0;
3093out:
3094 return ret;
3095}
3096EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
3097
3098/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003099 * regulator_bulk_free - free multiple regulator consumers
3100 *
3101 * @num_consumers: Number of consumers
3102 * @consumers: Consumer data; clients are stored here.
3103 *
3104 * This convenience API allows consumers to free multiple regulator
3105 * clients in a single API call.
3106 */
3107void regulator_bulk_free(int num_consumers,
3108 struct regulator_bulk_data *consumers)
3109{
3110 int i;
3111
3112 for (i = 0; i < num_consumers; i++) {
3113 regulator_put(consumers[i].consumer);
3114 consumers[i].consumer = NULL;
3115 }
3116}
3117EXPORT_SYMBOL_GPL(regulator_bulk_free);
3118
3119/**
3120 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00003121 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01003122 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00003123 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003124 *
3125 * Called by regulator drivers to notify clients a regulator event has
3126 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00003127 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003128 */
3129int regulator_notifier_call_chain(struct regulator_dev *rdev,
3130 unsigned long event, void *data)
3131{
3132 _notifier_call_chain(rdev, event, data);
3133 return NOTIFY_DONE;
3134
3135}
3136EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
3137
Mark Brownbe721972009-08-04 20:09:52 +02003138/**
3139 * regulator_mode_to_status - convert a regulator mode into a status
3140 *
3141 * @mode: Mode to convert
3142 *
3143 * Convert a regulator mode into a status.
3144 */
3145int regulator_mode_to_status(unsigned int mode)
3146{
3147 switch (mode) {
3148 case REGULATOR_MODE_FAST:
3149 return REGULATOR_STATUS_FAST;
3150 case REGULATOR_MODE_NORMAL:
3151 return REGULATOR_STATUS_NORMAL;
3152 case REGULATOR_MODE_IDLE:
3153 return REGULATOR_STATUS_IDLE;
Krystian Garbaciak03ffcf32012-07-12 11:50:38 +01003154 case REGULATOR_MODE_STANDBY:
Mark Brownbe721972009-08-04 20:09:52 +02003155 return REGULATOR_STATUS_STANDBY;
3156 default:
Krystian Garbaciak1beaf762012-07-12 13:53:35 +01003157 return REGULATOR_STATUS_UNDEFINED;
Mark Brownbe721972009-08-04 20:09:52 +02003158 }
3159}
3160EXPORT_SYMBOL_GPL(regulator_mode_to_status);
3161
David Brownell7ad68e22008-11-11 17:39:02 -08003162/*
3163 * To avoid cluttering sysfs (and memory) with useless state, only
3164 * create attributes that can be meaningfully displayed.
3165 */
3166static int add_regulator_attributes(struct regulator_dev *rdev)
3167{
3168 struct device *dev = &rdev->dev;
3169 struct regulator_ops *ops = rdev->desc->ops;
3170 int status = 0;
3171
3172 /* some attributes need specific methods to be displayed */
Mark Brown4c788992011-11-02 11:39:09 +00003173 if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
Mark Brownf2889e62012-08-27 11:37:04 -07003174 (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
3175 (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0)) {
David Brownell7ad68e22008-11-11 17:39:02 -08003176 status = device_create_file(dev, &dev_attr_microvolts);
3177 if (status < 0)
3178 return status;
3179 }
3180 if (ops->get_current_limit) {
3181 status = device_create_file(dev, &dev_attr_microamps);
3182 if (status < 0)
3183 return status;
3184 }
3185 if (ops->get_mode) {
3186 status = device_create_file(dev, &dev_attr_opmode);
3187 if (status < 0)
3188 return status;
3189 }
Kim, Milo7b74d142013-02-18 06:50:55 +00003190 if (rdev->ena_pin || ops->is_enabled) {
David Brownell7ad68e22008-11-11 17:39:02 -08003191 status = device_create_file(dev, &dev_attr_state);
3192 if (status < 0)
3193 return status;
3194 }
David Brownell853116a2009-01-14 23:03:17 -08003195 if (ops->get_status) {
3196 status = device_create_file(dev, &dev_attr_status);
3197 if (status < 0)
3198 return status;
3199 }
Mark Brownf59c8f92012-08-31 10:36:37 -07003200 if (ops->get_bypass) {
3201 status = device_create_file(dev, &dev_attr_bypass);
3202 if (status < 0)
3203 return status;
3204 }
David Brownell7ad68e22008-11-11 17:39:02 -08003205
3206 /* some attributes are type-specific */
3207 if (rdev->desc->type == REGULATOR_CURRENT) {
3208 status = device_create_file(dev, &dev_attr_requested_microamps);
3209 if (status < 0)
3210 return status;
3211 }
3212
3213 /* all the other attributes exist to support constraints;
3214 * don't show them if there are no constraints, or if the
3215 * relevant supporting methods are missing.
3216 */
3217 if (!rdev->constraints)
3218 return status;
3219
3220 /* constraints need specific supporting methods */
Mark Browne8eef822010-12-12 14:36:17 +00003221 if (ops->set_voltage || ops->set_voltage_sel) {
David Brownell7ad68e22008-11-11 17:39:02 -08003222 status = device_create_file(dev, &dev_attr_min_microvolts);
3223 if (status < 0)
3224 return status;
3225 status = device_create_file(dev, &dev_attr_max_microvolts);
3226 if (status < 0)
3227 return status;
3228 }
3229 if (ops->set_current_limit) {
3230 status = device_create_file(dev, &dev_attr_min_microamps);
3231 if (status < 0)
3232 return status;
3233 status = device_create_file(dev, &dev_attr_max_microamps);
3234 if (status < 0)
3235 return status;
3236 }
3237
David Brownell7ad68e22008-11-11 17:39:02 -08003238 status = device_create_file(dev, &dev_attr_suspend_standby_state);
3239 if (status < 0)
3240 return status;
3241 status = device_create_file(dev, &dev_attr_suspend_mem_state);
3242 if (status < 0)
3243 return status;
3244 status = device_create_file(dev, &dev_attr_suspend_disk_state);
3245 if (status < 0)
3246 return status;
3247
3248 if (ops->set_suspend_voltage) {
3249 status = device_create_file(dev,
3250 &dev_attr_suspend_standby_microvolts);
3251 if (status < 0)
3252 return status;
3253 status = device_create_file(dev,
3254 &dev_attr_suspend_mem_microvolts);
3255 if (status < 0)
3256 return status;
3257 status = device_create_file(dev,
3258 &dev_attr_suspend_disk_microvolts);
3259 if (status < 0)
3260 return status;
3261 }
3262
3263 if (ops->set_suspend_mode) {
3264 status = device_create_file(dev,
3265 &dev_attr_suspend_standby_mode);
3266 if (status < 0)
3267 return status;
3268 status = device_create_file(dev,
3269 &dev_attr_suspend_mem_mode);
3270 if (status < 0)
3271 return status;
3272 status = device_create_file(dev,
3273 &dev_attr_suspend_disk_mode);
3274 if (status < 0)
3275 return status;
3276 }
3277
3278 return status;
3279}
3280
Mark Brown1130e5b2010-12-21 23:49:31 +00003281static void rdev_init_debugfs(struct regulator_dev *rdev)
3282{
Mark Brown1130e5b2010-12-21 23:49:31 +00003283 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
Stephen Boyd24751432012-02-20 22:50:42 -08003284 if (!rdev->debugfs) {
Mark Brown1130e5b2010-12-21 23:49:31 +00003285 rdev_warn(rdev, "Failed to create debugfs directory\n");
Mark Brown1130e5b2010-12-21 23:49:31 +00003286 return;
3287 }
3288
3289 debugfs_create_u32("use_count", 0444, rdev->debugfs,
3290 &rdev->use_count);
3291 debugfs_create_u32("open_count", 0444, rdev->debugfs,
3292 &rdev->open_count);
Mark Brownf59c8f92012-08-31 10:36:37 -07003293 debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
3294 &rdev->bypass_count);
Mark Brown1130e5b2010-12-21 23:49:31 +00003295}
3296
Liam Girdwood414c70c2008-04-30 15:59:04 +01003297/**
3298 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003299 * @regulator_desc: regulator to register
Mark Brownc1727082012-04-04 00:50:22 +01003300 * @config: runtime configuration for regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003301 *
3302 * Called by regulator drivers to register a regulator.
Axel Lin03846182013-01-03 21:01:47 +08003303 * Returns a valid pointer to struct regulator_dev on success
3304 * or an ERR_PTR() on error.
Liam Girdwood414c70c2008-04-30 15:59:04 +01003305 */
Mark Brown65f26842012-04-03 20:46:53 +01003306struct regulator_dev *
3307regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc1727082012-04-04 00:50:22 +01003308 const struct regulator_config *config)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003309{
Mark Brown9a8f5e02011-11-29 18:11:19 +00003310 const struct regulation_constraints *constraints = NULL;
Mark Brownc1727082012-04-04 00:50:22 +01003311 const struct regulator_init_data *init_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003312 static atomic_t regulator_no = ATOMIC_INIT(0);
3313 struct regulator_dev *rdev;
Mark Brown32c8fad2012-04-11 10:19:12 +01003314 struct device *dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003315 int ret, i;
Rajendra Nayak69511a42011-11-18 16:47:20 +05303316 const char *supply = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003317
Mark Brownc1727082012-04-04 00:50:22 +01003318 if (regulator_desc == NULL || config == NULL)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003319 return ERR_PTR(-EINVAL);
3320
Mark Brown32c8fad2012-04-11 10:19:12 +01003321 dev = config->dev;
Mark Browndcf70112012-05-08 18:09:12 +01003322 WARN_ON(!dev);
Mark Brown32c8fad2012-04-11 10:19:12 +01003323
Liam Girdwood414c70c2008-04-30 15:59:04 +01003324 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
3325 return ERR_PTR(-EINVAL);
3326
Diego Lizierocd78dfc2009-04-14 03:04:47 +02003327 if (regulator_desc->type != REGULATOR_VOLTAGE &&
3328 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01003329 return ERR_PTR(-EINVAL);
3330
Mark Brown476c2d82010-12-10 17:28:07 +00003331 /* Only one of each should be implemented */
3332 WARN_ON(regulator_desc->ops->get_voltage &&
3333 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00003334 WARN_ON(regulator_desc->ops->set_voltage &&
3335 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00003336
3337 /* If we're using selectors we must implement list_voltage. */
3338 if (regulator_desc->ops->get_voltage_sel &&
3339 !regulator_desc->ops->list_voltage) {
3340 return ERR_PTR(-EINVAL);
3341 }
Mark Browne8eef822010-12-12 14:36:17 +00003342 if (regulator_desc->ops->set_voltage_sel &&
3343 !regulator_desc->ops->list_voltage) {
3344 return ERR_PTR(-EINVAL);
3345 }
Mark Brown476c2d82010-12-10 17:28:07 +00003346
Mark Brownc1727082012-04-04 00:50:22 +01003347 init_data = config->init_data;
3348
Liam Girdwood414c70c2008-04-30 15:59:04 +01003349 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
3350 if (rdev == NULL)
3351 return ERR_PTR(-ENOMEM);
3352
3353 mutex_lock(&regulator_list_mutex);
3354
3355 mutex_init(&rdev->mutex);
Mark Brownc1727082012-04-04 00:50:22 +01003356 rdev->reg_data = config->driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003357 rdev->owner = regulator_desc->owner;
3358 rdev->desc = regulator_desc;
Mark Brown3a4b0a02012-05-08 18:10:45 +01003359 if (config->regmap)
3360 rdev->regmap = config->regmap;
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303361 else if (dev_get_regmap(dev, NULL))
Mark Brown3a4b0a02012-05-08 18:10:45 +01003362 rdev->regmap = dev_get_regmap(dev, NULL);
AnilKumar Ch52b84da2012-09-07 20:45:05 +05303363 else if (dev->parent)
3364 rdev->regmap = dev_get_regmap(dev->parent, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003365 INIT_LIST_HEAD(&rdev->consumer_list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003366 INIT_LIST_HEAD(&rdev->list);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003367 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
Mark Brownda07ecd2011-09-11 09:53:50 +01003368 INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003369
Liam Girdwooda5766f12008-10-10 13:22:20 +01003370 /* preform any regulator specific init */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003371 if (init_data && init_data->regulator_init) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01003372 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08003373 if (ret < 0)
3374 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003375 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003376
Liam Girdwooda5766f12008-10-10 13:22:20 +01003377 /* register with sysfs */
3378 rdev->dev.class = &regulator_class;
Mark Brownc1727082012-04-04 00:50:22 +01003379 rdev->dev.of_node = config->of_node;
Liam Girdwooda5766f12008-10-10 13:22:20 +01003380 rdev->dev.parent = dev;
Kay Sievers812460a2008-11-02 03:55:10 +01003381 dev_set_name(&rdev->dev, "regulator.%d",
3382 atomic_inc_return(&regulator_no) - 1);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003383 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003384 if (ret != 0) {
3385 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08003386 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04003387 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003388
3389 dev_set_drvdata(&rdev->dev, rdev);
3390
Marek Szyprowskib2a1ef42012-08-09 16:33:00 +02003391 if (config->ena_gpio && gpio_is_valid(config->ena_gpio)) {
Kim, Milof19b00d2013-02-18 06:50:39 +00003392 ret = regulator_ena_gpio_request(rdev, config);
Mark Brown65f73502012-06-27 14:14:38 +01003393 if (ret != 0) {
3394 rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
3395 config->ena_gpio, ret);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003396 goto wash;
Mark Brown65f73502012-06-27 14:14:38 +01003397 }
3398
Mark Brown65f73502012-06-27 14:14:38 +01003399 if (config->ena_gpio_flags & GPIOF_OUT_INIT_HIGH)
3400 rdev->ena_gpio_state = 1;
3401
Kim, Milo7b74d142013-02-18 06:50:55 +00003402 if (config->ena_gpio_invert)
Mark Brown65f73502012-06-27 14:14:38 +01003403 rdev->ena_gpio_state = !rdev->ena_gpio_state;
3404 }
3405
Mike Rapoport74f544c2008-11-25 14:53:53 +02003406 /* set regulator constraints */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003407 if (init_data)
3408 constraints = &init_data->constraints;
3409
3410 ret = set_machine_constraints(rdev, constraints);
Mike Rapoport74f544c2008-11-25 14:53:53 +02003411 if (ret < 0)
3412 goto scrub;
3413
David Brownell7ad68e22008-11-11 17:39:02 -08003414 /* add attributes supported by this regulator */
3415 ret = add_regulator_attributes(rdev);
3416 if (ret < 0)
3417 goto scrub;
3418
Mark Brown9a8f5e02011-11-29 18:11:19 +00003419 if (init_data && init_data->supply_regulator)
Rajendra Nayak69511a42011-11-18 16:47:20 +05303420 supply = init_data->supply_regulator;
3421 else if (regulator_desc->supply_name)
3422 supply = regulator_desc->supply_name;
3423
3424 if (supply) {
Mark Brown0178f3e2010-04-26 15:18:14 +01003425 struct regulator_dev *r;
Mark Brown0178f3e2010-04-26 15:18:14 +01003426
Mark Brown6d191a52012-03-29 14:19:02 +01003427 r = regulator_dev_lookup(dev, supply, &ret);
Mark Brown0178f3e2010-04-26 15:18:14 +01003428
Andrew Bresticker0f7b87f2013-04-04 15:27:47 -07003429 if (ret == -ENODEV) {
3430 /*
3431 * No supply was specified for this regulator and
3432 * there will never be one.
3433 */
3434 ret = 0;
3435 goto add_dev;
3436 } else if (!r) {
Rajendra Nayak69511a42011-11-18 16:47:20 +05303437 dev_err(dev, "Failed to find supply %s\n", supply);
Mark Brown04bf3012012-03-11 13:07:56 +00003438 ret = -EPROBE_DEFER;
Mark Brown0178f3e2010-04-26 15:18:14 +01003439 goto scrub;
3440 }
3441
3442 ret = set_supply(rdev, r);
3443 if (ret < 0)
3444 goto scrub;
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303445
3446 /* Enable supply if rail is enabled */
Mark Brownb1a86832012-05-14 00:40:14 +01003447 if (_regulator_is_enabled(rdev)) {
Laxman Dewanganb2296bd2012-01-02 13:08:45 +05303448 ret = regulator_enable(rdev->supply);
3449 if (ret < 0)
3450 goto scrub;
3451 }
Mark Brown0178f3e2010-04-26 15:18:14 +01003452 }
3453
Andrew Bresticker0f7b87f2013-04-04 15:27:47 -07003454add_dev:
Liam Girdwooda5766f12008-10-10 13:22:20 +01003455 /* add consumers devices */
Mark Brown9a8f5e02011-11-29 18:11:19 +00003456 if (init_data) {
3457 for (i = 0; i < init_data->num_consumer_supplies; i++) {
3458 ret = set_consumer_device_supply(rdev,
Mark Brown9a8f5e02011-11-29 18:11:19 +00003459 init_data->consumer_supplies[i].dev_name,
Mark Brown23c2f042011-02-24 17:39:09 +00003460 init_data->consumer_supplies[i].supply);
Mark Brown9a8f5e02011-11-29 18:11:19 +00003461 if (ret < 0) {
3462 dev_err(dev, "Failed to set supply %s\n",
3463 init_data->consumer_supplies[i].supply);
3464 goto unset_supplies;
3465 }
Mark Brown23c2f042011-02-24 17:39:09 +00003466 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01003467 }
3468
3469 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00003470
3471 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01003472out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01003473 mutex_unlock(&regulator_list_mutex);
3474 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08003475
Jani Nikulad4033b52010-04-29 10:55:11 +03003476unset_supplies:
3477 unset_regulator_supplies(rdev);
3478
David Brownell4fca9542008-11-11 17:38:53 -08003479scrub:
Mark Browne81dba852012-05-13 18:35:56 +01003480 if (rdev->supply)
Charles Keepax23ff2f02012-11-14 09:39:31 +00003481 _regulator_put(rdev->supply);
Kim, Milof19b00d2013-02-18 06:50:39 +00003482 regulator_ena_gpio_free(rdev);
Axel Lin1a6958e72011-07-15 10:50:43 +08003483 kfree(rdev->constraints);
Andrew Lunnb2da55d2012-10-28 16:01:11 +01003484wash:
David Brownell4fca9542008-11-11 17:38:53 -08003485 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06003486 /* device core frees rdev */
3487 rdev = ERR_PTR(ret);
3488 goto out;
3489
David Brownell4fca9542008-11-11 17:38:53 -08003490clean:
3491 kfree(rdev);
3492 rdev = ERR_PTR(ret);
3493 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003494}
3495EXPORT_SYMBOL_GPL(regulator_register);
3496
3497/**
3498 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00003499 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01003500 *
3501 * Called by regulator drivers to unregister a regulator.
3502 */
3503void regulator_unregister(struct regulator_dev *rdev)
3504{
3505 if (rdev == NULL)
3506 return;
3507
Mark Brown891636e2013-07-08 09:14:45 +01003508 if (rdev->supply) {
3509 while (rdev->use_count--)
3510 regulator_disable(rdev->supply);
Mark Browne032b372012-03-28 21:17:55 +01003511 regulator_put(rdev->supply);
Mark Brown891636e2013-07-08 09:14:45 +01003512 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01003513 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00003514 debugfs_remove_recursive(rdev->debugfs);
Tejun Heo43829732012-08-20 14:51:24 -07003515 flush_work(&rdev->disable_work.work);
Mark Brown6bf87d12009-07-21 16:00:25 +01003516 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02003517 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003518 list_del(&rdev->list);
Mark Brownf8c12fe2010-11-29 15:55:17 +00003519 kfree(rdev->constraints);
Kim, Milof19b00d2013-02-18 06:50:39 +00003520 regulator_ena_gpio_free(rdev);
Lothar Waßmann58fb5cf2011-11-28 15:38:37 +01003521 device_unregister(&rdev->dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01003522 mutex_unlock(&regulator_list_mutex);
3523}
3524EXPORT_SYMBOL_GPL(regulator_unregister);
3525
3526/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00003527 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01003528 * @state: system suspend state
3529 *
3530 * Configure each regulator with it's suspend operating parameters for state.
3531 * This will usually be called by machine suspend code prior to supending.
3532 */
3533int regulator_suspend_prepare(suspend_state_t state)
3534{
3535 struct regulator_dev *rdev;
3536 int ret = 0;
3537
3538 /* ON is handled by regulator active state */
3539 if (state == PM_SUSPEND_ON)
3540 return -EINVAL;
3541
3542 mutex_lock(&regulator_list_mutex);
3543 list_for_each_entry(rdev, &regulator_list, list) {
3544
3545 mutex_lock(&rdev->mutex);
3546 ret = suspend_prepare(rdev, state);
3547 mutex_unlock(&rdev->mutex);
3548
3549 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003550 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01003551 goto out;
3552 }
3553 }
3554out:
3555 mutex_unlock(&regulator_list_mutex);
3556 return ret;
3557}
3558EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
3559
3560/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003561 * regulator_suspend_finish - resume regulators from system wide suspend
3562 *
3563 * Turn on regulators that might be turned off by regulator_suspend_prepare
3564 * and that should be turned on according to the regulators properties.
3565 */
3566int regulator_suspend_finish(void)
3567{
3568 struct regulator_dev *rdev;
3569 int ret = 0, error;
3570
3571 mutex_lock(&regulator_list_mutex);
3572 list_for_each_entry(rdev, &regulator_list, list) {
3573 struct regulator_ops *ops = rdev->desc->ops;
3574
3575 mutex_lock(&rdev->mutex);
3576 if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
3577 ops->enable) {
3578 error = ops->enable(rdev);
3579 if (error)
3580 ret = error;
3581 } else {
3582 if (!has_full_constraints)
3583 goto unlock;
3584 if (!ops->disable)
3585 goto unlock;
Mark Brownb1a86832012-05-14 00:40:14 +01003586 if (!_regulator_is_enabled(rdev))
MyungJoo Ham7a32b582011-03-11 10:13:59 +09003587 goto unlock;
3588
3589 error = ops->disable(rdev);
3590 if (error)
3591 ret = error;
3592 }
3593unlock:
3594 mutex_unlock(&rdev->mutex);
3595 }
3596 mutex_unlock(&regulator_list_mutex);
3597 return ret;
3598}
3599EXPORT_SYMBOL_GPL(regulator_suspend_finish);
3600
3601/**
Mark Brownca725562009-03-16 19:36:34 +00003602 * regulator_has_full_constraints - the system has fully specified constraints
3603 *
3604 * Calling this function will cause the regulator API to disable all
3605 * regulators which have a zero use count and don't have an always_on
3606 * constraint in a late_initcall.
3607 *
3608 * The intention is that this will become the default behaviour in a
3609 * future kernel release so users are encouraged to use this facility
3610 * now.
3611 */
3612void regulator_has_full_constraints(void)
3613{
3614 has_full_constraints = 1;
3615}
3616EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
3617
3618/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01003619 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00003620 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003621 *
3622 * Get rdev regulator driver private data. This call can be used in the
3623 * regulator driver context.
3624 */
3625void *rdev_get_drvdata(struct regulator_dev *rdev)
3626{
3627 return rdev->reg_data;
3628}
3629EXPORT_SYMBOL_GPL(rdev_get_drvdata);
3630
3631/**
3632 * regulator_get_drvdata - get regulator driver data
3633 * @regulator: regulator
3634 *
3635 * Get regulator driver private data. This call can be used in the consumer
3636 * driver context when non API regulator specific functions need to be called.
3637 */
3638void *regulator_get_drvdata(struct regulator *regulator)
3639{
3640 return regulator->rdev->reg_data;
3641}
3642EXPORT_SYMBOL_GPL(regulator_get_drvdata);
3643
3644/**
3645 * regulator_set_drvdata - set regulator driver data
3646 * @regulator: regulator
3647 * @data: data
3648 */
3649void regulator_set_drvdata(struct regulator *regulator, void *data)
3650{
3651 regulator->rdev->reg_data = data;
3652}
3653EXPORT_SYMBOL_GPL(regulator_set_drvdata);
3654
3655/**
3656 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00003657 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01003658 */
3659int rdev_get_id(struct regulator_dev *rdev)
3660{
3661 return rdev->desc->id;
3662}
3663EXPORT_SYMBOL_GPL(rdev_get_id);
3664
Liam Girdwooda5766f12008-10-10 13:22:20 +01003665struct device *rdev_get_dev(struct regulator_dev *rdev)
3666{
3667 return &rdev->dev;
3668}
3669EXPORT_SYMBOL_GPL(rdev_get_dev);
3670
3671void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
3672{
3673 return reg_init_data->driver_data;
3674}
3675EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
3676
Mark Brownba55a972011-08-23 17:39:10 +01003677#ifdef CONFIG_DEBUG_FS
3678static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
3679 size_t count, loff_t *ppos)
3680{
3681 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3682 ssize_t len, ret = 0;
3683 struct regulator_map *map;
3684
3685 if (!buf)
3686 return -ENOMEM;
3687
3688 list_for_each_entry(map, &regulator_map_list, list) {
3689 len = snprintf(buf + ret, PAGE_SIZE - ret,
3690 "%s -> %s.%s\n",
3691 rdev_get_name(map->regulator), map->dev_name,
3692 map->supply);
3693 if (len >= 0)
3694 ret += len;
3695 if (ret > PAGE_SIZE) {
3696 ret = PAGE_SIZE;
3697 break;
3698 }
3699 }
3700
3701 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
3702
3703 kfree(buf);
3704
3705 return ret;
3706}
Stephen Boyd24751432012-02-20 22:50:42 -08003707#endif
Mark Brownba55a972011-08-23 17:39:10 +01003708
3709static const struct file_operations supply_map_fops = {
Stephen Boyd24751432012-02-20 22:50:42 -08003710#ifdef CONFIG_DEBUG_FS
Mark Brownba55a972011-08-23 17:39:10 +01003711 .read = supply_map_read_file,
3712 .llseek = default_llseek,
Mark Brownba55a972011-08-23 17:39:10 +01003713#endif
Stephen Boyd24751432012-02-20 22:50:42 -08003714};
Mark Brownba55a972011-08-23 17:39:10 +01003715
Liam Girdwood414c70c2008-04-30 15:59:04 +01003716static int __init regulator_init(void)
3717{
Mark Brown34abbd62010-02-12 10:18:08 +00003718 int ret;
3719
Mark Brown34abbd62010-02-12 10:18:08 +00003720 ret = class_register(&regulator_class);
3721
Mark Brown1130e5b2010-12-21 23:49:31 +00003722 debugfs_root = debugfs_create_dir("regulator", NULL);
Stephen Boyd24751432012-02-20 22:50:42 -08003723 if (!debugfs_root)
Mark Brown1130e5b2010-12-21 23:49:31 +00003724 pr_warn("regulator: Failed to create debugfs directory\n");
Mark Brownba55a972011-08-23 17:39:10 +01003725
Mark Brownf4d562c2012-02-20 21:01:04 +00003726 debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
3727 &supply_map_fops);
Mark Brown1130e5b2010-12-21 23:49:31 +00003728
Mark Brown34abbd62010-02-12 10:18:08 +00003729 regulator_dummy_init();
3730
3731 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01003732}
3733
3734/* init early to allow our consumers to complete system booting */
3735core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00003736
3737static int __init regulator_init_complete(void)
3738{
3739 struct regulator_dev *rdev;
3740 struct regulator_ops *ops;
3741 struct regulation_constraints *c;
3742 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00003743
Mark Brown86f5fcf2012-07-06 18:19:13 +01003744 /*
3745 * Since DT doesn't provide an idiomatic mechanism for
3746 * enabling full constraints and since it's much more natural
3747 * with DT to provide them just assume that a DT enabled
3748 * system has full constraints.
3749 */
3750 if (of_have_populated_dt())
3751 has_full_constraints = true;
3752
Mark Brownca725562009-03-16 19:36:34 +00003753 mutex_lock(&regulator_list_mutex);
3754
3755 /* If we have a full configuration then disable any regulators
3756 * which are not in use or always_on. This will become the
3757 * default behaviour in the future.
3758 */
3759 list_for_each_entry(rdev, &regulator_list, list) {
3760 ops = rdev->desc->ops;
3761 c = rdev->constraints;
3762
Mark Brownf25e0b42009-08-03 18:49:55 +01003763 if (!ops->disable || (c && c->always_on))
Mark Brownca725562009-03-16 19:36:34 +00003764 continue;
3765
3766 mutex_lock(&rdev->mutex);
3767
3768 if (rdev->use_count)
3769 goto unlock;
3770
3771 /* If we can't read the status assume it's on. */
3772 if (ops->is_enabled)
3773 enabled = ops->is_enabled(rdev);
3774 else
3775 enabled = 1;
3776
3777 if (!enabled)
3778 goto unlock;
3779
3780 if (has_full_constraints) {
3781 /* We log since this may kill the system if it
3782 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08003783 rdev_info(rdev, "disabling\n");
Mark Brownca725562009-03-16 19:36:34 +00003784 ret = ops->disable(rdev);
3785 if (ret != 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08003786 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00003787 }
3788 } else {
3789 /* The intention is that in future we will
3790 * assume that full constraints are provided
3791 * so warn even if we aren't going to do
3792 * anything here.
3793 */
Joe Perches5da84fd2010-11-30 05:53:48 -08003794 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00003795 }
3796
3797unlock:
3798 mutex_unlock(&rdev->mutex);
3799 }
3800
3801 mutex_unlock(&regulator_list_mutex);
3802
3803 return 0;
3804}
3805late_initcall(regulator_init_complete);