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