blob: 3df02267e1e795d5268e47ac70809ca674b4d318 [file] [log] [blame]
David Brownellfa16a5c2009-02-08 10:37:06 -08001/*
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01002 * twl-regulator.c -- support regulators in twl4030/twl6030 family chips
David Brownellfa16a5c2009-02-08 10:37:06 -08003 *
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/regulator/driver.h>
17#include <linux/regulator/machine.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010018#include <linux/i2c/twl.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080019
20
21/*
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +010022 * The TWL4030/TW5030/TPS659x0/TWL6030 family chips include power management, a
David Brownellfa16a5c2009-02-08 10:37:06 -080023 * USB OTG transceiver, an RTC, ADC, PWM, and lots more. Some versions
24 * include an audio codec, battery charger, and more voltage regulators.
25 * These chips are often used in OMAP-based systems.
26 *
27 * This driver implements software-based resource control for various
28 * voltage regulators. This is usually augmented with state machine
29 * based control.
30 */
31
32struct twlreg_info {
33 /* start of regulator's PM_RECEIVER control register bank */
34 u8 base;
35
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +010036 /* twl resource ID, for resource control state machine */
David Brownellfa16a5c2009-02-08 10:37:06 -080037 u8 id;
38
39 /* voltage in mV = table[VSEL]; table_len must be a power-of-two */
40 u8 table_len;
41 const u16 *table;
42
Juha Keski-Saari045f9722009-12-16 14:49:52 +020043 /* regulator specific turn-on delay */
44 u16 delay;
45
46 /* State REMAP default configuration */
47 u8 remap;
48
David Brownellfa16a5c2009-02-08 10:37:06 -080049 /* chip constraints on regulator behavior */
50 u16 min_mV;
David Brownellfa16a5c2009-02-08 10:37:06 -080051
52 /* used by regulator core */
53 struct regulator_desc desc;
54};
55
56
57/* LDO control registers ... offset is from the base of its register bank.
58 * The first three registers of all power resource banks help hardware to
59 * manage the various resource groups.
60 */
Rajendra Nayak441a4502009-12-13 22:19:23 +010061/* Common offset in TWL4030/6030 */
David Brownellfa16a5c2009-02-08 10:37:06 -080062#define VREG_GRP 0
Rajendra Nayak441a4502009-12-13 22:19:23 +010063/* TWL4030 register offsets */
David Brownellfa16a5c2009-02-08 10:37:06 -080064#define VREG_TYPE 1
65#define VREG_REMAP 2
66#define VREG_DEDICATED 3 /* LDO control */
Rajendra Nayak441a4502009-12-13 22:19:23 +010067/* TWL6030 register offsets */
68#define VREG_TRANS 1
69#define VREG_STATE 2
70#define VREG_VOLTAGE 3
71/* TWL6030 Misc register offsets */
72#define VREG_BC_ALL 1
73#define VREG_BC_REF 2
74#define VREG_BC_PROC 3
75#define VREG_BC_CLK_RST 4
David Brownellfa16a5c2009-02-08 10:37:06 -080076
77static inline int
Rajendra Nayak441a4502009-12-13 22:19:23 +010078twlreg_read(struct twlreg_info *info, unsigned slave_subgp, unsigned offset)
David Brownellfa16a5c2009-02-08 10:37:06 -080079{
80 u8 value;
81 int status;
82
Rajendra Nayak441a4502009-12-13 22:19:23 +010083 status = twl_i2c_read_u8(slave_subgp,
David Brownellfa16a5c2009-02-08 10:37:06 -080084 &value, info->base + offset);
85 return (status < 0) ? status : value;
86}
87
88static inline int
Rajendra Nayak441a4502009-12-13 22:19:23 +010089twlreg_write(struct twlreg_info *info, unsigned slave_subgp, unsigned offset,
90 u8 value)
David Brownellfa16a5c2009-02-08 10:37:06 -080091{
Rajendra Nayak441a4502009-12-13 22:19:23 +010092 return twl_i2c_write_u8(slave_subgp,
David Brownellfa16a5c2009-02-08 10:37:06 -080093 value, info->base + offset);
94}
95
96/*----------------------------------------------------------------------*/
97
98/* generic power resource operations, which work on all regulators */
99
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100100static int twlreg_grp(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800101{
Rajendra Nayak441a4502009-12-13 22:19:23 +0100102 return twlreg_read(rdev_get_drvdata(rdev), TWL_MODULE_PM_RECEIVER,
103 VREG_GRP);
David Brownellfa16a5c2009-02-08 10:37:06 -0800104}
105
106/*
107 * Enable/disable regulators by joining/leaving the P1 (processor) group.
108 * We assume nobody else is updating the DEV_GRP registers.
109 */
Rajendra Nayak441a4502009-12-13 22:19:23 +0100110/* definition for 4030 family */
111#define P3_GRP_4030 BIT(7) /* "peripherals" */
112#define P2_GRP_4030 BIT(6) /* secondary processor, modem, etc */
113#define P1_GRP_4030 BIT(5) /* CPU/Linux */
114/* definition for 6030 family */
115#define P3_GRP_6030 BIT(2) /* secondary processor, modem, etc */
116#define P2_GRP_6030 BIT(1) /* "peripherals" */
117#define P1_GRP_6030 BIT(0) /* CPU/Linux */
David Brownellfa16a5c2009-02-08 10:37:06 -0800118
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100119static int twlreg_is_enabled(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800120{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100121 int state = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800122
123 if (state < 0)
124 return state;
125
Rajendra Nayak441a4502009-12-13 22:19:23 +0100126 if (twl_class_is_4030())
127 state &= P1_GRP_4030;
128 else
129 state &= P1_GRP_6030;
130 return state;
David Brownellfa16a5c2009-02-08 10:37:06 -0800131}
132
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100133static int twlreg_enable(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800134{
135 struct twlreg_info *info = rdev_get_drvdata(rdev);
136 int grp;
137
Rajendra Nayak441a4502009-12-13 22:19:23 +0100138 grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
David Brownellfa16a5c2009-02-08 10:37:06 -0800139 if (grp < 0)
140 return grp;
141
Rajendra Nayak441a4502009-12-13 22:19:23 +0100142 if (twl_class_is_4030())
143 grp |= P1_GRP_4030;
144 else
145 grp |= P1_GRP_6030;
146
147 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
David Brownellfa16a5c2009-02-08 10:37:06 -0800148}
149
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100150static int twlreg_disable(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800151{
152 struct twlreg_info *info = rdev_get_drvdata(rdev);
153 int grp;
154
Rajendra Nayak441a4502009-12-13 22:19:23 +0100155 grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
David Brownellfa16a5c2009-02-08 10:37:06 -0800156 if (grp < 0)
157 return grp;
158
Rajendra Nayak441a4502009-12-13 22:19:23 +0100159 if (twl_class_is_4030())
160 grp &= ~P1_GRP_4030;
161 else
162 grp &= ~P1_GRP_6030;
163
164 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
David Brownellfa16a5c2009-02-08 10:37:06 -0800165}
166
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100167static int twlreg_get_status(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800168{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100169 int state = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800170
Rajendra Nayak441a4502009-12-13 22:19:23 +0100171 if (twl_class_is_6030())
172 return 0; /* FIXME return for 6030 regulator */
173
David Brownellfa16a5c2009-02-08 10:37:06 -0800174 if (state < 0)
175 return state;
176 state &= 0x0f;
177
178 /* assume state != WARM_RESET; we'd not be running... */
179 if (!state)
180 return REGULATOR_STATUS_OFF;
181 return (state & BIT(3))
182 ? REGULATOR_STATUS_NORMAL
183 : REGULATOR_STATUS_STANDBY;
184}
185
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100186static int twlreg_set_mode(struct regulator_dev *rdev, unsigned mode)
David Brownellfa16a5c2009-02-08 10:37:06 -0800187{
188 struct twlreg_info *info = rdev_get_drvdata(rdev);
189 unsigned message;
190 int status;
191
Rajendra Nayak441a4502009-12-13 22:19:23 +0100192 if (twl_class_is_6030())
193 return 0; /* FIXME return for 6030 regulator */
194
David Brownellfa16a5c2009-02-08 10:37:06 -0800195 /* We can only set the mode through state machine commands... */
196 switch (mode) {
197 case REGULATOR_MODE_NORMAL:
198 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_ACTIVE);
199 break;
200 case REGULATOR_MODE_STANDBY:
201 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_SLEEP);
202 break;
203 default:
204 return -EINVAL;
205 }
206
207 /* Ensure the resource is associated with some group */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100208 status = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800209 if (status < 0)
210 return status;
Rajendra Nayak441a4502009-12-13 22:19:23 +0100211 if (!(status & (P3_GRP_4030 | P2_GRP_4030 | P1_GRP_4030)))
David Brownellfa16a5c2009-02-08 10:37:06 -0800212 return -EACCES;
213
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100214 status = twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
David Brownellfa16a5c2009-02-08 10:37:06 -0800215 message >> 8, 0x15 /* PB_WORD_MSB */ );
216 if (status >= 0)
217 return status;
218
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100219 return twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
David Brownellfa16a5c2009-02-08 10:37:06 -0800220 message, 0x16 /* PB_WORD_LSB */ );
221}
222
223/*----------------------------------------------------------------------*/
224
225/*
226 * Support for adjustable-voltage LDOs uses a four bit (or less) voltage
227 * select field in its control register. We use tables indexed by VSEL
228 * to record voltages in milliVolts. (Accuracy is about three percent.)
229 *
230 * Note that VSEL values for VAUX2 changed in twl5030 and newer silicon;
231 * currently handled by listing two slightly different VAUX2 regulators,
232 * only one of which will be configured.
233 *
234 * VSEL values documented as "TI cannot support these values" are flagged
235 * in these tables as UNSUP() values; we normally won't assign them.
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200236 *
237 * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported.
238 * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting.
David Brownellfa16a5c2009-02-08 10:37:06 -0800239 */
240#ifdef CONFIG_TWL4030_ALLOW_UNSUPPORTED
241#define UNSUP_MASK 0x0000
242#else
243#define UNSUP_MASK 0x8000
244#endif
245
246#define UNSUP(x) (UNSUP_MASK | (x))
247#define IS_UNSUP(x) (UNSUP_MASK & (x))
248#define LDO_MV(x) (~UNSUP_MASK & (x))
249
250
251static const u16 VAUX1_VSEL_table[] = {
252 UNSUP(1500), UNSUP(1800), 2500, 2800,
253 3000, 3000, 3000, 3000,
254};
255static const u16 VAUX2_4030_VSEL_table[] = {
256 UNSUP(1000), UNSUP(1000), UNSUP(1200), 1300,
257 1500, 1800, UNSUP(1850), 2500,
258 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
259 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
260};
261static const u16 VAUX2_VSEL_table[] = {
262 1700, 1700, 1900, 1300,
263 1500, 1800, 2000, 2500,
264 2100, 2800, 2200, 2300,
265 2400, 2400, 2400, 2400,
266};
267static const u16 VAUX3_VSEL_table[] = {
268 1500, 1800, 2500, 2800,
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200269 3000, 3000, 3000, 3000,
David Brownellfa16a5c2009-02-08 10:37:06 -0800270};
271static const u16 VAUX4_VSEL_table[] = {
272 700, 1000, 1200, UNSUP(1300),
273 1500, 1800, UNSUP(1850), 2500,
David Brownell1897e742009-03-10 11:51:15 -0800274 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
275 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
David Brownellfa16a5c2009-02-08 10:37:06 -0800276};
277static const u16 VMMC1_VSEL_table[] = {
278 1850, 2850, 3000, 3150,
279};
280static const u16 VMMC2_VSEL_table[] = {
281 UNSUP(1000), UNSUP(1000), UNSUP(1200), UNSUP(1300),
282 UNSUP(1500), UNSUP(1800), 1850, UNSUP(2500),
283 2600, 2800, 2850, 3000,
284 3150, 3150, 3150, 3150,
285};
286static const u16 VPLL1_VSEL_table[] = {
287 1000, 1200, 1300, 1800,
288 UNSUP(2800), UNSUP(3000), UNSUP(3000), UNSUP(3000),
289};
290static const u16 VPLL2_VSEL_table[] = {
291 700, 1000, 1200, 1300,
292 UNSUP(1500), 1800, UNSUP(1850), UNSUP(2500),
293 UNSUP(2600), UNSUP(2800), UNSUP(2850), UNSUP(3000),
294 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
295};
296static const u16 VSIM_VSEL_table[] = {
297 UNSUP(1000), UNSUP(1200), UNSUP(1300), 1800,
298 2800, 3000, 3000, 3000,
299};
300static const u16 VDAC_VSEL_table[] = {
301 1200, 1300, 1800, 1800,
302};
Juha Keski-Saari07fc4932009-12-16 15:27:55 +0200303static const u16 VDD1_VSEL_table[] = {
304 800, 1450,
305};
306static const u16 VDD2_VSEL_table[] = {
307 800, 1450, 1500,
308};
309static const u16 VIO_VSEL_table[] = {
310 1800, 1850,
311};
312static const u16 VINTANA2_VSEL_table[] = {
313 2500, 2750,
314};
Rajendra Nayak441a4502009-12-13 22:19:23 +0100315static const u16 VAUX1_6030_VSEL_table[] = {
316 1000, 1300, 1800, 2500,
317 2800, 2900, 3000, 3000,
318};
319static const u16 VAUX2_6030_VSEL_table[] = {
320 1200, 1800, 2500, 2750,
321 2800, 2800, 2800, 2800,
322};
323static const u16 VAUX3_6030_VSEL_table[] = {
324 1000, 1200, 1300, 1800,
325 2500, 2800, 3000, 3000,
326};
327static const u16 VMMC_VSEL_table[] = {
328 1200, 1800, 2800, 2900,
329 3000, 3000, 3000, 3000,
330};
331static const u16 VPP_VSEL_table[] = {
332 1800, 1900, 2000, 2100,
333 2200, 2300, 2400, 2500,
334};
335static const u16 VUSIM_VSEL_table[] = {
336 1200, 1800, 2500, 2900,
337};
David Brownellfa16a5c2009-02-08 10:37:06 -0800338
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100339static int twlldo_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800340{
341 struct twlreg_info *info = rdev_get_drvdata(rdev);
342 int mV = info->table[index];
343
344 return IS_UNSUP(mV) ? 0 : (LDO_MV(mV) * 1000);
345}
346
David Brownellfa16a5c2009-02-08 10:37:06 -0800347static int
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100348twlldo_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV)
David Brownellfa16a5c2009-02-08 10:37:06 -0800349{
350 struct twlreg_info *info = rdev_get_drvdata(rdev);
351 int vsel;
352
353 for (vsel = 0; vsel < info->table_len; vsel++) {
354 int mV = info->table[vsel];
355 int uV;
356
357 if (IS_UNSUP(mV))
358 continue;
359 uV = LDO_MV(mV) * 1000;
360
David Brownell66b659e2009-02-26 11:50:14 -0800361 /* REVISIT for VAUX2, first match may not be best/lowest */
362
David Brownellfa16a5c2009-02-08 10:37:06 -0800363 /* use the first in-range value */
364 if (min_uV <= uV && uV <= max_uV)
Rajendra Nayak441a4502009-12-13 22:19:23 +0100365 return twlreg_write(info, TWL_MODULE_PM_RECEIVER,
366 VREG_VOLTAGE, vsel);
David Brownellfa16a5c2009-02-08 10:37:06 -0800367 }
368
369 return -EDOM;
370}
371
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100372static int twlldo_get_voltage(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800373{
374 struct twlreg_info *info = rdev_get_drvdata(rdev);
Rajendra Nayak441a4502009-12-13 22:19:23 +0100375 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
376 VREG_VOLTAGE);
David Brownellfa16a5c2009-02-08 10:37:06 -0800377
378 if (vsel < 0)
379 return vsel;
380
381 vsel &= info->table_len - 1;
382 return LDO_MV(info->table[vsel]) * 1000;
383}
384
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100385static struct regulator_ops twlldo_ops = {
386 .list_voltage = twlldo_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800387
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100388 .set_voltage = twlldo_set_voltage,
389 .get_voltage = twlldo_get_voltage,
David Brownellfa16a5c2009-02-08 10:37:06 -0800390
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100391 .enable = twlreg_enable,
392 .disable = twlreg_disable,
393 .is_enabled = twlreg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800394
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100395 .set_mode = twlreg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800396
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100397 .get_status = twlreg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800398};
399
400/*----------------------------------------------------------------------*/
401
402/*
403 * Fixed voltage LDOs don't have a VSEL field to update.
404 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100405static int twlfixed_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800406{
407 struct twlreg_info *info = rdev_get_drvdata(rdev);
408
409 return info->min_mV * 1000;
410}
411
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100412static int twlfixed_get_voltage(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800413{
414 struct twlreg_info *info = rdev_get_drvdata(rdev);
415
416 return info->min_mV * 1000;
417}
418
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100419static struct regulator_ops twlfixed_ops = {
420 .list_voltage = twlfixed_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800421
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100422 .get_voltage = twlfixed_get_voltage,
David Brownellfa16a5c2009-02-08 10:37:06 -0800423
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100424 .enable = twlreg_enable,
425 .disable = twlreg_disable,
426 .is_enabled = twlreg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800427
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100428 .set_mode = twlreg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800429
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100430 .get_status = twlreg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800431};
432
433/*----------------------------------------------------------------------*/
434
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200435#define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) \
436 TWL_ADJUSTABLE_LDO(label, offset, num, turnon_delay, \
437 remap_conf, TWL4030)
438#define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
439 remap_conf) \
440 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
441 remap_conf, TWL4030)
442#define TWL6030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, \
443 remap_conf) \
444 TWL_ADJUSTABLE_LDO(label, offset, num, turnon_delay, \
445 remap_conf, TWL6030)
446#define TWL6030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
447 remap_conf) \
448 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
449 remap_conf, TWL6030)
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100450
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200451#define TWL_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf, \
452 family) { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800453 .base = offset, \
454 .id = num, \
455 .table_len = ARRAY_SIZE(label##_VSEL_table), \
456 .table = label##_VSEL_table, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200457 .delay = turnon_delay, \
458 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800459 .desc = { \
460 .name = #label, \
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100461 .id = family##_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800462 .n_voltages = ARRAY_SIZE(label##_VSEL_table), \
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100463 .ops = &twlldo_ops, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800464 .type = REGULATOR_VOLTAGE, \
465 .owner = THIS_MODULE, \
466 }, \
467 }
468
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200469#define TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, remap_conf, \
470 family) { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800471 .base = offset, \
472 .id = num, \
473 .min_mV = mVolts, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200474 .delay = turnon_delay, \
475 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800476 .desc = { \
477 .name = #label, \
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100478 .id = family##_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800479 .n_voltages = 1, \
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100480 .ops = &twlfixed_ops, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800481 .type = REGULATOR_VOLTAGE, \
482 .owner = THIS_MODULE, \
483 }, \
484 }
485
486/*
487 * We list regulators here if systems need some level of
488 * software control over them after boot.
489 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100490static struct twlreg_info twl_regs[] = {
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200491 TWL4030_ADJUSTABLE_LDO(VAUX1, 0x17, 1, 100, 0x08),
492 TWL4030_ADJUSTABLE_LDO(VAUX2_4030, 0x1b, 2, 100, 0x08),
493 TWL4030_ADJUSTABLE_LDO(VAUX2, 0x1b, 2, 100, 0x08),
494 TWL4030_ADJUSTABLE_LDO(VAUX3, 0x1f, 3, 100, 0x08),
495 TWL4030_ADJUSTABLE_LDO(VAUX4, 0x23, 4, 100, 0x08),
496 TWL4030_ADJUSTABLE_LDO(VMMC1, 0x27, 5, 100, 0x08),
497 TWL4030_ADJUSTABLE_LDO(VMMC2, 0x2b, 6, 100, 0x08),
498 TWL4030_ADJUSTABLE_LDO(VPLL1, 0x2f, 7, 100, 0x00),
499 TWL4030_ADJUSTABLE_LDO(VPLL2, 0x33, 8, 100, 0x08),
500 TWL4030_ADJUSTABLE_LDO(VSIM, 0x37, 9, 100, 0x00),
501 TWL4030_ADJUSTABLE_LDO(VDAC, 0x3b, 10, 100, 0x08),
502 TWL4030_FIXED_LDO(VINTANA1, 0x3f, 1500, 11, 100, 0x08),
503 TWL4030_ADJUSTABLE_LDO(VINTANA2, 0x43, 12, 100, 0x08),
504 TWL4030_FIXED_LDO(VINTDIG, 0x47, 1500, 13, 100, 0x08),
505 TWL4030_ADJUSTABLE_LDO(VIO, 0x4b, 14, 1000, 0x08),
506 TWL4030_ADJUSTABLE_LDO(VDD1, 0x55, 15, 1000, 0x08),
507 TWL4030_ADJUSTABLE_LDO(VDD2, 0x63, 16, 1000, 0x08),
508 TWL4030_FIXED_LDO(VUSB1V5, 0x71, 1500, 17, 100, 0x08),
509 TWL4030_FIXED_LDO(VUSB1V8, 0x74, 1800, 18, 100, 0x08),
510 TWL4030_FIXED_LDO(VUSB3V1, 0x77, 3100, 19, 150, 0x08),
David Brownellfa16a5c2009-02-08 10:37:06 -0800511 /* VUSBCP is managed *only* by the USB subchip */
Rajendra Nayak441a4502009-12-13 22:19:23 +0100512
513 /* 6030 REG with base as PMC Slave Misc : 0x0030 */
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200514 /* Turnon-delay and remap configuration values for 6030 are not
515 verified since the specification is not public */
516 TWL6030_ADJUSTABLE_LDO(VAUX1_6030, 0x54, 1, 0, 0x08),
517 TWL6030_ADJUSTABLE_LDO(VAUX2_6030, 0x58, 2, 0, 0x08),
518 TWL6030_ADJUSTABLE_LDO(VAUX3_6030, 0x5c, 3, 0, 0x08),
519 TWL6030_ADJUSTABLE_LDO(VMMC, 0x68, 4, 0, 0x08),
520 TWL6030_ADJUSTABLE_LDO(VPP, 0x6c, 5, 0, 0x08),
521 TWL6030_ADJUSTABLE_LDO(VUSIM, 0x74, 7, 0, 0x08),
522 TWL6030_FIXED_LDO(VANA, 0x50, 2100, 15, 0, 0x08),
523 TWL6030_FIXED_LDO(VCXIO, 0x60, 1800, 16, 0, 0x08),
524 TWL6030_FIXED_LDO(VDAC, 0x64, 1800, 17, 0, 0x08),
525 TWL6030_FIXED_LDO(VUSB, 0x70, 3300, 18, 0, 0x08)
David Brownellfa16a5c2009-02-08 10:37:06 -0800526};
527
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100528static int twlreg_probe(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800529{
530 int i;
531 struct twlreg_info *info;
532 struct regulator_init_data *initdata;
533 struct regulation_constraints *c;
534 struct regulator_dev *rdev;
David Brownellfa16a5c2009-02-08 10:37:06 -0800535
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100536 for (i = 0, info = NULL; i < ARRAY_SIZE(twl_regs); i++) {
537 if (twl_regs[i].desc.id != pdev->id)
David Brownellfa16a5c2009-02-08 10:37:06 -0800538 continue;
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100539 info = twl_regs + i;
David Brownellfa16a5c2009-02-08 10:37:06 -0800540 break;
541 }
542 if (!info)
543 return -ENODEV;
544
545 initdata = pdev->dev.platform_data;
546 if (!initdata)
547 return -EINVAL;
548
549 /* Constrain board-specific capabilities according to what
550 * this driver and the chip itself can actually do.
551 */
552 c = &initdata->constraints;
David Brownellfa16a5c2009-02-08 10:37:06 -0800553 c->valid_modes_mask &= REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY;
554 c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE
555 | REGULATOR_CHANGE_MODE
556 | REGULATOR_CHANGE_STATUS;
Juha Keski-Saari205e5cd2009-12-16 15:27:56 +0200557 switch (pdev->id) {
558 case TWL4030_REG_VIO:
559 case TWL4030_REG_VDD1:
560 case TWL4030_REG_VDD2:
561 case TWL4030_REG_VPLL1:
562 case TWL4030_REG_VINTANA1:
563 case TWL4030_REG_VINTANA2:
564 case TWL4030_REG_VINTDIG:
565 c->always_on = true;
566 break;
567 default:
568 break;
569 }
David Brownellfa16a5c2009-02-08 10:37:06 -0800570
571 rdev = regulator_register(&info->desc, &pdev->dev, initdata, info);
572 if (IS_ERR(rdev)) {
573 dev_err(&pdev->dev, "can't register %s, %ld\n",
574 info->desc.name, PTR_ERR(rdev));
575 return PTR_ERR(rdev);
576 }
577 platform_set_drvdata(pdev, rdev);
578
579 /* NOTE: many regulators support short-circuit IRQs (presentable
580 * as REGULATOR_OVER_CURRENT notifications?) configured via:
581 * - SC_CONFIG
582 * - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
583 * - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
584 * - IT_CONFIG
585 */
586
587 return 0;
588}
589
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100590static int __devexit twlreg_remove(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800591{
592 regulator_unregister(platform_get_drvdata(pdev));
593 return 0;
594}
595
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100596MODULE_ALIAS("platform:twl_reg");
David Brownellfa16a5c2009-02-08 10:37:06 -0800597
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100598static struct platform_driver twlreg_driver = {
599 .probe = twlreg_probe,
600 .remove = __devexit_p(twlreg_remove),
David Brownellfa16a5c2009-02-08 10:37:06 -0800601 /* NOTE: short name, to work around driver model truncation of
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100602 * "twl_regulator.12" (and friends) to "twl_regulator.1".
David Brownellfa16a5c2009-02-08 10:37:06 -0800603 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100604 .driver.name = "twl_reg",
David Brownellfa16a5c2009-02-08 10:37:06 -0800605 .driver.owner = THIS_MODULE,
606};
607
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100608static int __init twlreg_init(void)
David Brownellfa16a5c2009-02-08 10:37:06 -0800609{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100610 return platform_driver_register(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -0800611}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100612subsys_initcall(twlreg_init);
David Brownellfa16a5c2009-02-08 10:37:06 -0800613
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100614static void __exit twlreg_exit(void)
David Brownellfa16a5c2009-02-08 10:37:06 -0800615{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100616 platform_driver_unregister(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -0800617}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100618module_exit(twlreg_exit)
David Brownellfa16a5c2009-02-08 10:37:06 -0800619
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100620MODULE_DESCRIPTION("TWL regulator driver");
David Brownellfa16a5c2009-02-08 10:37:06 -0800621MODULE_LICENSE("GPL");