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