]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/regulator/twl-regulator.c
regulator: twl: Convert twlsmps_ops to get_voltage_sel and map_voltage
[karo-tx-linux.git] / drivers / regulator / twl-regulator.c
1 /*
2  * twl-regulator.c -- support regulators in twl4030/twl6030 family chips
3  *
4  * Copyright (C) 2008 David Brownell
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  */
11
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/err.h>
15 #include <linux/platform_device.h>
16 #include <linux/of.h>
17 #include <linux/of_device.h>
18 #include <linux/regulator/driver.h>
19 #include <linux/regulator/machine.h>
20 #include <linux/regulator/of_regulator.h>
21 #include <linux/i2c/twl.h>
22
23
24 /*
25  * The TWL4030/TW5030/TPS659x0/TWL6030 family chips include power management, a
26  * USB OTG transceiver, an RTC, ADC, PWM, and lots more.  Some versions
27  * include an audio codec, battery charger, and more voltage regulators.
28  * These chips are often used in OMAP-based systems.
29  *
30  * This driver implements software-based resource control for various
31  * voltage regulators.  This is usually augmented with state machine
32  * based control.
33  */
34
35 struct twlreg_info {
36         /* start of regulator's PM_RECEIVER control register bank */
37         u8                      base;
38
39         /* twl resource ID, for resource control state machine */
40         u8                      id;
41
42         /* voltage in mV = table[VSEL]; table_len must be a power-of-two */
43         u8                      table_len;
44         const u16               *table;
45
46         /* State REMAP default configuration */
47         u8                      remap;
48
49         /* chip constraints on regulator behavior */
50         u16                     min_mV;
51         u16                     max_mV;
52
53         u8                      flags;
54
55         /* used by regulator core */
56         struct regulator_desc   desc;
57
58         /* chip specific features */
59         unsigned long           features;
60
61         /*
62          * optional override functions for voltage set/get
63          * these are currently only used for SMPS regulators
64          */
65         int                     (*get_voltage)(void *data);
66         int                     (*set_voltage)(void *data, int target_uV);
67
68         /* data passed from board for external get/set voltage */
69         void                    *data;
70 };
71
72
73 /* LDO control registers ... offset is from the base of its register bank.
74  * The first three registers of all power resource banks help hardware to
75  * manage the various resource groups.
76  */
77 /* Common offset in TWL4030/6030 */
78 #define VREG_GRP                0
79 /* TWL4030 register offsets */
80 #define VREG_TYPE               1
81 #define VREG_REMAP              2
82 #define VREG_DEDICATED          3       /* LDO control */
83 #define VREG_VOLTAGE_SMPS_4030  9
84 /* TWL6030 register offsets */
85 #define VREG_TRANS              1
86 #define VREG_STATE              2
87 #define VREG_VOLTAGE            3
88 #define VREG_VOLTAGE_SMPS       4
89 /* TWL6030 Misc register offsets */
90 #define VREG_BC_ALL             1
91 #define VREG_BC_REF             2
92 #define VREG_BC_PROC            3
93 #define VREG_BC_CLK_RST         4
94
95 /* TWL6030 LDO register values for CFG_STATE */
96 #define TWL6030_CFG_STATE_OFF   0x00
97 #define TWL6030_CFG_STATE_ON    0x01
98 #define TWL6030_CFG_STATE_OFF2  0x02
99 #define TWL6030_CFG_STATE_SLEEP 0x03
100 #define TWL6030_CFG_STATE_GRP_SHIFT     5
101 #define TWL6030_CFG_STATE_APP_SHIFT     2
102 #define TWL6030_CFG_STATE_APP_MASK      (0x03 << TWL6030_CFG_STATE_APP_SHIFT)
103 #define TWL6030_CFG_STATE_APP(v)        (((v) & TWL6030_CFG_STATE_APP_MASK) >>\
104                                                 TWL6030_CFG_STATE_APP_SHIFT)
105
106 /* Flags for SMPS Voltage reading */
107 #define SMPS_OFFSET_EN          BIT(0)
108 #define SMPS_EXTENDED_EN        BIT(1)
109
110 /* twl6025 SMPS EPROM values */
111 #define TWL6030_SMPS_OFFSET             0xB0
112 #define TWL6030_SMPS_MULT               0xB3
113 #define SMPS_MULTOFFSET_SMPS4   BIT(0)
114 #define SMPS_MULTOFFSET_VIO     BIT(1)
115 #define SMPS_MULTOFFSET_SMPS3   BIT(6)
116
117 static inline int
118 twlreg_read(struct twlreg_info *info, unsigned slave_subgp, unsigned offset)
119 {
120         u8 value;
121         int status;
122
123         status = twl_i2c_read_u8(slave_subgp,
124                         &value, info->base + offset);
125         return (status < 0) ? status : value;
126 }
127
128 static inline int
129 twlreg_write(struct twlreg_info *info, unsigned slave_subgp, unsigned offset,
130                                                  u8 value)
131 {
132         return twl_i2c_write_u8(slave_subgp,
133                         value, info->base + offset);
134 }
135
136 /*----------------------------------------------------------------------*/
137
138 /* generic power resource operations, which work on all regulators */
139
140 static int twlreg_grp(struct regulator_dev *rdev)
141 {
142         return twlreg_read(rdev_get_drvdata(rdev), TWL_MODULE_PM_RECEIVER,
143                                                                  VREG_GRP);
144 }
145
146 /*
147  * Enable/disable regulators by joining/leaving the P1 (processor) group.
148  * We assume nobody else is updating the DEV_GRP registers.
149  */
150 /* definition for 4030 family */
151 #define P3_GRP_4030     BIT(7)          /* "peripherals" */
152 #define P2_GRP_4030     BIT(6)          /* secondary processor, modem, etc */
153 #define P1_GRP_4030     BIT(5)          /* CPU/Linux */
154 /* definition for 6030 family */
155 #define P3_GRP_6030     BIT(2)          /* secondary processor, modem, etc */
156 #define P2_GRP_6030     BIT(1)          /* "peripherals" */
157 #define P1_GRP_6030     BIT(0)          /* CPU/Linux */
158
159 static int twl4030reg_is_enabled(struct regulator_dev *rdev)
160 {
161         int     state = twlreg_grp(rdev);
162
163         if (state < 0)
164                 return state;
165
166         return state & P1_GRP_4030;
167 }
168
169 static int twl6030reg_is_enabled(struct regulator_dev *rdev)
170 {
171         struct twlreg_info      *info = rdev_get_drvdata(rdev);
172         int                     grp = 0, val;
173
174         if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS))) {
175                 grp = twlreg_grp(rdev);
176                 if (grp < 0)
177                         return grp;
178                 grp &= P1_GRP_6030;
179         } else {
180                 grp = 1;
181         }
182
183         val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);
184         val = TWL6030_CFG_STATE_APP(val);
185
186         return grp && (val == TWL6030_CFG_STATE_ON);
187 }
188
189 static int twl4030reg_enable(struct regulator_dev *rdev)
190 {
191         struct twlreg_info      *info = rdev_get_drvdata(rdev);
192         int                     grp;
193         int                     ret;
194
195         grp = twlreg_grp(rdev);
196         if (grp < 0)
197                 return grp;
198
199         grp |= P1_GRP_4030;
200
201         ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
202
203         return ret;
204 }
205
206 static int twl6030reg_enable(struct regulator_dev *rdev)
207 {
208         struct twlreg_info      *info = rdev_get_drvdata(rdev);
209         int                     grp = 0;
210         int                     ret;
211
212         if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
213                 grp = twlreg_grp(rdev);
214         if (grp < 0)
215                 return grp;
216
217         ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
218                         grp << TWL6030_CFG_STATE_GRP_SHIFT |
219                         TWL6030_CFG_STATE_ON);
220         return ret;
221 }
222
223 static int twl4030reg_disable(struct regulator_dev *rdev)
224 {
225         struct twlreg_info      *info = rdev_get_drvdata(rdev);
226         int                     grp;
227         int                     ret;
228
229         grp = twlreg_grp(rdev);
230         if (grp < 0)
231                 return grp;
232
233         grp &= ~(P1_GRP_4030 | P2_GRP_4030 | P3_GRP_4030);
234
235         ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
236
237         return ret;
238 }
239
240 static int twl6030reg_disable(struct regulator_dev *rdev)
241 {
242         struct twlreg_info      *info = rdev_get_drvdata(rdev);
243         int                     grp = 0;
244         int                     ret;
245
246         if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
247                 grp = P1_GRP_6030 | P2_GRP_6030 | P3_GRP_6030;
248
249         /* For 6030, set the off state for all grps enabled */
250         ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
251                         (grp) << TWL6030_CFG_STATE_GRP_SHIFT |
252                         TWL6030_CFG_STATE_OFF);
253
254         return ret;
255 }
256
257 static int twl4030reg_get_status(struct regulator_dev *rdev)
258 {
259         int     state = twlreg_grp(rdev);
260
261         if (state < 0)
262                 return state;
263         state &= 0x0f;
264
265         /* assume state != WARM_RESET; we'd not be running...  */
266         if (!state)
267                 return REGULATOR_STATUS_OFF;
268         return (state & BIT(3))
269                 ? REGULATOR_STATUS_NORMAL
270                 : REGULATOR_STATUS_STANDBY;
271 }
272
273 static int twl6030reg_get_status(struct regulator_dev *rdev)
274 {
275         struct twlreg_info      *info = rdev_get_drvdata(rdev);
276         int                     val;
277
278         val = twlreg_grp(rdev);
279         if (val < 0)
280                 return val;
281
282         val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);
283
284         switch (TWL6030_CFG_STATE_APP(val)) {
285         case TWL6030_CFG_STATE_ON:
286                 return REGULATOR_STATUS_NORMAL;
287
288         case TWL6030_CFG_STATE_SLEEP:
289                 return REGULATOR_STATUS_STANDBY;
290
291         case TWL6030_CFG_STATE_OFF:
292         case TWL6030_CFG_STATE_OFF2:
293         default:
294                 break;
295         }
296
297         return REGULATOR_STATUS_OFF;
298 }
299
300 static int twl4030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
301 {
302         struct twlreg_info      *info = rdev_get_drvdata(rdev);
303         unsigned                message;
304         int                     status;
305
306         /* We can only set the mode through state machine commands... */
307         switch (mode) {
308         case REGULATOR_MODE_NORMAL:
309                 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_ACTIVE);
310                 break;
311         case REGULATOR_MODE_STANDBY:
312                 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_SLEEP);
313                 break;
314         default:
315                 return -EINVAL;
316         }
317
318         /* Ensure the resource is associated with some group */
319         status = twlreg_grp(rdev);
320         if (status < 0)
321                 return status;
322         if (!(status & (P3_GRP_4030 | P2_GRP_4030 | P1_GRP_4030)))
323                 return -EACCES;
324
325         status = twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
326                         message >> 8, TWL4030_PM_MASTER_PB_WORD_MSB);
327         if (status < 0)
328                 return status;
329
330         return twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
331                         message & 0xff, TWL4030_PM_MASTER_PB_WORD_LSB);
332 }
333
334 static int twl6030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
335 {
336         struct twlreg_info      *info = rdev_get_drvdata(rdev);
337         int grp = 0;
338         int val;
339
340         if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
341                 grp = twlreg_grp(rdev);
342
343         if (grp < 0)
344                 return grp;
345
346         /* Compose the state register settings */
347         val = grp << TWL6030_CFG_STATE_GRP_SHIFT;
348         /* We can only set the mode through state machine commands... */
349         switch (mode) {
350         case REGULATOR_MODE_NORMAL:
351                 val |= TWL6030_CFG_STATE_ON;
352                 break;
353         case REGULATOR_MODE_STANDBY:
354                 val |= TWL6030_CFG_STATE_SLEEP;
355                 break;
356
357         default:
358                 return -EINVAL;
359         }
360
361         return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE, val);
362 }
363
364 /*----------------------------------------------------------------------*/
365
366 /*
367  * Support for adjustable-voltage LDOs uses a four bit (or less) voltage
368  * select field in its control register.   We use tables indexed by VSEL
369  * to record voltages in milliVolts.  (Accuracy is about three percent.)
370  *
371  * Note that VSEL values for VAUX2 changed in twl5030 and newer silicon;
372  * currently handled by listing two slightly different VAUX2 regulators,
373  * only one of which will be configured.
374  *
375  * VSEL values documented as "TI cannot support these values" are flagged
376  * in these tables as UNSUP() values; we normally won't assign them.
377  *
378  * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported.
379  * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting.
380  */
381 #define UNSUP_MASK      0x8000
382
383 #define UNSUP(x)        (UNSUP_MASK | (x))
384 #define IS_UNSUP(info, x)                       \
385         ((UNSUP_MASK & (x)) &&                  \
386          !((info)->features & TWL4030_ALLOW_UNSUPPORTED))
387 #define LDO_MV(x)       (~UNSUP_MASK & (x))
388
389
390 static const u16 VAUX1_VSEL_table[] = {
391         UNSUP(1500), UNSUP(1800), 2500, 2800,
392         3000, 3000, 3000, 3000,
393 };
394 static const u16 VAUX2_4030_VSEL_table[] = {
395         UNSUP(1000), UNSUP(1000), UNSUP(1200), 1300,
396         1500, 1800, UNSUP(1850), 2500,
397         UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
398         UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
399 };
400 static const u16 VAUX2_VSEL_table[] = {
401         1700, 1700, 1900, 1300,
402         1500, 1800, 2000, 2500,
403         2100, 2800, 2200, 2300,
404         2400, 2400, 2400, 2400,
405 };
406 static const u16 VAUX3_VSEL_table[] = {
407         1500, 1800, 2500, 2800,
408         3000, 3000, 3000, 3000,
409 };
410 static const u16 VAUX4_VSEL_table[] = {
411         700, 1000, 1200, UNSUP(1300),
412         1500, 1800, UNSUP(1850), 2500,
413         UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
414         UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
415 };
416 static const u16 VMMC1_VSEL_table[] = {
417         1850, 2850, 3000, 3150,
418 };
419 static const u16 VMMC2_VSEL_table[] = {
420         UNSUP(1000), UNSUP(1000), UNSUP(1200), UNSUP(1300),
421         UNSUP(1500), UNSUP(1800), 1850, UNSUP(2500),
422         2600, 2800, 2850, 3000,
423         3150, 3150, 3150, 3150,
424 };
425 static const u16 VPLL1_VSEL_table[] = {
426         1000, 1200, 1300, 1800,
427         UNSUP(2800), UNSUP(3000), UNSUP(3000), UNSUP(3000),
428 };
429 static const u16 VPLL2_VSEL_table[] = {
430         700, 1000, 1200, 1300,
431         UNSUP(1500), 1800, UNSUP(1850), UNSUP(2500),
432         UNSUP(2600), UNSUP(2800), UNSUP(2850), UNSUP(3000),
433         UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
434 };
435 static const u16 VSIM_VSEL_table[] = {
436         UNSUP(1000), UNSUP(1200), UNSUP(1300), 1800,
437         2800, 3000, 3000, 3000,
438 };
439 static const u16 VDAC_VSEL_table[] = {
440         1200, 1300, 1800, 1800,
441 };
442 static const u16 VDD1_VSEL_table[] = {
443         800, 1450,
444 };
445 static const u16 VDD2_VSEL_table[] = {
446         800, 1450, 1500,
447 };
448 static const u16 VIO_VSEL_table[] = {
449         1800, 1850,
450 };
451 static const u16 VINTANA2_VSEL_table[] = {
452         2500, 2750,
453 };
454
455 static int twl4030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
456 {
457         struct twlreg_info      *info = rdev_get_drvdata(rdev);
458         int                     mV = info->table[index];
459
460         return IS_UNSUP(info, mV) ? 0 : (LDO_MV(mV) * 1000);
461 }
462
463 static int
464 twl4030ldo_set_voltage_sel(struct regulator_dev *rdev, unsigned selector)
465 {
466         struct twlreg_info      *info = rdev_get_drvdata(rdev);
467
468         return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE,
469                             selector);
470 }
471
472 static int twl4030ldo_get_voltage(struct regulator_dev *rdev)
473 {
474         struct twlreg_info      *info = rdev_get_drvdata(rdev);
475         int             vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
476                                                                 VREG_VOLTAGE);
477
478         if (vsel < 0)
479                 return vsel;
480
481         vsel &= info->table_len - 1;
482         return LDO_MV(info->table[vsel]) * 1000;
483 }
484
485 static struct regulator_ops twl4030ldo_ops = {
486         .list_voltage   = twl4030ldo_list_voltage,
487
488         .set_voltage_sel = twl4030ldo_set_voltage_sel,
489         .get_voltage    = twl4030ldo_get_voltage,
490
491         .enable         = twl4030reg_enable,
492         .disable        = twl4030reg_disable,
493         .is_enabled     = twl4030reg_is_enabled,
494
495         .set_mode       = twl4030reg_set_mode,
496
497         .get_status     = twl4030reg_get_status,
498 };
499
500 static int
501 twl4030smps_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
502                         unsigned *selector)
503 {
504         struct twlreg_info *info = rdev_get_drvdata(rdev);
505         int vsel = DIV_ROUND_UP(min_uV - 600000, 12500);
506
507         if (info->set_voltage) {
508                 return info->set_voltage(info->data, min_uV);
509         } else {
510                 twlreg_write(info, TWL_MODULE_PM_RECEIVER,
511                         VREG_VOLTAGE_SMPS_4030, vsel);
512         }
513
514         return 0;
515 }
516
517 static int twl4030smps_get_voltage(struct regulator_dev *rdev)
518 {
519         struct twlreg_info *info = rdev_get_drvdata(rdev);
520         int vsel;
521
522         if (info->get_voltage)
523                 return info->get_voltage(info->data);
524
525         vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
526                 VREG_VOLTAGE_SMPS_4030);
527
528         return vsel * 12500 + 600000;
529 }
530
531 static struct regulator_ops twl4030smps_ops = {
532         .set_voltage    = twl4030smps_set_voltage,
533         .get_voltage    = twl4030smps_get_voltage,
534 };
535
536 static int twl6030coresmps_set_voltage(struct regulator_dev *rdev, int min_uV,
537         int max_uV, unsigned *selector)
538 {
539         struct twlreg_info *info = rdev_get_drvdata(rdev);
540
541         if (info->set_voltage)
542                 return info->set_voltage(info->data, min_uV);
543
544         return -ENODEV;
545 }
546
547 static int twl6030coresmps_get_voltage(struct regulator_dev *rdev)
548 {
549         struct twlreg_info *info = rdev_get_drvdata(rdev);
550
551         if (info->get_voltage)
552                 return info->get_voltage(info->data);
553
554         return -ENODEV;
555 }
556
557 static struct regulator_ops twl6030coresmps_ops = {
558         .set_voltage    = twl6030coresmps_set_voltage,
559         .get_voltage    = twl6030coresmps_get_voltage,
560 };
561
562 static int twl6030ldo_list_voltage(struct regulator_dev *rdev, unsigned sel)
563 {
564         struct twlreg_info *info = rdev_get_drvdata(rdev);
565
566         switch (sel) {
567         case 0:
568                 return 0;
569         case 1 ... 24:
570                 /* Linear mapping from 00000001 to 00011000:
571                  * Absolute voltage value = 1.0 V + 0.1 V Ã— (sel â€“ 00000001)
572                  */
573                 return (info->min_mV + 100 * (sel - 1)) * 1000;
574         case 25 ... 30:
575                 return -EINVAL;
576         case 31:
577                 return 2750000;
578         default:
579                 return -EINVAL;
580         }
581 }
582
583 static int
584 twl6030ldo_set_voltage_sel(struct regulator_dev *rdev, unsigned selector)
585 {
586         struct twlreg_info      *info = rdev_get_drvdata(rdev);
587
588         return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE,
589                             selector);
590 }
591
592 static int twl6030ldo_get_voltage_sel(struct regulator_dev *rdev)
593 {
594         struct twlreg_info      *info = rdev_get_drvdata(rdev);
595         int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE);
596
597         return vsel;
598 }
599
600 static struct regulator_ops twl6030ldo_ops = {
601         .list_voltage   = twl6030ldo_list_voltage,
602
603         .set_voltage_sel = twl6030ldo_set_voltage_sel,
604         .get_voltage_sel = twl6030ldo_get_voltage_sel,
605
606         .enable         = twl6030reg_enable,
607         .disable        = twl6030reg_disable,
608         .is_enabled     = twl6030reg_is_enabled,
609
610         .set_mode       = twl6030reg_set_mode,
611
612         .get_status     = twl6030reg_get_status,
613 };
614
615 /*----------------------------------------------------------------------*/
616
617 /*
618  * Fixed voltage LDOs don't have a VSEL field to update.
619  */
620 static int twlfixed_list_voltage(struct regulator_dev *rdev, unsigned index)
621 {
622         struct twlreg_info      *info = rdev_get_drvdata(rdev);
623
624         return info->min_mV * 1000;
625 }
626
627 static int twlfixed_get_voltage(struct regulator_dev *rdev)
628 {
629         struct twlreg_info      *info = rdev_get_drvdata(rdev);
630
631         return info->min_mV * 1000;
632 }
633
634 static struct regulator_ops twl4030fixed_ops = {
635         .list_voltage   = twlfixed_list_voltage,
636
637         .get_voltage    = twlfixed_get_voltage,
638
639         .enable         = twl4030reg_enable,
640         .disable        = twl4030reg_disable,
641         .is_enabled     = twl4030reg_is_enabled,
642
643         .set_mode       = twl4030reg_set_mode,
644
645         .get_status     = twl4030reg_get_status,
646 };
647
648 static struct regulator_ops twl6030fixed_ops = {
649         .list_voltage   = twlfixed_list_voltage,
650
651         .get_voltage    = twlfixed_get_voltage,
652
653         .enable         = twl6030reg_enable,
654         .disable        = twl6030reg_disable,
655         .is_enabled     = twl6030reg_is_enabled,
656
657         .set_mode       = twl6030reg_set_mode,
658
659         .get_status     = twl6030reg_get_status,
660 };
661
662 static struct regulator_ops twl6030_fixed_resource = {
663         .enable         = twl6030reg_enable,
664         .disable        = twl6030reg_disable,
665         .is_enabled     = twl6030reg_is_enabled,
666         .get_status     = twl6030reg_get_status,
667 };
668
669 /*
670  * SMPS status and control
671  */
672
673 static int twl6030smps_list_voltage(struct regulator_dev *rdev, unsigned index)
674 {
675         struct twlreg_info      *info = rdev_get_drvdata(rdev);
676
677         int voltage = 0;
678
679         switch (info->flags) {
680         case SMPS_OFFSET_EN:
681                 voltage = 100000;
682                 /* fall through */
683         case 0:
684                 switch (index) {
685                 case 0:
686                         voltage = 0;
687                         break;
688                 case 58:
689                         voltage = 1350 * 1000;
690                         break;
691                 case 59:
692                         voltage = 1500 * 1000;
693                         break;
694                 case 60:
695                         voltage = 1800 * 1000;
696                         break;
697                 case 61:
698                         voltage = 1900 * 1000;
699                         break;
700                 case 62:
701                         voltage = 2100 * 1000;
702                         break;
703                 default:
704                         voltage += (600000 + (12500 * (index - 1)));
705                 }
706                 break;
707         case SMPS_EXTENDED_EN:
708                 switch (index) {
709                 case 0:
710                         voltage = 0;
711                         break;
712                 case 58:
713                         voltage = 2084 * 1000;
714                         break;
715                 case 59:
716                         voltage = 2315 * 1000;
717                         break;
718                 case 60:
719                         voltage = 2778 * 1000;
720                         break;
721                 case 61:
722                         voltage = 2932 * 1000;
723                         break;
724                 case 62:
725                         voltage = 3241 * 1000;
726                         break;
727                 default:
728                         voltage = (1852000 + (38600 * (index - 1)));
729                 }
730                 break;
731         case SMPS_OFFSET_EN | SMPS_EXTENDED_EN:
732                 switch (index) {
733                 case 0:
734                         voltage = 0;
735                         break;
736                 case 58:
737                         voltage = 4167 * 1000;
738                         break;
739                 case 59:
740                         voltage = 2315 * 1000;
741                         break;
742                 case 60:
743                         voltage = 2778 * 1000;
744                         break;
745                 case 61:
746                         voltage = 2932 * 1000;
747                         break;
748                 case 62:
749                         voltage = 3241 * 1000;
750                         break;
751                 default:
752                         voltage = (2161000 + (38600 * (index - 1)));
753                 }
754                 break;
755         }
756
757         return voltage;
758 }
759
760 static int twl6030smps_map_voltage(struct regulator_dev *rdev, int min_uV,
761                                    int max_uV)
762 {
763         struct twlreg_info *info = rdev_get_drvdata(rdev);
764         int vsel = 0;
765
766         switch (info->flags) {
767         case 0:
768                 if (min_uV == 0)
769                         vsel = 0;
770                 else if ((min_uV >= 600000) && (min_uV <= 1300000)) {
771                         vsel = DIV_ROUND_UP(min_uV - 600000, 12500);
772                         vsel++;
773                 }
774                 /* Values 1..57 for vsel are linear and can be calculated
775                  * values 58..62 are non linear.
776                  */
777                 else if ((min_uV > 1900000) && (min_uV <= 2100000))
778                         vsel = 62;
779                 else if ((min_uV > 1800000) && (min_uV <= 1900000))
780                         vsel = 61;
781                 else if ((min_uV > 1500000) && (min_uV <= 1800000))
782                         vsel = 60;
783                 else if ((min_uV > 1350000) && (min_uV <= 1500000))
784                         vsel = 59;
785                 else if ((min_uV > 1300000) && (min_uV <= 1350000))
786                         vsel = 58;
787                 else
788                         return -EINVAL;
789                 break;
790         case SMPS_OFFSET_EN:
791                 if (min_uV == 0)
792                         vsel = 0;
793                 else if ((min_uV >= 700000) && (min_uV <= 1420000)) {
794                         vsel = DIV_ROUND_UP(min_uV - 700000, 12500);
795                         vsel++;
796                 }
797                 /* Values 1..57 for vsel are linear and can be calculated
798                  * values 58..62 are non linear.
799                  */
800                 else if ((min_uV > 1900000) && (min_uV <= 2100000))
801                         vsel = 62;
802                 else if ((min_uV > 1800000) && (min_uV <= 1900000))
803                         vsel = 61;
804                 else if ((min_uV > 1350000) && (min_uV <= 1800000))
805                         vsel = 60;
806                 else if ((min_uV > 1350000) && (min_uV <= 1500000))
807                         vsel = 59;
808                 else if ((min_uV > 1300000) && (min_uV <= 1350000))
809                         vsel = 58;
810                 else
811                         return -EINVAL;
812                 break;
813         case SMPS_EXTENDED_EN:
814                 if (min_uV == 0) {
815                         vsel = 0;
816                 } else if ((min_uV >= 1852000) && (max_uV <= 4013600)) {
817                         vsel = DIV_ROUND_UP(min_uV - 1852000, 38600);
818                         vsel++;
819                 }
820                 break;
821         case SMPS_OFFSET_EN|SMPS_EXTENDED_EN:
822                 if (min_uV == 0) {
823                         vsel = 0;
824                 } else if ((min_uV >= 2161000) && (min_uV <= 4321000)) {
825                         vsel = DIV_ROUND_UP(min_uV - 2161000, 38600);
826                         vsel++;
827                 }
828                 break;
829         }
830
831         return vsel;
832 }
833
834 static int twl6030smps_set_voltage_sel(struct regulator_dev *rdev,
835                                        unsigned int selector)
836 {
837         struct twlreg_info *info = rdev_get_drvdata(rdev);
838
839         return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE_SMPS,
840                             selector);
841 }
842
843 static int twl6030smps_get_voltage_sel(struct regulator_dev *rdev)
844 {
845         struct twlreg_info      *info = rdev_get_drvdata(rdev);
846
847         return twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE_SMPS);
848 }
849
850 static struct regulator_ops twlsmps_ops = {
851         .list_voltage           = twl6030smps_list_voltage,
852         .map_voltage            = twl6030smps_map_voltage,
853
854         .set_voltage_sel        = twl6030smps_set_voltage_sel,
855         .get_voltage_sel        = twl6030smps_get_voltage_sel,
856
857         .enable                 = twl6030reg_enable,
858         .disable                = twl6030reg_disable,
859         .is_enabled             = twl6030reg_is_enabled,
860
861         .set_mode               = twl6030reg_set_mode,
862
863         .get_status             = twl6030reg_get_status,
864 };
865
866 /*----------------------------------------------------------------------*/
867
868 #define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
869                         remap_conf) \
870                 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
871                         remap_conf, TWL4030, twl4030fixed_ops)
872 #define TWL6030_FIXED_LDO(label, offset, mVolts, turnon_delay) \
873                 TWL_FIXED_LDO(label, offset, mVolts, 0x0, turnon_delay, \
874                         0x0, TWL6030, twl6030fixed_ops)
875
876 #define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) \
877 static struct twlreg_info TWL4030_INFO_##label = { \
878         .base = offset, \
879         .id = num, \
880         .table_len = ARRAY_SIZE(label##_VSEL_table), \
881         .table = label##_VSEL_table, \
882         .remap = remap_conf, \
883         .desc = { \
884                 .name = #label, \
885                 .id = TWL4030_REG_##label, \
886                 .n_voltages = ARRAY_SIZE(label##_VSEL_table), \
887                 .ops = &twl4030ldo_ops, \
888                 .type = REGULATOR_VOLTAGE, \
889                 .owner = THIS_MODULE, \
890                 .enable_time = turnon_delay, \
891                 }, \
892         }
893
894 #define TWL4030_ADJUSTABLE_SMPS(label, offset, num, turnon_delay, remap_conf) \
895 static struct twlreg_info TWL4030_INFO_##label = { \
896         .base = offset, \
897         .id = num, \
898         .remap = remap_conf, \
899         .desc = { \
900                 .name = #label, \
901                 .id = TWL4030_REG_##label, \
902                 .ops = &twl4030smps_ops, \
903                 .type = REGULATOR_VOLTAGE, \
904                 .owner = THIS_MODULE, \
905                 .enable_time = turnon_delay, \
906                 }, \
907         }
908
909 #define TWL6030_ADJUSTABLE_SMPS(label) \
910 static struct twlreg_info TWL6030_INFO_##label = { \
911         .desc = { \
912                 .name = #label, \
913                 .id = TWL6030_REG_##label, \
914                 .ops = &twl6030coresmps_ops, \
915                 .type = REGULATOR_VOLTAGE, \
916                 .owner = THIS_MODULE, \
917                 }, \
918         }
919
920 #define TWL6030_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) \
921 static struct twlreg_info TWL6030_INFO_##label = { \
922         .base = offset, \
923         .min_mV = min_mVolts, \
924         .max_mV = max_mVolts, \
925         .desc = { \
926                 .name = #label, \
927                 .id = TWL6030_REG_##label, \
928                 .n_voltages = 32, \
929                 .ops = &twl6030ldo_ops, \
930                 .type = REGULATOR_VOLTAGE, \
931                 .owner = THIS_MODULE, \
932                 }, \
933         }
934
935 #define TWL6025_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) \
936 static struct twlreg_info TWL6025_INFO_##label = { \
937         .base = offset, \
938         .min_mV = min_mVolts, \
939         .max_mV = max_mVolts, \
940         .desc = { \
941                 .name = #label, \
942                 .id = TWL6025_REG_##label, \
943                 .n_voltages = 32, \
944                 .ops = &twl6030ldo_ops, \
945                 .type = REGULATOR_VOLTAGE, \
946                 .owner = THIS_MODULE, \
947                 }, \
948         }
949
950 #define TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, remap_conf, \
951                 family, operations) \
952 static struct twlreg_info TWLFIXED_INFO_##label = { \
953         .base = offset, \
954         .id = num, \
955         .min_mV = mVolts, \
956         .remap = remap_conf, \
957         .desc = { \
958                 .name = #label, \
959                 .id = family##_REG_##label, \
960                 .n_voltages = 1, \
961                 .ops = &operations, \
962                 .type = REGULATOR_VOLTAGE, \
963                 .owner = THIS_MODULE, \
964                 .enable_time = turnon_delay, \
965                 }, \
966         }
967
968 #define TWL6030_FIXED_RESOURCE(label, offset, turnon_delay) \
969 static struct twlreg_info TWLRES_INFO_##label = { \
970         .base = offset, \
971         .desc = { \
972                 .name = #label, \
973                 .id = TWL6030_REG_##label, \
974                 .ops = &twl6030_fixed_resource, \
975                 .type = REGULATOR_VOLTAGE, \
976                 .owner = THIS_MODULE, \
977                 .enable_time = turnon_delay, \
978                 }, \
979         }
980
981 #define TWL6025_ADJUSTABLE_SMPS(label, offset) \
982 static struct twlreg_info TWLSMPS_INFO_##label = { \
983         .base = offset, \
984         .min_mV = 600, \
985         .max_mV = 2100, \
986         .desc = { \
987                 .name = #label, \
988                 .id = TWL6025_REG_##label, \
989                 .n_voltages = 63, \
990                 .ops = &twlsmps_ops, \
991                 .type = REGULATOR_VOLTAGE, \
992                 .owner = THIS_MODULE, \
993                 }, \
994         }
995
996 /*
997  * We list regulators here if systems need some level of
998  * software control over them after boot.
999  */
1000 TWL4030_ADJUSTABLE_LDO(VAUX1, 0x17, 1, 100, 0x08);
1001 TWL4030_ADJUSTABLE_LDO(VAUX2_4030, 0x1b, 2, 100, 0x08);
1002 TWL4030_ADJUSTABLE_LDO(VAUX2, 0x1b, 2, 100, 0x08);
1003 TWL4030_ADJUSTABLE_LDO(VAUX3, 0x1f, 3, 100, 0x08);
1004 TWL4030_ADJUSTABLE_LDO(VAUX4, 0x23, 4, 100, 0x08);
1005 TWL4030_ADJUSTABLE_LDO(VMMC1, 0x27, 5, 100, 0x08);
1006 TWL4030_ADJUSTABLE_LDO(VMMC2, 0x2b, 6, 100, 0x08);
1007 TWL4030_ADJUSTABLE_LDO(VPLL1, 0x2f, 7, 100, 0x00);
1008 TWL4030_ADJUSTABLE_LDO(VPLL2, 0x33, 8, 100, 0x08);
1009 TWL4030_ADJUSTABLE_LDO(VSIM, 0x37, 9, 100, 0x00);
1010 TWL4030_ADJUSTABLE_LDO(VDAC, 0x3b, 10, 100, 0x08);
1011 TWL4030_ADJUSTABLE_LDO(VINTANA2, 0x43, 12, 100, 0x08);
1012 TWL4030_ADJUSTABLE_LDO(VIO, 0x4b, 14, 1000, 0x08);
1013 TWL4030_ADJUSTABLE_SMPS(VDD1, 0x55, 15, 1000, 0x08);
1014 TWL4030_ADJUSTABLE_SMPS(VDD2, 0x63, 16, 1000, 0x08);
1015 /* VUSBCP is managed *only* by the USB subchip */
1016 /* 6030 REG with base as PMC Slave Misc : 0x0030 */
1017 /* Turnon-delay and remap configuration values for 6030 are not
1018    verified since the specification is not public */
1019 TWL6030_ADJUSTABLE_SMPS(VDD1);
1020 TWL6030_ADJUSTABLE_SMPS(VDD2);
1021 TWL6030_ADJUSTABLE_SMPS(VDD3);
1022 TWL6030_ADJUSTABLE_LDO(VAUX1_6030, 0x54, 1000, 3300);
1023 TWL6030_ADJUSTABLE_LDO(VAUX2_6030, 0x58, 1000, 3300);
1024 TWL6030_ADJUSTABLE_LDO(VAUX3_6030, 0x5c, 1000, 3300);
1025 TWL6030_ADJUSTABLE_LDO(VMMC, 0x68, 1000, 3300);
1026 TWL6030_ADJUSTABLE_LDO(VPP, 0x6c, 1000, 3300);
1027 TWL6030_ADJUSTABLE_LDO(VUSIM, 0x74, 1000, 3300);
1028 /* 6025 are renamed compared to 6030 versions */
1029 TWL6025_ADJUSTABLE_LDO(LDO2, 0x54, 1000, 3300);
1030 TWL6025_ADJUSTABLE_LDO(LDO4, 0x58, 1000, 3300);
1031 TWL6025_ADJUSTABLE_LDO(LDO3, 0x5c, 1000, 3300);
1032 TWL6025_ADJUSTABLE_LDO(LDO5, 0x68, 1000, 3300);
1033 TWL6025_ADJUSTABLE_LDO(LDO1, 0x6c, 1000, 3300);
1034 TWL6025_ADJUSTABLE_LDO(LDO7, 0x74, 1000, 3300);
1035 TWL6025_ADJUSTABLE_LDO(LDO6, 0x60, 1000, 3300);
1036 TWL6025_ADJUSTABLE_LDO(LDOLN, 0x64, 1000, 3300);
1037 TWL6025_ADJUSTABLE_LDO(LDOUSB, 0x70, 1000, 3300);
1038 TWL4030_FIXED_LDO(VINTANA1, 0x3f, 1500, 11, 100, 0x08);
1039 TWL4030_FIXED_LDO(VINTDIG, 0x47, 1500, 13, 100, 0x08);
1040 TWL4030_FIXED_LDO(VUSB1V5, 0x71, 1500, 17, 100, 0x08);
1041 TWL4030_FIXED_LDO(VUSB1V8, 0x74, 1800, 18, 100, 0x08);
1042 TWL4030_FIXED_LDO(VUSB3V1, 0x77, 3100, 19, 150, 0x08);
1043 TWL6030_FIXED_LDO(VANA, 0x50, 2100, 0);
1044 TWL6030_FIXED_LDO(VCXIO, 0x60, 1800, 0);
1045 TWL6030_FIXED_LDO(VDAC, 0x64, 1800, 0);
1046 TWL6030_FIXED_LDO(VUSB, 0x70, 3300, 0);
1047 TWL6030_FIXED_LDO(V1V8, 0x16, 1800, 0);
1048 TWL6030_FIXED_LDO(V2V1, 0x1c, 2100, 0);
1049 TWL6025_ADJUSTABLE_SMPS(SMPS3, 0x34);
1050 TWL6025_ADJUSTABLE_SMPS(SMPS4, 0x10);
1051 TWL6025_ADJUSTABLE_SMPS(VIO, 0x16);
1052
1053 static u8 twl_get_smps_offset(void)
1054 {
1055         u8 value;
1056
1057         twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &value,
1058                         TWL6030_SMPS_OFFSET);
1059         return value;
1060 }
1061
1062 static u8 twl_get_smps_mult(void)
1063 {
1064         u8 value;
1065
1066         twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &value,
1067                         TWL6030_SMPS_MULT);
1068         return value;
1069 }
1070
1071 #define TWL_OF_MATCH(comp, family, label) \
1072         { \
1073                 .compatible = comp, \
1074                 .data = &family##_INFO_##label, \
1075         }
1076
1077 #define TWL4030_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL4030, label)
1078 #define TWL6030_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL6030, label)
1079 #define TWL6025_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL6025, label)
1080 #define TWLFIXED_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWLFIXED, label)
1081 #define TWLSMPS_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWLSMPS, label)
1082
1083 static const struct of_device_id twl_of_match[] __devinitconst = {
1084         TWL4030_OF_MATCH("ti,twl4030-vaux1", VAUX1),
1085         TWL4030_OF_MATCH("ti,twl4030-vaux2", VAUX2_4030),
1086         TWL4030_OF_MATCH("ti,twl5030-vaux2", VAUX2),
1087         TWL4030_OF_MATCH("ti,twl4030-vaux3", VAUX3),
1088         TWL4030_OF_MATCH("ti,twl4030-vaux4", VAUX4),
1089         TWL4030_OF_MATCH("ti,twl4030-vmmc1", VMMC1),
1090         TWL4030_OF_MATCH("ti,twl4030-vmmc2", VMMC2),
1091         TWL4030_OF_MATCH("ti,twl4030-vpll1", VPLL1),
1092         TWL4030_OF_MATCH("ti,twl4030-vpll2", VPLL2),
1093         TWL4030_OF_MATCH("ti,twl4030-vsim", VSIM),
1094         TWL4030_OF_MATCH("ti,twl4030-vdac", VDAC),
1095         TWL4030_OF_MATCH("ti,twl4030-vintana2", VINTANA2),
1096         TWL4030_OF_MATCH("ti,twl4030-vio", VIO),
1097         TWL4030_OF_MATCH("ti,twl4030-vdd1", VDD1),
1098         TWL4030_OF_MATCH("ti,twl4030-vdd2", VDD2),
1099         TWL6030_OF_MATCH("ti,twl6030-vdd1", VDD1),
1100         TWL6030_OF_MATCH("ti,twl6030-vdd2", VDD2),
1101         TWL6030_OF_MATCH("ti,twl6030-vdd3", VDD3),
1102         TWL6030_OF_MATCH("ti,twl6030-vaux1", VAUX1_6030),
1103         TWL6030_OF_MATCH("ti,twl6030-vaux2", VAUX2_6030),
1104         TWL6030_OF_MATCH("ti,twl6030-vaux3", VAUX3_6030),
1105         TWL6030_OF_MATCH("ti,twl6030-vmmc", VMMC),
1106         TWL6030_OF_MATCH("ti,twl6030-vpp", VPP),
1107         TWL6030_OF_MATCH("ti,twl6030-vusim", VUSIM),
1108         TWL6025_OF_MATCH("ti,twl6025-ldo2", LDO2),
1109         TWL6025_OF_MATCH("ti,twl6025-ldo4", LDO4),
1110         TWL6025_OF_MATCH("ti,twl6025-ldo3", LDO3),
1111         TWL6025_OF_MATCH("ti,twl6025-ldo5", LDO5),
1112         TWL6025_OF_MATCH("ti,twl6025-ldo1", LDO1),
1113         TWL6025_OF_MATCH("ti,twl6025-ldo7", LDO7),
1114         TWL6025_OF_MATCH("ti,twl6025-ldo6", LDO6),
1115         TWL6025_OF_MATCH("ti,twl6025-ldoln", LDOLN),
1116         TWL6025_OF_MATCH("ti,twl6025-ldousb", LDOUSB),
1117         TWLFIXED_OF_MATCH("ti,twl4030-vintana1", VINTANA1),
1118         TWLFIXED_OF_MATCH("ti,twl4030-vintdig", VINTDIG),
1119         TWLFIXED_OF_MATCH("ti,twl4030-vusb1v5", VUSB1V5),
1120         TWLFIXED_OF_MATCH("ti,twl4030-vusb1v8", VUSB1V8),
1121         TWLFIXED_OF_MATCH("ti,twl4030-vusb3v1", VUSB3V1),
1122         TWLFIXED_OF_MATCH("ti,twl6030-vana", VANA),
1123         TWLFIXED_OF_MATCH("ti,twl6030-vcxio", VCXIO),
1124         TWLFIXED_OF_MATCH("ti,twl6030-vdac", VDAC),
1125         TWLFIXED_OF_MATCH("ti,twl6030-vusb", VUSB),
1126         TWLFIXED_OF_MATCH("ti,twl6030-v1v8", V1V8),
1127         TWLFIXED_OF_MATCH("ti,twl6030-v2v1", V2V1),
1128         TWLSMPS_OF_MATCH("ti,twl6025-smps3", SMPS3),
1129         TWLSMPS_OF_MATCH("ti,twl6025-smps4", SMPS4),
1130         TWLSMPS_OF_MATCH("ti,twl6025-vio", VIO),
1131         {},
1132 };
1133 MODULE_DEVICE_TABLE(of, twl_of_match);
1134
1135 static int __devinit twlreg_probe(struct platform_device *pdev)
1136 {
1137         int                             i, id;
1138         struct twlreg_info              *info;
1139         struct regulator_init_data      *initdata;
1140         struct regulation_constraints   *c;
1141         struct regulator_dev            *rdev;
1142         struct twl_regulator_driver_data        *drvdata;
1143         const struct of_device_id       *match;
1144         struct regulator_config         config = { };
1145
1146         match = of_match_device(twl_of_match, &pdev->dev);
1147         if (match) {
1148                 info = match->data;
1149                 id = info->desc.id;
1150                 initdata = of_get_regulator_init_data(&pdev->dev,
1151                                                       pdev->dev.of_node);
1152                 drvdata = NULL;
1153         } else {
1154                 id = pdev->id;
1155                 initdata = pdev->dev.platform_data;
1156                 for (i = 0, info = NULL; i < ARRAY_SIZE(twl_of_match); i++) {
1157                         info = twl_of_match[i].data;
1158                         if (info && info->desc.id == id)
1159                                 break;
1160                 }
1161                 if (i == ARRAY_SIZE(twl_of_match))
1162                         return -ENODEV;
1163
1164                 drvdata = initdata->driver_data;
1165                 if (!drvdata)
1166                         return -EINVAL;
1167         }
1168
1169         if (!info)
1170                 return -ENODEV;
1171
1172         if (!initdata)
1173                 return -EINVAL;
1174
1175         if (drvdata) {
1176                 /* copy the driver data into regulator data */
1177                 info->features = drvdata->features;
1178                 info->data = drvdata->data;
1179                 info->set_voltage = drvdata->set_voltage;
1180                 info->get_voltage = drvdata->get_voltage;
1181         }
1182
1183         /* Constrain board-specific capabilities according to what
1184          * this driver and the chip itself can actually do.
1185          */
1186         c = &initdata->constraints;
1187         c->valid_modes_mask &= REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY;
1188         c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE
1189                                 | REGULATOR_CHANGE_MODE
1190                                 | REGULATOR_CHANGE_STATUS;
1191         switch (id) {
1192         case TWL4030_REG_VIO:
1193         case TWL4030_REG_VDD1:
1194         case TWL4030_REG_VDD2:
1195         case TWL4030_REG_VPLL1:
1196         case TWL4030_REG_VINTANA1:
1197         case TWL4030_REG_VINTANA2:
1198         case TWL4030_REG_VINTDIG:
1199                 c->always_on = true;
1200                 break;
1201         default:
1202                 break;
1203         }
1204
1205         switch (id) {
1206         case TWL6025_REG_SMPS3:
1207                 if (twl_get_smps_mult() & SMPS_MULTOFFSET_SMPS3)
1208                         info->flags |= SMPS_EXTENDED_EN;
1209                 if (twl_get_smps_offset() & SMPS_MULTOFFSET_SMPS3)
1210                         info->flags |= SMPS_OFFSET_EN;
1211                 break;
1212         case TWL6025_REG_SMPS4:
1213                 if (twl_get_smps_mult() & SMPS_MULTOFFSET_SMPS4)
1214                         info->flags |= SMPS_EXTENDED_EN;
1215                 if (twl_get_smps_offset() & SMPS_MULTOFFSET_SMPS4)
1216                         info->flags |= SMPS_OFFSET_EN;
1217                 break;
1218         case TWL6025_REG_VIO:
1219                 if (twl_get_smps_mult() & SMPS_MULTOFFSET_VIO)
1220                         info->flags |= SMPS_EXTENDED_EN;
1221                 if (twl_get_smps_offset() & SMPS_MULTOFFSET_VIO)
1222                         info->flags |= SMPS_OFFSET_EN;
1223                 break;
1224         }
1225
1226         config.dev = &pdev->dev;
1227         config.init_data = initdata;
1228         config.driver_data = info;
1229         config.of_node = pdev->dev.of_node;
1230
1231         rdev = regulator_register(&info->desc, &config);
1232         if (IS_ERR(rdev)) {
1233                 dev_err(&pdev->dev, "can't register %s, %ld\n",
1234                                 info->desc.name, PTR_ERR(rdev));
1235                 return PTR_ERR(rdev);
1236         }
1237         platform_set_drvdata(pdev, rdev);
1238
1239         if (twl_class_is_4030())
1240                 twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_REMAP,
1241                                                 info->remap);
1242
1243         /* NOTE:  many regulators support short-circuit IRQs (presentable
1244          * as REGULATOR_OVER_CURRENT notifications?) configured via:
1245          *  - SC_CONFIG
1246          *  - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
1247          *  - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
1248          *  - IT_CONFIG
1249          */
1250
1251         return 0;
1252 }
1253
1254 static int __devexit twlreg_remove(struct platform_device *pdev)
1255 {
1256         regulator_unregister(platform_get_drvdata(pdev));
1257         return 0;
1258 }
1259
1260 MODULE_ALIAS("platform:twl_reg");
1261
1262 static struct platform_driver twlreg_driver = {
1263         .probe          = twlreg_probe,
1264         .remove         = __devexit_p(twlreg_remove),
1265         /* NOTE: short name, to work around driver model truncation of
1266          * "twl_regulator.12" (and friends) to "twl_regulator.1".
1267          */
1268         .driver  = {
1269                 .name  = "twl_reg",
1270                 .owner = THIS_MODULE,
1271                 .of_match_table = of_match_ptr(twl_of_match),
1272         },
1273 };
1274
1275 static int __init twlreg_init(void)
1276 {
1277         return platform_driver_register(&twlreg_driver);
1278 }
1279 subsys_initcall(twlreg_init);
1280
1281 static void __exit twlreg_exit(void)
1282 {
1283         platform_driver_unregister(&twlreg_driver);
1284 }
1285 module_exit(twlreg_exit)
1286
1287 MODULE_DESCRIPTION("TWL regulator driver");
1288 MODULE_LICENSE("GPL");