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>
27 #include <linux/slab.h>
28 #include <linux/mfd/tps6507x.h>
29 #include <linux/regulator/of_regulator.h>
32 #define TPS6507X_DCDC_1 0
33 #define TPS6507X_DCDC_2 1
34 #define TPS6507X_DCDC_3 2
36 #define TPS6507X_LDO_1 3
37 #define TPS6507X_LDO_2 4
39 #define TPS6507X_MAX_REG_ID TPS6507X_LDO_2
41 /* Number of step-down converters available */
42 #define TPS6507X_NUM_DCDC 3
43 /* Number of LDO voltage regulators available */
44 #define TPS6507X_NUM_LDO 2
45 /* Number of total regulators available */
46 #define TPS6507X_NUM_REGULATOR (TPS6507X_NUM_DCDC + TPS6507X_NUM_LDO)
48 /* Supported voltage values for regulators (in microVolts) */
49 static const unsigned int VDCDCx_VSEL_table
[] = {
50 725000, 750000, 775000, 800000,
51 825000, 850000, 875000, 900000,
52 925000, 950000, 975000, 1000000,
53 1025000, 1050000, 1075000, 1100000,
54 1125000, 1150000, 1175000, 1200000,
55 1225000, 1250000, 1275000, 1300000,
56 1325000, 1350000, 1375000, 1400000,
57 1425000, 1450000, 1475000, 1500000,
58 1550000, 1600000, 1650000, 1700000,
59 1750000, 1800000, 1850000, 1900000,
60 1950000, 2000000, 2050000, 2100000,
61 2150000, 2200000, 2250000, 2300000,
62 2350000, 2400000, 2450000, 2500000,
63 2550000, 2600000, 2650000, 2700000,
64 2750000, 2800000, 2850000, 2900000,
65 3000000, 3100000, 3200000, 3300000,
68 static const unsigned int LDO1_VSEL_table
[] = {
69 1000000, 1100000, 1200000, 1250000,
70 1300000, 1350000, 1400000, 1500000,
71 1600000, 1800000, 2500000, 2750000,
72 2800000, 3000000, 3100000, 3300000,
75 /* The voltage mapping table for LDO2 is the same as VDCDCx */
76 #define LDO2_VSEL_table VDCDCx_VSEL_table
81 const unsigned int *table
;
83 /* Does DCDC high or the low register defines output voltage? */
87 static struct tps_info tps6507x_pmic_regs
[] = {
90 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
91 .table
= VDCDCx_VSEL_table
,
95 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
96 .table
= VDCDCx_VSEL_table
,
100 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
101 .table
= VDCDCx_VSEL_table
,
105 .table_len
= ARRAY_SIZE(LDO1_VSEL_table
),
106 .table
= LDO1_VSEL_table
,
110 .table_len
= ARRAY_SIZE(LDO2_VSEL_table
),
111 .table
= LDO2_VSEL_table
,
115 struct tps6507x_pmic
{
116 struct regulator_desc desc
[TPS6507X_NUM_REGULATOR
];
117 struct tps6507x_dev
*mfd
;
118 struct regulator_dev
*rdev
[TPS6507X_NUM_REGULATOR
];
119 struct tps_info
*info
[TPS6507X_NUM_REGULATOR
];
120 struct mutex io_lock
;
122 static inline int tps6507x_pmic_read(struct tps6507x_pmic
*tps
, u8 reg
)
127 err
= tps
->mfd
->read_dev(tps
->mfd
, reg
, 1, &val
);
135 static inline int tps6507x_pmic_write(struct tps6507x_pmic
*tps
, u8 reg
, u8 val
)
137 return tps
->mfd
->write_dev(tps
->mfd
, reg
, 1, &val
);
140 static int tps6507x_pmic_set_bits(struct tps6507x_pmic
*tps
, u8 reg
, u8 mask
)
144 mutex_lock(&tps
->io_lock
);
146 data
= tps6507x_pmic_read(tps
, reg
);
148 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
154 err
= tps6507x_pmic_write(tps
, reg
, data
);
156 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
159 mutex_unlock(&tps
->io_lock
);
163 static int tps6507x_pmic_clear_bits(struct tps6507x_pmic
*tps
, u8 reg
, u8 mask
)
167 mutex_lock(&tps
->io_lock
);
169 data
= tps6507x_pmic_read(tps
, reg
);
171 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
177 err
= tps6507x_pmic_write(tps
, reg
, data
);
179 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
182 mutex_unlock(&tps
->io_lock
);
186 static int tps6507x_pmic_reg_read(struct tps6507x_pmic
*tps
, u8 reg
)
190 mutex_lock(&tps
->io_lock
);
192 data
= tps6507x_pmic_read(tps
, reg
);
194 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
196 mutex_unlock(&tps
->io_lock
);
200 static int tps6507x_pmic_reg_write(struct tps6507x_pmic
*tps
, u8 reg
, u8 val
)
204 mutex_lock(&tps
->io_lock
);
206 err
= tps6507x_pmic_write(tps
, reg
, val
);
208 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
210 mutex_unlock(&tps
->io_lock
);
214 static int tps6507x_pmic_is_enabled(struct regulator_dev
*dev
)
216 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
217 int data
, rid
= rdev_get_id(dev
);
220 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
223 shift
= TPS6507X_MAX_REG_ID
- rid
;
224 data
= tps6507x_pmic_reg_read(tps
, TPS6507X_REG_CON_CTRL1
);
229 return (data
& 1<<shift
) ? 1 : 0;
232 static int tps6507x_pmic_enable(struct regulator_dev
*dev
)
234 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
235 int rid
= rdev_get_id(dev
);
238 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
241 shift
= TPS6507X_MAX_REG_ID
- rid
;
242 return tps6507x_pmic_set_bits(tps
, TPS6507X_REG_CON_CTRL1
, 1 << shift
);
245 static int tps6507x_pmic_disable(struct regulator_dev
*dev
)
247 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
248 int rid
= rdev_get_id(dev
);
251 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
254 shift
= TPS6507X_MAX_REG_ID
- rid
;
255 return tps6507x_pmic_clear_bits(tps
, TPS6507X_REG_CON_CTRL1
,
259 static int tps6507x_pmic_get_voltage_sel(struct regulator_dev
*dev
)
261 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
262 int data
, rid
= rdev_get_id(dev
);
266 case TPS6507X_DCDC_1
:
267 reg
= TPS6507X_REG_DEFDCDC1
;
268 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
270 case TPS6507X_DCDC_2
:
271 if (tps
->info
[rid
]->defdcdc_default
)
272 reg
= TPS6507X_REG_DEFDCDC2_HIGH
;
274 reg
= TPS6507X_REG_DEFDCDC2_LOW
;
275 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
277 case TPS6507X_DCDC_3
:
278 if (tps
->info
[rid
]->defdcdc_default
)
279 reg
= TPS6507X_REG_DEFDCDC3_HIGH
;
281 reg
= TPS6507X_REG_DEFDCDC3_LOW
;
282 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
285 reg
= TPS6507X_REG_LDO_CTRL1
;
286 mask
= TPS6507X_REG_LDO_CTRL1_LDO1_MASK
;
289 reg
= TPS6507X_REG_DEFLDO2
;
290 mask
= TPS6507X_REG_DEFLDO2_LDO2_MASK
;
296 data
= tps6507x_pmic_reg_read(tps
, reg
);
304 static int tps6507x_pmic_set_voltage_sel(struct regulator_dev
*dev
,
307 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
308 int data
, rid
= rdev_get_id(dev
);
312 case TPS6507X_DCDC_1
:
313 reg
= TPS6507X_REG_DEFDCDC1
;
314 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
316 case TPS6507X_DCDC_2
:
317 if (tps
->info
[rid
]->defdcdc_default
)
318 reg
= TPS6507X_REG_DEFDCDC2_HIGH
;
320 reg
= TPS6507X_REG_DEFDCDC2_LOW
;
321 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
323 case TPS6507X_DCDC_3
:
324 if (tps
->info
[rid
]->defdcdc_default
)
325 reg
= TPS6507X_REG_DEFDCDC3_HIGH
;
327 reg
= TPS6507X_REG_DEFDCDC3_LOW
;
328 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
331 reg
= TPS6507X_REG_LDO_CTRL1
;
332 mask
= TPS6507X_REG_LDO_CTRL1_LDO1_MASK
;
335 reg
= TPS6507X_REG_DEFLDO2
;
336 mask
= TPS6507X_REG_DEFLDO2_LDO2_MASK
;
342 data
= tps6507x_pmic_reg_read(tps
, reg
);
349 return tps6507x_pmic_reg_write(tps
, reg
, data
);
352 static struct regulator_ops tps6507x_pmic_ops
= {
353 .is_enabled
= tps6507x_pmic_is_enabled
,
354 .enable
= tps6507x_pmic_enable
,
355 .disable
= tps6507x_pmic_disable
,
356 .get_voltage_sel
= tps6507x_pmic_get_voltage_sel
,
357 .set_voltage_sel
= tps6507x_pmic_set_voltage_sel
,
358 .list_voltage
= regulator_list_voltage_table
,
359 .map_voltage
= regulator_map_voltage_ascend
,
363 static struct of_regulator_match tps6507x_matches
[] = {
371 static struct tps6507x_board
*tps6507x_parse_dt_reg_data(
372 struct platform_device
*pdev
,
373 struct of_regulator_match
**tps6507x_reg_matches
)
375 struct tps6507x_board
*tps_board
;
376 struct device_node
*np
= pdev
->dev
.parent
->of_node
;
377 struct device_node
*regulators
;
378 struct of_regulator_match
*matches
;
379 static struct regulator_init_data
*reg_data
;
380 int idx
= 0, count
, ret
;
382 tps_board
= devm_kzalloc(&pdev
->dev
, sizeof(*tps_board
),
385 dev_err(&pdev
->dev
, "Failure to alloc pdata for regulators.\n");
389 regulators
= of_find_node_by_name(np
, "regulators");
391 dev_err(&pdev
->dev
, "regulator node not found\n");
395 count
= ARRAY_SIZE(tps6507x_matches
);
396 matches
= tps6507x_matches
;
398 ret
= of_regulator_match(&pdev
->dev
, regulators
, matches
, count
);
400 dev_err(&pdev
->dev
, "Error parsing regulator init data: %d\n",
405 *tps6507x_reg_matches
= matches
;
407 reg_data
= devm_kzalloc(&pdev
->dev
, (sizeof(struct regulator_init_data
)
408 * TPS6507X_NUM_REGULATOR
), GFP_KERNEL
);
410 dev_err(&pdev
->dev
, "Failure to alloc init data for regulators.\n");
414 tps_board
->tps6507x_pmic_init_data
= reg_data
;
416 for (idx
= 0; idx
< count
; idx
++) {
417 if (!matches
[idx
].init_data
|| !matches
[idx
].of_node
)
420 memcpy(®_data
[idx
], matches
[idx
].init_data
,
421 sizeof(struct regulator_init_data
));
428 static inline struct tps6507x_board
*tps6507x_parse_dt_reg_data(
429 struct platform_device
*pdev
,
430 struct of_regulator_match
**tps6507x_reg_matches
)
432 *tps6507x_reg_matches
= NULL
;
436 static int tps6507x_pmic_probe(struct platform_device
*pdev
)
438 struct tps6507x_dev
*tps6507x_dev
= dev_get_drvdata(pdev
->dev
.parent
);
439 struct tps_info
*info
= &tps6507x_pmic_regs
[0];
440 struct regulator_config config
= { };
441 struct regulator_init_data
*init_data
;
442 struct regulator_dev
*rdev
;
443 struct tps6507x_pmic
*tps
;
444 struct tps6507x_board
*tps_board
;
445 struct of_regulator_match
*tps6507x_reg_matches
= NULL
;
451 * tps_board points to pmic related constants
452 * coming from the board-evm file.
455 tps_board
= dev_get_platdata(tps6507x_dev
->dev
);
456 if (!tps_board
&& tps6507x_dev
->dev
->of_node
)
457 tps_board
= tps6507x_parse_dt_reg_data(pdev
,
458 &tps6507x_reg_matches
);
463 * init_data points to array of regulator_init structures
464 * coming from the board-evm file.
466 init_data
= tps_board
->tps6507x_pmic_init_data
;
470 tps
= devm_kzalloc(&pdev
->dev
, sizeof(*tps
), GFP_KERNEL
);
474 mutex_init(&tps
->io_lock
);
476 /* common for all regulators */
477 tps
->mfd
= tps6507x_dev
;
479 for (i
= 0; i
< TPS6507X_NUM_REGULATOR
; i
++, info
++, init_data
++) {
480 /* Register the regulators */
482 if (init_data
->driver_data
) {
483 struct tps6507x_reg_platform_data
*data
=
484 init_data
->driver_data
;
485 tps
->info
[i
]->defdcdc_default
= data
->defdcdc_default
;
488 tps
->desc
[i
].name
= info
->name
;
490 tps
->desc
[i
].n_voltages
= info
->table_len
;
491 tps
->desc
[i
].volt_table
= info
->table
;
492 tps
->desc
[i
].ops
= &tps6507x_pmic_ops
;
493 tps
->desc
[i
].type
= REGULATOR_VOLTAGE
;
494 tps
->desc
[i
].owner
= THIS_MODULE
;
496 config
.dev
= tps6507x_dev
->dev
;
497 config
.init_data
= init_data
;
498 config
.driver_data
= tps
;
500 if (tps6507x_reg_matches
) {
501 error
= of_property_read_u32(
502 tps6507x_reg_matches
[i
].of_node
,
503 "ti,defdcdc_default", &prop
);
506 tps
->info
[i
]->defdcdc_default
= prop
;
508 config
.of_node
= tps6507x_reg_matches
[i
].of_node
;
511 rdev
= regulator_register(&tps
->desc
[i
], &config
);
513 dev_err(tps6507x_dev
->dev
,
514 "failed to register %s regulator\n",
516 error
= PTR_ERR(rdev
);
520 /* Save regulator for cleanup */
524 tps6507x_dev
->pmic
= tps
;
525 platform_set_drvdata(pdev
, tps6507x_dev
);
531 regulator_unregister(tps
->rdev
[i
]);
535 static int tps6507x_pmic_remove(struct platform_device
*pdev
)
537 struct tps6507x_dev
*tps6507x_dev
= platform_get_drvdata(pdev
);
538 struct tps6507x_pmic
*tps
= tps6507x_dev
->pmic
;
541 for (i
= 0; i
< TPS6507X_NUM_REGULATOR
; i
++)
542 regulator_unregister(tps
->rdev
[i
]);
546 static struct platform_driver tps6507x_pmic_driver
= {
548 .name
= "tps6507x-pmic",
549 .owner
= THIS_MODULE
,
551 .probe
= tps6507x_pmic_probe
,
552 .remove
= tps6507x_pmic_remove
,
555 static int __init
tps6507x_pmic_init(void)
557 return platform_driver_register(&tps6507x_pmic_driver
);
559 subsys_initcall(tps6507x_pmic_init
);
561 static void __exit
tps6507x_pmic_cleanup(void)
563 platform_driver_unregister(&tps6507x_pmic_driver
);
565 module_exit(tps6507x_pmic_cleanup
);
567 MODULE_AUTHOR("Texas Instruments");
568 MODULE_DESCRIPTION("TPS6507x voltage regulator driver");
569 MODULE_LICENSE("GPL v2");
570 MODULE_ALIAS("platform:tps6507x-pmic");