Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1 | /* |
| 2 | * core.c -- Voltage/Current Regulator framework. |
| 3 | * |
| 4 | * Copyright 2007, 2008 Wolfson Microelectronics PLC. |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 5 | * Copyright 2008 SlimLogic Ltd. |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 6 | * |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 7 | * Author: Liam Girdwood <lrg@slimlogic.co.uk> |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public License as published by the |
| 11 | * Free Software Foundation; either version 2 of the License, or (at your |
| 12 | * option) any later version. |
| 13 | * |
| 14 | */ |
| 15 | |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/init.h> |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 18 | #include <linux/debugfs.h> |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 19 | #include <linux/device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Mark Brown | f21e0e8 | 2011-05-24 08:12:40 +0800 | [diff] [blame] | 21 | #include <linux/async.h> |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 22 | #include <linux/err.h> |
| 23 | #include <linux/mutex.h> |
| 24 | #include <linux/suspend.h> |
Mark Brown | 31aae2b | 2009-12-21 12:21:52 +0000 | [diff] [blame] | 25 | #include <linux/delay.h> |
Mark Brown | 65f7350 | 2012-06-27 14:14:38 +0100 | [diff] [blame] | 26 | #include <linux/gpio.h> |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 27 | #include <linux/of.h> |
Mark Brown | 65b19ce | 2012-04-15 11:16:05 +0100 | [diff] [blame] | 28 | #include <linux/regmap.h> |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 29 | #include <linux/regulator/of_regulator.h> |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 30 | #include <linux/regulator/consumer.h> |
| 31 | #include <linux/regulator/driver.h> |
| 32 | #include <linux/regulator/machine.h> |
Paul Gortmaker | 65602c3 | 2011-07-17 16:28:23 -0400 | [diff] [blame] | 33 | #include <linux/module.h> |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 34 | |
Mark Brown | 02fa3ec | 2010-11-10 14:38:30 +0000 | [diff] [blame] | 35 | #define CREATE_TRACE_POINTS |
| 36 | #include <trace/events/regulator.h> |
| 37 | |
Mark Brown | 34abbd6 | 2010-02-12 10:18:08 +0000 | [diff] [blame] | 38 | #include "dummy.h" |
| 39 | |
Mark Brown | 7d51a0d | 2011-06-09 16:06:37 +0100 | [diff] [blame] | 40 | #define rdev_crit(rdev, fmt, ...) \ |
| 41 | pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__) |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 42 | #define rdev_err(rdev, fmt, ...) \ |
| 43 | pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__) |
| 44 | #define rdev_warn(rdev, fmt, ...) \ |
| 45 | pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__) |
| 46 | #define rdev_info(rdev, fmt, ...) \ |
| 47 | pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__) |
| 48 | #define rdev_dbg(rdev, fmt, ...) \ |
| 49 | pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__) |
| 50 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 51 | static DEFINE_MUTEX(regulator_list_mutex); |
| 52 | static LIST_HEAD(regulator_list); |
| 53 | static LIST_HEAD(regulator_map_list); |
Kim, Milo | f19b00d | 2013-02-18 06:50:39 +0000 | [diff] [blame] | 54 | static LIST_HEAD(regulator_ena_gpio_list); |
Mark Brown | 21cf891 | 2010-12-21 23:30:07 +0000 | [diff] [blame] | 55 | static bool has_full_constraints; |
Mark Brown | 688fe99 | 2010-10-05 19:18:32 -0700 | [diff] [blame] | 56 | static bool board_wants_dummy_regulator; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 57 | |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 58 | static struct dentry *debugfs_root; |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 59 | |
Mark Brown | 8dc5390 | 2008-12-31 12:52:40 +0000 | [diff] [blame] | 60 | /* |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 61 | * struct regulator_map |
| 62 | * |
| 63 | * Used to provide symbolic supply names to devices. |
| 64 | */ |
| 65 | struct regulator_map { |
| 66 | struct list_head list; |
Mark Brown | 40f9244 | 2009-06-17 17:56:39 +0100 | [diff] [blame] | 67 | const char *dev_name; /* The dev_name() for the consumer */ |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 68 | const char *supply; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 69 | struct regulator_dev *regulator; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 70 | }; |
| 71 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 72 | /* |
Kim, Milo | f19b00d | 2013-02-18 06:50:39 +0000 | [diff] [blame] | 73 | * struct regulator_enable_gpio |
| 74 | * |
| 75 | * Management for shared enable GPIO pin |
| 76 | */ |
| 77 | struct regulator_enable_gpio { |
| 78 | struct list_head list; |
| 79 | int gpio; |
| 80 | u32 enable_count; /* a number of enabled shared GPIO */ |
| 81 | u32 request_count; /* a number of requested shared GPIO */ |
| 82 | unsigned int ena_gpio_invert:1; |
| 83 | }; |
| 84 | |
| 85 | /* |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 86 | * struct regulator |
| 87 | * |
| 88 | * One for each consumer device. |
| 89 | */ |
| 90 | struct regulator { |
| 91 | struct device *dev; |
| 92 | struct list_head list; |
Mark Brown | 6492bc1 | 2012-04-19 13:19:07 +0100 | [diff] [blame] | 93 | unsigned int always_on:1; |
Mark Brown | f59c8f9 | 2012-08-31 10:36:37 -0700 | [diff] [blame] | 94 | unsigned int bypass:1; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 95 | int uA_load; |
| 96 | int min_uV; |
| 97 | int max_uV; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 98 | char *supply_name; |
| 99 | struct device_attribute dev_attr; |
| 100 | struct regulator_dev *rdev; |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 101 | struct dentry *debugfs; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 102 | }; |
| 103 | |
| 104 | static int _regulator_is_enabled(struct regulator_dev *rdev); |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 105 | static int _regulator_disable(struct regulator_dev *rdev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 106 | static int _regulator_get_voltage(struct regulator_dev *rdev); |
| 107 | static int _regulator_get_current_limit(struct regulator_dev *rdev); |
| 108 | static unsigned int _regulator_get_mode(struct regulator_dev *rdev); |
| 109 | static void _notifier_call_chain(struct regulator_dev *rdev, |
| 110 | unsigned long event, void *data); |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 111 | static int _regulator_do_set_voltage(struct regulator_dev *rdev, |
| 112 | int min_uV, int max_uV); |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 113 | static struct regulator *create_regulator(struct regulator_dev *rdev, |
| 114 | struct device *dev, |
| 115 | const char *supply_name); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 116 | |
Mark Brown | 1083c39 | 2009-10-22 16:31:32 +0100 | [diff] [blame] | 117 | static const char *rdev_get_name(struct regulator_dev *rdev) |
| 118 | { |
| 119 | if (rdev->constraints && rdev->constraints->name) |
| 120 | return rdev->constraints->name; |
| 121 | else if (rdev->desc->name) |
| 122 | return rdev->desc->name; |
| 123 | else |
| 124 | return ""; |
| 125 | } |
| 126 | |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 127 | /** |
| 128 | * of_get_regulator - get a regulator device node based on supply name |
| 129 | * @dev: Device pointer for the consumer (of regulator) device |
| 130 | * @supply: regulator supply name |
| 131 | * |
| 132 | * Extract the regulator device node corresponding to the supply name. |
Maxime Ripard | 167d41d | 2013-03-23 11:00:41 +0100 | [diff] [blame] | 133 | * returns the device node corresponding to the regulator if found, else |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 134 | * returns NULL. |
| 135 | */ |
| 136 | static struct device_node *of_get_regulator(struct device *dev, const char *supply) |
| 137 | { |
| 138 | struct device_node *regnode = NULL; |
| 139 | char prop_name[32]; /* 32 is max size of property name */ |
| 140 | |
| 141 | dev_dbg(dev, "Looking up %s-supply from device tree\n", supply); |
| 142 | |
| 143 | snprintf(prop_name, 32, "%s-supply", supply); |
| 144 | regnode = of_parse_phandle(dev->of_node, prop_name, 0); |
| 145 | |
| 146 | if (!regnode) { |
Rajendra Nayak | 16fbcc3 | 2012-03-16 15:50:21 +0530 | [diff] [blame] | 147 | dev_dbg(dev, "Looking up %s property in node %s failed", |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 148 | prop_name, dev->of_node->full_name); |
| 149 | return NULL; |
| 150 | } |
| 151 | return regnode; |
| 152 | } |
| 153 | |
Mark Brown | 6492bc1 | 2012-04-19 13:19:07 +0100 | [diff] [blame] | 154 | static int _regulator_can_change_status(struct regulator_dev *rdev) |
| 155 | { |
| 156 | if (!rdev->constraints) |
| 157 | return 0; |
| 158 | |
| 159 | if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS) |
| 160 | return 1; |
| 161 | else |
| 162 | return 0; |
| 163 | } |
| 164 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 165 | /* Platform voltage constraint check */ |
| 166 | static int regulator_check_voltage(struct regulator_dev *rdev, |
| 167 | int *min_uV, int *max_uV) |
| 168 | { |
| 169 | BUG_ON(*min_uV > *max_uV); |
| 170 | |
| 171 | if (!rdev->constraints) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 172 | rdev_err(rdev, "no constraints\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 173 | return -ENODEV; |
| 174 | } |
| 175 | if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 176 | rdev_err(rdev, "operation not allowed\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 177 | return -EPERM; |
| 178 | } |
| 179 | |
| 180 | if (*max_uV > rdev->constraints->max_uV) |
| 181 | *max_uV = rdev->constraints->max_uV; |
| 182 | if (*min_uV < rdev->constraints->min_uV) |
| 183 | *min_uV = rdev->constraints->min_uV; |
| 184 | |
Mark Brown | 89f425e | 2011-07-12 11:20:37 +0900 | [diff] [blame] | 185 | if (*min_uV > *max_uV) { |
| 186 | rdev_err(rdev, "unsupportable voltage range: %d-%duV\n", |
Mark Brown | 54abd33 | 2011-07-21 15:07:37 +0100 | [diff] [blame] | 187 | *min_uV, *max_uV); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 188 | return -EINVAL; |
Mark Brown | 89f425e | 2011-07-12 11:20:37 +0900 | [diff] [blame] | 189 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 190 | |
| 191 | return 0; |
| 192 | } |
| 193 | |
Thomas Petazzoni | 05fda3b1a | 2010-12-03 11:31:07 +0100 | [diff] [blame] | 194 | /* Make sure we select a voltage that suits the needs of all |
| 195 | * regulator consumers |
| 196 | */ |
| 197 | static int regulator_check_consumers(struct regulator_dev *rdev, |
| 198 | int *min_uV, int *max_uV) |
| 199 | { |
| 200 | struct regulator *regulator; |
| 201 | |
| 202 | list_for_each_entry(regulator, &rdev->consumer_list, list) { |
Mark Brown | 4aa922c | 2011-05-14 13:42:34 -0700 | [diff] [blame] | 203 | /* |
| 204 | * Assume consumers that didn't say anything are OK |
| 205 | * with anything in the constraint range. |
| 206 | */ |
| 207 | if (!regulator->min_uV && !regulator->max_uV) |
| 208 | continue; |
| 209 | |
Thomas Petazzoni | 05fda3b1a | 2010-12-03 11:31:07 +0100 | [diff] [blame] | 210 | if (*max_uV > regulator->max_uV) |
| 211 | *max_uV = regulator->max_uV; |
| 212 | if (*min_uV < regulator->min_uV) |
| 213 | *min_uV = regulator->min_uV; |
| 214 | } |
| 215 | |
Mark Brown | dd8004a | 2012-11-28 17:09:27 +0000 | [diff] [blame] | 216 | if (*min_uV > *max_uV) { |
Russ Dill | 9c7b4e8 | 2013-02-14 04:46:33 -0800 | [diff] [blame] | 217 | rdev_err(rdev, "Restricting voltage, %u-%uuV\n", |
| 218 | *min_uV, *max_uV); |
Thomas Petazzoni | 05fda3b1a | 2010-12-03 11:31:07 +0100 | [diff] [blame] | 219 | return -EINVAL; |
Mark Brown | dd8004a | 2012-11-28 17:09:27 +0000 | [diff] [blame] | 220 | } |
Thomas Petazzoni | 05fda3b1a | 2010-12-03 11:31:07 +0100 | [diff] [blame] | 221 | |
| 222 | return 0; |
| 223 | } |
| 224 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 225 | /* current constraint check */ |
| 226 | static int regulator_check_current_limit(struct regulator_dev *rdev, |
| 227 | int *min_uA, int *max_uA) |
| 228 | { |
| 229 | BUG_ON(*min_uA > *max_uA); |
| 230 | |
| 231 | if (!rdev->constraints) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 232 | rdev_err(rdev, "no constraints\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 233 | return -ENODEV; |
| 234 | } |
| 235 | if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 236 | rdev_err(rdev, "operation not allowed\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 237 | return -EPERM; |
| 238 | } |
| 239 | |
| 240 | if (*max_uA > rdev->constraints->max_uA) |
| 241 | *max_uA = rdev->constraints->max_uA; |
| 242 | if (*min_uA < rdev->constraints->min_uA) |
| 243 | *min_uA = rdev->constraints->min_uA; |
| 244 | |
Mark Brown | 89f425e | 2011-07-12 11:20:37 +0900 | [diff] [blame] | 245 | if (*min_uA > *max_uA) { |
| 246 | rdev_err(rdev, "unsupportable current range: %d-%duA\n", |
Mark Brown | 54abd33 | 2011-07-21 15:07:37 +0100 | [diff] [blame] | 247 | *min_uA, *max_uA); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 248 | return -EINVAL; |
Mark Brown | 89f425e | 2011-07-12 11:20:37 +0900 | [diff] [blame] | 249 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 250 | |
| 251 | return 0; |
| 252 | } |
| 253 | |
| 254 | /* operating mode constraint check */ |
Mark Brown | 2c60823 | 2011-03-30 06:29:12 +0900 | [diff] [blame] | 255 | static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 256 | { |
Mark Brown | 2c60823 | 2011-03-30 06:29:12 +0900 | [diff] [blame] | 257 | switch (*mode) { |
David Brownell | e573520 | 2008-11-16 11:46:56 -0800 | [diff] [blame] | 258 | case REGULATOR_MODE_FAST: |
| 259 | case REGULATOR_MODE_NORMAL: |
| 260 | case REGULATOR_MODE_IDLE: |
| 261 | case REGULATOR_MODE_STANDBY: |
| 262 | break; |
| 263 | default: |
Mark Brown | 89f425e | 2011-07-12 11:20:37 +0900 | [diff] [blame] | 264 | rdev_err(rdev, "invalid mode %x specified\n", *mode); |
David Brownell | e573520 | 2008-11-16 11:46:56 -0800 | [diff] [blame] | 265 | return -EINVAL; |
| 266 | } |
| 267 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 268 | if (!rdev->constraints) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 269 | rdev_err(rdev, "no constraints\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 270 | return -ENODEV; |
| 271 | } |
| 272 | if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 273 | rdev_err(rdev, "operation not allowed\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 274 | return -EPERM; |
| 275 | } |
Mark Brown | 2c60823 | 2011-03-30 06:29:12 +0900 | [diff] [blame] | 276 | |
| 277 | /* The modes are bitmasks, the most power hungry modes having |
| 278 | * the lowest values. If the requested mode isn't supported |
| 279 | * try higher modes. */ |
| 280 | while (*mode) { |
| 281 | if (rdev->constraints->valid_modes_mask & *mode) |
| 282 | return 0; |
| 283 | *mode /= 2; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 284 | } |
Mark Brown | 2c60823 | 2011-03-30 06:29:12 +0900 | [diff] [blame] | 285 | |
| 286 | return -EINVAL; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | /* dynamic regulator mode switching constraint check */ |
| 290 | static int regulator_check_drms(struct regulator_dev *rdev) |
| 291 | { |
| 292 | if (!rdev->constraints) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 293 | rdev_err(rdev, "no constraints\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 294 | return -ENODEV; |
| 295 | } |
| 296 | if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 297 | rdev_err(rdev, "operation not allowed\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 298 | return -EPERM; |
| 299 | } |
| 300 | return 0; |
| 301 | } |
| 302 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 303 | static ssize_t regulator_uV_show(struct device *dev, |
| 304 | struct device_attribute *attr, char *buf) |
| 305 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 306 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 307 | ssize_t ret; |
| 308 | |
| 309 | mutex_lock(&rdev->mutex); |
| 310 | ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev)); |
| 311 | mutex_unlock(&rdev->mutex); |
| 312 | |
| 313 | return ret; |
| 314 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 315 | static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 316 | |
| 317 | static ssize_t regulator_uA_show(struct device *dev, |
| 318 | struct device_attribute *attr, char *buf) |
| 319 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 320 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 321 | |
| 322 | return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev)); |
| 323 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 324 | static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 325 | |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 326 | static ssize_t name_show(struct device *dev, struct device_attribute *attr, |
| 327 | char *buf) |
Mark Brown | bc558a6 | 2008-10-10 15:33:20 +0100 | [diff] [blame] | 328 | { |
| 329 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Mark Brown | bc558a6 | 2008-10-10 15:33:20 +0100 | [diff] [blame] | 330 | |
Mark Brown | 1083c39 | 2009-10-22 16:31:32 +0100 | [diff] [blame] | 331 | return sprintf(buf, "%s\n", rdev_get_name(rdev)); |
Mark Brown | bc558a6 | 2008-10-10 15:33:20 +0100 | [diff] [blame] | 332 | } |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 333 | static DEVICE_ATTR_RO(name); |
Mark Brown | bc558a6 | 2008-10-10 15:33:20 +0100 | [diff] [blame] | 334 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 335 | static ssize_t regulator_print_opmode(char *buf, int mode) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 336 | { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 337 | switch (mode) { |
| 338 | case REGULATOR_MODE_FAST: |
| 339 | return sprintf(buf, "fast\n"); |
| 340 | case REGULATOR_MODE_NORMAL: |
| 341 | return sprintf(buf, "normal\n"); |
| 342 | case REGULATOR_MODE_IDLE: |
| 343 | return sprintf(buf, "idle\n"); |
| 344 | case REGULATOR_MODE_STANDBY: |
| 345 | return sprintf(buf, "standby\n"); |
| 346 | } |
| 347 | return sprintf(buf, "unknown\n"); |
| 348 | } |
| 349 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 350 | static ssize_t regulator_opmode_show(struct device *dev, |
| 351 | struct device_attribute *attr, char *buf) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 352 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 353 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 354 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 355 | return regulator_print_opmode(buf, _regulator_get_mode(rdev)); |
| 356 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 357 | static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL); |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 358 | |
| 359 | static ssize_t regulator_print_state(char *buf, int state) |
| 360 | { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 361 | if (state > 0) |
| 362 | return sprintf(buf, "enabled\n"); |
| 363 | else if (state == 0) |
| 364 | return sprintf(buf, "disabled\n"); |
| 365 | else |
| 366 | return sprintf(buf, "unknown\n"); |
| 367 | } |
| 368 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 369 | static ssize_t regulator_state_show(struct device *dev, |
| 370 | struct device_attribute *attr, char *buf) |
| 371 | { |
| 372 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Mark Brown | 9332546 | 2009-08-03 18:49:56 +0100 | [diff] [blame] | 373 | ssize_t ret; |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 374 | |
Mark Brown | 9332546 | 2009-08-03 18:49:56 +0100 | [diff] [blame] | 375 | mutex_lock(&rdev->mutex); |
| 376 | ret = regulator_print_state(buf, _regulator_is_enabled(rdev)); |
| 377 | mutex_unlock(&rdev->mutex); |
| 378 | |
| 379 | return ret; |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 380 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 381 | static DEVICE_ATTR(state, 0444, regulator_state_show, NULL); |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 382 | |
David Brownell | 853116a | 2009-01-14 23:03:17 -0800 | [diff] [blame] | 383 | static ssize_t regulator_status_show(struct device *dev, |
| 384 | struct device_attribute *attr, char *buf) |
| 385 | { |
| 386 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
| 387 | int status; |
| 388 | char *label; |
| 389 | |
| 390 | status = rdev->desc->ops->get_status(rdev); |
| 391 | if (status < 0) |
| 392 | return status; |
| 393 | |
| 394 | switch (status) { |
| 395 | case REGULATOR_STATUS_OFF: |
| 396 | label = "off"; |
| 397 | break; |
| 398 | case REGULATOR_STATUS_ON: |
| 399 | label = "on"; |
| 400 | break; |
| 401 | case REGULATOR_STATUS_ERROR: |
| 402 | label = "error"; |
| 403 | break; |
| 404 | case REGULATOR_STATUS_FAST: |
| 405 | label = "fast"; |
| 406 | break; |
| 407 | case REGULATOR_STATUS_NORMAL: |
| 408 | label = "normal"; |
| 409 | break; |
| 410 | case REGULATOR_STATUS_IDLE: |
| 411 | label = "idle"; |
| 412 | break; |
| 413 | case REGULATOR_STATUS_STANDBY: |
| 414 | label = "standby"; |
| 415 | break; |
Mark Brown | f59c8f9 | 2012-08-31 10:36:37 -0700 | [diff] [blame] | 416 | case REGULATOR_STATUS_BYPASS: |
| 417 | label = "bypass"; |
| 418 | break; |
Krystian Garbaciak | 1beaf76 | 2012-07-12 13:53:35 +0100 | [diff] [blame] | 419 | case REGULATOR_STATUS_UNDEFINED: |
| 420 | label = "undefined"; |
| 421 | break; |
David Brownell | 853116a | 2009-01-14 23:03:17 -0800 | [diff] [blame] | 422 | default: |
| 423 | return -ERANGE; |
| 424 | } |
| 425 | |
| 426 | return sprintf(buf, "%s\n", label); |
| 427 | } |
| 428 | static DEVICE_ATTR(status, 0444, regulator_status_show, NULL); |
| 429 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 430 | static ssize_t regulator_min_uA_show(struct device *dev, |
| 431 | struct device_attribute *attr, char *buf) |
| 432 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 433 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 434 | |
| 435 | if (!rdev->constraints) |
| 436 | return sprintf(buf, "constraint not defined\n"); |
| 437 | |
| 438 | return sprintf(buf, "%d\n", rdev->constraints->min_uA); |
| 439 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 440 | static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 441 | |
| 442 | static ssize_t regulator_max_uA_show(struct device *dev, |
| 443 | struct device_attribute *attr, char *buf) |
| 444 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 445 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 446 | |
| 447 | if (!rdev->constraints) |
| 448 | return sprintf(buf, "constraint not defined\n"); |
| 449 | |
| 450 | return sprintf(buf, "%d\n", rdev->constraints->max_uA); |
| 451 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 452 | static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 453 | |
| 454 | static ssize_t regulator_min_uV_show(struct device *dev, |
| 455 | struct device_attribute *attr, char *buf) |
| 456 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 457 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 458 | |
| 459 | if (!rdev->constraints) |
| 460 | return sprintf(buf, "constraint not defined\n"); |
| 461 | |
| 462 | return sprintf(buf, "%d\n", rdev->constraints->min_uV); |
| 463 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 464 | static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 465 | |
| 466 | static ssize_t regulator_max_uV_show(struct device *dev, |
| 467 | struct device_attribute *attr, char *buf) |
| 468 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 469 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 470 | |
| 471 | if (!rdev->constraints) |
| 472 | return sprintf(buf, "constraint not defined\n"); |
| 473 | |
| 474 | return sprintf(buf, "%d\n", rdev->constraints->max_uV); |
| 475 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 476 | static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 477 | |
| 478 | static ssize_t regulator_total_uA_show(struct device *dev, |
| 479 | struct device_attribute *attr, char *buf) |
| 480 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 481 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 482 | struct regulator *regulator; |
| 483 | int uA = 0; |
| 484 | |
| 485 | mutex_lock(&rdev->mutex); |
| 486 | list_for_each_entry(regulator, &rdev->consumer_list, list) |
Stefan Roese | fa2984d | 2009-11-27 15:56:34 +0100 | [diff] [blame] | 487 | uA += regulator->uA_load; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 488 | mutex_unlock(&rdev->mutex); |
| 489 | return sprintf(buf, "%d\n", uA); |
| 490 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 491 | static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 492 | |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 493 | static ssize_t num_users_show(struct device *dev, struct device_attribute *attr, |
| 494 | char *buf) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 495 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 496 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 497 | return sprintf(buf, "%d\n", rdev->use_count); |
| 498 | } |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 499 | static DEVICE_ATTR_RO(num_users); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 500 | |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 501 | static ssize_t type_show(struct device *dev, struct device_attribute *attr, |
| 502 | char *buf) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 503 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 504 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 505 | |
| 506 | switch (rdev->desc->type) { |
| 507 | case REGULATOR_VOLTAGE: |
| 508 | return sprintf(buf, "voltage\n"); |
| 509 | case REGULATOR_CURRENT: |
| 510 | return sprintf(buf, "current\n"); |
| 511 | } |
| 512 | return sprintf(buf, "unknown\n"); |
| 513 | } |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 514 | static DEVICE_ATTR_RO(type); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 515 | |
| 516 | static ssize_t regulator_suspend_mem_uV_show(struct device *dev, |
| 517 | struct device_attribute *attr, char *buf) |
| 518 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 519 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 520 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 521 | return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV); |
| 522 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 523 | static DEVICE_ATTR(suspend_mem_microvolts, 0444, |
| 524 | regulator_suspend_mem_uV_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 525 | |
| 526 | static ssize_t regulator_suspend_disk_uV_show(struct device *dev, |
| 527 | struct device_attribute *attr, char *buf) |
| 528 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 529 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 530 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 531 | return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV); |
| 532 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 533 | static DEVICE_ATTR(suspend_disk_microvolts, 0444, |
| 534 | regulator_suspend_disk_uV_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 535 | |
| 536 | static ssize_t regulator_suspend_standby_uV_show(struct device *dev, |
| 537 | struct device_attribute *attr, char *buf) |
| 538 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 539 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 540 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 541 | return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV); |
| 542 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 543 | static DEVICE_ATTR(suspend_standby_microvolts, 0444, |
| 544 | regulator_suspend_standby_uV_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 545 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 546 | static ssize_t regulator_suspend_mem_mode_show(struct device *dev, |
| 547 | struct device_attribute *attr, char *buf) |
| 548 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 549 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 550 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 551 | return regulator_print_opmode(buf, |
| 552 | rdev->constraints->state_mem.mode); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 553 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 554 | static DEVICE_ATTR(suspend_mem_mode, 0444, |
| 555 | regulator_suspend_mem_mode_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 556 | |
| 557 | static ssize_t regulator_suspend_disk_mode_show(struct device *dev, |
| 558 | struct device_attribute *attr, char *buf) |
| 559 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 560 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 561 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 562 | return regulator_print_opmode(buf, |
| 563 | rdev->constraints->state_disk.mode); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 564 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 565 | static DEVICE_ATTR(suspend_disk_mode, 0444, |
| 566 | regulator_suspend_disk_mode_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 567 | |
| 568 | static ssize_t regulator_suspend_standby_mode_show(struct device *dev, |
| 569 | struct device_attribute *attr, char *buf) |
| 570 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 571 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 572 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 573 | return regulator_print_opmode(buf, |
| 574 | rdev->constraints->state_standby.mode); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 575 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 576 | static DEVICE_ATTR(suspend_standby_mode, 0444, |
| 577 | regulator_suspend_standby_mode_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 578 | |
| 579 | static ssize_t regulator_suspend_mem_state_show(struct device *dev, |
| 580 | struct device_attribute *attr, char *buf) |
| 581 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 582 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 583 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 584 | return regulator_print_state(buf, |
| 585 | rdev->constraints->state_mem.enabled); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 586 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 587 | static DEVICE_ATTR(suspend_mem_state, 0444, |
| 588 | regulator_suspend_mem_state_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 589 | |
| 590 | static ssize_t regulator_suspend_disk_state_show(struct device *dev, |
| 591 | struct device_attribute *attr, char *buf) |
| 592 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 593 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 594 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 595 | return regulator_print_state(buf, |
| 596 | rdev->constraints->state_disk.enabled); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 597 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 598 | static DEVICE_ATTR(suspend_disk_state, 0444, |
| 599 | regulator_suspend_disk_state_show, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 600 | |
| 601 | static ssize_t regulator_suspend_standby_state_show(struct device *dev, |
| 602 | struct device_attribute *attr, char *buf) |
| 603 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 604 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 605 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 606 | return regulator_print_state(buf, |
| 607 | rdev->constraints->state_standby.enabled); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 608 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 609 | static DEVICE_ATTR(suspend_standby_state, 0444, |
| 610 | regulator_suspend_standby_state_show, NULL); |
Mark Brown | bc558a6 | 2008-10-10 15:33:20 +0100 | [diff] [blame] | 611 | |
Mark Brown | f59c8f9 | 2012-08-31 10:36:37 -0700 | [diff] [blame] | 612 | static ssize_t regulator_bypass_show(struct device *dev, |
| 613 | struct device_attribute *attr, char *buf) |
| 614 | { |
| 615 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
| 616 | const char *report; |
| 617 | bool bypass; |
| 618 | int ret; |
| 619 | |
| 620 | ret = rdev->desc->ops->get_bypass(rdev, &bypass); |
| 621 | |
| 622 | if (ret != 0) |
| 623 | report = "unknown"; |
| 624 | else if (bypass) |
| 625 | report = "enabled"; |
| 626 | else |
| 627 | report = "disabled"; |
| 628 | |
| 629 | return sprintf(buf, "%s\n", report); |
| 630 | } |
| 631 | static DEVICE_ATTR(bypass, 0444, |
| 632 | regulator_bypass_show, NULL); |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 633 | |
| 634 | /* |
| 635 | * These are the only attributes are present for all regulators. |
| 636 | * Other attributes are a function of regulator functionality. |
| 637 | */ |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 638 | static struct attribute *regulator_dev_attrs[] = { |
| 639 | &dev_attr_name.attr, |
| 640 | &dev_attr_num_users.attr, |
| 641 | &dev_attr_type.attr, |
| 642 | NULL, |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 643 | }; |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 644 | ATTRIBUTE_GROUPS(regulator_dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 645 | |
| 646 | static void regulator_dev_release(struct device *dev) |
| 647 | { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 648 | struct regulator_dev *rdev = dev_get_drvdata(dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 649 | kfree(rdev); |
| 650 | } |
| 651 | |
| 652 | static struct class regulator_class = { |
| 653 | .name = "regulator", |
| 654 | .dev_release = regulator_dev_release, |
Greg Kroah-Hartman | 587cea2 | 2013-07-24 15:05:21 -0700 | [diff] [blame^] | 655 | .dev_groups = regulator_dev_groups, |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 656 | }; |
| 657 | |
| 658 | /* Calculate the new optimum regulator operating mode based on the new total |
| 659 | * consumer load. All locks held by caller */ |
| 660 | static void drms_uA_update(struct regulator_dev *rdev) |
| 661 | { |
| 662 | struct regulator *sibling; |
| 663 | int current_uA = 0, output_uV, input_uV, err; |
| 664 | unsigned int mode; |
| 665 | |
| 666 | err = regulator_check_drms(rdev); |
| 667 | if (err < 0 || !rdev->desc->ops->get_optimum_mode || |
Mark Brown | 476c2d8 | 2010-12-10 17:28:07 +0000 | [diff] [blame] | 668 | (!rdev->desc->ops->get_voltage && |
| 669 | !rdev->desc->ops->get_voltage_sel) || |
| 670 | !rdev->desc->ops->set_mode) |
Dan Carpenter | 036de8e | 2009-04-08 13:52:39 +0300 | [diff] [blame] | 671 | return; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 672 | |
| 673 | /* get output voltage */ |
Mark Brown | 1bf5a1f | 2010-12-10 17:28:06 +0000 | [diff] [blame] | 674 | output_uV = _regulator_get_voltage(rdev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 675 | if (output_uV <= 0) |
| 676 | return; |
| 677 | |
| 678 | /* get input voltage */ |
Mark Brown | 1bf5a1f | 2010-12-10 17:28:06 +0000 | [diff] [blame] | 679 | input_uV = 0; |
| 680 | if (rdev->supply) |
Axel Lin | 3f24f5a | 2012-04-13 21:35:05 +0800 | [diff] [blame] | 681 | input_uV = regulator_get_voltage(rdev->supply); |
Mark Brown | 1bf5a1f | 2010-12-10 17:28:06 +0000 | [diff] [blame] | 682 | if (input_uV <= 0) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 683 | input_uV = rdev->constraints->input_uV; |
| 684 | if (input_uV <= 0) |
| 685 | return; |
| 686 | |
| 687 | /* calc total requested load */ |
| 688 | list_for_each_entry(sibling, &rdev->consumer_list, list) |
Stefan Roese | fa2984d | 2009-11-27 15:56:34 +0100 | [diff] [blame] | 689 | current_uA += sibling->uA_load; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 690 | |
| 691 | /* now get the optimum mode for our new total regulator load */ |
| 692 | mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV, |
| 693 | output_uV, current_uA); |
| 694 | |
| 695 | /* check the new mode is allowed */ |
Mark Brown | 2c60823 | 2011-03-30 06:29:12 +0900 | [diff] [blame] | 696 | err = regulator_mode_constrain(rdev, &mode); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 697 | if (err == 0) |
| 698 | rdev->desc->ops->set_mode(rdev, mode); |
| 699 | } |
| 700 | |
| 701 | static int suspend_set_state(struct regulator_dev *rdev, |
| 702 | struct regulator_state *rstate) |
| 703 | { |
| 704 | int ret = 0; |
Mark Brown | 638f85c | 2009-10-22 16:31:33 +0100 | [diff] [blame] | 705 | |
| 706 | /* If we have no suspend mode configration don't set anything; |
Axel Lin | 8ac0e95 | 2012-04-14 09:14:34 +0800 | [diff] [blame] | 707 | * only warn if the driver implements set_suspend_voltage or |
| 708 | * set_suspend_mode callback. |
Mark Brown | 638f85c | 2009-10-22 16:31:33 +0100 | [diff] [blame] | 709 | */ |
| 710 | if (!rstate->enabled && !rstate->disabled) { |
Axel Lin | 8ac0e95 | 2012-04-14 09:14:34 +0800 | [diff] [blame] | 711 | if (rdev->desc->ops->set_suspend_voltage || |
| 712 | rdev->desc->ops->set_suspend_mode) |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 713 | rdev_warn(rdev, "No configuration\n"); |
Mark Brown | 638f85c | 2009-10-22 16:31:33 +0100 | [diff] [blame] | 714 | return 0; |
| 715 | } |
| 716 | |
| 717 | if (rstate->enabled && rstate->disabled) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 718 | rdev_err(rdev, "invalid configuration\n"); |
Mark Brown | 638f85c | 2009-10-22 16:31:33 +0100 | [diff] [blame] | 719 | return -EINVAL; |
| 720 | } |
| 721 | |
Axel Lin | 8ac0e95 | 2012-04-14 09:14:34 +0800 | [diff] [blame] | 722 | if (rstate->enabled && rdev->desc->ops->set_suspend_enable) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 723 | ret = rdev->desc->ops->set_suspend_enable(rdev); |
Axel Lin | 8ac0e95 | 2012-04-14 09:14:34 +0800 | [diff] [blame] | 724 | else if (rstate->disabled && rdev->desc->ops->set_suspend_disable) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 725 | ret = rdev->desc->ops->set_suspend_disable(rdev); |
Axel Lin | 8ac0e95 | 2012-04-14 09:14:34 +0800 | [diff] [blame] | 726 | else /* OK if set_suspend_enable or set_suspend_disable is NULL */ |
| 727 | ret = 0; |
| 728 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 729 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 730 | rdev_err(rdev, "failed to enabled/disable\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 731 | return ret; |
| 732 | } |
| 733 | |
| 734 | if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) { |
| 735 | ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV); |
| 736 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 737 | rdev_err(rdev, "failed to set voltage\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 738 | return ret; |
| 739 | } |
| 740 | } |
| 741 | |
| 742 | if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) { |
| 743 | ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode); |
| 744 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 745 | rdev_err(rdev, "failed to set mode\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 746 | return ret; |
| 747 | } |
| 748 | } |
| 749 | return ret; |
| 750 | } |
| 751 | |
| 752 | /* locks held by caller */ |
| 753 | static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state) |
| 754 | { |
| 755 | if (!rdev->constraints) |
| 756 | return -EINVAL; |
| 757 | |
| 758 | switch (state) { |
| 759 | case PM_SUSPEND_STANDBY: |
| 760 | return suspend_set_state(rdev, |
| 761 | &rdev->constraints->state_standby); |
| 762 | case PM_SUSPEND_MEM: |
| 763 | return suspend_set_state(rdev, |
| 764 | &rdev->constraints->state_mem); |
| 765 | case PM_SUSPEND_MAX: |
| 766 | return suspend_set_state(rdev, |
| 767 | &rdev->constraints->state_disk); |
| 768 | default: |
| 769 | return -EINVAL; |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | static void print_constraints(struct regulator_dev *rdev) |
| 774 | { |
| 775 | struct regulation_constraints *constraints = rdev->constraints; |
Mark Brown | 973e9a2 | 2010-02-11 19:20:48 +0000 | [diff] [blame] | 776 | char buf[80] = ""; |
Mark Brown | 8f031b4 | 2009-10-22 16:31:31 +0100 | [diff] [blame] | 777 | int count = 0; |
| 778 | int ret; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 779 | |
Mark Brown | 8f031b4 | 2009-10-22 16:31:31 +0100 | [diff] [blame] | 780 | if (constraints->min_uV && constraints->max_uV) { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 781 | if (constraints->min_uV == constraints->max_uV) |
Mark Brown | 8f031b4 | 2009-10-22 16:31:31 +0100 | [diff] [blame] | 782 | count += sprintf(buf + count, "%d mV ", |
| 783 | constraints->min_uV / 1000); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 784 | else |
Mark Brown | 8f031b4 | 2009-10-22 16:31:31 +0100 | [diff] [blame] | 785 | count += sprintf(buf + count, "%d <--> %d mV ", |
| 786 | constraints->min_uV / 1000, |
| 787 | constraints->max_uV / 1000); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 788 | } |
Mark Brown | 8f031b4 | 2009-10-22 16:31:31 +0100 | [diff] [blame] | 789 | |
| 790 | if (!constraints->min_uV || |
| 791 | constraints->min_uV != constraints->max_uV) { |
| 792 | ret = _regulator_get_voltage(rdev); |
| 793 | if (ret > 0) |
| 794 | count += sprintf(buf + count, "at %d mV ", ret / 1000); |
| 795 | } |
| 796 | |
Mark Brown | bf5892a | 2011-05-08 22:13:37 +0100 | [diff] [blame] | 797 | if (constraints->uV_offset) |
| 798 | count += sprintf(buf, "%dmV offset ", |
| 799 | constraints->uV_offset / 1000); |
| 800 | |
Mark Brown | 8f031b4 | 2009-10-22 16:31:31 +0100 | [diff] [blame] | 801 | if (constraints->min_uA && constraints->max_uA) { |
| 802 | if (constraints->min_uA == constraints->max_uA) |
| 803 | count += sprintf(buf + count, "%d mA ", |
| 804 | constraints->min_uA / 1000); |
| 805 | else |
| 806 | count += sprintf(buf + count, "%d <--> %d mA ", |
| 807 | constraints->min_uA / 1000, |
| 808 | constraints->max_uA / 1000); |
| 809 | } |
| 810 | |
| 811 | if (!constraints->min_uA || |
| 812 | constraints->min_uA != constraints->max_uA) { |
| 813 | ret = _regulator_get_current_limit(rdev); |
| 814 | if (ret > 0) |
Cyril Chemparathy | e4a6376 | 2010-09-22 12:30:15 -0400 | [diff] [blame] | 815 | count += sprintf(buf + count, "at %d mA ", ret / 1000); |
Mark Brown | 8f031b4 | 2009-10-22 16:31:31 +0100 | [diff] [blame] | 816 | } |
| 817 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 818 | if (constraints->valid_modes_mask & REGULATOR_MODE_FAST) |
| 819 | count += sprintf(buf + count, "fast "); |
| 820 | if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL) |
| 821 | count += sprintf(buf + count, "normal "); |
| 822 | if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE) |
| 823 | count += sprintf(buf + count, "idle "); |
| 824 | if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY) |
| 825 | count += sprintf(buf + count, "standby"); |
| 826 | |
Uwe Kleine-König | 215b8b0 | 2012-08-07 21:01:37 +0200 | [diff] [blame] | 827 | if (!count) |
| 828 | sprintf(buf, "no parameters"); |
| 829 | |
Mark Brown | 13ce29f | 2010-12-17 16:04:12 +0000 | [diff] [blame] | 830 | rdev_info(rdev, "%s\n", buf); |
Mark Brown | 4a68292 | 2012-02-09 13:26:13 +0000 | [diff] [blame] | 831 | |
| 832 | if ((constraints->min_uV != constraints->max_uV) && |
| 833 | !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) |
| 834 | rdev_warn(rdev, |
| 835 | "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 836 | } |
| 837 | |
Mark Brown | e79055d | 2009-10-19 15:53:50 +0100 | [diff] [blame] | 838 | static int machine_constraints_voltage(struct regulator_dev *rdev, |
Mark Brown | 1083c39 | 2009-10-22 16:31:32 +0100 | [diff] [blame] | 839 | struct regulation_constraints *constraints) |
Mark Brown | e79055d | 2009-10-19 15:53:50 +0100 | [diff] [blame] | 840 | { |
| 841 | struct regulator_ops *ops = rdev->desc->ops; |
Mark Brown | af5866c | 2009-10-22 16:31:30 +0100 | [diff] [blame] | 842 | int ret; |
| 843 | |
| 844 | /* do we need to apply the constraint voltage */ |
| 845 | if (rdev->constraints->apply_uV && |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 846 | rdev->constraints->min_uV == rdev->constraints->max_uV) { |
| 847 | ret = _regulator_do_set_voltage(rdev, |
| 848 | rdev->constraints->min_uV, |
| 849 | rdev->constraints->max_uV); |
| 850 | if (ret < 0) { |
| 851 | rdev_err(rdev, "failed to apply %duV constraint\n", |
| 852 | rdev->constraints->min_uV); |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 853 | return ret; |
| 854 | } |
Mark Brown | af5866c | 2009-10-22 16:31:30 +0100 | [diff] [blame] | 855 | } |
Mark Brown | e79055d | 2009-10-19 15:53:50 +0100 | [diff] [blame] | 856 | |
| 857 | /* constrain machine-level voltage specs to fit |
| 858 | * the actual range supported by this regulator. |
| 859 | */ |
| 860 | if (ops->list_voltage && rdev->desc->n_voltages) { |
| 861 | int count = rdev->desc->n_voltages; |
| 862 | int i; |
| 863 | int min_uV = INT_MAX; |
| 864 | int max_uV = INT_MIN; |
| 865 | int cmin = constraints->min_uV; |
| 866 | int cmax = constraints->max_uV; |
| 867 | |
| 868 | /* it's safe to autoconfigure fixed-voltage supplies |
| 869 | and the constraints are used by list_voltage. */ |
| 870 | if (count == 1 && !cmin) { |
| 871 | cmin = 1; |
| 872 | cmax = INT_MAX; |
| 873 | constraints->min_uV = cmin; |
| 874 | constraints->max_uV = cmax; |
| 875 | } |
| 876 | |
| 877 | /* voltage constraints are optional */ |
| 878 | if ((cmin == 0) && (cmax == 0)) |
| 879 | return 0; |
| 880 | |
| 881 | /* else require explicit machine-level constraints */ |
| 882 | if (cmin <= 0 || cmax <= 0 || cmax < cmin) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 883 | rdev_err(rdev, "invalid voltage constraints\n"); |
Mark Brown | e79055d | 2009-10-19 15:53:50 +0100 | [diff] [blame] | 884 | return -EINVAL; |
| 885 | } |
| 886 | |
| 887 | /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */ |
| 888 | for (i = 0; i < count; i++) { |
| 889 | int value; |
| 890 | |
| 891 | value = ops->list_voltage(rdev, i); |
| 892 | if (value <= 0) |
| 893 | continue; |
| 894 | |
| 895 | /* maybe adjust [min_uV..max_uV] */ |
| 896 | if (value >= cmin && value < min_uV) |
| 897 | min_uV = value; |
| 898 | if (value <= cmax && value > max_uV) |
| 899 | max_uV = value; |
| 900 | } |
| 901 | |
| 902 | /* final: [min_uV..max_uV] valid iff constraints valid */ |
| 903 | if (max_uV < min_uV) { |
Mark Brown | fff15be | 2012-11-27 18:48:56 +0000 | [diff] [blame] | 904 | rdev_err(rdev, |
| 905 | "unsupportable voltage constraints %u-%uuV\n", |
| 906 | min_uV, max_uV); |
Mark Brown | e79055d | 2009-10-19 15:53:50 +0100 | [diff] [blame] | 907 | return -EINVAL; |
| 908 | } |
| 909 | |
| 910 | /* use regulator's subset of machine constraints */ |
| 911 | if (constraints->min_uV < min_uV) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 912 | rdev_dbg(rdev, "override min_uV, %d -> %d\n", |
| 913 | constraints->min_uV, min_uV); |
Mark Brown | e79055d | 2009-10-19 15:53:50 +0100 | [diff] [blame] | 914 | constraints->min_uV = min_uV; |
| 915 | } |
| 916 | if (constraints->max_uV > max_uV) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 917 | rdev_dbg(rdev, "override max_uV, %d -> %d\n", |
| 918 | constraints->max_uV, max_uV); |
Mark Brown | e79055d | 2009-10-19 15:53:50 +0100 | [diff] [blame] | 919 | constraints->max_uV = max_uV; |
| 920 | } |
| 921 | } |
| 922 | |
| 923 | return 0; |
| 924 | } |
| 925 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 926 | /** |
| 927 | * set_machine_constraints - sets regulator constraints |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 928 | * @rdev: regulator source |
Mark Brown | c8e7e46 | 2008-12-31 12:52:42 +0000 | [diff] [blame] | 929 | * @constraints: constraints to apply |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 930 | * |
| 931 | * Allows platform initialisation code to define and constrain |
| 932 | * regulator circuits e.g. valid voltage/current ranges, etc. NOTE: |
| 933 | * Constraints *must* be set by platform code in order for some |
| 934 | * regulator operations to proceed i.e. set_voltage, set_current_limit, |
| 935 | * set_mode. |
| 936 | */ |
| 937 | static int set_machine_constraints(struct regulator_dev *rdev, |
Mark Brown | f8c12fe | 2010-11-29 15:55:17 +0000 | [diff] [blame] | 938 | const struct regulation_constraints *constraints) |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 939 | { |
| 940 | int ret = 0; |
Mark Brown | e5fda26 | 2008-09-09 16:21:20 +0100 | [diff] [blame] | 941 | struct regulator_ops *ops = rdev->desc->ops; |
Mark Brown | e06f5b4 | 2008-09-09 16:21:19 +0100 | [diff] [blame] | 942 | |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 943 | if (constraints) |
| 944 | rdev->constraints = kmemdup(constraints, sizeof(*constraints), |
| 945 | GFP_KERNEL); |
| 946 | else |
| 947 | rdev->constraints = kzalloc(sizeof(*constraints), |
| 948 | GFP_KERNEL); |
Mark Brown | f8c12fe | 2010-11-29 15:55:17 +0000 | [diff] [blame] | 949 | if (!rdev->constraints) |
| 950 | return -ENOMEM; |
Mark Brown | af5866c | 2009-10-22 16:31:30 +0100 | [diff] [blame] | 951 | |
Mark Brown | f8c12fe | 2010-11-29 15:55:17 +0000 | [diff] [blame] | 952 | ret = machine_constraints_voltage(rdev, rdev->constraints); |
Mark Brown | e79055d | 2009-10-19 15:53:50 +0100 | [diff] [blame] | 953 | if (ret != 0) |
| 954 | goto out; |
David Brownell | 4367cfd | 2009-02-26 11:48:36 -0800 | [diff] [blame] | 955 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 956 | /* do we need to setup our suspend state */ |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 957 | if (rdev->constraints->initial_state) { |
Mark Brown | f8c12fe | 2010-11-29 15:55:17 +0000 | [diff] [blame] | 958 | ret = suspend_prepare(rdev, rdev->constraints->initial_state); |
Mark Brown | e06f5b4 | 2008-09-09 16:21:19 +0100 | [diff] [blame] | 959 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 960 | rdev_err(rdev, "failed to set suspend state\n"); |
Mark Brown | e06f5b4 | 2008-09-09 16:21:19 +0100 | [diff] [blame] | 961 | goto out; |
| 962 | } |
| 963 | } |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 964 | |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 965 | if (rdev->constraints->initial_mode) { |
Mark Brown | a308466 | 2009-02-26 19:24:19 +0000 | [diff] [blame] | 966 | if (!ops->set_mode) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 967 | rdev_err(rdev, "no set_mode operation\n"); |
Mark Brown | a308466 | 2009-02-26 19:24:19 +0000 | [diff] [blame] | 968 | ret = -EINVAL; |
| 969 | goto out; |
| 970 | } |
| 971 | |
Mark Brown | f8c12fe | 2010-11-29 15:55:17 +0000 | [diff] [blame] | 972 | ret = ops->set_mode(rdev, rdev->constraints->initial_mode); |
Mark Brown | a308466 | 2009-02-26 19:24:19 +0000 | [diff] [blame] | 973 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 974 | rdev_err(rdev, "failed to set initial mode: %d\n", ret); |
Mark Brown | a308466 | 2009-02-26 19:24:19 +0000 | [diff] [blame] | 975 | goto out; |
| 976 | } |
| 977 | } |
| 978 | |
Mark Brown | cacf90f | 2009-03-02 16:32:46 +0000 | [diff] [blame] | 979 | /* If the constraints say the regulator should be on at this point |
| 980 | * and we have control then make sure it is enabled. |
| 981 | */ |
Mark Brown | f8c12fe | 2010-11-29 15:55:17 +0000 | [diff] [blame] | 982 | if ((rdev->constraints->always_on || rdev->constraints->boot_on) && |
| 983 | ops->enable) { |
Mark Brown | e5fda26 | 2008-09-09 16:21:20 +0100 | [diff] [blame] | 984 | ret = ops->enable(rdev); |
| 985 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 986 | rdev_err(rdev, "failed to enable\n"); |
Mark Brown | e5fda26 | 2008-09-09 16:21:20 +0100 | [diff] [blame] | 987 | goto out; |
| 988 | } |
| 989 | } |
| 990 | |
Yadwinder Singh Brar | 6f0b2c6 | 2012-06-11 17:41:08 +0530 | [diff] [blame] | 991 | if (rdev->constraints->ramp_delay && ops->set_ramp_delay) { |
| 992 | ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay); |
| 993 | if (ret < 0) { |
| 994 | rdev_err(rdev, "failed to set ramp_delay\n"); |
| 995 | goto out; |
| 996 | } |
| 997 | } |
| 998 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 999 | print_constraints(rdev); |
Axel Lin | 1a6958e7 | 2011-07-15 10:50:43 +0800 | [diff] [blame] | 1000 | return 0; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1001 | out: |
Axel Lin | 1a6958e7 | 2011-07-15 10:50:43 +0800 | [diff] [blame] | 1002 | kfree(rdev->constraints); |
| 1003 | rdev->constraints = NULL; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1004 | return ret; |
| 1005 | } |
| 1006 | |
| 1007 | /** |
| 1008 | * set_supply - set regulator supply regulator |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 1009 | * @rdev: regulator name |
| 1010 | * @supply_rdev: supply regulator name |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1011 | * |
| 1012 | * Called by platform initialisation code to set the supply regulator for this |
| 1013 | * regulator. This ensures that a regulators supply will also be enabled by the |
| 1014 | * core if it's child is enabled. |
| 1015 | */ |
| 1016 | static int set_supply(struct regulator_dev *rdev, |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1017 | struct regulator_dev *supply_rdev) |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1018 | { |
| 1019 | int err; |
| 1020 | |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1021 | rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev)); |
| 1022 | |
| 1023 | rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY"); |
Axel Lin | 32c78de | 2011-12-29 17:03:20 +0800 | [diff] [blame] | 1024 | if (rdev->supply == NULL) { |
| 1025 | err = -ENOMEM; |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1026 | return err; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1027 | } |
Laxman Dewangan | 57ad526a | 2012-07-23 20:35:46 +0530 | [diff] [blame] | 1028 | supply_rdev->open_count++; |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1029 | |
| 1030 | return 0; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1031 | } |
| 1032 | |
| 1033 | /** |
Randy Dunlap | 06c63f9 | 2010-11-18 15:02:26 -0800 | [diff] [blame] | 1034 | * set_consumer_device_supply - Bind a regulator to a symbolic supply |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 1035 | * @rdev: regulator source |
Mark Brown | 40f9244 | 2009-06-17 17:56:39 +0100 | [diff] [blame] | 1036 | * @consumer_dev_name: dev_name() string for device supply applies to |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 1037 | * @supply: symbolic name for supply |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1038 | * |
| 1039 | * Allows platform initialisation code to map physical regulator |
| 1040 | * sources to symbolic names for supplies for use by devices. Devices |
| 1041 | * should use these symbolic names to request regulators, avoiding the |
| 1042 | * need to provide board-specific regulator names as platform data. |
| 1043 | */ |
| 1044 | static int set_consumer_device_supply(struct regulator_dev *rdev, |
Mark Brown | 737f360 | 2012-02-02 00:10:51 +0000 | [diff] [blame] | 1045 | const char *consumer_dev_name, |
| 1046 | const char *supply) |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1047 | { |
| 1048 | struct regulator_map *node; |
Mark Brown | 9ed2099 | 2009-07-21 16:00:26 +0100 | [diff] [blame] | 1049 | int has_dev; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1050 | |
| 1051 | if (supply == NULL) |
| 1052 | return -EINVAL; |
| 1053 | |
Mark Brown | 9ed2099 | 2009-07-21 16:00:26 +0100 | [diff] [blame] | 1054 | if (consumer_dev_name != NULL) |
| 1055 | has_dev = 1; |
| 1056 | else |
| 1057 | has_dev = 0; |
| 1058 | |
David Brownell | 6001e13 | 2008-12-31 12:54:19 +0000 | [diff] [blame] | 1059 | list_for_each_entry(node, ®ulator_map_list, list) { |
Jani Nikula | 23b5cc2 | 2010-04-29 10:55:09 +0300 | [diff] [blame] | 1060 | if (node->dev_name && consumer_dev_name) { |
| 1061 | if (strcmp(node->dev_name, consumer_dev_name) != 0) |
| 1062 | continue; |
| 1063 | } else if (node->dev_name || consumer_dev_name) { |
David Brownell | 6001e13 | 2008-12-31 12:54:19 +0000 | [diff] [blame] | 1064 | continue; |
Jani Nikula | 23b5cc2 | 2010-04-29 10:55:09 +0300 | [diff] [blame] | 1065 | } |
| 1066 | |
David Brownell | 6001e13 | 2008-12-31 12:54:19 +0000 | [diff] [blame] | 1067 | if (strcmp(node->supply, supply) != 0) |
| 1068 | continue; |
| 1069 | |
Mark Brown | 737f360 | 2012-02-02 00:10:51 +0000 | [diff] [blame] | 1070 | pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n", |
| 1071 | consumer_dev_name, |
| 1072 | dev_name(&node->regulator->dev), |
| 1073 | node->regulator->desc->name, |
| 1074 | supply, |
| 1075 | dev_name(&rdev->dev), rdev_get_name(rdev)); |
David Brownell | 6001e13 | 2008-12-31 12:54:19 +0000 | [diff] [blame] | 1076 | return -EBUSY; |
| 1077 | } |
| 1078 | |
Mark Brown | 9ed2099 | 2009-07-21 16:00:26 +0100 | [diff] [blame] | 1079 | node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL); |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1080 | if (node == NULL) |
| 1081 | return -ENOMEM; |
| 1082 | |
| 1083 | node->regulator = rdev; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1084 | node->supply = supply; |
| 1085 | |
Mark Brown | 9ed2099 | 2009-07-21 16:00:26 +0100 | [diff] [blame] | 1086 | if (has_dev) { |
| 1087 | node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL); |
| 1088 | if (node->dev_name == NULL) { |
| 1089 | kfree(node); |
| 1090 | return -ENOMEM; |
| 1091 | } |
Mark Brown | 40f9244 | 2009-06-17 17:56:39 +0100 | [diff] [blame] | 1092 | } |
| 1093 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1094 | list_add(&node->list, ®ulator_map_list); |
| 1095 | return 0; |
| 1096 | } |
| 1097 | |
Mike Rapoport | 0f1d747 | 2009-01-22 16:00:29 +0200 | [diff] [blame] | 1098 | static void unset_regulator_supplies(struct regulator_dev *rdev) |
| 1099 | { |
| 1100 | struct regulator_map *node, *n; |
| 1101 | |
| 1102 | list_for_each_entry_safe(node, n, ®ulator_map_list, list) { |
| 1103 | if (rdev == node->regulator) { |
| 1104 | list_del(&node->list); |
Mark Brown | 40f9244 | 2009-06-17 17:56:39 +0100 | [diff] [blame] | 1105 | kfree(node->dev_name); |
Mike Rapoport | 0f1d747 | 2009-01-22 16:00:29 +0200 | [diff] [blame] | 1106 | kfree(node); |
Mike Rapoport | 0f1d747 | 2009-01-22 16:00:29 +0200 | [diff] [blame] | 1107 | } |
| 1108 | } |
| 1109 | } |
| 1110 | |
Mark Brown | f5726ae | 2011-06-09 16:22:20 +0100 | [diff] [blame] | 1111 | #define REG_STR_SIZE 64 |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1112 | |
| 1113 | static struct regulator *create_regulator(struct regulator_dev *rdev, |
| 1114 | struct device *dev, |
| 1115 | const char *supply_name) |
| 1116 | { |
| 1117 | struct regulator *regulator; |
| 1118 | char buf[REG_STR_SIZE]; |
| 1119 | int err, size; |
| 1120 | |
| 1121 | regulator = kzalloc(sizeof(*regulator), GFP_KERNEL); |
| 1122 | if (regulator == NULL) |
| 1123 | return NULL; |
| 1124 | |
| 1125 | mutex_lock(&rdev->mutex); |
| 1126 | regulator->rdev = rdev; |
| 1127 | list_add(®ulator->list, &rdev->consumer_list); |
| 1128 | |
| 1129 | if (dev) { |
Shawn Guo | e2c98ea | 2012-07-05 14:19:42 +0800 | [diff] [blame] | 1130 | regulator->dev = dev; |
| 1131 | |
Mark Brown | 222cc7b | 2012-06-22 11:39:16 +0100 | [diff] [blame] | 1132 | /* Add a link to the device sysfs entry */ |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1133 | size = scnprintf(buf, REG_STR_SIZE, "%s-%s", |
| 1134 | dev->kobj.name, supply_name); |
| 1135 | if (size >= REG_STR_SIZE) |
Mark Brown | 222cc7b | 2012-06-22 11:39:16 +0100 | [diff] [blame] | 1136 | goto overflow_err; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1137 | |
| 1138 | regulator->supply_name = kstrdup(buf, GFP_KERNEL); |
| 1139 | if (regulator->supply_name == NULL) |
Mark Brown | 222cc7b | 2012-06-22 11:39:16 +0100 | [diff] [blame] | 1140 | goto overflow_err; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1141 | |
| 1142 | err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj, |
| 1143 | buf); |
| 1144 | if (err) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 1145 | rdev_warn(rdev, "could not add device link %s err %d\n", |
| 1146 | dev->kobj.name, err); |
Mark Brown | 222cc7b | 2012-06-22 11:39:16 +0100 | [diff] [blame] | 1147 | /* non-fatal */ |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1148 | } |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1149 | } else { |
| 1150 | regulator->supply_name = kstrdup(supply_name, GFP_KERNEL); |
| 1151 | if (regulator->supply_name == NULL) |
Mark Brown | 222cc7b | 2012-06-22 11:39:16 +0100 | [diff] [blame] | 1152 | goto overflow_err; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1153 | } |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1154 | |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1155 | regulator->debugfs = debugfs_create_dir(regulator->supply_name, |
| 1156 | rdev->debugfs); |
Stephen Boyd | 2475143 | 2012-02-20 22:50:42 -0800 | [diff] [blame] | 1157 | if (!regulator->debugfs) { |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1158 | rdev_warn(rdev, "Failed to create debugfs directory\n"); |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1159 | } else { |
| 1160 | debugfs_create_u32("uA_load", 0444, regulator->debugfs, |
| 1161 | ®ulator->uA_load); |
| 1162 | debugfs_create_u32("min_uV", 0444, regulator->debugfs, |
| 1163 | ®ulator->min_uV); |
| 1164 | debugfs_create_u32("max_uV", 0444, regulator->debugfs, |
| 1165 | ®ulator->max_uV); |
| 1166 | } |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1167 | |
Mark Brown | 6492bc1 | 2012-04-19 13:19:07 +0100 | [diff] [blame] | 1168 | /* |
| 1169 | * Check now if the regulator is an always on regulator - if |
| 1170 | * it is then we don't need to do nearly so much work for |
| 1171 | * enable/disable calls. |
| 1172 | */ |
| 1173 | if (!_regulator_can_change_status(rdev) && |
| 1174 | _regulator_is_enabled(rdev)) |
| 1175 | regulator->always_on = true; |
| 1176 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1177 | mutex_unlock(&rdev->mutex); |
| 1178 | return regulator; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1179 | overflow_err: |
| 1180 | list_del(®ulator->list); |
| 1181 | kfree(regulator); |
| 1182 | mutex_unlock(&rdev->mutex); |
| 1183 | return NULL; |
| 1184 | } |
| 1185 | |
Mark Brown | 31aae2b | 2009-12-21 12:21:52 +0000 | [diff] [blame] | 1186 | static int _regulator_get_enable_time(struct regulator_dev *rdev) |
| 1187 | { |
| 1188 | if (!rdev->desc->ops->enable_time) |
Mark Brown | 79511ed | 2012-06-27 14:23:10 +0100 | [diff] [blame] | 1189 | return rdev->desc->enable_time; |
Mark Brown | 31aae2b | 2009-12-21 12:21:52 +0000 | [diff] [blame] | 1190 | return rdev->desc->ops->enable_time(rdev); |
| 1191 | } |
| 1192 | |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 1193 | static struct regulator_dev *regulator_dev_lookup(struct device *dev, |
Mark Brown | 6d191a5 | 2012-03-29 14:19:02 +0100 | [diff] [blame] | 1194 | const char *supply, |
| 1195 | int *ret) |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 1196 | { |
| 1197 | struct regulator_dev *r; |
| 1198 | struct device_node *node; |
Mark Brown | 576ca436 | 2012-03-30 12:24:37 +0100 | [diff] [blame] | 1199 | struct regulator_map *map; |
| 1200 | const char *devname = NULL; |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 1201 | |
| 1202 | /* first do a dt based lookup */ |
| 1203 | if (dev && dev->of_node) { |
| 1204 | node = of_get_regulator(dev, supply); |
Mark Brown | 6d191a5 | 2012-03-29 14:19:02 +0100 | [diff] [blame] | 1205 | if (node) { |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 1206 | list_for_each_entry(r, ®ulator_list, list) |
| 1207 | if (r->dev.parent && |
| 1208 | node == r->dev.of_node) |
| 1209 | return r; |
Mark Brown | 6d191a5 | 2012-03-29 14:19:02 +0100 | [diff] [blame] | 1210 | } else { |
| 1211 | /* |
| 1212 | * If we couldn't even get the node then it's |
| 1213 | * not just that the device didn't register |
| 1214 | * yet, there's no node and we'll never |
| 1215 | * succeed. |
| 1216 | */ |
| 1217 | *ret = -ENODEV; |
| 1218 | } |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 1219 | } |
| 1220 | |
| 1221 | /* if not found, try doing it non-dt way */ |
Mark Brown | 576ca436 | 2012-03-30 12:24:37 +0100 | [diff] [blame] | 1222 | if (dev) |
| 1223 | devname = dev_name(dev); |
| 1224 | |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 1225 | list_for_each_entry(r, ®ulator_list, list) |
| 1226 | if (strcmp(rdev_get_name(r), supply) == 0) |
| 1227 | return r; |
| 1228 | |
Mark Brown | 576ca436 | 2012-03-30 12:24:37 +0100 | [diff] [blame] | 1229 | list_for_each_entry(map, ®ulator_map_list, list) { |
| 1230 | /* If the mapping has a device set up it must match */ |
| 1231 | if (map->dev_name && |
| 1232 | (!devname || strcmp(map->dev_name, devname))) |
| 1233 | continue; |
| 1234 | |
| 1235 | if (strcmp(map->supply, supply) == 0) |
| 1236 | return map->regulator; |
| 1237 | } |
| 1238 | |
| 1239 | |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 1240 | return NULL; |
| 1241 | } |
| 1242 | |
Mark Brown | 5ffbd13 | 2009-07-21 16:00:23 +0100 | [diff] [blame] | 1243 | /* Internal regulator request function */ |
| 1244 | static struct regulator *_regulator_get(struct device *dev, const char *id, |
| 1245 | int exclusive) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1246 | { |
| 1247 | struct regulator_dev *rdev; |
Mark Brown | 04bf301 | 2012-03-11 13:07:56 +0000 | [diff] [blame] | 1248 | struct regulator *regulator = ERR_PTR(-EPROBE_DEFER); |
Mark Brown | 40f9244 | 2009-06-17 17:56:39 +0100 | [diff] [blame] | 1249 | const char *devname = NULL; |
Nishanth Menon | 1e4b545 | 2013-04-16 16:45:16 -0500 | [diff] [blame] | 1250 | int ret = 0; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1251 | |
| 1252 | if (id == NULL) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 1253 | pr_err("get() with no identifier\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1254 | return regulator; |
| 1255 | } |
| 1256 | |
Mark Brown | 40f9244 | 2009-06-17 17:56:39 +0100 | [diff] [blame] | 1257 | if (dev) |
| 1258 | devname = dev_name(dev); |
| 1259 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1260 | mutex_lock(®ulator_list_mutex); |
| 1261 | |
Mark Brown | 6d191a5 | 2012-03-29 14:19:02 +0100 | [diff] [blame] | 1262 | rdev = regulator_dev_lookup(dev, id, &ret); |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 1263 | if (rdev) |
| 1264 | goto found; |
| 1265 | |
Nishanth Menon | 1e4b545 | 2013-04-16 16:45:16 -0500 | [diff] [blame] | 1266 | /* |
| 1267 | * If we have return value from dev_lookup fail, we do not expect to |
| 1268 | * succeed, so, quit with appropriate error value |
| 1269 | */ |
| 1270 | if (ret) { |
| 1271 | regulator = ERR_PTR(ret); |
| 1272 | goto out; |
| 1273 | } |
| 1274 | |
Mark Brown | 688fe99 | 2010-10-05 19:18:32 -0700 | [diff] [blame] | 1275 | if (board_wants_dummy_regulator) { |
| 1276 | rdev = dummy_regulator_rdev; |
| 1277 | goto found; |
| 1278 | } |
| 1279 | |
Mark Brown | 34abbd6 | 2010-02-12 10:18:08 +0000 | [diff] [blame] | 1280 | #ifdef CONFIG_REGULATOR_DUMMY |
| 1281 | if (!devname) |
| 1282 | devname = "deviceless"; |
| 1283 | |
| 1284 | /* If the board didn't flag that it was fully constrained then |
| 1285 | * substitute in a dummy regulator so consumers can continue. |
| 1286 | */ |
| 1287 | if (!has_full_constraints) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 1288 | pr_warn("%s supply %s not found, using dummy regulator\n", |
| 1289 | devname, id); |
Mark Brown | 34abbd6 | 2010-02-12 10:18:08 +0000 | [diff] [blame] | 1290 | rdev = dummy_regulator_rdev; |
| 1291 | goto found; |
| 1292 | } |
| 1293 | #endif |
| 1294 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1295 | mutex_unlock(®ulator_list_mutex); |
| 1296 | return regulator; |
| 1297 | |
| 1298 | found: |
Mark Brown | 5ffbd13 | 2009-07-21 16:00:23 +0100 | [diff] [blame] | 1299 | if (rdev->exclusive) { |
| 1300 | regulator = ERR_PTR(-EPERM); |
| 1301 | goto out; |
| 1302 | } |
| 1303 | |
| 1304 | if (exclusive && rdev->open_count) { |
| 1305 | regulator = ERR_PTR(-EBUSY); |
| 1306 | goto out; |
| 1307 | } |
| 1308 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1309 | if (!try_module_get(rdev->owner)) |
| 1310 | goto out; |
| 1311 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1312 | regulator = create_regulator(rdev, dev, id); |
| 1313 | if (regulator == NULL) { |
| 1314 | regulator = ERR_PTR(-ENOMEM); |
| 1315 | module_put(rdev->owner); |
Axel Lin | bcda432 | 2011-12-29 17:02:08 +0800 | [diff] [blame] | 1316 | goto out; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1317 | } |
| 1318 | |
Mark Brown | 5ffbd13 | 2009-07-21 16:00:23 +0100 | [diff] [blame] | 1319 | rdev->open_count++; |
| 1320 | if (exclusive) { |
| 1321 | rdev->exclusive = 1; |
| 1322 | |
| 1323 | ret = _regulator_is_enabled(rdev); |
| 1324 | if (ret > 0) |
| 1325 | rdev->use_count = 1; |
| 1326 | else |
| 1327 | rdev->use_count = 0; |
| 1328 | } |
| 1329 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 1330 | out: |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1331 | mutex_unlock(®ulator_list_mutex); |
Mark Brown | 5ffbd13 | 2009-07-21 16:00:23 +0100 | [diff] [blame] | 1332 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1333 | return regulator; |
| 1334 | } |
Mark Brown | 5ffbd13 | 2009-07-21 16:00:23 +0100 | [diff] [blame] | 1335 | |
| 1336 | /** |
| 1337 | * regulator_get - lookup and obtain a reference to a regulator. |
| 1338 | * @dev: device for regulator "consumer" |
| 1339 | * @id: Supply name or regulator ID. |
| 1340 | * |
| 1341 | * Returns a struct regulator corresponding to the regulator producer, |
| 1342 | * or IS_ERR() condition containing errno. |
| 1343 | * |
| 1344 | * Use of supply names configured via regulator_set_device_supply() is |
| 1345 | * strongly encouraged. It is recommended that the supply name used |
| 1346 | * should match the name used for the supply and/or the relevant |
| 1347 | * device pins in the datasheet. |
| 1348 | */ |
| 1349 | struct regulator *regulator_get(struct device *dev, const char *id) |
| 1350 | { |
| 1351 | return _regulator_get(dev, id, 0); |
| 1352 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1353 | EXPORT_SYMBOL_GPL(regulator_get); |
| 1354 | |
Stephen Boyd | 070b907 | 2012-01-16 19:39:58 -0800 | [diff] [blame] | 1355 | static void devm_regulator_release(struct device *dev, void *res) |
| 1356 | { |
| 1357 | regulator_put(*(struct regulator **)res); |
| 1358 | } |
| 1359 | |
| 1360 | /** |
| 1361 | * devm_regulator_get - Resource managed regulator_get() |
| 1362 | * @dev: device for regulator "consumer" |
| 1363 | * @id: Supply name or regulator ID. |
| 1364 | * |
| 1365 | * Managed regulator_get(). Regulators returned from this function are |
| 1366 | * automatically regulator_put() on driver detach. See regulator_get() for more |
| 1367 | * information. |
| 1368 | */ |
| 1369 | struct regulator *devm_regulator_get(struct device *dev, const char *id) |
| 1370 | { |
| 1371 | struct regulator **ptr, *regulator; |
| 1372 | |
| 1373 | ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL); |
| 1374 | if (!ptr) |
| 1375 | return ERR_PTR(-ENOMEM); |
| 1376 | |
| 1377 | regulator = regulator_get(dev, id); |
| 1378 | if (!IS_ERR(regulator)) { |
| 1379 | *ptr = regulator; |
| 1380 | devres_add(dev, ptr); |
| 1381 | } else { |
| 1382 | devres_free(ptr); |
| 1383 | } |
| 1384 | |
| 1385 | return regulator; |
| 1386 | } |
| 1387 | EXPORT_SYMBOL_GPL(devm_regulator_get); |
| 1388 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1389 | /** |
Mark Brown | 5ffbd13 | 2009-07-21 16:00:23 +0100 | [diff] [blame] | 1390 | * regulator_get_exclusive - obtain exclusive access to a regulator. |
| 1391 | * @dev: device for regulator "consumer" |
| 1392 | * @id: Supply name or regulator ID. |
| 1393 | * |
| 1394 | * Returns a struct regulator corresponding to the regulator producer, |
| 1395 | * or IS_ERR() condition containing errno. Other consumers will be |
| 1396 | * unable to obtain this reference is held and the use count for the |
| 1397 | * regulator will be initialised to reflect the current state of the |
| 1398 | * regulator. |
| 1399 | * |
| 1400 | * This is intended for use by consumers which cannot tolerate shared |
| 1401 | * use of the regulator such as those which need to force the |
| 1402 | * regulator off for correct operation of the hardware they are |
| 1403 | * controlling. |
| 1404 | * |
| 1405 | * Use of supply names configured via regulator_set_device_supply() is |
| 1406 | * strongly encouraged. It is recommended that the supply name used |
| 1407 | * should match the name used for the supply and/or the relevant |
| 1408 | * device pins in the datasheet. |
| 1409 | */ |
| 1410 | struct regulator *regulator_get_exclusive(struct device *dev, const char *id) |
| 1411 | { |
| 1412 | return _regulator_get(dev, id, 1); |
| 1413 | } |
| 1414 | EXPORT_SYMBOL_GPL(regulator_get_exclusive); |
| 1415 | |
Charles Keepax | 23ff2f0 | 2012-11-14 09:39:31 +0000 | [diff] [blame] | 1416 | /* Locks held by regulator_put() */ |
| 1417 | static void _regulator_put(struct regulator *regulator) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1418 | { |
| 1419 | struct regulator_dev *rdev; |
| 1420 | |
| 1421 | if (regulator == NULL || IS_ERR(regulator)) |
| 1422 | return; |
| 1423 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1424 | rdev = regulator->rdev; |
| 1425 | |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1426 | debugfs_remove_recursive(regulator->debugfs); |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1427 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1428 | /* remove any sysfs entries */ |
Shawn Guo | e2c98ea | 2012-07-05 14:19:42 +0800 | [diff] [blame] | 1429 | if (regulator->dev) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1430 | sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name); |
Mark Brown | 5de7051 | 2011-06-19 13:33:16 +0100 | [diff] [blame] | 1431 | kfree(regulator->supply_name); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1432 | list_del(®ulator->list); |
| 1433 | kfree(regulator); |
| 1434 | |
Mark Brown | 5ffbd13 | 2009-07-21 16:00:23 +0100 | [diff] [blame] | 1435 | rdev->open_count--; |
| 1436 | rdev->exclusive = 0; |
| 1437 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1438 | module_put(rdev->owner); |
Charles Keepax | 23ff2f0 | 2012-11-14 09:39:31 +0000 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | /** |
| 1442 | * regulator_put - "free" the regulator source |
| 1443 | * @regulator: regulator source |
| 1444 | * |
| 1445 | * Note: drivers must ensure that all regulator_enable calls made on this |
| 1446 | * regulator source are balanced by regulator_disable calls prior to calling |
| 1447 | * this function. |
| 1448 | */ |
| 1449 | void regulator_put(struct regulator *regulator) |
| 1450 | { |
| 1451 | mutex_lock(®ulator_list_mutex); |
| 1452 | _regulator_put(regulator); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1453 | mutex_unlock(®ulator_list_mutex); |
| 1454 | } |
| 1455 | EXPORT_SYMBOL_GPL(regulator_put); |
| 1456 | |
Mark Brown | d5ad34f | 2012-01-20 20:09:18 +0000 | [diff] [blame] | 1457 | static int devm_regulator_match(struct device *dev, void *res, void *data) |
| 1458 | { |
| 1459 | struct regulator **r = res; |
| 1460 | if (!r || !*r) { |
| 1461 | WARN_ON(!r || !*r); |
| 1462 | return 0; |
| 1463 | } |
| 1464 | return *r == data; |
| 1465 | } |
| 1466 | |
| 1467 | /** |
| 1468 | * devm_regulator_put - Resource managed regulator_put() |
| 1469 | * @regulator: regulator to free |
| 1470 | * |
| 1471 | * Deallocate a regulator allocated with devm_regulator_get(). Normally |
| 1472 | * this function will not need to be called and the resource management |
| 1473 | * code will ensure that the resource is freed. |
| 1474 | */ |
| 1475 | void devm_regulator_put(struct regulator *regulator) |
| 1476 | { |
| 1477 | int rc; |
| 1478 | |
Mark Brown | 361ff50 | 2012-05-07 14:14:30 +0100 | [diff] [blame] | 1479 | rc = devres_release(regulator->dev, devm_regulator_release, |
Mark Brown | d5ad34f | 2012-01-20 20:09:18 +0000 | [diff] [blame] | 1480 | devm_regulator_match, regulator); |
Mark Brown | 230a5a1c | 2012-06-15 18:25:08 +0100 | [diff] [blame] | 1481 | if (rc != 0) |
Mark Brown | 968c2c1 | 2012-05-07 11:34:52 +0100 | [diff] [blame] | 1482 | WARN_ON(rc); |
Mark Brown | d5ad34f | 2012-01-20 20:09:18 +0000 | [diff] [blame] | 1483 | } |
| 1484 | EXPORT_SYMBOL_GPL(devm_regulator_put); |
| 1485 | |
Kim, Milo | f19b00d | 2013-02-18 06:50:39 +0000 | [diff] [blame] | 1486 | /* Manage enable GPIO list. Same GPIO pin can be shared among regulators */ |
| 1487 | static int regulator_ena_gpio_request(struct regulator_dev *rdev, |
| 1488 | const struct regulator_config *config) |
| 1489 | { |
| 1490 | struct regulator_enable_gpio *pin; |
| 1491 | int ret; |
| 1492 | |
| 1493 | list_for_each_entry(pin, ®ulator_ena_gpio_list, list) { |
| 1494 | if (pin->gpio == config->ena_gpio) { |
| 1495 | rdev_dbg(rdev, "GPIO %d is already used\n", |
| 1496 | config->ena_gpio); |
| 1497 | goto update_ena_gpio_to_rdev; |
| 1498 | } |
| 1499 | } |
| 1500 | |
| 1501 | ret = gpio_request_one(config->ena_gpio, |
| 1502 | GPIOF_DIR_OUT | config->ena_gpio_flags, |
| 1503 | rdev_get_name(rdev)); |
| 1504 | if (ret) |
| 1505 | return ret; |
| 1506 | |
| 1507 | pin = kzalloc(sizeof(struct regulator_enable_gpio), GFP_KERNEL); |
| 1508 | if (pin == NULL) { |
| 1509 | gpio_free(config->ena_gpio); |
| 1510 | return -ENOMEM; |
| 1511 | } |
| 1512 | |
| 1513 | pin->gpio = config->ena_gpio; |
| 1514 | pin->ena_gpio_invert = config->ena_gpio_invert; |
| 1515 | list_add(&pin->list, ®ulator_ena_gpio_list); |
| 1516 | |
| 1517 | update_ena_gpio_to_rdev: |
| 1518 | pin->request_count++; |
| 1519 | rdev->ena_pin = pin; |
| 1520 | return 0; |
| 1521 | } |
| 1522 | |
| 1523 | static void regulator_ena_gpio_free(struct regulator_dev *rdev) |
| 1524 | { |
| 1525 | struct regulator_enable_gpio *pin, *n; |
| 1526 | |
| 1527 | if (!rdev->ena_pin) |
| 1528 | return; |
| 1529 | |
| 1530 | /* Free the GPIO only in case of no use */ |
| 1531 | list_for_each_entry_safe(pin, n, ®ulator_ena_gpio_list, list) { |
| 1532 | if (pin->gpio == rdev->ena_pin->gpio) { |
| 1533 | if (pin->request_count <= 1) { |
| 1534 | pin->request_count = 0; |
| 1535 | gpio_free(pin->gpio); |
| 1536 | list_del(&pin->list); |
| 1537 | kfree(pin); |
| 1538 | } else { |
| 1539 | pin->request_count--; |
| 1540 | } |
| 1541 | } |
| 1542 | } |
| 1543 | } |
| 1544 | |
Kim, Milo | 967cfb1 | 2013-02-18 06:50:48 +0000 | [diff] [blame] | 1545 | /** |
Robert P. J. Day | 31d6eeb | 2013-05-02 10:19:11 -0400 | [diff] [blame] | 1546 | * regulator_ena_gpio_ctrl - balance enable_count of each GPIO and actual GPIO pin control |
| 1547 | * @rdev: regulator_dev structure |
| 1548 | * @enable: enable GPIO at initial use? |
| 1549 | * |
Kim, Milo | 967cfb1 | 2013-02-18 06:50:48 +0000 | [diff] [blame] | 1550 | * GPIO is enabled in case of initial use. (enable_count is 0) |
| 1551 | * GPIO is disabled when it is not shared any more. (enable_count <= 1) |
| 1552 | */ |
| 1553 | static int regulator_ena_gpio_ctrl(struct regulator_dev *rdev, bool enable) |
| 1554 | { |
| 1555 | struct regulator_enable_gpio *pin = rdev->ena_pin; |
| 1556 | |
| 1557 | if (!pin) |
| 1558 | return -EINVAL; |
| 1559 | |
| 1560 | if (enable) { |
| 1561 | /* Enable GPIO at initial use */ |
| 1562 | if (pin->enable_count == 0) |
| 1563 | gpio_set_value_cansleep(pin->gpio, |
| 1564 | !pin->ena_gpio_invert); |
| 1565 | |
| 1566 | pin->enable_count++; |
| 1567 | } else { |
| 1568 | if (pin->enable_count > 1) { |
| 1569 | pin->enable_count--; |
| 1570 | return 0; |
| 1571 | } |
| 1572 | |
| 1573 | /* Disable GPIO if not used */ |
| 1574 | if (pin->enable_count <= 1) { |
| 1575 | gpio_set_value_cansleep(pin->gpio, |
| 1576 | pin->ena_gpio_invert); |
| 1577 | pin->enable_count = 0; |
| 1578 | } |
| 1579 | } |
| 1580 | |
| 1581 | return 0; |
| 1582 | } |
| 1583 | |
Mark Brown | 5c5659d | 2012-06-27 13:21:26 +0100 | [diff] [blame] | 1584 | static int _regulator_do_enable(struct regulator_dev *rdev) |
| 1585 | { |
| 1586 | int ret, delay; |
| 1587 | |
| 1588 | /* Query before enabling in case configuration dependent. */ |
| 1589 | ret = _regulator_get_enable_time(rdev); |
| 1590 | if (ret >= 0) { |
| 1591 | delay = ret; |
| 1592 | } else { |
| 1593 | rdev_warn(rdev, "enable_time() failed: %d\n", ret); |
| 1594 | delay = 0; |
| 1595 | } |
| 1596 | |
| 1597 | trace_regulator_enable(rdev_get_name(rdev)); |
| 1598 | |
Kim, Milo | 967cfb1 | 2013-02-18 06:50:48 +0000 | [diff] [blame] | 1599 | if (rdev->ena_pin) { |
| 1600 | ret = regulator_ena_gpio_ctrl(rdev, true); |
| 1601 | if (ret < 0) |
| 1602 | return ret; |
Mark Brown | 65f7350 | 2012-06-27 14:14:38 +0100 | [diff] [blame] | 1603 | rdev->ena_gpio_state = 1; |
| 1604 | } else if (rdev->desc->ops->enable) { |
Mark Brown | 5c5659d | 2012-06-27 13:21:26 +0100 | [diff] [blame] | 1605 | ret = rdev->desc->ops->enable(rdev); |
| 1606 | if (ret < 0) |
| 1607 | return ret; |
| 1608 | } else { |
| 1609 | return -EINVAL; |
| 1610 | } |
| 1611 | |
| 1612 | /* Allow the regulator to ramp; it would be useful to extend |
| 1613 | * this for bulk operations so that the regulators can ramp |
| 1614 | * together. */ |
| 1615 | trace_regulator_enable_delay(rdev_get_name(rdev)); |
| 1616 | |
| 1617 | if (delay >= 1000) { |
| 1618 | mdelay(delay / 1000); |
| 1619 | udelay(delay % 1000); |
| 1620 | } else if (delay) { |
| 1621 | udelay(delay); |
| 1622 | } |
| 1623 | |
| 1624 | trace_regulator_enable_complete(rdev_get_name(rdev)); |
| 1625 | |
| 1626 | return 0; |
| 1627 | } |
| 1628 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1629 | /* locks held by regulator_enable() */ |
| 1630 | static int _regulator_enable(struct regulator_dev *rdev) |
| 1631 | { |
Mark Brown | 5c5659d | 2012-06-27 13:21:26 +0100 | [diff] [blame] | 1632 | int ret; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1633 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1634 | /* check voltage and requested load before enabling */ |
Mark Brown | 9a2372f | 2009-08-03 18:49:57 +0100 | [diff] [blame] | 1635 | if (rdev->constraints && |
| 1636 | (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) |
| 1637 | drms_uA_update(rdev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1638 | |
Mark Brown | 9a2372f | 2009-08-03 18:49:57 +0100 | [diff] [blame] | 1639 | if (rdev->use_count == 0) { |
| 1640 | /* The regulator may on if it's not switchable or left on */ |
| 1641 | ret = _regulator_is_enabled(rdev); |
| 1642 | if (ret == -EINVAL || ret == 0) { |
| 1643 | if (!_regulator_can_change_status(rdev)) |
| 1644 | return -EPERM; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1645 | |
Mark Brown | 5c5659d | 2012-06-27 13:21:26 +0100 | [diff] [blame] | 1646 | ret = _regulator_do_enable(rdev); |
Mark Brown | 31aae2b | 2009-12-21 12:21:52 +0000 | [diff] [blame] | 1647 | if (ret < 0) |
| 1648 | return ret; |
| 1649 | |
Linus Walleij | a7433cf | 2009-08-26 12:54:04 +0200 | [diff] [blame] | 1650 | } else if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 1651 | rdev_err(rdev, "is_enabled() failed: %d\n", ret); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1652 | return ret; |
| 1653 | } |
Linus Walleij | a7433cf | 2009-08-26 12:54:04 +0200 | [diff] [blame] | 1654 | /* Fallthrough on positive return values - already enabled */ |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1655 | } |
| 1656 | |
Mark Brown | 9a2372f | 2009-08-03 18:49:57 +0100 | [diff] [blame] | 1657 | rdev->use_count++; |
| 1658 | |
| 1659 | return 0; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1660 | } |
| 1661 | |
| 1662 | /** |
| 1663 | * regulator_enable - enable regulator output |
| 1664 | * @regulator: regulator source |
| 1665 | * |
Mark Brown | cf7bbcd | 2008-12-31 12:52:43 +0000 | [diff] [blame] | 1666 | * Request that the regulator be enabled with the regulator output at |
| 1667 | * the predefined voltage or current value. Calls to regulator_enable() |
| 1668 | * must be balanced with calls to regulator_disable(). |
| 1669 | * |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1670 | * NOTE: the output value can be set by other drivers, boot loader or may be |
Mark Brown | cf7bbcd | 2008-12-31 12:52:43 +0000 | [diff] [blame] | 1671 | * hardwired in the regulator. |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1672 | */ |
| 1673 | int regulator_enable(struct regulator *regulator) |
| 1674 | { |
David Brownell | 412aec6 | 2008-11-16 11:44:46 -0800 | [diff] [blame] | 1675 | struct regulator_dev *rdev = regulator->rdev; |
| 1676 | int ret = 0; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1677 | |
Mark Brown | 6492bc1 | 2012-04-19 13:19:07 +0100 | [diff] [blame] | 1678 | if (regulator->always_on) |
| 1679 | return 0; |
| 1680 | |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1681 | if (rdev->supply) { |
| 1682 | ret = regulator_enable(rdev->supply); |
| 1683 | if (ret != 0) |
| 1684 | return ret; |
| 1685 | } |
| 1686 | |
David Brownell | 412aec6 | 2008-11-16 11:44:46 -0800 | [diff] [blame] | 1687 | mutex_lock(&rdev->mutex); |
David Brownell | cd94b50 | 2009-03-11 16:43:34 -0800 | [diff] [blame] | 1688 | ret = _regulator_enable(rdev); |
David Brownell | 412aec6 | 2008-11-16 11:44:46 -0800 | [diff] [blame] | 1689 | mutex_unlock(&rdev->mutex); |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1690 | |
Heiko Stübner | d1685e4 | 2011-10-14 18:00:29 +0200 | [diff] [blame] | 1691 | if (ret != 0 && rdev->supply) |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1692 | regulator_disable(rdev->supply); |
| 1693 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1694 | return ret; |
| 1695 | } |
| 1696 | EXPORT_SYMBOL_GPL(regulator_enable); |
| 1697 | |
Mark Brown | 5c5659d | 2012-06-27 13:21:26 +0100 | [diff] [blame] | 1698 | static int _regulator_do_disable(struct regulator_dev *rdev) |
| 1699 | { |
| 1700 | int ret; |
| 1701 | |
| 1702 | trace_regulator_disable(rdev_get_name(rdev)); |
| 1703 | |
Kim, Milo | 967cfb1 | 2013-02-18 06:50:48 +0000 | [diff] [blame] | 1704 | if (rdev->ena_pin) { |
| 1705 | ret = regulator_ena_gpio_ctrl(rdev, false); |
| 1706 | if (ret < 0) |
| 1707 | return ret; |
Mark Brown | 5c5659d | 2012-06-27 13:21:26 +0100 | [diff] [blame] | 1708 | rdev->ena_gpio_state = 0; |
| 1709 | |
| 1710 | } else if (rdev->desc->ops->disable) { |
| 1711 | ret = rdev->desc->ops->disable(rdev); |
| 1712 | if (ret != 0) |
| 1713 | return ret; |
| 1714 | } |
| 1715 | |
| 1716 | trace_regulator_disable_complete(rdev_get_name(rdev)); |
| 1717 | |
| 1718 | _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE, |
| 1719 | NULL); |
| 1720 | return 0; |
| 1721 | } |
| 1722 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1723 | /* locks held by regulator_disable() */ |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1724 | static int _regulator_disable(struct regulator_dev *rdev) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1725 | { |
| 1726 | int ret = 0; |
| 1727 | |
David Brownell | cd94b50 | 2009-03-11 16:43:34 -0800 | [diff] [blame] | 1728 | if (WARN(rdev->use_count <= 0, |
Joe Perches | 43e7ee3 | 2010-12-06 14:05:19 -0800 | [diff] [blame] | 1729 | "unbalanced disables for %s\n", rdev_get_name(rdev))) |
David Brownell | cd94b50 | 2009-03-11 16:43:34 -0800 | [diff] [blame] | 1730 | return -EIO; |
| 1731 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1732 | /* are we the last user and permitted to disable ? */ |
Mark Brown | 60ef66f | 2009-10-13 13:06:50 +0100 | [diff] [blame] | 1733 | if (rdev->use_count == 1 && |
| 1734 | (rdev->constraints && !rdev->constraints->always_on)) { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1735 | |
| 1736 | /* we are last user */ |
Mark Brown | 5c5659d | 2012-06-27 13:21:26 +0100 | [diff] [blame] | 1737 | if (_regulator_can_change_status(rdev)) { |
| 1738 | ret = _regulator_do_disable(rdev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1739 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 1740 | rdev_err(rdev, "failed to disable\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1741 | return ret; |
| 1742 | } |
| 1743 | } |
| 1744 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1745 | rdev->use_count = 0; |
| 1746 | } else if (rdev->use_count > 1) { |
| 1747 | |
| 1748 | if (rdev->constraints && |
| 1749 | (rdev->constraints->valid_ops_mask & |
| 1750 | REGULATOR_CHANGE_DRMS)) |
| 1751 | drms_uA_update(rdev); |
| 1752 | |
| 1753 | rdev->use_count--; |
| 1754 | } |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1755 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1756 | return ret; |
| 1757 | } |
| 1758 | |
| 1759 | /** |
| 1760 | * regulator_disable - disable regulator output |
| 1761 | * @regulator: regulator source |
| 1762 | * |
Mark Brown | cf7bbcd | 2008-12-31 12:52:43 +0000 | [diff] [blame] | 1763 | * Disable the regulator output voltage or current. Calls to |
| 1764 | * regulator_enable() must be balanced with calls to |
| 1765 | * regulator_disable(). |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 1766 | * |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1767 | * NOTE: this will only disable the regulator output if no other consumer |
Mark Brown | cf7bbcd | 2008-12-31 12:52:43 +0000 | [diff] [blame] | 1768 | * devices have it enabled, the regulator device supports disabling and |
| 1769 | * machine constraints permit this operation. |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1770 | */ |
| 1771 | int regulator_disable(struct regulator *regulator) |
| 1772 | { |
David Brownell | 412aec6 | 2008-11-16 11:44:46 -0800 | [diff] [blame] | 1773 | struct regulator_dev *rdev = regulator->rdev; |
| 1774 | int ret = 0; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1775 | |
Mark Brown | 6492bc1 | 2012-04-19 13:19:07 +0100 | [diff] [blame] | 1776 | if (regulator->always_on) |
| 1777 | return 0; |
| 1778 | |
David Brownell | 412aec6 | 2008-11-16 11:44:46 -0800 | [diff] [blame] | 1779 | mutex_lock(&rdev->mutex); |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1780 | ret = _regulator_disable(rdev); |
David Brownell | 412aec6 | 2008-11-16 11:44:46 -0800 | [diff] [blame] | 1781 | mutex_unlock(&rdev->mutex); |
Jeffrey Carlyle | 8cbf811 | 2010-10-08 14:49:19 -0500 | [diff] [blame] | 1782 | |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1783 | if (ret == 0 && rdev->supply) |
| 1784 | regulator_disable(rdev->supply); |
Jeffrey Carlyle | 8cbf811 | 2010-10-08 14:49:19 -0500 | [diff] [blame] | 1785 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1786 | return ret; |
| 1787 | } |
| 1788 | EXPORT_SYMBOL_GPL(regulator_disable); |
| 1789 | |
| 1790 | /* locks held by regulator_force_disable() */ |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1791 | static int _regulator_force_disable(struct regulator_dev *rdev) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1792 | { |
| 1793 | int ret = 0; |
| 1794 | |
| 1795 | /* force disable */ |
| 1796 | if (rdev->desc->ops->disable) { |
| 1797 | /* ah well, who wants to live forever... */ |
| 1798 | ret = rdev->desc->ops->disable(rdev); |
| 1799 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 1800 | rdev_err(rdev, "failed to force disable\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1801 | return ret; |
| 1802 | } |
| 1803 | /* notify other consumers that power has been forced off */ |
Mark Brown | 84b6826 | 2009-12-01 21:12:27 +0000 | [diff] [blame] | 1804 | _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE | |
| 1805 | REGULATOR_EVENT_DISABLE, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1806 | } |
| 1807 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1808 | return ret; |
| 1809 | } |
| 1810 | |
| 1811 | /** |
| 1812 | * regulator_force_disable - force disable regulator output |
| 1813 | * @regulator: regulator source |
| 1814 | * |
| 1815 | * Forcibly disable the regulator output voltage or current. |
| 1816 | * NOTE: this *will* disable the regulator output even if other consumer |
| 1817 | * devices have it enabled. This should be used for situations when device |
| 1818 | * damage will likely occur if the regulator is not disabled (e.g. over temp). |
| 1819 | */ |
| 1820 | int regulator_force_disable(struct regulator *regulator) |
| 1821 | { |
Mark Brown | 82d1583 | 2011-05-09 11:41:02 +0200 | [diff] [blame] | 1822 | struct regulator_dev *rdev = regulator->rdev; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1823 | int ret; |
| 1824 | |
Mark Brown | 82d1583 | 2011-05-09 11:41:02 +0200 | [diff] [blame] | 1825 | mutex_lock(&rdev->mutex); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1826 | regulator->uA_load = 0; |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1827 | ret = _regulator_force_disable(regulator->rdev); |
Mark Brown | 82d1583 | 2011-05-09 11:41:02 +0200 | [diff] [blame] | 1828 | mutex_unlock(&rdev->mutex); |
Jeffrey Carlyle | 8cbf811 | 2010-10-08 14:49:19 -0500 | [diff] [blame] | 1829 | |
Mark Brown | 3801b86 | 2011-06-09 16:22:22 +0100 | [diff] [blame] | 1830 | if (rdev->supply) |
| 1831 | while (rdev->open_count--) |
| 1832 | regulator_disable(rdev->supply); |
Jeffrey Carlyle | 8cbf811 | 2010-10-08 14:49:19 -0500 | [diff] [blame] | 1833 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1834 | return ret; |
| 1835 | } |
| 1836 | EXPORT_SYMBOL_GPL(regulator_force_disable); |
| 1837 | |
Mark Brown | da07ecd | 2011-09-11 09:53:50 +0100 | [diff] [blame] | 1838 | static void regulator_disable_work(struct work_struct *work) |
| 1839 | { |
| 1840 | struct regulator_dev *rdev = container_of(work, struct regulator_dev, |
| 1841 | disable_work.work); |
| 1842 | int count, i, ret; |
| 1843 | |
| 1844 | mutex_lock(&rdev->mutex); |
| 1845 | |
| 1846 | BUG_ON(!rdev->deferred_disables); |
| 1847 | |
| 1848 | count = rdev->deferred_disables; |
| 1849 | rdev->deferred_disables = 0; |
| 1850 | |
| 1851 | for (i = 0; i < count; i++) { |
| 1852 | ret = _regulator_disable(rdev); |
| 1853 | if (ret != 0) |
| 1854 | rdev_err(rdev, "Deferred disable failed: %d\n", ret); |
| 1855 | } |
| 1856 | |
| 1857 | mutex_unlock(&rdev->mutex); |
| 1858 | |
| 1859 | if (rdev->supply) { |
| 1860 | for (i = 0; i < count; i++) { |
| 1861 | ret = regulator_disable(rdev->supply); |
| 1862 | if (ret != 0) { |
| 1863 | rdev_err(rdev, |
| 1864 | "Supply disable failed: %d\n", ret); |
| 1865 | } |
| 1866 | } |
| 1867 | } |
| 1868 | } |
| 1869 | |
| 1870 | /** |
| 1871 | * regulator_disable_deferred - disable regulator output with delay |
| 1872 | * @regulator: regulator source |
| 1873 | * @ms: miliseconds until the regulator is disabled |
| 1874 | * |
| 1875 | * Execute regulator_disable() on the regulator after a delay. This |
| 1876 | * is intended for use with devices that require some time to quiesce. |
| 1877 | * |
| 1878 | * NOTE: this will only disable the regulator output if no other consumer |
| 1879 | * devices have it enabled, the regulator device supports disabling and |
| 1880 | * machine constraints permit this operation. |
| 1881 | */ |
| 1882 | int regulator_disable_deferred(struct regulator *regulator, int ms) |
| 1883 | { |
| 1884 | struct regulator_dev *rdev = regulator->rdev; |
Mark Brown | aa59802 | 2011-10-03 22:42:43 +0100 | [diff] [blame] | 1885 | int ret; |
Mark Brown | da07ecd | 2011-09-11 09:53:50 +0100 | [diff] [blame] | 1886 | |
Mark Brown | 6492bc1 | 2012-04-19 13:19:07 +0100 | [diff] [blame] | 1887 | if (regulator->always_on) |
| 1888 | return 0; |
| 1889 | |
Mark Brown | 2b5a24a | 2012-09-07 11:00:53 +0800 | [diff] [blame] | 1890 | if (!ms) |
| 1891 | return regulator_disable(regulator); |
| 1892 | |
Mark Brown | da07ecd | 2011-09-11 09:53:50 +0100 | [diff] [blame] | 1893 | mutex_lock(&rdev->mutex); |
| 1894 | rdev->deferred_disables++; |
| 1895 | mutex_unlock(&rdev->mutex); |
| 1896 | |
Mark Brown | 070260f | 2013-07-18 11:52:04 +0100 | [diff] [blame] | 1897 | ret = queue_delayed_work(system_power_efficient_wq, |
| 1898 | &rdev->disable_work, |
| 1899 | msecs_to_jiffies(ms)); |
Mark Brown | aa59802 | 2011-10-03 22:42:43 +0100 | [diff] [blame] | 1900 | if (ret < 0) |
| 1901 | return ret; |
| 1902 | else |
| 1903 | return 0; |
Mark Brown | da07ecd | 2011-09-11 09:53:50 +0100 | [diff] [blame] | 1904 | } |
| 1905 | EXPORT_SYMBOL_GPL(regulator_disable_deferred); |
| 1906 | |
Mark Brown | cd6dffb | 2012-04-15 12:37:47 +0100 | [diff] [blame] | 1907 | /** |
| 1908 | * regulator_is_enabled_regmap - standard is_enabled() for regmap users |
| 1909 | * |
| 1910 | * @rdev: regulator to operate on |
| 1911 | * |
| 1912 | * Regulators that use regmap for their register I/O can set the |
| 1913 | * enable_reg and enable_mask fields in their descriptor and then use |
| 1914 | * this as their is_enabled operation, saving some code. |
| 1915 | */ |
| 1916 | int regulator_is_enabled_regmap(struct regulator_dev *rdev) |
| 1917 | { |
| 1918 | unsigned int val; |
| 1919 | int ret; |
| 1920 | |
| 1921 | ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val); |
| 1922 | if (ret != 0) |
| 1923 | return ret; |
| 1924 | |
Axel Lin | 51dcdaf | 2013-03-05 14:16:00 +0800 | [diff] [blame] | 1925 | if (rdev->desc->enable_is_inverted) |
| 1926 | return (val & rdev->desc->enable_mask) == 0; |
| 1927 | else |
| 1928 | return (val & rdev->desc->enable_mask) != 0; |
Mark Brown | cd6dffb | 2012-04-15 12:37:47 +0100 | [diff] [blame] | 1929 | } |
| 1930 | EXPORT_SYMBOL_GPL(regulator_is_enabled_regmap); |
| 1931 | |
| 1932 | /** |
| 1933 | * regulator_enable_regmap - standard enable() for regmap users |
| 1934 | * |
| 1935 | * @rdev: regulator to operate on |
| 1936 | * |
| 1937 | * Regulators that use regmap for their register I/O can set the |
| 1938 | * enable_reg and enable_mask fields in their descriptor and then use |
| 1939 | * this as their enable() operation, saving some code. |
| 1940 | */ |
| 1941 | int regulator_enable_regmap(struct regulator_dev *rdev) |
| 1942 | { |
Axel Lin | 51dcdaf | 2013-03-05 14:16:00 +0800 | [diff] [blame] | 1943 | unsigned int val; |
| 1944 | |
| 1945 | if (rdev->desc->enable_is_inverted) |
| 1946 | val = 0; |
| 1947 | else |
| 1948 | val = rdev->desc->enable_mask; |
| 1949 | |
Mark Brown | cd6dffb | 2012-04-15 12:37:47 +0100 | [diff] [blame] | 1950 | return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg, |
Axel Lin | 51dcdaf | 2013-03-05 14:16:00 +0800 | [diff] [blame] | 1951 | rdev->desc->enable_mask, val); |
Mark Brown | cd6dffb | 2012-04-15 12:37:47 +0100 | [diff] [blame] | 1952 | } |
| 1953 | EXPORT_SYMBOL_GPL(regulator_enable_regmap); |
| 1954 | |
| 1955 | /** |
| 1956 | * regulator_disable_regmap - standard disable() for regmap users |
| 1957 | * |
| 1958 | * @rdev: regulator to operate on |
| 1959 | * |
| 1960 | * Regulators that use regmap for their register I/O can set the |
| 1961 | * enable_reg and enable_mask fields in their descriptor and then use |
| 1962 | * this as their disable() operation, saving some code. |
| 1963 | */ |
| 1964 | int regulator_disable_regmap(struct regulator_dev *rdev) |
| 1965 | { |
Axel Lin | 51dcdaf | 2013-03-05 14:16:00 +0800 | [diff] [blame] | 1966 | unsigned int val; |
| 1967 | |
| 1968 | if (rdev->desc->enable_is_inverted) |
| 1969 | val = rdev->desc->enable_mask; |
| 1970 | else |
| 1971 | val = 0; |
| 1972 | |
Mark Brown | cd6dffb | 2012-04-15 12:37:47 +0100 | [diff] [blame] | 1973 | return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg, |
Axel Lin | 51dcdaf | 2013-03-05 14:16:00 +0800 | [diff] [blame] | 1974 | rdev->desc->enable_mask, val); |
Mark Brown | cd6dffb | 2012-04-15 12:37:47 +0100 | [diff] [blame] | 1975 | } |
| 1976 | EXPORT_SYMBOL_GPL(regulator_disable_regmap); |
| 1977 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1978 | static int _regulator_is_enabled(struct regulator_dev *rdev) |
| 1979 | { |
Mark Brown | 65f7350 | 2012-06-27 14:14:38 +0100 | [diff] [blame] | 1980 | /* A GPIO control always takes precedence */ |
Kim, Milo | 7b74d14 | 2013-02-18 06:50:55 +0000 | [diff] [blame] | 1981 | if (rdev->ena_pin) |
Mark Brown | 65f7350 | 2012-06-27 14:14:38 +0100 | [diff] [blame] | 1982 | return rdev->ena_gpio_state; |
| 1983 | |
Mark Brown | 9a7f6a4 | 2010-02-11 17:22:45 +0000 | [diff] [blame] | 1984 | /* If we don't know then assume that the regulator is always on */ |
Mark Brown | 9332546 | 2009-08-03 18:49:56 +0100 | [diff] [blame] | 1985 | if (!rdev->desc->ops->is_enabled) |
Mark Brown | 9a7f6a4 | 2010-02-11 17:22:45 +0000 | [diff] [blame] | 1986 | return 1; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1987 | |
Mark Brown | 9332546 | 2009-08-03 18:49:56 +0100 | [diff] [blame] | 1988 | return rdev->desc->ops->is_enabled(rdev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 1989 | } |
| 1990 | |
| 1991 | /** |
| 1992 | * regulator_is_enabled - is the regulator output enabled |
| 1993 | * @regulator: regulator source |
| 1994 | * |
David Brownell | 412aec6 | 2008-11-16 11:44:46 -0800 | [diff] [blame] | 1995 | * Returns positive if the regulator driver backing the source/client |
| 1996 | * has requested that the device be enabled, zero if it hasn't, else a |
| 1997 | * negative errno code. |
| 1998 | * |
| 1999 | * Note that the device backing this regulator handle can have multiple |
| 2000 | * users, so it might be enabled even if regulator_enable() was never |
| 2001 | * called for this particular source. |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2002 | */ |
| 2003 | int regulator_is_enabled(struct regulator *regulator) |
| 2004 | { |
Mark Brown | 9332546 | 2009-08-03 18:49:56 +0100 | [diff] [blame] | 2005 | int ret; |
| 2006 | |
Mark Brown | 6492bc1 | 2012-04-19 13:19:07 +0100 | [diff] [blame] | 2007 | if (regulator->always_on) |
| 2008 | return 1; |
| 2009 | |
Mark Brown | 9332546 | 2009-08-03 18:49:56 +0100 | [diff] [blame] | 2010 | mutex_lock(®ulator->rdev->mutex); |
| 2011 | ret = _regulator_is_enabled(regulator->rdev); |
| 2012 | mutex_unlock(®ulator->rdev->mutex); |
| 2013 | |
| 2014 | return ret; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2015 | } |
| 2016 | EXPORT_SYMBOL_GPL(regulator_is_enabled); |
| 2017 | |
| 2018 | /** |
Marek Szyprowski | d1e7de3 | 2012-12-04 15:01:01 +0100 | [diff] [blame] | 2019 | * regulator_can_change_voltage - check if regulator can change voltage |
| 2020 | * @regulator: regulator source |
| 2021 | * |
| 2022 | * Returns positive if the regulator driver backing the source/client |
| 2023 | * can change its voltage, false otherwise. Usefull for detecting fixed |
| 2024 | * or dummy regulators and disabling voltage change logic in the client |
| 2025 | * driver. |
| 2026 | */ |
| 2027 | int regulator_can_change_voltage(struct regulator *regulator) |
| 2028 | { |
| 2029 | struct regulator_dev *rdev = regulator->rdev; |
| 2030 | |
| 2031 | if (rdev->constraints && |
Axel Lin | 19280e4 | 2012-12-12 09:22:46 +0800 | [diff] [blame] | 2032 | (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) { |
| 2033 | if (rdev->desc->n_voltages - rdev->desc->linear_min_sel > 1) |
| 2034 | return 1; |
| 2035 | |
| 2036 | if (rdev->desc->continuous_voltage_range && |
| 2037 | rdev->constraints->min_uV && rdev->constraints->max_uV && |
| 2038 | rdev->constraints->min_uV != rdev->constraints->max_uV) |
| 2039 | return 1; |
| 2040 | } |
Marek Szyprowski | d1e7de3 | 2012-12-04 15:01:01 +0100 | [diff] [blame] | 2041 | |
| 2042 | return 0; |
| 2043 | } |
| 2044 | EXPORT_SYMBOL_GPL(regulator_can_change_voltage); |
| 2045 | |
| 2046 | /** |
David Brownell | 4367cfd | 2009-02-26 11:48:36 -0800 | [diff] [blame] | 2047 | * regulator_count_voltages - count regulator_list_voltage() selectors |
| 2048 | * @regulator: regulator source |
| 2049 | * |
| 2050 | * Returns number of selectors, or negative errno. Selectors are |
| 2051 | * numbered starting at zero, and typically correspond to bitfields |
| 2052 | * in hardware registers. |
| 2053 | */ |
| 2054 | int regulator_count_voltages(struct regulator *regulator) |
| 2055 | { |
| 2056 | struct regulator_dev *rdev = regulator->rdev; |
| 2057 | |
| 2058 | return rdev->desc->n_voltages ? : -EINVAL; |
| 2059 | } |
| 2060 | EXPORT_SYMBOL_GPL(regulator_count_voltages); |
| 2061 | |
| 2062 | /** |
Mark Brown | bca7bbf | 2012-05-09 21:38:33 +0100 | [diff] [blame] | 2063 | * regulator_list_voltage_linear - List voltages with simple calculation |
| 2064 | * |
| 2065 | * @rdev: Regulator device |
| 2066 | * @selector: Selector to convert into a voltage |
| 2067 | * |
| 2068 | * Regulators with a simple linear mapping between voltages and |
| 2069 | * selectors can set min_uV and uV_step in the regulator descriptor |
| 2070 | * and then use this function as their list_voltage() operation, |
| 2071 | */ |
| 2072 | int regulator_list_voltage_linear(struct regulator_dev *rdev, |
| 2073 | unsigned int selector) |
| 2074 | { |
| 2075 | if (selector >= rdev->desc->n_voltages) |
| 2076 | return -EINVAL; |
Axel Lin | 33234e7 | 2012-11-27 10:24:33 +0800 | [diff] [blame] | 2077 | if (selector < rdev->desc->linear_min_sel) |
| 2078 | return 0; |
| 2079 | |
| 2080 | selector -= rdev->desc->linear_min_sel; |
Mark Brown | bca7bbf | 2012-05-09 21:38:33 +0100 | [diff] [blame] | 2081 | |
| 2082 | return rdev->desc->min_uV + (rdev->desc->uV_step * selector); |
| 2083 | } |
| 2084 | EXPORT_SYMBOL_GPL(regulator_list_voltage_linear); |
| 2085 | |
| 2086 | /** |
Axel Lin | cffc959 | 2012-05-20 10:30:21 +0800 | [diff] [blame] | 2087 | * regulator_list_voltage_table - List voltages with table based mapping |
| 2088 | * |
| 2089 | * @rdev: Regulator device |
| 2090 | * @selector: Selector to convert into a voltage |
| 2091 | * |
| 2092 | * Regulators with table based mapping between voltages and |
| 2093 | * selectors can set volt_table in the regulator descriptor |
| 2094 | * and then use this function as their list_voltage() operation. |
| 2095 | */ |
| 2096 | int regulator_list_voltage_table(struct regulator_dev *rdev, |
| 2097 | unsigned int selector) |
| 2098 | { |
| 2099 | if (!rdev->desc->volt_table) { |
| 2100 | BUG_ON(!rdev->desc->volt_table); |
| 2101 | return -EINVAL; |
| 2102 | } |
| 2103 | |
| 2104 | if (selector >= rdev->desc->n_voltages) |
| 2105 | return -EINVAL; |
| 2106 | |
| 2107 | return rdev->desc->volt_table[selector]; |
| 2108 | } |
| 2109 | EXPORT_SYMBOL_GPL(regulator_list_voltage_table); |
| 2110 | |
| 2111 | /** |
David Brownell | 4367cfd | 2009-02-26 11:48:36 -0800 | [diff] [blame] | 2112 | * regulator_list_voltage - enumerate supported voltages |
| 2113 | * @regulator: regulator source |
| 2114 | * @selector: identify voltage to list |
| 2115 | * Context: can sleep |
| 2116 | * |
| 2117 | * Returns a voltage that can be passed to @regulator_set_voltage(), |
Thomas Weber | 8839316 | 2010-03-16 11:47:56 +0100 | [diff] [blame] | 2118 | * zero if this selector code can't be used on this system, or a |
David Brownell | 4367cfd | 2009-02-26 11:48:36 -0800 | [diff] [blame] | 2119 | * negative errno. |
| 2120 | */ |
| 2121 | int regulator_list_voltage(struct regulator *regulator, unsigned selector) |
| 2122 | { |
| 2123 | struct regulator_dev *rdev = regulator->rdev; |
| 2124 | struct regulator_ops *ops = rdev->desc->ops; |
| 2125 | int ret; |
| 2126 | |
| 2127 | if (!ops->list_voltage || selector >= rdev->desc->n_voltages) |
| 2128 | return -EINVAL; |
| 2129 | |
| 2130 | mutex_lock(&rdev->mutex); |
| 2131 | ret = ops->list_voltage(rdev, selector); |
| 2132 | mutex_unlock(&rdev->mutex); |
| 2133 | |
| 2134 | if (ret > 0) { |
| 2135 | if (ret < rdev->constraints->min_uV) |
| 2136 | ret = 0; |
| 2137 | else if (ret > rdev->constraints->max_uV) |
| 2138 | ret = 0; |
| 2139 | } |
| 2140 | |
| 2141 | return ret; |
| 2142 | } |
| 2143 | EXPORT_SYMBOL_GPL(regulator_list_voltage); |
| 2144 | |
| 2145 | /** |
Paul Walmsley | 2a668a8 | 2013-06-07 08:06:56 +0000 | [diff] [blame] | 2146 | * regulator_get_linear_step - return the voltage step size between VSEL values |
| 2147 | * @regulator: regulator source |
| 2148 | * |
| 2149 | * Returns the voltage step size between VSEL values for linear |
| 2150 | * regulators, or return 0 if the regulator isn't a linear regulator. |
| 2151 | */ |
| 2152 | unsigned int regulator_get_linear_step(struct regulator *regulator) |
| 2153 | { |
| 2154 | struct regulator_dev *rdev = regulator->rdev; |
| 2155 | |
| 2156 | return rdev->desc->uV_step; |
| 2157 | } |
| 2158 | EXPORT_SYMBOL_GPL(regulator_get_linear_step); |
| 2159 | |
| 2160 | /** |
Mark Brown | a7a1ad9 | 2009-07-21 16:00:24 +0100 | [diff] [blame] | 2161 | * regulator_is_supported_voltage - check if a voltage range can be supported |
| 2162 | * |
| 2163 | * @regulator: Regulator to check. |
| 2164 | * @min_uV: Minimum required voltage in uV. |
| 2165 | * @max_uV: Maximum required voltage in uV. |
| 2166 | * |
| 2167 | * Returns a boolean or a negative error code. |
| 2168 | */ |
| 2169 | int regulator_is_supported_voltage(struct regulator *regulator, |
| 2170 | int min_uV, int max_uV) |
| 2171 | { |
Mark Brown | c5f3939 | 2012-07-02 15:00:18 +0100 | [diff] [blame] | 2172 | struct regulator_dev *rdev = regulator->rdev; |
Mark Brown | a7a1ad9 | 2009-07-21 16:00:24 +0100 | [diff] [blame] | 2173 | int i, voltages, ret; |
| 2174 | |
Mark Brown | c5f3939 | 2012-07-02 15:00:18 +0100 | [diff] [blame] | 2175 | /* If we can't change voltage check the current voltage */ |
| 2176 | if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) { |
| 2177 | ret = regulator_get_voltage(regulator); |
| 2178 | if (ret >= 0) |
Marek Szyprowski | f0f98b1 | 2012-11-13 09:48:51 +0100 | [diff] [blame] | 2179 | return (min_uV <= ret && ret <= max_uV); |
Mark Brown | c5f3939 | 2012-07-02 15:00:18 +0100 | [diff] [blame] | 2180 | else |
| 2181 | return ret; |
| 2182 | } |
| 2183 | |
Pawel Moll | bd7a2b6 | 2012-09-24 18:56:53 +0100 | [diff] [blame] | 2184 | /* Any voltage within constrains range is fine? */ |
| 2185 | if (rdev->desc->continuous_voltage_range) |
| 2186 | return min_uV >= rdev->constraints->min_uV && |
| 2187 | max_uV <= rdev->constraints->max_uV; |
| 2188 | |
Mark Brown | a7a1ad9 | 2009-07-21 16:00:24 +0100 | [diff] [blame] | 2189 | ret = regulator_count_voltages(regulator); |
| 2190 | if (ret < 0) |
| 2191 | return ret; |
| 2192 | voltages = ret; |
| 2193 | |
| 2194 | for (i = 0; i < voltages; i++) { |
| 2195 | ret = regulator_list_voltage(regulator, i); |
| 2196 | |
| 2197 | if (ret >= min_uV && ret <= max_uV) |
| 2198 | return 1; |
| 2199 | } |
| 2200 | |
| 2201 | return 0; |
| 2202 | } |
Mark Brown | a398eaa | 2011-12-28 12:48:45 +0000 | [diff] [blame] | 2203 | EXPORT_SYMBOL_GPL(regulator_is_supported_voltage); |
Mark Brown | a7a1ad9 | 2009-07-21 16:00:24 +0100 | [diff] [blame] | 2204 | |
Mark Brown | 4ab5b3d | 2012-04-15 11:23:30 +0100 | [diff] [blame] | 2205 | /** |
| 2206 | * regulator_get_voltage_sel_regmap - standard get_voltage_sel for regmap users |
| 2207 | * |
| 2208 | * @rdev: regulator to operate on |
| 2209 | * |
| 2210 | * Regulators that use regmap for their register I/O can set the |
| 2211 | * vsel_reg and vsel_mask fields in their descriptor and then use this |
| 2212 | * as their get_voltage_vsel operation, saving some code. |
| 2213 | */ |
| 2214 | int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev) |
| 2215 | { |
| 2216 | unsigned int val; |
| 2217 | int ret; |
| 2218 | |
| 2219 | ret = regmap_read(rdev->regmap, rdev->desc->vsel_reg, &val); |
| 2220 | if (ret != 0) |
| 2221 | return ret; |
| 2222 | |
| 2223 | val &= rdev->desc->vsel_mask; |
| 2224 | val >>= ffs(rdev->desc->vsel_mask) - 1; |
| 2225 | |
| 2226 | return val; |
| 2227 | } |
| 2228 | EXPORT_SYMBOL_GPL(regulator_get_voltage_sel_regmap); |
| 2229 | |
| 2230 | /** |
| 2231 | * regulator_set_voltage_sel_regmap - standard set_voltage_sel for regmap users |
| 2232 | * |
| 2233 | * @rdev: regulator to operate on |
| 2234 | * @sel: Selector to set |
| 2235 | * |
| 2236 | * Regulators that use regmap for their register I/O can set the |
| 2237 | * vsel_reg and vsel_mask fields in their descriptor and then use this |
| 2238 | * as their set_voltage_vsel operation, saving some code. |
| 2239 | */ |
| 2240 | int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel) |
| 2241 | { |
Axel Lin | c8520b4 | 2012-12-18 09:30:10 +0800 | [diff] [blame] | 2242 | int ret; |
| 2243 | |
Mark Brown | 4ab5b3d | 2012-04-15 11:23:30 +0100 | [diff] [blame] | 2244 | sel <<= ffs(rdev->desc->vsel_mask) - 1; |
| 2245 | |
Axel Lin | c8520b4 | 2012-12-18 09:30:10 +0800 | [diff] [blame] | 2246 | ret = regmap_update_bits(rdev->regmap, rdev->desc->vsel_reg, |
Mark Brown | 4ab5b3d | 2012-04-15 11:23:30 +0100 | [diff] [blame] | 2247 | rdev->desc->vsel_mask, sel); |
Axel Lin | c8520b4 | 2012-12-18 09:30:10 +0800 | [diff] [blame] | 2248 | if (ret) |
| 2249 | return ret; |
| 2250 | |
| 2251 | if (rdev->desc->apply_bit) |
| 2252 | ret = regmap_update_bits(rdev->regmap, rdev->desc->apply_reg, |
| 2253 | rdev->desc->apply_bit, |
| 2254 | rdev->desc->apply_bit); |
| 2255 | return ret; |
Mark Brown | 4ab5b3d | 2012-04-15 11:23:30 +0100 | [diff] [blame] | 2256 | } |
| 2257 | EXPORT_SYMBOL_GPL(regulator_set_voltage_sel_regmap); |
| 2258 | |
Mark Brown | e843fc4 | 2012-05-09 21:16:06 +0100 | [diff] [blame] | 2259 | /** |
| 2260 | * regulator_map_voltage_iterate - map_voltage() based on list_voltage() |
| 2261 | * |
| 2262 | * @rdev: Regulator to operate on |
| 2263 | * @min_uV: Lower bound for voltage |
| 2264 | * @max_uV: Upper bound for voltage |
| 2265 | * |
| 2266 | * Drivers implementing set_voltage_sel() and list_voltage() can use |
| 2267 | * this as their map_voltage() operation. It will find a suitable |
| 2268 | * voltage by calling list_voltage() until it gets something in bounds |
| 2269 | * for the requested voltages. |
| 2270 | */ |
| 2271 | int regulator_map_voltage_iterate(struct regulator_dev *rdev, |
| 2272 | int min_uV, int max_uV) |
| 2273 | { |
| 2274 | int best_val = INT_MAX; |
| 2275 | int selector = 0; |
| 2276 | int i, ret; |
| 2277 | |
| 2278 | /* Find the smallest voltage that falls within the specified |
| 2279 | * range. |
| 2280 | */ |
| 2281 | for (i = 0; i < rdev->desc->n_voltages; i++) { |
| 2282 | ret = rdev->desc->ops->list_voltage(rdev, i); |
| 2283 | if (ret < 0) |
| 2284 | continue; |
| 2285 | |
| 2286 | if (ret < best_val && ret >= min_uV && ret <= max_uV) { |
| 2287 | best_val = ret; |
| 2288 | selector = i; |
| 2289 | } |
| 2290 | } |
| 2291 | |
| 2292 | if (best_val != INT_MAX) |
| 2293 | return selector; |
| 2294 | else |
| 2295 | return -EINVAL; |
| 2296 | } |
| 2297 | EXPORT_SYMBOL_GPL(regulator_map_voltage_iterate); |
| 2298 | |
Mark Brown | bca7bbf | 2012-05-09 21:38:33 +0100 | [diff] [blame] | 2299 | /** |
Axel Lin | fcf371e | 2013-04-18 10:34:49 +0800 | [diff] [blame] | 2300 | * regulator_map_voltage_ascend - map_voltage() for ascendant voltage list |
| 2301 | * |
| 2302 | * @rdev: Regulator to operate on |
| 2303 | * @min_uV: Lower bound for voltage |
| 2304 | * @max_uV: Upper bound for voltage |
| 2305 | * |
| 2306 | * Drivers that have ascendant voltage list can use this as their |
| 2307 | * map_voltage() operation. |
| 2308 | */ |
| 2309 | int regulator_map_voltage_ascend(struct regulator_dev *rdev, |
| 2310 | int min_uV, int max_uV) |
| 2311 | { |
| 2312 | int i, ret; |
| 2313 | |
| 2314 | for (i = 0; i < rdev->desc->n_voltages; i++) { |
| 2315 | ret = rdev->desc->ops->list_voltage(rdev, i); |
| 2316 | if (ret < 0) |
| 2317 | continue; |
| 2318 | |
| 2319 | if (ret > max_uV) |
| 2320 | break; |
| 2321 | |
| 2322 | if (ret >= min_uV && ret <= max_uV) |
| 2323 | return i; |
| 2324 | } |
| 2325 | |
| 2326 | return -EINVAL; |
| 2327 | } |
| 2328 | EXPORT_SYMBOL_GPL(regulator_map_voltage_ascend); |
| 2329 | |
| 2330 | /** |
Mark Brown | bca7bbf | 2012-05-09 21:38:33 +0100 | [diff] [blame] | 2331 | * regulator_map_voltage_linear - map_voltage() for simple linear mappings |
| 2332 | * |
| 2333 | * @rdev: Regulator to operate on |
| 2334 | * @min_uV: Lower bound for voltage |
| 2335 | * @max_uV: Upper bound for voltage |
| 2336 | * |
| 2337 | * Drivers providing min_uV and uV_step in their regulator_desc can |
| 2338 | * use this as their map_voltage() operation. |
| 2339 | */ |
| 2340 | int regulator_map_voltage_linear(struct regulator_dev *rdev, |
| 2341 | int min_uV, int max_uV) |
| 2342 | { |
| 2343 | int ret, voltage; |
| 2344 | |
Axel Lin | 5a6881e | 2012-06-07 10:05:14 +0800 | [diff] [blame] | 2345 | /* Allow uV_step to be 0 for fixed voltage */ |
| 2346 | if (rdev->desc->n_voltages == 1 && rdev->desc->uV_step == 0) { |
| 2347 | if (min_uV <= rdev->desc->min_uV && rdev->desc->min_uV <= max_uV) |
| 2348 | return 0; |
| 2349 | else |
| 2350 | return -EINVAL; |
| 2351 | } |
| 2352 | |
Mark Brown | bca7bbf | 2012-05-09 21:38:33 +0100 | [diff] [blame] | 2353 | if (!rdev->desc->uV_step) { |
| 2354 | BUG_ON(!rdev->desc->uV_step); |
| 2355 | return -EINVAL; |
| 2356 | } |
| 2357 | |
Axel Lin | 0bdc81e | 2012-06-07 09:52:12 +0800 | [diff] [blame] | 2358 | if (min_uV < rdev->desc->min_uV) |
| 2359 | min_uV = rdev->desc->min_uV; |
| 2360 | |
Axel Lin | ccfcb1c | 2012-05-14 10:33:37 +0800 | [diff] [blame] | 2361 | ret = DIV_ROUND_UP(min_uV - rdev->desc->min_uV, rdev->desc->uV_step); |
Mark Brown | bca7bbf | 2012-05-09 21:38:33 +0100 | [diff] [blame] | 2362 | if (ret < 0) |
| 2363 | return ret; |
| 2364 | |
Axel Lin | 33234e7 | 2012-11-27 10:24:33 +0800 | [diff] [blame] | 2365 | ret += rdev->desc->linear_min_sel; |
| 2366 | |
Mark Brown | bca7bbf | 2012-05-09 21:38:33 +0100 | [diff] [blame] | 2367 | /* Map back into a voltage to verify we're still in bounds */ |
| 2368 | voltage = rdev->desc->ops->list_voltage(rdev, ret); |
| 2369 | if (voltage < min_uV || voltage > max_uV) |
| 2370 | return -EINVAL; |
| 2371 | |
| 2372 | return ret; |
| 2373 | } |
| 2374 | EXPORT_SYMBOL_GPL(regulator_map_voltage_linear); |
| 2375 | |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 2376 | static int _regulator_do_set_voltage(struct regulator_dev *rdev, |
| 2377 | int min_uV, int max_uV) |
| 2378 | { |
| 2379 | int ret; |
Linus Walleij | 77af1b2 | 2011-03-17 13:24:36 +0100 | [diff] [blame] | 2380 | int delay = 0; |
Mark Brown | e113d79 | 2012-06-26 10:57:51 +0100 | [diff] [blame] | 2381 | int best_val = 0; |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 2382 | unsigned int selector; |
Axel Lin | eba41a5 | 2012-04-04 10:32:10 +0800 | [diff] [blame] | 2383 | int old_selector = -1; |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 2384 | |
| 2385 | trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV); |
| 2386 | |
Mark Brown | bf5892a | 2011-05-08 22:13:37 +0100 | [diff] [blame] | 2387 | min_uV += rdev->constraints->uV_offset; |
| 2388 | max_uV += rdev->constraints->uV_offset; |
| 2389 | |
Axel Lin | eba41a5 | 2012-04-04 10:32:10 +0800 | [diff] [blame] | 2390 | /* |
| 2391 | * If we can't obtain the old selector there is not enough |
| 2392 | * info to call set_voltage_time_sel(). |
| 2393 | */ |
Axel Lin | 8b7485e | 2012-05-21 09:37:52 +0800 | [diff] [blame] | 2394 | if (_regulator_is_enabled(rdev) && |
| 2395 | rdev->desc->ops->set_voltage_time_sel && |
Axel Lin | eba41a5 | 2012-04-04 10:32:10 +0800 | [diff] [blame] | 2396 | rdev->desc->ops->get_voltage_sel) { |
| 2397 | old_selector = rdev->desc->ops->get_voltage_sel(rdev); |
| 2398 | if (old_selector < 0) |
| 2399 | return old_selector; |
| 2400 | } |
| 2401 | |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 2402 | if (rdev->desc->ops->set_voltage) { |
| 2403 | ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV, |
| 2404 | &selector); |
Mark Brown | e113d79 | 2012-06-26 10:57:51 +0100 | [diff] [blame] | 2405 | |
| 2406 | if (ret >= 0) { |
| 2407 | if (rdev->desc->ops->list_voltage) |
| 2408 | best_val = rdev->desc->ops->list_voltage(rdev, |
| 2409 | selector); |
| 2410 | else |
| 2411 | best_val = _regulator_get_voltage(rdev); |
| 2412 | } |
| 2413 | |
Mark Brown | e8eef82 | 2010-12-12 14:36:17 +0000 | [diff] [blame] | 2414 | } else if (rdev->desc->ops->set_voltage_sel) { |
Axel Lin | 9152c36 | 2012-06-04 09:41:38 +0800 | [diff] [blame] | 2415 | if (rdev->desc->ops->map_voltage) { |
Mark Brown | e843fc4 | 2012-05-09 21:16:06 +0100 | [diff] [blame] | 2416 | ret = rdev->desc->ops->map_voltage(rdev, min_uV, |
| 2417 | max_uV); |
Axel Lin | 9152c36 | 2012-06-04 09:41:38 +0800 | [diff] [blame] | 2418 | } else { |
| 2419 | if (rdev->desc->ops->list_voltage == |
| 2420 | regulator_list_voltage_linear) |
| 2421 | ret = regulator_map_voltage_linear(rdev, |
| 2422 | min_uV, max_uV); |
| 2423 | else |
| 2424 | ret = regulator_map_voltage_iterate(rdev, |
| 2425 | min_uV, max_uV); |
| 2426 | } |
Mark Brown | e8eef82 | 2010-12-12 14:36:17 +0000 | [diff] [blame] | 2427 | |
Mark Brown | e843fc4 | 2012-05-09 21:16:06 +0100 | [diff] [blame] | 2428 | if (ret >= 0) { |
Mark Brown | e113d79 | 2012-06-26 10:57:51 +0100 | [diff] [blame] | 2429 | best_val = rdev->desc->ops->list_voltage(rdev, ret); |
| 2430 | if (min_uV <= best_val && max_uV >= best_val) { |
| 2431 | selector = ret; |
Axel Lin | c66a566 | 2013-02-06 11:09:48 +0800 | [diff] [blame] | 2432 | if (old_selector == selector) |
| 2433 | ret = 0; |
| 2434 | else |
| 2435 | ret = rdev->desc->ops->set_voltage_sel( |
| 2436 | rdev, ret); |
Mark Brown | e113d79 | 2012-06-26 10:57:51 +0100 | [diff] [blame] | 2437 | } else { |
| 2438 | ret = -EINVAL; |
| 2439 | } |
Mark Brown | e8eef82 | 2010-12-12 14:36:17 +0000 | [diff] [blame] | 2440 | } |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 2441 | } else { |
| 2442 | ret = -EINVAL; |
| 2443 | } |
| 2444 | |
Axel Lin | eba41a5 | 2012-04-04 10:32:10 +0800 | [diff] [blame] | 2445 | /* Call set_voltage_time_sel if successfully obtained old_selector */ |
Mark Brown | 5aff3a8 | 2012-06-26 11:16:58 +0100 | [diff] [blame] | 2446 | if (ret == 0 && _regulator_is_enabled(rdev) && old_selector >= 0 && |
Axel Lin | c66a566 | 2013-02-06 11:09:48 +0800 | [diff] [blame] | 2447 | old_selector != selector && rdev->desc->ops->set_voltage_time_sel) { |
Axel Lin | eba41a5 | 2012-04-04 10:32:10 +0800 | [diff] [blame] | 2448 | |
| 2449 | delay = rdev->desc->ops->set_voltage_time_sel(rdev, |
| 2450 | old_selector, selector); |
| 2451 | if (delay < 0) { |
| 2452 | rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n", |
| 2453 | delay); |
| 2454 | delay = 0; |
| 2455 | } |
Axel Lin | eba41a5 | 2012-04-04 10:32:10 +0800 | [diff] [blame] | 2456 | |
Philip Rakity | 8b96de3 | 2012-06-14 15:07:56 -0700 | [diff] [blame] | 2457 | /* Insert any necessary delays */ |
| 2458 | if (delay >= 1000) { |
| 2459 | mdelay(delay / 1000); |
| 2460 | udelay(delay % 1000); |
| 2461 | } else if (delay) { |
| 2462 | udelay(delay); |
| 2463 | } |
Linus Walleij | 77af1b2 | 2011-03-17 13:24:36 +0100 | [diff] [blame] | 2464 | } |
| 2465 | |
Axel Lin | 2f6c797 | 2012-08-06 23:44:19 +0800 | [diff] [blame] | 2466 | if (ret == 0 && best_val >= 0) { |
| 2467 | unsigned long data = best_val; |
| 2468 | |
Mark Brown | ded06a5 | 2010-12-16 13:59:10 +0000 | [diff] [blame] | 2469 | _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE, |
Axel Lin | 2f6c797 | 2012-08-06 23:44:19 +0800 | [diff] [blame] | 2470 | (void *)data); |
| 2471 | } |
Mark Brown | ded06a5 | 2010-12-16 13:59:10 +0000 | [diff] [blame] | 2472 | |
Axel Lin | eba41a5 | 2012-04-04 10:32:10 +0800 | [diff] [blame] | 2473 | trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val); |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 2474 | |
| 2475 | return ret; |
| 2476 | } |
| 2477 | |
Mark Brown | a7a1ad9 | 2009-07-21 16:00:24 +0100 | [diff] [blame] | 2478 | /** |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2479 | * regulator_set_voltage - set regulator output voltage |
| 2480 | * @regulator: regulator source |
| 2481 | * @min_uV: Minimum required voltage in uV |
| 2482 | * @max_uV: Maximum acceptable voltage in uV |
| 2483 | * |
| 2484 | * Sets a voltage regulator to the desired output voltage. This can be set |
| 2485 | * during any regulator state. IOW, regulator can be disabled or enabled. |
| 2486 | * |
| 2487 | * If the regulator is enabled then the voltage will change to the new value |
| 2488 | * immediately otherwise if the regulator is disabled the regulator will |
| 2489 | * output at the new voltage when enabled. |
| 2490 | * |
| 2491 | * NOTE: If the regulator is shared between several devices then the lowest |
| 2492 | * request voltage that meets the system constraints will be used. |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 2493 | * Regulator system constraints must be set for this regulator before |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2494 | * calling this function otherwise this call will fail. |
| 2495 | */ |
| 2496 | int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV) |
| 2497 | { |
| 2498 | struct regulator_dev *rdev = regulator->rdev; |
Mark Brown | 95a3c23 | 2010-12-16 15:49:37 +0000 | [diff] [blame] | 2499 | int ret = 0; |
Paolo Pisati | 92d7a55 | 2012-12-13 10:13:00 +0100 | [diff] [blame] | 2500 | int old_min_uV, old_max_uV; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2501 | |
| 2502 | mutex_lock(&rdev->mutex); |
| 2503 | |
Mark Brown | 95a3c23 | 2010-12-16 15:49:37 +0000 | [diff] [blame] | 2504 | /* If we're setting the same range as last time the change |
| 2505 | * should be a noop (some cpufreq implementations use the same |
| 2506 | * voltage for multiple frequencies, for example). |
| 2507 | */ |
| 2508 | if (regulator->min_uV == min_uV && regulator->max_uV == max_uV) |
| 2509 | goto out; |
| 2510 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2511 | /* sanity check */ |
Mark Brown | e8eef82 | 2010-12-12 14:36:17 +0000 | [diff] [blame] | 2512 | if (!rdev->desc->ops->set_voltage && |
| 2513 | !rdev->desc->ops->set_voltage_sel) { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2514 | ret = -EINVAL; |
| 2515 | goto out; |
| 2516 | } |
| 2517 | |
| 2518 | /* constraints check */ |
| 2519 | ret = regulator_check_voltage(rdev, &min_uV, &max_uV); |
| 2520 | if (ret < 0) |
| 2521 | goto out; |
Paolo Pisati | 92d7a55 | 2012-12-13 10:13:00 +0100 | [diff] [blame] | 2522 | |
| 2523 | /* restore original values in case of error */ |
| 2524 | old_min_uV = regulator->min_uV; |
| 2525 | old_max_uV = regulator->max_uV; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2526 | regulator->min_uV = min_uV; |
| 2527 | regulator->max_uV = max_uV; |
Mark Brown | 3a93f2a | 2010-11-10 14:38:29 +0000 | [diff] [blame] | 2528 | |
Thomas Petazzoni | 05fda3b1a | 2010-12-03 11:31:07 +0100 | [diff] [blame] | 2529 | ret = regulator_check_consumers(rdev, &min_uV, &max_uV); |
| 2530 | if (ret < 0) |
Paolo Pisati | 92d7a55 | 2012-12-13 10:13:00 +0100 | [diff] [blame] | 2531 | goto out2; |
Thomas Petazzoni | 05fda3b1a | 2010-12-03 11:31:07 +0100 | [diff] [blame] | 2532 | |
Mark Brown | 7579025 | 2010-12-12 14:25:50 +0000 | [diff] [blame] | 2533 | ret = _regulator_do_set_voltage(rdev, min_uV, max_uV); |
Paolo Pisati | 92d7a55 | 2012-12-13 10:13:00 +0100 | [diff] [blame] | 2534 | if (ret < 0) |
| 2535 | goto out2; |
| 2536 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2537 | out: |
| 2538 | mutex_unlock(&rdev->mutex); |
| 2539 | return ret; |
Paolo Pisati | 92d7a55 | 2012-12-13 10:13:00 +0100 | [diff] [blame] | 2540 | out2: |
| 2541 | regulator->min_uV = old_min_uV; |
| 2542 | regulator->max_uV = old_max_uV; |
| 2543 | mutex_unlock(&rdev->mutex); |
| 2544 | return ret; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2545 | } |
| 2546 | EXPORT_SYMBOL_GPL(regulator_set_voltage); |
| 2547 | |
Mark Brown | 606a256 | 2010-12-16 15:49:36 +0000 | [diff] [blame] | 2548 | /** |
Linus Walleij | 88cd222b | 2011-03-17 13:24:52 +0100 | [diff] [blame] | 2549 | * regulator_set_voltage_time - get raise/fall time |
| 2550 | * @regulator: regulator source |
| 2551 | * @old_uV: starting voltage in microvolts |
| 2552 | * @new_uV: target voltage in microvolts |
| 2553 | * |
| 2554 | * Provided with the starting and ending voltage, this function attempts to |
| 2555 | * calculate the time in microseconds required to rise or fall to this new |
| 2556 | * voltage. |
| 2557 | */ |
| 2558 | int regulator_set_voltage_time(struct regulator *regulator, |
| 2559 | int old_uV, int new_uV) |
| 2560 | { |
| 2561 | struct regulator_dev *rdev = regulator->rdev; |
| 2562 | struct regulator_ops *ops = rdev->desc->ops; |
| 2563 | int old_sel = -1; |
| 2564 | int new_sel = -1; |
| 2565 | int voltage; |
| 2566 | int i; |
| 2567 | |
| 2568 | /* Currently requires operations to do this */ |
| 2569 | if (!ops->list_voltage || !ops->set_voltage_time_sel |
| 2570 | || !rdev->desc->n_voltages) |
| 2571 | return -EINVAL; |
| 2572 | |
| 2573 | for (i = 0; i < rdev->desc->n_voltages; i++) { |
| 2574 | /* We only look for exact voltage matches here */ |
| 2575 | voltage = regulator_list_voltage(regulator, i); |
| 2576 | if (voltage < 0) |
| 2577 | return -EINVAL; |
| 2578 | if (voltage == 0) |
| 2579 | continue; |
| 2580 | if (voltage == old_uV) |
| 2581 | old_sel = i; |
| 2582 | if (voltage == new_uV) |
| 2583 | new_sel = i; |
| 2584 | } |
| 2585 | |
| 2586 | if (old_sel < 0 || new_sel < 0) |
| 2587 | return -EINVAL; |
| 2588 | |
| 2589 | return ops->set_voltage_time_sel(rdev, old_sel, new_sel); |
| 2590 | } |
| 2591 | EXPORT_SYMBOL_GPL(regulator_set_voltage_time); |
| 2592 | |
| 2593 | /** |
Randy Dunlap | 296c656 | 2012-08-18 17:44:14 -0700 | [diff] [blame] | 2594 | * regulator_set_voltage_time_sel - get raise/fall time |
| 2595 | * @rdev: regulator source device |
Yadwinder Singh Brar | 98a175b | 2012-06-09 16:40:38 +0530 | [diff] [blame] | 2596 | * @old_selector: selector for starting voltage |
| 2597 | * @new_selector: selector for target voltage |
| 2598 | * |
| 2599 | * Provided with the starting and target voltage selectors, this function |
| 2600 | * returns time in microseconds required to rise or fall to this new voltage |
| 2601 | * |
Axel Lin | f11d08c | 2012-06-19 09:38:45 +0800 | [diff] [blame] | 2602 | * Drivers providing ramp_delay in regulation_constraints can use this as their |
Axel Lin | 398715a | 2012-06-18 10:11:28 +0800 | [diff] [blame] | 2603 | * set_voltage_time_sel() operation. |
Yadwinder Singh Brar | 98a175b | 2012-06-09 16:40:38 +0530 | [diff] [blame] | 2604 | */ |
| 2605 | int regulator_set_voltage_time_sel(struct regulator_dev *rdev, |
| 2606 | unsigned int old_selector, |
| 2607 | unsigned int new_selector) |
| 2608 | { |
Axel Lin | 398715a | 2012-06-18 10:11:28 +0800 | [diff] [blame] | 2609 | unsigned int ramp_delay = 0; |
Axel Lin | f11d08c | 2012-06-19 09:38:45 +0800 | [diff] [blame] | 2610 | int old_volt, new_volt; |
Axel Lin | 398715a | 2012-06-18 10:11:28 +0800 | [diff] [blame] | 2611 | |
| 2612 | if (rdev->constraints->ramp_delay) |
| 2613 | ramp_delay = rdev->constraints->ramp_delay; |
| 2614 | else if (rdev->desc->ramp_delay) |
| 2615 | ramp_delay = rdev->desc->ramp_delay; |
| 2616 | |
| 2617 | if (ramp_delay == 0) { |
Yadwinder Singh Brar | 6f0b2c6 | 2012-06-11 17:41:08 +0530 | [diff] [blame] | 2618 | rdev_warn(rdev, "ramp_delay not set\n"); |
Axel Lin | 398715a | 2012-06-18 10:11:28 +0800 | [diff] [blame] | 2619 | return 0; |
Yadwinder Singh Brar | 6f0b2c6 | 2012-06-11 17:41:08 +0530 | [diff] [blame] | 2620 | } |
Axel Lin | 398715a | 2012-06-18 10:11:28 +0800 | [diff] [blame] | 2621 | |
Axel Lin | f11d08c | 2012-06-19 09:38:45 +0800 | [diff] [blame] | 2622 | /* sanity check */ |
| 2623 | if (!rdev->desc->ops->list_voltage) |
| 2624 | return -EINVAL; |
Axel Lin | 398715a | 2012-06-18 10:11:28 +0800 | [diff] [blame] | 2625 | |
Axel Lin | f11d08c | 2012-06-19 09:38:45 +0800 | [diff] [blame] | 2626 | old_volt = rdev->desc->ops->list_voltage(rdev, old_selector); |
| 2627 | new_volt = rdev->desc->ops->list_voltage(rdev, new_selector); |
| 2628 | |
| 2629 | return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay); |
Yadwinder Singh Brar | 98a175b | 2012-06-09 16:40:38 +0530 | [diff] [blame] | 2630 | } |
Mark Brown | b19dbf7 | 2012-06-23 11:34:20 +0100 | [diff] [blame] | 2631 | EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel); |
Yadwinder Singh Brar | 98a175b | 2012-06-09 16:40:38 +0530 | [diff] [blame] | 2632 | |
| 2633 | /** |
Mark Brown | 606a256 | 2010-12-16 15:49:36 +0000 | [diff] [blame] | 2634 | * regulator_sync_voltage - re-apply last regulator output voltage |
| 2635 | * @regulator: regulator source |
| 2636 | * |
| 2637 | * Re-apply the last configured voltage. This is intended to be used |
| 2638 | * where some external control source the consumer is cooperating with |
| 2639 | * has caused the configured voltage to change. |
| 2640 | */ |
| 2641 | int regulator_sync_voltage(struct regulator *regulator) |
| 2642 | { |
| 2643 | struct regulator_dev *rdev = regulator->rdev; |
| 2644 | int ret, min_uV, max_uV; |
| 2645 | |
| 2646 | mutex_lock(&rdev->mutex); |
| 2647 | |
| 2648 | if (!rdev->desc->ops->set_voltage && |
| 2649 | !rdev->desc->ops->set_voltage_sel) { |
| 2650 | ret = -EINVAL; |
| 2651 | goto out; |
| 2652 | } |
| 2653 | |
| 2654 | /* This is only going to work if we've had a voltage configured. */ |
| 2655 | if (!regulator->min_uV && !regulator->max_uV) { |
| 2656 | ret = -EINVAL; |
| 2657 | goto out; |
| 2658 | } |
| 2659 | |
| 2660 | min_uV = regulator->min_uV; |
| 2661 | max_uV = regulator->max_uV; |
| 2662 | |
| 2663 | /* This should be a paranoia check... */ |
| 2664 | ret = regulator_check_voltage(rdev, &min_uV, &max_uV); |
| 2665 | if (ret < 0) |
| 2666 | goto out; |
| 2667 | |
| 2668 | ret = regulator_check_consumers(rdev, &min_uV, &max_uV); |
| 2669 | if (ret < 0) |
| 2670 | goto out; |
| 2671 | |
| 2672 | ret = _regulator_do_set_voltage(rdev, min_uV, max_uV); |
| 2673 | |
| 2674 | out: |
| 2675 | mutex_unlock(&rdev->mutex); |
| 2676 | return ret; |
| 2677 | } |
| 2678 | EXPORT_SYMBOL_GPL(regulator_sync_voltage); |
| 2679 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2680 | static int _regulator_get_voltage(struct regulator_dev *rdev) |
| 2681 | { |
Mark Brown | bf5892a | 2011-05-08 22:13:37 +0100 | [diff] [blame] | 2682 | int sel, ret; |
Mark Brown | 476c2d8 | 2010-12-10 17:28:07 +0000 | [diff] [blame] | 2683 | |
| 2684 | if (rdev->desc->ops->get_voltage_sel) { |
| 2685 | sel = rdev->desc->ops->get_voltage_sel(rdev); |
| 2686 | if (sel < 0) |
| 2687 | return sel; |
Mark Brown | bf5892a | 2011-05-08 22:13:37 +0100 | [diff] [blame] | 2688 | ret = rdev->desc->ops->list_voltage(rdev, sel); |
Axel Lin | cb220d1 | 2011-05-23 20:08:10 +0800 | [diff] [blame] | 2689 | } else if (rdev->desc->ops->get_voltage) { |
Mark Brown | bf5892a | 2011-05-08 22:13:37 +0100 | [diff] [blame] | 2690 | ret = rdev->desc->ops->get_voltage(rdev); |
Mark Brown | f7df20e | 2012-08-09 16:42:19 +0100 | [diff] [blame] | 2691 | } else if (rdev->desc->ops->list_voltage) { |
| 2692 | ret = rdev->desc->ops->list_voltage(rdev, 0); |
Axel Lin | cb220d1 | 2011-05-23 20:08:10 +0800 | [diff] [blame] | 2693 | } else { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2694 | return -EINVAL; |
Axel Lin | cb220d1 | 2011-05-23 20:08:10 +0800 | [diff] [blame] | 2695 | } |
Mark Brown | bf5892a | 2011-05-08 22:13:37 +0100 | [diff] [blame] | 2696 | |
Axel Lin | cb220d1 | 2011-05-23 20:08:10 +0800 | [diff] [blame] | 2697 | if (ret < 0) |
| 2698 | return ret; |
Mark Brown | bf5892a | 2011-05-08 22:13:37 +0100 | [diff] [blame] | 2699 | return ret - rdev->constraints->uV_offset; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2700 | } |
| 2701 | |
| 2702 | /** |
| 2703 | * regulator_get_voltage - get regulator output voltage |
| 2704 | * @regulator: regulator source |
| 2705 | * |
| 2706 | * This returns the current regulator voltage in uV. |
| 2707 | * |
| 2708 | * NOTE: If the regulator is disabled it will return the voltage value. This |
| 2709 | * function should not be used to determine regulator state. |
| 2710 | */ |
| 2711 | int regulator_get_voltage(struct regulator *regulator) |
| 2712 | { |
| 2713 | int ret; |
| 2714 | |
| 2715 | mutex_lock(®ulator->rdev->mutex); |
| 2716 | |
| 2717 | ret = _regulator_get_voltage(regulator->rdev); |
| 2718 | |
| 2719 | mutex_unlock(®ulator->rdev->mutex); |
| 2720 | |
| 2721 | return ret; |
| 2722 | } |
| 2723 | EXPORT_SYMBOL_GPL(regulator_get_voltage); |
| 2724 | |
| 2725 | /** |
| 2726 | * regulator_set_current_limit - set regulator output current limit |
| 2727 | * @regulator: regulator source |
Charles Keepax | ce0d10f | 2013-05-21 15:04:07 +0100 | [diff] [blame] | 2728 | * @min_uA: Minimum supported current in uA |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2729 | * @max_uA: Maximum supported current in uA |
| 2730 | * |
| 2731 | * Sets current sink to the desired output current. This can be set during |
| 2732 | * any regulator state. IOW, regulator can be disabled or enabled. |
| 2733 | * |
| 2734 | * If the regulator is enabled then the current will change to the new value |
| 2735 | * immediately otherwise if the regulator is disabled the regulator will |
| 2736 | * output at the new current when enabled. |
| 2737 | * |
| 2738 | * NOTE: Regulator system constraints must be set for this regulator before |
| 2739 | * calling this function otherwise this call will fail. |
| 2740 | */ |
| 2741 | int regulator_set_current_limit(struct regulator *regulator, |
| 2742 | int min_uA, int max_uA) |
| 2743 | { |
| 2744 | struct regulator_dev *rdev = regulator->rdev; |
| 2745 | int ret; |
| 2746 | |
| 2747 | mutex_lock(&rdev->mutex); |
| 2748 | |
| 2749 | /* sanity check */ |
| 2750 | if (!rdev->desc->ops->set_current_limit) { |
| 2751 | ret = -EINVAL; |
| 2752 | goto out; |
| 2753 | } |
| 2754 | |
| 2755 | /* constraints check */ |
| 2756 | ret = regulator_check_current_limit(rdev, &min_uA, &max_uA); |
| 2757 | if (ret < 0) |
| 2758 | goto out; |
| 2759 | |
| 2760 | ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA); |
| 2761 | out: |
| 2762 | mutex_unlock(&rdev->mutex); |
| 2763 | return ret; |
| 2764 | } |
| 2765 | EXPORT_SYMBOL_GPL(regulator_set_current_limit); |
| 2766 | |
| 2767 | static int _regulator_get_current_limit(struct regulator_dev *rdev) |
| 2768 | { |
| 2769 | int ret; |
| 2770 | |
| 2771 | mutex_lock(&rdev->mutex); |
| 2772 | |
| 2773 | /* sanity check */ |
| 2774 | if (!rdev->desc->ops->get_current_limit) { |
| 2775 | ret = -EINVAL; |
| 2776 | goto out; |
| 2777 | } |
| 2778 | |
| 2779 | ret = rdev->desc->ops->get_current_limit(rdev); |
| 2780 | out: |
| 2781 | mutex_unlock(&rdev->mutex); |
| 2782 | return ret; |
| 2783 | } |
| 2784 | |
| 2785 | /** |
| 2786 | * regulator_get_current_limit - get regulator output current |
| 2787 | * @regulator: regulator source |
| 2788 | * |
| 2789 | * This returns the current supplied by the specified current sink in uA. |
| 2790 | * |
| 2791 | * NOTE: If the regulator is disabled it will return the current value. This |
| 2792 | * function should not be used to determine regulator state. |
| 2793 | */ |
| 2794 | int regulator_get_current_limit(struct regulator *regulator) |
| 2795 | { |
| 2796 | return _regulator_get_current_limit(regulator->rdev); |
| 2797 | } |
| 2798 | EXPORT_SYMBOL_GPL(regulator_get_current_limit); |
| 2799 | |
| 2800 | /** |
| 2801 | * regulator_set_mode - set regulator operating mode |
| 2802 | * @regulator: regulator source |
| 2803 | * @mode: operating mode - one of the REGULATOR_MODE constants |
| 2804 | * |
| 2805 | * Set regulator operating mode to increase regulator efficiency or improve |
| 2806 | * regulation performance. |
| 2807 | * |
| 2808 | * NOTE: Regulator system constraints must be set for this regulator before |
| 2809 | * calling this function otherwise this call will fail. |
| 2810 | */ |
| 2811 | int regulator_set_mode(struct regulator *regulator, unsigned int mode) |
| 2812 | { |
| 2813 | struct regulator_dev *rdev = regulator->rdev; |
| 2814 | int ret; |
Sundar R Iyer | 500b4ac | 2010-05-17 21:24:48 +0530 | [diff] [blame] | 2815 | int regulator_curr_mode; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2816 | |
| 2817 | mutex_lock(&rdev->mutex); |
| 2818 | |
| 2819 | /* sanity check */ |
| 2820 | if (!rdev->desc->ops->set_mode) { |
| 2821 | ret = -EINVAL; |
| 2822 | goto out; |
| 2823 | } |
| 2824 | |
Sundar R Iyer | 500b4ac | 2010-05-17 21:24:48 +0530 | [diff] [blame] | 2825 | /* return if the same mode is requested */ |
| 2826 | if (rdev->desc->ops->get_mode) { |
| 2827 | regulator_curr_mode = rdev->desc->ops->get_mode(rdev); |
| 2828 | if (regulator_curr_mode == mode) { |
| 2829 | ret = 0; |
| 2830 | goto out; |
| 2831 | } |
| 2832 | } |
| 2833 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2834 | /* constraints check */ |
Axel Lin | 22c51b4 | 2011-04-01 18:25:25 +0800 | [diff] [blame] | 2835 | ret = regulator_mode_constrain(rdev, &mode); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2836 | if (ret < 0) |
| 2837 | goto out; |
| 2838 | |
| 2839 | ret = rdev->desc->ops->set_mode(rdev, mode); |
| 2840 | out: |
| 2841 | mutex_unlock(&rdev->mutex); |
| 2842 | return ret; |
| 2843 | } |
| 2844 | EXPORT_SYMBOL_GPL(regulator_set_mode); |
| 2845 | |
| 2846 | static unsigned int _regulator_get_mode(struct regulator_dev *rdev) |
| 2847 | { |
| 2848 | int ret; |
| 2849 | |
| 2850 | mutex_lock(&rdev->mutex); |
| 2851 | |
| 2852 | /* sanity check */ |
| 2853 | if (!rdev->desc->ops->get_mode) { |
| 2854 | ret = -EINVAL; |
| 2855 | goto out; |
| 2856 | } |
| 2857 | |
| 2858 | ret = rdev->desc->ops->get_mode(rdev); |
| 2859 | out: |
| 2860 | mutex_unlock(&rdev->mutex); |
| 2861 | return ret; |
| 2862 | } |
| 2863 | |
| 2864 | /** |
| 2865 | * regulator_get_mode - get regulator operating mode |
| 2866 | * @regulator: regulator source |
| 2867 | * |
| 2868 | * Get the current regulator operating mode. |
| 2869 | */ |
| 2870 | unsigned int regulator_get_mode(struct regulator *regulator) |
| 2871 | { |
| 2872 | return _regulator_get_mode(regulator->rdev); |
| 2873 | } |
| 2874 | EXPORT_SYMBOL_GPL(regulator_get_mode); |
| 2875 | |
| 2876 | /** |
| 2877 | * regulator_set_optimum_mode - set regulator optimum operating mode |
| 2878 | * @regulator: regulator source |
| 2879 | * @uA_load: load current |
| 2880 | * |
| 2881 | * Notifies the regulator core of a new device load. This is then used by |
| 2882 | * DRMS (if enabled by constraints) to set the most efficient regulator |
| 2883 | * operating mode for the new regulator loading. |
| 2884 | * |
| 2885 | * Consumer devices notify their supply regulator of the maximum power |
| 2886 | * they will require (can be taken from device datasheet in the power |
| 2887 | * consumption tables) when they change operational status and hence power |
| 2888 | * state. Examples of operational state changes that can affect power |
| 2889 | * consumption are :- |
| 2890 | * |
| 2891 | * o Device is opened / closed. |
| 2892 | * o Device I/O is about to begin or has just finished. |
| 2893 | * o Device is idling in between work. |
| 2894 | * |
| 2895 | * This information is also exported via sysfs to userspace. |
| 2896 | * |
| 2897 | * DRMS will sum the total requested load on the regulator and change |
| 2898 | * to the most efficient operating mode if platform constraints allow. |
| 2899 | * |
| 2900 | * Returns the new regulator mode or error. |
| 2901 | */ |
| 2902 | int regulator_set_optimum_mode(struct regulator *regulator, int uA_load) |
| 2903 | { |
| 2904 | struct regulator_dev *rdev = regulator->rdev; |
| 2905 | struct regulator *consumer; |
Stephen Boyd | d92d95b6 | 2012-07-02 19:21:06 -0700 | [diff] [blame] | 2906 | int ret, output_uV, input_uV = 0, total_uA_load = 0; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2907 | unsigned int mode; |
| 2908 | |
Stephen Boyd | d92d95b6 | 2012-07-02 19:21:06 -0700 | [diff] [blame] | 2909 | if (rdev->supply) |
| 2910 | input_uV = regulator_get_voltage(rdev->supply); |
| 2911 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2912 | mutex_lock(&rdev->mutex); |
| 2913 | |
Mark Brown | a4b4148 | 2011-05-14 11:19:45 -0700 | [diff] [blame] | 2914 | /* |
| 2915 | * first check to see if we can set modes at all, otherwise just |
| 2916 | * tell the consumer everything is OK. |
| 2917 | */ |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2918 | regulator->uA_load = uA_load; |
| 2919 | ret = regulator_check_drms(rdev); |
Mark Brown | a4b4148 | 2011-05-14 11:19:45 -0700 | [diff] [blame] | 2920 | if (ret < 0) { |
| 2921 | ret = 0; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2922 | goto out; |
Mark Brown | a4b4148 | 2011-05-14 11:19:45 -0700 | [diff] [blame] | 2923 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2924 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2925 | if (!rdev->desc->ops->get_optimum_mode) |
| 2926 | goto out; |
| 2927 | |
Mark Brown | a4b4148 | 2011-05-14 11:19:45 -0700 | [diff] [blame] | 2928 | /* |
| 2929 | * we can actually do this so any errors are indicators of |
| 2930 | * potential real failure. |
| 2931 | */ |
| 2932 | ret = -EINVAL; |
| 2933 | |
Axel Lin | 854ccba | 2012-04-16 18:44:23 +0800 | [diff] [blame] | 2934 | if (!rdev->desc->ops->set_mode) |
| 2935 | goto out; |
| 2936 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2937 | /* get output voltage */ |
Mark Brown | 1bf5a1f | 2010-12-10 17:28:06 +0000 | [diff] [blame] | 2938 | output_uV = _regulator_get_voltage(rdev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2939 | if (output_uV <= 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 2940 | rdev_err(rdev, "invalid output voltage found\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2941 | goto out; |
| 2942 | } |
| 2943 | |
Stephen Boyd | d92d95b6 | 2012-07-02 19:21:06 -0700 | [diff] [blame] | 2944 | /* No supply? Use constraint voltage */ |
Mark Brown | 1bf5a1f | 2010-12-10 17:28:06 +0000 | [diff] [blame] | 2945 | if (input_uV <= 0) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2946 | input_uV = rdev->constraints->input_uV; |
| 2947 | if (input_uV <= 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 2948 | rdev_err(rdev, "invalid input voltage found\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2949 | goto out; |
| 2950 | } |
| 2951 | |
| 2952 | /* calc total requested load for this regulator */ |
| 2953 | list_for_each_entry(consumer, &rdev->consumer_list, list) |
Stefan Roese | fa2984d | 2009-11-27 15:56:34 +0100 | [diff] [blame] | 2954 | total_uA_load += consumer->uA_load; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2955 | |
| 2956 | mode = rdev->desc->ops->get_optimum_mode(rdev, |
| 2957 | input_uV, output_uV, |
| 2958 | total_uA_load); |
Mark Brown | 2c60823 | 2011-03-30 06:29:12 +0900 | [diff] [blame] | 2959 | ret = regulator_mode_constrain(rdev, &mode); |
David Brownell | e573520 | 2008-11-16 11:46:56 -0800 | [diff] [blame] | 2960 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 2961 | rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n", |
| 2962 | total_uA_load, input_uV, output_uV); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2963 | goto out; |
| 2964 | } |
| 2965 | |
| 2966 | ret = rdev->desc->ops->set_mode(rdev, mode); |
David Brownell | e573520 | 2008-11-16 11:46:56 -0800 | [diff] [blame] | 2967 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 2968 | rdev_err(rdev, "failed to set optimum mode %x\n", mode); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 2969 | goto out; |
| 2970 | } |
| 2971 | ret = mode; |
| 2972 | out: |
| 2973 | mutex_unlock(&rdev->mutex); |
| 2974 | return ret; |
| 2975 | } |
| 2976 | EXPORT_SYMBOL_GPL(regulator_set_optimum_mode); |
| 2977 | |
| 2978 | /** |
Mark Brown | df36793 | 2012-08-27 16:04:23 -0700 | [diff] [blame] | 2979 | * regulator_set_bypass_regmap - Default set_bypass() using regmap |
| 2980 | * |
| 2981 | * @rdev: device to operate on. |
| 2982 | * @enable: state to set. |
| 2983 | */ |
| 2984 | int regulator_set_bypass_regmap(struct regulator_dev *rdev, bool enable) |
| 2985 | { |
| 2986 | unsigned int val; |
| 2987 | |
| 2988 | if (enable) |
| 2989 | val = rdev->desc->bypass_mask; |
| 2990 | else |
| 2991 | val = 0; |
| 2992 | |
| 2993 | return regmap_update_bits(rdev->regmap, rdev->desc->bypass_reg, |
| 2994 | rdev->desc->bypass_mask, val); |
| 2995 | } |
| 2996 | EXPORT_SYMBOL_GPL(regulator_set_bypass_regmap); |
| 2997 | |
| 2998 | /** |
| 2999 | * regulator_get_bypass_regmap - Default get_bypass() using regmap |
| 3000 | * |
| 3001 | * @rdev: device to operate on. |
| 3002 | * @enable: current state. |
| 3003 | */ |
| 3004 | int regulator_get_bypass_regmap(struct regulator_dev *rdev, bool *enable) |
| 3005 | { |
| 3006 | unsigned int val; |
| 3007 | int ret; |
| 3008 | |
| 3009 | ret = regmap_read(rdev->regmap, rdev->desc->bypass_reg, &val); |
| 3010 | if (ret != 0) |
| 3011 | return ret; |
| 3012 | |
| 3013 | *enable = val & rdev->desc->bypass_mask; |
| 3014 | |
| 3015 | return 0; |
| 3016 | } |
| 3017 | EXPORT_SYMBOL_GPL(regulator_get_bypass_regmap); |
| 3018 | |
| 3019 | /** |
Mark Brown | f59c8f9 | 2012-08-31 10:36:37 -0700 | [diff] [blame] | 3020 | * regulator_allow_bypass - allow the regulator to go into bypass mode |
| 3021 | * |
| 3022 | * @regulator: Regulator to configure |
Nishanth Menon | 9345dfb | 2013-02-28 18:44:54 -0600 | [diff] [blame] | 3023 | * @enable: enable or disable bypass mode |
Mark Brown | f59c8f9 | 2012-08-31 10:36:37 -0700 | [diff] [blame] | 3024 | * |
| 3025 | * Allow the regulator to go into bypass mode if all other consumers |
| 3026 | * for the regulator also enable bypass mode and the machine |
| 3027 | * constraints allow this. Bypass mode means that the regulator is |
| 3028 | * simply passing the input directly to the output with no regulation. |
| 3029 | */ |
| 3030 | int regulator_allow_bypass(struct regulator *regulator, bool enable) |
| 3031 | { |
| 3032 | struct regulator_dev *rdev = regulator->rdev; |
| 3033 | int ret = 0; |
| 3034 | |
| 3035 | if (!rdev->desc->ops->set_bypass) |
| 3036 | return 0; |
| 3037 | |
| 3038 | if (rdev->constraints && |
| 3039 | !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS)) |
| 3040 | return 0; |
| 3041 | |
| 3042 | mutex_lock(&rdev->mutex); |
| 3043 | |
| 3044 | if (enable && !regulator->bypass) { |
| 3045 | rdev->bypass_count++; |
| 3046 | |
| 3047 | if (rdev->bypass_count == rdev->open_count) { |
| 3048 | ret = rdev->desc->ops->set_bypass(rdev, enable); |
| 3049 | if (ret != 0) |
| 3050 | rdev->bypass_count--; |
| 3051 | } |
| 3052 | |
| 3053 | } else if (!enable && regulator->bypass) { |
| 3054 | rdev->bypass_count--; |
| 3055 | |
| 3056 | if (rdev->bypass_count != rdev->open_count) { |
| 3057 | ret = rdev->desc->ops->set_bypass(rdev, enable); |
| 3058 | if (ret != 0) |
| 3059 | rdev->bypass_count++; |
| 3060 | } |
| 3061 | } |
| 3062 | |
| 3063 | if (ret == 0) |
| 3064 | regulator->bypass = enable; |
| 3065 | |
| 3066 | mutex_unlock(&rdev->mutex); |
| 3067 | |
| 3068 | return ret; |
| 3069 | } |
| 3070 | EXPORT_SYMBOL_GPL(regulator_allow_bypass); |
| 3071 | |
| 3072 | /** |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3073 | * regulator_register_notifier - register regulator event notifier |
| 3074 | * @regulator: regulator source |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 3075 | * @nb: notifier block |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3076 | * |
| 3077 | * Register notifier block to receive regulator events. |
| 3078 | */ |
| 3079 | int regulator_register_notifier(struct regulator *regulator, |
| 3080 | struct notifier_block *nb) |
| 3081 | { |
| 3082 | return blocking_notifier_chain_register(®ulator->rdev->notifier, |
| 3083 | nb); |
| 3084 | } |
| 3085 | EXPORT_SYMBOL_GPL(regulator_register_notifier); |
| 3086 | |
| 3087 | /** |
| 3088 | * regulator_unregister_notifier - unregister regulator event notifier |
| 3089 | * @regulator: regulator source |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 3090 | * @nb: notifier block |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3091 | * |
| 3092 | * Unregister regulator event notifier block. |
| 3093 | */ |
| 3094 | int regulator_unregister_notifier(struct regulator *regulator, |
| 3095 | struct notifier_block *nb) |
| 3096 | { |
| 3097 | return blocking_notifier_chain_unregister(®ulator->rdev->notifier, |
| 3098 | nb); |
| 3099 | } |
| 3100 | EXPORT_SYMBOL_GPL(regulator_unregister_notifier); |
| 3101 | |
Jonathan Cameron | b136fb4 | 2009-01-19 18:20:58 +0000 | [diff] [blame] | 3102 | /* notify regulator consumers and downstream regulator consumers. |
| 3103 | * Note mutex must be held by caller. |
| 3104 | */ |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3105 | static void _notifier_call_chain(struct regulator_dev *rdev, |
| 3106 | unsigned long event, void *data) |
| 3107 | { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3108 | /* call rdev chain first */ |
Mark Brown | d8493d2 | 2012-06-15 19:09:09 +0100 | [diff] [blame] | 3109 | blocking_notifier_call_chain(&rdev->notifier, event, data); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3110 | } |
| 3111 | |
| 3112 | /** |
| 3113 | * regulator_bulk_get - get multiple regulator consumers |
| 3114 | * |
| 3115 | * @dev: Device to supply |
| 3116 | * @num_consumers: Number of consumers to register |
| 3117 | * @consumers: Configuration of consumers; clients are stored here. |
| 3118 | * |
| 3119 | * @return 0 on success, an errno on failure. |
| 3120 | * |
| 3121 | * This helper function allows drivers to get several regulator |
| 3122 | * consumers in one operation. If any of the regulators cannot be |
| 3123 | * acquired then any regulators that were allocated will be freed |
| 3124 | * before returning to the caller. |
| 3125 | */ |
| 3126 | int regulator_bulk_get(struct device *dev, int num_consumers, |
| 3127 | struct regulator_bulk_data *consumers) |
| 3128 | { |
| 3129 | int i; |
| 3130 | int ret; |
| 3131 | |
| 3132 | for (i = 0; i < num_consumers; i++) |
| 3133 | consumers[i].consumer = NULL; |
| 3134 | |
| 3135 | for (i = 0; i < num_consumers; i++) { |
| 3136 | consumers[i].consumer = regulator_get(dev, |
| 3137 | consumers[i].supply); |
| 3138 | if (IS_ERR(consumers[i].consumer)) { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3139 | ret = PTR_ERR(consumers[i].consumer); |
Mark Brown | 5b30762 | 2009-10-13 13:06:49 +0100 | [diff] [blame] | 3140 | dev_err(dev, "Failed to get supply '%s': %d\n", |
| 3141 | consumers[i].supply, ret); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3142 | consumers[i].consumer = NULL; |
| 3143 | goto err; |
| 3144 | } |
| 3145 | } |
| 3146 | |
| 3147 | return 0; |
| 3148 | |
| 3149 | err: |
Axel Lin | b29c769 | 2012-02-20 10:32:16 +0800 | [diff] [blame] | 3150 | while (--i >= 0) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3151 | regulator_put(consumers[i].consumer); |
| 3152 | |
| 3153 | return ret; |
| 3154 | } |
| 3155 | EXPORT_SYMBOL_GPL(regulator_bulk_get); |
| 3156 | |
Mark Brown | e6e7403 | 2012-01-20 20:10:08 +0000 | [diff] [blame] | 3157 | /** |
| 3158 | * devm_regulator_bulk_get - managed get multiple regulator consumers |
| 3159 | * |
| 3160 | * @dev: Device to supply |
| 3161 | * @num_consumers: Number of consumers to register |
| 3162 | * @consumers: Configuration of consumers; clients are stored here. |
| 3163 | * |
| 3164 | * @return 0 on success, an errno on failure. |
| 3165 | * |
| 3166 | * This helper function allows drivers to get several regulator |
| 3167 | * consumers in one operation with management, the regulators will |
| 3168 | * automatically be freed when the device is unbound. If any of the |
| 3169 | * regulators cannot be acquired then any regulators that were |
| 3170 | * allocated will be freed before returning to the caller. |
| 3171 | */ |
| 3172 | int devm_regulator_bulk_get(struct device *dev, int num_consumers, |
| 3173 | struct regulator_bulk_data *consumers) |
| 3174 | { |
| 3175 | int i; |
| 3176 | int ret; |
| 3177 | |
| 3178 | for (i = 0; i < num_consumers; i++) |
| 3179 | consumers[i].consumer = NULL; |
| 3180 | |
| 3181 | for (i = 0; i < num_consumers; i++) { |
| 3182 | consumers[i].consumer = devm_regulator_get(dev, |
| 3183 | consumers[i].supply); |
| 3184 | if (IS_ERR(consumers[i].consumer)) { |
| 3185 | ret = PTR_ERR(consumers[i].consumer); |
| 3186 | dev_err(dev, "Failed to get supply '%s': %d\n", |
| 3187 | consumers[i].supply, ret); |
| 3188 | consumers[i].consumer = NULL; |
| 3189 | goto err; |
| 3190 | } |
| 3191 | } |
| 3192 | |
| 3193 | return 0; |
| 3194 | |
| 3195 | err: |
| 3196 | for (i = 0; i < num_consumers && consumers[i].consumer; i++) |
| 3197 | devm_regulator_put(consumers[i].consumer); |
| 3198 | |
| 3199 | return ret; |
| 3200 | } |
| 3201 | EXPORT_SYMBOL_GPL(devm_regulator_bulk_get); |
| 3202 | |
Mark Brown | f21e0e8 | 2011-05-24 08:12:40 +0800 | [diff] [blame] | 3203 | static void regulator_bulk_enable_async(void *data, async_cookie_t cookie) |
| 3204 | { |
| 3205 | struct regulator_bulk_data *bulk = data; |
| 3206 | |
| 3207 | bulk->ret = regulator_enable(bulk->consumer); |
| 3208 | } |
| 3209 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3210 | /** |
| 3211 | * regulator_bulk_enable - enable multiple regulator consumers |
| 3212 | * |
| 3213 | * @num_consumers: Number of consumers |
| 3214 | * @consumers: Consumer data; clients are stored here. |
| 3215 | * @return 0 on success, an errno on failure |
| 3216 | * |
| 3217 | * This convenience API allows consumers to enable multiple regulator |
| 3218 | * clients in a single API call. If any consumers cannot be enabled |
| 3219 | * then any others that were enabled will be disabled again prior to |
| 3220 | * return. |
| 3221 | */ |
| 3222 | int regulator_bulk_enable(int num_consumers, |
| 3223 | struct regulator_bulk_data *consumers) |
| 3224 | { |
Dan Williams | 2955b47 | 2012-07-09 19:33:25 -0700 | [diff] [blame] | 3225 | ASYNC_DOMAIN_EXCLUSIVE(async_domain); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3226 | int i; |
Mark Brown | f21e0e8 | 2011-05-24 08:12:40 +0800 | [diff] [blame] | 3227 | int ret = 0; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3228 | |
Mark Brown | 6492bc1 | 2012-04-19 13:19:07 +0100 | [diff] [blame] | 3229 | for (i = 0; i < num_consumers; i++) { |
| 3230 | if (consumers[i].consumer->always_on) |
| 3231 | consumers[i].ret = 0; |
| 3232 | else |
| 3233 | async_schedule_domain(regulator_bulk_enable_async, |
| 3234 | &consumers[i], &async_domain); |
| 3235 | } |
Mark Brown | f21e0e8 | 2011-05-24 08:12:40 +0800 | [diff] [blame] | 3236 | |
| 3237 | async_synchronize_full_domain(&async_domain); |
| 3238 | |
| 3239 | /* If any consumer failed we need to unwind any that succeeded */ |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3240 | for (i = 0; i < num_consumers; i++) { |
Mark Brown | f21e0e8 | 2011-05-24 08:12:40 +0800 | [diff] [blame] | 3241 | if (consumers[i].ret != 0) { |
| 3242 | ret = consumers[i].ret; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3243 | goto err; |
Mark Brown | f21e0e8 | 2011-05-24 08:12:40 +0800 | [diff] [blame] | 3244 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3245 | } |
| 3246 | |
| 3247 | return 0; |
| 3248 | |
| 3249 | err: |
Andrzej Hajda | fbe3105 | 2013-03-01 12:24:05 +0100 | [diff] [blame] | 3250 | for (i = 0; i < num_consumers; i++) { |
| 3251 | if (consumers[i].ret < 0) |
| 3252 | pr_err("Failed to enable %s: %d\n", consumers[i].supply, |
| 3253 | consumers[i].ret); |
| 3254 | else |
| 3255 | regulator_disable(consumers[i].consumer); |
| 3256 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3257 | |
| 3258 | return ret; |
| 3259 | } |
| 3260 | EXPORT_SYMBOL_GPL(regulator_bulk_enable); |
| 3261 | |
| 3262 | /** |
| 3263 | * regulator_bulk_disable - disable multiple regulator consumers |
| 3264 | * |
| 3265 | * @num_consumers: Number of consumers |
| 3266 | * @consumers: Consumer data; clients are stored here. |
| 3267 | * @return 0 on success, an errno on failure |
| 3268 | * |
| 3269 | * This convenience API allows consumers to disable multiple regulator |
Sylwester Nawrocki | 49e2263 | 2012-01-25 12:35:38 +0100 | [diff] [blame] | 3270 | * clients in a single API call. If any consumers cannot be disabled |
| 3271 | * then any others that were disabled will be enabled again prior to |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3272 | * return. |
| 3273 | */ |
| 3274 | int regulator_bulk_disable(int num_consumers, |
| 3275 | struct regulator_bulk_data *consumers) |
| 3276 | { |
| 3277 | int i; |
Mark Brown | 01e86f4 | 2012-03-28 21:36:38 +0100 | [diff] [blame] | 3278 | int ret, r; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3279 | |
Sylwester Nawrocki | 49e2263 | 2012-01-25 12:35:38 +0100 | [diff] [blame] | 3280 | for (i = num_consumers - 1; i >= 0; --i) { |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3281 | ret = regulator_disable(consumers[i].consumer); |
| 3282 | if (ret != 0) |
| 3283 | goto err; |
| 3284 | } |
| 3285 | |
| 3286 | return 0; |
| 3287 | |
| 3288 | err: |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 3289 | pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret); |
Mark Brown | 01e86f4 | 2012-03-28 21:36:38 +0100 | [diff] [blame] | 3290 | for (++i; i < num_consumers; ++i) { |
| 3291 | r = regulator_enable(consumers[i].consumer); |
| 3292 | if (r != 0) |
| 3293 | pr_err("Failed to reename %s: %d\n", |
| 3294 | consumers[i].supply, r); |
| 3295 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3296 | |
| 3297 | return ret; |
| 3298 | } |
| 3299 | EXPORT_SYMBOL_GPL(regulator_bulk_disable); |
| 3300 | |
| 3301 | /** |
Donggeun Kim | e1de2f4 | 2012-01-03 16:22:03 +0900 | [diff] [blame] | 3302 | * regulator_bulk_force_disable - force disable multiple regulator consumers |
| 3303 | * |
| 3304 | * @num_consumers: Number of consumers |
| 3305 | * @consumers: Consumer data; clients are stored here. |
| 3306 | * @return 0 on success, an errno on failure |
| 3307 | * |
| 3308 | * This convenience API allows consumers to forcibly disable multiple regulator |
| 3309 | * clients in a single API call. |
| 3310 | * NOTE: This should be used for situations when device damage will |
| 3311 | * likely occur if the regulators are not disabled (e.g. over temp). |
| 3312 | * Although regulator_force_disable function call for some consumers can |
| 3313 | * return error numbers, the function is called for all consumers. |
| 3314 | */ |
| 3315 | int regulator_bulk_force_disable(int num_consumers, |
| 3316 | struct regulator_bulk_data *consumers) |
| 3317 | { |
| 3318 | int i; |
| 3319 | int ret; |
| 3320 | |
| 3321 | for (i = 0; i < num_consumers; i++) |
| 3322 | consumers[i].ret = |
| 3323 | regulator_force_disable(consumers[i].consumer); |
| 3324 | |
| 3325 | for (i = 0; i < num_consumers; i++) { |
| 3326 | if (consumers[i].ret != 0) { |
| 3327 | ret = consumers[i].ret; |
| 3328 | goto out; |
| 3329 | } |
| 3330 | } |
| 3331 | |
| 3332 | return 0; |
| 3333 | out: |
| 3334 | return ret; |
| 3335 | } |
| 3336 | EXPORT_SYMBOL_GPL(regulator_bulk_force_disable); |
| 3337 | |
| 3338 | /** |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3339 | * regulator_bulk_free - free multiple regulator consumers |
| 3340 | * |
| 3341 | * @num_consumers: Number of consumers |
| 3342 | * @consumers: Consumer data; clients are stored here. |
| 3343 | * |
| 3344 | * This convenience API allows consumers to free multiple regulator |
| 3345 | * clients in a single API call. |
| 3346 | */ |
| 3347 | void regulator_bulk_free(int num_consumers, |
| 3348 | struct regulator_bulk_data *consumers) |
| 3349 | { |
| 3350 | int i; |
| 3351 | |
| 3352 | for (i = 0; i < num_consumers; i++) { |
| 3353 | regulator_put(consumers[i].consumer); |
| 3354 | consumers[i].consumer = NULL; |
| 3355 | } |
| 3356 | } |
| 3357 | EXPORT_SYMBOL_GPL(regulator_bulk_free); |
| 3358 | |
| 3359 | /** |
| 3360 | * regulator_notifier_call_chain - call regulator event notifier |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 3361 | * @rdev: regulator source |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3362 | * @event: notifier block |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 3363 | * @data: callback-specific data. |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3364 | * |
| 3365 | * Called by regulator drivers to notify clients a regulator event has |
| 3366 | * occurred. We also notify regulator clients downstream. |
Jonathan Cameron | b136fb4 | 2009-01-19 18:20:58 +0000 | [diff] [blame] | 3367 | * Note lock must be held by caller. |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3368 | */ |
| 3369 | int regulator_notifier_call_chain(struct regulator_dev *rdev, |
| 3370 | unsigned long event, void *data) |
| 3371 | { |
| 3372 | _notifier_call_chain(rdev, event, data); |
| 3373 | return NOTIFY_DONE; |
| 3374 | |
| 3375 | } |
| 3376 | EXPORT_SYMBOL_GPL(regulator_notifier_call_chain); |
| 3377 | |
Mark Brown | be72197 | 2009-08-04 20:09:52 +0200 | [diff] [blame] | 3378 | /** |
| 3379 | * regulator_mode_to_status - convert a regulator mode into a status |
| 3380 | * |
| 3381 | * @mode: Mode to convert |
| 3382 | * |
| 3383 | * Convert a regulator mode into a status. |
| 3384 | */ |
| 3385 | int regulator_mode_to_status(unsigned int mode) |
| 3386 | { |
| 3387 | switch (mode) { |
| 3388 | case REGULATOR_MODE_FAST: |
| 3389 | return REGULATOR_STATUS_FAST; |
| 3390 | case REGULATOR_MODE_NORMAL: |
| 3391 | return REGULATOR_STATUS_NORMAL; |
| 3392 | case REGULATOR_MODE_IDLE: |
| 3393 | return REGULATOR_STATUS_IDLE; |
Krystian Garbaciak | 03ffcf3 | 2012-07-12 11:50:38 +0100 | [diff] [blame] | 3394 | case REGULATOR_MODE_STANDBY: |
Mark Brown | be72197 | 2009-08-04 20:09:52 +0200 | [diff] [blame] | 3395 | return REGULATOR_STATUS_STANDBY; |
| 3396 | default: |
Krystian Garbaciak | 1beaf76 | 2012-07-12 13:53:35 +0100 | [diff] [blame] | 3397 | return REGULATOR_STATUS_UNDEFINED; |
Mark Brown | be72197 | 2009-08-04 20:09:52 +0200 | [diff] [blame] | 3398 | } |
| 3399 | } |
| 3400 | EXPORT_SYMBOL_GPL(regulator_mode_to_status); |
| 3401 | |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 3402 | /* |
| 3403 | * To avoid cluttering sysfs (and memory) with useless state, only |
| 3404 | * create attributes that can be meaningfully displayed. |
| 3405 | */ |
| 3406 | static int add_regulator_attributes(struct regulator_dev *rdev) |
| 3407 | { |
| 3408 | struct device *dev = &rdev->dev; |
| 3409 | struct regulator_ops *ops = rdev->desc->ops; |
| 3410 | int status = 0; |
| 3411 | |
| 3412 | /* some attributes need specific methods to be displayed */ |
Mark Brown | 4c78899 | 2011-11-02 11:39:09 +0000 | [diff] [blame] | 3413 | if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) || |
Mark Brown | f2889e6 | 2012-08-27 11:37:04 -0700 | [diff] [blame] | 3414 | (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) || |
| 3415 | (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0)) { |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 3416 | status = device_create_file(dev, &dev_attr_microvolts); |
| 3417 | if (status < 0) |
| 3418 | return status; |
| 3419 | } |
| 3420 | if (ops->get_current_limit) { |
| 3421 | status = device_create_file(dev, &dev_attr_microamps); |
| 3422 | if (status < 0) |
| 3423 | return status; |
| 3424 | } |
| 3425 | if (ops->get_mode) { |
| 3426 | status = device_create_file(dev, &dev_attr_opmode); |
| 3427 | if (status < 0) |
| 3428 | return status; |
| 3429 | } |
Kim, Milo | 7b74d14 | 2013-02-18 06:50:55 +0000 | [diff] [blame] | 3430 | if (rdev->ena_pin || ops->is_enabled) { |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 3431 | status = device_create_file(dev, &dev_attr_state); |
| 3432 | if (status < 0) |
| 3433 | return status; |
| 3434 | } |
David Brownell | 853116a | 2009-01-14 23:03:17 -0800 | [diff] [blame] | 3435 | if (ops->get_status) { |
| 3436 | status = device_create_file(dev, &dev_attr_status); |
| 3437 | if (status < 0) |
| 3438 | return status; |
| 3439 | } |
Mark Brown | f59c8f9 | 2012-08-31 10:36:37 -0700 | [diff] [blame] | 3440 | if (ops->get_bypass) { |
| 3441 | status = device_create_file(dev, &dev_attr_bypass); |
| 3442 | if (status < 0) |
| 3443 | return status; |
| 3444 | } |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 3445 | |
| 3446 | /* some attributes are type-specific */ |
| 3447 | if (rdev->desc->type == REGULATOR_CURRENT) { |
| 3448 | status = device_create_file(dev, &dev_attr_requested_microamps); |
| 3449 | if (status < 0) |
| 3450 | return status; |
| 3451 | } |
| 3452 | |
| 3453 | /* all the other attributes exist to support constraints; |
| 3454 | * don't show them if there are no constraints, or if the |
| 3455 | * relevant supporting methods are missing. |
| 3456 | */ |
| 3457 | if (!rdev->constraints) |
| 3458 | return status; |
| 3459 | |
| 3460 | /* constraints need specific supporting methods */ |
Mark Brown | e8eef82 | 2010-12-12 14:36:17 +0000 | [diff] [blame] | 3461 | if (ops->set_voltage || ops->set_voltage_sel) { |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 3462 | status = device_create_file(dev, &dev_attr_min_microvolts); |
| 3463 | if (status < 0) |
| 3464 | return status; |
| 3465 | status = device_create_file(dev, &dev_attr_max_microvolts); |
| 3466 | if (status < 0) |
| 3467 | return status; |
| 3468 | } |
| 3469 | if (ops->set_current_limit) { |
| 3470 | status = device_create_file(dev, &dev_attr_min_microamps); |
| 3471 | if (status < 0) |
| 3472 | return status; |
| 3473 | status = device_create_file(dev, &dev_attr_max_microamps); |
| 3474 | if (status < 0) |
| 3475 | return status; |
| 3476 | } |
| 3477 | |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 3478 | status = device_create_file(dev, &dev_attr_suspend_standby_state); |
| 3479 | if (status < 0) |
| 3480 | return status; |
| 3481 | status = device_create_file(dev, &dev_attr_suspend_mem_state); |
| 3482 | if (status < 0) |
| 3483 | return status; |
| 3484 | status = device_create_file(dev, &dev_attr_suspend_disk_state); |
| 3485 | if (status < 0) |
| 3486 | return status; |
| 3487 | |
| 3488 | if (ops->set_suspend_voltage) { |
| 3489 | status = device_create_file(dev, |
| 3490 | &dev_attr_suspend_standby_microvolts); |
| 3491 | if (status < 0) |
| 3492 | return status; |
| 3493 | status = device_create_file(dev, |
| 3494 | &dev_attr_suspend_mem_microvolts); |
| 3495 | if (status < 0) |
| 3496 | return status; |
| 3497 | status = device_create_file(dev, |
| 3498 | &dev_attr_suspend_disk_microvolts); |
| 3499 | if (status < 0) |
| 3500 | return status; |
| 3501 | } |
| 3502 | |
| 3503 | if (ops->set_suspend_mode) { |
| 3504 | status = device_create_file(dev, |
| 3505 | &dev_attr_suspend_standby_mode); |
| 3506 | if (status < 0) |
| 3507 | return status; |
| 3508 | status = device_create_file(dev, |
| 3509 | &dev_attr_suspend_mem_mode); |
| 3510 | if (status < 0) |
| 3511 | return status; |
| 3512 | status = device_create_file(dev, |
| 3513 | &dev_attr_suspend_disk_mode); |
| 3514 | if (status < 0) |
| 3515 | return status; |
| 3516 | } |
| 3517 | |
| 3518 | return status; |
| 3519 | } |
| 3520 | |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3521 | static void rdev_init_debugfs(struct regulator_dev *rdev) |
| 3522 | { |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3523 | rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root); |
Stephen Boyd | 2475143 | 2012-02-20 22:50:42 -0800 | [diff] [blame] | 3524 | if (!rdev->debugfs) { |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3525 | rdev_warn(rdev, "Failed to create debugfs directory\n"); |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3526 | return; |
| 3527 | } |
| 3528 | |
| 3529 | debugfs_create_u32("use_count", 0444, rdev->debugfs, |
| 3530 | &rdev->use_count); |
| 3531 | debugfs_create_u32("open_count", 0444, rdev->debugfs, |
| 3532 | &rdev->open_count); |
Mark Brown | f59c8f9 | 2012-08-31 10:36:37 -0700 | [diff] [blame] | 3533 | debugfs_create_u32("bypass_count", 0444, rdev->debugfs, |
| 3534 | &rdev->bypass_count); |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3535 | } |
| 3536 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3537 | /** |
| 3538 | * regulator_register - register regulator |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 3539 | * @regulator_desc: regulator to register |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 3540 | * @config: runtime configuration for regulator |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3541 | * |
| 3542 | * Called by regulator drivers to register a regulator. |
Axel Lin | 0384618 | 2013-01-03 21:01:47 +0800 | [diff] [blame] | 3543 | * Returns a valid pointer to struct regulator_dev on success |
| 3544 | * or an ERR_PTR() on error. |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3545 | */ |
Mark Brown | 65f2684 | 2012-04-03 20:46:53 +0100 | [diff] [blame] | 3546 | struct regulator_dev * |
| 3547 | regulator_register(const struct regulator_desc *regulator_desc, |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 3548 | const struct regulator_config *config) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3549 | { |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 3550 | const struct regulation_constraints *constraints = NULL; |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 3551 | const struct regulator_init_data *init_data; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3552 | static atomic_t regulator_no = ATOMIC_INIT(0); |
| 3553 | struct regulator_dev *rdev; |
Mark Brown | 32c8fad | 2012-04-11 10:19:12 +0100 | [diff] [blame] | 3554 | struct device *dev; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3555 | int ret, i; |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 3556 | const char *supply = NULL; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3557 | |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 3558 | if (regulator_desc == NULL || config == NULL) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3559 | return ERR_PTR(-EINVAL); |
| 3560 | |
Mark Brown | 32c8fad | 2012-04-11 10:19:12 +0100 | [diff] [blame] | 3561 | dev = config->dev; |
Mark Brown | dcf7011 | 2012-05-08 18:09:12 +0100 | [diff] [blame] | 3562 | WARN_ON(!dev); |
Mark Brown | 32c8fad | 2012-04-11 10:19:12 +0100 | [diff] [blame] | 3563 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3564 | if (regulator_desc->name == NULL || regulator_desc->ops == NULL) |
| 3565 | return ERR_PTR(-EINVAL); |
| 3566 | |
Diego Liziero | cd78dfc | 2009-04-14 03:04:47 +0200 | [diff] [blame] | 3567 | if (regulator_desc->type != REGULATOR_VOLTAGE && |
| 3568 | regulator_desc->type != REGULATOR_CURRENT) |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3569 | return ERR_PTR(-EINVAL); |
| 3570 | |
Mark Brown | 476c2d8 | 2010-12-10 17:28:07 +0000 | [diff] [blame] | 3571 | /* Only one of each should be implemented */ |
| 3572 | WARN_ON(regulator_desc->ops->get_voltage && |
| 3573 | regulator_desc->ops->get_voltage_sel); |
Mark Brown | e8eef82 | 2010-12-12 14:36:17 +0000 | [diff] [blame] | 3574 | WARN_ON(regulator_desc->ops->set_voltage && |
| 3575 | regulator_desc->ops->set_voltage_sel); |
Mark Brown | 476c2d8 | 2010-12-10 17:28:07 +0000 | [diff] [blame] | 3576 | |
| 3577 | /* If we're using selectors we must implement list_voltage. */ |
| 3578 | if (regulator_desc->ops->get_voltage_sel && |
| 3579 | !regulator_desc->ops->list_voltage) { |
| 3580 | return ERR_PTR(-EINVAL); |
| 3581 | } |
Mark Brown | e8eef82 | 2010-12-12 14:36:17 +0000 | [diff] [blame] | 3582 | if (regulator_desc->ops->set_voltage_sel && |
| 3583 | !regulator_desc->ops->list_voltage) { |
| 3584 | return ERR_PTR(-EINVAL); |
| 3585 | } |
Mark Brown | 476c2d8 | 2010-12-10 17:28:07 +0000 | [diff] [blame] | 3586 | |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 3587 | init_data = config->init_data; |
| 3588 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3589 | rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL); |
| 3590 | if (rdev == NULL) |
| 3591 | return ERR_PTR(-ENOMEM); |
| 3592 | |
| 3593 | mutex_lock(®ulator_list_mutex); |
| 3594 | |
| 3595 | mutex_init(&rdev->mutex); |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 3596 | rdev->reg_data = config->driver_data; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3597 | rdev->owner = regulator_desc->owner; |
| 3598 | rdev->desc = regulator_desc; |
Mark Brown | 3a4b0a0 | 2012-05-08 18:10:45 +0100 | [diff] [blame] | 3599 | if (config->regmap) |
| 3600 | rdev->regmap = config->regmap; |
AnilKumar Ch | 52b84da | 2012-09-07 20:45:05 +0530 | [diff] [blame] | 3601 | else if (dev_get_regmap(dev, NULL)) |
Mark Brown | 3a4b0a0 | 2012-05-08 18:10:45 +0100 | [diff] [blame] | 3602 | rdev->regmap = dev_get_regmap(dev, NULL); |
AnilKumar Ch | 52b84da | 2012-09-07 20:45:05 +0530 | [diff] [blame] | 3603 | else if (dev->parent) |
| 3604 | rdev->regmap = dev_get_regmap(dev->parent, NULL); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3605 | INIT_LIST_HEAD(&rdev->consumer_list); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3606 | INIT_LIST_HEAD(&rdev->list); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3607 | BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier); |
Mark Brown | da07ecd | 2011-09-11 09:53:50 +0100 | [diff] [blame] | 3608 | INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3609 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3610 | /* preform any regulator specific init */ |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 3611 | if (init_data && init_data->regulator_init) { |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3612 | ret = init_data->regulator_init(rdev->reg_data); |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 3613 | if (ret < 0) |
| 3614 | goto clean; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3615 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3616 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3617 | /* register with sysfs */ |
| 3618 | rdev->dev.class = ®ulator_class; |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 3619 | rdev->dev.of_node = config->of_node; |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3620 | rdev->dev.parent = dev; |
Kay Sievers | 812460a | 2008-11-02 03:55:10 +0100 | [diff] [blame] | 3621 | dev_set_name(&rdev->dev, "regulator.%d", |
| 3622 | atomic_inc_return(®ulator_no) - 1); |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3623 | ret = device_register(&rdev->dev); |
Vasiliy Kulikov | ad7725c | 2010-09-19 16:55:01 +0400 | [diff] [blame] | 3624 | if (ret != 0) { |
| 3625 | put_device(&rdev->dev); |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 3626 | goto clean; |
Vasiliy Kulikov | ad7725c | 2010-09-19 16:55:01 +0400 | [diff] [blame] | 3627 | } |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3628 | |
| 3629 | dev_set_drvdata(&rdev->dev, rdev); |
| 3630 | |
Marek Szyprowski | b2a1ef4 | 2012-08-09 16:33:00 +0200 | [diff] [blame] | 3631 | if (config->ena_gpio && gpio_is_valid(config->ena_gpio)) { |
Kim, Milo | f19b00d | 2013-02-18 06:50:39 +0000 | [diff] [blame] | 3632 | ret = regulator_ena_gpio_request(rdev, config); |
Mark Brown | 65f7350 | 2012-06-27 14:14:38 +0100 | [diff] [blame] | 3633 | if (ret != 0) { |
| 3634 | rdev_err(rdev, "Failed to request enable GPIO%d: %d\n", |
| 3635 | config->ena_gpio, ret); |
Andrew Lunn | b2da55d | 2012-10-28 16:01:11 +0100 | [diff] [blame] | 3636 | goto wash; |
Mark Brown | 65f7350 | 2012-06-27 14:14:38 +0100 | [diff] [blame] | 3637 | } |
| 3638 | |
Mark Brown | 65f7350 | 2012-06-27 14:14:38 +0100 | [diff] [blame] | 3639 | if (config->ena_gpio_flags & GPIOF_OUT_INIT_HIGH) |
| 3640 | rdev->ena_gpio_state = 1; |
| 3641 | |
Kim, Milo | 7b74d14 | 2013-02-18 06:50:55 +0000 | [diff] [blame] | 3642 | if (config->ena_gpio_invert) |
Mark Brown | 65f7350 | 2012-06-27 14:14:38 +0100 | [diff] [blame] | 3643 | rdev->ena_gpio_state = !rdev->ena_gpio_state; |
| 3644 | } |
| 3645 | |
Mike Rapoport | 74f544c | 2008-11-25 14:53:53 +0200 | [diff] [blame] | 3646 | /* set regulator constraints */ |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 3647 | if (init_data) |
| 3648 | constraints = &init_data->constraints; |
| 3649 | |
| 3650 | ret = set_machine_constraints(rdev, constraints); |
Mike Rapoport | 74f544c | 2008-11-25 14:53:53 +0200 | [diff] [blame] | 3651 | if (ret < 0) |
| 3652 | goto scrub; |
| 3653 | |
David Brownell | 7ad68e2 | 2008-11-11 17:39:02 -0800 | [diff] [blame] | 3654 | /* add attributes supported by this regulator */ |
| 3655 | ret = add_regulator_attributes(rdev); |
| 3656 | if (ret < 0) |
| 3657 | goto scrub; |
| 3658 | |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 3659 | if (init_data && init_data->supply_regulator) |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 3660 | supply = init_data->supply_regulator; |
| 3661 | else if (regulator_desc->supply_name) |
| 3662 | supply = regulator_desc->supply_name; |
| 3663 | |
| 3664 | if (supply) { |
Mark Brown | 0178f3e | 2010-04-26 15:18:14 +0100 | [diff] [blame] | 3665 | struct regulator_dev *r; |
Mark Brown | 0178f3e | 2010-04-26 15:18:14 +0100 | [diff] [blame] | 3666 | |
Mark Brown | 6d191a5 | 2012-03-29 14:19:02 +0100 | [diff] [blame] | 3667 | r = regulator_dev_lookup(dev, supply, &ret); |
Mark Brown | 0178f3e | 2010-04-26 15:18:14 +0100 | [diff] [blame] | 3668 | |
Andrew Bresticker | 0f7b87f | 2013-04-04 15:27:47 -0700 | [diff] [blame] | 3669 | if (ret == -ENODEV) { |
| 3670 | /* |
| 3671 | * No supply was specified for this regulator and |
| 3672 | * there will never be one. |
| 3673 | */ |
| 3674 | ret = 0; |
| 3675 | goto add_dev; |
| 3676 | } else if (!r) { |
Rajendra Nayak | 69511a4 | 2011-11-18 16:47:20 +0530 | [diff] [blame] | 3677 | dev_err(dev, "Failed to find supply %s\n", supply); |
Mark Brown | 04bf301 | 2012-03-11 13:07:56 +0000 | [diff] [blame] | 3678 | ret = -EPROBE_DEFER; |
Mark Brown | 0178f3e | 2010-04-26 15:18:14 +0100 | [diff] [blame] | 3679 | goto scrub; |
| 3680 | } |
| 3681 | |
| 3682 | ret = set_supply(rdev, r); |
| 3683 | if (ret < 0) |
| 3684 | goto scrub; |
Laxman Dewangan | b2296bd | 2012-01-02 13:08:45 +0530 | [diff] [blame] | 3685 | |
| 3686 | /* Enable supply if rail is enabled */ |
Mark Brown | b1a8683 | 2012-05-14 00:40:14 +0100 | [diff] [blame] | 3687 | if (_regulator_is_enabled(rdev)) { |
Laxman Dewangan | b2296bd | 2012-01-02 13:08:45 +0530 | [diff] [blame] | 3688 | ret = regulator_enable(rdev->supply); |
| 3689 | if (ret < 0) |
| 3690 | goto scrub; |
| 3691 | } |
Mark Brown | 0178f3e | 2010-04-26 15:18:14 +0100 | [diff] [blame] | 3692 | } |
| 3693 | |
Andrew Bresticker | 0f7b87f | 2013-04-04 15:27:47 -0700 | [diff] [blame] | 3694 | add_dev: |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3695 | /* add consumers devices */ |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 3696 | if (init_data) { |
| 3697 | for (i = 0; i < init_data->num_consumer_supplies; i++) { |
| 3698 | ret = set_consumer_device_supply(rdev, |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 3699 | init_data->consumer_supplies[i].dev_name, |
Mark Brown | 23c2f04 | 2011-02-24 17:39:09 +0000 | [diff] [blame] | 3700 | init_data->consumer_supplies[i].supply); |
Mark Brown | 9a8f5e0 | 2011-11-29 18:11:19 +0000 | [diff] [blame] | 3701 | if (ret < 0) { |
| 3702 | dev_err(dev, "Failed to set supply %s\n", |
| 3703 | init_data->consumer_supplies[i].supply); |
| 3704 | goto unset_supplies; |
| 3705 | } |
Mark Brown | 23c2f04 | 2011-02-24 17:39:09 +0000 | [diff] [blame] | 3706 | } |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3707 | } |
| 3708 | |
| 3709 | list_add(&rdev->list, ®ulator_list); |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3710 | |
| 3711 | rdev_init_debugfs(rdev); |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3712 | out: |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3713 | mutex_unlock(®ulator_list_mutex); |
| 3714 | return rdev; |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 3715 | |
Jani Nikula | d4033b5 | 2010-04-29 10:55:11 +0300 | [diff] [blame] | 3716 | unset_supplies: |
| 3717 | unset_regulator_supplies(rdev); |
| 3718 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 3719 | scrub: |
Mark Brown | e81dba85 | 2012-05-13 18:35:56 +0100 | [diff] [blame] | 3720 | if (rdev->supply) |
Charles Keepax | 23ff2f0 | 2012-11-14 09:39:31 +0000 | [diff] [blame] | 3721 | _regulator_put(rdev->supply); |
Kim, Milo | f19b00d | 2013-02-18 06:50:39 +0000 | [diff] [blame] | 3722 | regulator_ena_gpio_free(rdev); |
Axel Lin | 1a6958e7 | 2011-07-15 10:50:43 +0800 | [diff] [blame] | 3723 | kfree(rdev->constraints); |
Andrew Lunn | b2da55d | 2012-10-28 16:01:11 +0100 | [diff] [blame] | 3724 | wash: |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 3725 | device_unregister(&rdev->dev); |
Paul Walmsley | 53032da | 2009-04-25 05:28:36 -0600 | [diff] [blame] | 3726 | /* device core frees rdev */ |
| 3727 | rdev = ERR_PTR(ret); |
| 3728 | goto out; |
| 3729 | |
David Brownell | 4fca954 | 2008-11-11 17:38:53 -0800 | [diff] [blame] | 3730 | clean: |
| 3731 | kfree(rdev); |
| 3732 | rdev = ERR_PTR(ret); |
| 3733 | goto out; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3734 | } |
| 3735 | EXPORT_SYMBOL_GPL(regulator_register); |
| 3736 | |
| 3737 | /** |
| 3738 | * regulator_unregister - unregister regulator |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 3739 | * @rdev: regulator to unregister |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3740 | * |
| 3741 | * Called by regulator drivers to unregister a regulator. |
| 3742 | */ |
| 3743 | void regulator_unregister(struct regulator_dev *rdev) |
| 3744 | { |
| 3745 | if (rdev == NULL) |
| 3746 | return; |
| 3747 | |
Mark Brown | 891636e | 2013-07-08 09:14:45 +0100 | [diff] [blame] | 3748 | if (rdev->supply) { |
| 3749 | while (rdev->use_count--) |
| 3750 | regulator_disable(rdev->supply); |
Mark Brown | e032b37 | 2012-03-28 21:17:55 +0100 | [diff] [blame] | 3751 | regulator_put(rdev->supply); |
Mark Brown | 891636e | 2013-07-08 09:14:45 +0100 | [diff] [blame] | 3752 | } |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3753 | mutex_lock(®ulator_list_mutex); |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3754 | debugfs_remove_recursive(rdev->debugfs); |
Tejun Heo | 4382973 | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 3755 | flush_work(&rdev->disable_work.work); |
Mark Brown | 6bf87d1 | 2009-07-21 16:00:25 +0100 | [diff] [blame] | 3756 | WARN_ON(rdev->open_count); |
Mike Rapoport | 0f1d747 | 2009-01-22 16:00:29 +0200 | [diff] [blame] | 3757 | unset_regulator_supplies(rdev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3758 | list_del(&rdev->list); |
Mark Brown | f8c12fe | 2010-11-29 15:55:17 +0000 | [diff] [blame] | 3759 | kfree(rdev->constraints); |
Kim, Milo | f19b00d | 2013-02-18 06:50:39 +0000 | [diff] [blame] | 3760 | regulator_ena_gpio_free(rdev); |
Lothar Waßmann | 58fb5cf | 2011-11-28 15:38:37 +0100 | [diff] [blame] | 3761 | device_unregister(&rdev->dev); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3762 | mutex_unlock(®ulator_list_mutex); |
| 3763 | } |
| 3764 | EXPORT_SYMBOL_GPL(regulator_unregister); |
| 3765 | |
| 3766 | /** |
Mark Brown | cf7bbcd | 2008-12-31 12:52:43 +0000 | [diff] [blame] | 3767 | * regulator_suspend_prepare - prepare regulators for system wide suspend |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3768 | * @state: system suspend state |
| 3769 | * |
| 3770 | * Configure each regulator with it's suspend operating parameters for state. |
| 3771 | * This will usually be called by machine suspend code prior to supending. |
| 3772 | */ |
| 3773 | int regulator_suspend_prepare(suspend_state_t state) |
| 3774 | { |
| 3775 | struct regulator_dev *rdev; |
| 3776 | int ret = 0; |
| 3777 | |
| 3778 | /* ON is handled by regulator active state */ |
| 3779 | if (state == PM_SUSPEND_ON) |
| 3780 | return -EINVAL; |
| 3781 | |
| 3782 | mutex_lock(®ulator_list_mutex); |
| 3783 | list_for_each_entry(rdev, ®ulator_list, list) { |
| 3784 | |
| 3785 | mutex_lock(&rdev->mutex); |
| 3786 | ret = suspend_prepare(rdev, state); |
| 3787 | mutex_unlock(&rdev->mutex); |
| 3788 | |
| 3789 | if (ret < 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 3790 | rdev_err(rdev, "failed to prepare\n"); |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3791 | goto out; |
| 3792 | } |
| 3793 | } |
| 3794 | out: |
| 3795 | mutex_unlock(®ulator_list_mutex); |
| 3796 | return ret; |
| 3797 | } |
| 3798 | EXPORT_SYMBOL_GPL(regulator_suspend_prepare); |
| 3799 | |
| 3800 | /** |
MyungJoo Ham | 7a32b58 | 2011-03-11 10:13:59 +0900 | [diff] [blame] | 3801 | * regulator_suspend_finish - resume regulators from system wide suspend |
| 3802 | * |
| 3803 | * Turn on regulators that might be turned off by regulator_suspend_prepare |
| 3804 | * and that should be turned on according to the regulators properties. |
| 3805 | */ |
| 3806 | int regulator_suspend_finish(void) |
| 3807 | { |
| 3808 | struct regulator_dev *rdev; |
| 3809 | int ret = 0, error; |
| 3810 | |
| 3811 | mutex_lock(®ulator_list_mutex); |
| 3812 | list_for_each_entry(rdev, ®ulator_list, list) { |
| 3813 | struct regulator_ops *ops = rdev->desc->ops; |
| 3814 | |
| 3815 | mutex_lock(&rdev->mutex); |
| 3816 | if ((rdev->use_count > 0 || rdev->constraints->always_on) && |
| 3817 | ops->enable) { |
| 3818 | error = ops->enable(rdev); |
| 3819 | if (error) |
| 3820 | ret = error; |
| 3821 | } else { |
| 3822 | if (!has_full_constraints) |
| 3823 | goto unlock; |
| 3824 | if (!ops->disable) |
| 3825 | goto unlock; |
Mark Brown | b1a8683 | 2012-05-14 00:40:14 +0100 | [diff] [blame] | 3826 | if (!_regulator_is_enabled(rdev)) |
MyungJoo Ham | 7a32b58 | 2011-03-11 10:13:59 +0900 | [diff] [blame] | 3827 | goto unlock; |
| 3828 | |
| 3829 | error = ops->disable(rdev); |
| 3830 | if (error) |
| 3831 | ret = error; |
| 3832 | } |
| 3833 | unlock: |
| 3834 | mutex_unlock(&rdev->mutex); |
| 3835 | } |
| 3836 | mutex_unlock(®ulator_list_mutex); |
| 3837 | return ret; |
| 3838 | } |
| 3839 | EXPORT_SYMBOL_GPL(regulator_suspend_finish); |
| 3840 | |
| 3841 | /** |
Mark Brown | ca72556 | 2009-03-16 19:36:34 +0000 | [diff] [blame] | 3842 | * regulator_has_full_constraints - the system has fully specified constraints |
| 3843 | * |
| 3844 | * Calling this function will cause the regulator API to disable all |
| 3845 | * regulators which have a zero use count and don't have an always_on |
| 3846 | * constraint in a late_initcall. |
| 3847 | * |
| 3848 | * The intention is that this will become the default behaviour in a |
| 3849 | * future kernel release so users are encouraged to use this facility |
| 3850 | * now. |
| 3851 | */ |
| 3852 | void regulator_has_full_constraints(void) |
| 3853 | { |
| 3854 | has_full_constraints = 1; |
| 3855 | } |
| 3856 | EXPORT_SYMBOL_GPL(regulator_has_full_constraints); |
| 3857 | |
| 3858 | /** |
Mark Brown | 688fe99 | 2010-10-05 19:18:32 -0700 | [diff] [blame] | 3859 | * regulator_use_dummy_regulator - Provide a dummy regulator when none is found |
| 3860 | * |
| 3861 | * Calling this function will cause the regulator API to provide a |
| 3862 | * dummy regulator to consumers if no physical regulator is found, |
| 3863 | * allowing most consumers to proceed as though a regulator were |
| 3864 | * configured. This allows systems such as those with software |
| 3865 | * controllable regulators for the CPU core only to be brought up more |
| 3866 | * readily. |
| 3867 | */ |
| 3868 | void regulator_use_dummy_regulator(void) |
| 3869 | { |
| 3870 | board_wants_dummy_regulator = true; |
| 3871 | } |
| 3872 | EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator); |
| 3873 | |
| 3874 | /** |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3875 | * rdev_get_drvdata - get rdev regulator driver data |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 3876 | * @rdev: regulator |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3877 | * |
| 3878 | * Get rdev regulator driver private data. This call can be used in the |
| 3879 | * regulator driver context. |
| 3880 | */ |
| 3881 | void *rdev_get_drvdata(struct regulator_dev *rdev) |
| 3882 | { |
| 3883 | return rdev->reg_data; |
| 3884 | } |
| 3885 | EXPORT_SYMBOL_GPL(rdev_get_drvdata); |
| 3886 | |
| 3887 | /** |
| 3888 | * regulator_get_drvdata - get regulator driver data |
| 3889 | * @regulator: regulator |
| 3890 | * |
| 3891 | * Get regulator driver private data. This call can be used in the consumer |
| 3892 | * driver context when non API regulator specific functions need to be called. |
| 3893 | */ |
| 3894 | void *regulator_get_drvdata(struct regulator *regulator) |
| 3895 | { |
| 3896 | return regulator->rdev->reg_data; |
| 3897 | } |
| 3898 | EXPORT_SYMBOL_GPL(regulator_get_drvdata); |
| 3899 | |
| 3900 | /** |
| 3901 | * regulator_set_drvdata - set regulator driver data |
| 3902 | * @regulator: regulator |
| 3903 | * @data: data |
| 3904 | */ |
| 3905 | void regulator_set_drvdata(struct regulator *regulator, void *data) |
| 3906 | { |
| 3907 | regulator->rdev->reg_data = data; |
| 3908 | } |
| 3909 | EXPORT_SYMBOL_GPL(regulator_set_drvdata); |
| 3910 | |
| 3911 | /** |
| 3912 | * regulator_get_id - get regulator ID |
Mark Brown | 69279fb | 2008-12-31 12:52:41 +0000 | [diff] [blame] | 3913 | * @rdev: regulator |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3914 | */ |
| 3915 | int rdev_get_id(struct regulator_dev *rdev) |
| 3916 | { |
| 3917 | return rdev->desc->id; |
| 3918 | } |
| 3919 | EXPORT_SYMBOL_GPL(rdev_get_id); |
| 3920 | |
Liam Girdwood | a5766f1 | 2008-10-10 13:22:20 +0100 | [diff] [blame] | 3921 | struct device *rdev_get_dev(struct regulator_dev *rdev) |
| 3922 | { |
| 3923 | return &rdev->dev; |
| 3924 | } |
| 3925 | EXPORT_SYMBOL_GPL(rdev_get_dev); |
| 3926 | |
| 3927 | void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data) |
| 3928 | { |
| 3929 | return reg_init_data->driver_data; |
| 3930 | } |
| 3931 | EXPORT_SYMBOL_GPL(regulator_get_init_drvdata); |
| 3932 | |
Mark Brown | ba55a97 | 2011-08-23 17:39:10 +0100 | [diff] [blame] | 3933 | #ifdef CONFIG_DEBUG_FS |
| 3934 | static ssize_t supply_map_read_file(struct file *file, char __user *user_buf, |
| 3935 | size_t count, loff_t *ppos) |
| 3936 | { |
| 3937 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 3938 | ssize_t len, ret = 0; |
| 3939 | struct regulator_map *map; |
| 3940 | |
| 3941 | if (!buf) |
| 3942 | return -ENOMEM; |
| 3943 | |
| 3944 | list_for_each_entry(map, ®ulator_map_list, list) { |
| 3945 | len = snprintf(buf + ret, PAGE_SIZE - ret, |
| 3946 | "%s -> %s.%s\n", |
| 3947 | rdev_get_name(map->regulator), map->dev_name, |
| 3948 | map->supply); |
| 3949 | if (len >= 0) |
| 3950 | ret += len; |
| 3951 | if (ret > PAGE_SIZE) { |
| 3952 | ret = PAGE_SIZE; |
| 3953 | break; |
| 3954 | } |
| 3955 | } |
| 3956 | |
| 3957 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); |
| 3958 | |
| 3959 | kfree(buf); |
| 3960 | |
| 3961 | return ret; |
| 3962 | } |
Stephen Boyd | 2475143 | 2012-02-20 22:50:42 -0800 | [diff] [blame] | 3963 | #endif |
Mark Brown | ba55a97 | 2011-08-23 17:39:10 +0100 | [diff] [blame] | 3964 | |
| 3965 | static const struct file_operations supply_map_fops = { |
Stephen Boyd | 2475143 | 2012-02-20 22:50:42 -0800 | [diff] [blame] | 3966 | #ifdef CONFIG_DEBUG_FS |
Mark Brown | ba55a97 | 2011-08-23 17:39:10 +0100 | [diff] [blame] | 3967 | .read = supply_map_read_file, |
| 3968 | .llseek = default_llseek, |
Mark Brown | ba55a97 | 2011-08-23 17:39:10 +0100 | [diff] [blame] | 3969 | #endif |
Stephen Boyd | 2475143 | 2012-02-20 22:50:42 -0800 | [diff] [blame] | 3970 | }; |
Mark Brown | ba55a97 | 2011-08-23 17:39:10 +0100 | [diff] [blame] | 3971 | |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3972 | static int __init regulator_init(void) |
| 3973 | { |
Mark Brown | 34abbd6 | 2010-02-12 10:18:08 +0000 | [diff] [blame] | 3974 | int ret; |
| 3975 | |
Mark Brown | 34abbd6 | 2010-02-12 10:18:08 +0000 | [diff] [blame] | 3976 | ret = class_register(®ulator_class); |
| 3977 | |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3978 | debugfs_root = debugfs_create_dir("regulator", NULL); |
Stephen Boyd | 2475143 | 2012-02-20 22:50:42 -0800 | [diff] [blame] | 3979 | if (!debugfs_root) |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3980 | pr_warn("regulator: Failed to create debugfs directory\n"); |
Mark Brown | ba55a97 | 2011-08-23 17:39:10 +0100 | [diff] [blame] | 3981 | |
Mark Brown | f4d562c | 2012-02-20 21:01:04 +0000 | [diff] [blame] | 3982 | debugfs_create_file("supply_map", 0444, debugfs_root, NULL, |
| 3983 | &supply_map_fops); |
Mark Brown | 1130e5b | 2010-12-21 23:49:31 +0000 | [diff] [blame] | 3984 | |
Mark Brown | 34abbd6 | 2010-02-12 10:18:08 +0000 | [diff] [blame] | 3985 | regulator_dummy_init(); |
| 3986 | |
| 3987 | return ret; |
Liam Girdwood | 414c70c | 2008-04-30 15:59:04 +0100 | [diff] [blame] | 3988 | } |
| 3989 | |
| 3990 | /* init early to allow our consumers to complete system booting */ |
| 3991 | core_initcall(regulator_init); |
Mark Brown | ca72556 | 2009-03-16 19:36:34 +0000 | [diff] [blame] | 3992 | |
| 3993 | static int __init regulator_init_complete(void) |
| 3994 | { |
| 3995 | struct regulator_dev *rdev; |
| 3996 | struct regulator_ops *ops; |
| 3997 | struct regulation_constraints *c; |
| 3998 | int enabled, ret; |
Mark Brown | ca72556 | 2009-03-16 19:36:34 +0000 | [diff] [blame] | 3999 | |
Mark Brown | 86f5fcf | 2012-07-06 18:19:13 +0100 | [diff] [blame] | 4000 | /* |
| 4001 | * Since DT doesn't provide an idiomatic mechanism for |
| 4002 | * enabling full constraints and since it's much more natural |
| 4003 | * with DT to provide them just assume that a DT enabled |
| 4004 | * system has full constraints. |
| 4005 | */ |
| 4006 | if (of_have_populated_dt()) |
| 4007 | has_full_constraints = true; |
| 4008 | |
Mark Brown | ca72556 | 2009-03-16 19:36:34 +0000 | [diff] [blame] | 4009 | mutex_lock(®ulator_list_mutex); |
| 4010 | |
| 4011 | /* If we have a full configuration then disable any regulators |
| 4012 | * which are not in use or always_on. This will become the |
| 4013 | * default behaviour in the future. |
| 4014 | */ |
| 4015 | list_for_each_entry(rdev, ®ulator_list, list) { |
| 4016 | ops = rdev->desc->ops; |
| 4017 | c = rdev->constraints; |
| 4018 | |
Mark Brown | f25e0b4 | 2009-08-03 18:49:55 +0100 | [diff] [blame] | 4019 | if (!ops->disable || (c && c->always_on)) |
Mark Brown | ca72556 | 2009-03-16 19:36:34 +0000 | [diff] [blame] | 4020 | continue; |
| 4021 | |
| 4022 | mutex_lock(&rdev->mutex); |
| 4023 | |
| 4024 | if (rdev->use_count) |
| 4025 | goto unlock; |
| 4026 | |
| 4027 | /* If we can't read the status assume it's on. */ |
| 4028 | if (ops->is_enabled) |
| 4029 | enabled = ops->is_enabled(rdev); |
| 4030 | else |
| 4031 | enabled = 1; |
| 4032 | |
| 4033 | if (!enabled) |
| 4034 | goto unlock; |
| 4035 | |
| 4036 | if (has_full_constraints) { |
| 4037 | /* We log since this may kill the system if it |
| 4038 | * goes wrong. */ |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 4039 | rdev_info(rdev, "disabling\n"); |
Mark Brown | ca72556 | 2009-03-16 19:36:34 +0000 | [diff] [blame] | 4040 | ret = ops->disable(rdev); |
| 4041 | if (ret != 0) { |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 4042 | rdev_err(rdev, "couldn't disable: %d\n", ret); |
Mark Brown | ca72556 | 2009-03-16 19:36:34 +0000 | [diff] [blame] | 4043 | } |
| 4044 | } else { |
| 4045 | /* The intention is that in future we will |
| 4046 | * assume that full constraints are provided |
| 4047 | * so warn even if we aren't going to do |
| 4048 | * anything here. |
| 4049 | */ |
Joe Perches | 5da84fd | 2010-11-30 05:53:48 -0800 | [diff] [blame] | 4050 | rdev_warn(rdev, "incomplete constraints, leaving on\n"); |
Mark Brown | ca72556 | 2009-03-16 19:36:34 +0000 | [diff] [blame] | 4051 | } |
| 4052 | |
| 4053 | unlock: |
| 4054 | mutex_unlock(&rdev->mutex); |
| 4055 | } |
| 4056 | |
| 4057 | mutex_unlock(®ulator_list_mutex); |
| 4058 | |
| 4059 | return 0; |
| 4060 | } |
| 4061 | late_initcall(regulator_init_complete); |