regulator: s5m8767: Fix build in non-DT case
[deliverable/linux.git] / drivers / regulator / s5m8767.c
CommitLineData
9767ec7f
SK
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>
9767ec7f
SK
15#include <linux/err.h>
16#include <linux/gpio.h>
26aec009 17#include <linux/of_gpio.h>
9767ec7f
SK
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>
54227bcf
SK
23#include <linux/mfd/samsung/core.h>
24#include <linux/mfd/samsung/s5m8767.h>
26aec009
ADK
25#include <linux/regulator/of_regulator.h>
26
27#define S5M8767_OPMODE_NORMAL_MODE 0x1
9767ec7f
SK
28
29struct s5m8767_info {
30 struct device *dev;
63063bfb 31 struct sec_pmic_dev *iodev;
9767ec7f
SK
32 int num_regulators;
33 struct regulator_dev **rdev;
63063bfb 34 struct sec_opmode_data *opmode;
9767ec7f
SK
35
36 int ramp_delay;
37 bool buck2_ramp;
38 bool buck3_ramp;
39 bool buck4_ramp;
40
41 bool buck2_gpiodvs;
42 bool buck3_gpiodvs;
43 bool buck4_gpiodvs;
44 u8 buck2_vol[8];
45 u8 buck3_vol[8];
46 u8 buck4_vol[8];
47 int buck_gpios[3];
c848bc85 48 int buck_ds[3];
9767ec7f
SK
49 int buck_gpioindex;
50};
51
63063bfb 52struct sec_voltage_desc {
9767ec7f
SK
53 int max;
54 int min;
55 int step;
56};
57
63063bfb 58static const struct sec_voltage_desc buck_voltage_val1 = {
9767ec7f
SK
59 .max = 2225000,
60 .min = 650000,
61 .step = 6250,
62};
63
63063bfb 64static const struct sec_voltage_desc buck_voltage_val2 = {
9767ec7f
SK
65 .max = 1600000,
66 .min = 600000,
67 .step = 6250,
68};
69
63063bfb 70static const struct sec_voltage_desc buck_voltage_val3 = {
9767ec7f
SK
71 .max = 3000000,
72 .min = 750000,
73 .step = 12500,
74};
75
63063bfb 76static const struct sec_voltage_desc ldo_voltage_val1 = {
9767ec7f
SK
77 .max = 3950000,
78 .min = 800000,
79 .step = 50000,
80};
81
63063bfb 82static const struct sec_voltage_desc ldo_voltage_val2 = {
9767ec7f
SK
83 .max = 2375000,
84 .min = 800000,
85 .step = 25000,
86};
87
63063bfb 88static const struct sec_voltage_desc *reg_voltage_map[] = {
9767ec7f
SK
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,
126};
127
5ceba7ba 128static unsigned int s5m8767_opmode_reg[][4] = {
7e44bb83
SK
129 /* {OFF, ON, LOWPOWER, SUSPEND} */
130 /* LDO1 ... LDO28 */
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 */
159
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 */
170};
171
172static int s5m8767_get_register(struct regulator_dev *rdev, int *reg,
173 int *enable_ctrl)
9767ec7f 174{
9bb096ff 175 int i, reg_id = rdev_get_id(rdev);
7e44bb83
SK
176 unsigned int mode;
177 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
9767ec7f
SK
178
179 switch (reg_id) {
180 case S5M8767_LDO1 ... S5M8767_LDO2:
181 *reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1);
182 break;
183 case S5M8767_LDO3 ... S5M8767_LDO28:
184 *reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3);
185 break;
186 case S5M8767_BUCK1:
187 *reg = S5M8767_REG_BUCK1CTRL1;
188 break;
189 case S5M8767_BUCK2 ... S5M8767_BUCK4:
190 *reg = S5M8767_REG_BUCK2CTRL + (reg_id - S5M8767_BUCK2) * 9;
191 break;
192 case S5M8767_BUCK5:
193 *reg = S5M8767_REG_BUCK5CTRL1;
194 break;
195 case S5M8767_BUCK6 ... S5M8767_BUCK9:
196 *reg = S5M8767_REG_BUCK6CTRL1 + (reg_id - S5M8767_BUCK6) * 2;
197 break;
198 default:
199 return -EINVAL;
200 }
201
9bb096ff
ADK
202 for (i = 0; i < s5m8767->num_regulators; i++) {
203 if (s5m8767->opmode[i].id == reg_id) {
204 mode = s5m8767->opmode[i].mode;
205 break;
206 }
207 }
208
209 if (i < s5m8767->num_regulators)
210 *enable_ctrl =
211 s5m8767_opmode_reg[reg_id][mode] << S5M8767_ENCTRL_SHIFT;
212
9767ec7f
SK
213 return 0;
214}
215
216static int s5m8767_reg_is_enabled(struct regulator_dev *rdev)
217{
218 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
219 int ret, reg;
7e44bb83 220 int mask = 0xc0, enable_ctrl;
3ef30398 221 unsigned int val;
9767ec7f 222
7e44bb83 223 ret = s5m8767_get_register(rdev, &reg, &enable_ctrl);
9767ec7f
SK
224 if (ret == -EINVAL)
225 return 1;
226 else if (ret)
227 return ret;
228
63063bfb 229 ret = sec_reg_read(s5m8767->iodev, reg, &val);
9767ec7f
SK
230 if (ret)
231 return ret;
232
7e44bb83 233 return (val & mask) == enable_ctrl;
9767ec7f
SK
234}
235
236static int s5m8767_reg_enable(struct regulator_dev *rdev)
237{
238 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
239 int ret, reg;
7e44bb83 240 int mask = 0xc0, enable_ctrl;
9767ec7f 241
7e44bb83 242 ret = s5m8767_get_register(rdev, &reg, &enable_ctrl);
9767ec7f
SK
243 if (ret)
244 return ret;
245
63063bfb 246 return sec_reg_update(s5m8767->iodev, reg, enable_ctrl, mask);
9767ec7f
SK
247}
248
249static int s5m8767_reg_disable(struct regulator_dev *rdev)
250{
251 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
252 int ret, reg;
7e44bb83 253 int mask = 0xc0, enable_ctrl;
9767ec7f 254
7e44bb83 255 ret = s5m8767_get_register(rdev, &reg, &enable_ctrl);
9767ec7f
SK
256 if (ret)
257 return ret;
258
63063bfb 259 return sec_reg_update(s5m8767->iodev, reg, ~mask, mask);
9767ec7f
SK
260}
261
31a932e1 262static int s5m8767_get_vsel_reg(int reg_id, struct s5m8767_info *s5m8767)
9767ec7f 263{
9767ec7f
SK
264 int reg;
265
266 switch (reg_id) {
267 case S5M8767_LDO1 ... S5M8767_LDO2:
268 reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1);
269 break;
270 case S5M8767_LDO3 ... S5M8767_LDO28:
271 reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3);
272 break;
273 case S5M8767_BUCK1:
274 reg = S5M8767_REG_BUCK1CTRL2;
275 break;
276 case S5M8767_BUCK2:
da130ab2 277 reg = S5M8767_REG_BUCK2DVS1;
0a41685f
AL
278 if (s5m8767->buck2_gpiodvs)
279 reg += s5m8767->buck_gpioindex;
9767ec7f
SK
280 break;
281 case S5M8767_BUCK3:
da130ab2 282 reg = S5M8767_REG_BUCK3DVS1;
0a41685f
AL
283 if (s5m8767->buck3_gpiodvs)
284 reg += s5m8767->buck_gpioindex;
9767ec7f
SK
285 break;
286 case S5M8767_BUCK4:
da130ab2 287 reg = S5M8767_REG_BUCK4DVS1;
0a41685f
AL
288 if (s5m8767->buck4_gpiodvs)
289 reg += s5m8767->buck_gpioindex;
9767ec7f
SK
290 break;
291 case S5M8767_BUCK5:
292 reg = S5M8767_REG_BUCK5CTRL2;
293 break;
294 case S5M8767_BUCK6 ... S5M8767_BUCK9:
295 reg = S5M8767_REG_BUCK6CTRL2 + (reg_id - S5M8767_BUCK6) * 2;
296 break;
297 default:
298 return -EINVAL;
299 }
300
31a932e1 301 return reg;
9767ec7f
SK
302}
303
854f73ec
AL
304static int s5m8767_convert_voltage_to_sel(const struct sec_voltage_desc *desc,
305 int min_vol)
9767ec7f 306{
5b5e977c 307 int selector = 0;
9767ec7f
SK
308
309 if (desc == NULL)
310 return -EINVAL;
311
854f73ec 312 if (min_vol > desc->max)
9767ec7f
SK
313 return -EINVAL;
314
94e85a3c
AL
315 if (min_vol < desc->min)
316 min_vol = desc->min;
317
318 selector = DIV_ROUND_UP(min_vol - desc->min, desc->step);
9767ec7f 319
854f73ec 320 if (desc->min + desc->step * selector > desc->max)
9767ec7f
SK
321 return -EINVAL;
322
5b5e977c 323 return selector;
9767ec7f
SK
324}
325
df2643cf 326static inline int s5m8767_set_high(struct s5m8767_info *s5m8767)
321d2aba
AL
327{
328 int temp_index = s5m8767->buck_gpioindex;
329
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);
df2643cf
SK
333
334 return 0;
321d2aba
AL
335}
336
df2643cf 337static inline int s5m8767_set_low(struct s5m8767_info *s5m8767)
321d2aba
AL
338{
339 int temp_index = s5m8767->buck_gpioindex;
340
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);
df2643cf
SK
344
345 return 0;
321d2aba
AL
346}
347
df2643cf
SK
348static int s5m8767_set_voltage_sel(struct regulator_dev *rdev,
349 unsigned selector)
9767ec7f
SK
350{
351 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
20a14b84 352 int reg_id = rdev_get_id(rdev);
31a932e1 353 int old_index, index = 0;
321d2aba 354 u8 *buck234_vol = NULL;
9767ec7f
SK
355
356 switch (reg_id) {
357 case S5M8767_LDO1 ... S5M8767_LDO28:
9767ec7f
SK
358 break;
359 case S5M8767_BUCK1 ... S5M8767_BUCK6:
321d2aba
AL
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];
9767ec7f
SK
366 break;
367 case S5M8767_BUCK7 ... S5M8767_BUCK8:
368 return -EINVAL;
369 case S5M8767_BUCK9:
9767ec7f
SK
370 break;
371 default:
372 return -EINVAL;
373 }
374
321d2aba
AL
375 /* buck234_vol != NULL means to control buck234 voltage via DVS GPIO */
376 if (buck234_vol) {
df2643cf 377 while (*buck234_vol != selector) {
321d2aba
AL
378 buck234_vol++;
379 index++;
380 }
381 old_index = s5m8767->buck_gpioindex;
382 s5m8767->buck_gpioindex = index;
383
384 if (index > old_index)
df2643cf 385 return s5m8767_set_high(s5m8767);
321d2aba 386 else
df2643cf 387 return s5m8767_set_low(s5m8767);
321d2aba 388 } else {
31a932e1 389 return regulator_set_voltage_sel_regmap(rdev, selector);
321d2aba 390 }
9767ec7f
SK
391}
392
9767ec7f
SK
393static int s5m8767_set_voltage_time_sel(struct regulator_dev *rdev,
394 unsigned int old_sel,
395 unsigned int new_sel)
396{
397 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
63063bfb 398 const struct sec_voltage_desc *desc;
20a14b84 399 int reg_id = rdev_get_id(rdev);
9767ec7f 400
9767ec7f
SK
401 desc = reg_voltage_map[reg_id];
402
9d88fc0b 403 if ((old_sel < new_sel) && s5m8767->ramp_delay)
89e0f0e4 404 return DIV_ROUND_UP(desc->step * (new_sel - old_sel),
0f8b9c77 405 s5m8767->ramp_delay * 1000);
89e0f0e4 406 return 0;
9767ec7f
SK
407}
408
d35aad0c 409static struct regulator_ops s5m8767_ops = {
e2eb169b 410 .list_voltage = regulator_list_voltage_linear,
9767ec7f
SK
411 .is_enabled = s5m8767_reg_is_enabled,
412 .enable = s5m8767_reg_enable,
413 .disable = s5m8767_reg_disable,
31a932e1 414 .get_voltage_sel = regulator_get_voltage_sel_regmap,
df2643cf 415 .set_voltage_sel = s5m8767_set_voltage_sel,
9767ec7f
SK
416 .set_voltage_time_sel = s5m8767_set_voltage_time_sel,
417};
418
e2eb169b
AL
419static struct regulator_ops s5m8767_buck78_ops = {
420 .is_enabled = s5m8767_reg_is_enabled,
421 .enable = s5m8767_reg_enable,
422 .disable = s5m8767_reg_disable,
423};
424
65896e73
AL
425#define s5m8767_regulator_desc(_name) { \
426 .name = #_name, \
427 .id = S5M8767_##_name, \
428 .ops = &s5m8767_ops, \
9767ec7f
SK
429 .type = REGULATOR_VOLTAGE, \
430 .owner = THIS_MODULE, \
431}
432
e2eb169b
AL
433#define s5m8767_regulator_buck78_desc(_name) { \
434 .name = #_name, \
435 .id = S5M8767_##_name, \
436 .ops = &s5m8767_buck78_ops, \
437 .type = REGULATOR_VOLTAGE, \
438 .owner = THIS_MODULE, \
439}
440
9767ec7f 441static struct regulator_desc regulators[] = {
65896e73
AL
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),
e2eb169b
AL
476 s5m8767_regulator_buck78_desc(BUCK7),
477 s5m8767_regulator_buck78_desc(BUCK8),
65896e73 478 s5m8767_regulator_desc(BUCK9),
9767ec7f
SK
479};
480
26aec009
ADK
481#ifdef CONFIG_OF
482static int s5m8767_pmic_dt_parse_dvs_gpio(struct sec_pmic_dev *iodev,
483 struct sec_platform_data *pdata,
484 struct device_node *pmic_np)
485{
486 int i, gpio;
487
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);
493 return -EINVAL;
494 }
495 pdata->buck_gpios[i] = gpio;
496 }
497 return 0;
498}
499
500static int s5m8767_pmic_dt_parse_ds_gpio(struct sec_pmic_dev *iodev,
501 struct sec_platform_data *pdata,
502 struct device_node *pmic_np)
503{
504 int i, gpio;
505
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);
511 return -EINVAL;
512 }
513 pdata->buck_ds[i] = gpio;
514 }
515 return 0;
516}
517
518static int s5m8767_pmic_dt_parse_pdata(struct sec_pmic_dev *iodev,
519 struct sec_platform_data *pdata)
520{
521 struct device_node *pmic_np, *regulators_np, *reg_np;
522 struct sec_regulator_data *rdata;
523 struct sec_opmode_data *rmode;
524 unsigned int i, dvs_voltage_nr = 1, ret;
525
526 pmic_np = iodev->dev->of_node;
527 if (!pmic_np) {
528 dev_err(iodev->dev, "could not find pmic sub-node\n");
529 return -ENODEV;
530 }
531
532 regulators_np = of_find_node_by_name(pmic_np, "regulators");
533 if (!regulators_np) {
534 dev_err(iodev->dev, "could not find regulators sub-node\n");
535 return -EINVAL;
536 }
537
538 /* count the number of regulators to be supported in pmic */
539 pdata->num_regulators = 0;
540 for_each_child_of_node(regulators_np, reg_np)
541 pdata->num_regulators++;
542
543 rdata = devm_kzalloc(iodev->dev, sizeof(*rdata) *
544 pdata->num_regulators, GFP_KERNEL);
545 if (!rdata) {
546 dev_err(iodev->dev,
547 "could not allocate memory for regulator data\n");
548 return -ENOMEM;
549 }
550
551 rmode = devm_kzalloc(iodev->dev, sizeof(*rmode) *
552 pdata->num_regulators, GFP_KERNEL);
553 if (!rdata) {
554 dev_err(iodev->dev,
555 "could not allocate memory for regulator mode\n");
556 return -ENOMEM;
557 }
558
559 pdata->regulators = rdata;
560 pdata->opmode = rmode;
561 for_each_child_of_node(regulators_np, reg_np) {
562 for (i = 0; i < ARRAY_SIZE(regulators); i++)
563 if (!of_node_cmp(reg_np->name, regulators[i].name))
564 break;
565
566 if (i == ARRAY_SIZE(regulators)) {
567 dev_warn(iodev->dev,
568 "don't know how to configure regulator %s\n",
569 reg_np->name);
570 continue;
571 }
572
573 rdata->id = i;
574 rdata->initdata = of_get_regulator_init_data(
575 iodev->dev, reg_np);
576 rdata->reg_node = reg_np;
577 rdata++;
578 rmode->id = i;
579 if (of_property_read_u32(reg_np, "op_mode",
580 &rmode->mode)) {
581 dev_warn(iodev->dev,
582 "no op_mode property property at %s\n",
583 reg_np->full_name);
584
585 rmode->mode = S5M8767_OPMODE_NORMAL_MODE;
586 }
587 rmode++;
588 }
589
590 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-uses-gpio-dvs", NULL))
591 pdata->buck2_gpiodvs = true;
592
593 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-uses-gpio-dvs", NULL))
594 pdata->buck3_gpiodvs = true;
595
596 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-uses-gpio-dvs", NULL))
597 pdata->buck4_gpiodvs = true;
598
599 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
600 pdata->buck4_gpiodvs) {
601 ret = s5m8767_pmic_dt_parse_dvs_gpio(iodev, pdata, pmic_np);
602 if (ret)
603 return -EINVAL;
604
605 if (of_property_read_u32(pmic_np,
606 "s5m8767,pmic-buck-default-dvs-idx",
607 &pdata->buck_default_idx)) {
608 pdata->buck_default_idx = 0;
609 } else {
610 if (pdata->buck_default_idx >= 8) {
611 pdata->buck_default_idx = 0;
612 dev_info(iodev->dev,
613 "invalid value for default dvs index, use 0\n");
614 }
615 }
616 dvs_voltage_nr = 8;
617 }
618
619 ret = s5m8767_pmic_dt_parse_ds_gpio(iodev, pdata, pmic_np);
620 if (ret)
621 return -EINVAL;
622
623 if (of_property_read_u32_array(pmic_np,
624 "s5m8767,pmic-buck2-dvs-voltage",
625 pdata->buck2_voltage, dvs_voltage_nr)) {
626 dev_err(iodev->dev, "buck2 voltages not specified\n");
627 return -EINVAL;
628 }
629
630 if (of_property_read_u32_array(pmic_np,
631 "s5m8767,pmic-buck3-dvs-voltage",
632 pdata->buck3_voltage, dvs_voltage_nr)) {
633 dev_err(iodev->dev, "buck3 voltages not specified\n");
634 return -EINVAL;
635 }
636
637 if (of_property_read_u32_array(pmic_np,
638 "s5m8767,pmic-buck4-dvs-voltage",
639 pdata->buck4_voltage, dvs_voltage_nr)) {
640 dev_err(iodev->dev, "buck4 voltages not specified\n");
641 return -EINVAL;
642 }
643
644 return 0;
645}
646#else
647static int s5m8767_pmic_dt_parse_pdata(struct sec_pmic_dev *iodev,
648 struct sec_platform_data *pdata)
649{
650 return 0;
651}
652#endif /* CONFIG_OF */
653
a5023574 654static int s5m8767_pmic_probe(struct platform_device *pdev)
9767ec7f 655{
63063bfb 656 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
26aec009 657 struct sec_platform_data *pdata = iodev->pdata;
c172708d 658 struct regulator_config config = { };
9767ec7f
SK
659 struct regulator_dev **rdev;
660 struct s5m8767_info *s5m8767;
c848bc85 661 int i, ret, size, buck_init;
9767ec7f 662
26aec009
ADK
663 if (iodev->dev->of_node) {
664 ret = s5m8767_pmic_dt_parse_pdata(iodev, pdata);
665 if (ret)
666 return ret;
667 }
668
9767ec7f
SK
669 if (!pdata) {
670 dev_err(pdev->dev.parent, "Platform data not supplied\n");
671 return -ENODEV;
672 }
673
6c4efe24
AL
674 if (pdata->buck2_gpiodvs) {
675 if (pdata->buck3_gpiodvs || pdata->buck4_gpiodvs) {
676 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
677 return -EINVAL;
678 }
679 }
680
681 if (pdata->buck3_gpiodvs) {
682 if (pdata->buck2_gpiodvs || pdata->buck4_gpiodvs) {
683 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
684 return -EINVAL;
685 }
686 }
687
688 if (pdata->buck4_gpiodvs) {
689 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs) {
690 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
691 return -EINVAL;
692 }
693 }
694
9767ec7f
SK
695 s5m8767 = devm_kzalloc(&pdev->dev, sizeof(struct s5m8767_info),
696 GFP_KERNEL);
697 if (!s5m8767)
698 return -ENOMEM;
699
700 size = sizeof(struct regulator_dev *) * (S5M8767_REG_MAX - 2);
701 s5m8767->rdev = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
702 if (!s5m8767->rdev)
703 return -ENOMEM;
704
705 rdev = s5m8767->rdev;
706 s5m8767->dev = &pdev->dev;
707 s5m8767->iodev = iodev;
9bb096ff 708 s5m8767->num_regulators = pdata->num_regulators;
9767ec7f 709 platform_set_drvdata(pdev, s5m8767);
9767ec7f
SK
710
711 s5m8767->buck_gpioindex = pdata->buck_default_idx;
712 s5m8767->buck2_gpiodvs = pdata->buck2_gpiodvs;
713 s5m8767->buck3_gpiodvs = pdata->buck3_gpiodvs;
714 s5m8767->buck4_gpiodvs = pdata->buck4_gpiodvs;
715 s5m8767->buck_gpios[0] = pdata->buck_gpios[0];
716 s5m8767->buck_gpios[1] = pdata->buck_gpios[1];
717 s5m8767->buck_gpios[2] = pdata->buck_gpios[2];
c848bc85
SK
718 s5m8767->buck_ds[0] = pdata->buck_ds[0];
719 s5m8767->buck_ds[1] = pdata->buck_ds[1];
720 s5m8767->buck_ds[2] = pdata->buck_ds[2];
721
9767ec7f
SK
722 s5m8767->ramp_delay = pdata->buck_ramp_delay;
723 s5m8767->buck2_ramp = pdata->buck2_ramp_enable;
724 s5m8767->buck3_ramp = pdata->buck3_ramp_enable;
725 s5m8767->buck4_ramp = pdata->buck4_ramp_enable;
7e44bb83 726 s5m8767->opmode = pdata->opmode;
9767ec7f 727
c848bc85 728 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
854f73ec 729 pdata->buck2_init);
c848bc85 730
938e05bf 731 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK2DVS2, buck_init);
c848bc85
SK
732
733 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
854f73ec 734 pdata->buck3_init);
c848bc85 735
938e05bf 736 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK3DVS2, buck_init);
c848bc85
SK
737
738 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
854f73ec 739 pdata->buck4_init);
c848bc85 740
938e05bf 741 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK4DVS2, buck_init);
c848bc85 742
9767ec7f
SK
743 for (i = 0; i < 8; i++) {
744 if (s5m8767->buck2_gpiodvs) {
745 s5m8767->buck2_vol[i] =
5b5e977c 746 s5m8767_convert_voltage_to_sel(
9767ec7f 747 &buck_voltage_val2,
854f73ec 748 pdata->buck2_voltage[i]);
9767ec7f
SK
749 }
750
751 if (s5m8767->buck3_gpiodvs) {
752 s5m8767->buck3_vol[i] =
5b5e977c 753 s5m8767_convert_voltage_to_sel(
9767ec7f 754 &buck_voltage_val2,
854f73ec 755 pdata->buck3_voltage[i]);
9767ec7f
SK
756 }
757
758 if (s5m8767->buck4_gpiodvs) {
759 s5m8767->buck4_vol[i] =
5b5e977c 760 s5m8767_convert_voltage_to_sel(
9767ec7f 761 &buck_voltage_val2,
854f73ec 762 pdata->buck4_voltage[i]);
9767ec7f
SK
763 }
764 }
765
76c854d1
ADK
766 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
767 pdata->buck4_gpiodvs) {
768
769 if (!gpio_is_valid(pdata->buck_gpios[0]) ||
770 !gpio_is_valid(pdata->buck_gpios[1]) ||
771 !gpio_is_valid(pdata->buck_gpios[2])) {
772 dev_err(&pdev->dev, "GPIO NOT VALID\n");
773 return -EINVAL;
774 }
775
5febb3c9
AL
776 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[0],
777 "S5M8767 SET1");
778 if (ret)
779 return ret;
780
781 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[1],
782 "S5M8767 SET2");
783 if (ret)
784 return ret;
785
786 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[2],
787 "S5M8767 SET3");
788 if (ret)
789 return ret;
790
c848bc85
SK
791 /* SET1 GPIO */
792 gpio_direction_output(pdata->buck_gpios[0],
793 (s5m8767->buck_gpioindex >> 2) & 0x1);
794 /* SET2 GPIO */
795 gpio_direction_output(pdata->buck_gpios[1],
796 (s5m8767->buck_gpioindex >> 1) & 0x1);
797 /* SET3 GPIO */
798 gpio_direction_output(pdata->buck_gpios[2],
799 (s5m8767->buck_gpioindex >> 0) & 0x1);
9767ec7f
SK
800 }
801
5febb3c9
AL
802 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[0], "S5M8767 DS2");
803 if (ret)
804 return ret;
c848bc85 805
5febb3c9
AL
806 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[1], "S5M8767 DS3");
807 if (ret)
808 return ret;
c848bc85 809
5febb3c9
AL
810 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[2], "S5M8767 DS4");
811 if (ret)
812 return ret;
c848bc85
SK
813
814 /* DS2 GPIO */
815 gpio_direction_output(pdata->buck_ds[0], 0x0);
816 /* DS3 GPIO */
817 gpio_direction_output(pdata->buck_ds[1], 0x0);
818 /* DS4 GPIO */
819 gpio_direction_output(pdata->buck_ds[2], 0x0);
820
821 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
822 pdata->buck4_gpiodvs) {
3e701cdf 823 sec_reg_update(s5m8767->iodev, S5M8767_REG_BUCK2CTRL,
c848bc85
SK
824 (pdata->buck2_gpiodvs) ? (1 << 1) : (0 << 1),
825 1 << 1);
3e701cdf 826 sec_reg_update(s5m8767->iodev, S5M8767_REG_BUCK3CTRL,
c848bc85
SK
827 (pdata->buck3_gpiodvs) ? (1 << 1) : (0 << 1),
828 1 << 1);
3e701cdf 829 sec_reg_update(s5m8767->iodev, S5M8767_REG_BUCK4CTRL,
c848bc85
SK
830 (pdata->buck4_gpiodvs) ? (1 << 1) : (0 << 1),
831 1 << 1);
832 }
9767ec7f
SK
833
834 /* Initialize GPIO DVS registers */
835 for (i = 0; i < 8; i++) {
836 if (s5m8767->buck2_gpiodvs) {
63063bfb 837 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK2DVS1 + i,
9767ec7f
SK
838 s5m8767->buck2_vol[i]);
839 }
840
841 if (s5m8767->buck3_gpiodvs) {
63063bfb 842 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK3DVS1 + i,
9767ec7f
SK
843 s5m8767->buck3_vol[i]);
844 }
845
846 if (s5m8767->buck4_gpiodvs) {
63063bfb 847 sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK4DVS1 + i,
9767ec7f
SK
848 s5m8767->buck4_vol[i]);
849 }
850 }
9767ec7f
SK
851
852 if (s5m8767->buck2_ramp)
63063bfb 853 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0x08, 0x08);
9767ec7f
SK
854
855 if (s5m8767->buck3_ramp)
63063bfb 856 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0x04, 0x04);
9767ec7f
SK
857
858 if (s5m8767->buck4_ramp)
63063bfb 859 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0x02, 0x02);
9767ec7f
SK
860
861 if (s5m8767->buck2_ramp || s5m8767->buck3_ramp
862 || s5m8767->buck4_ramp) {
863 switch (s5m8767->ramp_delay) {
1af142c6 864 case 5:
63063bfb 865 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
1af142c6
SK
866 0x40, 0xf0);
867 break;
868 case 10:
3e701cdf 869 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
1af142c6 870 0x90, 0xf0);
047ec220 871 break;
9767ec7f 872 case 25:
63063bfb 873 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
9767ec7f 874 0xd0, 0xf0);
047ec220 875 break;
9767ec7f 876 case 50:
63063bfb 877 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
9767ec7f 878 0xe0, 0xf0);
047ec220 879 break;
9767ec7f 880 case 100:
63063bfb 881 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
9767ec7f 882 0xf0, 0xf0);
047ec220 883 break;
9767ec7f 884 default:
63063bfb 885 sec_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
9767ec7f
SK
886 0x90, 0xf0);
887 }
888 }
889
890 for (i = 0; i < pdata->num_regulators; i++) {
63063bfb 891 const struct sec_voltage_desc *desc;
9767ec7f
SK
892 int id = pdata->regulators[i].id;
893
894 desc = reg_voltage_map[id];
e2eb169b 895 if (desc) {
9767ec7f
SK
896 regulators[id].n_voltages =
897 (desc->max - desc->min) / desc->step + 1;
e2eb169b
AL
898 regulators[id].min_uV = desc->min;
899 regulators[id].uV_step = desc->step;
31a932e1
AL
900 regulators[id].vsel_reg =
901 s5m8767_get_vsel_reg(id, s5m8767);
902 if (id < S5M8767_BUCK1)
903 regulators[id].vsel_mask = 0x3f;
904 else
905 regulators[id].vsel_mask = 0xff;
e2eb169b 906 }
9767ec7f 907
c172708d
MB
908 config.dev = s5m8767->dev;
909 config.init_data = pdata->regulators[i].initdata;
910 config.driver_data = s5m8767;
31a932e1 911 config.regmap = iodev->regmap;
26aec009 912 config.of_node = pdata->regulators[i].reg_node;
c172708d
MB
913
914 rdev[i] = regulator_register(&regulators[id], &config);
9767ec7f
SK
915 if (IS_ERR(rdev[i])) {
916 ret = PTR_ERR(rdev[i]);
917 dev_err(s5m8767->dev, "regulator init failed for %d\n",
918 id);
919 rdev[i] = NULL;
920 goto err;
921 }
922 }
923
924 return 0;
925err:
926 for (i = 0; i < s5m8767->num_regulators; i++)
927 if (rdev[i])
928 regulator_unregister(rdev[i]);
929
930 return ret;
931}
932
8dc995f5 933static int s5m8767_pmic_remove(struct platform_device *pdev)
9767ec7f
SK
934{
935 struct s5m8767_info *s5m8767 = platform_get_drvdata(pdev);
936 struct regulator_dev **rdev = s5m8767->rdev;
937 int i;
938
939 for (i = 0; i < s5m8767->num_regulators; i++)
940 if (rdev[i])
941 regulator_unregister(rdev[i]);
942
943 return 0;
944}
945
946static const struct platform_device_id s5m8767_pmic_id[] = {
947 { "s5m8767-pmic", 0},
948 { },
949};
950MODULE_DEVICE_TABLE(platform, s5m8767_pmic_id);
951
952static struct platform_driver s5m8767_pmic_driver = {
953 .driver = {
954 .name = "s5m8767-pmic",
955 .owner = THIS_MODULE,
956 },
957 .probe = s5m8767_pmic_probe,
5eb9f2b9 958 .remove = s5m8767_pmic_remove,
9767ec7f
SK
959 .id_table = s5m8767_pmic_id,
960};
961
962static int __init s5m8767_pmic_init(void)
963{
964 return platform_driver_register(&s5m8767_pmic_driver);
965}
966subsys_initcall(s5m8767_pmic_init);
967
968static void __exit s5m8767_pmic_exit(void)
969{
970 platform_driver_unregister(&s5m8767_pmic_driver);
971}
972module_exit(s5m8767_pmic_exit);
973
974/* Module information */
975MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
976MODULE_DESCRIPTION("SAMSUNG S5M8767 Regulator Driver");
977MODULE_LICENSE("GPL");
This page took 0.124117 seconds and 5 git commands to generate.