Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 1 | /* |
| 2 | * drivers/regulator/ab3100.c |
| 3 | * |
| 4 | * Copyright (C) 2008-2009 ST-Ericsson AB |
| 5 | * License terms: GNU General Public License (GPL) version 2 |
| 6 | * Low-level control of the AB3100 IC Low Dropout (LDO) |
| 7 | * regulators, external regulator and buck converter |
| 8 | * Author: Mattias Wallin <mattias.wallin@stericsson.com> |
| 9 | * Author: Linus Walleij <linus.walleij@stericsson.com> |
| 10 | */ |
| 11 | |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/err.h> |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/regulator/driver.h> |
Marcus Cooper | 0fd0013 | 2012-08-10 10:32:35 +0200 | [diff] [blame^] | 18 | #include <linux/mfd/ab3100.h> |
Linus Walleij | 812f9e9 | 2010-05-01 18:26:07 +0200 | [diff] [blame] | 19 | #include <linux/mfd/abx500.h> |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 20 | |
| 21 | /* LDO registers and some handy masking definitions for AB3100 */ |
| 22 | #define AB3100_LDO_A 0x40 |
| 23 | #define AB3100_LDO_C 0x41 |
| 24 | #define AB3100_LDO_D 0x42 |
| 25 | #define AB3100_LDO_E 0x43 |
| 26 | #define AB3100_LDO_E_SLEEP 0x44 |
| 27 | #define AB3100_LDO_F 0x45 |
| 28 | #define AB3100_LDO_G 0x46 |
| 29 | #define AB3100_LDO_H 0x47 |
| 30 | #define AB3100_LDO_H_SLEEP_MODE 0 |
| 31 | #define AB3100_LDO_H_SLEEP_EN 2 |
| 32 | #define AB3100_LDO_ON 4 |
| 33 | #define AB3100_LDO_H_VSEL_AC 5 |
| 34 | #define AB3100_LDO_K 0x48 |
| 35 | #define AB3100_LDO_EXT 0x49 |
| 36 | #define AB3100_BUCK 0x4A |
| 37 | #define AB3100_BUCK_SLEEP 0x4B |
| 38 | #define AB3100_REG_ON_MASK 0x10 |
| 39 | |
| 40 | /** |
| 41 | * struct ab3100_regulator |
| 42 | * A struct passed around the individual regulator functions |
| 43 | * @platform_device: platform device holding this regulator |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 44 | * @dev: handle to the device |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 45 | * @plfdata: AB3100 platform data passed in at probe time |
| 46 | * @regreg: regulator register number in the AB3100 |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 47 | */ |
| 48 | struct ab3100_regulator { |
| 49 | struct regulator_dev *rdev; |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 50 | struct device *dev; |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 51 | struct ab3100_platform_data *plfdata; |
| 52 | u8 regreg; |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | /* The order in which registers are initialized */ |
| 56 | static const u8 ab3100_reg_init_order[AB3100_NUM_REGULATORS+2] = { |
| 57 | AB3100_LDO_A, |
| 58 | AB3100_LDO_C, |
| 59 | AB3100_LDO_E, |
| 60 | AB3100_LDO_E_SLEEP, |
| 61 | AB3100_LDO_F, |
| 62 | AB3100_LDO_G, |
| 63 | AB3100_LDO_H, |
| 64 | AB3100_LDO_K, |
| 65 | AB3100_LDO_EXT, |
| 66 | AB3100_BUCK, |
| 67 | AB3100_BUCK_SLEEP, |
| 68 | AB3100_LDO_D, |
| 69 | }; |
| 70 | |
| 71 | /* Preset (hardware defined) voltages for these regulators */ |
| 72 | #define LDO_A_VOLTAGE 2750000 |
| 73 | #define LDO_C_VOLTAGE 2650000 |
| 74 | #define LDO_D_VOLTAGE 2650000 |
| 75 | |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 76 | static const unsigned int ldo_e_buck_typ_voltages[] = { |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 77 | 1800000, |
| 78 | 1400000, |
| 79 | 1300000, |
| 80 | 1200000, |
| 81 | 1100000, |
| 82 | 1050000, |
| 83 | 900000, |
| 84 | }; |
| 85 | |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 86 | static const unsigned int ldo_f_typ_voltages[] = { |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 87 | 1800000, |
| 88 | 1400000, |
| 89 | 1300000, |
| 90 | 1200000, |
| 91 | 1100000, |
| 92 | 1050000, |
| 93 | 2500000, |
| 94 | 2650000, |
| 95 | }; |
| 96 | |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 97 | static const unsigned int ldo_g_typ_voltages[] = { |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 98 | 2850000, |
| 99 | 2750000, |
| 100 | 1800000, |
| 101 | 1500000, |
| 102 | }; |
| 103 | |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 104 | static const unsigned int ldo_h_typ_voltages[] = { |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 105 | 2750000, |
| 106 | 1800000, |
| 107 | 1500000, |
| 108 | 1200000, |
| 109 | }; |
| 110 | |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 111 | static const unsigned int ldo_k_typ_voltages[] = { |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 112 | 2750000, |
| 113 | 1800000, |
| 114 | }; |
| 115 | |
| 116 | |
| 117 | /* The regulator devices */ |
| 118 | static struct ab3100_regulator |
| 119 | ab3100_regulators[AB3100_NUM_REGULATORS] = { |
| 120 | { |
| 121 | .regreg = AB3100_LDO_A, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 122 | }, |
| 123 | { |
| 124 | .regreg = AB3100_LDO_C, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 125 | }, |
| 126 | { |
| 127 | .regreg = AB3100_LDO_D, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 128 | }, |
| 129 | { |
| 130 | .regreg = AB3100_LDO_E, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 131 | }, |
| 132 | { |
| 133 | .regreg = AB3100_LDO_F, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 134 | }, |
| 135 | { |
| 136 | .regreg = AB3100_LDO_G, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 137 | }, |
| 138 | { |
| 139 | .regreg = AB3100_LDO_H, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 140 | }, |
| 141 | { |
| 142 | .regreg = AB3100_LDO_K, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 143 | }, |
| 144 | { |
| 145 | .regreg = AB3100_LDO_EXT, |
| 146 | /* No voltages for the external regulator */ |
| 147 | }, |
| 148 | { |
| 149 | .regreg = AB3100_BUCK, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 150 | }, |
| 151 | }; |
| 152 | |
| 153 | /* |
| 154 | * General functions for enable, disable and is_enabled used for |
| 155 | * LDO: A,C,E,F,G,H,K,EXT and BUCK |
| 156 | */ |
| 157 | static int ab3100_enable_regulator(struct regulator_dev *reg) |
| 158 | { |
Axel Lin | 6c3b956 | 2012-07-05 09:38:15 +0800 | [diff] [blame] | 159 | struct ab3100_regulator *abreg = rdev_get_drvdata(reg); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 160 | int err; |
| 161 | u8 regval; |
| 162 | |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 163 | err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 164 | ®val); |
| 165 | if (err) { |
| 166 | dev_warn(®->dev, "failed to get regid %d value\n", |
| 167 | abreg->regreg); |
| 168 | return err; |
| 169 | } |
| 170 | |
| 171 | /* The regulator is already on, no reason to go further */ |
| 172 | if (regval & AB3100_REG_ON_MASK) |
| 173 | return 0; |
| 174 | |
| 175 | regval |= AB3100_REG_ON_MASK; |
| 176 | |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 177 | err = abx500_set_register_interruptible(abreg->dev, 0, abreg->regreg, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 178 | regval); |
| 179 | if (err) { |
| 180 | dev_warn(®->dev, "failed to set regid %d value\n", |
| 181 | abreg->regreg); |
| 182 | return err; |
| 183 | } |
| 184 | |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | static int ab3100_disable_regulator(struct regulator_dev *reg) |
| 189 | { |
Axel Lin | 6c3b956 | 2012-07-05 09:38:15 +0800 | [diff] [blame] | 190 | struct ab3100_regulator *abreg = rdev_get_drvdata(reg); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 191 | int err; |
| 192 | u8 regval; |
| 193 | |
| 194 | /* |
| 195 | * LDO D is a special regulator. When it is disabled, the entire |
| 196 | * system is shut down. So this is handled specially. |
| 197 | */ |
Linus Walleij | 176f45b | 2009-10-28 17:30:15 +0100 | [diff] [blame] | 198 | pr_info("Called ab3100_disable_regulator\n"); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 199 | if (abreg->regreg == AB3100_LDO_D) { |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 200 | dev_info(®->dev, "disabling LDO D - shut down system\n"); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 201 | /* Setting LDO D to 0x00 cuts the power to the SoC */ |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 202 | return abx500_set_register_interruptible(abreg->dev, 0, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 203 | AB3100_LDO_D, 0x00U); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | /* |
| 207 | * All other regulators are handled here |
| 208 | */ |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 209 | err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 210 | ®val); |
| 211 | if (err) { |
| 212 | dev_err(®->dev, "unable to get register 0x%x\n", |
| 213 | abreg->regreg); |
| 214 | return err; |
| 215 | } |
| 216 | regval &= ~AB3100_REG_ON_MASK; |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 217 | return abx500_set_register_interruptible(abreg->dev, 0, abreg->regreg, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 218 | regval); |
| 219 | } |
| 220 | |
| 221 | static int ab3100_is_enabled_regulator(struct regulator_dev *reg) |
| 222 | { |
Axel Lin | 6c3b956 | 2012-07-05 09:38:15 +0800 | [diff] [blame] | 223 | struct ab3100_regulator *abreg = rdev_get_drvdata(reg); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 224 | u8 regval; |
| 225 | int err; |
| 226 | |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 227 | err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 228 | ®val); |
| 229 | if (err) { |
| 230 | dev_err(®->dev, "unable to get register 0x%x\n", |
| 231 | abreg->regreg); |
| 232 | return err; |
| 233 | } |
| 234 | |
| 235 | return regval & AB3100_REG_ON_MASK; |
| 236 | } |
| 237 | |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 238 | static int ab3100_get_voltage_regulator(struct regulator_dev *reg) |
| 239 | { |
Axel Lin | 6c3b956 | 2012-07-05 09:38:15 +0800 | [diff] [blame] | 240 | struct ab3100_regulator *abreg = rdev_get_drvdata(reg); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 241 | u8 regval; |
| 242 | int err; |
| 243 | |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 244 | /* |
| 245 | * For variable types, read out setting and index into |
| 246 | * supplied voltage list. |
| 247 | */ |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 248 | err = abx500_get_register_interruptible(abreg->dev, 0, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 249 | abreg->regreg, ®val); |
| 250 | if (err) { |
| 251 | dev_warn(®->dev, |
| 252 | "failed to get regulator value in register %02x\n", |
| 253 | abreg->regreg); |
| 254 | return err; |
| 255 | } |
| 256 | |
| 257 | /* The 3 highest bits index voltages */ |
| 258 | regval &= 0xE0; |
| 259 | regval >>= 5; |
| 260 | |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 261 | if (regval >= reg->desc->n_voltages) { |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 262 | dev_err(®->dev, |
| 263 | "regulator register %02x contains an illegal voltage setting\n", |
| 264 | abreg->regreg); |
| 265 | return -EINVAL; |
| 266 | } |
| 267 | |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 268 | return reg->desc->volt_table[regval]; |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 269 | } |
| 270 | |
Axel Lin | 1f793ff | 2012-03-20 10:14:40 +0800 | [diff] [blame] | 271 | static int ab3100_set_voltage_regulator_sel(struct regulator_dev *reg, |
| 272 | unsigned selector) |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 273 | { |
Axel Lin | 6c3b956 | 2012-07-05 09:38:15 +0800 | [diff] [blame] | 274 | struct ab3100_regulator *abreg = rdev_get_drvdata(reg); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 275 | u8 regval; |
| 276 | int err; |
Mark Brown | 3a93f2a | 2010-11-10 14:38:29 +0000 | [diff] [blame] | 277 | |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 278 | err = abx500_get_register_interruptible(abreg->dev, 0, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 279 | abreg->regreg, ®val); |
| 280 | if (err) { |
| 281 | dev_warn(®->dev, |
| 282 | "failed to get regulator register %02x\n", |
| 283 | abreg->regreg); |
| 284 | return err; |
| 285 | } |
| 286 | |
| 287 | /* The highest three bits control the variable regulators */ |
| 288 | regval &= ~0xE0; |
Axel Lin | 1f793ff | 2012-03-20 10:14:40 +0800 | [diff] [blame] | 289 | regval |= (selector << 5); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 290 | |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 291 | err = abx500_set_register_interruptible(abreg->dev, 0, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 292 | abreg->regreg, regval); |
| 293 | if (err) |
| 294 | dev_warn(®->dev, "failed to set regulator register %02x\n", |
| 295 | abreg->regreg); |
| 296 | |
| 297 | return err; |
| 298 | } |
| 299 | |
| 300 | static int ab3100_set_suspend_voltage_regulator(struct regulator_dev *reg, |
| 301 | int uV) |
| 302 | { |
Axel Lin | 6c3b956 | 2012-07-05 09:38:15 +0800 | [diff] [blame] | 303 | struct ab3100_regulator *abreg = rdev_get_drvdata(reg); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 304 | u8 regval; |
| 305 | int err; |
| 306 | int bestindex; |
| 307 | u8 targetreg; |
| 308 | |
| 309 | if (abreg->regreg == AB3100_LDO_E) |
| 310 | targetreg = AB3100_LDO_E_SLEEP; |
| 311 | else if (abreg->regreg == AB3100_BUCK) |
| 312 | targetreg = AB3100_BUCK_SLEEP; |
| 313 | else |
| 314 | return -EINVAL; |
| 315 | |
| 316 | /* LDO E and BUCK have special suspend voltages you can set */ |
Axel Lin | b13296d | 2012-05-17 13:06:18 +0800 | [diff] [blame] | 317 | bestindex = regulator_map_voltage_iterate(reg, uV, uV); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 318 | |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 319 | err = abx500_get_register_interruptible(abreg->dev, 0, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 320 | targetreg, ®val); |
| 321 | if (err) { |
| 322 | dev_warn(®->dev, |
| 323 | "failed to get regulator register %02x\n", |
| 324 | targetreg); |
| 325 | return err; |
| 326 | } |
| 327 | |
| 328 | /* The highest three bits control the variable regulators */ |
| 329 | regval &= ~0xE0; |
| 330 | regval |= (bestindex << 5); |
| 331 | |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 332 | err = abx500_set_register_interruptible(abreg->dev, 0, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 333 | targetreg, regval); |
| 334 | if (err) |
| 335 | dev_warn(®->dev, "failed to set regulator register %02x\n", |
| 336 | abreg->regreg); |
| 337 | |
| 338 | return err; |
| 339 | } |
| 340 | |
| 341 | /* |
| 342 | * The external regulator can just define a fixed voltage. |
| 343 | */ |
| 344 | static int ab3100_get_voltage_regulator_external(struct regulator_dev *reg) |
| 345 | { |
Axel Lin | 6c3b956 | 2012-07-05 09:38:15 +0800 | [diff] [blame] | 346 | struct ab3100_regulator *abreg = rdev_get_drvdata(reg); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 347 | |
| 348 | return abreg->plfdata->external_voltage; |
| 349 | } |
| 350 | |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 351 | static int ab3100_get_fixed_voltage_regulator(struct regulator_dev *reg) |
| 352 | { |
| 353 | return reg->desc->min_uV; |
| 354 | } |
| 355 | |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 356 | static struct regulator_ops regulator_ops_fixed = { |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 357 | .list_voltage = regulator_list_voltage_linear, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 358 | .enable = ab3100_enable_regulator, |
| 359 | .disable = ab3100_disable_regulator, |
| 360 | .is_enabled = ab3100_is_enabled_regulator, |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 361 | .get_voltage = ab3100_get_fixed_voltage_regulator, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 362 | }; |
| 363 | |
| 364 | static struct regulator_ops regulator_ops_variable = { |
| 365 | .enable = ab3100_enable_regulator, |
| 366 | .disable = ab3100_disable_regulator, |
| 367 | .is_enabled = ab3100_is_enabled_regulator, |
| 368 | .get_voltage = ab3100_get_voltage_regulator, |
Axel Lin | 1f793ff | 2012-03-20 10:14:40 +0800 | [diff] [blame] | 369 | .set_voltage_sel = ab3100_set_voltage_regulator_sel, |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 370 | .list_voltage = regulator_list_voltage_table, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 371 | }; |
| 372 | |
| 373 | static struct regulator_ops regulator_ops_variable_sleepable = { |
| 374 | .enable = ab3100_enable_regulator, |
| 375 | .disable = ab3100_disable_regulator, |
| 376 | .is_enabled = ab3100_is_enabled_regulator, |
| 377 | .get_voltage = ab3100_get_voltage_regulator, |
Axel Lin | 1f793ff | 2012-03-20 10:14:40 +0800 | [diff] [blame] | 378 | .set_voltage_sel = ab3100_set_voltage_regulator_sel, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 379 | .set_suspend_voltage = ab3100_set_suspend_voltage_regulator, |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 380 | .list_voltage = regulator_list_voltage_table, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 381 | }; |
| 382 | |
| 383 | /* |
| 384 | * LDO EXT is an external regulator so it is really |
| 385 | * not possible to set any voltage locally here, AB3100 |
| 386 | * is an on/off switch plain an simple. The external |
| 387 | * voltage is defined in the board set-up if any. |
| 388 | */ |
| 389 | static struct regulator_ops regulator_ops_external = { |
| 390 | .enable = ab3100_enable_regulator, |
| 391 | .disable = ab3100_disable_regulator, |
| 392 | .is_enabled = ab3100_is_enabled_regulator, |
| 393 | .get_voltage = ab3100_get_voltage_regulator_external, |
| 394 | }; |
| 395 | |
| 396 | static struct regulator_desc |
| 397 | ab3100_regulator_desc[AB3100_NUM_REGULATORS] = { |
| 398 | { |
| 399 | .name = "LDO_A", |
| 400 | .id = AB3100_LDO_A, |
| 401 | .ops = ®ulator_ops_fixed, |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 402 | .n_voltages = 1, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 403 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 404 | .owner = THIS_MODULE, |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 405 | .min_uV = LDO_A_VOLTAGE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 406 | .enable_time = 200, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 407 | }, |
| 408 | { |
| 409 | .name = "LDO_C", |
| 410 | .id = AB3100_LDO_C, |
| 411 | .ops = ®ulator_ops_fixed, |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 412 | .n_voltages = 1, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 413 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 414 | .owner = THIS_MODULE, |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 415 | .min_uV = LDO_C_VOLTAGE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 416 | .enable_time = 200, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 417 | }, |
| 418 | { |
| 419 | .name = "LDO_D", |
| 420 | .id = AB3100_LDO_D, |
| 421 | .ops = ®ulator_ops_fixed, |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 422 | .n_voltages = 1, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 423 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 424 | .owner = THIS_MODULE, |
Axel Lin | 1bd1955 | 2012-06-11 10:14:28 +0800 | [diff] [blame] | 425 | .min_uV = LDO_D_VOLTAGE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 426 | .enable_time = 200, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 427 | }, |
| 428 | { |
| 429 | .name = "LDO_E", |
| 430 | .id = AB3100_LDO_E, |
| 431 | .ops = ®ulator_ops_variable_sleepable, |
Linus Walleij | 75f2ba8 | 2009-09-17 09:17:33 +0200 | [diff] [blame] | 432 | .n_voltages = ARRAY_SIZE(ldo_e_buck_typ_voltages), |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 433 | .volt_table = ldo_e_buck_typ_voltages, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 434 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 435 | .owner = THIS_MODULE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 436 | .enable_time = 200, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 437 | }, |
| 438 | { |
| 439 | .name = "LDO_F", |
| 440 | .id = AB3100_LDO_F, |
| 441 | .ops = ®ulator_ops_variable, |
Linus Walleij | 75f2ba8 | 2009-09-17 09:17:33 +0200 | [diff] [blame] | 442 | .n_voltages = ARRAY_SIZE(ldo_f_typ_voltages), |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 443 | .volt_table = ldo_f_typ_voltages, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 444 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 445 | .owner = THIS_MODULE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 446 | .enable_time = 600, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 447 | }, |
| 448 | { |
| 449 | .name = "LDO_G", |
| 450 | .id = AB3100_LDO_G, |
| 451 | .ops = ®ulator_ops_variable, |
Linus Walleij | 75f2ba8 | 2009-09-17 09:17:33 +0200 | [diff] [blame] | 452 | .n_voltages = ARRAY_SIZE(ldo_g_typ_voltages), |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 453 | .volt_table = ldo_g_typ_voltages, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 454 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 455 | .owner = THIS_MODULE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 456 | .enable_time = 400, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 457 | }, |
| 458 | { |
| 459 | .name = "LDO_H", |
| 460 | .id = AB3100_LDO_H, |
| 461 | .ops = ®ulator_ops_variable, |
Linus Walleij | 75f2ba8 | 2009-09-17 09:17:33 +0200 | [diff] [blame] | 462 | .n_voltages = ARRAY_SIZE(ldo_h_typ_voltages), |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 463 | .volt_table = ldo_h_typ_voltages, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 464 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 465 | .owner = THIS_MODULE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 466 | .enable_time = 200, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 467 | }, |
| 468 | { |
| 469 | .name = "LDO_K", |
| 470 | .id = AB3100_LDO_K, |
| 471 | .ops = ®ulator_ops_variable, |
Linus Walleij | 75f2ba8 | 2009-09-17 09:17:33 +0200 | [diff] [blame] | 472 | .n_voltages = ARRAY_SIZE(ldo_k_typ_voltages), |
Axel Lin | a3beb74 | 2012-05-20 10:31:58 +0800 | [diff] [blame] | 473 | .volt_table = ldo_k_typ_voltages, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 474 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 475 | .owner = THIS_MODULE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 476 | .enable_time = 200, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 477 | }, |
| 478 | { |
| 479 | .name = "LDO_EXT", |
| 480 | .id = AB3100_LDO_EXT, |
| 481 | .ops = ®ulator_ops_external, |
| 482 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 483 | .owner = THIS_MODULE, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 484 | }, |
| 485 | { |
| 486 | .name = "BUCK", |
| 487 | .id = AB3100_BUCK, |
| 488 | .ops = ®ulator_ops_variable_sleepable, |
Linus Walleij | 75f2ba8 | 2009-09-17 09:17:33 +0200 | [diff] [blame] | 489 | .n_voltages = ARRAY_SIZE(ldo_e_buck_typ_voltages), |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 490 | .type = REGULATOR_VOLTAGE, |
Axel Lin | 6471435 | 2010-05-13 17:33:01 +0800 | [diff] [blame] | 491 | .owner = THIS_MODULE, |
Axel Lin | f8568cb | 2012-07-04 10:03:23 +0800 | [diff] [blame] | 492 | .enable_time = 1000, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 493 | }, |
| 494 | }; |
| 495 | |
| 496 | /* |
| 497 | * NOTE: the following functions are regulators pluralis - it is the |
| 498 | * binding to the AB3100 core driver and the parent platform device |
| 499 | * for all the different regulators. |
| 500 | */ |
| 501 | |
Dmitry Torokhov | 98bf7c0 | 2010-02-23 23:37:50 -0800 | [diff] [blame] | 502 | static int __devinit ab3100_regulators_probe(struct platform_device *pdev) |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 503 | { |
Samuel Ortiz | a771e36 | 2011-04-06 00:41:43 +0200 | [diff] [blame] | 504 | struct ab3100_platform_data *plfdata = pdev->dev.platform_data; |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 505 | struct regulator_config config = { }; |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 506 | int err = 0; |
| 507 | u8 data; |
| 508 | int i; |
| 509 | |
| 510 | /* Check chip state */ |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 511 | err = abx500_get_register_interruptible(&pdev->dev, 0, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 512 | AB3100_LDO_D, &data); |
| 513 | if (err) { |
| 514 | dev_err(&pdev->dev, "could not read initial status of LDO_D\n"); |
| 515 | return err; |
| 516 | } |
| 517 | if (data & 0x10) |
| 518 | dev_notice(&pdev->dev, |
| 519 | "chip is already in active mode (Warm start)\n"); |
| 520 | else |
| 521 | dev_notice(&pdev->dev, |
| 522 | "chip is in inactive mode (Cold start)\n"); |
| 523 | |
| 524 | /* Set up regulators */ |
| 525 | for (i = 0; i < ARRAY_SIZE(ab3100_reg_init_order); i++) { |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 526 | err = abx500_set_register_interruptible(&pdev->dev, 0, |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 527 | ab3100_reg_init_order[i], |
| 528 | plfdata->reg_initvals[i]); |
| 529 | if (err) { |
| 530 | dev_err(&pdev->dev, "regulator initialization failed with error %d\n", |
| 531 | err); |
| 532 | return err; |
| 533 | } |
| 534 | } |
| 535 | |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 536 | /* Register the regulators */ |
| 537 | for (i = 0; i < AB3100_NUM_REGULATORS; i++) { |
| 538 | struct ab3100_regulator *reg = &ab3100_regulators[i]; |
| 539 | struct regulator_dev *rdev; |
| 540 | |
| 541 | /* |
| 542 | * Initialize per-regulator struct. |
| 543 | * Inherit platform data, this comes down from the |
| 544 | * i2c boarddata, from the machine. So if you want to |
| 545 | * see what it looks like for a certain machine, go |
| 546 | * into the machine I2C setup. |
| 547 | */ |
Mattias Wallin | fa66125 | 2010-05-01 18:26:20 +0200 | [diff] [blame] | 548 | reg->dev = &pdev->dev; |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 549 | reg->plfdata = plfdata; |
| 550 | |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 551 | config.dev = &pdev->dev; |
| 552 | config.driver_data = reg; |
| 553 | config.init_data = &plfdata->reg_constraints[i]; |
| 554 | |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 555 | /* |
| 556 | * Register the regulator, pass around |
| 557 | * the ab3100_regulator struct |
| 558 | */ |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 559 | rdev = regulator_register(&ab3100_regulator_desc[i], &config); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 560 | if (IS_ERR(rdev)) { |
| 561 | err = PTR_ERR(rdev); |
| 562 | dev_err(&pdev->dev, |
| 563 | "%s: failed to register regulator %s err %d\n", |
| 564 | __func__, ab3100_regulator_desc[i].name, |
| 565 | err); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 566 | /* remove the already registered regulators */ |
Axel Lin | b3fcf3e | 2010-08-14 21:31:01 +0800 | [diff] [blame] | 567 | while (--i >= 0) |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 568 | regulator_unregister(ab3100_regulators[i].rdev); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 569 | return err; |
| 570 | } |
| 571 | |
| 572 | /* Then set a pointer back to the registered regulator */ |
| 573 | reg->rdev = rdev; |
| 574 | } |
| 575 | |
| 576 | return 0; |
| 577 | } |
| 578 | |
Dmitry Torokhov | 98bf7c0 | 2010-02-23 23:37:50 -0800 | [diff] [blame] | 579 | static int __devexit ab3100_regulators_remove(struct platform_device *pdev) |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 580 | { |
| 581 | int i; |
| 582 | |
| 583 | for (i = 0; i < AB3100_NUM_REGULATORS; i++) { |
| 584 | struct ab3100_regulator *reg = &ab3100_regulators[i]; |
| 585 | |
| 586 | regulator_unregister(reg->rdev); |
| 587 | } |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | static struct platform_driver ab3100_regulators_driver = { |
| 592 | .driver = { |
| 593 | .name = "ab3100-regulators", |
| 594 | .owner = THIS_MODULE, |
| 595 | }, |
| 596 | .probe = ab3100_regulators_probe, |
Dmitry Torokhov | 98bf7c0 | 2010-02-23 23:37:50 -0800 | [diff] [blame] | 597 | .remove = __devexit_p(ab3100_regulators_remove), |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 598 | }; |
| 599 | |
| 600 | static __init int ab3100_regulators_init(void) |
| 601 | { |
| 602 | return platform_driver_register(&ab3100_regulators_driver); |
| 603 | } |
| 604 | |
| 605 | static __exit void ab3100_regulators_exit(void) |
| 606 | { |
Linus Walleij | 176f45b | 2009-10-28 17:30:15 +0100 | [diff] [blame] | 607 | platform_driver_unregister(&ab3100_regulators_driver); |
Linus Walleij | d619bc1 | 2009-09-09 11:31:00 +0200 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | subsys_initcall(ab3100_regulators_init); |
| 611 | module_exit(ab3100_regulators_exit); |
| 612 | |
| 613 | MODULE_AUTHOR("Mattias Wallin <mattias.wallin@stericsson.com>"); |
| 614 | MODULE_DESCRIPTION("AB3100 Regulator driver"); |
| 615 | MODULE_LICENSE("GPL"); |
| 616 | MODULE_ALIAS("platform:ab3100-regulators"); |