1 // SPDX-License-Identifier: GPL-2.0-only
5 * Regulator driver for TPS65073 PMIC
7 * Copyright (C) 2009 Texas Instrument Incorporated - https://www.ti.com/
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/err.h>
14 #include <linux/platform_device.h>
15 #include <linux/regulator/driver.h>
16 #include <linux/regulator/machine.h>
17 #include <linux/regulator/tps6507x.h>
19 #include <linux/slab.h>
20 #include <linux/mfd/tps6507x.h>
21 #include <linux/regulator/of_regulator.h>
24 #define TPS6507X_DCDC_1 0
25 #define TPS6507X_DCDC_2 1
26 #define TPS6507X_DCDC_3 2
28 #define TPS6507X_LDO_1 3
29 #define TPS6507X_LDO_2 4
31 #define TPS6507X_MAX_REG_ID TPS6507X_LDO_2
33 /* Number of step-down converters available */
34 #define TPS6507X_NUM_DCDC 3
35 /* Number of LDO voltage regulators available */
36 #define TPS6507X_NUM_LDO 2
37 /* Number of total regulators available */
38 #define TPS6507X_NUM_REGULATOR (TPS6507X_NUM_DCDC + TPS6507X_NUM_LDO)
40 /* Supported voltage values for regulators (in microVolts) */
41 static const unsigned int VDCDCx_VSEL_table
[] = {
42 725000, 750000, 775000, 800000,
43 825000, 850000, 875000, 900000,
44 925000, 950000, 975000, 1000000,
45 1025000, 1050000, 1075000, 1100000,
46 1125000, 1150000, 1175000, 1200000,
47 1225000, 1250000, 1275000, 1300000,
48 1325000, 1350000, 1375000, 1400000,
49 1425000, 1450000, 1475000, 1500000,
50 1550000, 1600000, 1650000, 1700000,
51 1750000, 1800000, 1850000, 1900000,
52 1950000, 2000000, 2050000, 2100000,
53 2150000, 2200000, 2250000, 2300000,
54 2350000, 2400000, 2450000, 2500000,
55 2550000, 2600000, 2650000, 2700000,
56 2750000, 2800000, 2850000, 2900000,
57 3000000, 3100000, 3200000, 3300000,
60 static const unsigned int LDO1_VSEL_table
[] = {
61 1000000, 1100000, 1200000, 1250000,
62 1300000, 1350000, 1400000, 1500000,
63 1600000, 1800000, 2500000, 2750000,
64 2800000, 3000000, 3100000, 3300000,
67 /* The voltage mapping table for LDO2 is the same as VDCDCx */
68 #define LDO2_VSEL_table VDCDCx_VSEL_table
73 const unsigned int *table
;
75 /* Does DCDC high or the low register defines output voltage? */
79 static struct tps_info tps6507x_pmic_regs
[] = {
82 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
83 .table
= VDCDCx_VSEL_table
,
87 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
88 .table
= VDCDCx_VSEL_table
,
92 .table_len
= ARRAY_SIZE(VDCDCx_VSEL_table
),
93 .table
= VDCDCx_VSEL_table
,
97 .table_len
= ARRAY_SIZE(LDO1_VSEL_table
),
98 .table
= LDO1_VSEL_table
,
102 .table_len
= ARRAY_SIZE(LDO2_VSEL_table
),
103 .table
= LDO2_VSEL_table
,
107 struct tps6507x_pmic
{
108 struct regulator_desc desc
[TPS6507X_NUM_REGULATOR
];
109 struct tps6507x_dev
*mfd
;
110 struct tps_info
*info
[TPS6507X_NUM_REGULATOR
];
111 struct mutex io_lock
;
113 static inline int tps6507x_pmic_read(struct tps6507x_pmic
*tps
, u8 reg
)
118 err
= tps
->mfd
->read_dev(tps
->mfd
, reg
, 1, &val
);
126 static inline int tps6507x_pmic_write(struct tps6507x_pmic
*tps
, u8 reg
, u8 val
)
128 return tps
->mfd
->write_dev(tps
->mfd
, reg
, 1, &val
);
131 static int tps6507x_pmic_set_bits(struct tps6507x_pmic
*tps
, u8 reg
, u8 mask
)
135 mutex_lock(&tps
->io_lock
);
137 data
= tps6507x_pmic_read(tps
, reg
);
139 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
145 err
= tps6507x_pmic_write(tps
, reg
, data
);
147 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
150 mutex_unlock(&tps
->io_lock
);
154 static int tps6507x_pmic_clear_bits(struct tps6507x_pmic
*tps
, u8 reg
, u8 mask
)
158 mutex_lock(&tps
->io_lock
);
160 data
= tps6507x_pmic_read(tps
, reg
);
162 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
168 err
= tps6507x_pmic_write(tps
, reg
, data
);
170 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
173 mutex_unlock(&tps
->io_lock
);
177 static int tps6507x_pmic_reg_read(struct tps6507x_pmic
*tps
, u8 reg
)
181 mutex_lock(&tps
->io_lock
);
183 data
= tps6507x_pmic_read(tps
, reg
);
185 dev_err(tps
->mfd
->dev
, "Read from reg 0x%x failed\n", reg
);
187 mutex_unlock(&tps
->io_lock
);
191 static int tps6507x_pmic_reg_write(struct tps6507x_pmic
*tps
, u8 reg
, u8 val
)
195 mutex_lock(&tps
->io_lock
);
197 err
= tps6507x_pmic_write(tps
, reg
, val
);
199 dev_err(tps
->mfd
->dev
, "Write for reg 0x%x failed\n", reg
);
201 mutex_unlock(&tps
->io_lock
);
205 static int tps6507x_pmic_is_enabled(struct regulator_dev
*dev
)
207 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
208 int data
, rid
= rdev_get_id(dev
);
211 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
214 shift
= TPS6507X_MAX_REG_ID
- rid
;
215 data
= tps6507x_pmic_reg_read(tps
, TPS6507X_REG_CON_CTRL1
);
220 return (data
& 1<<shift
) ? 1 : 0;
223 static int tps6507x_pmic_enable(struct regulator_dev
*dev
)
225 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
226 int rid
= rdev_get_id(dev
);
229 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
232 shift
= TPS6507X_MAX_REG_ID
- rid
;
233 return tps6507x_pmic_set_bits(tps
, TPS6507X_REG_CON_CTRL1
, 1 << shift
);
236 static int tps6507x_pmic_disable(struct regulator_dev
*dev
)
238 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
239 int rid
= rdev_get_id(dev
);
242 if (rid
< TPS6507X_DCDC_1
|| rid
> TPS6507X_LDO_2
)
245 shift
= TPS6507X_MAX_REG_ID
- rid
;
246 return tps6507x_pmic_clear_bits(tps
, TPS6507X_REG_CON_CTRL1
,
250 static int tps6507x_pmic_get_voltage_sel(struct regulator_dev
*dev
)
252 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
253 int data
, rid
= rdev_get_id(dev
);
257 case TPS6507X_DCDC_1
:
258 reg
= TPS6507X_REG_DEFDCDC1
;
259 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
261 case TPS6507X_DCDC_2
:
262 if (tps
->info
[rid
]->defdcdc_default
)
263 reg
= TPS6507X_REG_DEFDCDC2_HIGH
;
265 reg
= TPS6507X_REG_DEFDCDC2_LOW
;
266 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
268 case TPS6507X_DCDC_3
:
269 if (tps
->info
[rid
]->defdcdc_default
)
270 reg
= TPS6507X_REG_DEFDCDC3_HIGH
;
272 reg
= TPS6507X_REG_DEFDCDC3_LOW
;
273 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
276 reg
= TPS6507X_REG_LDO_CTRL1
;
277 mask
= TPS6507X_REG_LDO_CTRL1_LDO1_MASK
;
280 reg
= TPS6507X_REG_DEFLDO2
;
281 mask
= TPS6507X_REG_DEFLDO2_LDO2_MASK
;
287 data
= tps6507x_pmic_reg_read(tps
, reg
);
295 static int tps6507x_pmic_set_voltage_sel(struct regulator_dev
*dev
,
298 struct tps6507x_pmic
*tps
= rdev_get_drvdata(dev
);
299 int data
, rid
= rdev_get_id(dev
);
303 case TPS6507X_DCDC_1
:
304 reg
= TPS6507X_REG_DEFDCDC1
;
305 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
307 case TPS6507X_DCDC_2
:
308 if (tps
->info
[rid
]->defdcdc_default
)
309 reg
= TPS6507X_REG_DEFDCDC2_HIGH
;
311 reg
= TPS6507X_REG_DEFDCDC2_LOW
;
312 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
314 case TPS6507X_DCDC_3
:
315 if (tps
->info
[rid
]->defdcdc_default
)
316 reg
= TPS6507X_REG_DEFDCDC3_HIGH
;
318 reg
= TPS6507X_REG_DEFDCDC3_LOW
;
319 mask
= TPS6507X_DEFDCDCX_DCDC_MASK
;
322 reg
= TPS6507X_REG_LDO_CTRL1
;
323 mask
= TPS6507X_REG_LDO_CTRL1_LDO1_MASK
;
326 reg
= TPS6507X_REG_DEFLDO2
;
327 mask
= TPS6507X_REG_DEFLDO2_LDO2_MASK
;
333 data
= tps6507x_pmic_reg_read(tps
, reg
);
340 return tps6507x_pmic_reg_write(tps
, reg
, data
);
343 static const struct regulator_ops tps6507x_pmic_ops
= {
344 .is_enabled
= tps6507x_pmic_is_enabled
,
345 .enable
= tps6507x_pmic_enable
,
346 .disable
= tps6507x_pmic_disable
,
347 .get_voltage_sel
= tps6507x_pmic_get_voltage_sel
,
348 .set_voltage_sel
= tps6507x_pmic_set_voltage_sel
,
349 .list_voltage
= regulator_list_voltage_table
,
350 .map_voltage
= regulator_map_voltage_ascend
,
353 static int tps6507x_pmic_of_parse_cb(struct device_node
*np
,
354 const struct regulator_desc
*desc
,
355 struct regulator_config
*config
)
357 struct tps6507x_pmic
*tps
= config
->driver_data
;
358 struct tps_info
*info
= tps
->info
[desc
->id
];
362 ret
= of_property_read_u32(np
, "ti,defdcdc_default", &prop
);
364 info
->defdcdc_default
= prop
;
369 static int tps6507x_pmic_probe(struct platform_device
*pdev
)
371 struct tps6507x_dev
*tps6507x_dev
= dev_get_drvdata(pdev
->dev
.parent
);
372 struct tps_info
*info
= &tps6507x_pmic_regs
[0];
373 struct regulator_config config
= { };
374 struct regulator_init_data
*init_data
= NULL
;
375 struct regulator_dev
*rdev
;
376 struct tps6507x_pmic
*tps
;
377 struct tps6507x_board
*tps_board
;
381 * tps_board points to pmic related constants
382 * coming from the board-evm file.
385 tps_board
= dev_get_platdata(tps6507x_dev
->dev
);
387 init_data
= tps_board
->tps6507x_pmic_init_data
;
389 tps
= devm_kzalloc(&pdev
->dev
, sizeof(*tps
), GFP_KERNEL
);
393 mutex_init(&tps
->io_lock
);
395 /* common for all regulators */
396 tps
->mfd
= tps6507x_dev
;
398 for (i
= 0; i
< TPS6507X_NUM_REGULATOR
; i
++, info
++) {
399 /* Register the regulators */
401 if (init_data
&& init_data
[i
].driver_data
) {
402 struct tps6507x_reg_platform_data
*data
=
403 init_data
[i
].driver_data
;
404 info
->defdcdc_default
= data
->defdcdc_default
;
407 tps
->desc
[i
].name
= info
->name
;
408 tps
->desc
[i
].of_match
= of_match_ptr(info
->name
);
409 tps
->desc
[i
].regulators_node
= of_match_ptr("regulators");
410 tps
->desc
[i
].of_parse_cb
= tps6507x_pmic_of_parse_cb
;
412 tps
->desc
[i
].n_voltages
= info
->table_len
;
413 tps
->desc
[i
].volt_table
= info
->table
;
414 tps
->desc
[i
].ops
= &tps6507x_pmic_ops
;
415 tps
->desc
[i
].type
= REGULATOR_VOLTAGE
;
416 tps
->desc
[i
].owner
= THIS_MODULE
;
418 config
.dev
= tps6507x_dev
->dev
;
419 config
.init_data
= init_data
;
420 config
.driver_data
= tps
;
422 rdev
= devm_regulator_register(&pdev
->dev
, &tps
->desc
[i
],
425 dev_err(tps6507x_dev
->dev
,
426 "failed to register %s regulator\n",
428 return PTR_ERR(rdev
);
432 tps6507x_dev
->pmic
= tps
;
433 platform_set_drvdata(pdev
, tps6507x_dev
);
438 static struct platform_driver tps6507x_pmic_driver
= {
440 .name
= "tps6507x-pmic",
441 .probe_type
= PROBE_PREFER_ASYNCHRONOUS
,
443 .probe
= tps6507x_pmic_probe
,
446 static int __init
tps6507x_pmic_init(void)
448 return platform_driver_register(&tps6507x_pmic_driver
);
450 subsys_initcall(tps6507x_pmic_init
);
452 static void __exit
tps6507x_pmic_cleanup(void)
454 platform_driver_unregister(&tps6507x_pmic_driver
);
456 module_exit(tps6507x_pmic_cleanup
);
458 MODULE_AUTHOR("Texas Instruments");
459 MODULE_DESCRIPTION("TPS6507x voltage regulator driver");
460 MODULE_LICENSE("GPL v2");
461 MODULE_ALIAS("platform:tps6507x-pmic");