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