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