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_is_enabled(struct regulator_dev
*dev
)
243 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
244 int data
, rid
= rdev_get_id(dev
);
247 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
250 shift
= TPS6507X_MAX_REG_ID
- rid
;
251 data
= tps6507x_pmic_reg_read(tps
, TPS6507X_REG_CON_CTRL1
);
256 return (data
& 1<<shift
) ? 1 : 0;
259 static int tps6507x_pmic_enable(struct regulator_dev
*dev
)
261 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
262 int rid
= rdev_get_id(dev
);
265 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
268 shift
= TPS6507X_MAX_REG_ID
- rid
;
269 return tps6507x_pmic_set_bits(tps
, TPS6507X_REG_CON_CTRL1
, 1 << shift
);
272 static int tps6507x_pmic_disable(struct regulator_dev
*dev
)
274 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
275 int rid
= rdev_get_id(dev
);
278 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
281 shift
= TPS6507X_MAX_REG_ID
- rid
;
282 return tps6507x_pmic_clear_bits(tps
, TPS6507X_REG_CON_CTRL1
,
286 static int tps6507x_pmic_get_voltage(struct regulator_dev
*dev
)
288 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
289 int data
, rid
= rdev_get_id(dev
);
293 case TPS6507X_DCDC_1
:
294 reg
= TPS6507X_REG_DEFDCDC1
;
295 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
297 case TPS6507X_DCDC_2
:
298 if (tps
->info
[rid
]->defdcdc_default
)
299 reg
= TPS6507X_REG_DEFDCDC2_HIGH
;
301 reg
= TPS6507X_REG_DEFDCDC2_LOW
;
302 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
304 case TPS6507X_DCDC_3
:
305 if (tps
->info
[rid
]->defdcdc_default
)
306 reg
= TPS6507X_REG_DEFDCDC3_HIGH
;
308 reg
= TPS6507X_REG_DEFDCDC3_LOW
;
309 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
312 reg
= TPS6507X_REG_LDO_CTRL1
;
313 mask
= TPS6507X_REG_LDO_CTRL1_LDO1_MASK
;
316 reg
= TPS6507X_REG_DEFLDO2
;
317 mask
= TPS6507X_REG_DEFLDO2_LDO2_MASK
;
323 data
= tps6507x_pmic_reg_read(tps
, reg
);
328 return tps
->info
[rid
]->table
[data
] * 1000;
331 static int tps6507x_pmic_set_voltage_sel(struct regulator_dev
*dev
,
334 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
335 int data
, rid
= rdev_get_id(dev
);
339 case TPS6507X_DCDC_1
:
340 reg
= TPS6507X_REG_DEFDCDC1
;
341 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
343 case TPS6507X_DCDC_2
:
344 if (tps
->info
[rid
]->defdcdc_default
)
345 reg
= TPS6507X_REG_DEFDCDC2_HIGH
;
347 reg
= TPS6507X_REG_DEFDCDC2_LOW
;
348 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
350 case TPS6507X_DCDC_3
:
351 if (tps
->info
[rid
]->defdcdc_default
)
352 reg
= TPS6507X_REG_DEFDCDC3_HIGH
;
354 reg
= TPS6507X_REG_DEFDCDC3_LOW
;
355 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
358 reg
= TPS6507X_REG_LDO_CTRL1
;
359 mask
= TPS6507X_REG_LDO_CTRL1_LDO1_MASK
;
362 reg
= TPS6507X_REG_DEFLDO2
;
363 mask
= TPS6507X_REG_DEFLDO2_LDO2_MASK
;
369 data
= tps6507x_pmic_reg_read(tps
, reg
);
376 return tps6507x_pmic_reg_write(tps
, reg
, data
);
379 static int tps6507x_pmic_list_voltage(struct regulator_dev
*dev
,
382 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
383 int rid
= rdev_get_id(dev
);
385 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
388 if (selector
>= tps
->info
[rid
]->table_len
)
391 return tps
->info
[rid
]->table
[selector
] * 1000;
394 static struct regulator_ops tps6507x_pmic_ops
= {
395 .is_enabled
= tps6507x_pmic_is_enabled
,
396 .enable
= tps6507x_pmic_enable
,
397 .disable
= tps6507x_pmic_disable
,
398 .get_voltage
= tps6507x_pmic_get_voltage
,
399 .set_voltage_sel
= tps6507x_pmic_set_voltage_sel
,
400 .list_voltage
= tps6507x_pmic_list_voltage
,
403 static __devinit
int tps6507x_pmic_probe(struct platform_device
*pdev
)
405 struct tps6507x_dev
*tps6507x_dev
= dev_get_drvdata(pdev
->dev
.parent
);
406 struct tps_info
*info
= &tps6507x_pmic_regs
[0];
407 struct regulator_init_data
*init_data
;
408 struct regulator_dev
*rdev
;
409 struct tps6507x_pmic
*tps
;
410 struct tps6507x_board
*tps_board
;
415 * tps_board points to pmic related constants
416 * coming from the board-evm file.
419 tps_board
= dev_get_platdata(tps6507x_dev
->dev
);
424 * init_data points to array of regulator_init structures
425 * coming from the board-evm file.
427 init_data
= tps_board
->tps6507x_pmic_init_data
;
431 tps
= kzalloc(sizeof(*tps
), GFP_KERNEL
);
435 mutex_init(&tps
->io_lock
);
437 /* common for all regulators */
438 tps
->mfd
= tps6507x_dev
;
440 for (i
= 0; i
< TPS6507X_NUM_REGULATOR
; i
++, info
++, init_data
++) {
441 /* Register the regulators */
443 if (init_data
->driver_data
) {
444 struct tps6507x_reg_platform_data
*data
=
445 init_data
->driver_data
;
446 tps
->info
[i
]->defdcdc_default
= data
->defdcdc_default
;
449 tps
->desc
[i
].name
= info
->name
;
451 tps
->desc
[i
].n_voltages
= info
->table_len
;
452 tps
->desc
[i
].ops
= &tps6507x_pmic_ops
;
453 tps
->desc
[i
].type
= REGULATOR_VOLTAGE
;
454 tps
->desc
[i
].owner
= THIS_MODULE
;
456 rdev
= regulator_register(&tps
->desc
[i
],
457 tps6507x_dev
->dev
, init_data
, tps
, NULL
);
459 dev_err(tps6507x_dev
->dev
,
460 "failed to register %s regulator\n",
462 error
= PTR_ERR(rdev
);
466 /* Save regulator for cleanup */
470 tps6507x_dev
->pmic
= tps
;
471 platform_set_drvdata(pdev
, tps6507x_dev
);
477 regulator_unregister(tps
->rdev
[i
]);
483 static int __devexit
tps6507x_pmic_remove(struct platform_device
*pdev
)
485 struct tps6507x_dev
*tps6507x_dev
= platform_get_drvdata(pdev
);
486 struct tps6507x_pmic
*tps
= tps6507x_dev
->pmic
;
489 for (i
= 0; i
< TPS6507X_NUM_REGULATOR
; i
++)
490 regulator_unregister(tps
->rdev
[i
]);
497 static struct platform_driver tps6507x_pmic_driver
= {
499 .name
= "tps6507x-pmic",
500 .owner
= THIS_MODULE
,
502 .probe
= tps6507x_pmic_probe
,
503 .remove
= __devexit_p(tps6507x_pmic_remove
),
506 static int __init
tps6507x_pmic_init(void)
508 return platform_driver_register(&tps6507x_pmic_driver
);
510 subsys_initcall(tps6507x_pmic_init
);
512 static void __exit
tps6507x_pmic_cleanup(void)
514 platform_driver_unregister(&tps6507x_pmic_driver
);
516 module_exit(tps6507x_pmic_cleanup
);
518 MODULE_AUTHOR("Texas Instruments");
519 MODULE_DESCRIPTION("TPS6507x voltage regulator driver");
520 MODULE_LICENSE("GPL v2");
521 MODULE_ALIAS("platform:tps6507x-pmic");