4 * Copyright (c) 2011 Samsung Electronics Co., Ltd
5 * http://www.samsung.com
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
14 #include <linux/bug.h>
15 #include <linux/err.h>
16 #include <linux/gpio.h>
17 #include <linux/of_gpio.h>
18 #include <linux/slab.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/regulator/driver.h>
22 #include <linux/regulator/machine.h>
23 #include <linux/mfd/samsung/core.h>
24 #include <linux/mfd/samsung/s5m8767.h>
25 #include <linux/regulator/of_regulator.h>
27 #define S5M8767_OPMODE_NORMAL_MODE 0x1
31 struct sec_pmic_dev *iodev;
33 struct regulator_dev **rdev;
34 struct sec_opmode_data *opmode;
52 struct sec_voltage_desc {
58 static const struct sec_voltage_desc buck_voltage_val1 = {
64 static const struct sec_voltage_desc buck_voltage_val2 = {
70 static const struct sec_voltage_desc buck_voltage_val3 = {
76 static const struct sec_voltage_desc ldo_voltage_val1 = {
82 static const struct sec_voltage_desc ldo_voltage_val2 = {
88 static const struct sec_voltage_desc *reg_voltage_map[] = {
89 [S5M8767_LDO1] = &ldo_voltage_val2,
90 [S5M8767_LDO2] = &ldo_voltage_val2,
91 [S5M8767_LDO3] = &ldo_voltage_val1,
92 [S5M8767_LDO4] = &ldo_voltage_val1,
93 [S5M8767_LDO5] = &ldo_voltage_val1,
94 [S5M8767_LDO6] = &ldo_voltage_val2,
95 [S5M8767_LDO7] = &ldo_voltage_val2,
96 [S5M8767_LDO8] = &ldo_voltage_val2,
97 [S5M8767_LDO9] = &ldo_voltage_val1,
98 [S5M8767_LDO10] = &ldo_voltage_val1,
99 [S5M8767_LDO11] = &ldo_voltage_val1,
100 [S5M8767_LDO12] = &ldo_voltage_val1,
101 [S5M8767_LDO13] = &ldo_voltage_val1,
102 [S5M8767_LDO14] = &ldo_voltage_val1,
103 [S5M8767_LDO15] = &ldo_voltage_val2,
104 [S5M8767_LDO16] = &ldo_voltage_val1,
105 [S5M8767_LDO17] = &ldo_voltage_val1,
106 [S5M8767_LDO18] = &ldo_voltage_val1,
107 [S5M8767_LDO19] = &ldo_voltage_val1,
108 [S5M8767_LDO20] = &ldo_voltage_val1,
109 [S5M8767_LDO21] = &ldo_voltage_val1,
110 [S5M8767_LDO22] = &ldo_voltage_val1,
111 [S5M8767_LDO23] = &ldo_voltage_val1,
112 [S5M8767_LDO24] = &ldo_voltage_val1,
113 [S5M8767_LDO25] = &ldo_voltage_val1,
114 [S5M8767_LDO26] = &ldo_voltage_val1,
115 [S5M8767_LDO27] = &ldo_voltage_val1,
116 [S5M8767_LDO28] = &ldo_voltage_val1,
117 [S5M8767_BUCK1] = &buck_voltage_val1,
118 [S5M8767_BUCK2] = &buck_voltage_val2,
119 [S5M8767_BUCK3] = &buck_voltage_val2,
120 [S5M8767_BUCK4] = &buck_voltage_val2,
121 [S5M8767_BUCK5] = &buck_voltage_val1,
122 [S5M8767_BUCK6] = &buck_voltage_val1,
123 [S5M8767_BUCK7] = NULL,
124 [S5M8767_BUCK8] = NULL,
125 [S5M8767_BUCK9] = &buck_voltage_val3,
128 static unsigned int s5m8767_opmode_reg[][4] = {
129 /* {OFF, ON, LOWPOWER, SUSPEND} */
131 {0x0, 0x3, 0x2, 0x1}, /* LDO1 */
132 {0x0, 0x3, 0x2, 0x1},
133 {0x0, 0x3, 0x2, 0x1},
134 {0x0, 0x0, 0x0, 0x0},
135 {0x0, 0x3, 0x2, 0x1}, /* LDO5 */
136 {0x0, 0x3, 0x2, 0x1},
137 {0x0, 0x3, 0x2, 0x1},
138 {0x0, 0x3, 0x2, 0x1},
139 {0x0, 0x3, 0x2, 0x1},
140 {0x0, 0x3, 0x2, 0x1}, /* LDO10 */
141 {0x0, 0x3, 0x2, 0x1},
142 {0x0, 0x3, 0x2, 0x1},
143 {0x0, 0x3, 0x2, 0x1},
144 {0x0, 0x3, 0x2, 0x1},
145 {0x0, 0x3, 0x2, 0x1}, /* LDO15 */
146 {0x0, 0x3, 0x2, 0x1},
147 {0x0, 0x3, 0x2, 0x1},
148 {0x0, 0x0, 0x0, 0x0},
149 {0x0, 0x3, 0x2, 0x1},
150 {0x0, 0x3, 0x2, 0x1}, /* LDO20 */
151 {0x0, 0x3, 0x2, 0x1},
152 {0x0, 0x3, 0x2, 0x1},
153 {0x0, 0x0, 0x0, 0x0},
154 {0x0, 0x3, 0x2, 0x1},
155 {0x0, 0x3, 0x2, 0x1}, /* LDO25 */
156 {0x0, 0x3, 0x2, 0x1},
157 {0x0, 0x3, 0x2, 0x1},
158 {0x0, 0x3, 0x2, 0x1}, /* LDO28 */
160 /* BUCK1 ... BUCK9 */
161 {0x0, 0x3, 0x1, 0x1}, /* BUCK1 */
162 {0x0, 0x3, 0x1, 0x1},
163 {0x0, 0x3, 0x1, 0x1},
164 {0x0, 0x3, 0x1, 0x1},
165 {0x0, 0x3, 0x2, 0x1}, /* BUCK5 */
166 {0x0, 0x3, 0x1, 0x1},
167 {0x0, 0x3, 0x1, 0x1},
168 {0x0, 0x3, 0x1, 0x1},
169 {0x0, 0x3, 0x1, 0x1}, /* BUCK9 */
172 static int s5m8767_get_register(struct regulator_dev *rdev, int *reg,
175 int i, reg_id = rdev_get_id(rdev);
177 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
180 case S5M8767_LDO1 ... S5M8767_LDO2:
181 *reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1);
183 case S5M8767_LDO3 ... S5M8767_LDO28:
184 *reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3);
187 *reg = S5M8767_REG_BUCK1CTRL1;
189 case S5M8767_BUCK2 ... S5M8767_BUCK4:
190 *reg = S5M8767_REG_BUCK2CTRL + (reg_id - S5M8767_BUCK2) * 9;
193 *reg = S5M8767_REG_BUCK5CTRL1;
195 case S5M8767_BUCK6 ... S5M8767_BUCK9:
196 *reg = S5M8767_REG_BUCK6CTRL1 + (reg_id - S5M8767_BUCK6) * 2;
202 for (i = 0; i < s5m8767->num_regulators; i++) {
203 if (s5m8767->opmode[i].id == reg_id) {
204 mode = s5m8767->opmode[i].mode;
209 if (i < s5m8767->num_regulators)
211 s5m8767_opmode_reg[reg_id][mode] << S5M8767_ENCTRL_SHIFT;
216 static int s5m8767_reg_is_enabled(struct regulator_dev *rdev)
218 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
220 int mask = 0xc0, enable_ctrl;
223 ret = s5m8767_get_register(rdev, ®, &enable_ctrl);
229 ret = sec_reg_read(s5m8767->iodev, reg, &val);
233 return (val & mask) == enable_ctrl;
236 static int s5m8767_reg_enable(struct regulator_dev *rdev)
238 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
240 int mask = 0xc0, enable_ctrl;
242 ret = s5m8767_get_register(rdev, ®, &enable_ctrl);
246 return sec_reg_update(s5m8767->iodev, reg, enable_ctrl, mask);
249 static int s5m8767_reg_disable(struct regulator_dev *rdev)
251 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
253 int mask = 0xc0, enable_ctrl;
255 ret = s5m8767_get_register(rdev, ®, &enable_ctrl);
259 return sec_reg_update(s5m8767->iodev, reg, ~mask, mask);
262 static int s5m8767_get_vsel_reg(int reg_id, struct s5m8767_info *s5m8767)
267 case S5M8767_LDO1 ... S5M8767_LDO2:
268 reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1);
270 case S5M8767_LDO3 ... S5M8767_LDO28:
271 reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3);
274 reg = S5M8767_REG_BUCK1CTRL2;
277 reg = S5M8767_REG_BUCK2DVS1;
278 if (s5m8767->buck2_gpiodvs)
279 reg += s5m8767->buck_gpioindex;
282 reg = S5M8767_REG_BUCK3DVS1;
283 if (s5m8767->buck3_gpiodvs)
284 reg += s5m8767->buck_gpioindex;
287 reg = S5M8767_REG_BUCK4DVS1;
288 if (s5m8767->buck4_gpiodvs)
289 reg += s5m8767->buck_gpioindex;
292 reg = S5M8767_REG_BUCK5CTRL2;
294 case S5M8767_BUCK6 ... S5M8767_BUCK9:
295 reg = S5M8767_REG_BUCK6CTRL2 + (reg_id - S5M8767_BUCK6) * 2;
304 static int s5m8767_convert_voltage_to_sel(const struct sec_voltage_desc *desc,
312 if (min_vol > desc->max)
315 if (min_vol < desc->min)
318 selector = DIV_ROUND_UP(min_vol - desc->min, desc->step);
320 if (desc->min + desc->step * selector > desc->max)
326 static inline int s5m8767_set_high(struct s5m8767_info *s5m8767)
328 int temp_index = s5m8767->buck_gpioindex;
330 gpio_set_value(s5m8767->buck_gpios[0], (temp_index >> 2) & 0x1);
331 gpio_set_value(s5m8767->buck_gpios[1], (temp_index >> 1) & 0x1);
332 gpio_set_value(s5m8767->buck_gpios[2], temp_index & 0x1);
337 static inline int s5m8767_set_low(struct s5m8767_info *s5m8767)
339 int temp_index = s5m8767->buck_gpioindex;
341 gpio_set_value(s5m8767->buck_gpios[2], temp_index & 0x1);
342 gpio_set_value(s5m8767->buck_gpios[1], (temp_index >> 1) & 0x1);
343 gpio_set_value(s5m8767->buck_gpios[0], (temp_index >> 2) & 0x1);
348 static int s5m8767_set_voltage_sel(struct regulator_dev *rdev,
351 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
352 int reg_id = rdev_get_id(rdev);
353 int old_index, index = 0;
354 u8 *buck234_vol = NULL;
357 case S5M8767_LDO1 ... S5M8767_LDO28:
359 case S5M8767_BUCK1 ... S5M8767_BUCK6:
360 if (reg_id == S5M8767_BUCK2 && s5m8767->buck2_gpiodvs)
361 buck234_vol = &s5m8767->buck2_vol[0];
362 else if (reg_id == S5M8767_BUCK3 && s5m8767->buck3_gpiodvs)
363 buck234_vol = &s5m8767->buck3_vol[0];
364 else if (reg_id == S5M8767_BUCK4 && s5m8767->buck4_gpiodvs)
365 buck234_vol = &s5m8767->buck4_vol[0];
367 case S5M8767_BUCK7 ... S5M8767_BUCK8:
375 /* buck234_vol != NULL means to control buck234 voltage via DVS GPIO */
377 while (*buck234_vol != selector) {
381 old_index = s5m8767->buck_gpioindex;
382 s5m8767->buck_gpioindex = index;
384 if (index > old_index)
385 return s5m8767_set_high(s5m8767);
387 return s5m8767_set_low(s5m8767);
389 return regulator_set_voltage_sel_regmap(rdev, selector);
393 static int s5m8767_set_voltage_time_sel(struct regulator_dev *rdev,
394 unsigned int old_sel,
395 unsigned int new_sel)
397 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
398 const struct sec_voltage_desc *desc;
399 int reg_id = rdev_get_id(rdev);
401 desc = reg_voltage_map[reg_id];
403 if ((old_sel < new_sel) && s5m8767->ramp_delay)
404 return DIV_ROUND_UP(desc->step * (new_sel - old_sel),
405 s5m8767->ramp_delay * 1000);
409 static struct regulator_ops s5m8767_ops = {
410 .list_voltage = regulator_list_voltage_linear,
411 .is_enabled = s5m8767_reg_is_enabled,
412 .enable = s5m8767_reg_enable,
413 .disable = s5m8767_reg_disable,
414 .get_voltage_sel = regulator_get_voltage_sel_regmap,
415 .set_voltage_sel = s5m8767_set_voltage_sel,
416 .set_voltage_time_sel = s5m8767_set_voltage_time_sel,
419 static struct regulator_ops s5m8767_buck78_ops = {
420 .is_enabled = s5m8767_reg_is_enabled,
421 .enable = s5m8767_reg_enable,
422 .disable = s5m8767_reg_disable,
425 #define s5m8767_regulator_desc(_name) { \
427 .id = S5M8767_##_name, \
428 .ops = &s5m8767_ops, \
429 .type = REGULATOR_VOLTAGE, \
430 .owner = THIS_MODULE, \
433 #define s5m8767_regulator_buck78_desc(_name) { \
435 .id = S5M8767_##_name, \
436 .ops = &s5m8767_buck78_ops, \
437 .type = REGULATOR_VOLTAGE, \
438 .owner = THIS_MODULE, \
441 static struct regulator_desc regulators[] = {
442 s5m8767_regulator_desc(LDO1),
443 s5m8767_regulator_desc(LDO2),
444 s5m8767_regulator_desc(LDO3),
445 s5m8767_regulator_desc(LDO4),
446 s5m8767_regulator_desc(LDO5),
447 s5m8767_regulator_desc(LDO6),
448 s5m8767_regulator_desc(LDO7),
449 s5m8767_regulator_desc(LDO8),
450 s5m8767_regulator_desc(LDO9),
451 s5m8767_regulator_desc(LDO10),
452 s5m8767_regulator_desc(LDO11),
453 s5m8767_regulator_desc(LDO12),
454 s5m8767_regulator_desc(LDO13),
455 s5m8767_regulator_desc(LDO14),
456 s5m8767_regulator_desc(LDO15),
457 s5m8767_regulator_desc(LDO16),
458 s5m8767_regulator_desc(LDO17),
459 s5m8767_regulator_desc(LDO18),
460 s5m8767_regulator_desc(LDO19),
461 s5m8767_regulator_desc(LDO20),
462 s5m8767_regulator_desc(LDO21),
463 s5m8767_regulator_desc(LDO22),
464 s5m8767_regulator_desc(LDO23),
465 s5m8767_regulator_desc(LDO24),
466 s5m8767_regulator_desc(LDO25),
467 s5m8767_regulator_desc(LDO26),
468 s5m8767_regulator_desc(LDO27),
469 s5m8767_regulator_desc(LDO28),
470 s5m8767_regulator_desc(BUCK1),
471 s5m8767_regulator_desc(BUCK2),
472 s5m8767_regulator_desc(BUCK3),
473 s5m8767_regulator_desc(BUCK4),
474 s5m8767_regulator_desc(BUCK5),
475 s5m8767_regulator_desc(BUCK6),
476 s5m8767_regulator_buck78_desc(BUCK7),
477 s5m8767_regulator_buck78_desc(BUCK8),
478 s5m8767_regulator_desc(BUCK9),
482 static int s5m8767_pmic_dt_parse_dvs_gpio(struct sec_pmic_dev *iodev,
483 struct sec_platform_data *pdata,
484 struct device_node *pmic_np)
488 for (i = 0; i < 3; i++) {
489 gpio = of_get_named_gpio(pmic_np,
490 "s5m8767,pmic-buck-dvs-gpios", i);
491 if (!gpio_is_valid(gpio)) {
492 dev_err(iodev->dev, "invalid gpio[%d]: %d\n", i, gpio);
495 pdata->buck_gpios[i] = gpio;
500 static int s5m8767_pmic_dt_parse_ds_gpio(struct sec_pmic_dev *iodev,
501 struct sec_platform_data *pdata,
502 struct device_node *pmic_np)
506 for (i = 0; i < 3; i++) {
507 gpio = of_get_named_gpio(pmic_np,
508 "s5m8767,pmic-buck-ds-gpios", i);
509 if (!gpio_is_valid(gpio)) {
510 dev_err(iodev->dev, "invalid gpio[%d]: %d\n", i, gpio);
513 pdata->buck_ds[i] = gpio;
518 static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev,
519 struct sec_platform_data *pdata)
521 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
522 struct device_node *pmic_np, *regulators_np, *reg_np;
523 struct sec_regulator_data *rdata;
524 struct sec_opmode_data *rmode;
525 unsigned int i, dvs_voltage_nr = 8, ret;
527 pmic_np = iodev->dev->of_node;
529 dev_err(iodev->dev, "could not find pmic sub-node\n");
533 regulators_np = of_find_node_by_name(pmic_np, "regulators");
534 if (!regulators_np) {
535 dev_err(iodev->dev, "could not find regulators sub-node\n");
539 /* count the number of regulators to be supported in pmic */
540 pdata->num_regulators = of_get_child_count(regulators_np);
542 rdata = devm_kzalloc(&pdev->dev, sizeof(*rdata) *
543 pdata->num_regulators, GFP_KERNEL);
546 "could not allocate memory for regulator data\n");
550 rmode = devm_kzalloc(&pdev->dev, sizeof(*rmode) *
551 pdata->num_regulators, GFP_KERNEL);
554 "could not allocate memory for regulator mode\n");
558 pdata->regulators = rdata;
559 pdata->opmode = rmode;
560 for_each_child_of_node(regulators_np, reg_np) {
561 for (i = 0; i < ARRAY_SIZE(regulators); i++)
562 if (!of_node_cmp(reg_np->name, regulators[i].name))
565 if (i == ARRAY_SIZE(regulators)) {
567 "don't know how to configure regulator %s\n",
573 rdata->initdata = of_get_regulator_init_data(
575 rdata->reg_node = reg_np;
578 if (of_property_read_u32(reg_np, "op_mode",
581 "no op_mode property property at %s\n",
584 rmode->mode = S5M8767_OPMODE_NORMAL_MODE;
589 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-uses-gpio-dvs", NULL)) {
590 pdata->buck2_gpiodvs = true;
592 if (of_property_read_u32_array(pmic_np,
593 "s5m8767,pmic-buck2-dvs-voltage",
594 pdata->buck2_voltage, dvs_voltage_nr)) {
595 dev_err(iodev->dev, "buck2 voltages not specified\n");
600 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-uses-gpio-dvs", NULL)) {
601 pdata->buck3_gpiodvs = true;
603 if (of_property_read_u32_array(pmic_np,
604 "s5m8767,pmic-buck3-dvs-voltage",
605 pdata->buck3_voltage, dvs_voltage_nr)) {
606 dev_err(iodev->dev, "buck3 voltages not specified\n");
611 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-uses-gpio-dvs", NULL)) {
612 pdata->buck4_gpiodvs = true;
614 if (of_property_read_u32_array(pmic_np,
615 "s5m8767,pmic-buck4-dvs-voltage",
616 pdata->buck4_voltage, dvs_voltage_nr)) {
617 dev_err(iodev->dev, "buck4 voltages not specified\n");
622 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
623 pdata->buck4_gpiodvs) {
624 ret = s5m8767_pmic_dt_parse_dvs_gpio(iodev, pdata, pmic_np);
628 if (of_property_read_u32(pmic_np,
629 "s5m8767,pmic-buck-default-dvs-idx",
630 &pdata->buck_default_idx)) {
631 pdata->buck_default_idx = 0;
633 if (pdata->buck_default_idx >= 8) {
634 pdata->buck_default_idx = 0;
636 "invalid value for default dvs index, use 0\n");
641 ret = s5m8767_pmic_dt_parse_ds_gpio(iodev, pdata, pmic_np);
645 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-ramp-enable", NULL))
646 pdata->buck2_ramp_enable = true;
648 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-ramp-enable", NULL))
649 pdata->buck3_ramp_enable = true;
651 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-ramp-enable", NULL))
652 pdata->buck4_ramp_enable = true;
654 if (pdata->buck2_ramp_enable || pdata->buck3_ramp_enable
655 || pdata->buck4_ramp_enable) {
656 if (of_property_read_u32(pmic_np, "s5m8767,pmic-buck-ramp-delay",
657 &pdata->buck_ramp_delay))
658 pdata->buck_ramp_delay = 0;
664 static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev,
665 struct sec_platform_data *pdata)
669 #endif /* CONFIG_OF */
671 static int s5m8767_pmic_probe(struct platform_device *pdev)
673 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
674 struct sec_platform_data *pdata = iodev->pdata;
675 struct regulator_config config = { };
676 struct regulator_dev **rdev;
677 struct s5m8767_info *s5m8767;
678 int i, ret, size, buck_init;
681 dev_err(pdev->dev.parent, "Platform data not supplied\n");
685 if (iodev->dev->of_node) {
686 ret = s5m8767_pmic_dt_parse_pdata(pdev, pdata);
691 if (pdata->buck2_gpiodvs) {
692 if (pdata->buck3_gpiodvs || pdata->buck4_gpiodvs) {
693 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
698 if (pdata->buck3_gpiodvs) {
699 if (pdata->buck2_gpiodvs || pdata->buck4_gpiodvs) {
700 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
705 if (pdata->buck4_gpiodvs) {
706 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs) {
707 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
712 s5m8767 = devm_kzalloc(&pdev->dev, sizeof(struct s5m8767_info),
717 size = sizeof(struct regulator_dev *) * (S5M8767_REG_MAX - 2);
718 s5m8767->rdev = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
722 rdev = s5m8767->rdev;
723 s5m8767->dev = &pdev->dev;
724 s5m8767->iodev = iodev;
725 s5m8767->num_regulators = pdata->num_regulators;
726 platform_set_drvdata(pdev, s5m8767);
728 s5m8767->buck_gpioindex = pdata->buck_default_idx;
729 s5m8767->buck2_gpiodvs = pdata->buck2_gpiodvs;
730 s5m8767->buck3_gpiodvs = pdata->buck3_gpiodvs;
731 s5m8767->buck4_gpiodvs = pdata->buck4_gpiodvs;
732 s5m8767->buck_gpios[0] = pdata->buck_gpios[0];
733 s5m8767->buck_gpios[1] = pdata->buck_gpios[1];
734 s5m8767->buck_gpios[2] = pdata->buck_gpios[2];
735 s5m8767->buck_ds[0] = pdata->buck_ds[0];
736 s5m8767->buck_ds[1] = pdata->buck_ds[1];
737 s5m8767->buck_ds[2] = pdata->buck_ds[2];
739 s5m8767->ramp_delay = pdata->buck_ramp_delay;
740 s5m8767->buck2_ramp = pdata->buck2_ramp_enable;
741 s5m8767->buck3_ramp = pdata->buck3_ramp_enable;
742 s5m8767->buck4_ramp = pdata->buck4_ramp_enable;
743 s5m8767->opmode = pdata->opmode;
745 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
748 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK2DVS2, buck_init);
750 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
753 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK3DVS2, buck_init);
755 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
758 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK4DVS2, buck_init);
760 for (i = 0; i < 8; i++) {
761 if (s5m8767->buck2_gpiodvs) {
762 s5m8767->buck2_vol[i] =
763 s5m8767_convert_voltage_to_sel(
765 pdata->buck2_voltage[i]);
768 if (s5m8767->buck3_gpiodvs) {
769 s5m8767->buck3_vol[i] =
770 s5m8767_convert_voltage_to_sel(
772 pdata->buck3_voltage[i]);
775 if (s5m8767->buck4_gpiodvs) {
776 s5m8767->buck4_vol[i] =
777 s5m8767_convert_voltage_to_sel(
779 pdata->buck4_voltage[i]);
783 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
784 pdata->buck4_gpiodvs) {
786 if (!gpio_is_valid(pdata->buck_gpios[0]) ||
787 !gpio_is_valid(pdata->buck_gpios[1]) ||
788 !gpio_is_valid(pdata->buck_gpios[2])) {
789 dev_err(&pdev->dev, "GPIO NOT VALID\n");
793 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[0],
798 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[1],
803 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[2],
809 gpio_direction_output(pdata->buck_gpios[0],
810 (s5m8767->buck_gpioindex >> 2) & 0x1);
812 gpio_direction_output(pdata->buck_gpios[1],
813 (s5m8767->buck_gpioindex >> 1) & 0x1);
815 gpio_direction_output(pdata->buck_gpios[2],
816 (s5m8767->buck_gpioindex >> 0) & 0x1);
819 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[0], "S5M8767 DS2");
823 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[1], "S5M8767 DS3");
827 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[2], "S5M8767 DS4");
832 gpio_direction_output(pdata->buck_ds[0], 0x0);
834 gpio_direction_output(pdata->buck_ds[1], 0x0);
836 gpio_direction_output(pdata->buck_ds[2], 0x0);
838 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
839 pdata->buck4_gpiodvs) {
840 sec_reg_update(s5m8767->iodev, S5M8767_REG_BUCK2CTRL,
841 (pdata->buck2_gpiodvs) ? (1 << 1) : (0 << 1),
843 sec_reg_update(s5m8767->iodev, S5M8767_REG_BUCK3CTRL,
844 (pdata->buck3_gpiodvs) ? (1 << 1) : (0 << 1),
846 sec_reg_update(s5m8767->iodev, S5M8767_REG_BUCK4CTRL,
847 (pdata->buck4_gpiodvs) ? (1 << 1) : (0 << 1),
851 /* Initialize GPIO DVS registers */
852 for (i = 0; i < 8; i++) {
853 if (s5m8767->buck2_gpiodvs) {
854 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK2DVS1 + i,
855 s5m8767->buck2_vol[i]);
858 if (s5m8767->buck3_gpiodvs) {
859 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK3DVS1 + i,
860 s5m8767->buck3_vol[i]);
863 if (s5m8767->buck4_gpiodvs) {
864 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK4DVS1 + i,
865 s5m8767->buck4_vol[i]);
869 if (s5m8767->buck2_ramp)
870 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0x08, 0x08);
872 if (s5m8767->buck3_ramp)
873 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0x04, 0x04);
875 if (s5m8767->buck4_ramp)
876 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0x02, 0x02);
878 if (s5m8767->buck2_ramp || s5m8767->buck3_ramp
879 || s5m8767->buck4_ramp) {
880 switch (s5m8767->ramp_delay) {
882 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
886 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
890 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
894 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
898 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
902 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
907 for (i = 0; i < pdata->num_regulators; i++) {
908 const struct sec_voltage_desc *desc;
909 int id = pdata->regulators[i].id;
911 desc = reg_voltage_map[id];
913 regulators[id].n_voltages =
914 (desc->max - desc->min) / desc->step + 1;
915 regulators[id].min_uV = desc->min;
916 regulators[id].uV_step = desc->step;
917 regulators[id].vsel_reg =
918 s5m8767_get_vsel_reg(id, s5m8767);
919 if (id < S5M8767_BUCK1)
920 regulators[id].vsel_mask = 0x3f;
922 regulators[id].vsel_mask = 0xff;
925 config.dev = s5m8767->dev;
926 config.init_data = pdata->regulators[i].initdata;
927 config.driver_data = s5m8767;
928 config.regmap = iodev->regmap;
929 config.of_node = pdata->regulators[i].reg_node;
931 rdev[i] = devm_regulator_register(&pdev->dev, ®ulators[id],
933 if (IS_ERR(rdev[i])) {
934 ret = PTR_ERR(rdev[i]);
935 dev_err(s5m8767->dev, "regulator init failed for %d\n",
944 static const struct platform_device_id s5m8767_pmic_id[] = {
945 { "s5m8767-pmic", 0},
948 MODULE_DEVICE_TABLE(platform, s5m8767_pmic_id);
950 static struct platform_driver s5m8767_pmic_driver = {
952 .name = "s5m8767-pmic",
953 .owner = THIS_MODULE,
955 .probe = s5m8767_pmic_probe,
956 .id_table = s5m8767_pmic_id,
959 static int __init s5m8767_pmic_init(void)
961 return platform_driver_register(&s5m8767_pmic_driver);
963 subsys_initcall(s5m8767_pmic_init);
965 static void __exit s5m8767_pmic_exit(void)
967 platform_driver_unregister(&s5m8767_pmic_driver);
969 module_exit(s5m8767_pmic_exit);
971 /* Module information */
972 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
973 MODULE_DESCRIPTION("SAMSUNG S5M8767 Regulator Driver");
974 MODULE_LICENSE("GPL");