blob: 98d25fcb393071a1a1a48ff7502a94431ff30272 [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
Daniel Walker1d7372e2010-11-17 15:30:28 -080016#define pr_fmt(fmt) "%s: " fmt, __func__
Daniel Walkerc5e28ed72010-11-17 15:30:27 -080017
Liam Girdwood414c70c2008-04-30 15:59:04 +010018#include <linux/kernel.h>
19#include <linux/init.h>
Mark Brown1130e5b2010-12-21 23:49:31 +000020#include <linux/debugfs.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010021#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010023#include <linux/err.h>
24#include <linux/mutex.h>
25#include <linux/suspend.h>
Mark Brown31aae2b2009-12-21 12:21:52 +000026#include <linux/delay.h>
Liam Girdwood414c70c2008-04-30 15:59:04 +010027#include <linux/regulator/consumer.h>
28#include <linux/regulator/driver.h>
29#include <linux/regulator/machine.h>
30
Mark Brown02fa3ec2010-11-10 14:38:30 +000031#define CREATE_TRACE_POINTS
32#include <trace/events/regulator.h>
33
Mark Brown34abbd62010-02-12 10:18:08 +000034#include "dummy.h"
35
Joe Perches5da84fd2010-11-30 05:53:48 -080036#define rdev_err(rdev, fmt, ...) \
37 pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
38#define rdev_warn(rdev, fmt, ...) \
39 pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
40#define rdev_info(rdev, fmt, ...) \
41 pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
42#define rdev_dbg(rdev, fmt, ...) \
43 pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
44
Liam Girdwood414c70c2008-04-30 15:59:04 +010045static DEFINE_MUTEX(regulator_list_mutex);
46static LIST_HEAD(regulator_list);
47static LIST_HEAD(regulator_map_list);
Mark Brown21cf8912010-12-21 23:30:07 +000048static bool has_full_constraints;
Mark Brown688fe992010-10-05 19:18:32 -070049static bool board_wants_dummy_regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010050
Mark Brown1130e5b2010-12-21 23:49:31 +000051#ifdef CONFIG_DEBUG_FS
52static struct dentry *debugfs_root;
53#endif
54
Mark Brown8dc53902008-12-31 12:52:40 +000055/*
Liam Girdwood414c70c2008-04-30 15:59:04 +010056 * struct regulator_map
57 *
58 * Used to provide symbolic supply names to devices.
59 */
60struct regulator_map {
61 struct list_head list;
Mark Brown40f92442009-06-17 17:56:39 +010062 const char *dev_name; /* The dev_name() for the consumer */
Liam Girdwood414c70c2008-04-30 15:59:04 +010063 const char *supply;
Liam Girdwooda5766f12008-10-10 13:22:20 +010064 struct regulator_dev *regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +010065};
66
Liam Girdwood414c70c2008-04-30 15:59:04 +010067/*
68 * struct regulator
69 *
70 * One for each consumer device.
71 */
72struct regulator {
73 struct device *dev;
74 struct list_head list;
75 int uA_load;
76 int min_uV;
77 int max_uV;
Liam Girdwood414c70c2008-04-30 15:59:04 +010078 char *supply_name;
79 struct device_attribute dev_attr;
80 struct regulator_dev *rdev;
81};
82
83static int _regulator_is_enabled(struct regulator_dev *rdev);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -050084static int _regulator_disable(struct regulator_dev *rdev,
85 struct regulator_dev **supply_rdev_ptr);
Liam Girdwood414c70c2008-04-30 15:59:04 +010086static int _regulator_get_voltage(struct regulator_dev *rdev);
87static int _regulator_get_current_limit(struct regulator_dev *rdev);
88static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
89static void _notifier_call_chain(struct regulator_dev *rdev,
90 unsigned long event, void *data);
Mark Brown75790252010-12-12 14:25:50 +000091static int _regulator_do_set_voltage(struct regulator_dev *rdev,
92 int min_uV, int max_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +010093
Mark Brown1083c392009-10-22 16:31:32 +010094static const char *rdev_get_name(struct regulator_dev *rdev)
95{
96 if (rdev->constraints && rdev->constraints->name)
97 return rdev->constraints->name;
98 else if (rdev->desc->name)
99 return rdev->desc->name;
100 else
101 return "";
102}
103
Liam Girdwood414c70c2008-04-30 15:59:04 +0100104/* gets the regulator for a given consumer device */
105static struct regulator *get_device_regulator(struct device *dev)
106{
107 struct regulator *regulator = NULL;
108 struct regulator_dev *rdev;
109
110 mutex_lock(&regulator_list_mutex);
111 list_for_each_entry(rdev, &regulator_list, list) {
112 mutex_lock(&rdev->mutex);
113 list_for_each_entry(regulator, &rdev->consumer_list, list) {
114 if (regulator->dev == dev) {
115 mutex_unlock(&rdev->mutex);
116 mutex_unlock(&regulator_list_mutex);
117 return regulator;
118 }
119 }
120 mutex_unlock(&rdev->mutex);
121 }
122 mutex_unlock(&regulator_list_mutex);
123 return NULL;
124}
125
126/* Platform voltage constraint check */
127static int regulator_check_voltage(struct regulator_dev *rdev,
128 int *min_uV, int *max_uV)
129{
130 BUG_ON(*min_uV > *max_uV);
131
132 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800133 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100134 return -ENODEV;
135 }
136 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800137 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100138 return -EPERM;
139 }
140
141 if (*max_uV > rdev->constraints->max_uV)
142 *max_uV = rdev->constraints->max_uV;
143 if (*min_uV < rdev->constraints->min_uV)
144 *min_uV = rdev->constraints->min_uV;
145
146 if (*min_uV > *max_uV)
147 return -EINVAL;
148
149 return 0;
150}
151
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +0100152/* Make sure we select a voltage that suits the needs of all
153 * regulator consumers
154 */
155static int regulator_check_consumers(struct regulator_dev *rdev,
156 int *min_uV, int *max_uV)
157{
158 struct regulator *regulator;
159
160 list_for_each_entry(regulator, &rdev->consumer_list, list) {
161 if (*max_uV > regulator->max_uV)
162 *max_uV = regulator->max_uV;
163 if (*min_uV < regulator->min_uV)
164 *min_uV = regulator->min_uV;
165 }
166
167 if (*min_uV > *max_uV)
168 return -EINVAL;
169
170 return 0;
171}
172
Liam Girdwood414c70c2008-04-30 15:59:04 +0100173/* current constraint check */
174static int regulator_check_current_limit(struct regulator_dev *rdev,
175 int *min_uA, int *max_uA)
176{
177 BUG_ON(*min_uA > *max_uA);
178
179 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800180 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100181 return -ENODEV;
182 }
183 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800184 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100185 return -EPERM;
186 }
187
188 if (*max_uA > rdev->constraints->max_uA)
189 *max_uA = rdev->constraints->max_uA;
190 if (*min_uA < rdev->constraints->min_uA)
191 *min_uA = rdev->constraints->min_uA;
192
193 if (*min_uA > *max_uA)
194 return -EINVAL;
195
196 return 0;
197}
198
199/* operating mode constraint check */
Mark Brown2c608232011-03-30 06:29:12 +0900200static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100201{
Mark Brown2c608232011-03-30 06:29:12 +0900202 switch (*mode) {
David Brownelle5735202008-11-16 11:46:56 -0800203 case REGULATOR_MODE_FAST:
204 case REGULATOR_MODE_NORMAL:
205 case REGULATOR_MODE_IDLE:
206 case REGULATOR_MODE_STANDBY:
207 break;
208 default:
209 return -EINVAL;
210 }
211
Liam Girdwood414c70c2008-04-30 15:59:04 +0100212 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800213 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100214 return -ENODEV;
215 }
216 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800217 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100218 return -EPERM;
219 }
Mark Brown2c608232011-03-30 06:29:12 +0900220
221 /* The modes are bitmasks, the most power hungry modes having
222 * the lowest values. If the requested mode isn't supported
223 * try higher modes. */
224 while (*mode) {
225 if (rdev->constraints->valid_modes_mask & *mode)
226 return 0;
227 *mode /= 2;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100228 }
Mark Brown2c608232011-03-30 06:29:12 +0900229
230 return -EINVAL;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100231}
232
233/* dynamic regulator mode switching constraint check */
234static int regulator_check_drms(struct regulator_dev *rdev)
235{
236 if (!rdev->constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800237 rdev_err(rdev, "no constraints\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100238 return -ENODEV;
239 }
240 if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800241 rdev_err(rdev, "operation not allowed\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100242 return -EPERM;
243 }
244 return 0;
245}
246
247static ssize_t device_requested_uA_show(struct device *dev,
248 struct device_attribute *attr, char *buf)
249{
250 struct regulator *regulator;
251
252 regulator = get_device_regulator(dev);
253 if (regulator == NULL)
254 return 0;
255
256 return sprintf(buf, "%d\n", regulator->uA_load);
257}
258
259static ssize_t regulator_uV_show(struct device *dev,
260 struct device_attribute *attr, char *buf)
261{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100262 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100263 ssize_t ret;
264
265 mutex_lock(&rdev->mutex);
266 ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
267 mutex_unlock(&rdev->mutex);
268
269 return ret;
270}
David Brownell7ad68e22008-11-11 17:39:02 -0800271static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100272
273static ssize_t regulator_uA_show(struct device *dev,
274 struct device_attribute *attr, char *buf)
275{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100276 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100277
278 return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
279}
David Brownell7ad68e22008-11-11 17:39:02 -0800280static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100281
Mark Brownbc558a62008-10-10 15:33:20 +0100282static ssize_t regulator_name_show(struct device *dev,
283 struct device_attribute *attr, char *buf)
284{
285 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brownbc558a62008-10-10 15:33:20 +0100286
Mark Brown1083c392009-10-22 16:31:32 +0100287 return sprintf(buf, "%s\n", rdev_get_name(rdev));
Mark Brownbc558a62008-10-10 15:33:20 +0100288}
289
David Brownell4fca9542008-11-11 17:38:53 -0800290static ssize_t regulator_print_opmode(char *buf, int mode)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100291{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100292 switch (mode) {
293 case REGULATOR_MODE_FAST:
294 return sprintf(buf, "fast\n");
295 case REGULATOR_MODE_NORMAL:
296 return sprintf(buf, "normal\n");
297 case REGULATOR_MODE_IDLE:
298 return sprintf(buf, "idle\n");
299 case REGULATOR_MODE_STANDBY:
300 return sprintf(buf, "standby\n");
301 }
302 return sprintf(buf, "unknown\n");
303}
304
David Brownell4fca9542008-11-11 17:38:53 -0800305static ssize_t regulator_opmode_show(struct device *dev,
306 struct device_attribute *attr, char *buf)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100307{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100308 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100309
David Brownell4fca9542008-11-11 17:38:53 -0800310 return regulator_print_opmode(buf, _regulator_get_mode(rdev));
311}
David Brownell7ad68e22008-11-11 17:39:02 -0800312static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800313
314static ssize_t regulator_print_state(char *buf, int state)
315{
Liam Girdwood414c70c2008-04-30 15:59:04 +0100316 if (state > 0)
317 return sprintf(buf, "enabled\n");
318 else if (state == 0)
319 return sprintf(buf, "disabled\n");
320 else
321 return sprintf(buf, "unknown\n");
322}
323
David Brownell4fca9542008-11-11 17:38:53 -0800324static ssize_t regulator_state_show(struct device *dev,
325 struct device_attribute *attr, char *buf)
326{
327 struct regulator_dev *rdev = dev_get_drvdata(dev);
Mark Brown93325462009-08-03 18:49:56 +0100328 ssize_t ret;
David Brownell4fca9542008-11-11 17:38:53 -0800329
Mark Brown93325462009-08-03 18:49:56 +0100330 mutex_lock(&rdev->mutex);
331 ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
332 mutex_unlock(&rdev->mutex);
333
334 return ret;
David Brownell4fca9542008-11-11 17:38:53 -0800335}
David Brownell7ad68e22008-11-11 17:39:02 -0800336static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
David Brownell4fca9542008-11-11 17:38:53 -0800337
David Brownell853116a2009-01-14 23:03:17 -0800338static ssize_t regulator_status_show(struct device *dev,
339 struct device_attribute *attr, char *buf)
340{
341 struct regulator_dev *rdev = dev_get_drvdata(dev);
342 int status;
343 char *label;
344
345 status = rdev->desc->ops->get_status(rdev);
346 if (status < 0)
347 return status;
348
349 switch (status) {
350 case REGULATOR_STATUS_OFF:
351 label = "off";
352 break;
353 case REGULATOR_STATUS_ON:
354 label = "on";
355 break;
356 case REGULATOR_STATUS_ERROR:
357 label = "error";
358 break;
359 case REGULATOR_STATUS_FAST:
360 label = "fast";
361 break;
362 case REGULATOR_STATUS_NORMAL:
363 label = "normal";
364 break;
365 case REGULATOR_STATUS_IDLE:
366 label = "idle";
367 break;
368 case REGULATOR_STATUS_STANDBY:
369 label = "standby";
370 break;
371 default:
372 return -ERANGE;
373 }
374
375 return sprintf(buf, "%s\n", label);
376}
377static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
378
Liam Girdwood414c70c2008-04-30 15:59:04 +0100379static ssize_t regulator_min_uA_show(struct device *dev,
380 struct device_attribute *attr, char *buf)
381{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100382 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100383
384 if (!rdev->constraints)
385 return sprintf(buf, "constraint not defined\n");
386
387 return sprintf(buf, "%d\n", rdev->constraints->min_uA);
388}
David Brownell7ad68e22008-11-11 17:39:02 -0800389static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100390
391static ssize_t regulator_max_uA_show(struct device *dev,
392 struct device_attribute *attr, char *buf)
393{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100394 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100395
396 if (!rdev->constraints)
397 return sprintf(buf, "constraint not defined\n");
398
399 return sprintf(buf, "%d\n", rdev->constraints->max_uA);
400}
David Brownell7ad68e22008-11-11 17:39:02 -0800401static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100402
403static ssize_t regulator_min_uV_show(struct device *dev,
404 struct device_attribute *attr, char *buf)
405{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100406 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100407
408 if (!rdev->constraints)
409 return sprintf(buf, "constraint not defined\n");
410
411 return sprintf(buf, "%d\n", rdev->constraints->min_uV);
412}
David Brownell7ad68e22008-11-11 17:39:02 -0800413static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100414
415static ssize_t regulator_max_uV_show(struct device *dev,
416 struct device_attribute *attr, char *buf)
417{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100418 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100419
420 if (!rdev->constraints)
421 return sprintf(buf, "constraint not defined\n");
422
423 return sprintf(buf, "%d\n", rdev->constraints->max_uV);
424}
David Brownell7ad68e22008-11-11 17:39:02 -0800425static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100426
427static ssize_t regulator_total_uA_show(struct device *dev,
428 struct device_attribute *attr, char *buf)
429{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100430 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100431 struct regulator *regulator;
432 int uA = 0;
433
434 mutex_lock(&rdev->mutex);
435 list_for_each_entry(regulator, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100436 uA += regulator->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100437 mutex_unlock(&rdev->mutex);
438 return sprintf(buf, "%d\n", uA);
439}
David Brownell7ad68e22008-11-11 17:39:02 -0800440static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100441
442static ssize_t regulator_num_users_show(struct device *dev,
443 struct device_attribute *attr, char *buf)
444{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100445 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100446 return sprintf(buf, "%d\n", rdev->use_count);
447}
448
449static ssize_t regulator_type_show(struct device *dev,
450 struct device_attribute *attr, char *buf)
451{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100452 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100453
454 switch (rdev->desc->type) {
455 case REGULATOR_VOLTAGE:
456 return sprintf(buf, "voltage\n");
457 case REGULATOR_CURRENT:
458 return sprintf(buf, "current\n");
459 }
460 return sprintf(buf, "unknown\n");
461}
462
463static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
464 struct device_attribute *attr, char *buf)
465{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100466 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100467
Liam Girdwood414c70c2008-04-30 15:59:04 +0100468 return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
469}
David Brownell7ad68e22008-11-11 17:39:02 -0800470static DEVICE_ATTR(suspend_mem_microvolts, 0444,
471 regulator_suspend_mem_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100472
473static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
474 struct device_attribute *attr, char *buf)
475{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100476 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100477
Liam Girdwood414c70c2008-04-30 15:59:04 +0100478 return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
479}
David Brownell7ad68e22008-11-11 17:39:02 -0800480static DEVICE_ATTR(suspend_disk_microvolts, 0444,
481 regulator_suspend_disk_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100482
483static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
484 struct device_attribute *attr, char *buf)
485{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100486 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100487
Liam Girdwood414c70c2008-04-30 15:59:04 +0100488 return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
489}
David Brownell7ad68e22008-11-11 17:39:02 -0800490static DEVICE_ATTR(suspend_standby_microvolts, 0444,
491 regulator_suspend_standby_uV_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100492
Liam Girdwood414c70c2008-04-30 15:59:04 +0100493static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
494 struct device_attribute *attr, char *buf)
495{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100496 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100497
David Brownell4fca9542008-11-11 17:38:53 -0800498 return regulator_print_opmode(buf,
499 rdev->constraints->state_mem.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100500}
David Brownell7ad68e22008-11-11 17:39:02 -0800501static DEVICE_ATTR(suspend_mem_mode, 0444,
502 regulator_suspend_mem_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100503
504static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
505 struct device_attribute *attr, char *buf)
506{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100507 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100508
David Brownell4fca9542008-11-11 17:38:53 -0800509 return regulator_print_opmode(buf,
510 rdev->constraints->state_disk.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100511}
David Brownell7ad68e22008-11-11 17:39:02 -0800512static DEVICE_ATTR(suspend_disk_mode, 0444,
513 regulator_suspend_disk_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100514
515static ssize_t regulator_suspend_standby_mode_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
David Brownell4fca9542008-11-11 17:38:53 -0800520 return regulator_print_opmode(buf,
521 rdev->constraints->state_standby.mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100522}
David Brownell7ad68e22008-11-11 17:39:02 -0800523static DEVICE_ATTR(suspend_standby_mode, 0444,
524 regulator_suspend_standby_mode_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100525
526static ssize_t regulator_suspend_mem_state_show(struct device *dev,
527 struct device_attribute *attr, char *buf)
528{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100529 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100530
David Brownell4fca9542008-11-11 17:38:53 -0800531 return regulator_print_state(buf,
532 rdev->constraints->state_mem.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100533}
David Brownell7ad68e22008-11-11 17:39:02 -0800534static DEVICE_ATTR(suspend_mem_state, 0444,
535 regulator_suspend_mem_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100536
537static ssize_t regulator_suspend_disk_state_show(struct device *dev,
538 struct device_attribute *attr, char *buf)
539{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100540 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100541
David Brownell4fca9542008-11-11 17:38:53 -0800542 return regulator_print_state(buf,
543 rdev->constraints->state_disk.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100544}
David Brownell7ad68e22008-11-11 17:39:02 -0800545static DEVICE_ATTR(suspend_disk_state, 0444,
546 regulator_suspend_disk_state_show, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100547
548static ssize_t regulator_suspend_standby_state_show(struct device *dev,
549 struct device_attribute *attr, char *buf)
550{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100551 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100552
David Brownell4fca9542008-11-11 17:38:53 -0800553 return regulator_print_state(buf,
554 rdev->constraints->state_standby.enabled);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100555}
David Brownell7ad68e22008-11-11 17:39:02 -0800556static DEVICE_ATTR(suspend_standby_state, 0444,
557 regulator_suspend_standby_state_show, NULL);
Mark Brownbc558a62008-10-10 15:33:20 +0100558
David Brownell7ad68e22008-11-11 17:39:02 -0800559
560/*
561 * These are the only attributes are present for all regulators.
562 * Other attributes are a function of regulator functionality.
563 */
Liam Girdwood414c70c2008-04-30 15:59:04 +0100564static struct device_attribute regulator_dev_attrs[] = {
Mark Brownbc558a62008-10-10 15:33:20 +0100565 __ATTR(name, 0444, regulator_name_show, NULL),
Liam Girdwood414c70c2008-04-30 15:59:04 +0100566 __ATTR(num_users, 0444, regulator_num_users_show, NULL),
567 __ATTR(type, 0444, regulator_type_show, NULL),
Liam Girdwood414c70c2008-04-30 15:59:04 +0100568 __ATTR_NULL,
569};
570
571static void regulator_dev_release(struct device *dev)
572{
Liam Girdwooda5766f12008-10-10 13:22:20 +0100573 struct regulator_dev *rdev = dev_get_drvdata(dev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100574 kfree(rdev);
575}
576
577static struct class regulator_class = {
578 .name = "regulator",
579 .dev_release = regulator_dev_release,
580 .dev_attrs = regulator_dev_attrs,
581};
582
583/* Calculate the new optimum regulator operating mode based on the new total
584 * consumer load. All locks held by caller */
585static void drms_uA_update(struct regulator_dev *rdev)
586{
587 struct regulator *sibling;
588 int current_uA = 0, output_uV, input_uV, err;
589 unsigned int mode;
590
591 err = regulator_check_drms(rdev);
592 if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
Mark Brown476c2d82010-12-10 17:28:07 +0000593 (!rdev->desc->ops->get_voltage &&
594 !rdev->desc->ops->get_voltage_sel) ||
595 !rdev->desc->ops->set_mode)
Dan Carpenter036de8e2009-04-08 13:52:39 +0300596 return;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100597
598 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000599 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100600 if (output_uV <= 0)
601 return;
602
603 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +0000604 input_uV = 0;
605 if (rdev->supply)
606 input_uV = _regulator_get_voltage(rdev);
607 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +0100608 input_uV = rdev->constraints->input_uV;
609 if (input_uV <= 0)
610 return;
611
612 /* calc total requested load */
613 list_for_each_entry(sibling, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +0100614 current_uA += sibling->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100615
616 /* now get the optimum mode for our new total regulator load */
617 mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
618 output_uV, current_uA);
619
620 /* check the new mode is allowed */
Mark Brown2c608232011-03-30 06:29:12 +0900621 err = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100622 if (err == 0)
623 rdev->desc->ops->set_mode(rdev, mode);
624}
625
626static int suspend_set_state(struct regulator_dev *rdev,
627 struct regulator_state *rstate)
628{
629 int ret = 0;
Mark Brown638f85c2009-10-22 16:31:33 +0100630 bool can_set_state;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100631
Mark Brown638f85c2009-10-22 16:31:33 +0100632 can_set_state = rdev->desc->ops->set_suspend_enable &&
633 rdev->desc->ops->set_suspend_disable;
634
635 /* If we have no suspend mode configration don't set anything;
636 * only warn if the driver actually makes the suspend mode
637 * configurable.
638 */
639 if (!rstate->enabled && !rstate->disabled) {
640 if (can_set_state)
Joe Perches5da84fd2010-11-30 05:53:48 -0800641 rdev_warn(rdev, "No configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100642 return 0;
643 }
644
645 if (rstate->enabled && rstate->disabled) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800646 rdev_err(rdev, "invalid configuration\n");
Mark Brown638f85c2009-10-22 16:31:33 +0100647 return -EINVAL;
648 }
649
650 if (!can_set_state) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800651 rdev_err(rdev, "no way to set suspend state\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100652 return -EINVAL;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100653 }
Liam Girdwood414c70c2008-04-30 15:59:04 +0100654
655 if (rstate->enabled)
656 ret = rdev->desc->ops->set_suspend_enable(rdev);
657 else
658 ret = rdev->desc->ops->set_suspend_disable(rdev);
659 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800660 rdev_err(rdev, "failed to enabled/disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100661 return ret;
662 }
663
664 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
665 ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
666 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800667 rdev_err(rdev, "failed to set voltage\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100668 return ret;
669 }
670 }
671
672 if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
673 ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
674 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800675 rdev_err(rdev, "failed to set mode\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +0100676 return ret;
677 }
678 }
679 return ret;
680}
681
682/* locks held by caller */
683static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
684{
685 if (!rdev->constraints)
686 return -EINVAL;
687
688 switch (state) {
689 case PM_SUSPEND_STANDBY:
690 return suspend_set_state(rdev,
691 &rdev->constraints->state_standby);
692 case PM_SUSPEND_MEM:
693 return suspend_set_state(rdev,
694 &rdev->constraints->state_mem);
695 case PM_SUSPEND_MAX:
696 return suspend_set_state(rdev,
697 &rdev->constraints->state_disk);
698 default:
699 return -EINVAL;
700 }
701}
702
703static void print_constraints(struct regulator_dev *rdev)
704{
705 struct regulation_constraints *constraints = rdev->constraints;
Mark Brown973e9a22010-02-11 19:20:48 +0000706 char buf[80] = "";
Mark Brown8f031b42009-10-22 16:31:31 +0100707 int count = 0;
708 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +0100709
Mark Brown8f031b42009-10-22 16:31:31 +0100710 if (constraints->min_uV && constraints->max_uV) {
Liam Girdwood414c70c2008-04-30 15:59:04 +0100711 if (constraints->min_uV == constraints->max_uV)
Mark Brown8f031b42009-10-22 16:31:31 +0100712 count += sprintf(buf + count, "%d mV ",
713 constraints->min_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100714 else
Mark Brown8f031b42009-10-22 16:31:31 +0100715 count += sprintf(buf + count, "%d <--> %d mV ",
716 constraints->min_uV / 1000,
717 constraints->max_uV / 1000);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100718 }
Mark Brown8f031b42009-10-22 16:31:31 +0100719
720 if (!constraints->min_uV ||
721 constraints->min_uV != constraints->max_uV) {
722 ret = _regulator_get_voltage(rdev);
723 if (ret > 0)
724 count += sprintf(buf + count, "at %d mV ", ret / 1000);
725 }
726
727 if (constraints->min_uA && constraints->max_uA) {
728 if (constraints->min_uA == constraints->max_uA)
729 count += sprintf(buf + count, "%d mA ",
730 constraints->min_uA / 1000);
731 else
732 count += sprintf(buf + count, "%d <--> %d mA ",
733 constraints->min_uA / 1000,
734 constraints->max_uA / 1000);
735 }
736
737 if (!constraints->min_uA ||
738 constraints->min_uA != constraints->max_uA) {
739 ret = _regulator_get_current_limit(rdev);
740 if (ret > 0)
Cyril Chemparathye4a63762010-09-22 12:30:15 -0400741 count += sprintf(buf + count, "at %d mA ", ret / 1000);
Mark Brown8f031b42009-10-22 16:31:31 +0100742 }
743
Liam Girdwood414c70c2008-04-30 15:59:04 +0100744 if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
745 count += sprintf(buf + count, "fast ");
746 if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
747 count += sprintf(buf + count, "normal ");
748 if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
749 count += sprintf(buf + count, "idle ");
750 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
751 count += sprintf(buf + count, "standby");
752
Mark Brown13ce29f2010-12-17 16:04:12 +0000753 rdev_info(rdev, "%s\n", buf);
Liam Girdwood414c70c2008-04-30 15:59:04 +0100754}
755
Mark Browne79055d2009-10-19 15:53:50 +0100756static int machine_constraints_voltage(struct regulator_dev *rdev,
Mark Brown1083c392009-10-22 16:31:32 +0100757 struct regulation_constraints *constraints)
Mark Browne79055d2009-10-19 15:53:50 +0100758{
759 struct regulator_ops *ops = rdev->desc->ops;
Mark Brownaf5866c2009-10-22 16:31:30 +0100760 int ret;
761
762 /* do we need to apply the constraint voltage */
763 if (rdev->constraints->apply_uV &&
Mark Brown75790252010-12-12 14:25:50 +0000764 rdev->constraints->min_uV == rdev->constraints->max_uV) {
765 ret = _regulator_do_set_voltage(rdev,
766 rdev->constraints->min_uV,
767 rdev->constraints->max_uV);
768 if (ret < 0) {
769 rdev_err(rdev, "failed to apply %duV constraint\n",
770 rdev->constraints->min_uV);
771 rdev->constraints = NULL;
772 return ret;
773 }
Mark Brownaf5866c2009-10-22 16:31:30 +0100774 }
Mark Browne79055d2009-10-19 15:53:50 +0100775
776 /* constrain machine-level voltage specs to fit
777 * the actual range supported by this regulator.
778 */
779 if (ops->list_voltage && rdev->desc->n_voltages) {
780 int count = rdev->desc->n_voltages;
781 int i;
782 int min_uV = INT_MAX;
783 int max_uV = INT_MIN;
784 int cmin = constraints->min_uV;
785 int cmax = constraints->max_uV;
786
787 /* it's safe to autoconfigure fixed-voltage supplies
788 and the constraints are used by list_voltage. */
789 if (count == 1 && !cmin) {
790 cmin = 1;
791 cmax = INT_MAX;
792 constraints->min_uV = cmin;
793 constraints->max_uV = cmax;
794 }
795
796 /* voltage constraints are optional */
797 if ((cmin == 0) && (cmax == 0))
798 return 0;
799
800 /* else require explicit machine-level constraints */
801 if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800802 rdev_err(rdev, "invalid voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100803 return -EINVAL;
804 }
805
806 /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
807 for (i = 0; i < count; i++) {
808 int value;
809
810 value = ops->list_voltage(rdev, i);
811 if (value <= 0)
812 continue;
813
814 /* maybe adjust [min_uV..max_uV] */
815 if (value >= cmin && value < min_uV)
816 min_uV = value;
817 if (value <= cmax && value > max_uV)
818 max_uV = value;
819 }
820
821 /* final: [min_uV..max_uV] valid iff constraints valid */
822 if (max_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800823 rdev_err(rdev, "unsupportable voltage constraints\n");
Mark Browne79055d2009-10-19 15:53:50 +0100824 return -EINVAL;
825 }
826
827 /* use regulator's subset of machine constraints */
828 if (constraints->min_uV < min_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800829 rdev_dbg(rdev, "override min_uV, %d -> %d\n",
830 constraints->min_uV, min_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100831 constraints->min_uV = min_uV;
832 }
833 if (constraints->max_uV > max_uV) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800834 rdev_dbg(rdev, "override max_uV, %d -> %d\n",
835 constraints->max_uV, max_uV);
Mark Browne79055d2009-10-19 15:53:50 +0100836 constraints->max_uV = max_uV;
837 }
838 }
839
840 return 0;
841}
842
Liam Girdwooda5766f12008-10-10 13:22:20 +0100843/**
844 * set_machine_constraints - sets regulator constraints
Mark Brown69279fb2008-12-31 12:52:41 +0000845 * @rdev: regulator source
Mark Brownc8e7e462008-12-31 12:52:42 +0000846 * @constraints: constraints to apply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100847 *
848 * Allows platform initialisation code to define and constrain
849 * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
850 * Constraints *must* be set by platform code in order for some
851 * regulator operations to proceed i.e. set_voltage, set_current_limit,
852 * set_mode.
853 */
854static int set_machine_constraints(struct regulator_dev *rdev,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000855 const struct regulation_constraints *constraints)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100856{
857 int ret = 0;
Mark Browne5fda262008-09-09 16:21:20 +0100858 struct regulator_ops *ops = rdev->desc->ops;
Mark Browne06f5b42008-09-09 16:21:19 +0100859
Mark Brownf8c12fe2010-11-29 15:55:17 +0000860 rdev->constraints = kmemdup(constraints, sizeof(*constraints),
861 GFP_KERNEL);
862 if (!rdev->constraints)
863 return -ENOMEM;
Mark Brownaf5866c2009-10-22 16:31:30 +0100864
Mark Brownf8c12fe2010-11-29 15:55:17 +0000865 ret = machine_constraints_voltage(rdev, rdev->constraints);
Mark Browne79055d2009-10-19 15:53:50 +0100866 if (ret != 0)
867 goto out;
David Brownell4367cfd2009-02-26 11:48:36 -0800868
Liam Girdwooda5766f12008-10-10 13:22:20 +0100869 /* do we need to setup our suspend state */
Mark Browne06f5b42008-09-09 16:21:19 +0100870 if (constraints->initial_state) {
Mark Brownf8c12fe2010-11-29 15:55:17 +0000871 ret = suspend_prepare(rdev, rdev->constraints->initial_state);
Mark Browne06f5b42008-09-09 16:21:19 +0100872 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800873 rdev_err(rdev, "failed to set suspend state\n");
Mark Browne06f5b42008-09-09 16:21:19 +0100874 rdev->constraints = NULL;
875 goto out;
876 }
877 }
Liam Girdwooda5766f12008-10-10 13:22:20 +0100878
Mark Browna3084662009-02-26 19:24:19 +0000879 if (constraints->initial_mode) {
880 if (!ops->set_mode) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800881 rdev_err(rdev, "no set_mode operation\n");
Mark Browna3084662009-02-26 19:24:19 +0000882 ret = -EINVAL;
883 goto out;
884 }
885
Mark Brownf8c12fe2010-11-29 15:55:17 +0000886 ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
Mark Browna3084662009-02-26 19:24:19 +0000887 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800888 rdev_err(rdev, "failed to set initial mode: %d\n", ret);
Mark Browna3084662009-02-26 19:24:19 +0000889 goto out;
890 }
891 }
892
Mark Browncacf90f2009-03-02 16:32:46 +0000893 /* If the constraints say the regulator should be on at this point
894 * and we have control then make sure it is enabled.
895 */
Mark Brownf8c12fe2010-11-29 15:55:17 +0000896 if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
897 ops->enable) {
Mark Browne5fda262008-09-09 16:21:20 +0100898 ret = ops->enable(rdev);
899 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800900 rdev_err(rdev, "failed to enable\n");
Mark Browne5fda262008-09-09 16:21:20 +0100901 rdev->constraints = NULL;
902 goto out;
903 }
904 }
905
Liam Girdwooda5766f12008-10-10 13:22:20 +0100906 print_constraints(rdev);
907out:
908 return ret;
909}
910
911/**
912 * set_supply - set regulator supply regulator
Mark Brown69279fb2008-12-31 12:52:41 +0000913 * @rdev: regulator name
914 * @supply_rdev: supply regulator name
Liam Girdwooda5766f12008-10-10 13:22:20 +0100915 *
916 * Called by platform initialisation code to set the supply regulator for this
917 * regulator. This ensures that a regulators supply will also be enabled by the
918 * core if it's child is enabled.
919 */
920static int set_supply(struct regulator_dev *rdev,
921 struct regulator_dev *supply_rdev)
922{
923 int err;
924
925 err = sysfs_create_link(&rdev->dev.kobj, &supply_rdev->dev.kobj,
926 "supply");
927 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -0800928 rdev_err(rdev, "could not add device link %s err %d\n",
929 supply_rdev->dev.kobj.name, err);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100930 goto out;
931 }
932 rdev->supply = supply_rdev;
933 list_add(&rdev->slist, &supply_rdev->supply_list);
934out:
935 return err;
936}
937
938/**
Randy Dunlap06c63f92010-11-18 15:02:26 -0800939 * set_consumer_device_supply - Bind a regulator to a symbolic supply
Mark Brown69279fb2008-12-31 12:52:41 +0000940 * @rdev: regulator source
941 * @consumer_dev: device the supply applies to
Mark Brown40f92442009-06-17 17:56:39 +0100942 * @consumer_dev_name: dev_name() string for device supply applies to
Mark Brown69279fb2008-12-31 12:52:41 +0000943 * @supply: symbolic name for supply
Liam Girdwooda5766f12008-10-10 13:22:20 +0100944 *
945 * Allows platform initialisation code to map physical regulator
946 * sources to symbolic names for supplies for use by devices. Devices
947 * should use these symbolic names to request regulators, avoiding the
948 * need to provide board-specific regulator names as platform data.
Mark Brown40f92442009-06-17 17:56:39 +0100949 *
950 * Only one of consumer_dev and consumer_dev_name may be specified.
Liam Girdwooda5766f12008-10-10 13:22:20 +0100951 */
952static int set_consumer_device_supply(struct regulator_dev *rdev,
Mark Brown40f92442009-06-17 17:56:39 +0100953 struct device *consumer_dev, const char *consumer_dev_name,
954 const char *supply)
Liam Girdwooda5766f12008-10-10 13:22:20 +0100955{
956 struct regulator_map *node;
Mark Brown9ed20992009-07-21 16:00:26 +0100957 int has_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100958
Mark Brown40f92442009-06-17 17:56:39 +0100959 if (consumer_dev && consumer_dev_name)
960 return -EINVAL;
961
962 if (!consumer_dev_name && consumer_dev)
963 consumer_dev_name = dev_name(consumer_dev);
964
Liam Girdwooda5766f12008-10-10 13:22:20 +0100965 if (supply == NULL)
966 return -EINVAL;
967
Mark Brown9ed20992009-07-21 16:00:26 +0100968 if (consumer_dev_name != NULL)
969 has_dev = 1;
970 else
971 has_dev = 0;
972
David Brownell6001e132008-12-31 12:54:19 +0000973 list_for_each_entry(node, &regulator_map_list, list) {
Jani Nikula23b5cc22010-04-29 10:55:09 +0300974 if (node->dev_name && consumer_dev_name) {
975 if (strcmp(node->dev_name, consumer_dev_name) != 0)
976 continue;
977 } else if (node->dev_name || consumer_dev_name) {
David Brownell6001e132008-12-31 12:54:19 +0000978 continue;
Jani Nikula23b5cc22010-04-29 10:55:09 +0300979 }
980
David Brownell6001e132008-12-31 12:54:19 +0000981 if (strcmp(node->supply, supply) != 0)
982 continue;
983
984 dev_dbg(consumer_dev, "%s/%s is '%s' supply; fail %s/%s\n",
Joe Perches5da84fd2010-11-30 05:53:48 -0800985 dev_name(&node->regulator->dev),
986 node->regulator->desc->name,
987 supply,
988 dev_name(&rdev->dev), rdev_get_name(rdev));
David Brownell6001e132008-12-31 12:54:19 +0000989 return -EBUSY;
990 }
991
Mark Brown9ed20992009-07-21 16:00:26 +0100992 node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100993 if (node == NULL)
994 return -ENOMEM;
995
996 node->regulator = rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +0100997 node->supply = supply;
998
Mark Brown9ed20992009-07-21 16:00:26 +0100999 if (has_dev) {
1000 node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
1001 if (node->dev_name == NULL) {
1002 kfree(node);
1003 return -ENOMEM;
1004 }
Mark Brown40f92442009-06-17 17:56:39 +01001005 }
1006
Liam Girdwooda5766f12008-10-10 13:22:20 +01001007 list_add(&node->list, &regulator_map_list);
1008 return 0;
1009}
1010
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001011static void unset_regulator_supplies(struct regulator_dev *rdev)
1012{
1013 struct regulator_map *node, *n;
1014
1015 list_for_each_entry_safe(node, n, &regulator_map_list, list) {
1016 if (rdev == node->regulator) {
1017 list_del(&node->list);
Mark Brown40f92442009-06-17 17:56:39 +01001018 kfree(node->dev_name);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001019 kfree(node);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02001020 }
1021 }
1022}
1023
Liam Girdwood414c70c2008-04-30 15:59:04 +01001024#define REG_STR_SIZE 32
1025
1026static struct regulator *create_regulator(struct regulator_dev *rdev,
1027 struct device *dev,
1028 const char *supply_name)
1029{
1030 struct regulator *regulator;
1031 char buf[REG_STR_SIZE];
1032 int err, size;
1033
1034 regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
1035 if (regulator == NULL)
1036 return NULL;
1037
1038 mutex_lock(&rdev->mutex);
1039 regulator->rdev = rdev;
1040 list_add(&regulator->list, &rdev->consumer_list);
1041
1042 if (dev) {
1043 /* create a 'requested_microamps_name' sysfs entry */
1044 size = scnprintf(buf, REG_STR_SIZE, "microamps_requested_%s",
1045 supply_name);
1046 if (size >= REG_STR_SIZE)
1047 goto overflow_err;
1048
1049 regulator->dev = dev;
Ameya Palande4f26a2a2010-03-12 20:09:01 +02001050 sysfs_attr_init(&regulator->dev_attr.attr);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001051 regulator->dev_attr.attr.name = kstrdup(buf, GFP_KERNEL);
1052 if (regulator->dev_attr.attr.name == NULL)
1053 goto attr_name_err;
1054
Liam Girdwood414c70c2008-04-30 15:59:04 +01001055 regulator->dev_attr.attr.mode = 0444;
1056 regulator->dev_attr.show = device_requested_uA_show;
1057 err = device_create_file(dev, &regulator->dev_attr);
1058 if (err < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001059 rdev_warn(rdev, "could not add regulator_dev requested microamps sysfs entry\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001060 goto attr_name_err;
1061 }
1062
1063 /* also add a link to the device sysfs entry */
1064 size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
1065 dev->kobj.name, supply_name);
1066 if (size >= REG_STR_SIZE)
1067 goto attr_err;
1068
1069 regulator->supply_name = kstrdup(buf, GFP_KERNEL);
1070 if (regulator->supply_name == NULL)
1071 goto attr_err;
1072
1073 err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
1074 buf);
1075 if (err) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001076 rdev_warn(rdev, "could not add device link %s err %d\n",
1077 dev->kobj.name, err);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001078 goto link_name_err;
1079 }
1080 }
1081 mutex_unlock(&rdev->mutex);
1082 return regulator;
1083link_name_err:
1084 kfree(regulator->supply_name);
1085attr_err:
1086 device_remove_file(regulator->dev, &regulator->dev_attr);
1087attr_name_err:
1088 kfree(regulator->dev_attr.attr.name);
1089overflow_err:
1090 list_del(&regulator->list);
1091 kfree(regulator);
1092 mutex_unlock(&rdev->mutex);
1093 return NULL;
1094}
1095
Mark Brown31aae2b2009-12-21 12:21:52 +00001096static int _regulator_get_enable_time(struct regulator_dev *rdev)
1097{
1098 if (!rdev->desc->ops->enable_time)
1099 return 0;
1100 return rdev->desc->ops->enable_time(rdev);
1101}
1102
Mark Brown5ffbd132009-07-21 16:00:23 +01001103/* Internal regulator request function */
1104static struct regulator *_regulator_get(struct device *dev, const char *id,
1105 int exclusive)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001106{
1107 struct regulator_dev *rdev;
1108 struct regulator_map *map;
1109 struct regulator *regulator = ERR_PTR(-ENODEV);
Mark Brown40f92442009-06-17 17:56:39 +01001110 const char *devname = NULL;
Mark Brown5ffbd132009-07-21 16:00:23 +01001111 int ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001112
1113 if (id == NULL) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001114 pr_err("get() with no identifier\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001115 return regulator;
1116 }
1117
Mark Brown40f92442009-06-17 17:56:39 +01001118 if (dev)
1119 devname = dev_name(dev);
1120
Liam Girdwood414c70c2008-04-30 15:59:04 +01001121 mutex_lock(&regulator_list_mutex);
1122
1123 list_for_each_entry(map, &regulator_map_list, list) {
Mark Brown40f92442009-06-17 17:56:39 +01001124 /* If the mapping has a device set up it must match */
1125 if (map->dev_name &&
1126 (!devname || strcmp(map->dev_name, devname)))
1127 continue;
1128
1129 if (strcmp(map->supply, id) == 0) {
Liam Girdwooda5766f12008-10-10 13:22:20 +01001130 rdev = map->regulator;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001131 goto found;
Liam Girdwooda5766f12008-10-10 13:22:20 +01001132 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01001133 }
Mark Brown34abbd62010-02-12 10:18:08 +00001134
Mark Brown688fe992010-10-05 19:18:32 -07001135 if (board_wants_dummy_regulator) {
1136 rdev = dummy_regulator_rdev;
1137 goto found;
1138 }
1139
Mark Brown34abbd62010-02-12 10:18:08 +00001140#ifdef CONFIG_REGULATOR_DUMMY
1141 if (!devname)
1142 devname = "deviceless";
1143
1144 /* If the board didn't flag that it was fully constrained then
1145 * substitute in a dummy regulator so consumers can continue.
1146 */
1147 if (!has_full_constraints) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001148 pr_warn("%s supply %s not found, using dummy regulator\n",
1149 devname, id);
Mark Brown34abbd62010-02-12 10:18:08 +00001150 rdev = dummy_regulator_rdev;
1151 goto found;
1152 }
1153#endif
1154
Liam Girdwood414c70c2008-04-30 15:59:04 +01001155 mutex_unlock(&regulator_list_mutex);
1156 return regulator;
1157
1158found:
Mark Brown5ffbd132009-07-21 16:00:23 +01001159 if (rdev->exclusive) {
1160 regulator = ERR_PTR(-EPERM);
1161 goto out;
1162 }
1163
1164 if (exclusive && rdev->open_count) {
1165 regulator = ERR_PTR(-EBUSY);
1166 goto out;
1167 }
1168
Liam Girdwooda5766f12008-10-10 13:22:20 +01001169 if (!try_module_get(rdev->owner))
1170 goto out;
1171
Liam Girdwood414c70c2008-04-30 15:59:04 +01001172 regulator = create_regulator(rdev, dev, id);
1173 if (regulator == NULL) {
1174 regulator = ERR_PTR(-ENOMEM);
1175 module_put(rdev->owner);
1176 }
1177
Mark Brown5ffbd132009-07-21 16:00:23 +01001178 rdev->open_count++;
1179 if (exclusive) {
1180 rdev->exclusive = 1;
1181
1182 ret = _regulator_is_enabled(rdev);
1183 if (ret > 0)
1184 rdev->use_count = 1;
1185 else
1186 rdev->use_count = 0;
1187 }
1188
Liam Girdwooda5766f12008-10-10 13:22:20 +01001189out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01001190 mutex_unlock(&regulator_list_mutex);
Mark Brown5ffbd132009-07-21 16:00:23 +01001191
Liam Girdwood414c70c2008-04-30 15:59:04 +01001192 return regulator;
1193}
Mark Brown5ffbd132009-07-21 16:00:23 +01001194
1195/**
1196 * regulator_get - lookup and obtain a reference to a regulator.
1197 * @dev: device for regulator "consumer"
1198 * @id: Supply name or regulator ID.
1199 *
1200 * Returns a struct regulator corresponding to the regulator producer,
1201 * or IS_ERR() condition containing errno.
1202 *
1203 * Use of supply names configured via regulator_set_device_supply() is
1204 * strongly encouraged. It is recommended that the supply name used
1205 * should match the name used for the supply and/or the relevant
1206 * device pins in the datasheet.
1207 */
1208struct regulator *regulator_get(struct device *dev, const char *id)
1209{
1210 return _regulator_get(dev, id, 0);
1211}
Liam Girdwood414c70c2008-04-30 15:59:04 +01001212EXPORT_SYMBOL_GPL(regulator_get);
1213
1214/**
Mark Brown5ffbd132009-07-21 16:00:23 +01001215 * regulator_get_exclusive - obtain exclusive access to a regulator.
1216 * @dev: device for regulator "consumer"
1217 * @id: Supply name or regulator ID.
1218 *
1219 * Returns a struct regulator corresponding to the regulator producer,
1220 * or IS_ERR() condition containing errno. Other consumers will be
1221 * unable to obtain this reference is held and the use count for the
1222 * regulator will be initialised to reflect the current state of the
1223 * regulator.
1224 *
1225 * This is intended for use by consumers which cannot tolerate shared
1226 * use of the regulator such as those which need to force the
1227 * regulator off for correct operation of the hardware they are
1228 * controlling.
1229 *
1230 * Use of supply names configured via regulator_set_device_supply() is
1231 * strongly encouraged. It is recommended that the supply name used
1232 * should match the name used for the supply and/or the relevant
1233 * device pins in the datasheet.
1234 */
1235struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
1236{
1237 return _regulator_get(dev, id, 1);
1238}
1239EXPORT_SYMBOL_GPL(regulator_get_exclusive);
1240
1241/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01001242 * regulator_put - "free" the regulator source
1243 * @regulator: regulator source
1244 *
1245 * Note: drivers must ensure that all regulator_enable calls made on this
1246 * regulator source are balanced by regulator_disable calls prior to calling
1247 * this function.
1248 */
1249void regulator_put(struct regulator *regulator)
1250{
1251 struct regulator_dev *rdev;
1252
1253 if (regulator == NULL || IS_ERR(regulator))
1254 return;
1255
Liam Girdwood414c70c2008-04-30 15:59:04 +01001256 mutex_lock(&regulator_list_mutex);
1257 rdev = regulator->rdev;
1258
1259 /* remove any sysfs entries */
1260 if (regulator->dev) {
1261 sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
1262 kfree(regulator->supply_name);
1263 device_remove_file(regulator->dev, &regulator->dev_attr);
1264 kfree(regulator->dev_attr.attr.name);
1265 }
1266 list_del(&regulator->list);
1267 kfree(regulator);
1268
Mark Brown5ffbd132009-07-21 16:00:23 +01001269 rdev->open_count--;
1270 rdev->exclusive = 0;
1271
Liam Girdwood414c70c2008-04-30 15:59:04 +01001272 module_put(rdev->owner);
1273 mutex_unlock(&regulator_list_mutex);
1274}
1275EXPORT_SYMBOL_GPL(regulator_put);
1276
Mark Brown9a2372f2009-08-03 18:49:57 +01001277static int _regulator_can_change_status(struct regulator_dev *rdev)
1278{
1279 if (!rdev->constraints)
1280 return 0;
1281
1282 if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
1283 return 1;
1284 else
1285 return 0;
1286}
1287
Liam Girdwood414c70c2008-04-30 15:59:04 +01001288/* locks held by regulator_enable() */
1289static int _regulator_enable(struct regulator_dev *rdev)
1290{
Mark Brown31aae2b2009-12-21 12:21:52 +00001291 int ret, delay;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001292
Bengt Jonssonacaf6ff2010-11-10 11:06:22 +01001293 if (rdev->use_count == 0) {
1294 /* do we need to enable the supply regulator first */
1295 if (rdev->supply) {
1296 mutex_lock(&rdev->supply->mutex);
1297 ret = _regulator_enable(rdev->supply);
1298 mutex_unlock(&rdev->supply->mutex);
1299 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001300 rdev_err(rdev, "failed to enable: %d\n", ret);
Bengt Jonssonacaf6ff2010-11-10 11:06:22 +01001301 return ret;
1302 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01001303 }
1304 }
1305
1306 /* check voltage and requested load before enabling */
Mark Brown9a2372f2009-08-03 18:49:57 +01001307 if (rdev->constraints &&
1308 (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
1309 drms_uA_update(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001310
Mark Brown9a2372f2009-08-03 18:49:57 +01001311 if (rdev->use_count == 0) {
1312 /* The regulator may on if it's not switchable or left on */
1313 ret = _regulator_is_enabled(rdev);
1314 if (ret == -EINVAL || ret == 0) {
1315 if (!_regulator_can_change_status(rdev))
1316 return -EPERM;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001317
Mark Brown31aae2b2009-12-21 12:21:52 +00001318 if (!rdev->desc->ops->enable)
Mark Brown9a2372f2009-08-03 18:49:57 +01001319 return -EINVAL;
Mark Brown31aae2b2009-12-21 12:21:52 +00001320
1321 /* Query before enabling in case configuration
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001322 * dependent. */
Mark Brown31aae2b2009-12-21 12:21:52 +00001323 ret = _regulator_get_enable_time(rdev);
1324 if (ret >= 0) {
1325 delay = ret;
1326 } else {
Joe Perches5da84fd2010-11-30 05:53:48 -08001327 rdev_warn(rdev, "enable_time() failed: %d\n",
Daniel Walker1d7372e2010-11-17 15:30:28 -08001328 ret);
Mark Brown31aae2b2009-12-21 12:21:52 +00001329 delay = 0;
Mark Brown9a2372f2009-08-03 18:49:57 +01001330 }
Mark Brown31aae2b2009-12-21 12:21:52 +00001331
Mark Brown02fa3ec2010-11-10 14:38:30 +00001332 trace_regulator_enable(rdev_get_name(rdev));
1333
Mark Brown31aae2b2009-12-21 12:21:52 +00001334 /* Allow the regulator to ramp; it would be useful
1335 * to extend this for bulk operations so that the
1336 * regulators can ramp together. */
1337 ret = rdev->desc->ops->enable(rdev);
1338 if (ret < 0)
1339 return ret;
1340
Mark Brown02fa3ec2010-11-10 14:38:30 +00001341 trace_regulator_enable_delay(rdev_get_name(rdev));
1342
Axel Line36c1df2010-11-05 21:51:32 +08001343 if (delay >= 1000) {
Mark Brown31aae2b2009-12-21 12:21:52 +00001344 mdelay(delay / 1000);
Axel Line36c1df2010-11-05 21:51:32 +08001345 udelay(delay % 1000);
1346 } else if (delay) {
Mark Brown31aae2b2009-12-21 12:21:52 +00001347 udelay(delay);
Axel Line36c1df2010-11-05 21:51:32 +08001348 }
Mark Brown31aae2b2009-12-21 12:21:52 +00001349
Mark Brown02fa3ec2010-11-10 14:38:30 +00001350 trace_regulator_enable_complete(rdev_get_name(rdev));
1351
Linus Walleija7433cf2009-08-26 12:54:04 +02001352 } else if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001353 rdev_err(rdev, "is_enabled() failed: %d\n", ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001354 return ret;
1355 }
Linus Walleija7433cf2009-08-26 12:54:04 +02001356 /* Fallthrough on positive return values - already enabled */
Liam Girdwood414c70c2008-04-30 15:59:04 +01001357 }
1358
Mark Brown9a2372f2009-08-03 18:49:57 +01001359 rdev->use_count++;
1360
1361 return 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001362}
1363
1364/**
1365 * regulator_enable - enable regulator output
1366 * @regulator: regulator source
1367 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001368 * Request that the regulator be enabled with the regulator output at
1369 * the predefined voltage or current value. Calls to regulator_enable()
1370 * must be balanced with calls to regulator_disable().
1371 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001372 * NOTE: the output value can be set by other drivers, boot loader or may be
Mark Browncf7bbcd2008-12-31 12:52:43 +00001373 * hardwired in the regulator.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001374 */
1375int regulator_enable(struct regulator *regulator)
1376{
David Brownell412aec62008-11-16 11:44:46 -08001377 struct regulator_dev *rdev = regulator->rdev;
1378 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001379
David Brownell412aec62008-11-16 11:44:46 -08001380 mutex_lock(&rdev->mutex);
David Brownellcd94b502009-03-11 16:43:34 -08001381 ret = _regulator_enable(rdev);
David Brownell412aec62008-11-16 11:44:46 -08001382 mutex_unlock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001383 return ret;
1384}
1385EXPORT_SYMBOL_GPL(regulator_enable);
1386
1387/* locks held by regulator_disable() */
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001388static int _regulator_disable(struct regulator_dev *rdev,
1389 struct regulator_dev **supply_rdev_ptr)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001390{
1391 int ret = 0;
Mattias Wallinb12a1e22010-11-02 14:55:34 +01001392 *supply_rdev_ptr = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001393
David Brownellcd94b502009-03-11 16:43:34 -08001394 if (WARN(rdev->use_count <= 0,
Joe Perches43e7ee32010-12-06 14:05:19 -08001395 "unbalanced disables for %s\n", rdev_get_name(rdev)))
David Brownellcd94b502009-03-11 16:43:34 -08001396 return -EIO;
1397
Liam Girdwood414c70c2008-04-30 15:59:04 +01001398 /* are we the last user and permitted to disable ? */
Mark Brown60ef66f2009-10-13 13:06:50 +01001399 if (rdev->use_count == 1 &&
1400 (rdev->constraints && !rdev->constraints->always_on)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001401
1402 /* we are last user */
Mark Brown9a2372f2009-08-03 18:49:57 +01001403 if (_regulator_can_change_status(rdev) &&
1404 rdev->desc->ops->disable) {
Mark Brown02fa3ec2010-11-10 14:38:30 +00001405 trace_regulator_disable(rdev_get_name(rdev));
1406
Liam Girdwood414c70c2008-04-30 15:59:04 +01001407 ret = rdev->desc->ops->disable(rdev);
1408 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001409 rdev_err(rdev, "failed to disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001410 return ret;
1411 }
Mark Brown84b68262009-12-01 21:12:27 +00001412
Mark Brown02fa3ec2010-11-10 14:38:30 +00001413 trace_regulator_disable_complete(rdev_get_name(rdev));
1414
Mark Brown84b68262009-12-01 21:12:27 +00001415 _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
1416 NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001417 }
1418
1419 /* decrease our supplies ref count and disable if required */
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001420 *supply_rdev_ptr = rdev->supply;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001421
1422 rdev->use_count = 0;
1423 } else if (rdev->use_count > 1) {
1424
1425 if (rdev->constraints &&
1426 (rdev->constraints->valid_ops_mask &
1427 REGULATOR_CHANGE_DRMS))
1428 drms_uA_update(rdev);
1429
1430 rdev->use_count--;
1431 }
1432 return ret;
1433}
1434
1435/**
1436 * regulator_disable - disable regulator output
1437 * @regulator: regulator source
1438 *
Mark Browncf7bbcd2008-12-31 12:52:43 +00001439 * Disable the regulator output voltage or current. Calls to
1440 * regulator_enable() must be balanced with calls to
1441 * regulator_disable().
Mark Brown69279fb2008-12-31 12:52:41 +00001442 *
Liam Girdwood414c70c2008-04-30 15:59:04 +01001443 * NOTE: this will only disable the regulator output if no other consumer
Mark Browncf7bbcd2008-12-31 12:52:43 +00001444 * devices have it enabled, the regulator device supports disabling and
1445 * machine constraints permit this operation.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001446 */
1447int regulator_disable(struct regulator *regulator)
1448{
David Brownell412aec62008-11-16 11:44:46 -08001449 struct regulator_dev *rdev = regulator->rdev;
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001450 struct regulator_dev *supply_rdev = NULL;
David Brownell412aec62008-11-16 11:44:46 -08001451 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001452
David Brownell412aec62008-11-16 11:44:46 -08001453 mutex_lock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001454 ret = _regulator_disable(rdev, &supply_rdev);
David Brownell412aec62008-11-16 11:44:46 -08001455 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001456
1457 /* decrease our supplies ref count and disable if required */
1458 while (supply_rdev != NULL) {
1459 rdev = supply_rdev;
1460
1461 mutex_lock(&rdev->mutex);
1462 _regulator_disable(rdev, &supply_rdev);
1463 mutex_unlock(&rdev->mutex);
1464 }
1465
Liam Girdwood414c70c2008-04-30 15:59:04 +01001466 return ret;
1467}
1468EXPORT_SYMBOL_GPL(regulator_disable);
1469
1470/* locks held by regulator_force_disable() */
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001471static int _regulator_force_disable(struct regulator_dev *rdev,
1472 struct regulator_dev **supply_rdev_ptr)
Liam Girdwood414c70c2008-04-30 15:59:04 +01001473{
1474 int ret = 0;
1475
1476 /* force disable */
1477 if (rdev->desc->ops->disable) {
1478 /* ah well, who wants to live forever... */
1479 ret = rdev->desc->ops->disable(rdev);
1480 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08001481 rdev_err(rdev, "failed to force disable\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01001482 return ret;
1483 }
1484 /* notify other consumers that power has been forced off */
Mark Brown84b68262009-12-01 21:12:27 +00001485 _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
1486 REGULATOR_EVENT_DISABLE, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001487 }
1488
1489 /* decrease our supplies ref count and disable if required */
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001490 *supply_rdev_ptr = rdev->supply;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001491
1492 rdev->use_count = 0;
1493 return ret;
1494}
1495
1496/**
1497 * regulator_force_disable - force disable regulator output
1498 * @regulator: regulator source
1499 *
1500 * Forcibly disable the regulator output voltage or current.
1501 * NOTE: this *will* disable the regulator output even if other consumer
1502 * devices have it enabled. This should be used for situations when device
1503 * damage will likely occur if the regulator is not disabled (e.g. over temp).
1504 */
1505int regulator_force_disable(struct regulator *regulator)
1506{
Mark Brown82d15832011-05-09 11:41:02 +02001507 struct regulator_dev *rdev = regulator->rdev;
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001508 struct regulator_dev *supply_rdev = NULL;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001509 int ret;
1510
Mark Brown82d15832011-05-09 11:41:02 +02001511 mutex_lock(&rdev->mutex);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001512 regulator->uA_load = 0;
Mark Brown82d15832011-05-09 11:41:02 +02001513 ret = _regulator_force_disable(rdev, &supply_rdev);
1514 mutex_unlock(&rdev->mutex);
Jeffrey Carlyle8cbf8112010-10-08 14:49:19 -05001515
1516 if (supply_rdev)
1517 regulator_disable(get_device_regulator(rdev_get_dev(supply_rdev)));
1518
Liam Girdwood414c70c2008-04-30 15:59:04 +01001519 return ret;
1520}
1521EXPORT_SYMBOL_GPL(regulator_force_disable);
1522
1523static int _regulator_is_enabled(struct regulator_dev *rdev)
1524{
Mark Brown9a7f6a42010-02-11 17:22:45 +00001525 /* If we don't know then assume that the regulator is always on */
Mark Brown93325462009-08-03 18:49:56 +01001526 if (!rdev->desc->ops->is_enabled)
Mark Brown9a7f6a42010-02-11 17:22:45 +00001527 return 1;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001528
Mark Brown93325462009-08-03 18:49:56 +01001529 return rdev->desc->ops->is_enabled(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01001530}
1531
1532/**
1533 * regulator_is_enabled - is the regulator output enabled
1534 * @regulator: regulator source
1535 *
David Brownell412aec62008-11-16 11:44:46 -08001536 * Returns positive if the regulator driver backing the source/client
1537 * has requested that the device be enabled, zero if it hasn't, else a
1538 * negative errno code.
1539 *
1540 * Note that the device backing this regulator handle can have multiple
1541 * users, so it might be enabled even if regulator_enable() was never
1542 * called for this particular source.
Liam Girdwood414c70c2008-04-30 15:59:04 +01001543 */
1544int regulator_is_enabled(struct regulator *regulator)
1545{
Mark Brown93325462009-08-03 18:49:56 +01001546 int ret;
1547
1548 mutex_lock(&regulator->rdev->mutex);
1549 ret = _regulator_is_enabled(regulator->rdev);
1550 mutex_unlock(&regulator->rdev->mutex);
1551
1552 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001553}
1554EXPORT_SYMBOL_GPL(regulator_is_enabled);
1555
1556/**
David Brownell4367cfd2009-02-26 11:48:36 -08001557 * regulator_count_voltages - count regulator_list_voltage() selectors
1558 * @regulator: regulator source
1559 *
1560 * Returns number of selectors, or negative errno. Selectors are
1561 * numbered starting at zero, and typically correspond to bitfields
1562 * in hardware registers.
1563 */
1564int regulator_count_voltages(struct regulator *regulator)
1565{
1566 struct regulator_dev *rdev = regulator->rdev;
1567
1568 return rdev->desc->n_voltages ? : -EINVAL;
1569}
1570EXPORT_SYMBOL_GPL(regulator_count_voltages);
1571
1572/**
1573 * regulator_list_voltage - enumerate supported voltages
1574 * @regulator: regulator source
1575 * @selector: identify voltage to list
1576 * Context: can sleep
1577 *
1578 * Returns a voltage that can be passed to @regulator_set_voltage(),
Thomas Weber88393162010-03-16 11:47:56 +01001579 * zero if this selector code can't be used on this system, or a
David Brownell4367cfd2009-02-26 11:48:36 -08001580 * negative errno.
1581 */
1582int regulator_list_voltage(struct regulator *regulator, unsigned selector)
1583{
1584 struct regulator_dev *rdev = regulator->rdev;
1585 struct regulator_ops *ops = rdev->desc->ops;
1586 int ret;
1587
1588 if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
1589 return -EINVAL;
1590
1591 mutex_lock(&rdev->mutex);
1592 ret = ops->list_voltage(rdev, selector);
1593 mutex_unlock(&rdev->mutex);
1594
1595 if (ret > 0) {
1596 if (ret < rdev->constraints->min_uV)
1597 ret = 0;
1598 else if (ret > rdev->constraints->max_uV)
1599 ret = 0;
1600 }
1601
1602 return ret;
1603}
1604EXPORT_SYMBOL_GPL(regulator_list_voltage);
1605
1606/**
Mark Browna7a1ad92009-07-21 16:00:24 +01001607 * regulator_is_supported_voltage - check if a voltage range can be supported
1608 *
1609 * @regulator: Regulator to check.
1610 * @min_uV: Minimum required voltage in uV.
1611 * @max_uV: Maximum required voltage in uV.
1612 *
1613 * Returns a boolean or a negative error code.
1614 */
1615int regulator_is_supported_voltage(struct regulator *regulator,
1616 int min_uV, int max_uV)
1617{
1618 int i, voltages, ret;
1619
1620 ret = regulator_count_voltages(regulator);
1621 if (ret < 0)
1622 return ret;
1623 voltages = ret;
1624
1625 for (i = 0; i < voltages; i++) {
1626 ret = regulator_list_voltage(regulator, i);
1627
1628 if (ret >= min_uV && ret <= max_uV)
1629 return 1;
1630 }
1631
1632 return 0;
1633}
1634
Mark Brown75790252010-12-12 14:25:50 +00001635static int _regulator_do_set_voltage(struct regulator_dev *rdev,
1636 int min_uV, int max_uV)
1637{
1638 int ret;
Linus Walleij77af1b2642011-03-17 13:24:36 +01001639 int delay = 0;
Mark Brown75790252010-12-12 14:25:50 +00001640 unsigned int selector;
1641
1642 trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
1643
1644 if (rdev->desc->ops->set_voltage) {
1645 ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
1646 &selector);
1647
1648 if (rdev->desc->ops->list_voltage)
1649 selector = rdev->desc->ops->list_voltage(rdev,
1650 selector);
1651 else
1652 selector = -1;
Mark Browne8eef822010-12-12 14:36:17 +00001653 } else if (rdev->desc->ops->set_voltage_sel) {
1654 int best_val = INT_MAX;
1655 int i;
1656
1657 selector = 0;
1658
1659 /* Find the smallest voltage that falls within the specified
1660 * range.
1661 */
1662 for (i = 0; i < rdev->desc->n_voltages; i++) {
1663 ret = rdev->desc->ops->list_voltage(rdev, i);
1664 if (ret < 0)
1665 continue;
1666
1667 if (ret < best_val && ret >= min_uV && ret <= max_uV) {
1668 best_val = ret;
1669 selector = i;
1670 }
1671 }
1672
Linus Walleij77af1b2642011-03-17 13:24:36 +01001673 /*
1674 * If we can't obtain the old selector there is not enough
1675 * info to call set_voltage_time_sel().
1676 */
1677 if (rdev->desc->ops->set_voltage_time_sel &&
1678 rdev->desc->ops->get_voltage_sel) {
1679 unsigned int old_selector = 0;
1680
1681 ret = rdev->desc->ops->get_voltage_sel(rdev);
1682 if (ret < 0)
1683 return ret;
1684 old_selector = ret;
1685 delay = rdev->desc->ops->set_voltage_time_sel(rdev,
1686 old_selector, selector);
1687 }
1688
Mark Browne8eef822010-12-12 14:36:17 +00001689 if (best_val != INT_MAX) {
1690 ret = rdev->desc->ops->set_voltage_sel(rdev, selector);
1691 selector = best_val;
1692 } else {
1693 ret = -EINVAL;
1694 }
Mark Brown75790252010-12-12 14:25:50 +00001695 } else {
1696 ret = -EINVAL;
1697 }
1698
Linus Walleij77af1b2642011-03-17 13:24:36 +01001699 /* Insert any necessary delays */
1700 if (delay >= 1000) {
1701 mdelay(delay / 1000);
1702 udelay(delay % 1000);
1703 } else if (delay) {
1704 udelay(delay);
1705 }
1706
Mark Brownded06a52010-12-16 13:59:10 +00001707 if (ret == 0)
1708 _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
1709 NULL);
1710
Mark Brown75790252010-12-12 14:25:50 +00001711 trace_regulator_set_voltage_complete(rdev_get_name(rdev), selector);
1712
1713 return ret;
1714}
1715
Mark Browna7a1ad92009-07-21 16:00:24 +01001716/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01001717 * regulator_set_voltage - set regulator output voltage
1718 * @regulator: regulator source
1719 * @min_uV: Minimum required voltage in uV
1720 * @max_uV: Maximum acceptable voltage in uV
1721 *
1722 * Sets a voltage regulator to the desired output voltage. This can be set
1723 * during any regulator state. IOW, regulator can be disabled or enabled.
1724 *
1725 * If the regulator is enabled then the voltage will change to the new value
1726 * immediately otherwise if the regulator is disabled the regulator will
1727 * output at the new voltage when enabled.
1728 *
1729 * NOTE: If the regulator is shared between several devices then the lowest
1730 * request voltage that meets the system constraints will be used.
Mark Brown69279fb2008-12-31 12:52:41 +00001731 * Regulator system constraints must be set for this regulator before
Liam Girdwood414c70c2008-04-30 15:59:04 +01001732 * calling this function otherwise this call will fail.
1733 */
1734int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
1735{
1736 struct regulator_dev *rdev = regulator->rdev;
Mark Brown95a3c232010-12-16 15:49:37 +00001737 int ret = 0;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001738
1739 mutex_lock(&rdev->mutex);
1740
Mark Brown95a3c232010-12-16 15:49:37 +00001741 /* If we're setting the same range as last time the change
1742 * should be a noop (some cpufreq implementations use the same
1743 * voltage for multiple frequencies, for example).
1744 */
1745 if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
1746 goto out;
1747
Liam Girdwood414c70c2008-04-30 15:59:04 +01001748 /* sanity check */
Mark Browne8eef822010-12-12 14:36:17 +00001749 if (!rdev->desc->ops->set_voltage &&
1750 !rdev->desc->ops->set_voltage_sel) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01001751 ret = -EINVAL;
1752 goto out;
1753 }
1754
1755 /* constraints check */
1756 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
1757 if (ret < 0)
1758 goto out;
1759 regulator->min_uV = min_uV;
1760 regulator->max_uV = max_uV;
Mark Brown3a93f2a2010-11-10 14:38:29 +00001761
Thomas Petazzoni05fda3b1a2010-12-03 11:31:07 +01001762 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
1763 if (ret < 0)
1764 goto out;
1765
Mark Brown75790252010-12-12 14:25:50 +00001766 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
Mark Brown02fa3ec2010-11-10 14:38:30 +00001767
Liam Girdwood414c70c2008-04-30 15:59:04 +01001768out:
1769 mutex_unlock(&rdev->mutex);
1770 return ret;
1771}
1772EXPORT_SYMBOL_GPL(regulator_set_voltage);
1773
Mark Brown606a2562010-12-16 15:49:36 +00001774/**
Linus Walleij88cd222b2011-03-17 13:24:52 +01001775 * regulator_set_voltage_time - get raise/fall time
1776 * @regulator: regulator source
1777 * @old_uV: starting voltage in microvolts
1778 * @new_uV: target voltage in microvolts
1779 *
1780 * Provided with the starting and ending voltage, this function attempts to
1781 * calculate the time in microseconds required to rise or fall to this new
1782 * voltage.
1783 */
1784int regulator_set_voltage_time(struct regulator *regulator,
1785 int old_uV, int new_uV)
1786{
1787 struct regulator_dev *rdev = regulator->rdev;
1788 struct regulator_ops *ops = rdev->desc->ops;
1789 int old_sel = -1;
1790 int new_sel = -1;
1791 int voltage;
1792 int i;
1793
1794 /* Currently requires operations to do this */
1795 if (!ops->list_voltage || !ops->set_voltage_time_sel
1796 || !rdev->desc->n_voltages)
1797 return -EINVAL;
1798
1799 for (i = 0; i < rdev->desc->n_voltages; i++) {
1800 /* We only look for exact voltage matches here */
1801 voltage = regulator_list_voltage(regulator, i);
1802 if (voltage < 0)
1803 return -EINVAL;
1804 if (voltage == 0)
1805 continue;
1806 if (voltage == old_uV)
1807 old_sel = i;
1808 if (voltage == new_uV)
1809 new_sel = i;
1810 }
1811
1812 if (old_sel < 0 || new_sel < 0)
1813 return -EINVAL;
1814
1815 return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
1816}
1817EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
1818
1819/**
Mark Brown606a2562010-12-16 15:49:36 +00001820 * regulator_sync_voltage - re-apply last regulator output voltage
1821 * @regulator: regulator source
1822 *
1823 * Re-apply the last configured voltage. This is intended to be used
1824 * where some external control source the consumer is cooperating with
1825 * has caused the configured voltage to change.
1826 */
1827int regulator_sync_voltage(struct regulator *regulator)
1828{
1829 struct regulator_dev *rdev = regulator->rdev;
1830 int ret, min_uV, max_uV;
1831
1832 mutex_lock(&rdev->mutex);
1833
1834 if (!rdev->desc->ops->set_voltage &&
1835 !rdev->desc->ops->set_voltage_sel) {
1836 ret = -EINVAL;
1837 goto out;
1838 }
1839
1840 /* This is only going to work if we've had a voltage configured. */
1841 if (!regulator->min_uV && !regulator->max_uV) {
1842 ret = -EINVAL;
1843 goto out;
1844 }
1845
1846 min_uV = regulator->min_uV;
1847 max_uV = regulator->max_uV;
1848
1849 /* This should be a paranoia check... */
1850 ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
1851 if (ret < 0)
1852 goto out;
1853
1854 ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
1855 if (ret < 0)
1856 goto out;
1857
1858 ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
1859
1860out:
1861 mutex_unlock(&rdev->mutex);
1862 return ret;
1863}
1864EXPORT_SYMBOL_GPL(regulator_sync_voltage);
1865
Liam Girdwood414c70c2008-04-30 15:59:04 +01001866static int _regulator_get_voltage(struct regulator_dev *rdev)
1867{
Mark Brown476c2d82010-12-10 17:28:07 +00001868 int sel;
1869
1870 if (rdev->desc->ops->get_voltage_sel) {
1871 sel = rdev->desc->ops->get_voltage_sel(rdev);
1872 if (sel < 0)
1873 return sel;
1874 return rdev->desc->ops->list_voltage(rdev, sel);
1875 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01001876 if (rdev->desc->ops->get_voltage)
1877 return rdev->desc->ops->get_voltage(rdev);
1878 else
1879 return -EINVAL;
1880}
1881
1882/**
1883 * regulator_get_voltage - get regulator output voltage
1884 * @regulator: regulator source
1885 *
1886 * This returns the current regulator voltage in uV.
1887 *
1888 * NOTE: If the regulator is disabled it will return the voltage value. This
1889 * function should not be used to determine regulator state.
1890 */
1891int regulator_get_voltage(struct regulator *regulator)
1892{
1893 int ret;
1894
1895 mutex_lock(&regulator->rdev->mutex);
1896
1897 ret = _regulator_get_voltage(regulator->rdev);
1898
1899 mutex_unlock(&regulator->rdev->mutex);
1900
1901 return ret;
1902}
1903EXPORT_SYMBOL_GPL(regulator_get_voltage);
1904
1905/**
1906 * regulator_set_current_limit - set regulator output current limit
1907 * @regulator: regulator source
1908 * @min_uA: Minimuum supported current in uA
1909 * @max_uA: Maximum supported current in uA
1910 *
1911 * Sets current sink to the desired output current. This can be set during
1912 * any regulator state. IOW, regulator can be disabled or enabled.
1913 *
1914 * If the regulator is enabled then the current will change to the new value
1915 * immediately otherwise if the regulator is disabled the regulator will
1916 * output at the new current when enabled.
1917 *
1918 * NOTE: Regulator system constraints must be set for this regulator before
1919 * calling this function otherwise this call will fail.
1920 */
1921int regulator_set_current_limit(struct regulator *regulator,
1922 int min_uA, int max_uA)
1923{
1924 struct regulator_dev *rdev = regulator->rdev;
1925 int ret;
1926
1927 mutex_lock(&rdev->mutex);
1928
1929 /* sanity check */
1930 if (!rdev->desc->ops->set_current_limit) {
1931 ret = -EINVAL;
1932 goto out;
1933 }
1934
1935 /* constraints check */
1936 ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
1937 if (ret < 0)
1938 goto out;
1939
1940 ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
1941out:
1942 mutex_unlock(&rdev->mutex);
1943 return ret;
1944}
1945EXPORT_SYMBOL_GPL(regulator_set_current_limit);
1946
1947static int _regulator_get_current_limit(struct regulator_dev *rdev)
1948{
1949 int ret;
1950
1951 mutex_lock(&rdev->mutex);
1952
1953 /* sanity check */
1954 if (!rdev->desc->ops->get_current_limit) {
1955 ret = -EINVAL;
1956 goto out;
1957 }
1958
1959 ret = rdev->desc->ops->get_current_limit(rdev);
1960out:
1961 mutex_unlock(&rdev->mutex);
1962 return ret;
1963}
1964
1965/**
1966 * regulator_get_current_limit - get regulator output current
1967 * @regulator: regulator source
1968 *
1969 * This returns the current supplied by the specified current sink in uA.
1970 *
1971 * NOTE: If the regulator is disabled it will return the current value. This
1972 * function should not be used to determine regulator state.
1973 */
1974int regulator_get_current_limit(struct regulator *regulator)
1975{
1976 return _regulator_get_current_limit(regulator->rdev);
1977}
1978EXPORT_SYMBOL_GPL(regulator_get_current_limit);
1979
1980/**
1981 * regulator_set_mode - set regulator operating mode
1982 * @regulator: regulator source
1983 * @mode: operating mode - one of the REGULATOR_MODE constants
1984 *
1985 * Set regulator operating mode to increase regulator efficiency or improve
1986 * regulation performance.
1987 *
1988 * NOTE: Regulator system constraints must be set for this regulator before
1989 * calling this function otherwise this call will fail.
1990 */
1991int regulator_set_mode(struct regulator *regulator, unsigned int mode)
1992{
1993 struct regulator_dev *rdev = regulator->rdev;
1994 int ret;
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05301995 int regulator_curr_mode;
Liam Girdwood414c70c2008-04-30 15:59:04 +01001996
1997 mutex_lock(&rdev->mutex);
1998
1999 /* sanity check */
2000 if (!rdev->desc->ops->set_mode) {
2001 ret = -EINVAL;
2002 goto out;
2003 }
2004
Sundar R Iyer500b4ac2010-05-17 21:24:48 +05302005 /* return if the same mode is requested */
2006 if (rdev->desc->ops->get_mode) {
2007 regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
2008 if (regulator_curr_mode == mode) {
2009 ret = 0;
2010 goto out;
2011 }
2012 }
2013
Liam Girdwood414c70c2008-04-30 15:59:04 +01002014 /* constraints check */
Axel Lin22c51b42011-04-01 18:25:25 +08002015 ret = regulator_mode_constrain(rdev, &mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002016 if (ret < 0)
2017 goto out;
2018
2019 ret = rdev->desc->ops->set_mode(rdev, mode);
2020out:
2021 mutex_unlock(&rdev->mutex);
2022 return ret;
2023}
2024EXPORT_SYMBOL_GPL(regulator_set_mode);
2025
2026static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
2027{
2028 int ret;
2029
2030 mutex_lock(&rdev->mutex);
2031
2032 /* sanity check */
2033 if (!rdev->desc->ops->get_mode) {
2034 ret = -EINVAL;
2035 goto out;
2036 }
2037
2038 ret = rdev->desc->ops->get_mode(rdev);
2039out:
2040 mutex_unlock(&rdev->mutex);
2041 return ret;
2042}
2043
2044/**
2045 * regulator_get_mode - get regulator operating mode
2046 * @regulator: regulator source
2047 *
2048 * Get the current regulator operating mode.
2049 */
2050unsigned int regulator_get_mode(struct regulator *regulator)
2051{
2052 return _regulator_get_mode(regulator->rdev);
2053}
2054EXPORT_SYMBOL_GPL(regulator_get_mode);
2055
2056/**
2057 * regulator_set_optimum_mode - set regulator optimum operating mode
2058 * @regulator: regulator source
2059 * @uA_load: load current
2060 *
2061 * Notifies the regulator core of a new device load. This is then used by
2062 * DRMS (if enabled by constraints) to set the most efficient regulator
2063 * operating mode for the new regulator loading.
2064 *
2065 * Consumer devices notify their supply regulator of the maximum power
2066 * they will require (can be taken from device datasheet in the power
2067 * consumption tables) when they change operational status and hence power
2068 * state. Examples of operational state changes that can affect power
2069 * consumption are :-
2070 *
2071 * o Device is opened / closed.
2072 * o Device I/O is about to begin or has just finished.
2073 * o Device is idling in between work.
2074 *
2075 * This information is also exported via sysfs to userspace.
2076 *
2077 * DRMS will sum the total requested load on the regulator and change
2078 * to the most efficient operating mode if platform constraints allow.
2079 *
2080 * Returns the new regulator mode or error.
2081 */
2082int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
2083{
2084 struct regulator_dev *rdev = regulator->rdev;
2085 struct regulator *consumer;
2086 int ret, output_uV, input_uV, total_uA_load = 0;
2087 unsigned int mode;
2088
2089 mutex_lock(&rdev->mutex);
2090
2091 regulator->uA_load = uA_load;
2092 ret = regulator_check_drms(rdev);
2093 if (ret < 0)
2094 goto out;
2095 ret = -EINVAL;
2096
2097 /* sanity check */
2098 if (!rdev->desc->ops->get_optimum_mode)
2099 goto out;
2100
2101 /* get output voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002102 output_uV = _regulator_get_voltage(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002103 if (output_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002104 rdev_err(rdev, "invalid output voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002105 goto out;
2106 }
2107
2108 /* get input voltage */
Mark Brown1bf5a1f2010-12-10 17:28:06 +00002109 input_uV = 0;
2110 if (rdev->supply)
2111 input_uV = _regulator_get_voltage(rdev->supply);
2112 if (input_uV <= 0)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002113 input_uV = rdev->constraints->input_uV;
2114 if (input_uV <= 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002115 rdev_err(rdev, "invalid input voltage found\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002116 goto out;
2117 }
2118
2119 /* calc total requested load for this regulator */
2120 list_for_each_entry(consumer, &rdev->consumer_list, list)
Stefan Roesefa2984d2009-11-27 15:56:34 +01002121 total_uA_load += consumer->uA_load;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002122
2123 mode = rdev->desc->ops->get_optimum_mode(rdev,
2124 input_uV, output_uV,
2125 total_uA_load);
Mark Brown2c608232011-03-30 06:29:12 +09002126 ret = regulator_mode_constrain(rdev, &mode);
David Brownelle5735202008-11-16 11:46:56 -08002127 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002128 rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
2129 total_uA_load, input_uV, output_uV);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002130 goto out;
2131 }
2132
2133 ret = rdev->desc->ops->set_mode(rdev, mode);
David Brownelle5735202008-11-16 11:46:56 -08002134 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002135 rdev_err(rdev, "failed to set optimum mode %x\n", mode);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002136 goto out;
2137 }
2138 ret = mode;
2139out:
2140 mutex_unlock(&rdev->mutex);
2141 return ret;
2142}
2143EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
2144
2145/**
2146 * regulator_register_notifier - register regulator event notifier
2147 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002148 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002149 *
2150 * Register notifier block to receive regulator events.
2151 */
2152int regulator_register_notifier(struct regulator *regulator,
2153 struct notifier_block *nb)
2154{
2155 return blocking_notifier_chain_register(&regulator->rdev->notifier,
2156 nb);
2157}
2158EXPORT_SYMBOL_GPL(regulator_register_notifier);
2159
2160/**
2161 * regulator_unregister_notifier - unregister regulator event notifier
2162 * @regulator: regulator source
Mark Brown69279fb2008-12-31 12:52:41 +00002163 * @nb: notifier block
Liam Girdwood414c70c2008-04-30 15:59:04 +01002164 *
2165 * Unregister regulator event notifier block.
2166 */
2167int regulator_unregister_notifier(struct regulator *regulator,
2168 struct notifier_block *nb)
2169{
2170 return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
2171 nb);
2172}
2173EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
2174
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002175/* notify regulator consumers and downstream regulator consumers.
2176 * Note mutex must be held by caller.
2177 */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002178static void _notifier_call_chain(struct regulator_dev *rdev,
2179 unsigned long event, void *data)
2180{
2181 struct regulator_dev *_rdev;
2182
2183 /* call rdev chain first */
Liam Girdwood414c70c2008-04-30 15:59:04 +01002184 blocking_notifier_call_chain(&rdev->notifier, event, NULL);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002185
2186 /* now notify regulator we supply */
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002187 list_for_each_entry(_rdev, &rdev->supply_list, slist) {
Stefan Roesefa2984d2009-11-27 15:56:34 +01002188 mutex_lock(&_rdev->mutex);
2189 _notifier_call_chain(_rdev, event, data);
2190 mutex_unlock(&_rdev->mutex);
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002191 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002192}
2193
2194/**
2195 * regulator_bulk_get - get multiple regulator consumers
2196 *
2197 * @dev: Device to supply
2198 * @num_consumers: Number of consumers to register
2199 * @consumers: Configuration of consumers; clients are stored here.
2200 *
2201 * @return 0 on success, an errno on failure.
2202 *
2203 * This helper function allows drivers to get several regulator
2204 * consumers in one operation. If any of the regulators cannot be
2205 * acquired then any regulators that were allocated will be freed
2206 * before returning to the caller.
2207 */
2208int regulator_bulk_get(struct device *dev, int num_consumers,
2209 struct regulator_bulk_data *consumers)
2210{
2211 int i;
2212 int ret;
2213
2214 for (i = 0; i < num_consumers; i++)
2215 consumers[i].consumer = NULL;
2216
2217 for (i = 0; i < num_consumers; i++) {
2218 consumers[i].consumer = regulator_get(dev,
2219 consumers[i].supply);
2220 if (IS_ERR(consumers[i].consumer)) {
Liam Girdwood414c70c2008-04-30 15:59:04 +01002221 ret = PTR_ERR(consumers[i].consumer);
Mark Brown5b307622009-10-13 13:06:49 +01002222 dev_err(dev, "Failed to get supply '%s': %d\n",
2223 consumers[i].supply, ret);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002224 consumers[i].consumer = NULL;
2225 goto err;
2226 }
2227 }
2228
2229 return 0;
2230
2231err:
2232 for (i = 0; i < num_consumers && consumers[i].consumer; i++)
2233 regulator_put(consumers[i].consumer);
2234
2235 return ret;
2236}
2237EXPORT_SYMBOL_GPL(regulator_bulk_get);
2238
2239/**
2240 * regulator_bulk_enable - enable multiple regulator consumers
2241 *
2242 * @num_consumers: Number of consumers
2243 * @consumers: Consumer data; clients are stored here.
2244 * @return 0 on success, an errno on failure
2245 *
2246 * This convenience API allows consumers to enable multiple regulator
2247 * clients in a single API call. If any consumers cannot be enabled
2248 * then any others that were enabled will be disabled again prior to
2249 * return.
2250 */
2251int regulator_bulk_enable(int num_consumers,
2252 struct regulator_bulk_data *consumers)
2253{
2254 int i;
2255 int ret;
2256
2257 for (i = 0; i < num_consumers; i++) {
2258 ret = regulator_enable(consumers[i].consumer);
2259 if (ret != 0)
2260 goto err;
2261 }
2262
2263 return 0;
2264
2265err:
Joe Perches5da84fd2010-11-30 05:53:48 -08002266 pr_err("Failed to enable %s: %d\n", consumers[i].supply, ret);
Lars-Peter Clauseneb143ac2009-12-15 14:30:01 +01002267 for (--i; i >= 0; --i)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002268 regulator_disable(consumers[i].consumer);
2269
2270 return ret;
2271}
2272EXPORT_SYMBOL_GPL(regulator_bulk_enable);
2273
2274/**
2275 * regulator_bulk_disable - disable multiple regulator consumers
2276 *
2277 * @num_consumers: Number of consumers
2278 * @consumers: Consumer data; clients are stored here.
2279 * @return 0 on success, an errno on failure
2280 *
2281 * This convenience API allows consumers to disable multiple regulator
2282 * clients in a single API call. If any consumers cannot be enabled
2283 * then any others that were disabled will be disabled again prior to
2284 * return.
2285 */
2286int regulator_bulk_disable(int num_consumers,
2287 struct regulator_bulk_data *consumers)
2288{
2289 int i;
2290 int ret;
2291
2292 for (i = 0; i < num_consumers; i++) {
2293 ret = regulator_disable(consumers[i].consumer);
2294 if (ret != 0)
2295 goto err;
2296 }
2297
2298 return 0;
2299
2300err:
Joe Perches5da84fd2010-11-30 05:53:48 -08002301 pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
Lars-Peter Clauseneb143ac2009-12-15 14:30:01 +01002302 for (--i; i >= 0; --i)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002303 regulator_enable(consumers[i].consumer);
2304
2305 return ret;
2306}
2307EXPORT_SYMBOL_GPL(regulator_bulk_disable);
2308
2309/**
2310 * regulator_bulk_free - free multiple regulator consumers
2311 *
2312 * @num_consumers: Number of consumers
2313 * @consumers: Consumer data; clients are stored here.
2314 *
2315 * This convenience API allows consumers to free multiple regulator
2316 * clients in a single API call.
2317 */
2318void regulator_bulk_free(int num_consumers,
2319 struct regulator_bulk_data *consumers)
2320{
2321 int i;
2322
2323 for (i = 0; i < num_consumers; i++) {
2324 regulator_put(consumers[i].consumer);
2325 consumers[i].consumer = NULL;
2326 }
2327}
2328EXPORT_SYMBOL_GPL(regulator_bulk_free);
2329
2330/**
2331 * regulator_notifier_call_chain - call regulator event notifier
Mark Brown69279fb2008-12-31 12:52:41 +00002332 * @rdev: regulator source
Liam Girdwood414c70c2008-04-30 15:59:04 +01002333 * @event: notifier block
Mark Brown69279fb2008-12-31 12:52:41 +00002334 * @data: callback-specific data.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002335 *
2336 * Called by regulator drivers to notify clients a regulator event has
2337 * occurred. We also notify regulator clients downstream.
Jonathan Cameronb136fb42009-01-19 18:20:58 +00002338 * Note lock must be held by caller.
Liam Girdwood414c70c2008-04-30 15:59:04 +01002339 */
2340int regulator_notifier_call_chain(struct regulator_dev *rdev,
2341 unsigned long event, void *data)
2342{
2343 _notifier_call_chain(rdev, event, data);
2344 return NOTIFY_DONE;
2345
2346}
2347EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
2348
Mark Brownbe721972009-08-04 20:09:52 +02002349/**
2350 * regulator_mode_to_status - convert a regulator mode into a status
2351 *
2352 * @mode: Mode to convert
2353 *
2354 * Convert a regulator mode into a status.
2355 */
2356int regulator_mode_to_status(unsigned int mode)
2357{
2358 switch (mode) {
2359 case REGULATOR_MODE_FAST:
2360 return REGULATOR_STATUS_FAST;
2361 case REGULATOR_MODE_NORMAL:
2362 return REGULATOR_STATUS_NORMAL;
2363 case REGULATOR_MODE_IDLE:
2364 return REGULATOR_STATUS_IDLE;
2365 case REGULATOR_STATUS_STANDBY:
2366 return REGULATOR_STATUS_STANDBY;
2367 default:
2368 return 0;
2369 }
2370}
2371EXPORT_SYMBOL_GPL(regulator_mode_to_status);
2372
David Brownell7ad68e22008-11-11 17:39:02 -08002373/*
2374 * To avoid cluttering sysfs (and memory) with useless state, only
2375 * create attributes that can be meaningfully displayed.
2376 */
2377static int add_regulator_attributes(struct regulator_dev *rdev)
2378{
2379 struct device *dev = &rdev->dev;
2380 struct regulator_ops *ops = rdev->desc->ops;
2381 int status = 0;
2382
2383 /* some attributes need specific methods to be displayed */
Mark Brown476c2d82010-12-10 17:28:07 +00002384 if (ops->get_voltage || ops->get_voltage_sel) {
David Brownell7ad68e22008-11-11 17:39:02 -08002385 status = device_create_file(dev, &dev_attr_microvolts);
2386 if (status < 0)
2387 return status;
2388 }
2389 if (ops->get_current_limit) {
2390 status = device_create_file(dev, &dev_attr_microamps);
2391 if (status < 0)
2392 return status;
2393 }
2394 if (ops->get_mode) {
2395 status = device_create_file(dev, &dev_attr_opmode);
2396 if (status < 0)
2397 return status;
2398 }
2399 if (ops->is_enabled) {
2400 status = device_create_file(dev, &dev_attr_state);
2401 if (status < 0)
2402 return status;
2403 }
David Brownell853116a2009-01-14 23:03:17 -08002404 if (ops->get_status) {
2405 status = device_create_file(dev, &dev_attr_status);
2406 if (status < 0)
2407 return status;
2408 }
David Brownell7ad68e22008-11-11 17:39:02 -08002409
2410 /* some attributes are type-specific */
2411 if (rdev->desc->type == REGULATOR_CURRENT) {
2412 status = device_create_file(dev, &dev_attr_requested_microamps);
2413 if (status < 0)
2414 return status;
2415 }
2416
2417 /* all the other attributes exist to support constraints;
2418 * don't show them if there are no constraints, or if the
2419 * relevant supporting methods are missing.
2420 */
2421 if (!rdev->constraints)
2422 return status;
2423
2424 /* constraints need specific supporting methods */
Mark Browne8eef822010-12-12 14:36:17 +00002425 if (ops->set_voltage || ops->set_voltage_sel) {
David Brownell7ad68e22008-11-11 17:39:02 -08002426 status = device_create_file(dev, &dev_attr_min_microvolts);
2427 if (status < 0)
2428 return status;
2429 status = device_create_file(dev, &dev_attr_max_microvolts);
2430 if (status < 0)
2431 return status;
2432 }
2433 if (ops->set_current_limit) {
2434 status = device_create_file(dev, &dev_attr_min_microamps);
2435 if (status < 0)
2436 return status;
2437 status = device_create_file(dev, &dev_attr_max_microamps);
2438 if (status < 0)
2439 return status;
2440 }
2441
2442 /* suspend mode constraints need multiple supporting methods */
2443 if (!(ops->set_suspend_enable && ops->set_suspend_disable))
2444 return status;
2445
2446 status = device_create_file(dev, &dev_attr_suspend_standby_state);
2447 if (status < 0)
2448 return status;
2449 status = device_create_file(dev, &dev_attr_suspend_mem_state);
2450 if (status < 0)
2451 return status;
2452 status = device_create_file(dev, &dev_attr_suspend_disk_state);
2453 if (status < 0)
2454 return status;
2455
2456 if (ops->set_suspend_voltage) {
2457 status = device_create_file(dev,
2458 &dev_attr_suspend_standby_microvolts);
2459 if (status < 0)
2460 return status;
2461 status = device_create_file(dev,
2462 &dev_attr_suspend_mem_microvolts);
2463 if (status < 0)
2464 return status;
2465 status = device_create_file(dev,
2466 &dev_attr_suspend_disk_microvolts);
2467 if (status < 0)
2468 return status;
2469 }
2470
2471 if (ops->set_suspend_mode) {
2472 status = device_create_file(dev,
2473 &dev_attr_suspend_standby_mode);
2474 if (status < 0)
2475 return status;
2476 status = device_create_file(dev,
2477 &dev_attr_suspend_mem_mode);
2478 if (status < 0)
2479 return status;
2480 status = device_create_file(dev,
2481 &dev_attr_suspend_disk_mode);
2482 if (status < 0)
2483 return status;
2484 }
2485
2486 return status;
2487}
2488
Mark Brown1130e5b2010-12-21 23:49:31 +00002489static void rdev_init_debugfs(struct regulator_dev *rdev)
2490{
2491#ifdef CONFIG_DEBUG_FS
2492 rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
2493 if (IS_ERR(rdev->debugfs) || !rdev->debugfs) {
2494 rdev_warn(rdev, "Failed to create debugfs directory\n");
2495 rdev->debugfs = NULL;
2496 return;
2497 }
2498
2499 debugfs_create_u32("use_count", 0444, rdev->debugfs,
2500 &rdev->use_count);
2501 debugfs_create_u32("open_count", 0444, rdev->debugfs,
2502 &rdev->open_count);
2503#endif
2504}
2505
Liam Girdwood414c70c2008-04-30 15:59:04 +01002506/**
2507 * regulator_register - register regulator
Mark Brown69279fb2008-12-31 12:52:41 +00002508 * @regulator_desc: regulator to register
2509 * @dev: struct device for the regulator
Mark Brown05271002009-01-19 13:37:02 +00002510 * @init_data: platform provided init data, passed through by driver
Mark Brown69279fb2008-12-31 12:52:41 +00002511 * @driver_data: private regulator data
Liam Girdwood414c70c2008-04-30 15:59:04 +01002512 *
2513 * Called by regulator drivers to register a regulator.
2514 * Returns 0 on success.
2515 */
2516struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
Mark Brownf8c12fe2010-11-29 15:55:17 +00002517 struct device *dev, const struct regulator_init_data *init_data,
Mark Brown05271002009-01-19 13:37:02 +00002518 void *driver_data)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002519{
2520 static atomic_t regulator_no = ATOMIC_INIT(0);
2521 struct regulator_dev *rdev;
Liam Girdwooda5766f12008-10-10 13:22:20 +01002522 int ret, i;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002523
2524 if (regulator_desc == NULL)
2525 return ERR_PTR(-EINVAL);
2526
2527 if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
2528 return ERR_PTR(-EINVAL);
2529
Diego Lizierocd78dfc2009-04-14 03:04:47 +02002530 if (regulator_desc->type != REGULATOR_VOLTAGE &&
2531 regulator_desc->type != REGULATOR_CURRENT)
Liam Girdwood414c70c2008-04-30 15:59:04 +01002532 return ERR_PTR(-EINVAL);
2533
Mark Brown46fabe1e2008-09-09 16:21:18 +01002534 if (!init_data)
2535 return ERR_PTR(-EINVAL);
2536
Mark Brown476c2d82010-12-10 17:28:07 +00002537 /* Only one of each should be implemented */
2538 WARN_ON(regulator_desc->ops->get_voltage &&
2539 regulator_desc->ops->get_voltage_sel);
Mark Browne8eef822010-12-12 14:36:17 +00002540 WARN_ON(regulator_desc->ops->set_voltage &&
2541 regulator_desc->ops->set_voltage_sel);
Mark Brown476c2d82010-12-10 17:28:07 +00002542
2543 /* If we're using selectors we must implement list_voltage. */
2544 if (regulator_desc->ops->get_voltage_sel &&
2545 !regulator_desc->ops->list_voltage) {
2546 return ERR_PTR(-EINVAL);
2547 }
Mark Browne8eef822010-12-12 14:36:17 +00002548 if (regulator_desc->ops->set_voltage_sel &&
2549 !regulator_desc->ops->list_voltage) {
2550 return ERR_PTR(-EINVAL);
2551 }
Mark Brown476c2d82010-12-10 17:28:07 +00002552
Liam Girdwood414c70c2008-04-30 15:59:04 +01002553 rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
2554 if (rdev == NULL)
2555 return ERR_PTR(-ENOMEM);
2556
2557 mutex_lock(&regulator_list_mutex);
2558
2559 mutex_init(&rdev->mutex);
Liam Girdwooda5766f12008-10-10 13:22:20 +01002560 rdev->reg_data = driver_data;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002561 rdev->owner = regulator_desc->owner;
2562 rdev->desc = regulator_desc;
2563 INIT_LIST_HEAD(&rdev->consumer_list);
2564 INIT_LIST_HEAD(&rdev->supply_list);
2565 INIT_LIST_HEAD(&rdev->list);
2566 INIT_LIST_HEAD(&rdev->slist);
2567 BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
2568
Liam Girdwooda5766f12008-10-10 13:22:20 +01002569 /* preform any regulator specific init */
2570 if (init_data->regulator_init) {
2571 ret = init_data->regulator_init(rdev->reg_data);
David Brownell4fca9542008-11-11 17:38:53 -08002572 if (ret < 0)
2573 goto clean;
Liam Girdwooda5766f12008-10-10 13:22:20 +01002574 }
Liam Girdwood414c70c2008-04-30 15:59:04 +01002575
Liam Girdwooda5766f12008-10-10 13:22:20 +01002576 /* register with sysfs */
2577 rdev->dev.class = &regulator_class;
2578 rdev->dev.parent = dev;
Kay Sievers812460a2008-11-02 03:55:10 +01002579 dev_set_name(&rdev->dev, "regulator.%d",
2580 atomic_inc_return(&regulator_no) - 1);
Liam Girdwooda5766f12008-10-10 13:22:20 +01002581 ret = device_register(&rdev->dev);
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04002582 if (ret != 0) {
2583 put_device(&rdev->dev);
David Brownell4fca9542008-11-11 17:38:53 -08002584 goto clean;
Vasiliy Kulikovad7725c2010-09-19 16:55:01 +04002585 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01002586
2587 dev_set_drvdata(&rdev->dev, rdev);
2588
Mike Rapoport74f544c2008-11-25 14:53:53 +02002589 /* set regulator constraints */
2590 ret = set_machine_constraints(rdev, &init_data->constraints);
2591 if (ret < 0)
2592 goto scrub;
2593
David Brownell7ad68e22008-11-11 17:39:02 -08002594 /* add attributes supported by this regulator */
2595 ret = add_regulator_attributes(rdev);
2596 if (ret < 0)
2597 goto scrub;
2598
Liam Girdwooda5766f12008-10-10 13:22:20 +01002599 /* set supply regulator if it exists */
Mark Brown0178f3e2010-04-26 15:18:14 +01002600 if (init_data->supply_regulator && init_data->supply_regulator_dev) {
2601 dev_err(dev,
2602 "Supply regulator specified by both name and dev\n");
Axel Lin7727da22010-11-05 15:27:17 +08002603 ret = -EINVAL;
Mark Brown0178f3e2010-04-26 15:18:14 +01002604 goto scrub;
2605 }
2606
2607 if (init_data->supply_regulator) {
2608 struct regulator_dev *r;
2609 int found = 0;
2610
2611 list_for_each_entry(r, &regulator_list, list) {
2612 if (strcmp(rdev_get_name(r),
2613 init_data->supply_regulator) == 0) {
2614 found = 1;
2615 break;
2616 }
2617 }
2618
2619 if (!found) {
2620 dev_err(dev, "Failed to find supply %s\n",
2621 init_data->supply_regulator);
Axel Lin7727da22010-11-05 15:27:17 +08002622 ret = -ENODEV;
Mark Brown0178f3e2010-04-26 15:18:14 +01002623 goto scrub;
2624 }
2625
2626 ret = set_supply(rdev, r);
2627 if (ret < 0)
2628 goto scrub;
2629 }
2630
Liam Girdwooda5766f12008-10-10 13:22:20 +01002631 if (init_data->supply_regulator_dev) {
Mark Brown0178f3e2010-04-26 15:18:14 +01002632 dev_warn(dev, "Uses supply_regulator_dev instead of regulator_supply\n");
Liam Girdwooda5766f12008-10-10 13:22:20 +01002633 ret = set_supply(rdev,
2634 dev_get_drvdata(init_data->supply_regulator_dev));
David Brownell4fca9542008-11-11 17:38:53 -08002635 if (ret < 0)
2636 goto scrub;
Liam Girdwooda5766f12008-10-10 13:22:20 +01002637 }
2638
2639 /* add consumers devices */
2640 for (i = 0; i < init_data->num_consumer_supplies; i++) {
2641 ret = set_consumer_device_supply(rdev,
2642 init_data->consumer_supplies[i].dev,
Mark Brown40f92442009-06-17 17:56:39 +01002643 init_data->consumer_supplies[i].dev_name,
Liam Girdwooda5766f12008-10-10 13:22:20 +01002644 init_data->consumer_supplies[i].supply);
Mark Brown23c2f042011-02-24 17:39:09 +00002645 if (ret < 0) {
2646 dev_err(dev, "Failed to set supply %s\n",
2647 init_data->consumer_supplies[i].supply);
Jani Nikulad4033b52010-04-29 10:55:11 +03002648 goto unset_supplies;
Mark Brown23c2f042011-02-24 17:39:09 +00002649 }
Liam Girdwooda5766f12008-10-10 13:22:20 +01002650 }
2651
2652 list_add(&rdev->list, &regulator_list);
Mark Brown1130e5b2010-12-21 23:49:31 +00002653
2654 rdev_init_debugfs(rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +01002655out:
Liam Girdwood414c70c2008-04-30 15:59:04 +01002656 mutex_unlock(&regulator_list_mutex);
2657 return rdev;
David Brownell4fca9542008-11-11 17:38:53 -08002658
Jani Nikulad4033b52010-04-29 10:55:11 +03002659unset_supplies:
2660 unset_regulator_supplies(rdev);
2661
David Brownell4fca9542008-11-11 17:38:53 -08002662scrub:
2663 device_unregister(&rdev->dev);
Paul Walmsley53032da2009-04-25 05:28:36 -06002664 /* device core frees rdev */
2665 rdev = ERR_PTR(ret);
2666 goto out;
2667
David Brownell4fca9542008-11-11 17:38:53 -08002668clean:
2669 kfree(rdev);
2670 rdev = ERR_PTR(ret);
2671 goto out;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002672}
2673EXPORT_SYMBOL_GPL(regulator_register);
2674
2675/**
2676 * regulator_unregister - unregister regulator
Mark Brown69279fb2008-12-31 12:52:41 +00002677 * @rdev: regulator to unregister
Liam Girdwood414c70c2008-04-30 15:59:04 +01002678 *
2679 * Called by regulator drivers to unregister a regulator.
2680 */
2681void regulator_unregister(struct regulator_dev *rdev)
2682{
2683 if (rdev == NULL)
2684 return;
2685
2686 mutex_lock(&regulator_list_mutex);
Mark Brown1130e5b2010-12-21 23:49:31 +00002687#ifdef CONFIG_DEBUG_FS
2688 debugfs_remove_recursive(rdev->debugfs);
2689#endif
Mark Brown6bf87d12009-07-21 16:00:25 +01002690 WARN_ON(rdev->open_count);
Mike Rapoport0f1d7472009-01-22 16:00:29 +02002691 unset_regulator_supplies(rdev);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002692 list_del(&rdev->list);
2693 if (rdev->supply)
2694 sysfs_remove_link(&rdev->dev.kobj, "supply");
2695 device_unregister(&rdev->dev);
Mark Brownf8c12fe2010-11-29 15:55:17 +00002696 kfree(rdev->constraints);
Liam Girdwood414c70c2008-04-30 15:59:04 +01002697 mutex_unlock(&regulator_list_mutex);
2698}
2699EXPORT_SYMBOL_GPL(regulator_unregister);
2700
2701/**
Mark Browncf7bbcd2008-12-31 12:52:43 +00002702 * regulator_suspend_prepare - prepare regulators for system wide suspend
Liam Girdwood414c70c2008-04-30 15:59:04 +01002703 * @state: system suspend state
2704 *
2705 * Configure each regulator with it's suspend operating parameters for state.
2706 * This will usually be called by machine suspend code prior to supending.
2707 */
2708int regulator_suspend_prepare(suspend_state_t state)
2709{
2710 struct regulator_dev *rdev;
2711 int ret = 0;
2712
2713 /* ON is handled by regulator active state */
2714 if (state == PM_SUSPEND_ON)
2715 return -EINVAL;
2716
2717 mutex_lock(&regulator_list_mutex);
2718 list_for_each_entry(rdev, &regulator_list, list) {
2719
2720 mutex_lock(&rdev->mutex);
2721 ret = suspend_prepare(rdev, state);
2722 mutex_unlock(&rdev->mutex);
2723
2724 if (ret < 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002725 rdev_err(rdev, "failed to prepare\n");
Liam Girdwood414c70c2008-04-30 15:59:04 +01002726 goto out;
2727 }
2728 }
2729out:
2730 mutex_unlock(&regulator_list_mutex);
2731 return ret;
2732}
2733EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
2734
2735/**
MyungJoo Ham7a32b582011-03-11 10:13:59 +09002736 * regulator_suspend_finish - resume regulators from system wide suspend
2737 *
2738 * Turn on regulators that might be turned off by regulator_suspend_prepare
2739 * and that should be turned on according to the regulators properties.
2740 */
2741int regulator_suspend_finish(void)
2742{
2743 struct regulator_dev *rdev;
2744 int ret = 0, error;
2745
2746 mutex_lock(&regulator_list_mutex);
2747 list_for_each_entry(rdev, &regulator_list, list) {
2748 struct regulator_ops *ops = rdev->desc->ops;
2749
2750 mutex_lock(&rdev->mutex);
2751 if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
2752 ops->enable) {
2753 error = ops->enable(rdev);
2754 if (error)
2755 ret = error;
2756 } else {
2757 if (!has_full_constraints)
2758 goto unlock;
2759 if (!ops->disable)
2760 goto unlock;
2761 if (ops->is_enabled && !ops->is_enabled(rdev))
2762 goto unlock;
2763
2764 error = ops->disable(rdev);
2765 if (error)
2766 ret = error;
2767 }
2768unlock:
2769 mutex_unlock(&rdev->mutex);
2770 }
2771 mutex_unlock(&regulator_list_mutex);
2772 return ret;
2773}
2774EXPORT_SYMBOL_GPL(regulator_suspend_finish);
2775
2776/**
Mark Brownca725562009-03-16 19:36:34 +00002777 * regulator_has_full_constraints - the system has fully specified constraints
2778 *
2779 * Calling this function will cause the regulator API to disable all
2780 * regulators which have a zero use count and don't have an always_on
2781 * constraint in a late_initcall.
2782 *
2783 * The intention is that this will become the default behaviour in a
2784 * future kernel release so users are encouraged to use this facility
2785 * now.
2786 */
2787void regulator_has_full_constraints(void)
2788{
2789 has_full_constraints = 1;
2790}
2791EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
2792
2793/**
Mark Brown688fe992010-10-05 19:18:32 -07002794 * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
2795 *
2796 * Calling this function will cause the regulator API to provide a
2797 * dummy regulator to consumers if no physical regulator is found,
2798 * allowing most consumers to proceed as though a regulator were
2799 * configured. This allows systems such as those with software
2800 * controllable regulators for the CPU core only to be brought up more
2801 * readily.
2802 */
2803void regulator_use_dummy_regulator(void)
2804{
2805 board_wants_dummy_regulator = true;
2806}
2807EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
2808
2809/**
Liam Girdwood414c70c2008-04-30 15:59:04 +01002810 * rdev_get_drvdata - get rdev regulator driver data
Mark Brown69279fb2008-12-31 12:52:41 +00002811 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01002812 *
2813 * Get rdev regulator driver private data. This call can be used in the
2814 * regulator driver context.
2815 */
2816void *rdev_get_drvdata(struct regulator_dev *rdev)
2817{
2818 return rdev->reg_data;
2819}
2820EXPORT_SYMBOL_GPL(rdev_get_drvdata);
2821
2822/**
2823 * regulator_get_drvdata - get regulator driver data
2824 * @regulator: regulator
2825 *
2826 * Get regulator driver private data. This call can be used in the consumer
2827 * driver context when non API regulator specific functions need to be called.
2828 */
2829void *regulator_get_drvdata(struct regulator *regulator)
2830{
2831 return regulator->rdev->reg_data;
2832}
2833EXPORT_SYMBOL_GPL(regulator_get_drvdata);
2834
2835/**
2836 * regulator_set_drvdata - set regulator driver data
2837 * @regulator: regulator
2838 * @data: data
2839 */
2840void regulator_set_drvdata(struct regulator *regulator, void *data)
2841{
2842 regulator->rdev->reg_data = data;
2843}
2844EXPORT_SYMBOL_GPL(regulator_set_drvdata);
2845
2846/**
2847 * regulator_get_id - get regulator ID
Mark Brown69279fb2008-12-31 12:52:41 +00002848 * @rdev: regulator
Liam Girdwood414c70c2008-04-30 15:59:04 +01002849 */
2850int rdev_get_id(struct regulator_dev *rdev)
2851{
2852 return rdev->desc->id;
2853}
2854EXPORT_SYMBOL_GPL(rdev_get_id);
2855
Liam Girdwooda5766f12008-10-10 13:22:20 +01002856struct device *rdev_get_dev(struct regulator_dev *rdev)
2857{
2858 return &rdev->dev;
2859}
2860EXPORT_SYMBOL_GPL(rdev_get_dev);
2861
2862void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
2863{
2864 return reg_init_data->driver_data;
2865}
2866EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
2867
Liam Girdwood414c70c2008-04-30 15:59:04 +01002868static int __init regulator_init(void)
2869{
Mark Brown34abbd62010-02-12 10:18:08 +00002870 int ret;
2871
Mark Brown34abbd62010-02-12 10:18:08 +00002872 ret = class_register(&regulator_class);
2873
Mark Brown1130e5b2010-12-21 23:49:31 +00002874#ifdef CONFIG_DEBUG_FS
2875 debugfs_root = debugfs_create_dir("regulator", NULL);
2876 if (IS_ERR(debugfs_root) || !debugfs_root) {
2877 pr_warn("regulator: Failed to create debugfs directory\n");
2878 debugfs_root = NULL;
2879 }
2880#endif
2881
Mark Brown34abbd62010-02-12 10:18:08 +00002882 regulator_dummy_init();
2883
2884 return ret;
Liam Girdwood414c70c2008-04-30 15:59:04 +01002885}
2886
2887/* init early to allow our consumers to complete system booting */
2888core_initcall(regulator_init);
Mark Brownca725562009-03-16 19:36:34 +00002889
2890static int __init regulator_init_complete(void)
2891{
2892 struct regulator_dev *rdev;
2893 struct regulator_ops *ops;
2894 struct regulation_constraints *c;
2895 int enabled, ret;
Mark Brownca725562009-03-16 19:36:34 +00002896
2897 mutex_lock(&regulator_list_mutex);
2898
2899 /* If we have a full configuration then disable any regulators
2900 * which are not in use or always_on. This will become the
2901 * default behaviour in the future.
2902 */
2903 list_for_each_entry(rdev, &regulator_list, list) {
2904 ops = rdev->desc->ops;
2905 c = rdev->constraints;
2906
Mark Brownf25e0b42009-08-03 18:49:55 +01002907 if (!ops->disable || (c && c->always_on))
Mark Brownca725562009-03-16 19:36:34 +00002908 continue;
2909
2910 mutex_lock(&rdev->mutex);
2911
2912 if (rdev->use_count)
2913 goto unlock;
2914
2915 /* If we can't read the status assume it's on. */
2916 if (ops->is_enabled)
2917 enabled = ops->is_enabled(rdev);
2918 else
2919 enabled = 1;
2920
2921 if (!enabled)
2922 goto unlock;
2923
2924 if (has_full_constraints) {
2925 /* We log since this may kill the system if it
2926 * goes wrong. */
Joe Perches5da84fd2010-11-30 05:53:48 -08002927 rdev_info(rdev, "disabling\n");
Mark Brownca725562009-03-16 19:36:34 +00002928 ret = ops->disable(rdev);
2929 if (ret != 0) {
Joe Perches5da84fd2010-11-30 05:53:48 -08002930 rdev_err(rdev, "couldn't disable: %d\n", ret);
Mark Brownca725562009-03-16 19:36:34 +00002931 }
2932 } else {
2933 /* The intention is that in future we will
2934 * assume that full constraints are provided
2935 * so warn even if we aren't going to do
2936 * anything here.
2937 */
Joe Perches5da84fd2010-11-30 05:53:48 -08002938 rdev_warn(rdev, "incomplete constraints, leaving on\n");
Mark Brownca725562009-03-16 19:36:34 +00002939 }
2940
2941unlock:
2942 mutex_unlock(&rdev->mutex);
2943 }
2944
2945 mutex_unlock(&regulator_list_mutex);
2946
2947 return 0;
2948}
2949late_initcall(regulator_init_complete);