blob: e2062ad74e5d156e3581017342e046d9ac62aa1a [file] [log] [blame]
Linus Walleijd619bc12009-09-09 11:31:00 +02001/*
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 Walleijd619bc12009-09-09 11:31:00 +020016#include <linux/platform_device.h>
17#include <linux/regulator/driver.h>
Linus Walleij812f9e92010-05-01 18:26:07 +020018#include <linux/mfd/abx500.h>
Linus Walleijd619bc12009-09-09 11:31:00 +020019
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 Wallinfa661252010-05-01 18:26:20 +020043 * @dev: handle to the device
Linus Walleijd619bc12009-09-09 11:31:00 +020044 * @plfdata: AB3100 platform data passed in at probe time
45 * @regreg: regulator register number in the AB3100
46 * @fixed_voltage: a fixed voltage for this regulator, if this
47 * 0 the voltages array is used instead.
48 * @typ_voltages: an array of available typical voltages for
49 * this regulator
50 * @voltages_len: length of the array of available voltages
51 */
52struct ab3100_regulator {
53 struct regulator_dev *rdev;
Mattias Wallinfa661252010-05-01 18:26:20 +020054 struct device *dev;
Linus Walleijd619bc12009-09-09 11:31:00 +020055 struct ab3100_platform_data *plfdata;
56 u8 regreg;
57 int fixed_voltage;
58 int const *typ_voltages;
59 u8 voltages_len;
60};
61
62/* The order in which registers are initialized */
63static const u8 ab3100_reg_init_order[AB3100_NUM_REGULATORS+2] = {
64 AB3100_LDO_A,
65 AB3100_LDO_C,
66 AB3100_LDO_E,
67 AB3100_LDO_E_SLEEP,
68 AB3100_LDO_F,
69 AB3100_LDO_G,
70 AB3100_LDO_H,
71 AB3100_LDO_K,
72 AB3100_LDO_EXT,
73 AB3100_BUCK,
74 AB3100_BUCK_SLEEP,
75 AB3100_LDO_D,
76};
77
78/* Preset (hardware defined) voltages for these regulators */
79#define LDO_A_VOLTAGE 2750000
80#define LDO_C_VOLTAGE 2650000
81#define LDO_D_VOLTAGE 2650000
82
Mark Brown9992ef42009-10-22 16:31:34 +010083static const int ldo_e_buck_typ_voltages[] = {
Linus Walleijd619bc12009-09-09 11:31:00 +020084 1800000,
85 1400000,
86 1300000,
87 1200000,
88 1100000,
89 1050000,
90 900000,
91};
92
Mark Brown9992ef42009-10-22 16:31:34 +010093static const int ldo_f_typ_voltages[] = {
Linus Walleijd619bc12009-09-09 11:31:00 +020094 1800000,
95 1400000,
96 1300000,
97 1200000,
98 1100000,
99 1050000,
100 2500000,
101 2650000,
102};
103
Mark Brown9992ef42009-10-22 16:31:34 +0100104static const int ldo_g_typ_voltages[] = {
Linus Walleijd619bc12009-09-09 11:31:00 +0200105 2850000,
106 2750000,
107 1800000,
108 1500000,
109};
110
Mark Brown9992ef42009-10-22 16:31:34 +0100111static const int ldo_h_typ_voltages[] = {
Linus Walleijd619bc12009-09-09 11:31:00 +0200112 2750000,
113 1800000,
114 1500000,
115 1200000,
116};
117
Mark Brown9992ef42009-10-22 16:31:34 +0100118static const int ldo_k_typ_voltages[] = {
Linus Walleijd619bc12009-09-09 11:31:00 +0200119 2750000,
120 1800000,
121};
122
123
124/* The regulator devices */
125static struct ab3100_regulator
126ab3100_regulators[AB3100_NUM_REGULATORS] = {
127 {
128 .regreg = AB3100_LDO_A,
129 .fixed_voltage = LDO_A_VOLTAGE,
130 },
131 {
132 .regreg = AB3100_LDO_C,
133 .fixed_voltage = LDO_C_VOLTAGE,
134 },
135 {
136 .regreg = AB3100_LDO_D,
137 .fixed_voltage = LDO_D_VOLTAGE,
138 },
139 {
140 .regreg = AB3100_LDO_E,
141 .typ_voltages = ldo_e_buck_typ_voltages,
142 .voltages_len = ARRAY_SIZE(ldo_e_buck_typ_voltages),
143 },
144 {
145 .regreg = AB3100_LDO_F,
146 .typ_voltages = ldo_f_typ_voltages,
147 .voltages_len = ARRAY_SIZE(ldo_f_typ_voltages),
148 },
149 {
150 .regreg = AB3100_LDO_G,
151 .typ_voltages = ldo_g_typ_voltages,
152 .voltages_len = ARRAY_SIZE(ldo_g_typ_voltages),
153 },
154 {
155 .regreg = AB3100_LDO_H,
156 .typ_voltages = ldo_h_typ_voltages,
157 .voltages_len = ARRAY_SIZE(ldo_h_typ_voltages),
158 },
159 {
160 .regreg = AB3100_LDO_K,
161 .typ_voltages = ldo_k_typ_voltages,
162 .voltages_len = ARRAY_SIZE(ldo_k_typ_voltages),
163 },
164 {
165 .regreg = AB3100_LDO_EXT,
166 /* No voltages for the external regulator */
167 },
168 {
169 .regreg = AB3100_BUCK,
170 .typ_voltages = ldo_e_buck_typ_voltages,
171 .voltages_len = ARRAY_SIZE(ldo_e_buck_typ_voltages),
172 },
173};
174
175/*
176 * General functions for enable, disable and is_enabled used for
177 * LDO: A,C,E,F,G,H,K,EXT and BUCK
178 */
179static int ab3100_enable_regulator(struct regulator_dev *reg)
180{
181 struct ab3100_regulator *abreg = reg->reg_data;
182 int err;
183 u8 regval;
184
Mattias Wallinfa661252010-05-01 18:26:20 +0200185 err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg,
Linus Walleijd619bc12009-09-09 11:31:00 +0200186 &regval);
187 if (err) {
188 dev_warn(&reg->dev, "failed to get regid %d value\n",
189 abreg->regreg);
190 return err;
191 }
192
193 /* The regulator is already on, no reason to go further */
194 if (regval & AB3100_REG_ON_MASK)
195 return 0;
196
197 regval |= AB3100_REG_ON_MASK;
198
Mattias Wallinfa661252010-05-01 18:26:20 +0200199 err = abx500_set_register_interruptible(abreg->dev, 0, abreg->regreg,
Linus Walleijd619bc12009-09-09 11:31:00 +0200200 regval);
201 if (err) {
202 dev_warn(&reg->dev, "failed to set regid %d value\n",
203 abreg->regreg);
204 return err;
205 }
206
Linus Walleijd619bc12009-09-09 11:31:00 +0200207 return 0;
208}
209
210static int ab3100_disable_regulator(struct regulator_dev *reg)
211{
212 struct ab3100_regulator *abreg = reg->reg_data;
213 int err;
214 u8 regval;
215
216 /*
217 * LDO D is a special regulator. When it is disabled, the entire
218 * system is shut down. So this is handled specially.
219 */
Linus Walleij176f45b2009-10-28 17:30:15 +0100220 pr_info("Called ab3100_disable_regulator\n");
Linus Walleijd619bc12009-09-09 11:31:00 +0200221 if (abreg->regreg == AB3100_LDO_D) {
Linus Walleijd619bc12009-09-09 11:31:00 +0200222 dev_info(&reg->dev, "disabling LDO D - shut down system\n");
Linus Walleijd619bc12009-09-09 11:31:00 +0200223 /* Setting LDO D to 0x00 cuts the power to the SoC */
Mattias Wallinfa661252010-05-01 18:26:20 +0200224 return abx500_set_register_interruptible(abreg->dev, 0,
Linus Walleijd619bc12009-09-09 11:31:00 +0200225 AB3100_LDO_D, 0x00U);
Linus Walleijd619bc12009-09-09 11:31:00 +0200226 }
227
228 /*
229 * All other regulators are handled here
230 */
Mattias Wallinfa661252010-05-01 18:26:20 +0200231 err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg,
Linus Walleijd619bc12009-09-09 11:31:00 +0200232 &regval);
233 if (err) {
234 dev_err(&reg->dev, "unable to get register 0x%x\n",
235 abreg->regreg);
236 return err;
237 }
238 regval &= ~AB3100_REG_ON_MASK;
Mattias Wallinfa661252010-05-01 18:26:20 +0200239 return abx500_set_register_interruptible(abreg->dev, 0, abreg->regreg,
Linus Walleijd619bc12009-09-09 11:31:00 +0200240 regval);
241}
242
243static int ab3100_is_enabled_regulator(struct regulator_dev *reg)
244{
245 struct ab3100_regulator *abreg = reg->reg_data;
246 u8 regval;
247 int err;
248
Mattias Wallinfa661252010-05-01 18:26:20 +0200249 err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg,
Linus Walleijd619bc12009-09-09 11:31:00 +0200250 &regval);
251 if (err) {
252 dev_err(&reg->dev, "unable to get register 0x%x\n",
253 abreg->regreg);
254 return err;
255 }
256
257 return regval & AB3100_REG_ON_MASK;
258}
259
260static int ab3100_list_voltage_regulator(struct regulator_dev *reg,
261 unsigned selector)
262{
263 struct ab3100_regulator *abreg = reg->reg_data;
264
Axel Lin979da892010-07-26 15:34:14 +0800265 if (selector >= abreg->voltages_len)
Linus Walleijd619bc12009-09-09 11:31:00 +0200266 return -EINVAL;
267 return abreg->typ_voltages[selector];
268}
269
270static int ab3100_get_voltage_regulator(struct regulator_dev *reg)
271{
272 struct ab3100_regulator *abreg = reg->reg_data;
273 u8 regval;
274 int err;
275
276 /* Return the voltage for fixed regulators immediately */
277 if (abreg->fixed_voltage)
278 return abreg->fixed_voltage;
279
280 /*
281 * For variable types, read out setting and index into
282 * supplied voltage list.
283 */
Mattias Wallinfa661252010-05-01 18:26:20 +0200284 err = abx500_get_register_interruptible(abreg->dev, 0,
Linus Walleijd619bc12009-09-09 11:31:00 +0200285 abreg->regreg, &regval);
286 if (err) {
287 dev_warn(&reg->dev,
288 "failed to get regulator value in register %02x\n",
289 abreg->regreg);
290 return err;
291 }
292
293 /* The 3 highest bits index voltages */
294 regval &= 0xE0;
295 regval >>= 5;
296
Axel Lin979da892010-07-26 15:34:14 +0800297 if (regval >= abreg->voltages_len) {
Linus Walleijd619bc12009-09-09 11:31:00 +0200298 dev_err(&reg->dev,
299 "regulator register %02x contains an illegal voltage setting\n",
300 abreg->regreg);
301 return -EINVAL;
302 }
303
304 return abreg->typ_voltages[regval];
305}
306
307static int ab3100_get_best_voltage_index(struct regulator_dev *reg,
308 int min_uV, int max_uV)
309{
310 struct ab3100_regulator *abreg = reg->reg_data;
311 int i;
312 int bestmatch;
313 int bestindex;
314
315 /*
316 * Locate the minimum voltage fitting the criteria on
317 * this regulator. The switchable voltages are not
318 * in strict falling order so we need to check them
319 * all for the best match.
320 */
321 bestmatch = INT_MAX;
322 bestindex = -1;
323 for (i = 0; i < abreg->voltages_len; i++) {
324 if (abreg->typ_voltages[i] <= max_uV &&
325 abreg->typ_voltages[i] >= min_uV &&
326 abreg->typ_voltages[i] < bestmatch) {
327 bestmatch = abreg->typ_voltages[i];
328 bestindex = i;
329 }
330 }
331
332 if (bestindex < 0) {
333 dev_warn(&reg->dev, "requested %d<=x<=%d uV, out of range!\n",
334 min_uV, max_uV);
335 return -EINVAL;
336 }
337 return bestindex;
338}
339
Axel Lin1f793ff2012-03-20 10:14:40 +0800340static int ab3100_set_voltage_regulator_sel(struct regulator_dev *reg,
341 unsigned selector)
Linus Walleijd619bc12009-09-09 11:31:00 +0200342{
343 struct ab3100_regulator *abreg = reg->reg_data;
344 u8 regval;
345 int err;
Mark Brown3a93f2a2010-11-10 14:38:29 +0000346
Mattias Wallinfa661252010-05-01 18:26:20 +0200347 err = abx500_get_register_interruptible(abreg->dev, 0,
Linus Walleijd619bc12009-09-09 11:31:00 +0200348 abreg->regreg, &regval);
349 if (err) {
350 dev_warn(&reg->dev,
351 "failed to get regulator register %02x\n",
352 abreg->regreg);
353 return err;
354 }
355
356 /* The highest three bits control the variable regulators */
357 regval &= ~0xE0;
Axel Lin1f793ff2012-03-20 10:14:40 +0800358 regval |= (selector << 5);
Linus Walleijd619bc12009-09-09 11:31:00 +0200359
Mattias Wallinfa661252010-05-01 18:26:20 +0200360 err = abx500_set_register_interruptible(abreg->dev, 0,
Linus Walleijd619bc12009-09-09 11:31:00 +0200361 abreg->regreg, regval);
362 if (err)
363 dev_warn(&reg->dev, "failed to set regulator register %02x\n",
364 abreg->regreg);
365
366 return err;
367}
368
369static int ab3100_set_suspend_voltage_regulator(struct regulator_dev *reg,
370 int uV)
371{
372 struct ab3100_regulator *abreg = reg->reg_data;
373 u8 regval;
374 int err;
375 int bestindex;
376 u8 targetreg;
377
378 if (abreg->regreg == AB3100_LDO_E)
379 targetreg = AB3100_LDO_E_SLEEP;
380 else if (abreg->regreg == AB3100_BUCK)
381 targetreg = AB3100_BUCK_SLEEP;
382 else
383 return -EINVAL;
384
385 /* LDO E and BUCK have special suspend voltages you can set */
386 bestindex = ab3100_get_best_voltage_index(reg, uV, uV);
387
Mattias Wallinfa661252010-05-01 18:26:20 +0200388 err = abx500_get_register_interruptible(abreg->dev, 0,
Linus Walleijd619bc12009-09-09 11:31:00 +0200389 targetreg, &regval);
390 if (err) {
391 dev_warn(&reg->dev,
392 "failed to get regulator register %02x\n",
393 targetreg);
394 return err;
395 }
396
397 /* The highest three bits control the variable regulators */
398 regval &= ~0xE0;
399 regval |= (bestindex << 5);
400
Mattias Wallinfa661252010-05-01 18:26:20 +0200401 err = abx500_set_register_interruptible(abreg->dev, 0,
Linus Walleijd619bc12009-09-09 11:31:00 +0200402 targetreg, regval);
403 if (err)
404 dev_warn(&reg->dev, "failed to set regulator register %02x\n",
405 abreg->regreg);
406
407 return err;
408}
409
410/*
411 * The external regulator can just define a fixed voltage.
412 */
413static int ab3100_get_voltage_regulator_external(struct regulator_dev *reg)
414{
415 struct ab3100_regulator *abreg = reg->reg_data;
416
417 return abreg->plfdata->external_voltage;
418}
419
Linus Walleij19c98822011-03-11 16:26:18 +0100420static int ab3100_enable_time_regulator(struct regulator_dev *reg)
421{
422 struct ab3100_regulator *abreg = reg->reg_data;
423
424 /* Per-regulator power on delay from spec */
425 switch (abreg->regreg) {
426 case AB3100_LDO_A: /* Fallthrough */
427 case AB3100_LDO_C: /* Fallthrough */
428 case AB3100_LDO_D: /* Fallthrough */
429 case AB3100_LDO_E: /* Fallthrough */
430 case AB3100_LDO_H: /* Fallthrough */
431 case AB3100_LDO_K:
432 return 200;
433 case AB3100_LDO_F:
434 return 600;
435 case AB3100_LDO_G:
436 return 400;
437 case AB3100_BUCK:
438 return 1000;
439 default:
440 break;
441 }
442 return 0;
443}
444
Linus Walleijd619bc12009-09-09 11:31:00 +0200445static struct regulator_ops regulator_ops_fixed = {
446 .enable = ab3100_enable_regulator,
447 .disable = ab3100_disable_regulator,
448 .is_enabled = ab3100_is_enabled_regulator,
449 .get_voltage = ab3100_get_voltage_regulator,
Linus Walleij19c98822011-03-11 16:26:18 +0100450 .enable_time = ab3100_enable_time_regulator,
Linus Walleijd619bc12009-09-09 11:31:00 +0200451};
452
453static struct regulator_ops regulator_ops_variable = {
454 .enable = ab3100_enable_regulator,
455 .disable = ab3100_disable_regulator,
456 .is_enabled = ab3100_is_enabled_regulator,
457 .get_voltage = ab3100_get_voltage_regulator,
Axel Lin1f793ff2012-03-20 10:14:40 +0800458 .set_voltage_sel = ab3100_set_voltage_regulator_sel,
Linus Walleijd619bc12009-09-09 11:31:00 +0200459 .list_voltage = ab3100_list_voltage_regulator,
Linus Walleij19c98822011-03-11 16:26:18 +0100460 .enable_time = ab3100_enable_time_regulator,
Linus Walleijd619bc12009-09-09 11:31:00 +0200461};
462
463static struct regulator_ops regulator_ops_variable_sleepable = {
464 .enable = ab3100_enable_regulator,
465 .disable = ab3100_disable_regulator,
466 .is_enabled = ab3100_is_enabled_regulator,
467 .get_voltage = ab3100_get_voltage_regulator,
Axel Lin1f793ff2012-03-20 10:14:40 +0800468 .set_voltage_sel = ab3100_set_voltage_regulator_sel,
Linus Walleijd619bc12009-09-09 11:31:00 +0200469 .set_suspend_voltage = ab3100_set_suspend_voltage_regulator,
470 .list_voltage = ab3100_list_voltage_regulator,
Linus Walleij19c98822011-03-11 16:26:18 +0100471 .enable_time = ab3100_enable_time_regulator,
Linus Walleijd619bc12009-09-09 11:31:00 +0200472};
473
474/*
475 * LDO EXT is an external regulator so it is really
476 * not possible to set any voltage locally here, AB3100
477 * is an on/off switch plain an simple. The external
478 * voltage is defined in the board set-up if any.
479 */
480static struct regulator_ops regulator_ops_external = {
481 .enable = ab3100_enable_regulator,
482 .disable = ab3100_disable_regulator,
483 .is_enabled = ab3100_is_enabled_regulator,
484 .get_voltage = ab3100_get_voltage_regulator_external,
485};
486
487static struct regulator_desc
488ab3100_regulator_desc[AB3100_NUM_REGULATORS] = {
489 {
490 .name = "LDO_A",
491 .id = AB3100_LDO_A,
492 .ops = &regulator_ops_fixed,
493 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800494 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200495 },
496 {
497 .name = "LDO_C",
498 .id = AB3100_LDO_C,
499 .ops = &regulator_ops_fixed,
500 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800501 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200502 },
503 {
504 .name = "LDO_D",
505 .id = AB3100_LDO_D,
506 .ops = &regulator_ops_fixed,
507 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800508 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200509 },
510 {
511 .name = "LDO_E",
512 .id = AB3100_LDO_E,
513 .ops = &regulator_ops_variable_sleepable,
Linus Walleij75f2ba82009-09-17 09:17:33 +0200514 .n_voltages = ARRAY_SIZE(ldo_e_buck_typ_voltages),
Linus Walleijd619bc12009-09-09 11:31:00 +0200515 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800516 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200517 },
518 {
519 .name = "LDO_F",
520 .id = AB3100_LDO_F,
521 .ops = &regulator_ops_variable,
Linus Walleij75f2ba82009-09-17 09:17:33 +0200522 .n_voltages = ARRAY_SIZE(ldo_f_typ_voltages),
Linus Walleijd619bc12009-09-09 11:31:00 +0200523 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800524 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200525 },
526 {
527 .name = "LDO_G",
528 .id = AB3100_LDO_G,
529 .ops = &regulator_ops_variable,
Linus Walleij75f2ba82009-09-17 09:17:33 +0200530 .n_voltages = ARRAY_SIZE(ldo_g_typ_voltages),
Linus Walleijd619bc12009-09-09 11:31:00 +0200531 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800532 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200533 },
534 {
535 .name = "LDO_H",
536 .id = AB3100_LDO_H,
537 .ops = &regulator_ops_variable,
Linus Walleij75f2ba82009-09-17 09:17:33 +0200538 .n_voltages = ARRAY_SIZE(ldo_h_typ_voltages),
Linus Walleijd619bc12009-09-09 11:31:00 +0200539 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800540 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200541 },
542 {
543 .name = "LDO_K",
544 .id = AB3100_LDO_K,
545 .ops = &regulator_ops_variable,
Linus Walleij75f2ba82009-09-17 09:17:33 +0200546 .n_voltages = ARRAY_SIZE(ldo_k_typ_voltages),
Linus Walleijd619bc12009-09-09 11:31:00 +0200547 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800548 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200549 },
550 {
551 .name = "LDO_EXT",
552 .id = AB3100_LDO_EXT,
553 .ops = &regulator_ops_external,
554 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800555 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200556 },
557 {
558 .name = "BUCK",
559 .id = AB3100_BUCK,
560 .ops = &regulator_ops_variable_sleepable,
Linus Walleij75f2ba82009-09-17 09:17:33 +0200561 .n_voltages = ARRAY_SIZE(ldo_e_buck_typ_voltages),
Linus Walleijd619bc12009-09-09 11:31:00 +0200562 .type = REGULATOR_VOLTAGE,
Axel Lin64714352010-05-13 17:33:01 +0800563 .owner = THIS_MODULE,
Linus Walleijd619bc12009-09-09 11:31:00 +0200564 },
565};
566
567/*
568 * NOTE: the following functions are regulators pluralis - it is the
569 * binding to the AB3100 core driver and the parent platform device
570 * for all the different regulators.
571 */
572
Dmitry Torokhov98bf7c02010-02-23 23:37:50 -0800573static int __devinit ab3100_regulators_probe(struct platform_device *pdev)
Linus Walleijd619bc12009-09-09 11:31:00 +0200574{
Samuel Ortiza771e362011-04-06 00:41:43 +0200575 struct ab3100_platform_data *plfdata = pdev->dev.platform_data;
Mark Brownc1727082012-04-04 00:50:22 +0100576 struct regulator_config config = { };
Linus Walleijd619bc12009-09-09 11:31:00 +0200577 int err = 0;
578 u8 data;
579 int i;
580
581 /* Check chip state */
Mattias Wallinfa661252010-05-01 18:26:20 +0200582 err = abx500_get_register_interruptible(&pdev->dev, 0,
Linus Walleijd619bc12009-09-09 11:31:00 +0200583 AB3100_LDO_D, &data);
584 if (err) {
585 dev_err(&pdev->dev, "could not read initial status of LDO_D\n");
586 return err;
587 }
588 if (data & 0x10)
589 dev_notice(&pdev->dev,
590 "chip is already in active mode (Warm start)\n");
591 else
592 dev_notice(&pdev->dev,
593 "chip is in inactive mode (Cold start)\n");
594
595 /* Set up regulators */
596 for (i = 0; i < ARRAY_SIZE(ab3100_reg_init_order); i++) {
Mattias Wallinfa661252010-05-01 18:26:20 +0200597 err = abx500_set_register_interruptible(&pdev->dev, 0,
Linus Walleijd619bc12009-09-09 11:31:00 +0200598 ab3100_reg_init_order[i],
599 plfdata->reg_initvals[i]);
600 if (err) {
601 dev_err(&pdev->dev, "regulator initialization failed with error %d\n",
602 err);
603 return err;
604 }
605 }
606
Linus Walleijd619bc12009-09-09 11:31:00 +0200607 /* Register the regulators */
608 for (i = 0; i < AB3100_NUM_REGULATORS; i++) {
609 struct ab3100_regulator *reg = &ab3100_regulators[i];
610 struct regulator_dev *rdev;
611
612 /*
613 * Initialize per-regulator struct.
614 * Inherit platform data, this comes down from the
615 * i2c boarddata, from the machine. So if you want to
616 * see what it looks like for a certain machine, go
617 * into the machine I2C setup.
618 */
Mattias Wallinfa661252010-05-01 18:26:20 +0200619 reg->dev = &pdev->dev;
Linus Walleijd619bc12009-09-09 11:31:00 +0200620 reg->plfdata = plfdata;
621
Mark Brownc1727082012-04-04 00:50:22 +0100622 config.dev = &pdev->dev;
623 config.driver_data = reg;
624 config.init_data = &plfdata->reg_constraints[i];
625
Linus Walleijd619bc12009-09-09 11:31:00 +0200626 /*
627 * Register the regulator, pass around
628 * the ab3100_regulator struct
629 */
Mark Brownc1727082012-04-04 00:50:22 +0100630 rdev = regulator_register(&ab3100_regulator_desc[i], &config);
Linus Walleijd619bc12009-09-09 11:31:00 +0200631 if (IS_ERR(rdev)) {
632 err = PTR_ERR(rdev);
633 dev_err(&pdev->dev,
634 "%s: failed to register regulator %s err %d\n",
635 __func__, ab3100_regulator_desc[i].name,
636 err);
Linus Walleijd619bc12009-09-09 11:31:00 +0200637 /* remove the already registered regulators */
Axel Linb3fcf3e2010-08-14 21:31:01 +0800638 while (--i >= 0)
Linus Walleijd619bc12009-09-09 11:31:00 +0200639 regulator_unregister(ab3100_regulators[i].rdev);
Linus Walleijd619bc12009-09-09 11:31:00 +0200640 return err;
641 }
642
643 /* Then set a pointer back to the registered regulator */
644 reg->rdev = rdev;
645 }
646
647 return 0;
648}
649
Dmitry Torokhov98bf7c02010-02-23 23:37:50 -0800650static int __devexit ab3100_regulators_remove(struct platform_device *pdev)
Linus Walleijd619bc12009-09-09 11:31:00 +0200651{
652 int i;
653
654 for (i = 0; i < AB3100_NUM_REGULATORS; i++) {
655 struct ab3100_regulator *reg = &ab3100_regulators[i];
656
657 regulator_unregister(reg->rdev);
658 }
659 return 0;
660}
661
662static struct platform_driver ab3100_regulators_driver = {
663 .driver = {
664 .name = "ab3100-regulators",
665 .owner = THIS_MODULE,
666 },
667 .probe = ab3100_regulators_probe,
Dmitry Torokhov98bf7c02010-02-23 23:37:50 -0800668 .remove = __devexit_p(ab3100_regulators_remove),
Linus Walleijd619bc12009-09-09 11:31:00 +0200669};
670
671static __init int ab3100_regulators_init(void)
672{
673 return platform_driver_register(&ab3100_regulators_driver);
674}
675
676static __exit void ab3100_regulators_exit(void)
677{
Linus Walleij176f45b2009-10-28 17:30:15 +0100678 platform_driver_unregister(&ab3100_regulators_driver);
Linus Walleijd619bc12009-09-09 11:31:00 +0200679}
680
681subsys_initcall(ab3100_regulators_init);
682module_exit(ab3100_regulators_exit);
683
684MODULE_AUTHOR("Mattias Wallin <mattias.wallin@stericsson.com>");
685MODULE_DESCRIPTION("AB3100 Regulator driver");
686MODULE_LICENSE("GPL");
687MODULE_ALIAS("platform:ab3100-regulators");