4 * Regulator driver for TPS65073 PMIC
6 * Copyright (C) 2009 Texas Instrument Incorporated - http://www.ti.com/
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation version 2.
12 * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind,
13 * whether express or implied; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/err.h>
22 #include <linux/platform_device.h>
23 #include <linux/regulator/driver.h>
24 #include <linux/regulator/machine.h>
25 #include <linux/regulator/tps6507x.h>
26 #include <linux/delay.h>
27 #include <linux/slab.h>
28 #include <linux/mfd/tps6507x.h>
31 #define TPS6507X_DCDC_1 0
32 #define TPS6507X_DCDC_2 1
33 #define TPS6507X_DCDC_3 2
35 #define TPS6507X_LDO_1 3
36 #define TPS6507X_LDO_2 4
38 #define TPS6507X_MAX_REG_ID TPS6507X_LDO_2
40 /* Number of step-down converters available */
41 #define TPS6507X_NUM_DCDC 3
42 /* Number of LDO voltage regulators available */
43 #define TPS6507X_NUM_LDO 2
44 /* Number of total regulators available */
45 #define TPS6507X_NUM_REGULATOR (TPS6507X_NUM_DCDC + TPS6507X_NUM_LDO)
47 /* Supported voltage values for regulators (in milliVolts) */
48 static const u16 VDCDCx_VSEL_table
[] = {
52 1025, 1050, 1075, 1100,
53 1125, 1150, 1175, 1200,
54 1225, 1250, 1275, 1300,
55 1325, 1350, 1375, 1400,
56 1425, 1450, 1475, 1500,
57 1550, 1600, 1650, 1700,
58 1750, 1800, 1850, 1900,
59 1950, 2000, 2050, 2100,
60 2150, 2200, 2250, 2300,
61 2350, 2400, 2450, 2500,
62 2550, 2600, 2650, 2700,
63 2750, 2800, 2850, 2900,
64 3000, 3100, 3200, 3300,
67 static const u16 LDO1_VSEL_table
[] = {
68 1000, 1100, 1200, 1250,
69 1300, 1350, 1400, 1500,
70 1600, 1800, 2500, 2750,
71 2800, 3000, 3100, 3300,
74 static const u16 LDO2_VSEL_table
[] = {
78 1025, 1050, 1075, 1100,
79 1125, 1150, 1175, 1200,
80 1225, 1250, 1275, 1300,
81 1325, 1350, 1375, 1400,
82 1425, 1450, 1475, 1500,
83 1550, 1600, 1650, 1700,
84 1750, 1800, 1850, 1900,
85 1950, 2000, 2050, 2100,
86 2150, 2200, 2250, 2300,
87 2350, 2400, 2450, 2500,
88 2550, 2600, 2650, 2700,
89 2750, 2800, 2850, 2900,
90 3000, 3100, 3200, 3300,
100 /* Does DCDC high or the low register defines output voltage? */
101 bool defdcdc_default
;
104 static struct tps_info tps6507x_pmic_regs
[] = {
109 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
110 .table
= VDCDCx_VSEL_table
,
116 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
117 .table
= VDCDCx_VSEL_table
,
123 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
124 .table
= VDCDCx_VSEL_table
,
130 .table_len
= ARRAY_SIZE(LDO1_VSEL_table
),
131 .table
= LDO1_VSEL_table
,
137 .table_len
= ARRAY_SIZE(LDO2_VSEL_table
),
138 .table
= LDO2_VSEL_table
,
142 struct tps6507x_pmic
{
143 struct regulator_desc desc
[TPS6507X_NUM_REGULATOR
];
144 struct tps6507x_dev
*mfd
;
145 struct regulator_dev
*rdev
[TPS6507X_NUM_REGULATOR
];
146 struct tps_info
*info
[TPS6507X_NUM_REGULATOR
];
147 struct mutex io_lock
;
149 static inline int tps6507x_pmic_read(struct tps6507x_pmic
*tps
, u8 reg
)
154 err
= tps
->mfd
->read_dev(tps
->mfd
, reg
, 1, &val
);
162 static inline int tps6507x_pmic_write(struct tps6507x_pmic
*tps
, u8 reg
, u8 val
)
164 return tps
->mfd
->write_dev(tps
->mfd
, reg
, 1, &val
);
167 static int tps6507x_pmic_set_bits(struct tps6507x_pmic
*tps
, u8 reg
, u8 mask
)
171 mutex_lock(&tps
->io_lock
);
173 data
= tps6507x_pmic_read(tps
, reg
);
175 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
181 err
= tps6507x_pmic_write(tps
, reg
, data
);
183 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
186 mutex_unlock(&tps
->io_lock
);
190 static int tps6507x_pmic_clear_bits(struct tps6507x_pmic
*tps
, u8 reg
, u8 mask
)
194 mutex_lock(&tps
->io_lock
);
196 data
= tps6507x_pmic_read(tps
, reg
);
198 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
204 err
= tps6507x_pmic_write(tps
, reg
, data
);
206 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
209 mutex_unlock(&tps
->io_lock
);
213 static int tps6507x_pmic_reg_read(struct tps6507x_pmic
*tps
, u8 reg
)
217 mutex_lock(&tps
->io_lock
);
219 data
= tps6507x_pmic_read(tps
, reg
);
221 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
223 mutex_unlock(&tps
->io_lock
);
227 static int tps6507x_pmic_reg_write(struct tps6507x_pmic
*tps
, u8 reg
, u8 val
)
231 mutex_lock(&tps
->io_lock
);
233 err
= tps6507x_pmic_write(tps
, reg
, val
);
235 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
237 mutex_unlock(&tps
->io_lock
);
241 static int tps6507x_pmic_dcdc_is_enabled(struct regulator_dev
*dev
)
243 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
244 int data
, dcdc
= rdev_get_id(dev
);
247 if (dcdc
< TPS6507X_DCDC_1
|| dcdc
> TPS6507X_DCDC_3
)
250 shift
= TPS6507X_MAX_REG_ID
- dcdc
;
251 data
= tps6507x_pmic_reg_read(tps
, TPS6507X_REG_CON_CTRL1
);
256 return (data
& 1<<shift
) ? 1 : 0;
259 static int tps6507x_pmic_ldo_is_enabled(struct regulator_dev
*dev
)
261 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
262 int data
, ldo
= rdev_get_id(dev
);
265 if (ldo
< TPS6507X_LDO_1
|| ldo
> TPS6507X_LDO_2
)
268 shift
= TPS6507X_MAX_REG_ID
- ldo
;
269 data
= tps6507x_pmic_reg_read(tps
, TPS6507X_REG_CON_CTRL1
);
274 return (data
& 1<<shift
) ? 1 : 0;
277 static int tps6507x_pmic_dcdc_enable(struct regulator_dev
*dev
)
279 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
280 int dcdc
= rdev_get_id(dev
);
283 if (dcdc
< TPS6507X_DCDC_1
|| dcdc
> TPS6507X_DCDC_3
)
286 shift
= TPS6507X_MAX_REG_ID
- dcdc
;
287 return tps6507x_pmic_set_bits(tps
, TPS6507X_REG_CON_CTRL1
, 1 << shift
);
290 static int tps6507x_pmic_dcdc_disable(struct regulator_dev
*dev
)
292 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
293 int dcdc
= rdev_get_id(dev
);
296 if (dcdc
< TPS6507X_DCDC_1
|| dcdc
> TPS6507X_DCDC_3
)
299 shift
= TPS6507X_MAX_REG_ID
- dcdc
;
300 return tps6507x_pmic_clear_bits(tps
, TPS6507X_REG_CON_CTRL1
,
304 static int tps6507x_pmic_ldo_enable(struct regulator_dev
*dev
)
306 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
307 int ldo
= rdev_get_id(dev
);
310 if (ldo
< TPS6507X_LDO_1
|| ldo
> TPS6507X_LDO_2
)
313 shift
= TPS6507X_MAX_REG_ID
- ldo
;
314 return tps6507x_pmic_set_bits(tps
, TPS6507X_REG_CON_CTRL1
, 1 << shift
);
317 static int tps6507x_pmic_ldo_disable(struct regulator_dev
*dev
)
319 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
320 int ldo
= rdev_get_id(dev
);
323 if (ldo
< TPS6507X_LDO_1
|| ldo
> TPS6507X_LDO_2
)
326 shift
= TPS6507X_MAX_REG_ID
- ldo
;
327 return tps6507x_pmic_clear_bits(tps
, TPS6507X_REG_CON_CTRL1
,
331 static int tps6507x_pmic_dcdc_get_voltage(struct regulator_dev
*dev
)
333 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
334 int data
, dcdc
= rdev_get_id(dev
);
338 case TPS6507X_DCDC_1
:
339 reg
= TPS6507X_REG_DEFDCDC1
;
341 case TPS6507X_DCDC_2
:
342 if (tps
->info
[dcdc
]->defdcdc_default
)
343 reg
= TPS6507X_REG_DEFDCDC2_HIGH
;
345 reg
= TPS6507X_REG_DEFDCDC2_LOW
;
347 case TPS6507X_DCDC_3
:
348 if (tps
->info
[dcdc
]->defdcdc_default
)
349 reg
= TPS6507X_REG_DEFDCDC3_HIGH
;
351 reg
= TPS6507X_REG_DEFDCDC3_LOW
;
357 data
= tps6507x_pmic_reg_read(tps
, reg
);
361 data
&= TPS6507X_DEFDCDCX_DCDC_MASK
;
362 return tps
->info
[dcdc
]->table
[data
] * 1000;
365 static int tps6507x_pmic_dcdc_set_voltage(struct regulator_dev
*dev
,
366 int min_uV
, int max_uV
,
369 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
370 int data
, vsel
, dcdc
= rdev_get_id(dev
);
374 case TPS6507X_DCDC_1
:
375 reg
= TPS6507X_REG_DEFDCDC1
;
377 case TPS6507X_DCDC_2
:
378 if (tps
->info
[dcdc
]->defdcdc_default
)
379 reg
= TPS6507X_REG_DEFDCDC2_HIGH
;
381 reg
= TPS6507X_REG_DEFDCDC2_LOW
;
383 case TPS6507X_DCDC_3
:
384 if (tps
->info
[dcdc
]->defdcdc_default
)
385 reg
= TPS6507X_REG_DEFDCDC3_HIGH
;
387 reg
= TPS6507X_REG_DEFDCDC3_LOW
;
393 if (min_uV
< tps
->info
[dcdc
]->min_uV
394 || min_uV
> tps
->info
[dcdc
]->max_uV
)
396 if (max_uV
< tps
->info
[dcdc
]->min_uV
397 || max_uV
> tps
->info
[dcdc
]->max_uV
)
400 for (vsel
= 0; vsel
< tps
->info
[dcdc
]->table_len
; vsel
++) {
401 int mV
= tps
->info
[dcdc
]->table
[vsel
];
404 /* Break at the first in-range value */
405 if (min_uV
<= uV
&& uV
<= max_uV
)
409 /* write to the register in case we found a match */
410 if (vsel
== tps
->info
[dcdc
]->table_len
)
415 data
= tps6507x_pmic_reg_read(tps
, reg
);
419 data
&= ~TPS6507X_DEFDCDCX_DCDC_MASK
;
422 return tps6507x_pmic_reg_write(tps
, reg
, data
);
425 static int tps6507x_pmic_ldo_get_voltage(struct regulator_dev
*dev
)
427 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
428 int data
, ldo
= rdev_get_id(dev
);
431 if (ldo
< TPS6507X_LDO_1
|| ldo
> TPS6507X_LDO_2
)
434 reg
= (ldo
== TPS6507X_LDO_1
?
435 TPS6507X_REG_LDO_CTRL1
: TPS6507X_REG_DEFLDO2
);
436 mask
= (ldo
== TPS6507X_LDO_1
?
437 TPS6507X_REG_LDO_CTRL1_LDO1_MASK
:
438 TPS6507X_REG_DEFLDO2_LDO2_MASK
);
441 data
= tps6507x_pmic_reg_read(tps
, reg
);
446 return tps
->info
[ldo
]->table
[data
] * 1000;
449 static int tps6507x_pmic_ldo_set_voltage(struct regulator_dev
*dev
,
450 int min_uV
, int max_uV
,
453 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
454 int data
, vsel
, ldo
= rdev_get_id(dev
);
457 if (ldo
< TPS6507X_LDO_1
|| ldo
> TPS6507X_LDO_2
)
460 reg
= (ldo
== TPS6507X_LDO_1
?
461 TPS6507X_REG_LDO_CTRL1
: TPS6507X_REG_DEFLDO2
);
462 mask
= (ldo
== TPS6507X_LDO_1
?
463 TPS6507X_REG_LDO_CTRL1_LDO1_MASK
:
464 TPS6507X_REG_DEFLDO2_LDO2_MASK
);
467 if (min_uV
< tps
->info
[ldo
]->min_uV
|| min_uV
> tps
->info
[ldo
]->max_uV
)
469 if (max_uV
< tps
->info
[ldo
]->min_uV
|| max_uV
> tps
->info
[ldo
]->max_uV
)
472 for (vsel
= 0; vsel
< tps
->info
[ldo
]->table_len
; vsel
++) {
473 int mV
= tps
->info
[ldo
]->table
[vsel
];
476 /* Break at the first in-range value */
477 if (min_uV
<= uV
&& uV
<= max_uV
)
481 if (vsel
== tps
->info
[ldo
]->table_len
)
486 data
= tps6507x_pmic_reg_read(tps
, reg
);
493 return tps6507x_pmic_reg_write(tps
, reg
, data
);
496 static int tps6507x_pmic_dcdc_list_voltage(struct regulator_dev
*dev
,
499 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
500 int dcdc
= rdev_get_id(dev
);
502 if (dcdc
< TPS6507X_DCDC_1
|| dcdc
> TPS6507X_DCDC_3
)
505 if (selector
>= tps
->info
[dcdc
]->table_len
)
508 return tps
->info
[dcdc
]->table
[selector
] * 1000;
511 static int tps6507x_pmic_ldo_list_voltage(struct regulator_dev
*dev
,
514 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
515 int ldo
= rdev_get_id(dev
);
517 if (ldo
< TPS6507X_LDO_1
|| ldo
> TPS6507X_LDO_2
)
520 if (selector
>= tps
->info
[ldo
]->table_len
)
523 return tps
->info
[ldo
]->table
[selector
] * 1000;
526 /* Operations permitted on VDCDCx */
527 static struct regulator_ops tps6507x_pmic_dcdc_ops
= {
528 .is_enabled
= tps6507x_pmic_dcdc_is_enabled
,
529 .enable
= tps6507x_pmic_dcdc_enable
,
530 .disable
= tps6507x_pmic_dcdc_disable
,
531 .get_voltage
= tps6507x_pmic_dcdc_get_voltage
,
532 .set_voltage
= tps6507x_pmic_dcdc_set_voltage
,
533 .list_voltage
= tps6507x_pmic_dcdc_list_voltage
,
536 /* Operations permitted on LDOx */
537 static struct regulator_ops tps6507x_pmic_ldo_ops
= {
538 .is_enabled
= tps6507x_pmic_ldo_is_enabled
,
539 .enable
= tps6507x_pmic_ldo_enable
,
540 .disable
= tps6507x_pmic_ldo_disable
,
541 .get_voltage
= tps6507x_pmic_ldo_get_voltage
,
542 .set_voltage
= tps6507x_pmic_ldo_set_voltage
,
543 .list_voltage
= tps6507x_pmic_ldo_list_voltage
,
547 int tps6507x_pmic_probe(struct platform_device
*pdev
)
549 struct tps6507x_dev
*tps6507x_dev
= dev_get_drvdata(pdev
->dev
.parent
);
550 struct tps_info
*info
= &tps6507x_pmic_regs
[0];
551 struct regulator_init_data
*init_data
;
552 struct regulator_dev
*rdev
;
553 struct tps6507x_pmic
*tps
;
554 struct tps6507x_board
*tps_board
;
559 * tps_board points to pmic related constants
560 * coming from the board-evm file.
563 tps_board
= dev_get_platdata(tps6507x_dev
->dev
);
568 * init_data points to array of regulator_init structures
569 * coming from the board-evm file.
571 init_data
= tps_board
->tps6507x_pmic_init_data
;
575 tps
= kzalloc(sizeof(*tps
), GFP_KERNEL
);
579 mutex_init(&tps
->io_lock
);
581 /* common for all regulators */
582 tps
->mfd
= tps6507x_dev
;
584 for (i
= 0; i
< TPS6507X_NUM_REGULATOR
; i
++, info
++, init_data
++) {
585 /* Register the regulators */
587 if (init_data
->driver_data
) {
588 struct tps6507x_reg_platform_data
*data
=
589 init_data
->driver_data
;
590 tps
->info
[i
]->defdcdc_default
= data
->defdcdc_default
;
593 tps
->desc
[i
].name
= info
->name
;
595 tps
->desc
[i
].n_voltages
= info
->table_len
;
596 tps
->desc
[i
].ops
= (i
> TPS6507X_DCDC_3
?
597 &tps6507x_pmic_ldo_ops
: &tps6507x_pmic_dcdc_ops
);
598 tps
->desc
[i
].type
= REGULATOR_VOLTAGE
;
599 tps
->desc
[i
].owner
= THIS_MODULE
;
601 rdev
= regulator_register(&tps
->desc
[i
],
602 tps6507x_dev
->dev
, init_data
, tps
);
604 dev_err(tps6507x_dev
->dev
,
605 "failed to register %s regulator\n",
607 error
= PTR_ERR(rdev
);
611 /* Save regulator for cleanup */
615 tps6507x_dev
->pmic
= tps
;
616 platform_set_drvdata(pdev
, tps6507x_dev
);
622 regulator_unregister(tps
->rdev
[i
]);
628 static int __devexit
tps6507x_pmic_remove(struct platform_device
*pdev
)
630 struct tps6507x_dev
*tps6507x_dev
= platform_get_drvdata(pdev
);
631 struct tps6507x_pmic
*tps
= tps6507x_dev
->pmic
;
634 for (i
= 0; i
< TPS6507X_NUM_REGULATOR
; i
++)
635 regulator_unregister(tps
->rdev
[i
]);
642 static struct platform_driver tps6507x_pmic_driver
= {
644 .name
= "tps6507x-pmic",
645 .owner
= THIS_MODULE
,
647 .probe
= tps6507x_pmic_probe
,
648 .remove
= __devexit_p(tps6507x_pmic_remove
),
654 * Module init function
656 static int __init
tps6507x_pmic_init(void)
658 return platform_driver_register(&tps6507x_pmic_driver
);
660 subsys_initcall(tps6507x_pmic_init
);
663 * tps6507x_pmic_cleanup
665 * Module exit function
667 static void __exit
tps6507x_pmic_cleanup(void)
669 platform_driver_unregister(&tps6507x_pmic_driver
);
671 module_exit(tps6507x_pmic_cleanup
);
673 MODULE_AUTHOR("Texas Instruments");
674 MODULE_DESCRIPTION("TPS6507x voltage regulator driver");
675 MODULE_LICENSE("GPL v2");
676 MODULE_ALIAS("platform:tps6507x-pmic");