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