4 * Copyright (c) 2012-2014 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.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
19 #include <linux/bug.h>
20 #include <linux/err.h>
21 #include <linux/gpio.h>
22 #include <linux/slab.h>
23 #include <linux/module.h>
25 #include <linux/regmap.h>
26 #include <linux/platform_device.h>
27 #include <linux/regulator/driver.h>
28 #include <linux/regulator/machine.h>
29 #include <linux/regulator/of_regulator.h>
30 #include <linux/of_gpio.h>
31 #include <linux/mfd/samsung/core.h>
32 #include <linux/mfd/samsung/s2mps11.h>
33 #include <linux/mfd/samsung/s2mps14.h>
36 unsigned int rdev_num
;
44 * One bit for each S2MPS14 regulator whether the suspend mode
47 unsigned int s2mps14_suspend_state
:30;
48 /* Array of size rdev_num with GPIO-s for external sleep control */
49 int *ext_control_gpio
;
52 static int get_ramp_delay(int ramp_delay
)
54 unsigned char cnt
= 0;
59 ramp_delay
= ramp_delay
>> 1;
71 static int s2mps11_regulator_set_voltage_time_sel(struct regulator_dev
*rdev
,
72 unsigned int old_selector
,
73 unsigned int new_selector
)
75 struct s2mps11_info
*s2mps11
= rdev_get_drvdata(rdev
);
76 unsigned int ramp_delay
= 0;
77 int old_volt
, new_volt
;
79 switch (rdev_get_id(rdev
)) {
81 ramp_delay
= s2mps11
->ramp_delay2
;
85 ramp_delay
= s2mps11
->ramp_delay34
;
88 ramp_delay
= s2mps11
->ramp_delay5
;
92 ramp_delay
= s2mps11
->ramp_delay16
;
97 ramp_delay
= s2mps11
->ramp_delay7810
;
100 ramp_delay
= s2mps11
->ramp_delay9
;
104 ramp_delay
= rdev
->desc
->ramp_delay
;
106 old_volt
= rdev
->desc
->min_uV
+ (rdev
->desc
->uV_step
* old_selector
);
107 new_volt
= rdev
->desc
->min_uV
+ (rdev
->desc
->uV_step
* new_selector
);
109 return DIV_ROUND_UP(abs(new_volt
- old_volt
), ramp_delay
);
112 static int s2mps11_set_ramp_delay(struct regulator_dev
*rdev
, int ramp_delay
)
114 struct s2mps11_info
*s2mps11
= rdev_get_drvdata(rdev
);
115 unsigned int ramp_val
, ramp_shift
, ramp_reg
= S2MPS11_REG_RAMP_BUCK
;
116 unsigned int ramp_enable
= 1, enable_shift
= 0;
119 switch (rdev_get_id(rdev
)) {
121 if (ramp_delay
> s2mps11
->ramp_delay16
)
122 s2mps11
->ramp_delay16
= ramp_delay
;
124 ramp_delay
= s2mps11
->ramp_delay16
;
126 ramp_shift
= S2MPS11_BUCK16_RAMP_SHIFT
;
129 enable_shift
= S2MPS11_BUCK2_RAMP_EN_SHIFT
;
135 s2mps11
->ramp_delay2
= ramp_delay
;
136 ramp_shift
= S2MPS11_BUCK2_RAMP_SHIFT
;
137 ramp_reg
= S2MPS11_REG_RAMP
;
140 enable_shift
= S2MPS11_BUCK3_RAMP_EN_SHIFT
;
146 if (ramp_delay
> s2mps11
->ramp_delay34
)
147 s2mps11
->ramp_delay34
= ramp_delay
;
149 ramp_delay
= s2mps11
->ramp_delay34
;
151 ramp_shift
= S2MPS11_BUCK34_RAMP_SHIFT
;
152 ramp_reg
= S2MPS11_REG_RAMP
;
155 enable_shift
= S2MPS11_BUCK4_RAMP_EN_SHIFT
;
161 if (ramp_delay
> s2mps11
->ramp_delay34
)
162 s2mps11
->ramp_delay34
= ramp_delay
;
164 ramp_delay
= s2mps11
->ramp_delay34
;
166 ramp_shift
= S2MPS11_BUCK34_RAMP_SHIFT
;
167 ramp_reg
= S2MPS11_REG_RAMP
;
170 s2mps11
->ramp_delay5
= ramp_delay
;
171 ramp_shift
= S2MPS11_BUCK5_RAMP_SHIFT
;
174 enable_shift
= S2MPS11_BUCK6_RAMP_EN_SHIFT
;
180 if (ramp_delay
> s2mps11
->ramp_delay16
)
181 s2mps11
->ramp_delay16
= ramp_delay
;
183 ramp_delay
= s2mps11
->ramp_delay16
;
185 ramp_shift
= S2MPS11_BUCK16_RAMP_SHIFT
;
190 if (ramp_delay
> s2mps11
->ramp_delay7810
)
191 s2mps11
->ramp_delay7810
= ramp_delay
;
193 ramp_delay
= s2mps11
->ramp_delay7810
;
195 ramp_shift
= S2MPS11_BUCK7810_RAMP_SHIFT
;
198 s2mps11
->ramp_delay9
= ramp_delay
;
199 ramp_shift
= S2MPS11_BUCK9_RAMP_SHIFT
;
208 /* Ramp delay can be enabled/disabled only for buck[2346] */
209 if ((rdev_get_id(rdev
) >= S2MPS11_BUCK2
&&
210 rdev_get_id(rdev
) <= S2MPS11_BUCK4
) ||
211 rdev_get_id(rdev
) == S2MPS11_BUCK6
) {
212 ret
= regmap_update_bits(rdev
->regmap
, S2MPS11_REG_RAMP
,
213 1 << enable_shift
, 1 << enable_shift
);
215 dev_err(&rdev
->dev
, "failed to enable ramp rate\n");
220 ramp_val
= get_ramp_delay(ramp_delay
);
222 return regmap_update_bits(rdev
->regmap
, ramp_reg
, 0x3 << ramp_shift
,
223 ramp_val
<< ramp_shift
);
226 return regmap_update_bits(rdev
->regmap
, S2MPS11_REG_RAMP
,
227 1 << enable_shift
, 0);
230 static struct regulator_ops s2mps11_ldo_ops
= {
231 .list_voltage
= regulator_list_voltage_linear
,
232 .map_voltage
= regulator_map_voltage_linear
,
233 .is_enabled
= regulator_is_enabled_regmap
,
234 .enable
= regulator_enable_regmap
,
235 .disable
= regulator_disable_regmap
,
236 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
237 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
238 .set_voltage_time_sel
= regulator_set_voltage_time_sel
,
241 static struct regulator_ops s2mps11_buck_ops
= {
242 .list_voltage
= regulator_list_voltage_linear
,
243 .map_voltage
= regulator_map_voltage_linear
,
244 .is_enabled
= regulator_is_enabled_regmap
,
245 .enable
= regulator_enable_regmap
,
246 .disable
= regulator_disable_regmap
,
247 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
248 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
249 .set_voltage_time_sel
= s2mps11_regulator_set_voltage_time_sel
,
250 .set_ramp_delay
= s2mps11_set_ramp_delay
,
253 #define regulator_desc_s2mps11_ldo1(num) { \
255 .id = S2MPS11_LDO##num, \
256 .ops = &s2mps11_ldo_ops, \
257 .type = REGULATOR_VOLTAGE, \
258 .owner = THIS_MODULE, \
259 .min_uV = S2MPS11_LDO_MIN, \
260 .uV_step = S2MPS11_LDO_STEP1, \
261 .n_voltages = S2MPS11_LDO_N_VOLTAGES, \
262 .vsel_reg = S2MPS11_REG_L1CTRL + num - 1, \
263 .vsel_mask = S2MPS11_LDO_VSEL_MASK, \
264 .enable_reg = S2MPS11_REG_L1CTRL + num - 1, \
265 .enable_mask = S2MPS11_ENABLE_MASK \
267 #define regulator_desc_s2mps11_ldo2(num) { \
269 .id = S2MPS11_LDO##num, \
270 .ops = &s2mps11_ldo_ops, \
271 .type = REGULATOR_VOLTAGE, \
272 .owner = THIS_MODULE, \
273 .min_uV = S2MPS11_LDO_MIN, \
274 .uV_step = S2MPS11_LDO_STEP2, \
275 .n_voltages = S2MPS11_LDO_N_VOLTAGES, \
276 .vsel_reg = S2MPS11_REG_L1CTRL + num - 1, \
277 .vsel_mask = S2MPS11_LDO_VSEL_MASK, \
278 .enable_reg = S2MPS11_REG_L1CTRL + num - 1, \
279 .enable_mask = S2MPS11_ENABLE_MASK \
282 #define regulator_desc_s2mps11_buck1_4(num) { \
283 .name = "BUCK"#num, \
284 .id = S2MPS11_BUCK##num, \
285 .ops = &s2mps11_buck_ops, \
286 .type = REGULATOR_VOLTAGE, \
287 .owner = THIS_MODULE, \
288 .min_uV = S2MPS11_BUCK_MIN1, \
289 .uV_step = S2MPS11_BUCK_STEP1, \
290 .n_voltages = S2MPS11_BUCK_N_VOLTAGES, \
291 .ramp_delay = S2MPS11_RAMP_DELAY, \
292 .vsel_reg = S2MPS11_REG_B1CTRL2 + (num - 1) * 2, \
293 .vsel_mask = S2MPS11_BUCK_VSEL_MASK, \
294 .enable_reg = S2MPS11_REG_B1CTRL1 + (num - 1) * 2, \
295 .enable_mask = S2MPS11_ENABLE_MASK \
298 #define regulator_desc_s2mps11_buck5 { \
300 .id = S2MPS11_BUCK5, \
301 .ops = &s2mps11_buck_ops, \
302 .type = REGULATOR_VOLTAGE, \
303 .owner = THIS_MODULE, \
304 .min_uV = S2MPS11_BUCK_MIN1, \
305 .uV_step = S2MPS11_BUCK_STEP1, \
306 .n_voltages = S2MPS11_BUCK_N_VOLTAGES, \
307 .ramp_delay = S2MPS11_RAMP_DELAY, \
308 .vsel_reg = S2MPS11_REG_B5CTRL2, \
309 .vsel_mask = S2MPS11_BUCK_VSEL_MASK, \
310 .enable_reg = S2MPS11_REG_B5CTRL1, \
311 .enable_mask = S2MPS11_ENABLE_MASK \
314 #define regulator_desc_s2mps11_buck6_8(num) { \
315 .name = "BUCK"#num, \
316 .id = S2MPS11_BUCK##num, \
317 .ops = &s2mps11_buck_ops, \
318 .type = REGULATOR_VOLTAGE, \
319 .owner = THIS_MODULE, \
320 .min_uV = S2MPS11_BUCK_MIN1, \
321 .uV_step = S2MPS11_BUCK_STEP1, \
322 .n_voltages = S2MPS11_BUCK_N_VOLTAGES, \
323 .ramp_delay = S2MPS11_RAMP_DELAY, \
324 .vsel_reg = S2MPS11_REG_B6CTRL2 + (num - 6) * 2, \
325 .vsel_mask = S2MPS11_BUCK_VSEL_MASK, \
326 .enable_reg = S2MPS11_REG_B6CTRL1 + (num - 6) * 2, \
327 .enable_mask = S2MPS11_ENABLE_MASK \
330 #define regulator_desc_s2mps11_buck9 { \
332 .id = S2MPS11_BUCK9, \
333 .ops = &s2mps11_buck_ops, \
334 .type = REGULATOR_VOLTAGE, \
335 .owner = THIS_MODULE, \
336 .min_uV = S2MPS11_BUCK_MIN3, \
337 .uV_step = S2MPS11_BUCK_STEP3, \
338 .n_voltages = S2MPS11_BUCK_N_VOLTAGES, \
339 .ramp_delay = S2MPS11_RAMP_DELAY, \
340 .vsel_reg = S2MPS11_REG_B9CTRL2, \
341 .vsel_mask = S2MPS11_BUCK_VSEL_MASK, \
342 .enable_reg = S2MPS11_REG_B9CTRL1, \
343 .enable_mask = S2MPS11_ENABLE_MASK \
346 #define regulator_desc_s2mps11_buck10 { \
348 .id = S2MPS11_BUCK10, \
349 .ops = &s2mps11_buck_ops, \
350 .type = REGULATOR_VOLTAGE, \
351 .owner = THIS_MODULE, \
352 .min_uV = S2MPS11_BUCK_MIN2, \
353 .uV_step = S2MPS11_BUCK_STEP2, \
354 .n_voltages = S2MPS11_BUCK_N_VOLTAGES, \
355 .ramp_delay = S2MPS11_RAMP_DELAY, \
356 .vsel_reg = S2MPS11_REG_B10CTRL2, \
357 .vsel_mask = S2MPS11_BUCK_VSEL_MASK, \
358 .enable_reg = S2MPS11_REG_B10CTRL1, \
359 .enable_mask = S2MPS11_ENABLE_MASK \
362 static const struct regulator_desc s2mps11_regulators
[] = {
363 regulator_desc_s2mps11_ldo2(1),
364 regulator_desc_s2mps11_ldo1(2),
365 regulator_desc_s2mps11_ldo1(3),
366 regulator_desc_s2mps11_ldo1(4),
367 regulator_desc_s2mps11_ldo1(5),
368 regulator_desc_s2mps11_ldo2(6),
369 regulator_desc_s2mps11_ldo1(7),
370 regulator_desc_s2mps11_ldo1(8),
371 regulator_desc_s2mps11_ldo1(9),
372 regulator_desc_s2mps11_ldo1(10),
373 regulator_desc_s2mps11_ldo2(11),
374 regulator_desc_s2mps11_ldo1(12),
375 regulator_desc_s2mps11_ldo1(13),
376 regulator_desc_s2mps11_ldo1(14),
377 regulator_desc_s2mps11_ldo1(15),
378 regulator_desc_s2mps11_ldo1(16),
379 regulator_desc_s2mps11_ldo1(17),
380 regulator_desc_s2mps11_ldo1(18),
381 regulator_desc_s2mps11_ldo1(19),
382 regulator_desc_s2mps11_ldo1(20),
383 regulator_desc_s2mps11_ldo1(21),
384 regulator_desc_s2mps11_ldo2(22),
385 regulator_desc_s2mps11_ldo2(23),
386 regulator_desc_s2mps11_ldo1(24),
387 regulator_desc_s2mps11_ldo1(25),
388 regulator_desc_s2mps11_ldo1(26),
389 regulator_desc_s2mps11_ldo2(27),
390 regulator_desc_s2mps11_ldo1(28),
391 regulator_desc_s2mps11_ldo1(29),
392 regulator_desc_s2mps11_ldo1(30),
393 regulator_desc_s2mps11_ldo1(31),
394 regulator_desc_s2mps11_ldo1(32),
395 regulator_desc_s2mps11_ldo1(33),
396 regulator_desc_s2mps11_ldo1(34),
397 regulator_desc_s2mps11_ldo1(35),
398 regulator_desc_s2mps11_ldo1(36),
399 regulator_desc_s2mps11_ldo1(37),
400 regulator_desc_s2mps11_ldo1(38),
401 regulator_desc_s2mps11_buck1_4(1),
402 regulator_desc_s2mps11_buck1_4(2),
403 regulator_desc_s2mps11_buck1_4(3),
404 regulator_desc_s2mps11_buck1_4(4),
405 regulator_desc_s2mps11_buck5
,
406 regulator_desc_s2mps11_buck6_8(6),
407 regulator_desc_s2mps11_buck6_8(7),
408 regulator_desc_s2mps11_buck6_8(8),
409 regulator_desc_s2mps11_buck9
,
410 regulator_desc_s2mps11_buck10
,
413 static int s2mps14_regulator_enable(struct regulator_dev
*rdev
)
415 struct s2mps11_info
*s2mps11
= rdev_get_drvdata(rdev
);
418 if (s2mps11
->s2mps14_suspend_state
& (1 << rdev_get_id(rdev
)))
419 val
= S2MPS14_ENABLE_SUSPEND
;
420 else if (gpio_is_valid(s2mps11
->ext_control_gpio
[rdev_get_id(rdev
)]))
421 val
= S2MPS14_ENABLE_EXT_CONTROL
;
423 val
= rdev
->desc
->enable_mask
;
425 return regmap_update_bits(rdev
->regmap
, rdev
->desc
->enable_reg
,
426 rdev
->desc
->enable_mask
, val
);
429 static int s2mps14_regulator_set_suspend_disable(struct regulator_dev
*rdev
)
433 struct s2mps11_info
*s2mps11
= rdev_get_drvdata(rdev
);
435 /* LDO3 should be always on and does not support suspend mode */
436 if (rdev_get_id(rdev
) == S2MPS14_LDO3
)
439 ret
= regmap_read(rdev
->regmap
, rdev
->desc
->enable_reg
, &val
);
443 s2mps11
->s2mps14_suspend_state
|= (1 << rdev_get_id(rdev
));
445 * Don't enable suspend mode if regulator is already disabled because
446 * this would effectively for a short time turn on the regulator after
448 * However we still want to toggle the suspend_state bit for regulator
449 * in case if it got enabled before suspending the system.
451 if (!(val
& rdev
->desc
->enable_mask
))
454 return regmap_update_bits(rdev
->regmap
, rdev
->desc
->enable_reg
,
455 rdev
->desc
->enable_mask
, S2MPS14_ENABLE_SUSPEND
);
458 static struct regulator_ops s2mps14_reg_ops
= {
459 .list_voltage
= regulator_list_voltage_linear
,
460 .map_voltage
= regulator_map_voltage_linear
,
461 .is_enabled
= regulator_is_enabled_regmap
,
462 .enable
= s2mps14_regulator_enable
,
463 .disable
= regulator_disable_regmap
,
464 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
465 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
466 .set_voltage_time_sel
= regulator_set_voltage_time_sel
,
467 .set_suspend_disable
= s2mps14_regulator_set_suspend_disable
,
470 #define regulator_desc_s2mps14_ldo1(num) { \
472 .id = S2MPS14_LDO##num, \
473 .ops = &s2mps14_reg_ops, \
474 .type = REGULATOR_VOLTAGE, \
475 .owner = THIS_MODULE, \
476 .min_uV = S2MPS14_LDO_MIN_800MV, \
477 .uV_step = S2MPS14_LDO_STEP_25MV, \
478 .n_voltages = S2MPS14_LDO_N_VOLTAGES, \
479 .vsel_reg = S2MPS14_REG_L1CTRL + num - 1, \
480 .vsel_mask = S2MPS14_LDO_VSEL_MASK, \
481 .enable_reg = S2MPS14_REG_L1CTRL + num - 1, \
482 .enable_mask = S2MPS14_ENABLE_MASK \
484 #define regulator_desc_s2mps14_ldo2(num) { \
486 .id = S2MPS14_LDO##num, \
487 .ops = &s2mps14_reg_ops, \
488 .type = REGULATOR_VOLTAGE, \
489 .owner = THIS_MODULE, \
490 .min_uV = S2MPS14_LDO_MIN_1800MV, \
491 .uV_step = S2MPS14_LDO_STEP_25MV, \
492 .n_voltages = S2MPS14_LDO_N_VOLTAGES, \
493 .vsel_reg = S2MPS14_REG_L1CTRL + num - 1, \
494 .vsel_mask = S2MPS14_LDO_VSEL_MASK, \
495 .enable_reg = S2MPS14_REG_L1CTRL + num - 1, \
496 .enable_mask = S2MPS14_ENABLE_MASK \
498 #define regulator_desc_s2mps14_ldo3(num) { \
500 .id = S2MPS14_LDO##num, \
501 .ops = &s2mps14_reg_ops, \
502 .type = REGULATOR_VOLTAGE, \
503 .owner = THIS_MODULE, \
504 .min_uV = S2MPS14_LDO_MIN_800MV, \
505 .uV_step = S2MPS14_LDO_STEP_12_5MV, \
506 .n_voltages = S2MPS14_LDO_N_VOLTAGES, \
507 .vsel_reg = S2MPS14_REG_L1CTRL + num - 1, \
508 .vsel_mask = S2MPS14_LDO_VSEL_MASK, \
509 .enable_reg = S2MPS14_REG_L1CTRL + num - 1, \
510 .enable_mask = S2MPS14_ENABLE_MASK \
512 #define regulator_desc_s2mps14_buck1235(num) { \
513 .name = "BUCK"#num, \
514 .id = S2MPS14_BUCK##num, \
515 .ops = &s2mps14_reg_ops, \
516 .type = REGULATOR_VOLTAGE, \
517 .owner = THIS_MODULE, \
518 .min_uV = S2MPS14_BUCK1235_MIN_600MV, \
519 .uV_step = S2MPS14_BUCK1235_STEP_6_25MV, \
520 .n_voltages = S2MPS14_BUCK_N_VOLTAGES, \
521 .linear_min_sel = S2MPS14_BUCK1235_START_SEL, \
522 .ramp_delay = S2MPS14_BUCK_RAMP_DELAY, \
523 .vsel_reg = S2MPS14_REG_B1CTRL2 + (num - 1) * 2, \
524 .vsel_mask = S2MPS14_BUCK_VSEL_MASK, \
525 .enable_reg = S2MPS14_REG_B1CTRL1 + (num - 1) * 2, \
526 .enable_mask = S2MPS14_ENABLE_MASK \
528 #define regulator_desc_s2mps14_buck4(num) { \
529 .name = "BUCK"#num, \
530 .id = S2MPS14_BUCK##num, \
531 .ops = &s2mps14_reg_ops, \
532 .type = REGULATOR_VOLTAGE, \
533 .owner = THIS_MODULE, \
534 .min_uV = S2MPS14_BUCK4_MIN_1400MV, \
535 .uV_step = S2MPS14_BUCK4_STEP_12_5MV, \
536 .n_voltages = S2MPS14_BUCK_N_VOLTAGES, \
537 .linear_min_sel = S2MPS14_BUCK4_START_SEL, \
538 .ramp_delay = S2MPS14_BUCK_RAMP_DELAY, \
539 .vsel_reg = S2MPS14_REG_B1CTRL2 + (num - 1) * 2, \
540 .vsel_mask = S2MPS14_BUCK_VSEL_MASK, \
541 .enable_reg = S2MPS14_REG_B1CTRL1 + (num - 1) * 2, \
542 .enable_mask = S2MPS14_ENABLE_MASK \
545 static const struct regulator_desc s2mps14_regulators
[] = {
546 regulator_desc_s2mps14_ldo3(1),
547 regulator_desc_s2mps14_ldo3(2),
548 regulator_desc_s2mps14_ldo1(3),
549 regulator_desc_s2mps14_ldo1(4),
550 regulator_desc_s2mps14_ldo3(5),
551 regulator_desc_s2mps14_ldo3(6),
552 regulator_desc_s2mps14_ldo1(7),
553 regulator_desc_s2mps14_ldo2(8),
554 regulator_desc_s2mps14_ldo3(9),
555 regulator_desc_s2mps14_ldo3(10),
556 regulator_desc_s2mps14_ldo1(11),
557 regulator_desc_s2mps14_ldo2(12),
558 regulator_desc_s2mps14_ldo2(13),
559 regulator_desc_s2mps14_ldo2(14),
560 regulator_desc_s2mps14_ldo2(15),
561 regulator_desc_s2mps14_ldo2(16),
562 regulator_desc_s2mps14_ldo2(17),
563 regulator_desc_s2mps14_ldo2(18),
564 regulator_desc_s2mps14_ldo1(19),
565 regulator_desc_s2mps14_ldo1(20),
566 regulator_desc_s2mps14_ldo1(21),
567 regulator_desc_s2mps14_ldo3(22),
568 regulator_desc_s2mps14_ldo1(23),
569 regulator_desc_s2mps14_ldo2(24),
570 regulator_desc_s2mps14_ldo2(25),
571 regulator_desc_s2mps14_buck1235(1),
572 regulator_desc_s2mps14_buck1235(2),
573 regulator_desc_s2mps14_buck1235(3),
574 regulator_desc_s2mps14_buck4(4),
575 regulator_desc_s2mps14_buck1235(5),
578 static int s2mps14_pmic_enable_ext_control(struct s2mps11_info
*s2mps11
,
579 struct regulator_dev
*rdev
)
581 return regmap_update_bits(rdev
->regmap
, rdev
->desc
->enable_reg
,
582 rdev
->desc
->enable_mask
, S2MPS14_ENABLE_EXT_CONTROL
);
585 static void s2mps14_pmic_dt_parse_ext_control_gpio(struct platform_device
*pdev
,
586 struct of_regulator_match
*rdata
, struct s2mps11_info
*s2mps11
)
588 int *gpio
= s2mps11
->ext_control_gpio
;
590 unsigned int valid_regulators
[3] = { S2MPS14_LDO10
, S2MPS14_LDO11
,
593 for (i
= 0; i
< ARRAY_SIZE(valid_regulators
); i
++) {
594 unsigned int reg
= valid_regulators
[i
];
596 if (!rdata
[reg
].init_data
|| !rdata
[reg
].of_node
)
599 gpio
[reg
] = of_get_named_gpio(rdata
[reg
].of_node
,
600 "samsung,ext-control-gpios", 0);
601 if (gpio_is_valid(gpio
[reg
]))
602 dev_dbg(&pdev
->dev
, "Using GPIO %d for ext-control over %d/%s\n",
603 gpio
[reg
], reg
, rdata
[reg
].name
);
607 static int s2mps11_pmic_dt_parse(struct platform_device
*pdev
,
608 struct of_regulator_match
*rdata
, struct s2mps11_info
*s2mps11
,
609 enum sec_device_type dev_type
)
611 struct device_node
*reg_np
;
613 reg_np
= of_get_child_by_name(pdev
->dev
.parent
->of_node
, "regulators");
615 dev_err(&pdev
->dev
, "could not find regulators sub-node\n");
619 of_regulator_match(&pdev
->dev
, reg_np
, rdata
, s2mps11
->rdev_num
);
620 if (dev_type
== S2MPS14X
)
621 s2mps14_pmic_dt_parse_ext_control_gpio(pdev
, rdata
, s2mps11
);
628 static int s2mps11_pmic_probe(struct platform_device
*pdev
)
630 struct sec_pmic_dev
*iodev
= dev_get_drvdata(pdev
->dev
.parent
);
631 struct sec_platform_data
*pdata
= NULL
;
632 struct of_regulator_match
*rdata
= NULL
;
633 struct regulator_config config
= { };
634 struct s2mps11_info
*s2mps11
;
636 const struct regulator_desc
*regulators
;
637 enum sec_device_type dev_type
;
639 s2mps11
= devm_kzalloc(&pdev
->dev
, sizeof(struct s2mps11_info
),
644 dev_type
= platform_get_device_id(pdev
)->driver_data
;
647 s2mps11
->rdev_num
= ARRAY_SIZE(s2mps11_regulators
);
648 regulators
= s2mps11_regulators
;
651 s2mps11
->rdev_num
= ARRAY_SIZE(s2mps14_regulators
);
652 regulators
= s2mps14_regulators
;
655 dev_err(&pdev
->dev
, "Invalid device type: %u\n", dev_type
);
659 s2mps11
->ext_control_gpio
= devm_kzalloc(&pdev
->dev
,
660 sizeof(*s2mps11
->ext_control_gpio
) * s2mps11
->rdev_num
,
662 if (!s2mps11
->ext_control_gpio
)
665 * 0 is a valid GPIO so initialize all GPIO-s to negative value
666 * to indicate that external control won't be used for this regulator.
668 for (i
= 0; i
< s2mps11
->rdev_num
; i
++)
669 s2mps11
->ext_control_gpio
[i
] = -EINVAL
;
671 if (!iodev
->dev
->of_node
) {
673 pdata
= iodev
->pdata
;
676 dev_err(pdev
->dev
.parent
,
677 "Platform data or DT node not supplied\n");
682 rdata
= kzalloc(sizeof(*rdata
) * s2mps11
->rdev_num
, GFP_KERNEL
);
686 for (i
= 0; i
< s2mps11
->rdev_num
; i
++)
687 rdata
[i
].name
= regulators
[i
].name
;
689 ret
= s2mps11_pmic_dt_parse(pdev
, rdata
, s2mps11
, dev_type
);
694 platform_set_drvdata(pdev
, s2mps11
);
696 config
.dev
= &pdev
->dev
;
697 config
.regmap
= iodev
->regmap_pmic
;
698 config
.driver_data
= s2mps11
;
699 config
.ena_gpio_flags
= GPIOF_OUT_INIT_HIGH
;
700 for (i
= 0; i
< s2mps11
->rdev_num
; i
++) {
701 struct regulator_dev
*regulator
;
704 config
.init_data
= pdata
->regulators
[i
].initdata
;
705 config
.of_node
= pdata
->regulators
[i
].reg_node
;
707 config
.init_data
= rdata
[i
].init_data
;
708 config
.of_node
= rdata
[i
].of_node
;
710 config
.ena_gpio
= s2mps11
->ext_control_gpio
[i
];
712 regulator
= devm_regulator_register(&pdev
->dev
,
713 ®ulators
[i
], &config
);
714 if (IS_ERR(regulator
)) {
715 ret
= PTR_ERR(regulator
);
716 dev_err(&pdev
->dev
, "regulator init failed for %d\n",
721 if (gpio_is_valid(s2mps11
->ext_control_gpio
[i
])) {
722 ret
= s2mps14_pmic_enable_ext_control(s2mps11
,
726 "failed to enable GPIO control over %s: %d\n",
727 regulator
->desc
->name
, ret
);
739 static const struct platform_device_id s2mps11_pmic_id
[] = {
740 { "s2mps11-pmic", S2MPS11X
},
741 { "s2mps14-pmic", S2MPS14X
},
744 MODULE_DEVICE_TABLE(platform
, s2mps11_pmic_id
);
746 static struct platform_driver s2mps11_pmic_driver
= {
748 .name
= "s2mps11-pmic",
749 .owner
= THIS_MODULE
,
751 .probe
= s2mps11_pmic_probe
,
752 .id_table
= s2mps11_pmic_id
,
755 static int __init
s2mps11_pmic_init(void)
757 return platform_driver_register(&s2mps11_pmic_driver
);
759 subsys_initcall(s2mps11_pmic_init
);
761 static void __exit
s2mps11_pmic_exit(void)
763 platform_driver_unregister(&s2mps11_pmic_driver
);
765 module_exit(s2mps11_pmic_exit
);
767 /* Module information */
768 MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
769 MODULE_DESCRIPTION("SAMSUNG S2MPS11/S2MPS14 Regulator Driver");
770 MODULE_LICENSE("GPL");