]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/regulator/tps6507x-regulator.c
regulator: tps6507x: Add missing of_node_put
[mirror_ubuntu-bionic-kernel.git] / drivers / regulator / tps6507x-regulator.c
CommitLineData
3fa5b8e0
AA
1/*
2 * tps6507x-regulator.c
3 *
4 * Regulator driver for TPS65073 PMIC
5 *
6 * Copyright (C) 2009 Texas Instrument Incorporated - http://www.ti.com/
7 *
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.
11 *
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.
16 */
17
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>
7d14831e 25#include <linux/regulator/tps6507x.h>
6116ad94 26#include <linux/of.h>
5a0e3ad6 27#include <linux/slab.h>
d183fcc9 28#include <linux/mfd/tps6507x.h>
6116ad94 29#include <linux/regulator/of_regulator.h>
3fa5b8e0
AA
30
31/* DCDC's */
32#define TPS6507X_DCDC_1 0
33#define TPS6507X_DCDC_2 1
34#define TPS6507X_DCDC_3 2
35/* LDOs */
36#define TPS6507X_LDO_1 3
37#define TPS6507X_LDO_2 4
38
39#define TPS6507X_MAX_REG_ID TPS6507X_LDO_2
40
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)
47
055917ac
AL
48/* Supported voltage values for regulators (in microVolts) */
49static 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,
3fa5b8e0
AA
66};
67
055917ac
AL
68static 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,
3fa5b8e0
AA
73};
74
93b07e7b
AL
75/* The voltage mapping table for LDO2 is the same as VDCDCx */
76#define LDO2_VSEL_table VDCDCx_VSEL_table
3fa5b8e0 77
3fa5b8e0
AA
78struct tps_info {
79 const char *name;
3fa5b8e0 80 u8 table_len;
055917ac 81 const unsigned int *table;
7d14831e
AA
82
83 /* Does DCDC high or the low register defines output voltage? */
84 bool defdcdc_default;
3fa5b8e0
AA
85};
86
7d14831e 87static struct tps_info tps6507x_pmic_regs[] = {
31dd6a26
TF
88 {
89 .name = "VDCDC1",
31dd6a26
TF
90 .table_len = ARRAY_SIZE(VDCDCx_VSEL_table),
91 .table = VDCDCx_VSEL_table,
92 },
93 {
94 .name = "VDCDC2",
31dd6a26
TF
95 .table_len = ARRAY_SIZE(VDCDCx_VSEL_table),
96 .table = VDCDCx_VSEL_table,
97 },
98 {
99 .name = "VDCDC3",
31dd6a26
TF
100 .table_len = ARRAY_SIZE(VDCDCx_VSEL_table),
101 .table = VDCDCx_VSEL_table,
102 },
103 {
104 .name = "LDO1",
31dd6a26
TF
105 .table_len = ARRAY_SIZE(LDO1_VSEL_table),
106 .table = LDO1_VSEL_table,
107 },
108 {
109 .name = "LDO2",
31dd6a26
TF
110 .table_len = ARRAY_SIZE(LDO2_VSEL_table),
111 .table = LDO2_VSEL_table,
112 },
113};
114
4ce5ba5b 115struct tps6507x_pmic {
3fa5b8e0 116 struct regulator_desc desc[TPS6507X_NUM_REGULATOR];
31dd6a26 117 struct tps6507x_dev *mfd;
3fa5b8e0 118 struct regulator_dev *rdev[TPS6507X_NUM_REGULATOR];
7d14831e 119 struct tps_info *info[TPS6507X_NUM_REGULATOR];
3fa5b8e0
AA
120 struct mutex io_lock;
121};
4ce5ba5b 122static inline int tps6507x_pmic_read(struct tps6507x_pmic *tps, u8 reg)
3fa5b8e0 123{
31dd6a26
TF
124 u8 val;
125 int err;
126
127 err = tps->mfd->read_dev(tps->mfd, reg, 1, &val);
128
129 if (err)
130 return err;
131
132 return val;
3fa5b8e0
AA
133}
134
4ce5ba5b 135static inline int tps6507x_pmic_write(struct tps6507x_pmic *tps, u8 reg, u8 val)
3fa5b8e0 136{
31dd6a26 137 return tps->mfd->write_dev(tps->mfd, reg, 1, &val);
3fa5b8e0
AA
138}
139
4ce5ba5b 140static int tps6507x_pmic_set_bits(struct tps6507x_pmic *tps, u8 reg, u8 mask)
3fa5b8e0
AA
141{
142 int err, data;
143
144 mutex_lock(&tps->io_lock);
145
4ce5ba5b 146 data = tps6507x_pmic_read(tps, reg);
3fa5b8e0 147 if (data < 0) {
31dd6a26 148 dev_err(tps->mfd->dev, "Read from reg 0x%x failed\n", reg);
3fa5b8e0
AA
149 err = data;
150 goto out;
151 }
152
153 data |= mask;
4ce5ba5b 154 err = tps6507x_pmic_write(tps, reg, data);
3fa5b8e0 155 if (err)
31dd6a26 156 dev_err(tps->mfd->dev, "Write for reg 0x%x failed\n", reg);
3fa5b8e0
AA
157
158out:
159 mutex_unlock(&tps->io_lock);
160 return err;
161}
162
4ce5ba5b 163static int tps6507x_pmic_clear_bits(struct tps6507x_pmic *tps, u8 reg, u8 mask)
3fa5b8e0
AA
164{
165 int err, data;
166
167 mutex_lock(&tps->io_lock);
168
4ce5ba5b 169 data = tps6507x_pmic_read(tps, reg);
3fa5b8e0 170 if (data < 0) {
31dd6a26 171 dev_err(tps->mfd->dev, "Read from reg 0x%x failed\n", reg);
3fa5b8e0
AA
172 err = data;
173 goto out;
174 }
175
176 data &= ~mask;
4ce5ba5b 177 err = tps6507x_pmic_write(tps, reg, data);
3fa5b8e0 178 if (err)
31dd6a26 179 dev_err(tps->mfd->dev, "Write for reg 0x%x failed\n", reg);
3fa5b8e0
AA
180
181out:
182 mutex_unlock(&tps->io_lock);
183 return err;
184}
185
4ce5ba5b 186static int tps6507x_pmic_reg_read(struct tps6507x_pmic *tps, u8 reg)
3fa5b8e0
AA
187{
188 int data;
189
190 mutex_lock(&tps->io_lock);
191
4ce5ba5b 192 data = tps6507x_pmic_read(tps, reg);
3fa5b8e0 193 if (data < 0)
31dd6a26 194 dev_err(tps->mfd->dev, "Read from reg 0x%x failed\n", reg);
3fa5b8e0
AA
195
196 mutex_unlock(&tps->io_lock);
197 return data;
198}
199
4ce5ba5b 200static int tps6507x_pmic_reg_write(struct tps6507x_pmic *tps, u8 reg, u8 val)
3fa5b8e0
AA
201{
202 int err;
203
204 mutex_lock(&tps->io_lock);
205
4ce5ba5b 206 err = tps6507x_pmic_write(tps, reg, val);
3fa5b8e0 207 if (err < 0)
31dd6a26 208 dev_err(tps->mfd->dev, "Write for reg 0x%x failed\n", reg);
3fa5b8e0
AA
209
210 mutex_unlock(&tps->io_lock);
211 return err;
212}
213
f2933d33 214static int tps6507x_pmic_is_enabled(struct regulator_dev *dev)
3fa5b8e0 215{
4ce5ba5b 216 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
f2933d33 217 int data, rid = rdev_get_id(dev);
3fa5b8e0
AA
218 u8 shift;
219
f2933d33 220 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2)
3fa5b8e0
AA
221 return -EINVAL;
222
f2933d33 223 shift = TPS6507X_MAX_REG_ID - rid;
4ce5ba5b 224 data = tps6507x_pmic_reg_read(tps, TPS6507X_REG_CON_CTRL1);
3fa5b8e0
AA
225
226 if (data < 0)
227 return data;
228 else
229 return (data & 1<<shift) ? 1 : 0;
230}
231
f2933d33 232static int tps6507x_pmic_enable(struct regulator_dev *dev)
3fa5b8e0 233{
4ce5ba5b 234 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
f2933d33 235 int rid = rdev_get_id(dev);
3fa5b8e0
AA
236 u8 shift;
237
f2933d33 238 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2)
3fa5b8e0
AA
239 return -EINVAL;
240
f2933d33 241 shift = TPS6507X_MAX_REG_ID - rid;
4ce5ba5b 242 return tps6507x_pmic_set_bits(tps, TPS6507X_REG_CON_CTRL1, 1 << shift);
3fa5b8e0
AA
243}
244
f2933d33 245static int tps6507x_pmic_disable(struct regulator_dev *dev)
3fa5b8e0 246{
4ce5ba5b 247 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
f2933d33 248 int rid = rdev_get_id(dev);
3fa5b8e0
AA
249 u8 shift;
250
f2933d33 251 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2)
3fa5b8e0
AA
252 return -EINVAL;
253
f2933d33 254 shift = TPS6507X_MAX_REG_ID - rid;
4ce5ba5b
TF
255 return tps6507x_pmic_clear_bits(tps, TPS6507X_REG_CON_CTRL1,
256 1 << shift);
3fa5b8e0
AA
257}
258
7c842a1d 259static int tps6507x_pmic_get_voltage_sel(struct regulator_dev *dev)
3fa5b8e0 260{
4ce5ba5b 261 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
f2933d33
AL
262 int data, rid = rdev_get_id(dev);
263 u8 reg, mask;
3fa5b8e0 264
f2933d33 265 switch (rid) {
3fa5b8e0
AA
266 case TPS6507X_DCDC_1:
267 reg = TPS6507X_REG_DEFDCDC1;
f2933d33 268 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
3fa5b8e0
AA
269 break;
270 case TPS6507X_DCDC_2:
f2933d33 271 if (tps->info[rid]->defdcdc_default)
7d14831e
AA
272 reg = TPS6507X_REG_DEFDCDC2_HIGH;
273 else
274 reg = TPS6507X_REG_DEFDCDC2_LOW;
f2933d33 275 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
3fa5b8e0
AA
276 break;
277 case TPS6507X_DCDC_3:
f2933d33 278 if (tps->info[rid]->defdcdc_default)
7d14831e
AA
279 reg = TPS6507X_REG_DEFDCDC3_HIGH;
280 else
281 reg = TPS6507X_REG_DEFDCDC3_LOW;
f2933d33
AL
282 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
283 break;
284 case TPS6507X_LDO_1:
285 reg = TPS6507X_REG_LDO_CTRL1;
286 mask = TPS6507X_REG_LDO_CTRL1_LDO1_MASK;
287 break;
288 case TPS6507X_LDO_2:
289 reg = TPS6507X_REG_DEFLDO2;
290 mask = TPS6507X_REG_DEFLDO2_LDO2_MASK;
3fa5b8e0
AA
291 break;
292 default:
293 return -EINVAL;
294 }
295
4ce5ba5b 296 data = tps6507x_pmic_reg_read(tps, reg);
3fa5b8e0
AA
297 if (data < 0)
298 return data;
299
f2933d33 300 data &= mask;
7c842a1d 301 return data;
3fa5b8e0
AA
302}
303
ca61a7bf
AL
304static int tps6507x_pmic_set_voltage_sel(struct regulator_dev *dev,
305 unsigned selector)
3fa5b8e0 306{
4ce5ba5b 307 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
ca61a7bf 308 int data, rid = rdev_get_id(dev);
f2933d33 309 u8 reg, mask;
3fa5b8e0 310
f2933d33 311 switch (rid) {
3fa5b8e0
AA
312 case TPS6507X_DCDC_1:
313 reg = TPS6507X_REG_DEFDCDC1;
f2933d33 314 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
3fa5b8e0
AA
315 break;
316 case TPS6507X_DCDC_2:
f2933d33 317 if (tps->info[rid]->defdcdc_default)
7d14831e
AA
318 reg = TPS6507X_REG_DEFDCDC2_HIGH;
319 else
320 reg = TPS6507X_REG_DEFDCDC2_LOW;
f2933d33 321 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
3fa5b8e0
AA
322 break;
323 case TPS6507X_DCDC_3:
f2933d33 324 if (tps->info[rid]->defdcdc_default)
7d14831e
AA
325 reg = TPS6507X_REG_DEFDCDC3_HIGH;
326 else
327 reg = TPS6507X_REG_DEFDCDC3_LOW;
f2933d33
AL
328 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
329 break;
330 case TPS6507X_LDO_1:
331 reg = TPS6507X_REG_LDO_CTRL1;
332 mask = TPS6507X_REG_LDO_CTRL1_LDO1_MASK;
333 break;
334 case TPS6507X_LDO_2:
335 reg = TPS6507X_REG_DEFLDO2;
336 mask = TPS6507X_REG_DEFLDO2_LDO2_MASK;
3fa5b8e0
AA
337 break;
338 default:
339 return -EINVAL;
340 }
341
4ce5ba5b 342 data = tps6507x_pmic_reg_read(tps, reg);
3fa5b8e0
AA
343 if (data < 0)
344 return data;
345
346 data &= ~mask;
ca61a7bf 347 data |= selector;
3fa5b8e0 348
4ce5ba5b 349 return tps6507x_pmic_reg_write(tps, reg, data);
3fa5b8e0
AA
350}
351
f2933d33
AL
352static struct regulator_ops tps6507x_pmic_ops = {
353 .is_enabled = tps6507x_pmic_is_enabled,
354 .enable = tps6507x_pmic_enable,
355 .disable = tps6507x_pmic_disable,
7c842a1d 356 .get_voltage_sel = tps6507x_pmic_get_voltage_sel,
ca61a7bf 357 .set_voltage_sel = tps6507x_pmic_set_voltage_sel,
055917ac 358 .list_voltage = regulator_list_voltage_table,
a1bb63a8 359 .map_voltage = regulator_map_voltage_ascend,
3fa5b8e0
AA
360};
361
6116ad94
VBM
362static struct of_regulator_match tps6507x_matches[] = {
363 { .name = "VDCDC1"},
364 { .name = "VDCDC2"},
365 { .name = "VDCDC3"},
366 { .name = "LDO1"},
367 { .name = "LDO2"},
368};
369
370static struct tps6507x_board *tps6507x_parse_dt_reg_data(
371 struct platform_device *pdev,
372 struct of_regulator_match **tps6507x_reg_matches)
373{
374 struct tps6507x_board *tps_board;
375 struct device_node *np = pdev->dev.parent->of_node;
376 struct device_node *regulators;
377 struct of_regulator_match *matches;
378 static struct regulator_init_data *reg_data;
379 int idx = 0, count, ret;
380
381 tps_board = devm_kzalloc(&pdev->dev, sizeof(*tps_board),
382 GFP_KERNEL);
383 if (!tps_board) {
384 dev_err(&pdev->dev, "Failure to alloc pdata for regulators.\n");
385 return NULL;
386 }
387
e3d4edfd 388 regulators = of_get_child_by_name(np, "regulators");
6116ad94
VBM
389 if (!regulators) {
390 dev_err(&pdev->dev, "regulator node not found\n");
391 return NULL;
392 }
393
394 count = ARRAY_SIZE(tps6507x_matches);
395 matches = tps6507x_matches;
396
0ce7d00d 397 ret = of_regulator_match(&pdev->dev, regulators, matches, count);
aaacb0e9 398 of_node_put(regulators);
6116ad94
VBM
399 if (ret < 0) {
400 dev_err(&pdev->dev, "Error parsing regulator init data: %d\n",
401 ret);
402 return NULL;
403 }
404
405 *tps6507x_reg_matches = matches;
406
407 reg_data = devm_kzalloc(&pdev->dev, (sizeof(struct regulator_init_data)
408 * TPS6507X_NUM_REGULATOR), GFP_KERNEL);
409 if (!reg_data) {
410 dev_err(&pdev->dev, "Failure to alloc init data for regulators.\n");
411 return NULL;
412 }
413
414 tps_board->tps6507x_pmic_init_data = reg_data;
415
416 for (idx = 0; idx < count; idx++) {
417 if (!matches[idx].init_data || !matches[idx].of_node)
418 continue;
419
420 memcpy(&reg_data[idx], matches[idx].init_data,
421 sizeof(struct regulator_init_data));
422
423 }
424
425 return tps_board;
426}
4246e55f 427
a5023574 428static int tps6507x_pmic_probe(struct platform_device *pdev)
3fa5b8e0 429{
31dd6a26 430 struct tps6507x_dev *tps6507x_dev = dev_get_drvdata(pdev->dev.parent);
7d14831e 431 struct tps_info *info = &tps6507x_pmic_regs[0];
c172708d 432 struct regulator_config config = { };
3fa5b8e0
AA
433 struct regulator_init_data *init_data;
434 struct regulator_dev *rdev;
4ce5ba5b 435 struct tps6507x_pmic *tps;
0bc20bba 436 struct tps6507x_board *tps_board;
6116ad94 437 struct of_regulator_match *tps6507x_reg_matches = NULL;
3fa5b8e0 438 int i;
56c23492 439 int error;
6116ad94 440 unsigned int prop;
3fa5b8e0 441
0bc20bba
TF
442 /**
443 * tps_board points to pmic related constants
444 * coming from the board-evm file.
445 */
446
31dd6a26 447 tps_board = dev_get_platdata(tps6507x_dev->dev);
4246e55f
MB
448 if (IS_ENABLED(CONFIG_OF) && !tps_board &&
449 tps6507x_dev->dev->of_node)
6116ad94 450 tps_board = tps6507x_parse_dt_reg_data(pdev,
4246e55f 451 &tps6507x_reg_matches);
0bc20bba
TF
452 if (!tps_board)
453 return -EINVAL;
454
3fa5b8e0
AA
455 /**
456 * init_data points to array of regulator_init structures
457 * coming from the board-evm file.
458 */
0bc20bba 459 init_data = tps_board->tps6507x_pmic_init_data;
3fa5b8e0 460 if (!init_data)
0bc20bba 461 return -EINVAL;
3fa5b8e0 462
9eb0c421 463 tps = devm_kzalloc(&pdev->dev, sizeof(*tps), GFP_KERNEL);
3fa5b8e0
AA
464 if (!tps)
465 return -ENOMEM;
466
467 mutex_init(&tps->io_lock);
468
469 /* common for all regulators */
31dd6a26 470 tps->mfd = tps6507x_dev;
3fa5b8e0
AA
471
472 for (i = 0; i < TPS6507X_NUM_REGULATOR; i++, info++, init_data++) {
473 /* Register the regulators */
474 tps->info[i] = info;
7d14831e
AA
475 if (init_data->driver_data) {
476 struct tps6507x_reg_platform_data *data =
4246e55f 477 init_data->driver_data;
7d14831e
AA
478 tps->info[i]->defdcdc_default = data->defdcdc_default;
479 }
480
3fa5b8e0 481 tps->desc[i].name = info->name;
77fa44d0 482 tps->desc[i].id = i;
0fcdb109 483 tps->desc[i].n_voltages = info->table_len;
055917ac 484 tps->desc[i].volt_table = info->table;
f2933d33 485 tps->desc[i].ops = &tps6507x_pmic_ops;
3fa5b8e0
AA
486 tps->desc[i].type = REGULATOR_VOLTAGE;
487 tps->desc[i].owner = THIS_MODULE;
488
c172708d
MB
489 config.dev = tps6507x_dev->dev;
490 config.init_data = init_data;
491 config.driver_data = tps;
492
6116ad94
VBM
493 if (tps6507x_reg_matches) {
494 error = of_property_read_u32(
495 tps6507x_reg_matches[i].of_node,
496 "ti,defdcdc_default", &prop);
497
498 if (!error)
499 tps->info[i]->defdcdc_default = prop;
500
501 config.of_node = tps6507x_reg_matches[i].of_node;
502 }
503
71b710e7
SK
504 rdev = devm_regulator_register(&pdev->dev, &tps->desc[i],
505 &config);
3fa5b8e0 506 if (IS_ERR(rdev)) {
31dd6a26
TF
507 dev_err(tps6507x_dev->dev,
508 "failed to register %s regulator\n",
509 pdev->name);
71b710e7 510 return PTR_ERR(rdev);
3fa5b8e0
AA
511 }
512
513 /* Save regulator for cleanup */
514 tps->rdev[i] = rdev;
515 }
516
31dd6a26 517 tps6507x_dev->pmic = tps;
d7399fa8 518 platform_set_drvdata(pdev, tps6507x_dev);
3fa5b8e0
AA
519
520 return 0;
3fa5b8e0
AA
521}
522
31dd6a26 523static struct platform_driver tps6507x_pmic_driver = {
3fa5b8e0 524 .driver = {
31dd6a26 525 .name = "tps6507x-pmic",
3fa5b8e0
AA
526 .owner = THIS_MODULE,
527 },
4ce5ba5b 528 .probe = tps6507x_pmic_probe,
3fa5b8e0
AA
529};
530
4ce5ba5b 531static int __init tps6507x_pmic_init(void)
3fa5b8e0 532{
31dd6a26 533 return platform_driver_register(&tps6507x_pmic_driver);
3fa5b8e0 534}
4ce5ba5b 535subsys_initcall(tps6507x_pmic_init);
3fa5b8e0 536
4ce5ba5b 537static void __exit tps6507x_pmic_cleanup(void)
3fa5b8e0 538{
31dd6a26 539 platform_driver_unregister(&tps6507x_pmic_driver);
3fa5b8e0 540}
4ce5ba5b 541module_exit(tps6507x_pmic_cleanup);
3fa5b8e0
AA
542
543MODULE_AUTHOR("Texas Instruments");
544MODULE_DESCRIPTION("TPS6507x voltage regulator driver");
9e108d33 545MODULE_LICENSE("GPL v2");
31dd6a26 546MODULE_ALIAS("platform:tps6507x-pmic");