1 /* 2 * s5m8767.c 3 * 4 * Copyright (c) 2011 Samsung Electronics Co., Ltd 5 * http://www.samsung.com 6 * 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. 11 * 12 */ 13 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> 27 28 #define S5M8767_OPMODE_NORMAL_MODE 0x1 29 30 struct s5m8767_info { 31 struct device *dev; 32 struct sec_pmic_dev *iodev; 33 int num_regulators; 34 struct regulator_dev **rdev; 35 struct sec_opmode_data *opmode; 36 37 int ramp_delay; 38 bool buck2_ramp; 39 bool buck3_ramp; 40 bool buck4_ramp; 41 42 bool buck2_gpiodvs; 43 bool buck3_gpiodvs; 44 bool buck4_gpiodvs; 45 u8 buck2_vol[8]; 46 u8 buck3_vol[8]; 47 u8 buck4_vol[8]; 48 int buck_gpios[3]; 49 int buck_ds[3]; 50 int buck_gpioindex; 51 }; 52 53 struct sec_voltage_desc { 54 int max; 55 int min; 56 int step; 57 }; 58 59 static const struct sec_voltage_desc buck_voltage_val1 = { 60 .max = 2225000, 61 .min = 650000, 62 .step = 6250, 63 }; 64 65 static const struct sec_voltage_desc buck_voltage_val2 = { 66 .max = 1600000, 67 .min = 600000, 68 .step = 6250, 69 }; 70 71 static const struct sec_voltage_desc buck_voltage_val3 = { 72 .max = 3000000, 73 .min = 750000, 74 .step = 12500, 75 }; 76 77 static const struct sec_voltage_desc ldo_voltage_val1 = { 78 .max = 3950000, 79 .min = 800000, 80 .step = 50000, 81 }; 82 83 static const struct sec_voltage_desc ldo_voltage_val2 = { 84 .max = 2375000, 85 .min = 800000, 86 .step = 25000, 87 }; 88 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, 127 }; 128 129 static unsigned int s5m8767_opmode_reg[][4] = { 130 /* {OFF, ON, LOWPOWER, SUSPEND} */ 131 /* LDO1 ... LDO28 */ 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 */ 160 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 */ 171 }; 172 173 static int s5m8767_get_register(struct regulator_dev *rdev, int *reg, 174 int *enable_ctrl) 175 { 176 int i, reg_id = rdev_get_id(rdev); 177 unsigned int mode; 178 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev); 179 180 switch (reg_id) { 181 case S5M8767_LDO1 ... S5M8767_LDO2: 182 *reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1); 183 break; 184 case S5M8767_LDO3 ... S5M8767_LDO28: 185 *reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3); 186 break; 187 case S5M8767_BUCK1: 188 *reg = S5M8767_REG_BUCK1CTRL1; 189 break; 190 case S5M8767_BUCK2 ... S5M8767_BUCK4: 191 *reg = S5M8767_REG_BUCK2CTRL + (reg_id - S5M8767_BUCK2) * 9; 192 break; 193 case S5M8767_BUCK5: 194 *reg = S5M8767_REG_BUCK5CTRL1; 195 break; 196 case S5M8767_BUCK6 ... S5M8767_BUCK9: 197 *reg = S5M8767_REG_BUCK6CTRL1 + (reg_id - S5M8767_BUCK6) * 2; 198 break; 199 default: 200 return -EINVAL; 201 } 202 203 for (i = 0; i < s5m8767->num_regulators; i++) { 204 if (s5m8767->opmode[i].id == reg_id) { 205 mode = s5m8767->opmode[i].mode; 206 break; 207 } 208 } 209 210 if (i < s5m8767->num_regulators) 211 *enable_ctrl = 212 s5m8767_opmode_reg[reg_id][mode] << S5M8767_ENCTRL_SHIFT; 213 214 return 0; 215 } 216 217 static int s5m8767_reg_is_enabled(struct regulator_dev *rdev) 218 { 219 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev); 220 int ret, reg; 221 int enable_ctrl; 222 unsigned int val; 223 224 ret = s5m8767_get_register(rdev, ®, &enable_ctrl); 225 if (ret == -EINVAL) 226 return 1; 227 else if (ret) 228 return ret; 229 230 ret = regmap_read(s5m8767->iodev->regmap_pmic, reg, &val); 231 if (ret) 232 return ret; 233 234 return (val & S5M8767_ENCTRL_MASK) == enable_ctrl; 235 } 236 237 static int s5m8767_reg_enable(struct regulator_dev *rdev) 238 { 239 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev); 240 int ret, reg; 241 int enable_ctrl; 242 243 ret = s5m8767_get_register(rdev, ®, &enable_ctrl); 244 if (ret) 245 return ret; 246 247 return regmap_update_bits(s5m8767->iodev->regmap_pmic, reg, 248 S5M8767_ENCTRL_MASK, enable_ctrl); 249 } 250 251 static int s5m8767_reg_disable(struct regulator_dev *rdev) 252 { 253 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev); 254 int ret, reg, enable_ctrl; 255 256 ret = s5m8767_get_register(rdev, ®, &enable_ctrl); 257 if (ret) 258 return ret; 259 260 return regmap_update_bits(s5m8767->iodev->regmap_pmic, reg, 261 S5M8767_ENCTRL_MASK, ~S5M8767_ENCTRL_MASK); 262 } 263 264 static int s5m8767_get_vsel_reg(int reg_id, struct s5m8767_info *s5m8767) 265 { 266 int reg; 267 268 switch (reg_id) { 269 case S5M8767_LDO1 ... S5M8767_LDO2: 270 reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1); 271 break; 272 case S5M8767_LDO3 ... S5M8767_LDO28: 273 reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3); 274 break; 275 case S5M8767_BUCK1: 276 reg = S5M8767_REG_BUCK1CTRL2; 277 break; 278 case S5M8767_BUCK2: 279 reg = S5M8767_REG_BUCK2DVS1; 280 if (s5m8767->buck2_gpiodvs) 281 reg += s5m8767->buck_gpioindex; 282 break; 283 case S5M8767_BUCK3: 284 reg = S5M8767_REG_BUCK3DVS1; 285 if (s5m8767->buck3_gpiodvs) 286 reg += s5m8767->buck_gpioindex; 287 break; 288 case S5M8767_BUCK4: 289 reg = S5M8767_REG_BUCK4DVS1; 290 if (s5m8767->buck4_gpiodvs) 291 reg += s5m8767->buck_gpioindex; 292 break; 293 case S5M8767_BUCK5: 294 reg = S5M8767_REG_BUCK5CTRL2; 295 break; 296 case S5M8767_BUCK6 ... S5M8767_BUCK9: 297 reg = S5M8767_REG_BUCK6CTRL2 + (reg_id - S5M8767_BUCK6) * 2; 298 break; 299 default: 300 return -EINVAL; 301 } 302 303 return reg; 304 } 305 306 static int s5m8767_convert_voltage_to_sel(const struct sec_voltage_desc *desc, 307 int min_vol) 308 { 309 int selector = 0; 310 311 if (desc == NULL) 312 return -EINVAL; 313 314 if (min_vol > desc->max) 315 return -EINVAL; 316 317 if (min_vol < desc->min) 318 min_vol = desc->min; 319 320 selector = DIV_ROUND_UP(min_vol - desc->min, desc->step); 321 322 if (desc->min + desc->step * selector > desc->max) 323 return -EINVAL; 324 325 return selector; 326 } 327 328 static inline int s5m8767_set_high(struct s5m8767_info *s5m8767) 329 { 330 int temp_index = s5m8767->buck_gpioindex; 331 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); 335 336 return 0; 337 } 338 339 static inline int s5m8767_set_low(struct s5m8767_info *s5m8767) 340 { 341 int temp_index = s5m8767->buck_gpioindex; 342 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); 346 347 return 0; 348 } 349 350 static int s5m8767_set_voltage_sel(struct regulator_dev *rdev, 351 unsigned selector) 352 { 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; 357 358 switch (reg_id) { 359 case S5M8767_LDO1 ... S5M8767_LDO28: 360 break; 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]; 368 break; 369 case S5M8767_BUCK7 ... S5M8767_BUCK8: 370 return -EINVAL; 371 case S5M8767_BUCK9: 372 break; 373 default: 374 return -EINVAL; 375 } 376 377 /* buck234_vol != NULL means to control buck234 voltage via DVS GPIO */ 378 if (buck234_vol) { 379 while (*buck234_vol != selector) { 380 buck234_vol++; 381 index++; 382 } 383 old_index = s5m8767->buck_gpioindex; 384 s5m8767->buck_gpioindex = index; 385 386 if (index > old_index) 387 return s5m8767_set_high(s5m8767); 388 else 389 return s5m8767_set_low(s5m8767); 390 } else { 391 return regulator_set_voltage_sel_regmap(rdev, selector); 392 } 393 } 394 395 static int s5m8767_set_voltage_time_sel(struct regulator_dev *rdev, 396 unsigned int old_sel, 397 unsigned int new_sel) 398 { 399 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev); 400 const struct sec_voltage_desc *desc; 401 int reg_id = rdev_get_id(rdev); 402 403 desc = reg_voltage_map[reg_id]; 404 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); 408 return 0; 409 } 410 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, 419 }; 420 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, 428 }; 429 430 #define s5m8767_regulator_desc(_name) { \ 431 .name = #_name, \ 432 .id = S5M8767_##_name, \ 433 .ops = &s5m8767_ops, \ 434 .type = REGULATOR_VOLTAGE, \ 435 .owner = THIS_MODULE, \ 436 } 437 438 #define s5m8767_regulator_buck78_desc(_name) { \ 439 .name = #_name, \ 440 .id = S5M8767_##_name, \ 441 .ops = &s5m8767_buck78_ops, \ 442 .type = REGULATOR_VOLTAGE, \ 443 .owner = THIS_MODULE, \ 444 } 445 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), 484 }; 485 486 #ifdef CONFIG_OF 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) 490 { 491 int i, gpio; 492 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); 498 return -EINVAL; 499 } 500 pdata->buck_gpios[i] = gpio; 501 } 502 return 0; 503 } 504 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) 508 { 509 int i, gpio; 510 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); 516 return -EINVAL; 517 } 518 pdata->buck_ds[i] = gpio; 519 } 520 return 0; 521 } 522 523 static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev, 524 struct sec_platform_data *pdata) 525 { 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; 531 532 pmic_np = iodev->dev->of_node; 533 if (!pmic_np) { 534 dev_err(iodev->dev, "could not find pmic sub-node\n"); 535 return -ENODEV; 536 } 537 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"); 541 return -EINVAL; 542 } 543 544 /* count the number of regulators to be supported in pmic */ 545 pdata->num_regulators = of_get_child_count(regulators_np); 546 547 rdata = devm_kzalloc(&pdev->dev, sizeof(*rdata) * 548 pdata->num_regulators, GFP_KERNEL); 549 if (!rdata) { 550 dev_err(iodev->dev, 551 "could not allocate memory for regulator data\n"); 552 return -ENOMEM; 553 } 554 555 rmode = devm_kzalloc(&pdev->dev, sizeof(*rmode) * 556 pdata->num_regulators, GFP_KERNEL); 557 if (!rmode) { 558 dev_err(iodev->dev, 559 "could not allocate memory for regulator mode\n"); 560 return -ENOMEM; 561 } 562 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)) 568 break; 569 570 if (i == ARRAY_SIZE(regulators)) { 571 dev_warn(iodev->dev, 572 "don't know how to configure regulator %s\n", 573 reg_np->name); 574 continue; 575 } 576 577 rdata->id = i; 578 rdata->initdata = of_get_regulator_init_data( 579 &pdev->dev, reg_np); 580 rdata->reg_node = reg_np; 581 rdata++; 582 rmode->id = i; 583 if (of_property_read_u32(reg_np, "op_mode", 584 &rmode->mode)) { 585 dev_warn(iodev->dev, 586 "no op_mode property property at %s\n", 587 reg_np->full_name); 588 589 rmode->mode = S5M8767_OPMODE_NORMAL_MODE; 590 } 591 rmode++; 592 } 593 594 of_node_put(regulators_np); 595 596 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-uses-gpio-dvs", NULL)) { 597 pdata->buck2_gpiodvs = true; 598 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"); 603 return -EINVAL; 604 } 605 } 606 607 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-uses-gpio-dvs", NULL)) { 608 pdata->buck3_gpiodvs = true; 609 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"); 614 return -EINVAL; 615 } 616 } 617 618 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-uses-gpio-dvs", NULL)) { 619 pdata->buck4_gpiodvs = true; 620 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"); 625 return -EINVAL; 626 } 627 } 628 629 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs || 630 pdata->buck4_gpiodvs) { 631 ret = s5m8767_pmic_dt_parse_dvs_gpio(iodev, pdata, pmic_np); 632 if (ret) 633 return -EINVAL; 634 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; 639 } else { 640 if (pdata->buck_default_idx >= 8) { 641 pdata->buck_default_idx = 0; 642 dev_info(iodev->dev, 643 "invalid value for default dvs index, use 0\n"); 644 } 645 } 646 } 647 648 ret = s5m8767_pmic_dt_parse_ds_gpio(iodev, pdata, pmic_np); 649 if (ret) 650 return -EINVAL; 651 652 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-ramp-enable", NULL)) 653 pdata->buck2_ramp_enable = true; 654 655 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-ramp-enable", NULL)) 656 pdata->buck3_ramp_enable = true; 657 658 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-ramp-enable", NULL)) 659 pdata->buck4_ramp_enable = true; 660 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; 666 } 667 668 return 0; 669 } 670 #else 671 static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev, 672 struct sec_platform_data *pdata) 673 { 674 return 0; 675 } 676 #endif /* CONFIG_OF */ 677 678 static int s5m8767_pmic_probe(struct platform_device *pdev) 679 { 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; 686 687 if (!pdata) { 688 dev_err(pdev->dev.parent, "Platform data not supplied\n"); 689 return -ENODEV; 690 } 691 692 if (iodev->dev->of_node) { 693 ret = s5m8767_pmic_dt_parse_pdata(pdev, pdata); 694 if (ret) 695 return ret; 696 } 697 698 if (pdata->buck2_gpiodvs) { 699 if (pdata->buck3_gpiodvs || pdata->buck4_gpiodvs) { 700 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n"); 701 return -EINVAL; 702 } 703 } 704 705 if (pdata->buck3_gpiodvs) { 706 if (pdata->buck2_gpiodvs || pdata->buck4_gpiodvs) { 707 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n"); 708 return -EINVAL; 709 } 710 } 711 712 if (pdata->buck4_gpiodvs) { 713 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs) { 714 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n"); 715 return -EINVAL; 716 } 717 } 718 719 s5m8767 = devm_kzalloc(&pdev->dev, sizeof(struct s5m8767_info), 720 GFP_KERNEL); 721 if (!s5m8767) 722 return -ENOMEM; 723 724 size = sizeof(struct regulator_dev *) * (S5M8767_REG_MAX - 2); 725 s5m8767->rdev = devm_kzalloc(&pdev->dev, size, GFP_KERNEL); 726 if (!s5m8767->rdev) 727 return -ENOMEM; 728 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); 734 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]; 745 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; 751 752 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2, 753 pdata->buck2_init); 754 755 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK2DVS2, 756 buck_init); 757 758 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2, 759 pdata->buck3_init); 760 761 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK3DVS2, 762 buck_init); 763 764 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2, 765 pdata->buck4_init); 766 767 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK4DVS2, 768 buck_init); 769 770 for (i = 0; i < 8; i++) { 771 if (s5m8767->buck2_gpiodvs) { 772 s5m8767->buck2_vol[i] = 773 s5m8767_convert_voltage_to_sel( 774 &buck_voltage_val2, 775 pdata->buck2_voltage[i]); 776 } 777 778 if (s5m8767->buck3_gpiodvs) { 779 s5m8767->buck3_vol[i] = 780 s5m8767_convert_voltage_to_sel( 781 &buck_voltage_val2, 782 pdata->buck3_voltage[i]); 783 } 784 785 if (s5m8767->buck4_gpiodvs) { 786 s5m8767->buck4_vol[i] = 787 s5m8767_convert_voltage_to_sel( 788 &buck_voltage_val2, 789 pdata->buck4_voltage[i]); 790 } 791 } 792 793 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs || 794 pdata->buck4_gpiodvs) { 795 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"); 800 return -EINVAL; 801 } 802 803 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[0], 804 "S5M8767 SET1"); 805 if (ret) 806 return ret; 807 808 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[1], 809 "S5M8767 SET2"); 810 if (ret) 811 return ret; 812 813 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[2], 814 "S5M8767 SET3"); 815 if (ret) 816 return ret; 817 818 /* SET1 GPIO */ 819 gpio_direction_output(pdata->buck_gpios[0], 820 (s5m8767->buck_gpioindex >> 2) & 0x1); 821 /* SET2 GPIO */ 822 gpio_direction_output(pdata->buck_gpios[1], 823 (s5m8767->buck_gpioindex >> 1) & 0x1); 824 /* SET3 GPIO */ 825 gpio_direction_output(pdata->buck_gpios[2], 826 (s5m8767->buck_gpioindex >> 0) & 0x1); 827 } 828 829 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[0], "S5M8767 DS2"); 830 if (ret) 831 return ret; 832 833 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[1], "S5M8767 DS3"); 834 if (ret) 835 return ret; 836 837 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[2], "S5M8767 DS4"); 838 if (ret) 839 return ret; 840 841 /* DS2 GPIO */ 842 gpio_direction_output(pdata->buck_ds[0], 0x0); 843 /* DS3 GPIO */ 844 gpio_direction_output(pdata->buck_ds[1], 0x0); 845 /* DS4 GPIO */ 846 gpio_direction_output(pdata->buck_ds[2], 0x0); 847 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)); 859 } 860 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]); 867 } 868 869 if (s5m8767->buck3_gpiodvs) { 870 regmap_write(s5m8767->iodev->regmap_pmic, 871 S5M8767_REG_BUCK3DVS1 + i, 872 s5m8767->buck3_vol[i]); 873 } 874 875 if (s5m8767->buck4_gpiodvs) { 876 regmap_write(s5m8767->iodev->regmap_pmic, 877 S5M8767_REG_BUCK4DVS1 + i, 878 s5m8767->buck4_vol[i]); 879 } 880 } 881 882 if (s5m8767->buck2_ramp) 883 regmap_update_bits(s5m8767->iodev->regmap_pmic, 884 S5M8767_REG_DVSRAMP, 0x08, 0x08); 885 886 if (s5m8767->buck3_ramp) 887 regmap_update_bits(s5m8767->iodev->regmap_pmic, 888 S5M8767_REG_DVSRAMP, 0x04, 0x04); 889 890 if (s5m8767->buck4_ramp) 891 regmap_update_bits(s5m8767->iodev->regmap_pmic, 892 S5M8767_REG_DVSRAMP, 0x02, 0x02); 893 894 if (s5m8767->buck2_ramp || s5m8767->buck3_ramp 895 || s5m8767->buck4_ramp) { 896 unsigned int val; 897 switch (s5m8767->ramp_delay) { 898 case 5: 899 val = S5M8767_DVS_BUCK_RAMP_5; 900 break; 901 case 10: 902 val = S5M8767_DVS_BUCK_RAMP_10; 903 break; 904 case 25: 905 val = S5M8767_DVS_BUCK_RAMP_25; 906 break; 907 case 50: 908 val = S5M8767_DVS_BUCK_RAMP_50; 909 break; 910 case 100: 911 val = S5M8767_DVS_BUCK_RAMP_100; 912 break; 913 default: 914 val = S5M8767_DVS_BUCK_RAMP_10; 915 } 916 regmap_update_bits(s5m8767->iodev->regmap_pmic, 917 S5M8767_REG_DVSRAMP, 918 S5M8767_DVS_BUCK_RAMP_MASK, 919 val << S5M8767_DVS_BUCK_RAMP_SHIFT); 920 } 921 922 for (i = 0; i < pdata->num_regulators; i++) { 923 const struct sec_voltage_desc *desc; 924 int id = pdata->regulators[i].id; 925 926 desc = reg_voltage_map[id]; 927 if (desc) { 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; 936 else 937 regulators[id].vsel_mask = 0xff; 938 } 939 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; 945 946 rdev[i] = devm_regulator_register(&pdev->dev, ®ulators[id], 947 &config); 948 if (IS_ERR(rdev[i])) { 949 ret = PTR_ERR(rdev[i]); 950 dev_err(s5m8767->dev, "regulator init failed for %d\n", 951 id); 952 return ret; 953 } 954 } 955 956 return 0; 957 } 958 959 static const struct platform_device_id s5m8767_pmic_id[] = { 960 { "s5m8767-pmic", 0}, 961 { }, 962 }; 963 MODULE_DEVICE_TABLE(platform, s5m8767_pmic_id); 964 965 static struct platform_driver s5m8767_pmic_driver = { 966 .driver = { 967 .name = "s5m8767-pmic", 968 .owner = THIS_MODULE, 969 }, 970 .probe = s5m8767_pmic_probe, 971 .id_table = s5m8767_pmic_id, 972 }; 973 974 static int __init s5m8767_pmic_init(void) 975 { 976 return platform_driver_register(&s5m8767_pmic_driver); 977 } 978 subsys_initcall(s5m8767_pmic_init); 979 980 static void __exit s5m8767_pmic_exit(void) 981 { 982 platform_driver_unregister(&s5m8767_pmic_driver); 983 } 984 module_exit(s5m8767_pmic_exit); 985 986 /* Module information */ 987 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>"); 988 MODULE_DESCRIPTION("SAMSUNG S5M8767 Regulator Driver"); 989 MODULE_LICENSE("GPL"); 990