1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) ST-Ericsson SA 2010
5 * Authors: Sundar Iyer <sundar.iyer@stericsson.com> for ST-Ericsson
6 * Bengt Jonsson <bengt.g.jonsson@stericsson.com> for ST-Ericsson
7 * Daniel Willerud <daniel.willerud@stericsson.com> for ST-Ericsson
9 * AB8500 peripheral regulators
11 * AB8500 supports the following regulators:
12 * VAUX1/2/3, VINTCORE, VTVOUT, VUSB, VAUDIO, VAMIC1/2, VDMIC, VANA
14 * AB8505 supports the following regulators:
15 * VAUX1/2/3/4/5/6, VINTCORE, VADC, VUSB, VAUDIO, VAMIC1/2, VDMIC, VANA
17 #include <linux/init.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/err.h>
21 #include <linux/platform_device.h>
22 #include <linux/mfd/abx500.h>
23 #include <linux/mfd/abx500/ab8500.h>
25 #include <linux/regulator/of_regulator.h>
26 #include <linux/regulator/driver.h>
27 #include <linux/regulator/machine.h>
28 #include <linux/slab.h>
30 /* AB8500 regulators */
31 enum ab8500_regulator_id
{
42 AB8500_NUM_REGULATORS
,
45 /* AB8505 regulators */
46 enum ab8505_regulator_id
{
60 AB8505_NUM_REGULATORS
,
63 /* AB8500 registers */
64 enum ab8500_regulator_reg
{
65 AB8500_REGUREQUESTCTRL2
,
66 AB8500_REGUREQUESTCTRL3
,
67 AB8500_REGUREQUESTCTRL4
,
68 AB8500_REGUSYSCLKREQ1HPVALID1
,
69 AB8500_REGUSYSCLKREQ1HPVALID2
,
70 AB8500_REGUHWHPREQ1VALID1
,
71 AB8500_REGUHWHPREQ1VALID2
,
72 AB8500_REGUHWHPREQ2VALID1
,
73 AB8500_REGUHWHPREQ2VALID2
,
74 AB8500_REGUSWHPREQVALID1
,
75 AB8500_REGUSWHPREQVALID2
,
76 AB8500_REGUSYSCLKREQVALID1
,
77 AB8500_REGUSYSCLKREQVALID2
,
80 AB8500_REGUCTRL1VAMIC
,
89 AB8500_REGUCTRL2SPARE
,
91 AB8500_REGUCTRLDISCH2
,
92 AB8500_NUM_REGULATOR_REGISTERS
,
95 /* AB8505 registers */
96 enum ab8505_regulator_reg
{
97 AB8505_REGUREQUESTCTRL1
,
98 AB8505_REGUREQUESTCTRL2
,
99 AB8505_REGUREQUESTCTRL3
,
100 AB8505_REGUREQUESTCTRL4
,
101 AB8505_REGUSYSCLKREQ1HPVALID1
,
102 AB8505_REGUSYSCLKREQ1HPVALID2
,
103 AB8505_REGUHWHPREQ1VALID1
,
104 AB8505_REGUHWHPREQ1VALID2
,
105 AB8505_REGUHWHPREQ2VALID1
,
106 AB8505_REGUHWHPREQ2VALID2
,
107 AB8505_REGUSWHPREQVALID1
,
108 AB8505_REGUSWHPREQVALID2
,
109 AB8505_REGUSYSCLKREQVALID1
,
110 AB8505_REGUSYSCLKREQVALID2
,
111 AB8505_REGUVAUX4REQVALID
,
114 AB8505_REGUCTRL1VAMIC
,
117 AB8505_VSAFEREGU
, /* NOTE! PRCMU register */
119 AB8505_EXTSUPPLYREGU
,
121 AB8505_VRF1VAUX3REGU
,
128 AB8505_VSAFESEL1
, /* NOTE! PRCMU register */
129 AB8505_VSAFESEL2
, /* NOTE! PRCMU register */
130 AB8505_VSAFESEL3
, /* NOTE! PRCMU register */
137 AB8505_REGUCTRLDISCH
,
138 AB8505_REGUCTRLDISCH2
,
139 AB8505_REGUCTRLDISCH3
,
142 AB8505_NUM_REGULATOR_REGISTERS
,
146 * struct ab8500_shared_mode - is used when mode is shared between
148 * @shared_regulator: pointer to the other sharing regulator
149 * @lp_mode_req: low power mode requested by this regulator
151 struct ab8500_shared_mode
{
152 struct ab8500_regulator_info
*shared_regulator
;
157 * struct ab8500_regulator_info - ab8500 regulator information
158 * @dev: device pointer
159 * @desc: regulator description
160 * @shared_mode: used when mode is shared between two regulators
161 * @load_lp_uA: maximum load in idle (low power) mode
162 * @update_bank: bank to control on/off
163 * @update_reg: register to control on/off
164 * @update_mask: mask to enable/disable and set mode of regulator
165 * @update_val: bits holding the regulator current mode
166 * @update_val_idle: bits to enable the regulator in idle (low power) mode
167 * @update_val_normal: bits to enable the regulator in normal (high power) mode
168 * @mode_bank: bank with location of mode register
169 * @mode_reg: mode register
170 * @mode_mask: mask for setting mode
171 * @mode_val_idle: mode setting for low power
172 * @mode_val_normal: mode setting for normal power
173 * @voltage_bank: bank to control regulator voltage
174 * @voltage_reg: register to control regulator voltage
175 * @voltage_mask: mask to control regulator voltage
178 struct ab8500_regulator_info
{
180 struct regulator_desc desc
;
181 struct ab8500_shared_mode
*shared_mode
;
188 u8 update_val_normal
;
199 /* voltage tables for the vauxn/vintcore supplies */
200 static const unsigned int ldo_vauxn_voltages
[] = {
219 static const unsigned int ldo_vaux3_voltages
[] = {
230 static const unsigned int ldo_vaux56_voltages
[] = {
241 static const unsigned int ldo_vintcore_voltages
[] = {
251 static const unsigned int fixed_1200000_voltage
[] = {
255 static const unsigned int fixed_1800000_voltage
[] = {
259 static const unsigned int fixed_2000000_voltage
[] = {
263 static const unsigned int fixed_2050000_voltage
[] = {
267 static const unsigned int ldo_vana_voltages
[] = {
278 static const unsigned int ldo_vaudio_voltages
[] = {
286 2600000, /* Duplicated in Vaudio and IsoUicc Control register. */
289 static DEFINE_MUTEX(shared_mode_mutex
);
290 static struct ab8500_shared_mode ldo_anamic1_shared
;
291 static struct ab8500_shared_mode ldo_anamic2_shared
;
293 static int ab8500_regulator_enable(struct regulator_dev
*rdev
)
296 struct ab8500_regulator_info
*info
= rdev_get_drvdata(rdev
);
299 dev_err(rdev_get_dev(rdev
), "regulator info null pointer\n");
303 ret
= abx500_mask_and_set_register_interruptible(info
->dev
,
304 info
->update_bank
, info
->update_reg
,
305 info
->update_mask
, info
->update_val
);
307 dev_err(rdev_get_dev(rdev
),
308 "couldn't set enable bits for regulator\n");
312 dev_vdbg(rdev_get_dev(rdev
),
313 "%s-enable (bank, reg, mask, value): 0x%x, 0x%x, 0x%x, 0x%x\n",
314 info
->desc
.name
, info
->update_bank
, info
->update_reg
,
315 info
->update_mask
, info
->update_val
);
320 static int ab8500_regulator_disable(struct regulator_dev
*rdev
)
323 struct ab8500_regulator_info
*info
= rdev_get_drvdata(rdev
);
326 dev_err(rdev_get_dev(rdev
), "regulator info null pointer\n");
330 ret
= abx500_mask_and_set_register_interruptible(info
->dev
,
331 info
->update_bank
, info
->update_reg
,
332 info
->update_mask
, 0x0);
334 dev_err(rdev_get_dev(rdev
),
335 "couldn't set disable bits for regulator\n");
339 dev_vdbg(rdev_get_dev(rdev
),
340 "%s-disable (bank, reg, mask, value): 0x%x, 0x%x, 0x%x, 0x%x\n",
341 info
->desc
.name
, info
->update_bank
, info
->update_reg
,
342 info
->update_mask
, 0x0);
347 static int ab8500_regulator_is_enabled(struct regulator_dev
*rdev
)
350 struct ab8500_regulator_info
*info
= rdev_get_drvdata(rdev
);
354 dev_err(rdev_get_dev(rdev
), "regulator info null pointer\n");
358 ret
= abx500_get_register_interruptible(info
->dev
,
359 info
->update_bank
, info
->update_reg
, ®val
);
361 dev_err(rdev_get_dev(rdev
),
362 "couldn't read 0x%x register\n", info
->update_reg
);
366 dev_vdbg(rdev_get_dev(rdev
),
367 "%s-is_enabled (bank, reg, mask, value): 0x%x, 0x%x, 0x%x,"
369 info
->desc
.name
, info
->update_bank
, info
->update_reg
,
370 info
->update_mask
, regval
);
372 if (regval
& info
->update_mask
)
378 static unsigned int ab8500_regulator_get_optimum_mode(
379 struct regulator_dev
*rdev
, int input_uV
,
380 int output_uV
, int load_uA
)
384 struct ab8500_regulator_info
*info
= rdev_get_drvdata(rdev
);
387 dev_err(rdev_get_dev(rdev
), "regulator info null pointer\n");
391 if (load_uA
<= info
->load_lp_uA
)
392 mode
= REGULATOR_MODE_IDLE
;
394 mode
= REGULATOR_MODE_NORMAL
;
399 static int ab8500_regulator_set_mode(struct regulator_dev
*rdev
,
403 u8 bank
, reg
, mask
, val
;
404 bool lp_mode_req
= false;
405 struct ab8500_regulator_info
*info
= rdev_get_drvdata(rdev
);
408 dev_err(rdev_get_dev(rdev
), "regulator info null pointer\n");
412 if (info
->mode_mask
) {
413 bank
= info
->mode_bank
;
414 reg
= info
->mode_reg
;
415 mask
= info
->mode_mask
;
417 bank
= info
->update_bank
;
418 reg
= info
->update_reg
;
419 mask
= info
->update_mask
;
422 if (info
->shared_mode
)
423 mutex_lock(&shared_mode_mutex
);
426 case REGULATOR_MODE_NORMAL
:
427 if (info
->shared_mode
)
431 val
= info
->mode_val_normal
;
433 val
= info
->update_val_normal
;
435 case REGULATOR_MODE_IDLE
:
436 if (info
->shared_mode
) {
437 struct ab8500_regulator_info
*shared_regulator
;
439 shared_regulator
= info
->shared_mode
->shared_regulator
;
440 if (!shared_regulator
->shared_mode
->lp_mode_req
) {
441 /* Other regulator prevent LP mode */
442 info
->shared_mode
->lp_mode_req
= true;
450 val
= info
->mode_val_idle
;
452 val
= info
->update_val_idle
;
459 if (info
->mode_mask
|| ab8500_regulator_is_enabled(rdev
)) {
460 ret
= abx500_mask_and_set_register_interruptible(info
->dev
,
461 bank
, reg
, mask
, val
);
463 dev_err(rdev_get_dev(rdev
),
464 "couldn't set regulator mode\n");
468 dev_vdbg(rdev_get_dev(rdev
),
469 "%s-set_mode (bank, reg, mask, value): "
470 "0x%x, 0x%x, 0x%x, 0x%x\n",
471 info
->desc
.name
, bank
, reg
,
475 if (!info
->mode_mask
)
476 info
->update_val
= val
;
478 if (info
->shared_mode
)
479 info
->shared_mode
->lp_mode_req
= lp_mode_req
;
482 if (info
->shared_mode
)
483 mutex_unlock(&shared_mode_mutex
);
488 static unsigned int ab8500_regulator_get_mode(struct regulator_dev
*rdev
)
490 struct ab8500_regulator_info
*info
= rdev_get_drvdata(rdev
);
497 dev_err(rdev_get_dev(rdev
), "regulator info null pointer\n");
501 /* Need special handling for shared mode */
502 if (info
->shared_mode
) {
503 if (info
->shared_mode
->lp_mode_req
)
504 return REGULATOR_MODE_IDLE
;
506 return REGULATOR_MODE_NORMAL
;
509 if (info
->mode_mask
) {
510 /* Dedicated register for handling mode */
511 ret
= abx500_get_register_interruptible(info
->dev
,
512 info
->mode_bank
, info
->mode_reg
, &val
);
513 val
= val
& info
->mode_mask
;
515 val_normal
= info
->mode_val_normal
;
516 val_idle
= info
->mode_val_idle
;
518 /* Mode register same as enable register */
519 val
= info
->update_val
;
520 val_normal
= info
->update_val_normal
;
521 val_idle
= info
->update_val_idle
;
524 if (val
== val_normal
)
525 ret
= REGULATOR_MODE_NORMAL
;
526 else if (val
== val_idle
)
527 ret
= REGULATOR_MODE_IDLE
;
534 static int ab8500_regulator_get_voltage_sel(struct regulator_dev
*rdev
)
536 int ret
, voltage_shift
;
537 struct ab8500_regulator_info
*info
= rdev_get_drvdata(rdev
);
541 dev_err(rdev_get_dev(rdev
), "regulator info null pointer\n");
545 voltage_shift
= ffs(info
->voltage_mask
) - 1;
547 ret
= abx500_get_register_interruptible(info
->dev
,
548 info
->voltage_bank
, info
->voltage_reg
, ®val
);
550 dev_err(rdev_get_dev(rdev
),
551 "couldn't read voltage reg for regulator\n");
555 dev_vdbg(rdev_get_dev(rdev
),
556 "%s-get_voltage (bank, reg, mask, shift, value): "
557 "0x%x, 0x%x, 0x%x, 0x%x, 0x%x\n",
558 info
->desc
.name
, info
->voltage_bank
,
559 info
->voltage_reg
, info
->voltage_mask
,
560 voltage_shift
, regval
);
562 return (regval
& info
->voltage_mask
) >> voltage_shift
;
565 static int ab8500_regulator_set_voltage_sel(struct regulator_dev
*rdev
,
568 int ret
, voltage_shift
;
569 struct ab8500_regulator_info
*info
= rdev_get_drvdata(rdev
);
573 dev_err(rdev_get_dev(rdev
), "regulator info null pointer\n");
577 voltage_shift
= ffs(info
->voltage_mask
) - 1;
579 /* set the registers for the request */
580 regval
= (u8
)selector
<< voltage_shift
;
581 ret
= abx500_mask_and_set_register_interruptible(info
->dev
,
582 info
->voltage_bank
, info
->voltage_reg
,
583 info
->voltage_mask
, regval
);
585 dev_err(rdev_get_dev(rdev
),
586 "couldn't set voltage reg for regulator\n");
588 dev_vdbg(rdev_get_dev(rdev
),
589 "%s-set_voltage (bank, reg, mask, value): 0x%x, 0x%x, 0x%x,"
591 info
->desc
.name
, info
->voltage_bank
, info
->voltage_reg
,
592 info
->voltage_mask
, regval
);
597 static const struct regulator_ops ab8500_regulator_volt_mode_ops
= {
598 .enable
= ab8500_regulator_enable
,
599 .disable
= ab8500_regulator_disable
,
600 .is_enabled
= ab8500_regulator_is_enabled
,
601 .get_optimum_mode
= ab8500_regulator_get_optimum_mode
,
602 .set_mode
= ab8500_regulator_set_mode
,
603 .get_mode
= ab8500_regulator_get_mode
,
604 .get_voltage_sel
= ab8500_regulator_get_voltage_sel
,
605 .set_voltage_sel
= ab8500_regulator_set_voltage_sel
,
606 .list_voltage
= regulator_list_voltage_table
,
609 static const struct regulator_ops ab8500_regulator_volt_ops
= {
610 .enable
= ab8500_regulator_enable
,
611 .disable
= ab8500_regulator_disable
,
612 .is_enabled
= ab8500_regulator_is_enabled
,
613 .get_voltage_sel
= ab8500_regulator_get_voltage_sel
,
614 .set_voltage_sel
= ab8500_regulator_set_voltage_sel
,
615 .list_voltage
= regulator_list_voltage_table
,
618 static const struct regulator_ops ab8500_regulator_mode_ops
= {
619 .enable
= ab8500_regulator_enable
,
620 .disable
= ab8500_regulator_disable
,
621 .is_enabled
= ab8500_regulator_is_enabled
,
622 .get_optimum_mode
= ab8500_regulator_get_optimum_mode
,
623 .set_mode
= ab8500_regulator_set_mode
,
624 .get_mode
= ab8500_regulator_get_mode
,
625 .list_voltage
= regulator_list_voltage_table
,
628 static const struct regulator_ops ab8500_regulator_ops
= {
629 .enable
= ab8500_regulator_enable
,
630 .disable
= ab8500_regulator_disable
,
631 .is_enabled
= ab8500_regulator_is_enabled
,
632 .list_voltage
= regulator_list_voltage_table
,
635 static const struct regulator_ops ab8500_regulator_anamic_mode_ops
= {
636 .enable
= ab8500_regulator_enable
,
637 .disable
= ab8500_regulator_disable
,
638 .is_enabled
= ab8500_regulator_is_enabled
,
639 .set_mode
= ab8500_regulator_set_mode
,
640 .get_mode
= ab8500_regulator_get_mode
,
641 .list_voltage
= regulator_list_voltage_table
,
644 /* AB8500 regulator information */
645 static struct ab8500_regulator_info
646 ab8500_regulator_info
[AB8500_NUM_REGULATORS
] = {
648 * Variable Voltage Regulators
649 * name, min mV, max mV,
650 * update bank, reg, mask, enable val
651 * volt bank, reg, mask
653 [AB8500_LDO_AUX1
] = {
656 .ops
= &ab8500_regulator_volt_mode_ops
,
657 .type
= REGULATOR_VOLTAGE
,
658 .id
= AB8500_LDO_AUX1
,
659 .owner
= THIS_MODULE
,
660 .n_voltages
= ARRAY_SIZE(ldo_vauxn_voltages
),
661 .volt_table
= ldo_vauxn_voltages
,
663 .supply_name
= "vin",
670 .update_val_idle
= 0x03,
671 .update_val_normal
= 0x01,
672 .voltage_bank
= 0x04,
674 .voltage_mask
= 0x0f,
676 [AB8500_LDO_AUX2
] = {
679 .ops
= &ab8500_regulator_volt_mode_ops
,
680 .type
= REGULATOR_VOLTAGE
,
681 .id
= AB8500_LDO_AUX2
,
682 .owner
= THIS_MODULE
,
683 .n_voltages
= ARRAY_SIZE(ldo_vauxn_voltages
),
684 .volt_table
= ldo_vauxn_voltages
,
686 .supply_name
= "vin",
693 .update_val_idle
= 0x0c,
694 .update_val_normal
= 0x04,
695 .voltage_bank
= 0x04,
697 .voltage_mask
= 0x0f,
699 [AB8500_LDO_AUX3
] = {
702 .ops
= &ab8500_regulator_volt_mode_ops
,
703 .type
= REGULATOR_VOLTAGE
,
704 .id
= AB8500_LDO_AUX3
,
705 .owner
= THIS_MODULE
,
706 .n_voltages
= ARRAY_SIZE(ldo_vaux3_voltages
),
707 .volt_table
= ldo_vaux3_voltages
,
709 .supply_name
= "vin",
716 .update_val_idle
= 0x03,
717 .update_val_normal
= 0x01,
718 .voltage_bank
= 0x04,
720 .voltage_mask
= 0x07,
722 [AB8500_LDO_INTCORE
] = {
724 .name
= "LDO-INTCORE",
725 .ops
= &ab8500_regulator_volt_mode_ops
,
726 .type
= REGULATOR_VOLTAGE
,
727 .id
= AB8500_LDO_INTCORE
,
728 .owner
= THIS_MODULE
,
729 .n_voltages
= ARRAY_SIZE(ldo_vintcore_voltages
),
730 .volt_table
= ldo_vintcore_voltages
,
738 .update_val_idle
= 0x44,
739 .update_val_normal
= 0x04,
740 .voltage_bank
= 0x03,
742 .voltage_mask
= 0x38,
746 * Fixed Voltage Regulators
748 * update bank, reg, mask, enable val
750 [AB8500_LDO_TVOUT
] = {
753 .ops
= &ab8500_regulator_mode_ops
,
754 .type
= REGULATOR_VOLTAGE
,
755 .id
= AB8500_LDO_TVOUT
,
756 .owner
= THIS_MODULE
,
758 .volt_table
= fixed_2000000_voltage
,
766 .update_val_idle
= 0x82,
767 .update_val_normal
= 0x02,
769 [AB8500_LDO_AUDIO
] = {
772 .ops
= &ab8500_regulator_ops
,
773 .type
= REGULATOR_VOLTAGE
,
774 .id
= AB8500_LDO_AUDIO
,
775 .owner
= THIS_MODULE
,
778 .volt_table
= fixed_2000000_voltage
,
785 [AB8500_LDO_ANAMIC1
] = {
787 .name
= "LDO-ANAMIC1",
788 .ops
= &ab8500_regulator_ops
,
789 .type
= REGULATOR_VOLTAGE
,
790 .id
= AB8500_LDO_ANAMIC1
,
791 .owner
= THIS_MODULE
,
794 .volt_table
= fixed_2050000_voltage
,
801 [AB8500_LDO_ANAMIC2
] = {
803 .name
= "LDO-ANAMIC2",
804 .ops
= &ab8500_regulator_ops
,
805 .type
= REGULATOR_VOLTAGE
,
806 .id
= AB8500_LDO_ANAMIC2
,
807 .owner
= THIS_MODULE
,
810 .volt_table
= fixed_2050000_voltage
,
817 [AB8500_LDO_DMIC
] = {
820 .ops
= &ab8500_regulator_ops
,
821 .type
= REGULATOR_VOLTAGE
,
822 .id
= AB8500_LDO_DMIC
,
823 .owner
= THIS_MODULE
,
826 .volt_table
= fixed_1800000_voltage
,
835 * Regulators with fixed voltage and normal/idle modes
840 .ops
= &ab8500_regulator_mode_ops
,
841 .type
= REGULATOR_VOLTAGE
,
842 .id
= AB8500_LDO_ANA
,
843 .owner
= THIS_MODULE
,
846 .volt_table
= fixed_1200000_voltage
,
853 .update_val_idle
= 0x0c,
854 .update_val_normal
= 0x04,
858 /* AB8505 regulator information */
859 static struct ab8500_regulator_info
860 ab8505_regulator_info
[AB8505_NUM_REGULATORS
] = {
862 * Variable Voltage Regulators
863 * name, min mV, max mV,
864 * update bank, reg, mask, enable val
865 * volt bank, reg, mask
867 [AB8505_LDO_AUX1
] = {
870 .ops
= &ab8500_regulator_volt_mode_ops
,
871 .type
= REGULATOR_VOLTAGE
,
872 .id
= AB8505_LDO_AUX1
,
873 .owner
= THIS_MODULE
,
874 .n_voltages
= ARRAY_SIZE(ldo_vauxn_voltages
),
875 .volt_table
= ldo_vauxn_voltages
,
882 .update_val_idle
= 0x03,
883 .update_val_normal
= 0x01,
884 .voltage_bank
= 0x04,
886 .voltage_mask
= 0x0f,
888 [AB8505_LDO_AUX2
] = {
891 .ops
= &ab8500_regulator_volt_mode_ops
,
892 .type
= REGULATOR_VOLTAGE
,
893 .id
= AB8505_LDO_AUX2
,
894 .owner
= THIS_MODULE
,
895 .n_voltages
= ARRAY_SIZE(ldo_vauxn_voltages
),
896 .volt_table
= ldo_vauxn_voltages
,
903 .update_val_idle
= 0x0c,
904 .update_val_normal
= 0x04,
905 .voltage_bank
= 0x04,
907 .voltage_mask
= 0x0f,
909 [AB8505_LDO_AUX3
] = {
912 .ops
= &ab8500_regulator_volt_mode_ops
,
913 .type
= REGULATOR_VOLTAGE
,
914 .id
= AB8505_LDO_AUX3
,
915 .owner
= THIS_MODULE
,
916 .n_voltages
= ARRAY_SIZE(ldo_vaux3_voltages
),
917 .volt_table
= ldo_vaux3_voltages
,
924 .update_val_idle
= 0x03,
925 .update_val_normal
= 0x01,
926 .voltage_bank
= 0x04,
928 .voltage_mask
= 0x07,
930 [AB8505_LDO_AUX4
] = {
933 .ops
= &ab8500_regulator_volt_mode_ops
,
934 .type
= REGULATOR_VOLTAGE
,
935 .id
= AB8505_LDO_AUX4
,
936 .owner
= THIS_MODULE
,
937 .n_voltages
= ARRAY_SIZE(ldo_vauxn_voltages
),
938 .volt_table
= ldo_vauxn_voltages
,
941 /* values for Vaux4Regu register */
946 .update_val_idle
= 0x03,
947 .update_val_normal
= 0x01,
948 /* values for Vaux4SEL register */
949 .voltage_bank
= 0x04,
951 .voltage_mask
= 0x0f,
953 [AB8505_LDO_AUX5
] = {
956 .ops
= &ab8500_regulator_volt_mode_ops
,
957 .type
= REGULATOR_VOLTAGE
,
958 .id
= AB8505_LDO_AUX5
,
959 .owner
= THIS_MODULE
,
960 .n_voltages
= ARRAY_SIZE(ldo_vaux56_voltages
),
961 .volt_table
= ldo_vaux56_voltages
,
964 /* values for CtrlVaux5 register */
969 .update_val_idle
= 0x18,
970 .update_val_normal
= 0x10,
971 .voltage_bank
= 0x01,
973 .voltage_mask
= 0x07,
975 [AB8505_LDO_AUX6
] = {
978 .ops
= &ab8500_regulator_volt_mode_ops
,
979 .type
= REGULATOR_VOLTAGE
,
980 .id
= AB8505_LDO_AUX6
,
981 .owner
= THIS_MODULE
,
982 .n_voltages
= ARRAY_SIZE(ldo_vaux56_voltages
),
983 .volt_table
= ldo_vaux56_voltages
,
986 /* values for CtrlVaux6 register */
991 .update_val_idle
= 0x18,
992 .update_val_normal
= 0x10,
993 .voltage_bank
= 0x01,
995 .voltage_mask
= 0x07,
997 [AB8505_LDO_INTCORE
] = {
999 .name
= "LDO-INTCORE",
1000 .ops
= &ab8500_regulator_volt_mode_ops
,
1001 .type
= REGULATOR_VOLTAGE
,
1002 .id
= AB8505_LDO_INTCORE
,
1003 .owner
= THIS_MODULE
,
1004 .n_voltages
= ARRAY_SIZE(ldo_vintcore_voltages
),
1005 .volt_table
= ldo_vintcore_voltages
,
1008 .update_bank
= 0x03,
1010 .update_mask
= 0x44,
1012 .update_val_idle
= 0x44,
1013 .update_val_normal
= 0x04,
1014 .voltage_bank
= 0x03,
1015 .voltage_reg
= 0x80,
1016 .voltage_mask
= 0x38,
1020 * Fixed Voltage Regulators
1022 * update bank, reg, mask, enable val
1024 [AB8505_LDO_ADC
] = {
1027 .ops
= &ab8500_regulator_mode_ops
,
1028 .type
= REGULATOR_VOLTAGE
,
1029 .id
= AB8505_LDO_ADC
,
1030 .owner
= THIS_MODULE
,
1032 .volt_table
= fixed_2000000_voltage
,
1033 .enable_time
= 10000,
1036 .update_bank
= 0x03,
1038 .update_mask
= 0x82,
1040 .update_val_idle
= 0x82,
1041 .update_val_normal
= 0x02,
1043 [AB8505_LDO_AUDIO
] = {
1045 .name
= "LDO-AUDIO",
1046 .ops
= &ab8500_regulator_volt_ops
,
1047 .type
= REGULATOR_VOLTAGE
,
1048 .id
= AB8505_LDO_AUDIO
,
1049 .owner
= THIS_MODULE
,
1050 .n_voltages
= ARRAY_SIZE(ldo_vaudio_voltages
),
1051 .volt_table
= ldo_vaudio_voltages
,
1053 .update_bank
= 0x03,
1055 .update_mask
= 0x02,
1057 .voltage_bank
= 0x01,
1058 .voltage_reg
= 0x57,
1059 .voltage_mask
= 0x70,
1061 [AB8505_LDO_ANAMIC1
] = {
1063 .name
= "LDO-ANAMIC1",
1064 .ops
= &ab8500_regulator_anamic_mode_ops
,
1065 .type
= REGULATOR_VOLTAGE
,
1066 .id
= AB8505_LDO_ANAMIC1
,
1067 .owner
= THIS_MODULE
,
1069 .volt_table
= fixed_2050000_voltage
,
1071 .shared_mode
= &ldo_anamic1_shared
,
1072 .update_bank
= 0x03,
1074 .update_mask
= 0x08,
1079 .mode_val_idle
= 0x04,
1080 .mode_val_normal
= 0x00,
1082 [AB8505_LDO_ANAMIC2
] = {
1084 .name
= "LDO-ANAMIC2",
1085 .ops
= &ab8500_regulator_anamic_mode_ops
,
1086 .type
= REGULATOR_VOLTAGE
,
1087 .id
= AB8505_LDO_ANAMIC2
,
1088 .owner
= THIS_MODULE
,
1090 .volt_table
= fixed_2050000_voltage
,
1092 .shared_mode
= &ldo_anamic2_shared
,
1093 .update_bank
= 0x03,
1095 .update_mask
= 0x10,
1100 .mode_val_idle
= 0x04,
1101 .mode_val_normal
= 0x00,
1103 [AB8505_LDO_AUX8
] = {
1106 .ops
= &ab8500_regulator_ops
,
1107 .type
= REGULATOR_VOLTAGE
,
1108 .id
= AB8505_LDO_AUX8
,
1109 .owner
= THIS_MODULE
,
1111 .volt_table
= fixed_1800000_voltage
,
1113 .update_bank
= 0x03,
1115 .update_mask
= 0x04,
1119 * Regulators with fixed voltage and normal/idle modes
1121 [AB8505_LDO_ANA
] = {
1124 .ops
= &ab8500_regulator_volt_mode_ops
,
1125 .type
= REGULATOR_VOLTAGE
,
1126 .id
= AB8505_LDO_ANA
,
1127 .owner
= THIS_MODULE
,
1128 .n_voltages
= ARRAY_SIZE(ldo_vana_voltages
),
1129 .volt_table
= ldo_vana_voltages
,
1132 .update_bank
= 0x04,
1134 .update_mask
= 0x0c,
1136 .update_val_idle
= 0x0c,
1137 .update_val_normal
= 0x04,
1138 .voltage_bank
= 0x04,
1139 .voltage_reg
= 0x29,
1140 .voltage_mask
= 0x7,
1144 static struct ab8500_shared_mode ldo_anamic1_shared
= {
1145 .shared_regulator
= &ab8505_regulator_info
[AB8505_LDO_ANAMIC2
],
1148 static struct ab8500_shared_mode ldo_anamic2_shared
= {
1149 .shared_regulator
= &ab8505_regulator_info
[AB8505_LDO_ANAMIC1
],
1152 struct ab8500_reg_init
{
1158 #define REG_INIT(_id, _bank, _addr, _mask) \
1165 /* AB8500 register init */
1166 static struct ab8500_reg_init ab8500_reg_init
[] = {
1168 * 0x30, VanaRequestCtrl
1169 * 0xc0, VextSupply1RequestCtrl
1171 REG_INIT(AB8500_REGUREQUESTCTRL2
, 0x03, 0x04, 0xf0),
1173 * 0x03, VextSupply2RequestCtrl
1174 * 0x0c, VextSupply3RequestCtrl
1175 * 0x30, Vaux1RequestCtrl
1176 * 0xc0, Vaux2RequestCtrl
1178 REG_INIT(AB8500_REGUREQUESTCTRL3
, 0x03, 0x05, 0xff),
1180 * 0x03, Vaux3RequestCtrl
1183 REG_INIT(AB8500_REGUREQUESTCTRL4
, 0x03, 0x06, 0x07),
1185 * 0x08, VanaSysClkReq1HPValid
1186 * 0x20, Vaux1SysClkReq1HPValid
1187 * 0x40, Vaux2SysClkReq1HPValid
1188 * 0x80, Vaux3SysClkReq1HPValid
1190 REG_INIT(AB8500_REGUSYSCLKREQ1HPVALID1
, 0x03, 0x07, 0xe8),
1192 * 0x10, VextSupply1SysClkReq1HPValid
1193 * 0x20, VextSupply2SysClkReq1HPValid
1194 * 0x40, VextSupply3SysClkReq1HPValid
1196 REG_INIT(AB8500_REGUSYSCLKREQ1HPVALID2
, 0x03, 0x08, 0x70),
1198 * 0x08, VanaHwHPReq1Valid
1199 * 0x20, Vaux1HwHPReq1Valid
1200 * 0x40, Vaux2HwHPReq1Valid
1201 * 0x80, Vaux3HwHPReq1Valid
1203 REG_INIT(AB8500_REGUHWHPREQ1VALID1
, 0x03, 0x09, 0xe8),
1205 * 0x01, VextSupply1HwHPReq1Valid
1206 * 0x02, VextSupply2HwHPReq1Valid
1207 * 0x04, VextSupply3HwHPReq1Valid
1209 REG_INIT(AB8500_REGUHWHPREQ1VALID2
, 0x03, 0x0a, 0x07),
1211 * 0x08, VanaHwHPReq2Valid
1212 * 0x20, Vaux1HwHPReq2Valid
1213 * 0x40, Vaux2HwHPReq2Valid
1214 * 0x80, Vaux3HwHPReq2Valid
1216 REG_INIT(AB8500_REGUHWHPREQ2VALID1
, 0x03, 0x0b, 0xe8),
1218 * 0x01, VextSupply1HwHPReq2Valid
1219 * 0x02, VextSupply2HwHPReq2Valid
1220 * 0x04, VextSupply3HwHPReq2Valid
1222 REG_INIT(AB8500_REGUHWHPREQ2VALID2
, 0x03, 0x0c, 0x07),
1224 * 0x20, VanaSwHPReqValid
1225 * 0x80, Vaux1SwHPReqValid
1227 REG_INIT(AB8500_REGUSWHPREQVALID1
, 0x03, 0x0d, 0xa0),
1229 * 0x01, Vaux2SwHPReqValid
1230 * 0x02, Vaux3SwHPReqValid
1231 * 0x04, VextSupply1SwHPReqValid
1232 * 0x08, VextSupply2SwHPReqValid
1233 * 0x10, VextSupply3SwHPReqValid
1235 REG_INIT(AB8500_REGUSWHPREQVALID2
, 0x03, 0x0e, 0x1f),
1237 * 0x02, SysClkReq2Valid1
1238 * 0x04, SysClkReq3Valid1
1239 * 0x08, SysClkReq4Valid1
1240 * 0x10, SysClkReq5Valid1
1241 * 0x20, SysClkReq6Valid1
1242 * 0x40, SysClkReq7Valid1
1243 * 0x80, SysClkReq8Valid1
1245 REG_INIT(AB8500_REGUSYSCLKREQVALID1
, 0x03, 0x0f, 0xfe),
1247 * 0x02, SysClkReq2Valid2
1248 * 0x04, SysClkReq3Valid2
1249 * 0x08, SysClkReq4Valid2
1250 * 0x10, SysClkReq5Valid2
1251 * 0x20, SysClkReq6Valid2
1252 * 0x40, SysClkReq7Valid2
1253 * 0x80, SysClkReq8Valid2
1255 REG_INIT(AB8500_REGUSYSCLKREQVALID2
, 0x03, 0x10, 0xfe),
1258 * 0x04, Vintcore12Ena
1259 * 0x38, Vintcore12Sel
1260 * 0x40, Vintcore12LP
1263 REG_INIT(AB8500_REGUMISC1
, 0x03, 0x80, 0xfe),
1270 REG_INIT(AB8500_VAUDIOSUPPLY
, 0x03, 0x83, 0x1e),
1272 * 0x01, Vamic1_dzout
1273 * 0x02, Vamic2_dzout
1275 REG_INIT(AB8500_REGUCTRL1VAMIC
, 0x03, 0x84, 0x03),
1277 * 0x03, VpllRegu (NOTE! PRCMU register bits)
1280 REG_INIT(AB8500_VPLLVANAREGU
, 0x04, 0x06, 0x0f),
1283 * 0x02, VrefDDRSleepMode
1285 REG_INIT(AB8500_VREFDDR
, 0x04, 0x07, 0x03),
1287 * 0x03, VextSupply1Regu
1288 * 0x0c, VextSupply2Regu
1289 * 0x30, VextSupply3Regu
1290 * 0x40, ExtSupply2Bypass
1291 * 0x80, ExtSupply3Bypass
1293 REG_INIT(AB8500_EXTSUPPLYREGU
, 0x04, 0x08, 0xff),
1298 REG_INIT(AB8500_VAUX12REGU
, 0x04, 0x09, 0x0f),
1302 REG_INIT(AB8500_VRF1VAUX3REGU
, 0x04, 0x0a, 0x03),
1306 REG_INIT(AB8500_VAUX1SEL
, 0x04, 0x1f, 0x0f),
1310 REG_INIT(AB8500_VAUX2SEL
, 0x04, 0x20, 0x0f),
1314 REG_INIT(AB8500_VRF1VAUX3SEL
, 0x04, 0x21, 0x07),
1316 * 0x01, VextSupply12LP
1318 REG_INIT(AB8500_REGUCTRL2SPARE
, 0x04, 0x22, 0x01),
1323 * 0x20, Vintcore12Disch
1327 REG_INIT(AB8500_REGUCTRLDISCH
, 0x04, 0x43, 0xfc),
1330 * 0x04, VdmicPullDownEna
1333 REG_INIT(AB8500_REGUCTRLDISCH2
, 0x04, 0x44, 0x16),
1336 /* AB8505 register init */
1337 static struct ab8500_reg_init ab8505_reg_init
[] = {
1339 * 0x03, VarmRequestCtrl
1340 * 0x0c, VsmpsCRequestCtrl
1341 * 0x30, VsmpsARequestCtrl
1342 * 0xc0, VsmpsBRequestCtrl
1344 REG_INIT(AB8505_REGUREQUESTCTRL1
, 0x03, 0x03, 0xff),
1346 * 0x03, VsafeRequestCtrl
1347 * 0x0c, VpllRequestCtrl
1348 * 0x30, VanaRequestCtrl
1350 REG_INIT(AB8505_REGUREQUESTCTRL2
, 0x03, 0x04, 0x3f),
1352 * 0x30, Vaux1RequestCtrl
1353 * 0xc0, Vaux2RequestCtrl
1355 REG_INIT(AB8505_REGUREQUESTCTRL3
, 0x03, 0x05, 0xf0),
1357 * 0x03, Vaux3RequestCtrl
1360 REG_INIT(AB8505_REGUREQUESTCTRL4
, 0x03, 0x06, 0x07),
1362 * 0x01, VsmpsASysClkReq1HPValid
1363 * 0x02, VsmpsBSysClkReq1HPValid
1364 * 0x04, VsafeSysClkReq1HPValid
1365 * 0x08, VanaSysClkReq1HPValid
1366 * 0x10, VpllSysClkReq1HPValid
1367 * 0x20, Vaux1SysClkReq1HPValid
1368 * 0x40, Vaux2SysClkReq1HPValid
1369 * 0x80, Vaux3SysClkReq1HPValid
1371 REG_INIT(AB8505_REGUSYSCLKREQ1HPVALID1
, 0x03, 0x07, 0xff),
1373 * 0x01, VsmpsCSysClkReq1HPValid
1374 * 0x02, VarmSysClkReq1HPValid
1375 * 0x04, VbbSysClkReq1HPValid
1376 * 0x08, VsmpsMSysClkReq1HPValid
1378 REG_INIT(AB8505_REGUSYSCLKREQ1HPVALID2
, 0x03, 0x08, 0x0f),
1380 * 0x01, VsmpsAHwHPReq1Valid
1381 * 0x02, VsmpsBHwHPReq1Valid
1382 * 0x04, VsafeHwHPReq1Valid
1383 * 0x08, VanaHwHPReq1Valid
1384 * 0x10, VpllHwHPReq1Valid
1385 * 0x20, Vaux1HwHPReq1Valid
1386 * 0x40, Vaux2HwHPReq1Valid
1387 * 0x80, Vaux3HwHPReq1Valid
1389 REG_INIT(AB8505_REGUHWHPREQ1VALID1
, 0x03, 0x09, 0xff),
1391 * 0x08, VsmpsMHwHPReq1Valid
1393 REG_INIT(AB8505_REGUHWHPREQ1VALID2
, 0x03, 0x0a, 0x08),
1395 * 0x01, VsmpsAHwHPReq2Valid
1396 * 0x02, VsmpsBHwHPReq2Valid
1397 * 0x04, VsafeHwHPReq2Valid
1398 * 0x08, VanaHwHPReq2Valid
1399 * 0x10, VpllHwHPReq2Valid
1400 * 0x20, Vaux1HwHPReq2Valid
1401 * 0x40, Vaux2HwHPReq2Valid
1402 * 0x80, Vaux3HwHPReq2Valid
1404 REG_INIT(AB8505_REGUHWHPREQ2VALID1
, 0x03, 0x0b, 0xff),
1406 * 0x08, VsmpsMHwHPReq2Valid
1408 REG_INIT(AB8505_REGUHWHPREQ2VALID2
, 0x03, 0x0c, 0x08),
1410 * 0x01, VsmpsCSwHPReqValid
1411 * 0x02, VarmSwHPReqValid
1412 * 0x04, VsmpsASwHPReqValid
1413 * 0x08, VsmpsBSwHPReqValid
1414 * 0x10, VsafeSwHPReqValid
1415 * 0x20, VanaSwHPReqValid
1416 * 0x40, VpllSwHPReqValid
1417 * 0x80, Vaux1SwHPReqValid
1419 REG_INIT(AB8505_REGUSWHPREQVALID1
, 0x03, 0x0d, 0xff),
1421 * 0x01, Vaux2SwHPReqValid
1422 * 0x02, Vaux3SwHPReqValid
1423 * 0x20, VsmpsMSwHPReqValid
1425 REG_INIT(AB8505_REGUSWHPREQVALID2
, 0x03, 0x0e, 0x23),
1427 * 0x02, SysClkReq2Valid1
1428 * 0x04, SysClkReq3Valid1
1429 * 0x08, SysClkReq4Valid1
1431 REG_INIT(AB8505_REGUSYSCLKREQVALID1
, 0x03, 0x0f, 0x0e),
1433 * 0x02, SysClkReq2Valid2
1434 * 0x04, SysClkReq3Valid2
1435 * 0x08, SysClkReq4Valid2
1437 REG_INIT(AB8505_REGUSYSCLKREQVALID2
, 0x03, 0x10, 0x0e),
1439 * 0x01, Vaux4SwHPReqValid
1440 * 0x02, Vaux4HwHPReq2Valid
1441 * 0x04, Vaux4HwHPReq1Valid
1442 * 0x08, Vaux4SysClkReq1HPValid
1444 REG_INIT(AB8505_REGUVAUX4REQVALID
, 0x03, 0x11, 0x0f),
1447 * 0x04, VintCore12Ena
1448 * 0x38, VintCore12Sel
1449 * 0x40, VintCore12LP
1452 REG_INIT(AB8505_REGUMISC1
, 0x03, 0x80, 0xfe),
1459 REG_INIT(AB8505_VAUDIOSUPPLY
, 0x03, 0x83, 0x1e),
1461 * 0x01, Vamic1_dzout
1462 * 0x02, Vamic2_dzout
1464 REG_INIT(AB8505_REGUCTRL1VAMIC
, 0x03, 0x84, 0x03),
1467 * 0x0c, VsmpsASelCtrl
1468 * 0x10, VsmpsAAutoMode
1469 * 0x20, VsmpsAPWMMode
1471 REG_INIT(AB8505_VSMPSAREGU
, 0x04, 0x03, 0x3f),
1474 * 0x0c, VsmpsBSelCtrl
1475 * 0x10, VsmpsBAutoMode
1476 * 0x20, VsmpsBPWMMode
1478 REG_INIT(AB8505_VSMPSBREGU
, 0x04, 0x04, 0x3f),
1481 * 0x0c, VsafeSelCtrl
1482 * 0x10, VsafeAutoMode
1483 * 0x20, VsafePWMMode
1485 REG_INIT(AB8505_VSAFEREGU
, 0x04, 0x05, 0x3f),
1487 * 0x03, VpllRegu (NOTE! PRCMU register bits)
1490 REG_INIT(AB8505_VPLLVANAREGU
, 0x04, 0x06, 0x0f),
1492 * 0x03, VextSupply1Regu
1493 * 0x0c, VextSupply2Regu
1494 * 0x30, VextSupply3Regu
1495 * 0x40, ExtSupply2Bypass
1496 * 0x80, ExtSupply3Bypass
1498 REG_INIT(AB8505_EXTSUPPLYREGU
, 0x04, 0x08, 0xff),
1503 REG_INIT(AB8505_VAUX12REGU
, 0x04, 0x09, 0x0f),
1507 REG_INIT(AB8505_VRF1VAUX3REGU
, 0x04, 0x0a, 0x0f),
1511 REG_INIT(AB8505_VSMPSASEL1
, 0x04, 0x13, 0x3f),
1515 REG_INIT(AB8505_VSMPSASEL2
, 0x04, 0x14, 0x3f),
1519 REG_INIT(AB8505_VSMPSASEL3
, 0x04, 0x15, 0x3f),
1523 REG_INIT(AB8505_VSMPSBSEL1
, 0x04, 0x17, 0x3f),
1527 REG_INIT(AB8505_VSMPSBSEL2
, 0x04, 0x18, 0x3f),
1531 REG_INIT(AB8505_VSMPSBSEL3
, 0x04, 0x19, 0x3f),
1535 REG_INIT(AB8505_VSAFESEL1
, 0x04, 0x1b, 0x7f),
1539 REG_INIT(AB8505_VSAFESEL2
, 0x04, 0x1c, 0x7f),
1543 REG_INIT(AB8505_VSAFESEL3
, 0x04, 0x1d, 0x7f),
1547 REG_INIT(AB8505_VAUX1SEL
, 0x04, 0x1f, 0x0f),
1551 REG_INIT(AB8505_VAUX2SEL
, 0x04, 0x20, 0x0f),
1556 REG_INIT(AB8505_VRF1VAUX3SEL
, 0x04, 0x21, 0x37),
1558 * 0x03, Vaux4RequestCtrl
1560 REG_INIT(AB8505_VAUX4REQCTRL
, 0x04, 0x2d, 0x03),
1564 REG_INIT(AB8505_VAUX4REGU
, 0x04, 0x2e, 0x03),
1568 REG_INIT(AB8505_VAUX4SEL
, 0x04, 0x2f, 0x0f),
1573 * 0x20, Vintcore12Disch
1577 REG_INIT(AB8505_REGUCTRLDISCH
, 0x04, 0x43, 0xfc),
1580 * 0x04, VdmicPullDownEna
1583 REG_INIT(AB8505_REGUCTRLDISCH2
, 0x04, 0x44, 0x16),
1587 REG_INIT(AB8505_REGUCTRLDISCH3
, 0x04, 0x48, 0x01),
1593 * 0x40, Vaux5DisSfst
1594 * 0x80, Vaux5DisPulld
1596 REG_INIT(AB8505_CTRLVAUX5
, 0x01, 0x55, 0xff),
1601 * 0x80, Vaux6DisPulld
1603 REG_INIT(AB8505_CTRLVAUX6
, 0x01, 0x56, 0x9f),
1606 static struct of_regulator_match ab8500_regulator_match
[] = {
1607 { .name
= "ab8500_ldo_aux1", .driver_data
= (void *) AB8500_LDO_AUX1
, },
1608 { .name
= "ab8500_ldo_aux2", .driver_data
= (void *) AB8500_LDO_AUX2
, },
1609 { .name
= "ab8500_ldo_aux3", .driver_data
= (void *) AB8500_LDO_AUX3
, },
1610 { .name
= "ab8500_ldo_intcore", .driver_data
= (void *) AB8500_LDO_INTCORE
, },
1611 { .name
= "ab8500_ldo_tvout", .driver_data
= (void *) AB8500_LDO_TVOUT
, },
1612 { .name
= "ab8500_ldo_audio", .driver_data
= (void *) AB8500_LDO_AUDIO
, },
1613 { .name
= "ab8500_ldo_anamic1", .driver_data
= (void *) AB8500_LDO_ANAMIC1
, },
1614 { .name
= "ab8500_ldo_anamic2", .driver_data
= (void *) AB8500_LDO_ANAMIC2
, },
1615 { .name
= "ab8500_ldo_dmic", .driver_data
= (void *) AB8500_LDO_DMIC
, },
1616 { .name
= "ab8500_ldo_ana", .driver_data
= (void *) AB8500_LDO_ANA
, },
1619 static struct of_regulator_match ab8505_regulator_match
[] = {
1620 { .name
= "ab8500_ldo_aux1", .driver_data
= (void *) AB8505_LDO_AUX1
, },
1621 { .name
= "ab8500_ldo_aux2", .driver_data
= (void *) AB8505_LDO_AUX2
, },
1622 { .name
= "ab8500_ldo_aux3", .driver_data
= (void *) AB8505_LDO_AUX3
, },
1623 { .name
= "ab8500_ldo_aux4", .driver_data
= (void *) AB8505_LDO_AUX4
, },
1624 { .name
= "ab8500_ldo_aux5", .driver_data
= (void *) AB8505_LDO_AUX5
, },
1625 { .name
= "ab8500_ldo_aux6", .driver_data
= (void *) AB8505_LDO_AUX6
, },
1626 { .name
= "ab8500_ldo_intcore", .driver_data
= (void *) AB8505_LDO_INTCORE
, },
1627 { .name
= "ab8500_ldo_adc", .driver_data
= (void *) AB8505_LDO_ADC
, },
1628 { .name
= "ab8500_ldo_audio", .driver_data
= (void *) AB8505_LDO_AUDIO
, },
1629 { .name
= "ab8500_ldo_anamic1", .driver_data
= (void *) AB8505_LDO_ANAMIC1
, },
1630 { .name
= "ab8500_ldo_anamic2", .driver_data
= (void *) AB8505_LDO_ANAMIC2
, },
1631 { .name
= "ab8500_ldo_aux8", .driver_data
= (void *) AB8505_LDO_AUX8
, },
1632 { .name
= "ab8500_ldo_ana", .driver_data
= (void *) AB8505_LDO_ANA
, },
1636 struct ab8500_regulator_info
*info
;
1638 struct ab8500_reg_init
*init
;
1640 struct of_regulator_match
*match
;
1644 static void abx500_get_regulator_info(struct ab8500
*ab8500
)
1646 if (is_ab8505(ab8500
)) {
1647 abx500_regulator
.info
= ab8505_regulator_info
;
1648 abx500_regulator
.info_size
= ARRAY_SIZE(ab8505_regulator_info
);
1649 abx500_regulator
.init
= ab8505_reg_init
;
1650 abx500_regulator
.init_size
= AB8505_NUM_REGULATOR_REGISTERS
;
1651 abx500_regulator
.match
= ab8505_regulator_match
;
1652 abx500_regulator
.match_size
= ARRAY_SIZE(ab8505_regulator_match
);
1654 abx500_regulator
.info
= ab8500_regulator_info
;
1655 abx500_regulator
.info_size
= ARRAY_SIZE(ab8500_regulator_info
);
1656 abx500_regulator
.init
= ab8500_reg_init
;
1657 abx500_regulator
.init_size
= AB8500_NUM_REGULATOR_REGISTERS
;
1658 abx500_regulator
.match
= ab8500_regulator_match
;
1659 abx500_regulator
.match_size
= ARRAY_SIZE(ab8500_regulator_match
);
1663 static int ab8500_regulator_register(struct platform_device
*pdev
,
1664 struct regulator_init_data
*init_data
,
1665 int id
, struct device_node
*np
)
1667 struct ab8500
*ab8500
= dev_get_drvdata(pdev
->dev
.parent
);
1668 struct ab8500_regulator_info
*info
= NULL
;
1669 struct regulator_config config
= { };
1670 struct regulator_dev
*rdev
;
1672 /* assign per-regulator data */
1673 info
= &abx500_regulator
.info
[id
];
1674 info
->dev
= &pdev
->dev
;
1676 config
.dev
= &pdev
->dev
;
1677 config
.init_data
= init_data
;
1678 config
.driver_data
= info
;
1679 config
.of_node
= np
;
1681 /* fix for hardware before ab8500v2.0 */
1682 if (is_ab8500_1p1_or_earlier(ab8500
)) {
1683 if (info
->desc
.id
== AB8500_LDO_AUX3
) {
1684 info
->desc
.n_voltages
=
1685 ARRAY_SIZE(ldo_vauxn_voltages
);
1686 info
->desc
.volt_table
= ldo_vauxn_voltages
;
1687 info
->voltage_mask
= 0xf;
1691 /* register regulator with framework */
1692 rdev
= devm_regulator_register(&pdev
->dev
, &info
->desc
, &config
);
1694 dev_err(&pdev
->dev
, "failed to register regulator %s\n",
1696 return PTR_ERR(rdev
);
1702 static int ab8500_regulator_probe(struct platform_device
*pdev
)
1704 struct ab8500
*ab8500
= dev_get_drvdata(pdev
->dev
.parent
);
1705 struct device_node
*np
= pdev
->dev
.of_node
;
1706 struct of_regulator_match
*match
;
1710 dev_err(&pdev
->dev
, "null mfd parent\n");
1714 abx500_get_regulator_info(ab8500
);
1716 err
= of_regulator_match(&pdev
->dev
, np
,
1717 abx500_regulator
.match
,
1718 abx500_regulator
.match_size
);
1721 "Error parsing regulator init data: %d\n", err
);
1725 match
= abx500_regulator
.match
;
1726 for (i
= 0; i
< abx500_regulator
.info_size
; i
++) {
1727 err
= ab8500_regulator_register(pdev
, match
[i
].init_data
, i
,
1736 static struct platform_driver ab8500_regulator_driver
= {
1737 .probe
= ab8500_regulator_probe
,
1739 .name
= "ab8500-regulator",
1740 .probe_type
= PROBE_PREFER_ASYNCHRONOUS
,
1744 static int __init
ab8500_regulator_init(void)
1748 ret
= platform_driver_register(&ab8500_regulator_driver
);
1750 pr_err("Failed to register ab8500 regulator: %d\n", ret
);
1754 subsys_initcall(ab8500_regulator_init
);
1756 static void __exit
ab8500_regulator_exit(void)
1758 platform_driver_unregister(&ab8500_regulator_driver
);
1760 module_exit(ab8500_regulator_exit
);
1762 MODULE_LICENSE("GPL v2");
1763 MODULE_AUTHOR("Sundar Iyer <sundar.iyer@stericsson.com>");
1764 MODULE_AUTHOR("Bengt Jonsson <bengt.g.jonsson@stericsson.com>");
1765 MODULE_AUTHOR("Daniel Willerud <daniel.willerud@stericsson.com>");
1766 MODULE_DESCRIPTION("Regulator Driver for ST-Ericsson AB8500 Mixed-Sig PMIC");
1767 MODULE_ALIAS("platform:ab8500-regulator");