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>
26 #include <linux/regmap.h>
28 #define S5M8767_OPMODE_NORMAL_MODE 0x1
32 struct sec_pmic_dev *iodev;
34 struct regulator_dev **rdev;
35 struct sec_opmode_data *opmode;
53 struct sec_voltage_desc {
59 static const struct sec_voltage_desc buck_voltage_val1 = {
65 static const struct sec_voltage_desc buck_voltage_val2 = {
71 static const struct sec_voltage_desc buck_voltage_val3 = {
77 static const struct sec_voltage_desc ldo_voltage_val1 = {
83 static const struct sec_voltage_desc ldo_voltage_val2 = {
89 static const struct sec_voltage_desc *reg_voltage_map[] = {
90 [S5M8767_LDO1] = &ldo_voltage_val2,
91 [S5M8767_LDO2] = &ldo_voltage_val2,
92 [S5M8767_LDO3] = &ldo_voltage_val1,
93 [S5M8767_LDO4] = &ldo_voltage_val1,
94 [S5M8767_LDO5] = &ldo_voltage_val1,
95 [S5M8767_LDO6] = &ldo_voltage_val2,
96 [S5M8767_LDO7] = &ldo_voltage_val2,
97 [S5M8767_LDO8] = &ldo_voltage_val2,
98 [S5M8767_LDO9] = &ldo_voltage_val1,
99 [S5M8767_LDO10] = &ldo_voltage_val1,
100 [S5M8767_LDO11] = &ldo_voltage_val1,
101 [S5M8767_LDO12] = &ldo_voltage_val1,
102 [S5M8767_LDO13] = &ldo_voltage_val1,
103 [S5M8767_LDO14] = &ldo_voltage_val1,
104 [S5M8767_LDO15] = &ldo_voltage_val2,
105 [S5M8767_LDO16] = &ldo_voltage_val1,
106 [S5M8767_LDO17] = &ldo_voltage_val1,
107 [S5M8767_LDO18] = &ldo_voltage_val1,
108 [S5M8767_LDO19] = &ldo_voltage_val1,
109 [S5M8767_LDO20] = &ldo_voltage_val1,
110 [S5M8767_LDO21] = &ldo_voltage_val1,
111 [S5M8767_LDO22] = &ldo_voltage_val1,
112 [S5M8767_LDO23] = &ldo_voltage_val1,
113 [S5M8767_LDO24] = &ldo_voltage_val1,
114 [S5M8767_LDO25] = &ldo_voltage_val1,
115 [S5M8767_LDO26] = &ldo_voltage_val1,
116 [S5M8767_LDO27] = &ldo_voltage_val1,
117 [S5M8767_LDO28] = &ldo_voltage_val1,
118 [S5M8767_BUCK1] = &buck_voltage_val1,
119 [S5M8767_BUCK2] = &buck_voltage_val2,
120 [S5M8767_BUCK3] = &buck_voltage_val2,
121 [S5M8767_BUCK4] = &buck_voltage_val2,
122 [S5M8767_BUCK5] = &buck_voltage_val1,
123 [S5M8767_BUCK6] = &buck_voltage_val1,
124 [S5M8767_BUCK7] = &buck_voltage_val3,
125 [S5M8767_BUCK8] = &buck_voltage_val3,
126 [S5M8767_BUCK9] = &buck_voltage_val3,
129 static unsigned int s5m8767_opmode_reg[][4] = {
130 /* {OFF, ON, LOWPOWER, SUSPEND} */
132 {0x0, 0x3, 0x2, 0x1}, /* LDO1 */
133 {0x0, 0x3, 0x2, 0x1},
134 {0x0, 0x3, 0x2, 0x1},
135 {0x0, 0x0, 0x0, 0x0},
136 {0x0, 0x3, 0x2, 0x1}, /* LDO5 */
137 {0x0, 0x3, 0x2, 0x1},
138 {0x0, 0x3, 0x2, 0x1},
139 {0x0, 0x3, 0x2, 0x1},
140 {0x0, 0x3, 0x2, 0x1},
141 {0x0, 0x3, 0x2, 0x1}, /* LDO10 */
142 {0x0, 0x3, 0x2, 0x1},
143 {0x0, 0x3, 0x2, 0x1},
144 {0x0, 0x3, 0x2, 0x1},
145 {0x0, 0x3, 0x2, 0x1},
146 {0x0, 0x3, 0x2, 0x1}, /* LDO15 */
147 {0x0, 0x3, 0x2, 0x1},
148 {0x0, 0x3, 0x2, 0x1},
149 {0x0, 0x0, 0x0, 0x0},
150 {0x0, 0x3, 0x2, 0x1},
151 {0x0, 0x3, 0x2, 0x1}, /* LDO20 */
152 {0x0, 0x3, 0x2, 0x1},
153 {0x0, 0x3, 0x2, 0x1},
154 {0x0, 0x0, 0x0, 0x0},
155 {0x0, 0x3, 0x2, 0x1},
156 {0x0, 0x3, 0x2, 0x1}, /* LDO25 */
157 {0x0, 0x3, 0x2, 0x1},
158 {0x0, 0x3, 0x2, 0x1},
159 {0x0, 0x3, 0x2, 0x1}, /* LDO28 */
161 /* BUCK1 ... BUCK9 */
162 {0x0, 0x3, 0x1, 0x1}, /* BUCK1 */
163 {0x0, 0x3, 0x1, 0x1},
164 {0x0, 0x3, 0x1, 0x1},
165 {0x0, 0x3, 0x1, 0x1},
166 {0x0, 0x3, 0x2, 0x1}, /* BUCK5 */
167 {0x0, 0x3, 0x1, 0x1},
168 {0x0, 0x3, 0x1, 0x1},
169 {0x0, 0x3, 0x1, 0x1},
170 {0x0, 0x3, 0x1, 0x1}, /* BUCK9 */
173 static int s5m8767_get_register(struct regulator_dev *rdev, int *reg,
176 int i, reg_id = rdev_get_id(rdev);
178 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
181 case S5M8767_LDO1 ... S5M8767_LDO2:
182 *reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1);
184 case S5M8767_LDO3 ... S5M8767_LDO28:
185 *reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3);
188 *reg = S5M8767_REG_BUCK1CTRL1;
190 case S5M8767_BUCK2 ... S5M8767_BUCK4:
191 *reg = S5M8767_REG_BUCK2CTRL + (reg_id - S5M8767_BUCK2) * 9;
194 *reg = S5M8767_REG_BUCK5CTRL1;
196 case S5M8767_BUCK6 ... S5M8767_BUCK9:
197 *reg = S5M8767_REG_BUCK6CTRL1 + (reg_id - S5M8767_BUCK6) * 2;
203 for (i = 0; i < s5m8767->num_regulators; i++) {
204 if (s5m8767->opmode[i].id == reg_id) {
205 mode = s5m8767->opmode[i].mode;
210 if (i < s5m8767->num_regulators)
212 s5m8767_opmode_reg[reg_id][mode] << S5M8767_ENCTRL_SHIFT;
217 static int s5m8767_reg_is_enabled(struct regulator_dev *rdev)
219 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
224 ret = s5m8767_get_register(rdev, ®, &enable_ctrl);
230 ret = regmap_read(s5m8767->iodev->regmap_pmic, reg, &val);
234 return (val & S5M8767_ENCTRL_MASK) == enable_ctrl;
237 static int s5m8767_reg_enable(struct regulator_dev *rdev)
239 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
243 ret = s5m8767_get_register(rdev, ®, &enable_ctrl);
247 return regmap_update_bits(s5m8767->iodev->regmap_pmic, reg,
248 S5M8767_ENCTRL_MASK, enable_ctrl);
251 static int s5m8767_reg_disable(struct regulator_dev *rdev)
253 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
254 int ret, reg, enable_ctrl;
256 ret = s5m8767_get_register(rdev, ®, &enable_ctrl);
260 return regmap_update_bits(s5m8767->iodev->regmap_pmic, reg,
261 S5M8767_ENCTRL_MASK, ~S5M8767_ENCTRL_MASK);
264 static int s5m8767_get_vsel_reg(int reg_id, struct s5m8767_info *s5m8767)
269 case S5M8767_LDO1 ... S5M8767_LDO2:
270 reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1);
272 case S5M8767_LDO3 ... S5M8767_LDO28:
273 reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3);
276 reg = S5M8767_REG_BUCK1CTRL2;
279 reg = S5M8767_REG_BUCK2DVS1;
280 if (s5m8767->buck2_gpiodvs)
281 reg += s5m8767->buck_gpioindex;
284 reg = S5M8767_REG_BUCK3DVS1;
285 if (s5m8767->buck3_gpiodvs)
286 reg += s5m8767->buck_gpioindex;
289 reg = S5M8767_REG_BUCK4DVS1;
290 if (s5m8767->buck4_gpiodvs)
291 reg += s5m8767->buck_gpioindex;
294 reg = S5M8767_REG_BUCK5CTRL2;
296 case S5M8767_BUCK6 ... S5M8767_BUCK9:
297 reg = S5M8767_REG_BUCK6CTRL2 + (reg_id - S5M8767_BUCK6) * 2;
306 static int s5m8767_convert_voltage_to_sel(const struct sec_voltage_desc *desc,
314 if (min_vol > desc->max)
317 if (min_vol < desc->min)
320 selector = DIV_ROUND_UP(min_vol - desc->min, desc->step);
322 if (desc->min + desc->step * selector > desc->max)
328 static inline int s5m8767_set_high(struct s5m8767_info *s5m8767)
330 int temp_index = s5m8767->buck_gpioindex;
332 gpio_set_value(s5m8767->buck_gpios[0], (temp_index >> 2) & 0x1);
333 gpio_set_value(s5m8767->buck_gpios[1], (temp_index >> 1) & 0x1);
334 gpio_set_value(s5m8767->buck_gpios[2], temp_index & 0x1);
339 static inline int s5m8767_set_low(struct s5m8767_info *s5m8767)
341 int temp_index = s5m8767->buck_gpioindex;
343 gpio_set_value(s5m8767->buck_gpios[2], temp_index & 0x1);
344 gpio_set_value(s5m8767->buck_gpios[1], (temp_index >> 1) & 0x1);
345 gpio_set_value(s5m8767->buck_gpios[0], (temp_index >> 2) & 0x1);
350 static int s5m8767_set_voltage_sel(struct regulator_dev *rdev,
353 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
354 int reg_id = rdev_get_id(rdev);
355 int old_index, index = 0;
356 u8 *buck234_vol = NULL;
359 case S5M8767_LDO1 ... S5M8767_LDO28:
361 case S5M8767_BUCK1 ... S5M8767_BUCK6:
362 if (reg_id == S5M8767_BUCK2 && s5m8767->buck2_gpiodvs)
363 buck234_vol = &s5m8767->buck2_vol[0];
364 else if (reg_id == S5M8767_BUCK3 && s5m8767->buck3_gpiodvs)
365 buck234_vol = &s5m8767->buck3_vol[0];
366 else if (reg_id == S5M8767_BUCK4 && s5m8767->buck4_gpiodvs)
367 buck234_vol = &s5m8767->buck4_vol[0];
369 case S5M8767_BUCK7 ... S5M8767_BUCK8:
377 /* buck234_vol != NULL means to control buck234 voltage via DVS GPIO */
379 while (*buck234_vol != selector) {
383 old_index = s5m8767->buck_gpioindex;
384 s5m8767->buck_gpioindex = index;
386 if (index > old_index)
387 return s5m8767_set_high(s5m8767);
389 return s5m8767_set_low(s5m8767);
391 return regulator_set_voltage_sel_regmap(rdev, selector);
395 static int s5m8767_set_voltage_time_sel(struct regulator_dev *rdev,
396 unsigned int old_sel,
397 unsigned int new_sel)
399 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
400 const struct sec_voltage_desc *desc;
401 int reg_id = rdev_get_id(rdev);
403 desc = reg_voltage_map[reg_id];
405 if ((old_sel < new_sel) && s5m8767->ramp_delay)
406 return DIV_ROUND_UP(desc->step * (new_sel - old_sel),
407 s5m8767->ramp_delay * 1000);
411 static struct regulator_ops s5m8767_ops = {
412 .list_voltage = regulator_list_voltage_linear,
413 .is_enabled = s5m8767_reg_is_enabled,
414 .enable = s5m8767_reg_enable,
415 .disable = s5m8767_reg_disable,
416 .get_voltage_sel = regulator_get_voltage_sel_regmap,
417 .set_voltage_sel = s5m8767_set_voltage_sel,
418 .set_voltage_time_sel = s5m8767_set_voltage_time_sel,
421 static struct regulator_ops s5m8767_buck78_ops = {
422 .list_voltage = regulator_list_voltage_linear,
423 .is_enabled = s5m8767_reg_is_enabled,
424 .enable = s5m8767_reg_enable,
425 .disable = s5m8767_reg_disable,
426 .get_voltage_sel = regulator_get_voltage_sel_regmap,
427 .set_voltage_sel = regulator_set_voltage_sel_regmap,
430 #define s5m8767_regulator_desc(_name) { \
432 .id = S5M8767_##_name, \
433 .ops = &s5m8767_ops, \
434 .type = REGULATOR_VOLTAGE, \
435 .owner = THIS_MODULE, \
438 #define s5m8767_regulator_buck78_desc(_name) { \
440 .id = S5M8767_##_name, \
441 .ops = &s5m8767_buck78_ops, \
442 .type = REGULATOR_VOLTAGE, \
443 .owner = THIS_MODULE, \
446 static struct regulator_desc regulators[] = {
447 s5m8767_regulator_desc(LDO1),
448 s5m8767_regulator_desc(LDO2),
449 s5m8767_regulator_desc(LDO3),
450 s5m8767_regulator_desc(LDO4),
451 s5m8767_regulator_desc(LDO5),
452 s5m8767_regulator_desc(LDO6),
453 s5m8767_regulator_desc(LDO7),
454 s5m8767_regulator_desc(LDO8),
455 s5m8767_regulator_desc(LDO9),
456 s5m8767_regulator_desc(LDO10),
457 s5m8767_regulator_desc(LDO11),
458 s5m8767_regulator_desc(LDO12),
459 s5m8767_regulator_desc(LDO13),
460 s5m8767_regulator_desc(LDO14),
461 s5m8767_regulator_desc(LDO15),
462 s5m8767_regulator_desc(LDO16),
463 s5m8767_regulator_desc(LDO17),
464 s5m8767_regulator_desc(LDO18),
465 s5m8767_regulator_desc(LDO19),
466 s5m8767_regulator_desc(LDO20),
467 s5m8767_regulator_desc(LDO21),
468 s5m8767_regulator_desc(LDO22),
469 s5m8767_regulator_desc(LDO23),
470 s5m8767_regulator_desc(LDO24),
471 s5m8767_regulator_desc(LDO25),
472 s5m8767_regulator_desc(LDO26),
473 s5m8767_regulator_desc(LDO27),
474 s5m8767_regulator_desc(LDO28),
475 s5m8767_regulator_desc(BUCK1),
476 s5m8767_regulator_desc(BUCK2),
477 s5m8767_regulator_desc(BUCK3),
478 s5m8767_regulator_desc(BUCK4),
479 s5m8767_regulator_desc(BUCK5),
480 s5m8767_regulator_desc(BUCK6),
481 s5m8767_regulator_buck78_desc(BUCK7),
482 s5m8767_regulator_buck78_desc(BUCK8),
483 s5m8767_regulator_desc(BUCK9),
487 static int s5m8767_pmic_dt_parse_dvs_gpio(struct sec_pmic_dev *iodev,
488 struct sec_platform_data *pdata,
489 struct device_node *pmic_np)
493 for (i = 0; i < 3; i++) {
494 gpio = of_get_named_gpio(pmic_np,
495 "s5m8767,pmic-buck-dvs-gpios", i);
496 if (!gpio_is_valid(gpio)) {
497 dev_err(iodev->dev, "invalid gpio[%d]: %d\n", i, gpio);
500 pdata->buck_gpios[i] = gpio;
505 static int s5m8767_pmic_dt_parse_ds_gpio(struct sec_pmic_dev *iodev,
506 struct sec_platform_data *pdata,
507 struct device_node *pmic_np)
511 for (i = 0; i < 3; i++) {
512 gpio = of_get_named_gpio(pmic_np,
513 "s5m8767,pmic-buck-ds-gpios", i);
514 if (!gpio_is_valid(gpio)) {
515 dev_err(iodev->dev, "invalid gpio[%d]: %d\n", i, gpio);
518 pdata->buck_ds[i] = gpio;
523 static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev,
524 struct sec_platform_data *pdata)
526 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
527 struct device_node *pmic_np, *regulators_np, *reg_np;
528 struct sec_regulator_data *rdata;
529 struct sec_opmode_data *rmode;
530 unsigned int i, dvs_voltage_nr = 8, ret;
532 pmic_np = iodev->dev->of_node;
534 dev_err(iodev->dev, "could not find pmic sub-node\n");
538 regulators_np = of_get_child_by_name(pmic_np, "regulators");
539 if (!regulators_np) {
540 dev_err(iodev->dev, "could not find regulators sub-node\n");
544 /* count the number of regulators to be supported in pmic */
545 pdata->num_regulators = of_get_child_count(regulators_np);
547 rdata = devm_kzalloc(&pdev->dev, sizeof(*rdata) *
548 pdata->num_regulators, GFP_KERNEL);
551 "could not allocate memory for regulator data\n");
555 rmode = devm_kzalloc(&pdev->dev, sizeof(*rmode) *
556 pdata->num_regulators, GFP_KERNEL);
559 "could not allocate memory for regulator mode\n");
563 pdata->regulators = rdata;
564 pdata->opmode = rmode;
565 for_each_child_of_node(regulators_np, reg_np) {
566 for (i = 0; i < ARRAY_SIZE(regulators); i++)
567 if (!of_node_cmp(reg_np->name, regulators[i].name))
570 if (i == ARRAY_SIZE(regulators)) {
572 "don't know how to configure regulator %s\n",
578 rdata->initdata = of_get_regulator_init_data(
580 rdata->reg_node = reg_np;
583 if (of_property_read_u32(reg_np, "op_mode",
586 "no op_mode property property at %s\n",
589 rmode->mode = S5M8767_OPMODE_NORMAL_MODE;
594 of_node_put(regulators_np);
596 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-uses-gpio-dvs", NULL)) {
597 pdata->buck2_gpiodvs = true;
599 if (of_property_read_u32_array(pmic_np,
600 "s5m8767,pmic-buck2-dvs-voltage",
601 pdata->buck2_voltage, dvs_voltage_nr)) {
602 dev_err(iodev->dev, "buck2 voltages not specified\n");
607 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-uses-gpio-dvs", NULL)) {
608 pdata->buck3_gpiodvs = true;
610 if (of_property_read_u32_array(pmic_np,
611 "s5m8767,pmic-buck3-dvs-voltage",
612 pdata->buck3_voltage, dvs_voltage_nr)) {
613 dev_err(iodev->dev, "buck3 voltages not specified\n");
618 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-uses-gpio-dvs", NULL)) {
619 pdata->buck4_gpiodvs = true;
621 if (of_property_read_u32_array(pmic_np,
622 "s5m8767,pmic-buck4-dvs-voltage",
623 pdata->buck4_voltage, dvs_voltage_nr)) {
624 dev_err(iodev->dev, "buck4 voltages not specified\n");
629 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
630 pdata->buck4_gpiodvs) {
631 ret = s5m8767_pmic_dt_parse_dvs_gpio(iodev, pdata, pmic_np);
635 if (of_property_read_u32(pmic_np,
636 "s5m8767,pmic-buck-default-dvs-idx",
637 &pdata->buck_default_idx)) {
638 pdata->buck_default_idx = 0;
640 if (pdata->buck_default_idx >= 8) {
641 pdata->buck_default_idx = 0;
643 "invalid value for default dvs index, use 0\n");
648 ret = s5m8767_pmic_dt_parse_ds_gpio(iodev, pdata, pmic_np);
652 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-ramp-enable", NULL))
653 pdata->buck2_ramp_enable = true;
655 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-ramp-enable", NULL))
656 pdata->buck3_ramp_enable = true;
658 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-ramp-enable", NULL))
659 pdata->buck4_ramp_enable = true;
661 if (pdata->buck2_ramp_enable || pdata->buck3_ramp_enable
662 || pdata->buck4_ramp_enable) {
663 if (of_property_read_u32(pmic_np, "s5m8767,pmic-buck-ramp-delay",
664 &pdata->buck_ramp_delay))
665 pdata->buck_ramp_delay = 0;
671 static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev,
672 struct sec_platform_data *pdata)
676 #endif /* CONFIG_OF */
678 static int s5m8767_pmic_probe(struct platform_device *pdev)
680 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
681 struct sec_platform_data *pdata = iodev->pdata;
682 struct regulator_config config = { };
683 struct regulator_dev **rdev;
684 struct s5m8767_info *s5m8767;
685 int i, ret, size, buck_init;
688 dev_err(pdev->dev.parent, "Platform data not supplied\n");
692 if (iodev->dev->of_node) {
693 ret = s5m8767_pmic_dt_parse_pdata(pdev, pdata);
698 if (pdata->buck2_gpiodvs) {
699 if (pdata->buck3_gpiodvs || pdata->buck4_gpiodvs) {
700 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
705 if (pdata->buck3_gpiodvs) {
706 if (pdata->buck2_gpiodvs || pdata->buck4_gpiodvs) {
707 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
712 if (pdata->buck4_gpiodvs) {
713 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs) {
714 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
719 s5m8767 = devm_kzalloc(&pdev->dev, sizeof(struct s5m8767_info),
724 size = sizeof(struct regulator_dev *) * (S5M8767_REG_MAX - 2);
725 s5m8767->rdev = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
729 rdev = s5m8767->rdev;
730 s5m8767->dev = &pdev->dev;
731 s5m8767->iodev = iodev;
732 s5m8767->num_regulators = pdata->num_regulators;
733 platform_set_drvdata(pdev, s5m8767);
735 s5m8767->buck_gpioindex = pdata->buck_default_idx;
736 s5m8767->buck2_gpiodvs = pdata->buck2_gpiodvs;
737 s5m8767->buck3_gpiodvs = pdata->buck3_gpiodvs;
738 s5m8767->buck4_gpiodvs = pdata->buck4_gpiodvs;
739 s5m8767->buck_gpios[0] = pdata->buck_gpios[0];
740 s5m8767->buck_gpios[1] = pdata->buck_gpios[1];
741 s5m8767->buck_gpios[2] = pdata->buck_gpios[2];
742 s5m8767->buck_ds[0] = pdata->buck_ds[0];
743 s5m8767->buck_ds[1] = pdata->buck_ds[1];
744 s5m8767->buck_ds[2] = pdata->buck_ds[2];
746 s5m8767->ramp_delay = pdata->buck_ramp_delay;
747 s5m8767->buck2_ramp = pdata->buck2_ramp_enable;
748 s5m8767->buck3_ramp = pdata->buck3_ramp_enable;
749 s5m8767->buck4_ramp = pdata->buck4_ramp_enable;
750 s5m8767->opmode = pdata->opmode;
752 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
755 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK2DVS2,
758 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
761 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK3DVS2,
764 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
767 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK4DVS2,
770 for (i = 0; i < 8; i++) {
771 if (s5m8767->buck2_gpiodvs) {
772 s5m8767->buck2_vol[i] =
773 s5m8767_convert_voltage_to_sel(
775 pdata->buck2_voltage[i]);
778 if (s5m8767->buck3_gpiodvs) {
779 s5m8767->buck3_vol[i] =
780 s5m8767_convert_voltage_to_sel(
782 pdata->buck3_voltage[i]);
785 if (s5m8767->buck4_gpiodvs) {
786 s5m8767->buck4_vol[i] =
787 s5m8767_convert_voltage_to_sel(
789 pdata->buck4_voltage[i]);
793 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
794 pdata->buck4_gpiodvs) {
796 if (!gpio_is_valid(pdata->buck_gpios[0]) ||
797 !gpio_is_valid(pdata->buck_gpios[1]) ||
798 !gpio_is_valid(pdata->buck_gpios[2])) {
799 dev_err(&pdev->dev, "GPIO NOT VALID\n");
803 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[0],
808 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[1],
813 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[2],
819 gpio_direction_output(pdata->buck_gpios[0],
820 (s5m8767->buck_gpioindex >> 2) & 0x1);
822 gpio_direction_output(pdata->buck_gpios[1],
823 (s5m8767->buck_gpioindex >> 1) & 0x1);
825 gpio_direction_output(pdata->buck_gpios[2],
826 (s5m8767->buck_gpioindex >> 0) & 0x1);
829 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[0], "S5M8767 DS2");
833 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[1], "S5M8767 DS3");
837 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[2], "S5M8767 DS4");
842 gpio_direction_output(pdata->buck_ds[0], 0x0);
844 gpio_direction_output(pdata->buck_ds[1], 0x0);
846 gpio_direction_output(pdata->buck_ds[2], 0x0);
848 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
849 pdata->buck4_gpiodvs) {
850 regmap_update_bits(s5m8767->iodev->regmap_pmic,
851 S5M8767_REG_BUCK2CTRL, 1 << 1,
852 (pdata->buck2_gpiodvs) ? (1 << 1) : (0 << 1));
853 regmap_update_bits(s5m8767->iodev->regmap_pmic,
854 S5M8767_REG_BUCK3CTRL, 1 << 1,
855 (pdata->buck3_gpiodvs) ? (1 << 1) : (0 << 1));
856 regmap_update_bits(s5m8767->iodev->regmap_pmic,
857 S5M8767_REG_BUCK4CTRL, 1 << 1,
858 (pdata->buck4_gpiodvs) ? (1 << 1) : (0 << 1));
861 /* Initialize GPIO DVS registers */
862 for (i = 0; i < 8; i++) {
863 if (s5m8767->buck2_gpiodvs) {
864 regmap_write(s5m8767->iodev->regmap_pmic,
865 S5M8767_REG_BUCK2DVS1 + i,
866 s5m8767->buck2_vol[i]);
869 if (s5m8767->buck3_gpiodvs) {
870 regmap_write(s5m8767->iodev->regmap_pmic,
871 S5M8767_REG_BUCK3DVS1 + i,
872 s5m8767->buck3_vol[i]);
875 if (s5m8767->buck4_gpiodvs) {
876 regmap_write(s5m8767->iodev->regmap_pmic,
877 S5M8767_REG_BUCK4DVS1 + i,
878 s5m8767->buck4_vol[i]);
882 if (s5m8767->buck2_ramp)
883 regmap_update_bits(s5m8767->iodev->regmap_pmic,
884 S5M8767_REG_DVSRAMP, 0x08, 0x08);
886 if (s5m8767->buck3_ramp)
887 regmap_update_bits(s5m8767->iodev->regmap_pmic,
888 S5M8767_REG_DVSRAMP, 0x04, 0x04);
890 if (s5m8767->buck4_ramp)
891 regmap_update_bits(s5m8767->iodev->regmap_pmic,
892 S5M8767_REG_DVSRAMP, 0x02, 0x02);
894 if (s5m8767->buck2_ramp || s5m8767->buck3_ramp
895 || s5m8767->buck4_ramp) {
897 switch (s5m8767->ramp_delay) {
899 val = S5M8767_DVS_BUCK_RAMP_5;
902 val = S5M8767_DVS_BUCK_RAMP_10;
905 val = S5M8767_DVS_BUCK_RAMP_25;
908 val = S5M8767_DVS_BUCK_RAMP_50;
911 val = S5M8767_DVS_BUCK_RAMP_100;
914 val = S5M8767_DVS_BUCK_RAMP_10;
916 regmap_update_bits(s5m8767->iodev->regmap_pmic,
918 S5M8767_DVS_BUCK_RAMP_MASK,
919 val << S5M8767_DVS_BUCK_RAMP_SHIFT);
922 for (i = 0; i < pdata->num_regulators; i++) {
923 const struct sec_voltage_desc *desc;
924 int id = pdata->regulators[i].id;
926 desc = reg_voltage_map[id];
928 regulators[id].n_voltages =
929 (desc->max - desc->min) / desc->step + 1;
930 regulators[id].min_uV = desc->min;
931 regulators[id].uV_step = desc->step;
932 regulators[id].vsel_reg =
933 s5m8767_get_vsel_reg(id, s5m8767);
934 if (id < S5M8767_BUCK1)
935 regulators[id].vsel_mask = 0x3f;
937 regulators[id].vsel_mask = 0xff;
940 config.dev = s5m8767->dev;
941 config.init_data = pdata->regulators[i].initdata;
942 config.driver_data = s5m8767;
943 config.regmap = iodev->regmap_pmic;
944 config.of_node = pdata->regulators[i].reg_node;
946 rdev[i] = devm_regulator_register(&pdev->dev, ®ulators[id],
948 if (IS_ERR(rdev[i])) {
949 ret = PTR_ERR(rdev[i]);
950 dev_err(s5m8767->dev, "regulator init failed for %d\n",
959 static const struct platform_device_id s5m8767_pmic_id[] = {
960 { "s5m8767-pmic", 0},
963 MODULE_DEVICE_TABLE(platform, s5m8767_pmic_id);
965 static struct platform_driver s5m8767_pmic_driver = {
967 .name = "s5m8767-pmic",
968 .owner = THIS_MODULE,
970 .probe = s5m8767_pmic_probe,
971 .id_table = s5m8767_pmic_id,
974 static int __init s5m8767_pmic_init(void)
976 return platform_driver_register(&s5m8767_pmic_driver);
978 subsys_initcall(s5m8767_pmic_init);
980 static void __exit s5m8767_pmic_exit(void)
982 platform_driver_unregister(&s5m8767_pmic_driver);
984 module_exit(s5m8767_pmic_exit);
986 /* Module information */
987 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
988 MODULE_DESCRIPTION("SAMSUNG S5M8767 Regulator Driver");
989 MODULE_LICENSE("GPL");