Merge remote-tracking branch 'asoc/topic/atmel' into asoc-next
[deliverable/linux.git] / drivers / regulator / da903x.c
1 /*
2 * Regulators driver for Dialog Semiconductor DA903x
3 *
4 * Copyright (C) 2006-2008 Marvell International Ltd.
5 * Copyright (C) 2008 Compulab Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/err.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <linux/regulator/driver.h>
18 #include <linux/regulator/machine.h>
19 #include <linux/mfd/da903x.h>
20
21 /* DA9030 Registers */
22 #define DA9030_INVAL (-1)
23 #define DA9030_LDO1011 (0x10)
24 #define DA9030_LDO15 (0x11)
25 #define DA9030_LDO1416 (0x12)
26 #define DA9030_LDO1819 (0x13)
27 #define DA9030_LDO17 (0x14)
28 #define DA9030_BUCK2DVM1 (0x15)
29 #define DA9030_BUCK2DVM2 (0x16)
30 #define DA9030_RCTL11 (0x17)
31 #define DA9030_RCTL21 (0x18)
32 #define DA9030_LDO1 (0x90)
33 #define DA9030_LDO23 (0x91)
34 #define DA9030_LDO45 (0x92)
35 #define DA9030_LDO6 (0x93)
36 #define DA9030_LDO78 (0x94)
37 #define DA9030_LDO912 (0x95)
38 #define DA9030_BUCK (0x96)
39 #define DA9030_RCTL12 (0x97)
40 #define DA9030_RCTL22 (0x98)
41 #define DA9030_LDO_UNLOCK (0xa0)
42 #define DA9030_LDO_UNLOCK_MASK (0xe0)
43 #define DA9034_OVER1 (0x10)
44
45 /* DA9034 Registers */
46 #define DA9034_INVAL (-1)
47 #define DA9034_OVER2 (0x11)
48 #define DA9034_OVER3 (0x12)
49 #define DA9034_LDO643 (0x13)
50 #define DA9034_LDO987 (0x14)
51 #define DA9034_LDO1110 (0x15)
52 #define DA9034_LDO1312 (0x16)
53 #define DA9034_LDO1514 (0x17)
54 #define DA9034_VCC1 (0x20)
55 #define DA9034_ADTV1 (0x23)
56 #define DA9034_ADTV2 (0x24)
57 #define DA9034_AVRC (0x25)
58 #define DA9034_CDTV1 (0x26)
59 #define DA9034_CDTV2 (0x27)
60 #define DA9034_CVRC (0x28)
61 #define DA9034_SDTV1 (0x29)
62 #define DA9034_SDTV2 (0x2a)
63 #define DA9034_SVRC (0x2b)
64 #define DA9034_MDTV1 (0x32)
65 #define DA9034_MDTV2 (0x33)
66 #define DA9034_MVRC (0x34)
67
68 /* DA9035 Registers. DA9034 Registers are comptabile to DA9035. */
69 #define DA9035_OVER3 (0x12)
70 #define DA9035_VCC2 (0x1f)
71 #define DA9035_3DTV1 (0x2c)
72 #define DA9035_3DTV2 (0x2d)
73 #define DA9035_3VRC (0x2e)
74 #define DA9035_AUTOSKIP (0x2f)
75
76 struct da903x_regulator_info {
77 struct regulator_desc desc;
78
79 int max_uV;
80 int vol_reg;
81 int vol_shift;
82 int vol_nbits;
83 int update_reg;
84 int update_bit;
85 int enable_reg;
86 int enable_bit;
87 };
88
89 static inline struct device *to_da903x_dev(struct regulator_dev *rdev)
90 {
91 return rdev_get_dev(rdev)->parent->parent;
92 }
93
94 static inline int check_range(struct da903x_regulator_info *info,
95 int min_uV, int max_uV)
96 {
97 if (min_uV < info->desc.min_uV || min_uV > info->max_uV)
98 return -EINVAL;
99
100 return 0;
101 }
102
103 /* DA9030/DA9034 common operations */
104 static int da903x_set_voltage_sel(struct regulator_dev *rdev, unsigned selector)
105 {
106 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
107 struct device *da9034_dev = to_da903x_dev(rdev);
108 uint8_t val, mask;
109
110 if (rdev->desc->n_voltages == 1)
111 return -EINVAL;
112
113 val = selector << info->vol_shift;
114 mask = ((1 << info->vol_nbits) - 1) << info->vol_shift;
115
116 return da903x_update(da9034_dev, info->vol_reg, val, mask);
117 }
118
119 static int da903x_get_voltage_sel(struct regulator_dev *rdev)
120 {
121 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
122 struct device *da9034_dev = to_da903x_dev(rdev);
123 uint8_t val, mask;
124 int ret;
125
126 if (rdev->desc->n_voltages == 1)
127 return 0;
128
129 ret = da903x_read(da9034_dev, info->vol_reg, &val);
130 if (ret)
131 return ret;
132
133 mask = ((1 << info->vol_nbits) - 1) << info->vol_shift;
134 val = (val & mask) >> info->vol_shift;
135
136 return val;
137 }
138
139 static int da903x_enable(struct regulator_dev *rdev)
140 {
141 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
142 struct device *da9034_dev = to_da903x_dev(rdev);
143
144 return da903x_set_bits(da9034_dev, info->enable_reg,
145 1 << info->enable_bit);
146 }
147
148 static int da903x_disable(struct regulator_dev *rdev)
149 {
150 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
151 struct device *da9034_dev = to_da903x_dev(rdev);
152
153 return da903x_clr_bits(da9034_dev, info->enable_reg,
154 1 << info->enable_bit);
155 }
156
157 static int da903x_is_enabled(struct regulator_dev *rdev)
158 {
159 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
160 struct device *da9034_dev = to_da903x_dev(rdev);
161 uint8_t reg_val;
162 int ret;
163
164 ret = da903x_read(da9034_dev, info->enable_reg, &reg_val);
165 if (ret)
166 return ret;
167
168 return !!(reg_val & (1 << info->enable_bit));
169 }
170
171 /* DA9030 specific operations */
172 static int da9030_set_ldo1_15_voltage_sel(struct regulator_dev *rdev,
173 unsigned selector)
174 {
175 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
176 struct device *da903x_dev = to_da903x_dev(rdev);
177 uint8_t val, mask;
178 int ret;
179
180 val = selector << info->vol_shift;
181 mask = ((1 << info->vol_nbits) - 1) << info->vol_shift;
182 val |= DA9030_LDO_UNLOCK; /* have to set UNLOCK bits */
183 mask |= DA9030_LDO_UNLOCK_MASK;
184
185 /* write twice */
186 ret = da903x_update(da903x_dev, info->vol_reg, val, mask);
187 if (ret)
188 return ret;
189
190 return da903x_update(da903x_dev, info->vol_reg, val, mask);
191 }
192
193 static int da9030_map_ldo14_voltage(struct regulator_dev *rdev,
194 int min_uV, int max_uV)
195 {
196 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
197 int thresh, sel;
198
199 if (check_range(info, min_uV, max_uV)) {
200 pr_err("invalid voltage range (%d, %d) uV\n", min_uV, max_uV);
201 return -EINVAL;
202 }
203
204 thresh = (info->max_uV + info->desc.min_uV) / 2;
205 if (min_uV < thresh) {
206 sel = DIV_ROUND_UP(thresh - min_uV, info->desc.uV_step);
207 sel |= 0x4;
208 } else {
209 sel = DIV_ROUND_UP(min_uV - thresh, info->desc.uV_step);
210 }
211
212 return sel;
213 }
214
215 static int da9030_list_ldo14_voltage(struct regulator_dev *rdev,
216 unsigned selector)
217 {
218 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
219 int volt;
220
221 if (selector & 0x4)
222 volt = rdev->desc->min_uV +
223 rdev->desc->uV_step * (3 - (selector & ~0x4));
224 else
225 volt = (info->max_uV + rdev->desc->min_uV) / 2 +
226 rdev->desc->uV_step * (selector & ~0x4);
227
228 if (volt > info->max_uV)
229 return -EINVAL;
230
231 return volt;
232 }
233
234 /* DA9034 specific operations */
235 static int da9034_set_dvc_voltage_sel(struct regulator_dev *rdev,
236 unsigned selector)
237 {
238 struct da903x_regulator_info *info = rdev_get_drvdata(rdev);
239 struct device *da9034_dev = to_da903x_dev(rdev);
240 uint8_t val, mask;
241 int ret;
242
243 val = selector << info->vol_shift;
244 mask = ((1 << info->vol_nbits) - 1) << info->vol_shift;
245
246 ret = da903x_update(da9034_dev, info->vol_reg, val, mask);
247 if (ret)
248 return ret;
249
250 ret = da903x_set_bits(da9034_dev, info->update_reg,
251 1 << info->update_bit);
252 return ret;
253 }
254
255 static const struct regulator_linear_range da9034_ldo12_ranges[] = {
256 { .min_uV = 1700000, .max_uV = 2050000, .min_sel = 0, .max_sel = 7,
257 .uV_step = 50000 },
258 { .min_uV = 2700000, .max_uV = 3050000, .min_sel = 8, .max_sel = 15,
259 .uV_step = 50000 },
260 };
261
262 static struct regulator_ops da903x_regulator_ldo_ops = {
263 .set_voltage_sel = da903x_set_voltage_sel,
264 .get_voltage_sel = da903x_get_voltage_sel,
265 .list_voltage = regulator_list_voltage_linear,
266 .map_voltage = regulator_map_voltage_linear,
267 .enable = da903x_enable,
268 .disable = da903x_disable,
269 .is_enabled = da903x_is_enabled,
270 };
271
272 /* NOTE: this is dedicated for the insane DA9030 LDO14 */
273 static struct regulator_ops da9030_regulator_ldo14_ops = {
274 .set_voltage_sel = da903x_set_voltage_sel,
275 .get_voltage_sel = da903x_get_voltage_sel,
276 .list_voltage = da9030_list_ldo14_voltage,
277 .map_voltage = da9030_map_ldo14_voltage,
278 .enable = da903x_enable,
279 .disable = da903x_disable,
280 .is_enabled = da903x_is_enabled,
281 };
282
283 /* NOTE: this is dedicated for the DA9030 LDO1 and LDO15 that have locks */
284 static struct regulator_ops da9030_regulator_ldo1_15_ops = {
285 .set_voltage_sel = da9030_set_ldo1_15_voltage_sel,
286 .get_voltage_sel = da903x_get_voltage_sel,
287 .list_voltage = regulator_list_voltage_linear,
288 .map_voltage = regulator_map_voltage_linear,
289 .enable = da903x_enable,
290 .disable = da903x_disable,
291 .is_enabled = da903x_is_enabled,
292 };
293
294 static struct regulator_ops da9034_regulator_dvc_ops = {
295 .set_voltage_sel = da9034_set_dvc_voltage_sel,
296 .get_voltage_sel = da903x_get_voltage_sel,
297 .list_voltage = regulator_list_voltage_linear,
298 .map_voltage = regulator_map_voltage_linear,
299 .enable = da903x_enable,
300 .disable = da903x_disable,
301 .is_enabled = da903x_is_enabled,
302 };
303
304 /* NOTE: this is dedicated for the insane LDO12 */
305 static struct regulator_ops da9034_regulator_ldo12_ops = {
306 .set_voltage_sel = da903x_set_voltage_sel,
307 .get_voltage_sel = da903x_get_voltage_sel,
308 .list_voltage = regulator_list_voltage_linear_range,
309 .map_voltage = regulator_map_voltage_linear_range,
310 .enable = da903x_enable,
311 .disable = da903x_disable,
312 .is_enabled = da903x_is_enabled,
313 };
314
315 #define DA903x_LDO(_pmic, _id, min, max, step, vreg, shift, nbits, ereg, ebit) \
316 { \
317 .desc = { \
318 .name = "LDO" #_id, \
319 .ops = &da903x_regulator_ldo_ops, \
320 .type = REGULATOR_VOLTAGE, \
321 .id = _pmic##_ID_LDO##_id, \
322 .n_voltages = (step) ? ((max - min) / step + 1) : 1, \
323 .owner = THIS_MODULE, \
324 .min_uV = (min) * 1000, \
325 .uV_step = (step) * 1000, \
326 }, \
327 .max_uV = (max) * 1000, \
328 .vol_reg = _pmic##_##vreg, \
329 .vol_shift = (shift), \
330 .vol_nbits = (nbits), \
331 .enable_reg = _pmic##_##ereg, \
332 .enable_bit = (ebit), \
333 }
334
335 #define DA903x_DVC(_pmic, _id, min, max, step, vreg, nbits, ureg, ubit, ereg, ebit) \
336 { \
337 .desc = { \
338 .name = #_id, \
339 .ops = &da9034_regulator_dvc_ops, \
340 .type = REGULATOR_VOLTAGE, \
341 .id = _pmic##_ID_##_id, \
342 .n_voltages = (step) ? ((max - min) / step + 1) : 1, \
343 .owner = THIS_MODULE, \
344 .min_uV = (min) * 1000, \
345 .uV_step = (step) * 1000, \
346 }, \
347 .max_uV = (max) * 1000, \
348 .vol_reg = _pmic##_##vreg, \
349 .vol_shift = (0), \
350 .vol_nbits = (nbits), \
351 .update_reg = _pmic##_##ureg, \
352 .update_bit = (ubit), \
353 .enable_reg = _pmic##_##ereg, \
354 .enable_bit = (ebit), \
355 }
356
357 #define DA9034_LDO(_id, min, max, step, vreg, shift, nbits, ereg, ebit) \
358 DA903x_LDO(DA9034, _id, min, max, step, vreg, shift, nbits, ereg, ebit)
359
360 #define DA9030_LDO(_id, min, max, step, vreg, shift, nbits, ereg, ebit) \
361 DA903x_LDO(DA9030, _id, min, max, step, vreg, shift, nbits, ereg, ebit)
362
363 #define DA9030_DVC(_id, min, max, step, vreg, nbits, ureg, ubit, ereg, ebit) \
364 DA903x_DVC(DA9030, _id, min, max, step, vreg, nbits, ureg, ubit, \
365 ereg, ebit)
366
367 #define DA9034_DVC(_id, min, max, step, vreg, nbits, ureg, ubit, ereg, ebit) \
368 DA903x_DVC(DA9034, _id, min, max, step, vreg, nbits, ureg, ubit, \
369 ereg, ebit)
370
371 #define DA9035_DVC(_id, min, max, step, vreg, nbits, ureg, ubit, ereg, ebit) \
372 DA903x_DVC(DA9035, _id, min, max, step, vreg, nbits, ureg, ubit, \
373 ereg, ebit)
374
375 static struct da903x_regulator_info da903x_regulator_info[] = {
376 /* DA9030 */
377 DA9030_DVC(BUCK2, 850, 1625, 25, BUCK2DVM1, 5, BUCK2DVM1, 7, RCTL11, 0),
378
379 DA9030_LDO( 1, 1200, 3200, 100, LDO1, 0, 5, RCTL12, 1),
380 DA9030_LDO( 2, 1800, 3200, 100, LDO23, 0, 4, RCTL12, 2),
381 DA9030_LDO( 3, 1800, 3200, 100, LDO23, 4, 4, RCTL12, 3),
382 DA9030_LDO( 4, 1800, 3200, 100, LDO45, 0, 4, RCTL12, 4),
383 DA9030_LDO( 5, 1800, 3200, 100, LDO45, 4, 4, RCTL12, 5),
384 DA9030_LDO( 6, 1800, 3200, 100, LDO6, 0, 4, RCTL12, 6),
385 DA9030_LDO( 7, 1800, 3200, 100, LDO78, 0, 4, RCTL12, 7),
386 DA9030_LDO( 8, 1800, 3200, 100, LDO78, 4, 4, RCTL22, 0),
387 DA9030_LDO( 9, 1800, 3200, 100, LDO912, 0, 4, RCTL22, 1),
388 DA9030_LDO(10, 1800, 3200, 100, LDO1011, 0, 4, RCTL22, 2),
389 DA9030_LDO(11, 1800, 3200, 100, LDO1011, 4, 4, RCTL22, 3),
390 DA9030_LDO(12, 1800, 3200, 100, LDO912, 4, 4, RCTL22, 4),
391 DA9030_LDO(14, 2760, 2940, 30, LDO1416, 0, 3, RCTL11, 4),
392 DA9030_LDO(15, 1100, 2650, 50, LDO15, 0, 5, RCTL11, 5),
393 DA9030_LDO(16, 1100, 2650, 50, LDO1416, 3, 5, RCTL11, 6),
394 DA9030_LDO(17, 1800, 3200, 100, LDO17, 0, 4, RCTL11, 7),
395 DA9030_LDO(18, 1800, 3200, 100, LDO1819, 0, 4, RCTL21, 2),
396 DA9030_LDO(19, 1800, 3200, 100, LDO1819, 4, 4, RCTL21, 1),
397 DA9030_LDO(13, 2100, 2100, 0, INVAL, 0, 0, RCTL11, 3), /* fixed @2.1V */
398
399 /* DA9034 */
400 DA9034_DVC(BUCK1, 725, 1500, 25, ADTV2, 5, VCC1, 0, OVER1, 0),
401 DA9034_DVC(BUCK2, 725, 1500, 25, CDTV2, 5, VCC1, 2, OVER1, 1),
402 DA9034_DVC(LDO2, 725, 1500, 25, SDTV2, 5, VCC1, 4, OVER1, 2),
403 DA9034_DVC(LDO1, 1700, 2075, 25, MDTV1, 4, VCC1, 6, OVER3, 4),
404
405 DA9034_LDO( 3, 1800, 3300, 100, LDO643, 0, 4, OVER3, 5),
406 DA9034_LDO( 4, 1800, 2900,1100, LDO643, 4, 1, OVER3, 6),
407 DA9034_LDO( 6, 2500, 2850, 50, LDO643, 5, 3, OVER2, 0),
408 DA9034_LDO( 7, 2700, 3050, 50, LDO987, 0, 3, OVER2, 1),
409 DA9034_LDO( 8, 2700, 2850, 50, LDO987, 3, 2, OVER2, 2),
410 DA9034_LDO( 9, 2700, 3050, 50, LDO987, 5, 3, OVER2, 3),
411 DA9034_LDO(10, 2700, 3050, 50, LDO1110, 0, 3, OVER2, 4),
412 DA9034_LDO(11, 1800, 3300, 100, LDO1110, 4, 4, OVER2, 5),
413 DA9034_LDO(12, 1700, 3050, 50, LDO1312, 0, 4, OVER3, 6),
414 DA9034_LDO(13, 1800, 3300, 100, LDO1312, 4, 4, OVER2, 7),
415 DA9034_LDO(14, 1800, 3300, 100, LDO1514, 0, 4, OVER3, 0),
416 DA9034_LDO(15, 1800, 3300, 100, LDO1514, 4, 4, OVER3, 1),
417 DA9034_LDO(5, 3100, 3100, 0, INVAL, 0, 0, OVER3, 7), /* fixed @3.1V */
418
419 /* DA9035 */
420 DA9035_DVC(BUCK3, 1800, 2200, 100, 3DTV1, 3, VCC2, 0, OVER3, 3),
421 };
422
423 static inline struct da903x_regulator_info *find_regulator_info(int id)
424 {
425 struct da903x_regulator_info *ri;
426 int i;
427
428 for (i = 0; i < ARRAY_SIZE(da903x_regulator_info); i++) {
429 ri = &da903x_regulator_info[i];
430 if (ri->desc.id == id)
431 return ri;
432 }
433 return NULL;
434 }
435
436 static int da903x_regulator_probe(struct platform_device *pdev)
437 {
438 struct da903x_regulator_info *ri = NULL;
439 struct regulator_dev *rdev;
440 struct regulator_config config = { };
441
442 ri = find_regulator_info(pdev->id);
443 if (ri == NULL) {
444 dev_err(&pdev->dev, "invalid regulator ID specified\n");
445 return -EINVAL;
446 }
447
448 /* Workaround for the weird LDO12 voltage setting */
449 if (ri->desc.id == DA9034_ID_LDO12) {
450 ri->desc.ops = &da9034_regulator_ldo12_ops;
451 ri->desc.n_voltages = 16;
452 ri->desc.linear_ranges = da9034_ldo12_ranges;
453 ri->desc.n_linear_ranges = ARRAY_SIZE(da9034_ldo12_ranges);
454 }
455
456 if (ri->desc.id == DA9030_ID_LDO14)
457 ri->desc.ops = &da9030_regulator_ldo14_ops;
458
459 if (ri->desc.id == DA9030_ID_LDO1 || ri->desc.id == DA9030_ID_LDO15)
460 ri->desc.ops = &da9030_regulator_ldo1_15_ops;
461
462 config.dev = &pdev->dev;
463 config.init_data = dev_get_platdata(&pdev->dev);
464 config.driver_data = ri;
465
466 rdev = regulator_register(&ri->desc, &config);
467 if (IS_ERR(rdev)) {
468 dev_err(&pdev->dev, "failed to register regulator %s\n",
469 ri->desc.name);
470 return PTR_ERR(rdev);
471 }
472
473 platform_set_drvdata(pdev, rdev);
474 return 0;
475 }
476
477 static int da903x_regulator_remove(struct platform_device *pdev)
478 {
479 struct regulator_dev *rdev = platform_get_drvdata(pdev);
480
481 regulator_unregister(rdev);
482 return 0;
483 }
484
485 static struct platform_driver da903x_regulator_driver = {
486 .driver = {
487 .name = "da903x-regulator",
488 .owner = THIS_MODULE,
489 },
490 .probe = da903x_regulator_probe,
491 .remove = da903x_regulator_remove,
492 };
493
494 static int __init da903x_regulator_init(void)
495 {
496 return platform_driver_register(&da903x_regulator_driver);
497 }
498 subsys_initcall(da903x_regulator_init);
499
500 static void __exit da903x_regulator_exit(void)
501 {
502 platform_driver_unregister(&da903x_regulator_driver);
503 }
504 module_exit(da903x_regulator_exit);
505
506 MODULE_LICENSE("GPL");
507 MODULE_AUTHOR("Eric Miao <eric.miao@marvell.com>"
508 "Mike Rapoport <mike@compulab.co.il>");
509 MODULE_DESCRIPTION("Regulator Driver for Dialog Semiconductor DA903X PMIC");
510 MODULE_ALIAS("platform:da903x-regulator");
This page took 0.051545 seconds and 5 git commands to generate.