2 * drivers/regulator/ab3100.c
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>
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/err.h>
16 #include <linux/platform_device.h>
17 #include <linux/regulator/driver.h>
18 #include <linux/mfd/abx500.h>
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
40 * struct ab3100_regulator
41 * A struct passed around the individual regulator functions
42 * @platform_device: platform device holding this regulator
43 * @dev: handle to the device
44 * @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
50 * @voltages_len: length of the array of available voltages
52 struct ab3100_regulator {
53 struct regulator_dev *rdev;
55 struct ab3100_platform_data *plfdata;
58 int const *typ_voltages;
62 /* The order in which registers are initialized */
63 static const u8 ab3100_reg_init_order[AB3100_NUM_REGULATORS+2] = {
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
83 static const int ldo_e_buck_typ_voltages[] = {
93 static const int ldo_f_typ_voltages[] = {
104 static const int ldo_g_typ_voltages[] = {
111 static const int ldo_h_typ_voltages[] = {
118 static const int ldo_k_typ_voltages[] = {
124 /* The regulator devices */
125 static struct ab3100_regulator
126 ab3100_regulators[AB3100_NUM_REGULATORS] = {
128 .regreg = AB3100_LDO_A,
129 .fixed_voltage = LDO_A_VOLTAGE,
132 .regreg = AB3100_LDO_C,
133 .fixed_voltage = LDO_C_VOLTAGE,
136 .regreg = AB3100_LDO_D,
137 .fixed_voltage = LDO_D_VOLTAGE,
140 .regreg = AB3100_LDO_E,
141 .typ_voltages = ldo_e_buck_typ_voltages,
142 .voltages_len = ARRAY_SIZE(ldo_e_buck_typ_voltages),
145 .regreg = AB3100_LDO_F,
146 .typ_voltages = ldo_f_typ_voltages,
147 .voltages_len = ARRAY_SIZE(ldo_f_typ_voltages),
150 .regreg = AB3100_LDO_G,
151 .typ_voltages = ldo_g_typ_voltages,
152 .voltages_len = ARRAY_SIZE(ldo_g_typ_voltages),
155 .regreg = AB3100_LDO_H,
156 .typ_voltages = ldo_h_typ_voltages,
157 .voltages_len = ARRAY_SIZE(ldo_h_typ_voltages),
160 .regreg = AB3100_LDO_K,
161 .typ_voltages = ldo_k_typ_voltages,
162 .voltages_len = ARRAY_SIZE(ldo_k_typ_voltages),
165 .regreg = AB3100_LDO_EXT,
166 /* No voltages for the external regulator */
169 .regreg = AB3100_BUCK,
170 .typ_voltages = ldo_e_buck_typ_voltages,
171 .voltages_len = ARRAY_SIZE(ldo_e_buck_typ_voltages),
176 * General functions for enable, disable and is_enabled used for
177 * LDO: A,C,E,F,G,H,K,EXT and BUCK
179 static int ab3100_enable_regulator(struct regulator_dev *reg)
181 struct ab3100_regulator *abreg = reg->reg_data;
185 err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg,
188 dev_warn(®->dev, "failed to get regid %d value\n",
193 /* The regulator is already on, no reason to go further */
194 if (regval & AB3100_REG_ON_MASK)
197 regval |= AB3100_REG_ON_MASK;
199 err = abx500_set_register_interruptible(abreg->dev, 0, abreg->regreg,
202 dev_warn(®->dev, "failed to set regid %d value\n",
210 static int ab3100_disable_regulator(struct regulator_dev *reg)
212 struct ab3100_regulator *abreg = reg->reg_data;
217 * LDO D is a special regulator. When it is disabled, the entire
218 * system is shut down. So this is handled specially.
220 pr_info("Called ab3100_disable_regulator\n");
221 if (abreg->regreg == AB3100_LDO_D) {
222 dev_info(®->dev, "disabling LDO D - shut down system\n");
223 /* Setting LDO D to 0x00 cuts the power to the SoC */
224 return abx500_set_register_interruptible(abreg->dev, 0,
225 AB3100_LDO_D, 0x00U);
229 * All other regulators are handled here
231 err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg,
234 dev_err(®->dev, "unable to get register 0x%x\n",
238 regval &= ~AB3100_REG_ON_MASK;
239 return abx500_set_register_interruptible(abreg->dev, 0, abreg->regreg,
243 static int ab3100_is_enabled_regulator(struct regulator_dev *reg)
245 struct ab3100_regulator *abreg = reg->reg_data;
249 err = abx500_get_register_interruptible(abreg->dev, 0, abreg->regreg,
252 dev_err(®->dev, "unable to get register 0x%x\n",
257 return regval & AB3100_REG_ON_MASK;
260 static int ab3100_list_voltage_regulator(struct regulator_dev *reg,
263 struct ab3100_regulator *abreg = reg->reg_data;
265 if (selector >= abreg->voltages_len)
267 return abreg->typ_voltages[selector];
270 static int ab3100_get_voltage_regulator(struct regulator_dev *reg)
272 struct ab3100_regulator *abreg = reg->reg_data;
276 /* Return the voltage for fixed regulators immediately */
277 if (abreg->fixed_voltage)
278 return abreg->fixed_voltage;
281 * For variable types, read out setting and index into
282 * supplied voltage list.
284 err = abx500_get_register_interruptible(abreg->dev, 0,
285 abreg->regreg, ®val);
288 "failed to get regulator value in register %02x\n",
293 /* The 3 highest bits index voltages */
297 if (regval >= abreg->voltages_len) {
299 "regulator register %02x contains an illegal voltage setting\n",
304 return abreg->typ_voltages[regval];
307 static int ab3100_set_voltage_regulator_sel(struct regulator_dev *reg,
310 struct ab3100_regulator *abreg = reg->reg_data;
314 err = abx500_get_register_interruptible(abreg->dev, 0,
315 abreg->regreg, ®val);
318 "failed to get regulator register %02x\n",
323 /* The highest three bits control the variable regulators */
325 regval |= (selector << 5);
327 err = abx500_set_register_interruptible(abreg->dev, 0,
328 abreg->regreg, regval);
330 dev_warn(®->dev, "failed to set regulator register %02x\n",
336 static int ab3100_set_suspend_voltage_regulator(struct regulator_dev *reg,
339 struct ab3100_regulator *abreg = reg->reg_data;
345 if (abreg->regreg == AB3100_LDO_E)
346 targetreg = AB3100_LDO_E_SLEEP;
347 else if (abreg->regreg == AB3100_BUCK)
348 targetreg = AB3100_BUCK_SLEEP;
352 /* LDO E and BUCK have special suspend voltages you can set */
353 bestindex = regulator_map_voltage_iterate(reg, uV, uV);
355 err = abx500_get_register_interruptible(abreg->dev, 0,
359 "failed to get regulator register %02x\n",
364 /* The highest three bits control the variable regulators */
366 regval |= (bestindex << 5);
368 err = abx500_set_register_interruptible(abreg->dev, 0,
371 dev_warn(®->dev, "failed to set regulator register %02x\n",
378 * The external regulator can just define a fixed voltage.
380 static int ab3100_get_voltage_regulator_external(struct regulator_dev *reg)
382 struct ab3100_regulator *abreg = reg->reg_data;
384 return abreg->plfdata->external_voltage;
387 static int ab3100_enable_time_regulator(struct regulator_dev *reg)
389 struct ab3100_regulator *abreg = reg->reg_data;
391 /* Per-regulator power on delay from spec */
392 switch (abreg->regreg) {
393 case AB3100_LDO_A: /* Fallthrough */
394 case AB3100_LDO_C: /* Fallthrough */
395 case AB3100_LDO_D: /* Fallthrough */
396 case AB3100_LDO_E: /* Fallthrough */
397 case AB3100_LDO_H: /* Fallthrough */
412 static struct regulator_ops regulator_ops_fixed = {
413 .enable = ab3100_enable_regulator,
414 .disable = ab3100_disable_regulator,
415 .is_enabled = ab3100_is_enabled_regulator,
416 .get_voltage = ab3100_get_voltage_regulator,
417 .enable_time = ab3100_enable_time_regulator,
420 static struct regulator_ops regulator_ops_variable = {
421 .enable = ab3100_enable_regulator,
422 .disable = ab3100_disable_regulator,
423 .is_enabled = ab3100_is_enabled_regulator,
424 .get_voltage = ab3100_get_voltage_regulator,
425 .set_voltage_sel = ab3100_set_voltage_regulator_sel,
426 .list_voltage = ab3100_list_voltage_regulator,
427 .enable_time = ab3100_enable_time_regulator,
430 static struct regulator_ops regulator_ops_variable_sleepable = {
431 .enable = ab3100_enable_regulator,
432 .disable = ab3100_disable_regulator,
433 .is_enabled = ab3100_is_enabled_regulator,
434 .get_voltage = ab3100_get_voltage_regulator,
435 .set_voltage_sel = ab3100_set_voltage_regulator_sel,
436 .set_suspend_voltage = ab3100_set_suspend_voltage_regulator,
437 .list_voltage = ab3100_list_voltage_regulator,
438 .enable_time = ab3100_enable_time_regulator,
442 * LDO EXT is an external regulator so it is really
443 * not possible to set any voltage locally here, AB3100
444 * is an on/off switch plain an simple. The external
445 * voltage is defined in the board set-up if any.
447 static struct regulator_ops regulator_ops_external = {
448 .enable = ab3100_enable_regulator,
449 .disable = ab3100_disable_regulator,
450 .is_enabled = ab3100_is_enabled_regulator,
451 .get_voltage = ab3100_get_voltage_regulator_external,
454 static struct regulator_desc
455 ab3100_regulator_desc[AB3100_NUM_REGULATORS] = {
459 .ops = ®ulator_ops_fixed,
460 .type = REGULATOR_VOLTAGE,
461 .owner = THIS_MODULE,
466 .ops = ®ulator_ops_fixed,
467 .type = REGULATOR_VOLTAGE,
468 .owner = THIS_MODULE,
473 .ops = ®ulator_ops_fixed,
474 .type = REGULATOR_VOLTAGE,
475 .owner = THIS_MODULE,
480 .ops = ®ulator_ops_variable_sleepable,
481 .n_voltages = ARRAY_SIZE(ldo_e_buck_typ_voltages),
482 .type = REGULATOR_VOLTAGE,
483 .owner = THIS_MODULE,
488 .ops = ®ulator_ops_variable,
489 .n_voltages = ARRAY_SIZE(ldo_f_typ_voltages),
490 .type = REGULATOR_VOLTAGE,
491 .owner = THIS_MODULE,
496 .ops = ®ulator_ops_variable,
497 .n_voltages = ARRAY_SIZE(ldo_g_typ_voltages),
498 .type = REGULATOR_VOLTAGE,
499 .owner = THIS_MODULE,
504 .ops = ®ulator_ops_variable,
505 .n_voltages = ARRAY_SIZE(ldo_h_typ_voltages),
506 .type = REGULATOR_VOLTAGE,
507 .owner = THIS_MODULE,
512 .ops = ®ulator_ops_variable,
513 .n_voltages = ARRAY_SIZE(ldo_k_typ_voltages),
514 .type = REGULATOR_VOLTAGE,
515 .owner = THIS_MODULE,
519 .id = AB3100_LDO_EXT,
520 .ops = ®ulator_ops_external,
521 .type = REGULATOR_VOLTAGE,
522 .owner = THIS_MODULE,
527 .ops = ®ulator_ops_variable_sleepable,
528 .n_voltages = ARRAY_SIZE(ldo_e_buck_typ_voltages),
529 .type = REGULATOR_VOLTAGE,
530 .owner = THIS_MODULE,
535 * NOTE: the following functions are regulators pluralis - it is the
536 * binding to the AB3100 core driver and the parent platform device
537 * for all the different regulators.
540 static int __devinit ab3100_regulators_probe(struct platform_device *pdev)
542 struct ab3100_platform_data *plfdata = pdev->dev.platform_data;
543 struct regulator_config config = { };
548 /* Check chip state */
549 err = abx500_get_register_interruptible(&pdev->dev, 0,
550 AB3100_LDO_D, &data);
552 dev_err(&pdev->dev, "could not read initial status of LDO_D\n");
556 dev_notice(&pdev->dev,
557 "chip is already in active mode (Warm start)\n");
559 dev_notice(&pdev->dev,
560 "chip is in inactive mode (Cold start)\n");
562 /* Set up regulators */
563 for (i = 0; i < ARRAY_SIZE(ab3100_reg_init_order); i++) {
564 err = abx500_set_register_interruptible(&pdev->dev, 0,
565 ab3100_reg_init_order[i],
566 plfdata->reg_initvals[i]);
568 dev_err(&pdev->dev, "regulator initialization failed with error %d\n",
574 /* Register the regulators */
575 for (i = 0; i < AB3100_NUM_REGULATORS; i++) {
576 struct ab3100_regulator *reg = &ab3100_regulators[i];
577 struct regulator_dev *rdev;
580 * Initialize per-regulator struct.
581 * Inherit platform data, this comes down from the
582 * i2c boarddata, from the machine. So if you want to
583 * see what it looks like for a certain machine, go
584 * into the machine I2C setup.
586 reg->dev = &pdev->dev;
587 reg->plfdata = plfdata;
589 config.dev = &pdev->dev;
590 config.driver_data = reg;
591 config.init_data = &plfdata->reg_constraints[i];
594 * Register the regulator, pass around
595 * the ab3100_regulator struct
597 rdev = regulator_register(&ab3100_regulator_desc[i], &config);
601 "%s: failed to register regulator %s err %d\n",
602 __func__, ab3100_regulator_desc[i].name,
604 /* remove the already registered regulators */
606 regulator_unregister(ab3100_regulators[i].rdev);
610 /* Then set a pointer back to the registered regulator */
617 static int __devexit ab3100_regulators_remove(struct platform_device *pdev)
621 for (i = 0; i < AB3100_NUM_REGULATORS; i++) {
622 struct ab3100_regulator *reg = &ab3100_regulators[i];
624 regulator_unregister(reg->rdev);
629 static struct platform_driver ab3100_regulators_driver = {
631 .name = "ab3100-regulators",
632 .owner = THIS_MODULE,
634 .probe = ab3100_regulators_probe,
635 .remove = __devexit_p(ab3100_regulators_remove),
638 static __init int ab3100_regulators_init(void)
640 return platform_driver_register(&ab3100_regulators_driver);
643 static __exit void ab3100_regulators_exit(void)
645 platform_driver_unregister(&ab3100_regulators_driver);
648 subsys_initcall(ab3100_regulators_init);
649 module_exit(ab3100_regulators_exit);
651 MODULE_AUTHOR("Mattias Wallin <mattias.wallin@stericsson.com>");
652 MODULE_DESCRIPTION("AB3100 Regulator driver");
653 MODULE_LICENSE("GPL");
654 MODULE_ALIAS("platform:ab3100-regulators");