Merge tag 'pm-for-3.5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[firefly-linux-kernel-4.4.55.git] / drivers / regulator / tps65910-regulator.c
1 /*
2  * tps65910.c  --  TI tps65910
3  *
4  * Copyright 2010 Texas Instruments Inc.
5  *
6  * Author: Graeme Gregory <gg@slimlogic.co.uk>
7  * Author: Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>
8  *
9  *  This program is free software; you can redistribute it and/or modify it
10  *  under  the terms of the GNU General  Public License as published by the
11  *  Free Software Foundation;  either version 2 of the License, or (at your
12  *  option) any later version.
13  *
14  */
15
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/err.h>
20 #include <linux/platform_device.h>
21 #include <linux/regulator/driver.h>
22 #include <linux/regulator/machine.h>
23 #include <linux/slab.h>
24 #include <linux/gpio.h>
25 #include <linux/mfd/tps65910.h>
26 #include <linux/regulator/of_regulator.h>
27
28 #define TPS65910_SUPPLY_STATE_ENABLED   0x1
29 #define EXT_SLEEP_CONTROL (TPS65910_SLEEP_CONTROL_EXT_INPUT_EN1 |       \
30                         TPS65910_SLEEP_CONTROL_EXT_INPUT_EN2 |          \
31                         TPS65910_SLEEP_CONTROL_EXT_INPUT_EN3 |          \
32                         TPS65911_SLEEP_CONTROL_EXT_INPUT_SLEEP)
33
34 /* supported VIO voltages in millivolts */
35 static const u16 VIO_VSEL_table[] = {
36         1500, 1800, 2500, 3300,
37 };
38
39 /* VSEL tables for TPS65910 specific LDOs and dcdc's */
40
41 /* supported VDD3 voltages in millivolts */
42 static const u16 VDD3_VSEL_table[] = {
43         5000,
44 };
45
46 /* supported VDIG1 voltages in millivolts */
47 static const u16 VDIG1_VSEL_table[] = {
48         1200, 1500, 1800, 2700,
49 };
50
51 /* supported VDIG2 voltages in millivolts */
52 static const u16 VDIG2_VSEL_table[] = {
53         1000, 1100, 1200, 1800,
54 };
55
56 /* supported VPLL voltages in millivolts */
57 static const u16 VPLL_VSEL_table[] = {
58         1000, 1100, 1800, 2500,
59 };
60
61 /* supported VDAC voltages in millivolts */
62 static const u16 VDAC_VSEL_table[] = {
63         1800, 2600, 2800, 2850,
64 };
65
66 /* supported VAUX1 voltages in millivolts */
67 static const u16 VAUX1_VSEL_table[] = {
68         1800, 2500, 2800, 2850,
69 };
70
71 /* supported VAUX2 voltages in millivolts */
72 static const u16 VAUX2_VSEL_table[] = {
73         1800, 2800, 2900, 3300,
74 };
75
76 /* supported VAUX33 voltages in millivolts */
77 static const u16 VAUX33_VSEL_table[] = {
78         1800, 2000, 2800, 3300,
79 };
80
81 /* supported VMMC voltages in millivolts */
82 static const u16 VMMC_VSEL_table[] = {
83         1800, 2800, 3000, 3300,
84 };
85
86 struct tps_info {
87         const char *name;
88         unsigned min_uV;
89         unsigned max_uV;
90         u8 n_voltages;
91         const u16 *voltage_table;
92         int enable_time_us;
93 };
94
95 static struct tps_info tps65910_regs[] = {
96         {
97                 .name = "vrtc",
98                 .enable_time_us = 2200,
99         },
100         {
101                 .name = "vio",
102                 .min_uV = 1500000,
103                 .max_uV = 3300000,
104                 .n_voltages = ARRAY_SIZE(VIO_VSEL_table),
105                 .voltage_table = VIO_VSEL_table,
106                 .enable_time_us = 350,
107         },
108         {
109                 .name = "vdd1",
110                 .min_uV = 600000,
111                 .max_uV = 4500000,
112                 .enable_time_us = 350,
113         },
114         {
115                 .name = "vdd2",
116                 .min_uV = 600000,
117                 .max_uV = 4500000,
118                 .enable_time_us = 350,
119         },
120         {
121                 .name = "vdd3",
122                 .min_uV = 5000000,
123                 .max_uV = 5000000,
124                 .n_voltages = ARRAY_SIZE(VDD3_VSEL_table),
125                 .voltage_table = VDD3_VSEL_table,
126                 .enable_time_us = 200,
127         },
128         {
129                 .name = "vdig1",
130                 .min_uV = 1200000,
131                 .max_uV = 2700000,
132                 .n_voltages = ARRAY_SIZE(VDIG1_VSEL_table),
133                 .voltage_table = VDIG1_VSEL_table,
134                 .enable_time_us = 100,
135         },
136         {
137                 .name = "vdig2",
138                 .min_uV = 1000000,
139                 .max_uV = 1800000,
140                 .n_voltages = ARRAY_SIZE(VDIG2_VSEL_table),
141                 .voltage_table = VDIG2_VSEL_table,
142                 .enable_time_us = 100,
143         },
144         {
145                 .name = "vpll",
146                 .min_uV = 1000000,
147                 .max_uV = 2500000,
148                 .n_voltages = ARRAY_SIZE(VPLL_VSEL_table),
149                 .voltage_table = VPLL_VSEL_table,
150                 .enable_time_us = 100,
151         },
152         {
153                 .name = "vdac",
154                 .min_uV = 1800000,
155                 .max_uV = 2850000,
156                 .n_voltages = ARRAY_SIZE(VDAC_VSEL_table),
157                 .voltage_table = VDAC_VSEL_table,
158                 .enable_time_us = 100,
159         },
160         {
161                 .name = "vaux1",
162                 .min_uV = 1800000,
163                 .max_uV = 2850000,
164                 .n_voltages = ARRAY_SIZE(VAUX1_VSEL_table),
165                 .voltage_table = VAUX1_VSEL_table,
166                 .enable_time_us = 100,
167         },
168         {
169                 .name = "vaux2",
170                 .min_uV = 1800000,
171                 .max_uV = 3300000,
172                 .n_voltages = ARRAY_SIZE(VAUX2_VSEL_table),
173                 .voltage_table = VAUX2_VSEL_table,
174                 .enable_time_us = 100,
175         },
176         {
177                 .name = "vaux33",
178                 .min_uV = 1800000,
179                 .max_uV = 3300000,
180                 .n_voltages = ARRAY_SIZE(VAUX33_VSEL_table),
181                 .voltage_table = VAUX33_VSEL_table,
182                 .enable_time_us = 100,
183         },
184         {
185                 .name = "vmmc",
186                 .min_uV = 1800000,
187                 .max_uV = 3300000,
188                 .n_voltages = ARRAY_SIZE(VMMC_VSEL_table),
189                 .voltage_table = VMMC_VSEL_table,
190                 .enable_time_us = 100,
191         },
192 };
193
194 static struct tps_info tps65911_regs[] = {
195         {
196                 .name = "vrtc",
197                 .enable_time_us = 2200,
198         },
199         {
200                 .name = "vio",
201                 .min_uV = 1500000,
202                 .max_uV = 3300000,
203                 .n_voltages = ARRAY_SIZE(VIO_VSEL_table),
204                 .voltage_table = VIO_VSEL_table,
205                 .enable_time_us = 350,
206         },
207         {
208                 .name = "vdd1",
209                 .min_uV = 600000,
210                 .max_uV = 4500000,
211                 .n_voltages = 73,
212                 .enable_time_us = 350,
213         },
214         {
215                 .name = "vdd2",
216                 .min_uV = 600000,
217                 .max_uV = 4500000,
218                 .n_voltages = 73,
219                 .enable_time_us = 350,
220         },
221         {
222                 .name = "vddctrl",
223                 .min_uV = 600000,
224                 .max_uV = 1400000,
225                 .n_voltages = 65,
226                 .enable_time_us = 900,
227         },
228         {
229                 .name = "ldo1",
230                 .min_uV = 1000000,
231                 .max_uV = 3300000,
232                 .n_voltages = 47,
233                 .enable_time_us = 420,
234         },
235         {
236                 .name = "ldo2",
237                 .min_uV = 1000000,
238                 .max_uV = 3300000,
239                 .n_voltages = 47,
240                 .enable_time_us = 420,
241         },
242         {
243                 .name = "ldo3",
244                 .min_uV = 1000000,
245                 .max_uV = 3300000,
246                 .n_voltages = 24,
247                 .enable_time_us = 230,
248         },
249         {
250                 .name = "ldo4",
251                 .min_uV = 1000000,
252                 .max_uV = 3300000,
253                 .n_voltages = 47,
254                 .enable_time_us = 230,
255         },
256         {
257                 .name = "ldo5",
258                 .min_uV = 1000000,
259                 .max_uV = 3300000,
260                 .n_voltages = 24,
261                 .enable_time_us = 230,
262         },
263         {
264                 .name = "ldo6",
265                 .min_uV = 1000000,
266                 .max_uV = 3300000,
267                 .n_voltages = 24,
268                 .enable_time_us = 230,
269         },
270         {
271                 .name = "ldo7",
272                 .min_uV = 1000000,
273                 .max_uV = 3300000,
274                 .n_voltages = 24,
275                 .enable_time_us = 230,
276         },
277         {
278                 .name = "ldo8",
279                 .min_uV = 1000000,
280                 .max_uV = 3300000,
281                 .n_voltages = 24,
282                 .enable_time_us = 230,
283         },
284 };
285
286 #define EXT_CONTROL_REG_BITS(id, regs_offs, bits) (((regs_offs) << 8) | (bits))
287 static unsigned int tps65910_ext_sleep_control[] = {
288         0,
289         EXT_CONTROL_REG_BITS(VIO,    1, 0),
290         EXT_CONTROL_REG_BITS(VDD1,   1, 1),
291         EXT_CONTROL_REG_BITS(VDD2,   1, 2),
292         EXT_CONTROL_REG_BITS(VDD3,   1, 3),
293         EXT_CONTROL_REG_BITS(VDIG1,  0, 1),
294         EXT_CONTROL_REG_BITS(VDIG2,  0, 2),
295         EXT_CONTROL_REG_BITS(VPLL,   0, 6),
296         EXT_CONTROL_REG_BITS(VDAC,   0, 7),
297         EXT_CONTROL_REG_BITS(VAUX1,  0, 3),
298         EXT_CONTROL_REG_BITS(VAUX2,  0, 4),
299         EXT_CONTROL_REG_BITS(VAUX33, 0, 5),
300         EXT_CONTROL_REG_BITS(VMMC,   0, 0),
301 };
302
303 static unsigned int tps65911_ext_sleep_control[] = {
304         0,
305         EXT_CONTROL_REG_BITS(VIO,     1, 0),
306         EXT_CONTROL_REG_BITS(VDD1,    1, 1),
307         EXT_CONTROL_REG_BITS(VDD2,    1, 2),
308         EXT_CONTROL_REG_BITS(VDDCTRL, 1, 3),
309         EXT_CONTROL_REG_BITS(LDO1,    0, 1),
310         EXT_CONTROL_REG_BITS(LDO2,    0, 2),
311         EXT_CONTROL_REG_BITS(LDO3,    0, 7),
312         EXT_CONTROL_REG_BITS(LDO4,    0, 6),
313         EXT_CONTROL_REG_BITS(LDO5,    0, 3),
314         EXT_CONTROL_REG_BITS(LDO6,    0, 0),
315         EXT_CONTROL_REG_BITS(LDO7,    0, 5),
316         EXT_CONTROL_REG_BITS(LDO8,    0, 4),
317 };
318
319 struct tps65910_reg {
320         struct regulator_desc *desc;
321         struct tps65910 *mfd;
322         struct regulator_dev **rdev;
323         struct tps_info **info;
324         struct mutex mutex;
325         int num_regulators;
326         int mode;
327         int  (*get_ctrl_reg)(int);
328         unsigned int *ext_sleep_control;
329         unsigned int board_ext_control[TPS65910_NUM_REGS];
330 };
331
332 static inline int tps65910_read(struct tps65910_reg *pmic, u8 reg)
333 {
334         u8 val;
335         int err;
336
337         err = pmic->mfd->read(pmic->mfd, reg, 1, &val);
338         if (err)
339                 return err;
340
341         return val;
342 }
343
344 static inline int tps65910_write(struct tps65910_reg *pmic, u8 reg, u8 val)
345 {
346         return pmic->mfd->write(pmic->mfd, reg, 1, &val);
347 }
348
349 static int tps65910_modify_bits(struct tps65910_reg *pmic, u8 reg,
350                                         u8 set_mask, u8 clear_mask)
351 {
352         int err, data;
353
354         mutex_lock(&pmic->mutex);
355
356         data = tps65910_read(pmic, reg);
357         if (data < 0) {
358                 dev_err(pmic->mfd->dev, "Read from reg 0x%x failed\n", reg);
359                 err = data;
360                 goto out;
361         }
362
363         data &= ~clear_mask;
364         data |= set_mask;
365         err = tps65910_write(pmic, reg, data);
366         if (err)
367                 dev_err(pmic->mfd->dev, "Write for reg 0x%x failed\n", reg);
368
369 out:
370         mutex_unlock(&pmic->mutex);
371         return err;
372 }
373
374 static int tps65910_reg_read(struct tps65910_reg *pmic, u8 reg)
375 {
376         int data;
377
378         mutex_lock(&pmic->mutex);
379
380         data = tps65910_read(pmic, reg);
381         if (data < 0)
382                 dev_err(pmic->mfd->dev, "Read from reg 0x%x failed\n", reg);
383
384         mutex_unlock(&pmic->mutex);
385         return data;
386 }
387
388 static int tps65910_reg_write(struct tps65910_reg *pmic, u8 reg, u8 val)
389 {
390         int err;
391
392         mutex_lock(&pmic->mutex);
393
394         err = tps65910_write(pmic, reg, val);
395         if (err < 0)
396                 dev_err(pmic->mfd->dev, "Write for reg 0x%x failed\n", reg);
397
398         mutex_unlock(&pmic->mutex);
399         return err;
400 }
401
402 static int tps65910_get_ctrl_register(int id)
403 {
404         switch (id) {
405         case TPS65910_REG_VRTC:
406                 return TPS65910_VRTC;
407         case TPS65910_REG_VIO:
408                 return TPS65910_VIO;
409         case TPS65910_REG_VDD1:
410                 return TPS65910_VDD1;
411         case TPS65910_REG_VDD2:
412                 return TPS65910_VDD2;
413         case TPS65910_REG_VDD3:
414                 return TPS65910_VDD3;
415         case TPS65910_REG_VDIG1:
416                 return TPS65910_VDIG1;
417         case TPS65910_REG_VDIG2:
418                 return TPS65910_VDIG2;
419         case TPS65910_REG_VPLL:
420                 return TPS65910_VPLL;
421         case TPS65910_REG_VDAC:
422                 return TPS65910_VDAC;
423         case TPS65910_REG_VAUX1:
424                 return TPS65910_VAUX1;
425         case TPS65910_REG_VAUX2:
426                 return TPS65910_VAUX2;
427         case TPS65910_REG_VAUX33:
428                 return TPS65910_VAUX33;
429         case TPS65910_REG_VMMC:
430                 return TPS65910_VMMC;
431         default:
432                 return -EINVAL;
433         }
434 }
435
436 static int tps65911_get_ctrl_register(int id)
437 {
438         switch (id) {
439         case TPS65910_REG_VRTC:
440                 return TPS65910_VRTC;
441         case TPS65910_REG_VIO:
442                 return TPS65910_VIO;
443         case TPS65910_REG_VDD1:
444                 return TPS65910_VDD1;
445         case TPS65910_REG_VDD2:
446                 return TPS65910_VDD2;
447         case TPS65911_REG_VDDCTRL:
448                 return TPS65911_VDDCTRL;
449         case TPS65911_REG_LDO1:
450                 return TPS65911_LDO1;
451         case TPS65911_REG_LDO2:
452                 return TPS65911_LDO2;
453         case TPS65911_REG_LDO3:
454                 return TPS65911_LDO3;
455         case TPS65911_REG_LDO4:
456                 return TPS65911_LDO4;
457         case TPS65911_REG_LDO5:
458                 return TPS65911_LDO5;
459         case TPS65911_REG_LDO6:
460                 return TPS65911_LDO6;
461         case TPS65911_REG_LDO7:
462                 return TPS65911_LDO7;
463         case TPS65911_REG_LDO8:
464                 return TPS65911_LDO8;
465         default:
466                 return -EINVAL;
467         }
468 }
469
470 static int tps65910_enable_time(struct regulator_dev *dev)
471 {
472         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
473         int id = rdev_get_id(dev);
474         return pmic->info[id]->enable_time_us;
475 }
476
477 static int tps65910_set_mode(struct regulator_dev *dev, unsigned int mode)
478 {
479         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
480         struct tps65910 *mfd = pmic->mfd;
481         int reg, value, id = rdev_get_id(dev);
482
483         reg = pmic->get_ctrl_reg(id);
484         if (reg < 0)
485                 return reg;
486
487         switch (mode) {
488         case REGULATOR_MODE_NORMAL:
489                 return tps65910_modify_bits(pmic, reg, LDO_ST_ON_BIT,
490                                                         LDO_ST_MODE_BIT);
491         case REGULATOR_MODE_IDLE:
492                 value = LDO_ST_ON_BIT | LDO_ST_MODE_BIT;
493                 return tps65910_set_bits(mfd, reg, value);
494         case REGULATOR_MODE_STANDBY:
495                 return tps65910_clear_bits(mfd, reg, LDO_ST_ON_BIT);
496         }
497
498         return -EINVAL;
499 }
500
501 static unsigned int tps65910_get_mode(struct regulator_dev *dev)
502 {
503         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
504         int reg, value, id = rdev_get_id(dev);
505
506         reg = pmic->get_ctrl_reg(id);
507         if (reg < 0)
508                 return reg;
509
510         value = tps65910_reg_read(pmic, reg);
511         if (value < 0)
512                 return value;
513
514         if (!(value & LDO_ST_ON_BIT))
515                 return REGULATOR_MODE_STANDBY;
516         else if (value & LDO_ST_MODE_BIT)
517                 return REGULATOR_MODE_IDLE;
518         else
519                 return REGULATOR_MODE_NORMAL;
520 }
521
522 static int tps65910_get_voltage_dcdc_sel(struct regulator_dev *dev)
523 {
524         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
525         int id = rdev_get_id(dev);
526         int opvsel = 0, srvsel = 0, vselmax = 0, mult = 0, sr = 0;
527
528         switch (id) {
529         case TPS65910_REG_VDD1:
530                 opvsel = tps65910_reg_read(pmic, TPS65910_VDD1_OP);
531                 mult = tps65910_reg_read(pmic, TPS65910_VDD1);
532                 mult = (mult & VDD1_VGAIN_SEL_MASK) >> VDD1_VGAIN_SEL_SHIFT;
533                 srvsel = tps65910_reg_read(pmic, TPS65910_VDD1_SR);
534                 sr = opvsel & VDD1_OP_CMD_MASK;
535                 opvsel &= VDD1_OP_SEL_MASK;
536                 srvsel &= VDD1_SR_SEL_MASK;
537                 vselmax = 75;
538                 break;
539         case TPS65910_REG_VDD2:
540                 opvsel = tps65910_reg_read(pmic, TPS65910_VDD2_OP);
541                 mult = tps65910_reg_read(pmic, TPS65910_VDD2);
542                 mult = (mult & VDD2_VGAIN_SEL_MASK) >> VDD2_VGAIN_SEL_SHIFT;
543                 srvsel = tps65910_reg_read(pmic, TPS65910_VDD2_SR);
544                 sr = opvsel & VDD2_OP_CMD_MASK;
545                 opvsel &= VDD2_OP_SEL_MASK;
546                 srvsel &= VDD2_SR_SEL_MASK;
547                 vselmax = 75;
548                 break;
549         case TPS65911_REG_VDDCTRL:
550                 opvsel = tps65910_reg_read(pmic, TPS65911_VDDCTRL_OP);
551                 srvsel = tps65910_reg_read(pmic, TPS65911_VDDCTRL_SR);
552                 sr = opvsel & VDDCTRL_OP_CMD_MASK;
553                 opvsel &= VDDCTRL_OP_SEL_MASK;
554                 srvsel &= VDDCTRL_SR_SEL_MASK;
555                 vselmax = 64;
556                 break;
557         }
558
559         /* multiplier 0 == 1 but 2,3 normal */
560         if (!mult)
561                 mult=1;
562
563         if (sr) {
564                 /* normalise to valid range */
565                 if (srvsel < 3)
566                         srvsel = 3;
567                 if (srvsel > vselmax)
568                         srvsel = vselmax;
569                 return srvsel - 3;
570         } else {
571
572                 /* normalise to valid range*/
573                 if (opvsel < 3)
574                         opvsel = 3;
575                 if (opvsel > vselmax)
576                         opvsel = vselmax;
577                 return opvsel - 3;
578         }
579         return -EINVAL;
580 }
581
582 static int tps65910_get_voltage_sel(struct regulator_dev *dev)
583 {
584         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
585         int reg, value, id = rdev_get_id(dev);
586
587         reg = pmic->get_ctrl_reg(id);
588         if (reg < 0)
589                 return reg;
590
591         value = tps65910_reg_read(pmic, reg);
592         if (value < 0)
593                 return value;
594
595         switch (id) {
596         case TPS65910_REG_VIO:
597         case TPS65910_REG_VDIG1:
598         case TPS65910_REG_VDIG2:
599         case TPS65910_REG_VPLL:
600         case TPS65910_REG_VDAC:
601         case TPS65910_REG_VAUX1:
602         case TPS65910_REG_VAUX2:
603         case TPS65910_REG_VAUX33:
604         case TPS65910_REG_VMMC:
605                 value &= LDO_SEL_MASK;
606                 value >>= LDO_SEL_SHIFT;
607                 break;
608         default:
609                 return -EINVAL;
610         }
611
612         return value;
613 }
614
615 static int tps65910_get_voltage_vdd3(struct regulator_dev *dev)
616 {
617         return 5 * 1000 * 1000;
618 }
619
620 static int tps65911_get_voltage_sel(struct regulator_dev *dev)
621 {
622         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
623         int id = rdev_get_id(dev);
624         u8 value, reg;
625
626         reg = pmic->get_ctrl_reg(id);
627
628         value = tps65910_reg_read(pmic, reg);
629
630         switch (id) {
631         case TPS65911_REG_LDO1:
632         case TPS65911_REG_LDO2:
633         case TPS65911_REG_LDO4:
634                 value &= LDO1_SEL_MASK;
635                 value >>= LDO_SEL_SHIFT;
636                 break;
637         case TPS65911_REG_LDO3:
638         case TPS65911_REG_LDO5:
639         case TPS65911_REG_LDO6:
640         case TPS65911_REG_LDO7:
641         case TPS65911_REG_LDO8:
642                 value &= LDO3_SEL_MASK;
643                 value >>= LDO_SEL_SHIFT;
644                 break;
645         case TPS65910_REG_VIO:
646                 value &= LDO_SEL_MASK;
647                 value >>= LDO_SEL_SHIFT;
648                 break;
649         default:
650                 return -EINVAL;
651         }
652
653         return value;
654 }
655
656 static int tps65910_set_voltage_dcdc_sel(struct regulator_dev *dev,
657                                          unsigned selector)
658 {
659         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
660         int id = rdev_get_id(dev), vsel;
661         int dcdc_mult = 0;
662
663         switch (id) {
664         case TPS65910_REG_VDD1:
665                 dcdc_mult = (selector / VDD1_2_NUM_VOLT_FINE) + 1;
666                 if (dcdc_mult == 1)
667                         dcdc_mult--;
668                 vsel = (selector % VDD1_2_NUM_VOLT_FINE) + 3;
669
670                 tps65910_modify_bits(pmic, TPS65910_VDD1,
671                                 (dcdc_mult << VDD1_VGAIN_SEL_SHIFT),
672                                                 VDD1_VGAIN_SEL_MASK);
673                 tps65910_reg_write(pmic, TPS65910_VDD1_OP, vsel);
674                 break;
675         case TPS65910_REG_VDD2:
676                 dcdc_mult = (selector / VDD1_2_NUM_VOLT_FINE) + 1;
677                 if (dcdc_mult == 1)
678                         dcdc_mult--;
679                 vsel = (selector % VDD1_2_NUM_VOLT_FINE) + 3;
680
681                 tps65910_modify_bits(pmic, TPS65910_VDD2,
682                                 (dcdc_mult << VDD2_VGAIN_SEL_SHIFT),
683                                                 VDD1_VGAIN_SEL_MASK);
684                 tps65910_reg_write(pmic, TPS65910_VDD2_OP, vsel);
685                 break;
686         case TPS65911_REG_VDDCTRL:
687                 vsel = selector + 3;
688                 tps65910_reg_write(pmic, TPS65911_VDDCTRL_OP, vsel);
689         }
690
691         return 0;
692 }
693
694 static int tps65910_set_voltage_sel(struct regulator_dev *dev,
695                                     unsigned selector)
696 {
697         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
698         int reg, id = rdev_get_id(dev);
699
700         reg = pmic->get_ctrl_reg(id);
701         if (reg < 0)
702                 return reg;
703
704         switch (id) {
705         case TPS65910_REG_VIO:
706         case TPS65910_REG_VDIG1:
707         case TPS65910_REG_VDIG2:
708         case TPS65910_REG_VPLL:
709         case TPS65910_REG_VDAC:
710         case TPS65910_REG_VAUX1:
711         case TPS65910_REG_VAUX2:
712         case TPS65910_REG_VAUX33:
713         case TPS65910_REG_VMMC:
714                 return tps65910_modify_bits(pmic, reg,
715                                 (selector << LDO_SEL_SHIFT), LDO_SEL_MASK);
716         }
717
718         return -EINVAL;
719 }
720
721 static int tps65911_set_voltage_sel(struct regulator_dev *dev,
722                                     unsigned selector)
723 {
724         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
725         int reg, id = rdev_get_id(dev);
726
727         reg = pmic->get_ctrl_reg(id);
728         if (reg < 0)
729                 return reg;
730
731         switch (id) {
732         case TPS65911_REG_LDO1:
733         case TPS65911_REG_LDO2:
734         case TPS65911_REG_LDO4:
735                 return tps65910_modify_bits(pmic, reg,
736                                 (selector << LDO_SEL_SHIFT), LDO1_SEL_MASK);
737         case TPS65911_REG_LDO3:
738         case TPS65911_REG_LDO5:
739         case TPS65911_REG_LDO6:
740         case TPS65911_REG_LDO7:
741         case TPS65911_REG_LDO8:
742                 return tps65910_modify_bits(pmic, reg,
743                                 (selector << LDO_SEL_SHIFT), LDO3_SEL_MASK);
744         case TPS65910_REG_VIO:
745                 return tps65910_modify_bits(pmic, reg,
746                                 (selector << LDO_SEL_SHIFT), LDO_SEL_MASK);
747         }
748
749         return -EINVAL;
750 }
751
752
753 static int tps65910_list_voltage_dcdc(struct regulator_dev *dev,
754                                         unsigned selector)
755 {
756         int volt, mult = 1, id = rdev_get_id(dev);
757
758         switch (id) {
759         case TPS65910_REG_VDD1:
760         case TPS65910_REG_VDD2:
761                 mult = (selector / VDD1_2_NUM_VOLT_FINE) + 1;
762                 volt = VDD1_2_MIN_VOLT +
763                                 (selector % VDD1_2_NUM_VOLT_FINE) * VDD1_2_OFFSET;
764                 break;
765         case TPS65911_REG_VDDCTRL:
766                 volt = VDDCTRL_MIN_VOLT + (selector * VDDCTRL_OFFSET);
767                 break;
768         default:
769                 BUG();
770                 return -EINVAL;
771         }
772
773         return  volt * 100 * mult;
774 }
775
776 static int tps65910_list_voltage(struct regulator_dev *dev,
777                                         unsigned selector)
778 {
779         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
780         int id = rdev_get_id(dev), voltage;
781
782         if (id < TPS65910_REG_VIO || id > TPS65910_REG_VMMC)
783                 return -EINVAL;
784
785         if (selector >= pmic->info[id]->n_voltages)
786                 return -EINVAL;
787         else
788                 voltage = pmic->info[id]->voltage_table[selector] * 1000;
789
790         return voltage;
791 }
792
793 static int tps65911_list_voltage(struct regulator_dev *dev, unsigned selector)
794 {
795         struct tps65910_reg *pmic = rdev_get_drvdata(dev);
796         int step_mv = 0, id = rdev_get_id(dev);
797
798         switch(id) {
799         case TPS65911_REG_LDO1:
800         case TPS65911_REG_LDO2:
801         case TPS65911_REG_LDO4:
802                 /* The first 5 values of the selector correspond to 1V */
803                 if (selector < 5)
804                         selector = 0;
805                 else
806                         selector -= 4;
807
808                 step_mv = 50;
809                 break;
810         case TPS65911_REG_LDO3:
811         case TPS65911_REG_LDO5:
812         case TPS65911_REG_LDO6:
813         case TPS65911_REG_LDO7:
814         case TPS65911_REG_LDO8:
815                 /* The first 3 values of the selector correspond to 1V */
816                 if (selector < 3)
817                         selector = 0;
818                 else
819                         selector -= 2;
820
821                 step_mv = 100;
822                 break;
823         case TPS65910_REG_VIO:
824                 return pmic->info[id]->voltage_table[selector] * 1000;
825         default:
826                 return -EINVAL;
827         }
828
829         return (LDO_MIN_VOLT + selector * step_mv) * 1000;
830 }
831
832 static int tps65910_set_voltage_dcdc_time_sel(struct regulator_dev *dev,
833                 unsigned int old_selector, unsigned int new_selector)
834 {
835         int id = rdev_get_id(dev);
836         int old_volt, new_volt;
837
838         old_volt = tps65910_list_voltage_dcdc(dev, old_selector);
839         if (old_volt < 0)
840                 return old_volt;
841
842         new_volt = tps65910_list_voltage_dcdc(dev, new_selector);
843         if (new_volt < 0)
844                 return new_volt;
845
846         /* VDD1 and VDD2 are 12.5mV/us, VDDCTRL is 100mV/20us */
847         switch (id) {
848         case TPS65910_REG_VDD1:
849         case TPS65910_REG_VDD2:
850                 return DIV_ROUND_UP(abs(old_volt - new_volt), 12500);
851         case TPS65911_REG_VDDCTRL:
852                 return DIV_ROUND_UP(abs(old_volt - new_volt), 5000);
853         }
854         return -EINVAL;
855 }
856
857 /* Regulator ops (except VRTC) */
858 static struct regulator_ops tps65910_ops_dcdc = {
859         .is_enabled             = regulator_is_enabled_regmap,
860         .enable                 = regulator_enable_regmap,
861         .disable                = regulator_disable_regmap,
862         .enable_time            = tps65910_enable_time,
863         .set_mode               = tps65910_set_mode,
864         .get_mode               = tps65910_get_mode,
865         .get_voltage_sel        = tps65910_get_voltage_dcdc_sel,
866         .set_voltage_sel        = tps65910_set_voltage_dcdc_sel,
867         .set_voltage_time_sel   = tps65910_set_voltage_dcdc_time_sel,
868         .list_voltage           = tps65910_list_voltage_dcdc,
869 };
870
871 static struct regulator_ops tps65910_ops_vdd3 = {
872         .is_enabled             = regulator_is_enabled_regmap,
873         .enable                 = regulator_enable_regmap,
874         .disable                = regulator_disable_regmap,
875         .enable_time            = tps65910_enable_time,
876         .set_mode               = tps65910_set_mode,
877         .get_mode               = tps65910_get_mode,
878         .get_voltage            = tps65910_get_voltage_vdd3,
879         .list_voltage           = tps65910_list_voltage,
880 };
881
882 static struct regulator_ops tps65910_ops = {
883         .is_enabled             = regulator_is_enabled_regmap,
884         .enable                 = regulator_enable_regmap,
885         .disable                = regulator_disable_regmap,
886         .enable_time            = tps65910_enable_time,
887         .set_mode               = tps65910_set_mode,
888         .get_mode               = tps65910_get_mode,
889         .get_voltage_sel        = tps65910_get_voltage_sel,
890         .set_voltage_sel        = tps65910_set_voltage_sel,
891         .list_voltage           = tps65910_list_voltage,
892 };
893
894 static struct regulator_ops tps65911_ops = {
895         .is_enabled             = regulator_is_enabled_regmap,
896         .enable                 = regulator_enable_regmap,
897         .disable                = regulator_disable_regmap,
898         .enable_time            = tps65910_enable_time,
899         .set_mode               = tps65910_set_mode,
900         .get_mode               = tps65910_get_mode,
901         .get_voltage_sel        = tps65911_get_voltage_sel,
902         .set_voltage_sel        = tps65911_set_voltage_sel,
903         .list_voltage           = tps65911_list_voltage,
904 };
905
906 static int tps65910_set_ext_sleep_config(struct tps65910_reg *pmic,
907                 int id, int ext_sleep_config)
908 {
909         struct tps65910 *mfd = pmic->mfd;
910         u8 regoffs = (pmic->ext_sleep_control[id] >> 8) & 0xFF;
911         u8 bit_pos = (1 << pmic->ext_sleep_control[id] & 0xFF);
912         int ret;
913
914         /*
915          * Regulator can not be control from multiple external input EN1, EN2
916          * and EN3 together.
917          */
918         if (ext_sleep_config & EXT_SLEEP_CONTROL) {
919                 int en_count;
920                 en_count = ((ext_sleep_config &
921                                 TPS65910_SLEEP_CONTROL_EXT_INPUT_EN1) != 0);
922                 en_count += ((ext_sleep_config &
923                                 TPS65910_SLEEP_CONTROL_EXT_INPUT_EN2) != 0);
924                 en_count += ((ext_sleep_config &
925                                 TPS65910_SLEEP_CONTROL_EXT_INPUT_EN3) != 0);
926                 en_count += ((ext_sleep_config &
927                                 TPS65911_SLEEP_CONTROL_EXT_INPUT_SLEEP) != 0);
928                 if (en_count > 1) {
929                         dev_err(mfd->dev,
930                                 "External sleep control flag is not proper\n");
931                         return -EINVAL;
932                 }
933         }
934
935         pmic->board_ext_control[id] = ext_sleep_config;
936
937         /* External EN1 control */
938         if (ext_sleep_config & TPS65910_SLEEP_CONTROL_EXT_INPUT_EN1)
939                 ret = tps65910_set_bits(mfd,
940                                 TPS65910_EN1_LDO_ASS + regoffs, bit_pos);
941         else
942                 ret = tps65910_clear_bits(mfd,
943                                 TPS65910_EN1_LDO_ASS + regoffs, bit_pos);
944         if (ret < 0) {
945                 dev_err(mfd->dev,
946                         "Error in configuring external control EN1\n");
947                 return ret;
948         }
949
950         /* External EN2 control */
951         if (ext_sleep_config & TPS65910_SLEEP_CONTROL_EXT_INPUT_EN2)
952                 ret = tps65910_set_bits(mfd,
953                                 TPS65910_EN2_LDO_ASS + regoffs, bit_pos);
954         else
955                 ret = tps65910_clear_bits(mfd,
956                                 TPS65910_EN2_LDO_ASS + regoffs, bit_pos);
957         if (ret < 0) {
958                 dev_err(mfd->dev,
959                         "Error in configuring external control EN2\n");
960                 return ret;
961         }
962
963         /* External EN3 control for TPS65910 LDO only */
964         if ((tps65910_chip_id(mfd) == TPS65910) &&
965                         (id >= TPS65910_REG_VDIG1)) {
966                 if (ext_sleep_config & TPS65910_SLEEP_CONTROL_EXT_INPUT_EN3)
967                         ret = tps65910_set_bits(mfd,
968                                 TPS65910_EN3_LDO_ASS + regoffs, bit_pos);
969                 else
970                         ret = tps65910_clear_bits(mfd,
971                                 TPS65910_EN3_LDO_ASS + regoffs, bit_pos);
972                 if (ret < 0) {
973                         dev_err(mfd->dev,
974                                 "Error in configuring external control EN3\n");
975                         return ret;
976                 }
977         }
978
979         /* Return if no external control is selected */
980         if (!(ext_sleep_config & EXT_SLEEP_CONTROL)) {
981                 /* Clear all sleep controls */
982                 ret = tps65910_clear_bits(mfd,
983                         TPS65910_SLEEP_KEEP_LDO_ON + regoffs, bit_pos);
984                 if (!ret)
985                         ret = tps65910_clear_bits(mfd,
986                                 TPS65910_SLEEP_SET_LDO_OFF + regoffs, bit_pos);
987                 if (ret < 0)
988                         dev_err(mfd->dev,
989                                 "Error in configuring SLEEP register\n");
990                 return ret;
991         }
992
993         /*
994          * For regulator that has separate operational and sleep register make
995          * sure that operational is used and clear sleep register to turn
996          * regulator off when external control is inactive
997          */
998         if ((id == TPS65910_REG_VDD1) ||
999                 (id == TPS65910_REG_VDD2) ||
1000                         ((id == TPS65911_REG_VDDCTRL) &&
1001                                 (tps65910_chip_id(mfd) == TPS65911))) {
1002                 int op_reg_add = pmic->get_ctrl_reg(id) + 1;
1003                 int sr_reg_add = pmic->get_ctrl_reg(id) + 2;
1004                 int opvsel = tps65910_reg_read(pmic, op_reg_add);
1005                 int srvsel = tps65910_reg_read(pmic, sr_reg_add);
1006                 if (opvsel & VDD1_OP_CMD_MASK) {
1007                         u8 reg_val = srvsel & VDD1_OP_SEL_MASK;
1008                         ret = tps65910_reg_write(pmic, op_reg_add, reg_val);
1009                         if (ret < 0) {
1010                                 dev_err(mfd->dev,
1011                                         "Error in configuring op register\n");
1012                                 return ret;
1013                         }
1014                 }
1015                 ret = tps65910_reg_write(pmic, sr_reg_add, 0);
1016                 if (ret < 0) {
1017                         dev_err(mfd->dev, "Error in settting sr register\n");
1018                         return ret;
1019                 }
1020         }
1021
1022         ret = tps65910_clear_bits(mfd,
1023                         TPS65910_SLEEP_KEEP_LDO_ON + regoffs, bit_pos);
1024         if (!ret) {
1025                 if (ext_sleep_config & TPS65911_SLEEP_CONTROL_EXT_INPUT_SLEEP)
1026                         ret = tps65910_set_bits(mfd,
1027                                 TPS65910_SLEEP_SET_LDO_OFF + regoffs, bit_pos);
1028                 else
1029                         ret = tps65910_clear_bits(mfd,
1030                                 TPS65910_SLEEP_SET_LDO_OFF + regoffs, bit_pos);
1031         }
1032         if (ret < 0)
1033                 dev_err(mfd->dev,
1034                         "Error in configuring SLEEP register\n");
1035
1036         return ret;
1037 }
1038
1039 #ifdef CONFIG_OF
1040
1041 static struct of_regulator_match tps65910_matches[] = {
1042         { .name = "vrtc",       .driver_data = (void *) &tps65910_regs[0] },
1043         { .name = "vio",        .driver_data = (void *) &tps65910_regs[1] },
1044         { .name = "vdd1",       .driver_data = (void *) &tps65910_regs[2] },
1045         { .name = "vdd2",       .driver_data = (void *) &tps65910_regs[3] },
1046         { .name = "vdd3",       .driver_data = (void *) &tps65910_regs[4] },
1047         { .name = "vdig1",      .driver_data = (void *) &tps65910_regs[5] },
1048         { .name = "vdig2",      .driver_data = (void *) &tps65910_regs[6] },
1049         { .name = "vpll",       .driver_data = (void *) &tps65910_regs[7] },
1050         { .name = "vdac",       .driver_data = (void *) &tps65910_regs[8] },
1051         { .name = "vaux1",      .driver_data = (void *) &tps65910_regs[9] },
1052         { .name = "vaux2",      .driver_data = (void *) &tps65910_regs[10] },
1053         { .name = "vaux33",     .driver_data = (void *) &tps65910_regs[11] },
1054         { .name = "vmmc",       .driver_data = (void *) &tps65910_regs[12] },
1055 };
1056
1057 static struct of_regulator_match tps65911_matches[] = {
1058         { .name = "vrtc",       .driver_data = (void *) &tps65911_regs[0] },
1059         { .name = "vio",        .driver_data = (void *) &tps65911_regs[1] },
1060         { .name = "vdd1",       .driver_data = (void *) &tps65911_regs[2] },
1061         { .name = "vdd2",       .driver_data = (void *) &tps65911_regs[3] },
1062         { .name = "vddctrl",    .driver_data = (void *) &tps65911_regs[4] },
1063         { .name = "ldo1",       .driver_data = (void *) &tps65911_regs[5] },
1064         { .name = "ldo2",       .driver_data = (void *) &tps65911_regs[6] },
1065         { .name = "ldo3",       .driver_data = (void *) &tps65911_regs[7] },
1066         { .name = "ldo4",       .driver_data = (void *) &tps65911_regs[8] },
1067         { .name = "ldo5",       .driver_data = (void *) &tps65911_regs[9] },
1068         { .name = "ldo6",       .driver_data = (void *) &tps65911_regs[10] },
1069         { .name = "ldo7",       .driver_data = (void *) &tps65911_regs[11] },
1070         { .name = "ldo8",       .driver_data = (void *) &tps65911_regs[12] },
1071 };
1072
1073 static struct tps65910_board *tps65910_parse_dt_reg_data(
1074                 struct platform_device *pdev,
1075                 struct of_regulator_match **tps65910_reg_matches)
1076 {
1077         struct tps65910_board *pmic_plat_data;
1078         struct tps65910 *tps65910 = dev_get_drvdata(pdev->dev.parent);
1079         struct device_node *np = pdev->dev.parent->of_node;
1080         struct device_node *regulators;
1081         struct of_regulator_match *matches;
1082         unsigned int prop;
1083         int idx = 0, ret, count;
1084
1085         pmic_plat_data = devm_kzalloc(&pdev->dev, sizeof(*pmic_plat_data),
1086                                         GFP_KERNEL);
1087
1088         if (!pmic_plat_data) {
1089                 dev_err(&pdev->dev, "Failure to alloc pdata for regulators.\n");
1090                 return NULL;
1091         }
1092
1093         regulators = of_find_node_by_name(np, "regulators");
1094         if (!regulators) {
1095                 dev_err(&pdev->dev, "regulator node not found\n");
1096                 return NULL;
1097         }
1098
1099         switch (tps65910_chip_id(tps65910)) {
1100         case TPS65910:
1101                 count = ARRAY_SIZE(tps65910_matches);
1102                 matches = tps65910_matches;
1103                 break;
1104         case TPS65911:
1105                 count = ARRAY_SIZE(tps65911_matches);
1106                 matches = tps65911_matches;
1107                 break;
1108         default:
1109                 dev_err(&pdev->dev, "Invalid tps chip version\n");
1110                 return NULL;
1111         }
1112
1113         ret = of_regulator_match(pdev->dev.parent, regulators, matches, count);
1114         if (ret < 0) {
1115                 dev_err(&pdev->dev, "Error parsing regulator init data: %d\n",
1116                         ret);
1117                 return NULL;
1118         }
1119
1120         *tps65910_reg_matches = matches;
1121
1122         for (idx = 0; idx < count; idx++) {
1123                 if (!matches[idx].init_data || !matches[idx].of_node)
1124                         continue;
1125
1126                 pmic_plat_data->tps65910_pmic_init_data[idx] =
1127                                                         matches[idx].init_data;
1128
1129                 ret = of_property_read_u32(matches[idx].of_node,
1130                                 "ti,regulator-ext-sleep-control", &prop);
1131                 if (!ret)
1132                         pmic_plat_data->regulator_ext_sleep_control[idx] = prop;
1133         }
1134
1135         return pmic_plat_data;
1136 }
1137 #else
1138 static inline struct tps65910_board *tps65910_parse_dt_reg_data(
1139                         struct platform_device *pdev,
1140                         struct of_regulator_match **tps65910_reg_matches)
1141 {
1142         *tps65910_reg_matches = NULL;
1143         return 0;
1144 }
1145 #endif
1146
1147 static __devinit int tps65910_probe(struct platform_device *pdev)
1148 {
1149         struct tps65910 *tps65910 = dev_get_drvdata(pdev->dev.parent);
1150         struct regulator_config config = { };
1151         struct tps_info *info;
1152         struct regulator_init_data *reg_data;
1153         struct regulator_dev *rdev;
1154         struct tps65910_reg *pmic;
1155         struct tps65910_board *pmic_plat_data;
1156         struct of_regulator_match *tps65910_reg_matches = NULL;
1157         int i, err;
1158
1159         pmic_plat_data = dev_get_platdata(tps65910->dev);
1160         if (!pmic_plat_data && tps65910->dev->of_node)
1161                 pmic_plat_data = tps65910_parse_dt_reg_data(pdev,
1162                                                 &tps65910_reg_matches);
1163
1164         if (!pmic_plat_data) {
1165                 dev_err(&pdev->dev, "Platform data not found\n");
1166                 return -EINVAL;
1167         }
1168
1169         pmic = devm_kzalloc(&pdev->dev, sizeof(*pmic), GFP_KERNEL);
1170         if (!pmic) {
1171                 dev_err(&pdev->dev, "Memory allocation failed for pmic\n");
1172                 return -ENOMEM;
1173         }
1174
1175         mutex_init(&pmic->mutex);
1176         pmic->mfd = tps65910;
1177         platform_set_drvdata(pdev, pmic);
1178
1179         /* Give control of all register to control port */
1180         tps65910_set_bits(pmic->mfd, TPS65910_DEVCTRL,
1181                                 DEVCTRL_SR_CTL_I2C_SEL_MASK);
1182
1183         switch(tps65910_chip_id(tps65910)) {
1184         case TPS65910:
1185                 pmic->get_ctrl_reg = &tps65910_get_ctrl_register;
1186                 pmic->num_regulators = ARRAY_SIZE(tps65910_regs);
1187                 pmic->ext_sleep_control = tps65910_ext_sleep_control;
1188                 info = tps65910_regs;
1189                 break;
1190         case TPS65911:
1191                 pmic->get_ctrl_reg = &tps65911_get_ctrl_register;
1192                 pmic->num_regulators = ARRAY_SIZE(tps65911_regs);
1193                 pmic->ext_sleep_control = tps65911_ext_sleep_control;
1194                 info = tps65911_regs;
1195                 break;
1196         default:
1197                 dev_err(&pdev->dev, "Invalid tps chip version\n");
1198                 return -ENODEV;
1199         }
1200
1201         pmic->desc = devm_kzalloc(&pdev->dev, pmic->num_regulators *
1202                         sizeof(struct regulator_desc), GFP_KERNEL);
1203         if (!pmic->desc) {
1204                 dev_err(&pdev->dev, "Memory alloc fails for desc\n");
1205                 return -ENOMEM;
1206         }
1207
1208         pmic->info = devm_kzalloc(&pdev->dev, pmic->num_regulators *
1209                         sizeof(struct tps_info *), GFP_KERNEL);
1210         if (!pmic->info) {
1211                 dev_err(&pdev->dev, "Memory alloc fails for info\n");
1212                 return -ENOMEM;
1213         }
1214
1215         pmic->rdev = devm_kzalloc(&pdev->dev, pmic->num_regulators *
1216                         sizeof(struct regulator_dev *), GFP_KERNEL);
1217         if (!pmic->rdev) {
1218                 dev_err(&pdev->dev, "Memory alloc fails for rdev\n");
1219                 return -ENOMEM;
1220         }
1221
1222         for (i = 0; i < pmic->num_regulators && i < TPS65910_NUM_REGS;
1223                         i++, info++) {
1224
1225                 reg_data = pmic_plat_data->tps65910_pmic_init_data[i];
1226
1227                 /* Regulator API handles empty constraints but not NULL
1228                  * constraints */
1229                 if (!reg_data)
1230                         continue;
1231
1232                 /* Register the regulators */
1233                 pmic->info[i] = info;
1234
1235                 pmic->desc[i].name = info->name;
1236                 pmic->desc[i].id = i;
1237                 pmic->desc[i].n_voltages = info->n_voltages;
1238
1239                 if (i == TPS65910_REG_VDD1 || i == TPS65910_REG_VDD2) {
1240                         pmic->desc[i].ops = &tps65910_ops_dcdc;
1241                         pmic->desc[i].n_voltages = VDD1_2_NUM_VOLT_FINE *
1242                                                         VDD1_2_NUM_VOLT_COARSE;
1243                 } else if (i == TPS65910_REG_VDD3) {
1244                         if (tps65910_chip_id(tps65910) == TPS65910)
1245                                 pmic->desc[i].ops = &tps65910_ops_vdd3;
1246                         else
1247                                 pmic->desc[i].ops = &tps65910_ops_dcdc;
1248                 } else {
1249                         if (tps65910_chip_id(tps65910) == TPS65910)
1250                                 pmic->desc[i].ops = &tps65910_ops;
1251                         else
1252                                 pmic->desc[i].ops = &tps65911_ops;
1253                 }
1254
1255                 err = tps65910_set_ext_sleep_config(pmic, i,
1256                                 pmic_plat_data->regulator_ext_sleep_control[i]);
1257                 /*
1258                  * Failing on regulator for configuring externally control
1259                  * is not a serious issue, just throw warning.
1260                  */
1261                 if (err < 0)
1262                         dev_warn(tps65910->dev,
1263                                 "Failed to initialise ext control config\n");
1264
1265                 pmic->desc[i].type = REGULATOR_VOLTAGE;
1266                 pmic->desc[i].owner = THIS_MODULE;
1267                 pmic->desc[i].enable_reg = pmic->get_ctrl_reg(i);
1268                 pmic->desc[i].enable_mask = TPS65910_SUPPLY_STATE_ENABLED;
1269
1270                 config.dev = tps65910->dev;
1271                 config.init_data = reg_data;
1272                 config.driver_data = pmic;
1273                 config.regmap = tps65910->regmap;
1274
1275                 if (tps65910_reg_matches)
1276                         config.of_node = tps65910_reg_matches[i].of_node;
1277
1278                 rdev = regulator_register(&pmic->desc[i], &config);
1279                 if (IS_ERR(rdev)) {
1280                         dev_err(tps65910->dev,
1281                                 "failed to register %s regulator\n",
1282                                 pdev->name);
1283                         err = PTR_ERR(rdev);
1284                         goto err_unregister_regulator;
1285                 }
1286
1287                 /* Save regulator for cleanup */
1288                 pmic->rdev[i] = rdev;
1289         }
1290         return 0;
1291
1292 err_unregister_regulator:
1293         while (--i >= 0)
1294                 regulator_unregister(pmic->rdev[i]);
1295         return err;
1296 }
1297
1298 static int __devexit tps65910_remove(struct platform_device *pdev)
1299 {
1300         struct tps65910_reg *pmic = platform_get_drvdata(pdev);
1301         int i;
1302
1303         for (i = 0; i < pmic->num_regulators; i++)
1304                 regulator_unregister(pmic->rdev[i]);
1305
1306         return 0;
1307 }
1308
1309 static void tps65910_shutdown(struct platform_device *pdev)
1310 {
1311         struct tps65910_reg *pmic = platform_get_drvdata(pdev);
1312         int i;
1313
1314         /*
1315          * Before bootloader jumps to kernel, it makes sure that required
1316          * external control signals are in desired state so that given rails
1317          * can be configure accordingly.
1318          * If rails are configured to be controlled from external control
1319          * then before shutting down/rebooting the system, the external
1320          * control configuration need to be remove from the rails so that
1321          * its output will be available as per register programming even
1322          * if external controls are removed. This is require when the POR
1323          * value of the control signals are not in active state and before
1324          * bootloader initializes it, the system requires the rail output
1325          * to be active for booting.
1326          */
1327         for (i = 0; i < pmic->num_regulators; i++) {
1328                 int err;
1329                 if (!pmic->rdev[i])
1330                         continue;
1331
1332                 err = tps65910_set_ext_sleep_config(pmic, i, 0);
1333                 if (err < 0)
1334                         dev_err(&pdev->dev,
1335                                 "Error in clearing external control\n");
1336         }
1337 }
1338
1339 static struct platform_driver tps65910_driver = {
1340         .driver = {
1341                 .name = "tps65910-pmic",
1342                 .owner = THIS_MODULE,
1343         },
1344         .probe = tps65910_probe,
1345         .remove = __devexit_p(tps65910_remove),
1346         .shutdown = tps65910_shutdown,
1347 };
1348
1349 static int __init tps65910_init(void)
1350 {
1351         return platform_driver_register(&tps65910_driver);
1352 }
1353 subsys_initcall(tps65910_init);
1354
1355 static void __exit tps65910_cleanup(void)
1356 {
1357         platform_driver_unregister(&tps65910_driver);
1358 }
1359 module_exit(tps65910_cleanup);
1360
1361 MODULE_AUTHOR("Graeme Gregory <gg@slimlogic.co.uk>");
1362 MODULE_DESCRIPTION("TPS65910/TPS65911 voltage regulator driver");
1363 MODULE_LICENSE("GPL v2");
1364 MODULE_ALIAS("platform:tps65910-pmic");