blob: 2a808c25f982c93f27c0456156ddf1e3066324b8 [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>
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +020015#include <linux/delay.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080016#include <linux/platform_device.h>
17#include <linux/regulator/driver.h>
18#include <linux/regulator/machine.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010019#include <linux/i2c/twl.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080020
21
22/*
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +010023 * The TWL4030/TW5030/TPS659x0/TWL6030 family chips include power management, a
David Brownellfa16a5c2009-02-08 10:37:06 -080024 * 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
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +010037 /* twl resource ID, for resource control state machine */
David Brownellfa16a5c2009-02-08 10:37:06 -080038 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
Juha Keski-Saari045f9722009-12-16 14:49:52 +020044 /* regulator specific turn-on delay */
45 u16 delay;
46
47 /* State REMAP default configuration */
48 u8 remap;
49
David Brownellfa16a5c2009-02-08 10:37:06 -080050 /* chip constraints on regulator behavior */
51 u16 min_mV;
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +053052 u16 max_mV;
David Brownellfa16a5c2009-02-08 10:37:06 -080053
54 /* used by regulator core */
55 struct regulator_desc desc;
56};
57
58
59/* LDO control registers ... offset is from the base of its register bank.
60 * The first three registers of all power resource banks help hardware to
61 * manage the various resource groups.
62 */
Rajendra Nayak441a4502009-12-13 22:19:23 +010063/* Common offset in TWL4030/6030 */
David Brownellfa16a5c2009-02-08 10:37:06 -080064#define VREG_GRP 0
Rajendra Nayak441a4502009-12-13 22:19:23 +010065/* TWL4030 register offsets */
David Brownellfa16a5c2009-02-08 10:37:06 -080066#define VREG_TYPE 1
67#define VREG_REMAP 2
68#define VREG_DEDICATED 3 /* LDO control */
Rajendra Nayak441a4502009-12-13 22:19:23 +010069/* TWL6030 register offsets */
70#define VREG_TRANS 1
71#define VREG_STATE 2
72#define VREG_VOLTAGE 3
73/* TWL6030 Misc register offsets */
74#define VREG_BC_ALL 1
75#define VREG_BC_REF 2
76#define VREG_BC_PROC 3
77#define VREG_BC_CLK_RST 4
David Brownellfa16a5c2009-02-08 10:37:06 -080078
Saquib Herman21657ebf2011-04-01 10:22:42 +053079/* TWL6030 LDO register values for CFG_STATE */
80#define TWL6030_CFG_STATE_OFF 0x00
81#define TWL6030_CFG_STATE_ON 0x01
Saquib Herman9a0244a2011-04-01 10:22:45 +053082#define TWL6030_CFG_STATE_OFF2 0x02
83#define TWL6030_CFG_STATE_SLEEP 0x03
Saquib Herman21657ebf2011-04-01 10:22:42 +053084#define TWL6030_CFG_STATE_GRP_SHIFT 5
Saquib Hermanb2456772011-04-01 10:22:44 +053085#define TWL6030_CFG_STATE_APP_SHIFT 2
86#define TWL6030_CFG_STATE_APP_MASK (0x03 << TWL6030_CFG_STATE_APP_SHIFT)
87#define TWL6030_CFG_STATE_APP(v) (((v) & TWL6030_CFG_STATE_APP_MASK) >>\
88 TWL6030_CFG_STATE_APP_SHIFT)
Saquib Herman21657ebf2011-04-01 10:22:42 +053089
David Brownellfa16a5c2009-02-08 10:37:06 -080090static inline int
Rajendra Nayak441a4502009-12-13 22:19:23 +010091twlreg_read(struct twlreg_info *info, unsigned slave_subgp, unsigned offset)
David Brownellfa16a5c2009-02-08 10:37:06 -080092{
93 u8 value;
94 int status;
95
Rajendra Nayak441a4502009-12-13 22:19:23 +010096 status = twl_i2c_read_u8(slave_subgp,
David Brownellfa16a5c2009-02-08 10:37:06 -080097 &value, info->base + offset);
98 return (status < 0) ? status : value;
99}
100
101static inline int
Rajendra Nayak441a4502009-12-13 22:19:23 +0100102twlreg_write(struct twlreg_info *info, unsigned slave_subgp, unsigned offset,
103 u8 value)
David Brownellfa16a5c2009-02-08 10:37:06 -0800104{
Rajendra Nayak441a4502009-12-13 22:19:23 +0100105 return twl_i2c_write_u8(slave_subgp,
David Brownellfa16a5c2009-02-08 10:37:06 -0800106 value, info->base + offset);
107}
108
109/*----------------------------------------------------------------------*/
110
111/* generic power resource operations, which work on all regulators */
112
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100113static int twlreg_grp(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800114{
Rajendra Nayak441a4502009-12-13 22:19:23 +0100115 return twlreg_read(rdev_get_drvdata(rdev), TWL_MODULE_PM_RECEIVER,
116 VREG_GRP);
David Brownellfa16a5c2009-02-08 10:37:06 -0800117}
118
119/*
120 * Enable/disable regulators by joining/leaving the P1 (processor) group.
121 * We assume nobody else is updating the DEV_GRP registers.
122 */
Rajendra Nayak441a4502009-12-13 22:19:23 +0100123/* definition for 4030 family */
124#define P3_GRP_4030 BIT(7) /* "peripherals" */
125#define P2_GRP_4030 BIT(6) /* secondary processor, modem, etc */
126#define P1_GRP_4030 BIT(5) /* CPU/Linux */
127/* definition for 6030 family */
128#define P3_GRP_6030 BIT(2) /* secondary processor, modem, etc */
129#define P2_GRP_6030 BIT(1) /* "peripherals" */
130#define P1_GRP_6030 BIT(0) /* CPU/Linux */
David Brownellfa16a5c2009-02-08 10:37:06 -0800131
Saquib Hermanb2456772011-04-01 10:22:44 +0530132static int twl4030reg_is_enabled(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800133{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100134 int state = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800135
136 if (state < 0)
137 return state;
138
Saquib Hermanb2456772011-04-01 10:22:44 +0530139 return state & P1_GRP_4030;
140}
141
142static int twl6030reg_is_enabled(struct regulator_dev *rdev)
143{
144 struct twlreg_info *info = rdev_get_drvdata(rdev);
145 int grp, val;
146
147 grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
148 if (grp < 0)
149 return grp;
150
151 grp &= P1_GRP_6030;
152
153 val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);
154 val = TWL6030_CFG_STATE_APP(val);
155
156 return grp && (val == TWL6030_CFG_STATE_ON);
David Brownellfa16a5c2009-02-08 10:37:06 -0800157}
158
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100159static int twlreg_enable(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800160{
161 struct twlreg_info *info = rdev_get_drvdata(rdev);
162 int grp;
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +0200163 int ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800164
Rajendra Nayak441a4502009-12-13 22:19:23 +0100165 grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
David Brownellfa16a5c2009-02-08 10:37:06 -0800166 if (grp < 0)
167 return grp;
168
Rajendra Nayak441a4502009-12-13 22:19:23 +0100169 if (twl_class_is_4030())
170 grp |= P1_GRP_4030;
171 else
172 grp |= P1_GRP_6030;
173
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +0200174 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
175
Saquib Herman21657ebf2011-04-01 10:22:42 +0530176 if (!ret && twl_class_is_6030())
177 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
178 grp << TWL6030_CFG_STATE_GRP_SHIFT |
179 TWL6030_CFG_STATE_ON);
180
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +0200181 udelay(info->delay);
182
183 return ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800184}
185
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100186static int twlreg_disable(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800187{
188 struct twlreg_info *info = rdev_get_drvdata(rdev);
189 int grp;
Saquib Herman21657ebf2011-04-01 10:22:42 +0530190 int ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800191
Rajendra Nayak441a4502009-12-13 22:19:23 +0100192 grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
David Brownellfa16a5c2009-02-08 10:37:06 -0800193 if (grp < 0)
194 return grp;
195
Saquib Herman21657ebf2011-04-01 10:22:42 +0530196 /* For 6030, set the off state for all grps enabled */
197 if (twl_class_is_6030()) {
198 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
199 (grp & (P1_GRP_6030 | P2_GRP_6030 | P3_GRP_6030)) <<
200 TWL6030_CFG_STATE_GRP_SHIFT |
201 TWL6030_CFG_STATE_OFF);
202 if (ret)
203 return ret;
204 }
205
Rajendra Nayak441a4502009-12-13 22:19:23 +0100206 if (twl_class_is_4030())
Juha Keski-Saaricf9836f2009-12-16 15:28:00 +0200207 grp &= ~(P1_GRP_4030 | P2_GRP_4030 | P3_GRP_4030);
Rajendra Nayak441a4502009-12-13 22:19:23 +0100208 else
Juha Keski-Saaricf9836f2009-12-16 15:28:00 +0200209 grp &= ~(P1_GRP_6030 | P2_GRP_6030 | P3_GRP_6030);
Rajendra Nayak441a4502009-12-13 22:19:23 +0100210
Saquib Herman21657ebf2011-04-01 10:22:42 +0530211 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
212
213 /* Next, associate cleared grp in state register */
214 if (!ret && twl_class_is_6030())
215 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
216 grp << TWL6030_CFG_STATE_GRP_SHIFT |
217 TWL6030_CFG_STATE_OFF);
218
219 return ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800220}
221
Saquib Herman9a0244a2011-04-01 10:22:45 +0530222static int twl4030reg_get_status(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800223{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100224 int state = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800225
226 if (state < 0)
227 return state;
228 state &= 0x0f;
229
230 /* assume state != WARM_RESET; we'd not be running... */
231 if (!state)
232 return REGULATOR_STATUS_OFF;
233 return (state & BIT(3))
234 ? REGULATOR_STATUS_NORMAL
235 : REGULATOR_STATUS_STANDBY;
236}
237
Saquib Herman9a0244a2011-04-01 10:22:45 +0530238static int twl6030reg_get_status(struct regulator_dev *rdev)
239{
240 struct twlreg_info *info = rdev_get_drvdata(rdev);
241 int val;
242
243 val = twlreg_grp(rdev);
244 if (val < 0)
245 return val;
246
247 val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);
248
249 switch (TWL6030_CFG_STATE_APP(val)) {
250 case TWL6030_CFG_STATE_ON:
251 return REGULATOR_STATUS_NORMAL;
252
253 case TWL6030_CFG_STATE_SLEEP:
254 return REGULATOR_STATUS_STANDBY;
255
256 case TWL6030_CFG_STATE_OFF:
257 case TWL6030_CFG_STATE_OFF2:
258 default:
259 break;
260 }
261
262 return REGULATOR_STATUS_OFF;
263}
264
Saquib Herman1a399622011-04-01 10:22:46 +0530265static int twl4030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
David Brownellfa16a5c2009-02-08 10:37:06 -0800266{
267 struct twlreg_info *info = rdev_get_drvdata(rdev);
268 unsigned message;
269 int status;
270
271 /* We can only set the mode through state machine commands... */
272 switch (mode) {
273 case REGULATOR_MODE_NORMAL:
274 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_ACTIVE);
275 break;
276 case REGULATOR_MODE_STANDBY:
277 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_SLEEP);
278 break;
279 default:
280 return -EINVAL;
281 }
282
283 /* Ensure the resource is associated with some group */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100284 status = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800285 if (status < 0)
286 return status;
Rajendra Nayak441a4502009-12-13 22:19:23 +0100287 if (!(status & (P3_GRP_4030 | P2_GRP_4030 | P1_GRP_4030)))
David Brownellfa16a5c2009-02-08 10:37:06 -0800288 return -EACCES;
289
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100290 status = twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
Axel Linb9e26bc2010-10-22 16:38:22 +0800291 message >> 8, TWL4030_PM_MASTER_PB_WORD_MSB);
292 if (status < 0)
David Brownellfa16a5c2009-02-08 10:37:06 -0800293 return status;
294
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100295 return twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
Axel Linb9e26bc2010-10-22 16:38:22 +0800296 message & 0xff, TWL4030_PM_MASTER_PB_WORD_LSB);
David Brownellfa16a5c2009-02-08 10:37:06 -0800297}
298
Saquib Herman1a399622011-04-01 10:22:46 +0530299static int twl6030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
300{
301 struct twlreg_info *info = rdev_get_drvdata(rdev);
302 int grp;
303 int val;
304
305 grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
306
307 if (grp < 0)
308 return grp;
309
310 /* Compose the state register settings */
311 val = grp << TWL6030_CFG_STATE_GRP_SHIFT;
312 /* We can only set the mode through state machine commands... */
313 switch (mode) {
314 case REGULATOR_MODE_NORMAL:
315 val |= TWL6030_CFG_STATE_ON;
316 break;
317 case REGULATOR_MODE_STANDBY:
318 val |= TWL6030_CFG_STATE_SLEEP;
319 break;
320
321 default:
322 return -EINVAL;
323 }
324
325 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE, val);
326}
327
David Brownellfa16a5c2009-02-08 10:37:06 -0800328/*----------------------------------------------------------------------*/
329
330/*
331 * Support for adjustable-voltage LDOs uses a four bit (or less) voltage
332 * select field in its control register. We use tables indexed by VSEL
333 * to record voltages in milliVolts. (Accuracy is about three percent.)
334 *
335 * Note that VSEL values for VAUX2 changed in twl5030 and newer silicon;
336 * currently handled by listing two slightly different VAUX2 regulators,
337 * only one of which will be configured.
338 *
339 * VSEL values documented as "TI cannot support these values" are flagged
340 * in these tables as UNSUP() values; we normally won't assign them.
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200341 *
342 * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported.
343 * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting.
David Brownellfa16a5c2009-02-08 10:37:06 -0800344 */
345#ifdef CONFIG_TWL4030_ALLOW_UNSUPPORTED
346#define UNSUP_MASK 0x0000
347#else
348#define UNSUP_MASK 0x8000
349#endif
350
351#define UNSUP(x) (UNSUP_MASK | (x))
352#define IS_UNSUP(x) (UNSUP_MASK & (x))
353#define LDO_MV(x) (~UNSUP_MASK & (x))
354
355
356static const u16 VAUX1_VSEL_table[] = {
357 UNSUP(1500), UNSUP(1800), 2500, 2800,
358 3000, 3000, 3000, 3000,
359};
360static const u16 VAUX2_4030_VSEL_table[] = {
361 UNSUP(1000), UNSUP(1000), UNSUP(1200), 1300,
362 1500, 1800, UNSUP(1850), 2500,
363 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
364 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
365};
366static const u16 VAUX2_VSEL_table[] = {
367 1700, 1700, 1900, 1300,
368 1500, 1800, 2000, 2500,
369 2100, 2800, 2200, 2300,
370 2400, 2400, 2400, 2400,
371};
372static const u16 VAUX3_VSEL_table[] = {
373 1500, 1800, 2500, 2800,
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200374 3000, 3000, 3000, 3000,
David Brownellfa16a5c2009-02-08 10:37:06 -0800375};
376static const u16 VAUX4_VSEL_table[] = {
377 700, 1000, 1200, UNSUP(1300),
378 1500, 1800, UNSUP(1850), 2500,
David Brownell1897e742009-03-10 11:51:15 -0800379 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
380 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
David Brownellfa16a5c2009-02-08 10:37:06 -0800381};
382static const u16 VMMC1_VSEL_table[] = {
383 1850, 2850, 3000, 3150,
384};
385static const u16 VMMC2_VSEL_table[] = {
386 UNSUP(1000), UNSUP(1000), UNSUP(1200), UNSUP(1300),
387 UNSUP(1500), UNSUP(1800), 1850, UNSUP(2500),
388 2600, 2800, 2850, 3000,
389 3150, 3150, 3150, 3150,
390};
391static const u16 VPLL1_VSEL_table[] = {
392 1000, 1200, 1300, 1800,
393 UNSUP(2800), UNSUP(3000), UNSUP(3000), UNSUP(3000),
394};
395static const u16 VPLL2_VSEL_table[] = {
396 700, 1000, 1200, 1300,
397 UNSUP(1500), 1800, UNSUP(1850), UNSUP(2500),
398 UNSUP(2600), UNSUP(2800), UNSUP(2850), UNSUP(3000),
399 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
400};
401static const u16 VSIM_VSEL_table[] = {
402 UNSUP(1000), UNSUP(1200), UNSUP(1300), 1800,
403 2800, 3000, 3000, 3000,
404};
405static const u16 VDAC_VSEL_table[] = {
406 1200, 1300, 1800, 1800,
407};
Juha Keski-Saari07fc4932009-12-16 15:27:55 +0200408static const u16 VDD1_VSEL_table[] = {
409 800, 1450,
410};
411static const u16 VDD2_VSEL_table[] = {
412 800, 1450, 1500,
413};
414static const u16 VIO_VSEL_table[] = {
415 1800, 1850,
416};
417static const u16 VINTANA2_VSEL_table[] = {
418 2500, 2750,
419};
David Brownellfa16a5c2009-02-08 10:37:06 -0800420
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530421static int twl4030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800422{
423 struct twlreg_info *info = rdev_get_drvdata(rdev);
424 int mV = info->table[index];
425
426 return IS_UNSUP(mV) ? 0 : (LDO_MV(mV) * 1000);
427}
428
David Brownellfa16a5c2009-02-08 10:37:06 -0800429static int
Mark Brown3a93f2a2010-11-10 14:38:29 +0000430twl4030ldo_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
431 unsigned *selector)
David Brownellfa16a5c2009-02-08 10:37:06 -0800432{
433 struct twlreg_info *info = rdev_get_drvdata(rdev);
434 int vsel;
435
436 for (vsel = 0; vsel < info->table_len; vsel++) {
437 int mV = info->table[vsel];
438 int uV;
439
440 if (IS_UNSUP(mV))
441 continue;
442 uV = LDO_MV(mV) * 1000;
443
David Brownell66b659e2009-02-26 11:50:14 -0800444 /* REVISIT for VAUX2, first match may not be best/lowest */
445
David Brownellfa16a5c2009-02-08 10:37:06 -0800446 /* use the first in-range value */
Mark Brown3a93f2a2010-11-10 14:38:29 +0000447 if (min_uV <= uV && uV <= max_uV) {
448 *selector = vsel;
Rajendra Nayak441a4502009-12-13 22:19:23 +0100449 return twlreg_write(info, TWL_MODULE_PM_RECEIVER,
450 VREG_VOLTAGE, vsel);
Mark Brown3a93f2a2010-11-10 14:38:29 +0000451 }
David Brownellfa16a5c2009-02-08 10:37:06 -0800452 }
453
454 return -EDOM;
455}
456
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530457static int twl4030ldo_get_voltage(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800458{
459 struct twlreg_info *info = rdev_get_drvdata(rdev);
Rajendra Nayak441a4502009-12-13 22:19:23 +0100460 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
461 VREG_VOLTAGE);
David Brownellfa16a5c2009-02-08 10:37:06 -0800462
463 if (vsel < 0)
464 return vsel;
465
466 vsel &= info->table_len - 1;
467 return LDO_MV(info->table[vsel]) * 1000;
468}
469
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530470static struct regulator_ops twl4030ldo_ops = {
471 .list_voltage = twl4030ldo_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800472
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530473 .set_voltage = twl4030ldo_set_voltage,
474 .get_voltage = twl4030ldo_get_voltage,
475
476 .enable = twlreg_enable,
477 .disable = twlreg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530478 .is_enabled = twl4030reg_is_enabled,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530479
Saquib Herman1a399622011-04-01 10:22:46 +0530480 .set_mode = twl4030reg_set_mode,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530481
Saquib Herman9a0244a2011-04-01 10:22:45 +0530482 .get_status = twl4030reg_get_status,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530483};
484
485static int twl6030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
486{
487 struct twlreg_info *info = rdev_get_drvdata(rdev);
488
489 return ((info->min_mV + (index * 100)) * 1000);
490}
491
492static int
Mark Brown3a93f2a2010-11-10 14:38:29 +0000493twl6030ldo_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
494 unsigned *selector)
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530495{
496 struct twlreg_info *info = rdev_get_drvdata(rdev);
497 int vsel;
498
499 if ((min_uV/1000 < info->min_mV) || (max_uV/1000 > info->max_mV))
500 return -EDOM;
501
502 /*
503 * Use the below formula to calculate vsel
504 * mV = 1000mv + 100mv * (vsel - 1)
505 */
506 vsel = (min_uV/1000 - 1000)/100 + 1;
Mark Brown3a93f2a2010-11-10 14:38:29 +0000507 *selector = vsel;
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530508 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE, vsel);
509
510}
511
512static int twl6030ldo_get_voltage(struct regulator_dev *rdev)
513{
514 struct twlreg_info *info = rdev_get_drvdata(rdev);
515 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
516 VREG_VOLTAGE);
517
518 if (vsel < 0)
519 return vsel;
520
521 /*
522 * Use the below formula to calculate vsel
523 * mV = 1000mv + 100mv * (vsel - 1)
524 */
525 return (1000 + (100 * (vsel - 1))) * 1000;
526}
527
528static struct regulator_ops twl6030ldo_ops = {
529 .list_voltage = twl6030ldo_list_voltage,
530
531 .set_voltage = twl6030ldo_set_voltage,
532 .get_voltage = twl6030ldo_get_voltage,
David Brownellfa16a5c2009-02-08 10:37:06 -0800533
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100534 .enable = twlreg_enable,
535 .disable = twlreg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530536 .is_enabled = twl6030reg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800537
Saquib Herman1a399622011-04-01 10:22:46 +0530538 .set_mode = twl6030reg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800539
Saquib Herman9a0244a2011-04-01 10:22:45 +0530540 .get_status = twl6030reg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800541};
542
543/*----------------------------------------------------------------------*/
544
545/*
546 * Fixed voltage LDOs don't have a VSEL field to update.
547 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100548static int twlfixed_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800549{
550 struct twlreg_info *info = rdev_get_drvdata(rdev);
551
552 return info->min_mV * 1000;
553}
554
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100555static int twlfixed_get_voltage(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800556{
557 struct twlreg_info *info = rdev_get_drvdata(rdev);
558
559 return info->min_mV * 1000;
560}
561
Saquib Hermanb2456772011-04-01 10:22:44 +0530562static struct regulator_ops twl4030fixed_ops = {
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100563 .list_voltage = twlfixed_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800564
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100565 .get_voltage = twlfixed_get_voltage,
David Brownellfa16a5c2009-02-08 10:37:06 -0800566
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100567 .enable = twlreg_enable,
568 .disable = twlreg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530569 .is_enabled = twl4030reg_is_enabled,
570
Saquib Herman1a399622011-04-01 10:22:46 +0530571 .set_mode = twl4030reg_set_mode,
Saquib Hermanb2456772011-04-01 10:22:44 +0530572
Saquib Herman9a0244a2011-04-01 10:22:45 +0530573 .get_status = twl4030reg_get_status,
Saquib Hermanb2456772011-04-01 10:22:44 +0530574};
575
576static struct regulator_ops twl6030fixed_ops = {
577 .list_voltage = twlfixed_list_voltage,
578
579 .get_voltage = twlfixed_get_voltage,
580
581 .enable = twlreg_enable,
582 .disable = twlreg_disable,
583 .is_enabled = twl6030reg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800584
Saquib Herman1a399622011-04-01 10:22:46 +0530585 .set_mode = twl6030reg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800586
Saquib Herman9a0244a2011-04-01 10:22:45 +0530587 .get_status = twl6030reg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800588};
589
Balaji T K8e6de4a2011-02-10 18:44:50 +0530590static struct regulator_ops twl6030_fixed_resource = {
591 .enable = twlreg_enable,
592 .disable = twlreg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530593 .is_enabled = twl6030reg_is_enabled,
Saquib Herman9a0244a2011-04-01 10:22:45 +0530594 .get_status = twl6030reg_get_status,
Balaji T K8e6de4a2011-02-10 18:44:50 +0530595};
596
David Brownellfa16a5c2009-02-08 10:37:06 -0800597/*----------------------------------------------------------------------*/
598
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200599#define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
600 remap_conf) \
601 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530602 remap_conf, TWL4030, twl4030fixed_ops)
Saquib Herman776dc922011-04-01 10:22:43 +0530603#define TWL6030_FIXED_LDO(label, offset, mVolts, num, turnon_delay) \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200604 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530605 0x0, TWL6030, twl6030fixed_ops)
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100606
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530607#define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800608 .base = offset, \
609 .id = num, \
610 .table_len = ARRAY_SIZE(label##_VSEL_table), \
611 .table = label##_VSEL_table, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200612 .delay = turnon_delay, \
613 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800614 .desc = { \
615 .name = #label, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530616 .id = TWL4030_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800617 .n_voltages = ARRAY_SIZE(label##_VSEL_table), \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530618 .ops = &twl4030ldo_ops, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800619 .type = REGULATOR_VOLTAGE, \
620 .owner = THIS_MODULE, \
621 }, \
622 }
623
Saquib Herman776dc922011-04-01 10:22:43 +0530624#define TWL6030_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts, num) { \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530625 .base = offset, \
626 .id = num, \
627 .min_mV = min_mVolts, \
628 .max_mV = max_mVolts, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530629 .desc = { \
630 .name = #label, \
631 .id = TWL6030_REG_##label, \
632 .n_voltages = (max_mVolts - min_mVolts)/100, \
633 .ops = &twl6030ldo_ops, \
634 .type = REGULATOR_VOLTAGE, \
635 .owner = THIS_MODULE, \
636 }, \
637 }
638
639
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200640#define TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, remap_conf, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530641 family, operations) { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800642 .base = offset, \
643 .id = num, \
644 .min_mV = mVolts, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200645 .delay = turnon_delay, \
646 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800647 .desc = { \
648 .name = #label, \
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100649 .id = family##_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800650 .n_voltages = 1, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530651 .ops = &operations, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800652 .type = REGULATOR_VOLTAGE, \
653 .owner = THIS_MODULE, \
654 }, \
655 }
656
Saquib Herman776dc922011-04-01 10:22:43 +0530657#define TWL6030_FIXED_RESOURCE(label, offset, num, turnon_delay) { \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530658 .base = offset, \
659 .id = num, \
660 .delay = turnon_delay, \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530661 .desc = { \
662 .name = #label, \
663 .id = TWL6030_REG_##label, \
664 .ops = &twl6030_fixed_resource, \
665 .type = REGULATOR_VOLTAGE, \
666 .owner = THIS_MODULE, \
667 }, \
668 }
669
David Brownellfa16a5c2009-02-08 10:37:06 -0800670/*
671 * We list regulators here if systems need some level of
672 * software control over them after boot.
673 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100674static struct twlreg_info twl_regs[] = {
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200675 TWL4030_ADJUSTABLE_LDO(VAUX1, 0x17, 1, 100, 0x08),
676 TWL4030_ADJUSTABLE_LDO(VAUX2_4030, 0x1b, 2, 100, 0x08),
677 TWL4030_ADJUSTABLE_LDO(VAUX2, 0x1b, 2, 100, 0x08),
678 TWL4030_ADJUSTABLE_LDO(VAUX3, 0x1f, 3, 100, 0x08),
679 TWL4030_ADJUSTABLE_LDO(VAUX4, 0x23, 4, 100, 0x08),
680 TWL4030_ADJUSTABLE_LDO(VMMC1, 0x27, 5, 100, 0x08),
681 TWL4030_ADJUSTABLE_LDO(VMMC2, 0x2b, 6, 100, 0x08),
682 TWL4030_ADJUSTABLE_LDO(VPLL1, 0x2f, 7, 100, 0x00),
683 TWL4030_ADJUSTABLE_LDO(VPLL2, 0x33, 8, 100, 0x08),
684 TWL4030_ADJUSTABLE_LDO(VSIM, 0x37, 9, 100, 0x00),
685 TWL4030_ADJUSTABLE_LDO(VDAC, 0x3b, 10, 100, 0x08),
686 TWL4030_FIXED_LDO(VINTANA1, 0x3f, 1500, 11, 100, 0x08),
687 TWL4030_ADJUSTABLE_LDO(VINTANA2, 0x43, 12, 100, 0x08),
688 TWL4030_FIXED_LDO(VINTDIG, 0x47, 1500, 13, 100, 0x08),
689 TWL4030_ADJUSTABLE_LDO(VIO, 0x4b, 14, 1000, 0x08),
690 TWL4030_ADJUSTABLE_LDO(VDD1, 0x55, 15, 1000, 0x08),
691 TWL4030_ADJUSTABLE_LDO(VDD2, 0x63, 16, 1000, 0x08),
692 TWL4030_FIXED_LDO(VUSB1V5, 0x71, 1500, 17, 100, 0x08),
693 TWL4030_FIXED_LDO(VUSB1V8, 0x74, 1800, 18, 100, 0x08),
694 TWL4030_FIXED_LDO(VUSB3V1, 0x77, 3100, 19, 150, 0x08),
David Brownellfa16a5c2009-02-08 10:37:06 -0800695 /* VUSBCP is managed *only* by the USB subchip */
Rajendra Nayak441a4502009-12-13 22:19:23 +0100696
697 /* 6030 REG with base as PMC Slave Misc : 0x0030 */
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200698 /* Turnon-delay and remap configuration values for 6030 are not
699 verified since the specification is not public */
Saquib Herman776dc922011-04-01 10:22:43 +0530700 TWL6030_ADJUSTABLE_LDO(VAUX1_6030, 0x54, 1000, 3300, 1),
701 TWL6030_ADJUSTABLE_LDO(VAUX2_6030, 0x58, 1000, 3300, 2),
702 TWL6030_ADJUSTABLE_LDO(VAUX3_6030, 0x5c, 1000, 3300, 3),
703 TWL6030_ADJUSTABLE_LDO(VMMC, 0x68, 1000, 3300, 4),
704 TWL6030_ADJUSTABLE_LDO(VPP, 0x6c, 1000, 3300, 5),
705 TWL6030_ADJUSTABLE_LDO(VUSIM, 0x74, 1000, 3300, 7),
706 TWL6030_FIXED_LDO(VANA, 0x50, 2100, 15, 0),
707 TWL6030_FIXED_LDO(VCXIO, 0x60, 1800, 16, 0),
708 TWL6030_FIXED_LDO(VDAC, 0x64, 1800, 17, 0),
709 TWL6030_FIXED_LDO(VUSB, 0x70, 3300, 18, 0),
710 TWL6030_FIXED_RESOURCE(CLK32KG, 0x8C, 48, 0),
David Brownellfa16a5c2009-02-08 10:37:06 -0800711};
712
Dmitry Torokhov24c29022010-02-23 23:38:01 -0800713static int __devinit twlreg_probe(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800714{
715 int i;
716 struct twlreg_info *info;
717 struct regulator_init_data *initdata;
718 struct regulation_constraints *c;
719 struct regulator_dev *rdev;
David Brownellfa16a5c2009-02-08 10:37:06 -0800720
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100721 for (i = 0, info = NULL; i < ARRAY_SIZE(twl_regs); i++) {
722 if (twl_regs[i].desc.id != pdev->id)
David Brownellfa16a5c2009-02-08 10:37:06 -0800723 continue;
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100724 info = twl_regs + i;
David Brownellfa16a5c2009-02-08 10:37:06 -0800725 break;
726 }
727 if (!info)
728 return -ENODEV;
729
730 initdata = pdev->dev.platform_data;
731 if (!initdata)
732 return -EINVAL;
733
734 /* Constrain board-specific capabilities according to what
735 * this driver and the chip itself can actually do.
736 */
737 c = &initdata->constraints;
David Brownellfa16a5c2009-02-08 10:37:06 -0800738 c->valid_modes_mask &= REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY;
739 c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE
740 | REGULATOR_CHANGE_MODE
741 | REGULATOR_CHANGE_STATUS;
Juha Keski-Saari205e5cd2009-12-16 15:27:56 +0200742 switch (pdev->id) {
743 case TWL4030_REG_VIO:
744 case TWL4030_REG_VDD1:
745 case TWL4030_REG_VDD2:
746 case TWL4030_REG_VPLL1:
747 case TWL4030_REG_VINTANA1:
748 case TWL4030_REG_VINTANA2:
749 case TWL4030_REG_VINTDIG:
750 c->always_on = true;
751 break;
752 default:
753 break;
754 }
David Brownellfa16a5c2009-02-08 10:37:06 -0800755
756 rdev = regulator_register(&info->desc, &pdev->dev, initdata, info);
757 if (IS_ERR(rdev)) {
758 dev_err(&pdev->dev, "can't register %s, %ld\n",
759 info->desc.name, PTR_ERR(rdev));
760 return PTR_ERR(rdev);
761 }
762 platform_set_drvdata(pdev, rdev);
763
Saquib Herman776dc922011-04-01 10:22:43 +0530764 if (twl_class_is_4030())
765 twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_REMAP,
Juha Keski-Saari30010fa2009-12-16 15:27:58 +0200766 info->remap);
767
David Brownellfa16a5c2009-02-08 10:37:06 -0800768 /* NOTE: many regulators support short-circuit IRQs (presentable
769 * as REGULATOR_OVER_CURRENT notifications?) configured via:
770 * - SC_CONFIG
771 * - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
772 * - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
773 * - IT_CONFIG
774 */
775
776 return 0;
777}
778
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100779static int __devexit twlreg_remove(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800780{
781 regulator_unregister(platform_get_drvdata(pdev));
782 return 0;
783}
784
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100785MODULE_ALIAS("platform:twl_reg");
David Brownellfa16a5c2009-02-08 10:37:06 -0800786
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100787static struct platform_driver twlreg_driver = {
788 .probe = twlreg_probe,
789 .remove = __devexit_p(twlreg_remove),
David Brownellfa16a5c2009-02-08 10:37:06 -0800790 /* NOTE: short name, to work around driver model truncation of
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100791 * "twl_regulator.12" (and friends) to "twl_regulator.1".
David Brownellfa16a5c2009-02-08 10:37:06 -0800792 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100793 .driver.name = "twl_reg",
David Brownellfa16a5c2009-02-08 10:37:06 -0800794 .driver.owner = THIS_MODULE,
795};
796
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100797static int __init twlreg_init(void)
David Brownellfa16a5c2009-02-08 10:37:06 -0800798{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100799 return platform_driver_register(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -0800800}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100801subsys_initcall(twlreg_init);
David Brownellfa16a5c2009-02-08 10:37:06 -0800802
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100803static void __exit twlreg_exit(void)
David Brownellfa16a5c2009-02-08 10:37:06 -0800804{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100805 platform_driver_unregister(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -0800806}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100807module_exit(twlreg_exit)
David Brownellfa16a5c2009-02-08 10:37:06 -0800808
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100809MODULE_DESCRIPTION("TWL regulator driver");
David Brownellfa16a5c2009-02-08 10:37:06 -0800810MODULE_LICENSE("GPL");