blob: 2d4218ac8535ec41039e7979992fdec1f6cb2ade [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
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100265static int twlreg_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
Rajendra Nayak441a4502009-12-13 22:19:23 +0100271 if (twl_class_is_6030())
272 return 0; /* FIXME return for 6030 regulator */
273
David Brownellfa16a5c2009-02-08 10:37:06 -0800274 /* We can only set the mode through state machine commands... */
275 switch (mode) {
276 case REGULATOR_MODE_NORMAL:
277 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_ACTIVE);
278 break;
279 case REGULATOR_MODE_STANDBY:
280 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_SLEEP);
281 break;
282 default:
283 return -EINVAL;
284 }
285
286 /* Ensure the resource is associated with some group */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100287 status = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800288 if (status < 0)
289 return status;
Rajendra Nayak441a4502009-12-13 22:19:23 +0100290 if (!(status & (P3_GRP_4030 | P2_GRP_4030 | P1_GRP_4030)))
David Brownellfa16a5c2009-02-08 10:37:06 -0800291 return -EACCES;
292
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100293 status = twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
Axel Linb9e26bc2010-10-22 16:38:22 +0800294 message >> 8, TWL4030_PM_MASTER_PB_WORD_MSB);
295 if (status < 0)
David Brownellfa16a5c2009-02-08 10:37:06 -0800296 return status;
297
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100298 return twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
Axel Linb9e26bc2010-10-22 16:38:22 +0800299 message & 0xff, TWL4030_PM_MASTER_PB_WORD_LSB);
David Brownellfa16a5c2009-02-08 10:37:06 -0800300}
301
302/*----------------------------------------------------------------------*/
303
304/*
305 * Support for adjustable-voltage LDOs uses a four bit (or less) voltage
306 * select field in its control register. We use tables indexed by VSEL
307 * to record voltages in milliVolts. (Accuracy is about three percent.)
308 *
309 * Note that VSEL values for VAUX2 changed in twl5030 and newer silicon;
310 * currently handled by listing two slightly different VAUX2 regulators,
311 * only one of which will be configured.
312 *
313 * VSEL values documented as "TI cannot support these values" are flagged
314 * in these tables as UNSUP() values; we normally won't assign them.
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200315 *
316 * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported.
317 * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting.
David Brownellfa16a5c2009-02-08 10:37:06 -0800318 */
319#ifdef CONFIG_TWL4030_ALLOW_UNSUPPORTED
320#define UNSUP_MASK 0x0000
321#else
322#define UNSUP_MASK 0x8000
323#endif
324
325#define UNSUP(x) (UNSUP_MASK | (x))
326#define IS_UNSUP(x) (UNSUP_MASK & (x))
327#define LDO_MV(x) (~UNSUP_MASK & (x))
328
329
330static const u16 VAUX1_VSEL_table[] = {
331 UNSUP(1500), UNSUP(1800), 2500, 2800,
332 3000, 3000, 3000, 3000,
333};
334static const u16 VAUX2_4030_VSEL_table[] = {
335 UNSUP(1000), UNSUP(1000), UNSUP(1200), 1300,
336 1500, 1800, UNSUP(1850), 2500,
337 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
338 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
339};
340static const u16 VAUX2_VSEL_table[] = {
341 1700, 1700, 1900, 1300,
342 1500, 1800, 2000, 2500,
343 2100, 2800, 2200, 2300,
344 2400, 2400, 2400, 2400,
345};
346static const u16 VAUX3_VSEL_table[] = {
347 1500, 1800, 2500, 2800,
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200348 3000, 3000, 3000, 3000,
David Brownellfa16a5c2009-02-08 10:37:06 -0800349};
350static const u16 VAUX4_VSEL_table[] = {
351 700, 1000, 1200, UNSUP(1300),
352 1500, 1800, UNSUP(1850), 2500,
David Brownell1897e742009-03-10 11:51:15 -0800353 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
354 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
David Brownellfa16a5c2009-02-08 10:37:06 -0800355};
356static const u16 VMMC1_VSEL_table[] = {
357 1850, 2850, 3000, 3150,
358};
359static const u16 VMMC2_VSEL_table[] = {
360 UNSUP(1000), UNSUP(1000), UNSUP(1200), UNSUP(1300),
361 UNSUP(1500), UNSUP(1800), 1850, UNSUP(2500),
362 2600, 2800, 2850, 3000,
363 3150, 3150, 3150, 3150,
364};
365static const u16 VPLL1_VSEL_table[] = {
366 1000, 1200, 1300, 1800,
367 UNSUP(2800), UNSUP(3000), UNSUP(3000), UNSUP(3000),
368};
369static const u16 VPLL2_VSEL_table[] = {
370 700, 1000, 1200, 1300,
371 UNSUP(1500), 1800, UNSUP(1850), UNSUP(2500),
372 UNSUP(2600), UNSUP(2800), UNSUP(2850), UNSUP(3000),
373 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
374};
375static const u16 VSIM_VSEL_table[] = {
376 UNSUP(1000), UNSUP(1200), UNSUP(1300), 1800,
377 2800, 3000, 3000, 3000,
378};
379static const u16 VDAC_VSEL_table[] = {
380 1200, 1300, 1800, 1800,
381};
Juha Keski-Saari07fc4932009-12-16 15:27:55 +0200382static const u16 VDD1_VSEL_table[] = {
383 800, 1450,
384};
385static const u16 VDD2_VSEL_table[] = {
386 800, 1450, 1500,
387};
388static const u16 VIO_VSEL_table[] = {
389 1800, 1850,
390};
391static const u16 VINTANA2_VSEL_table[] = {
392 2500, 2750,
393};
David Brownellfa16a5c2009-02-08 10:37:06 -0800394
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530395static int twl4030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800396{
397 struct twlreg_info *info = rdev_get_drvdata(rdev);
398 int mV = info->table[index];
399
400 return IS_UNSUP(mV) ? 0 : (LDO_MV(mV) * 1000);
401}
402
David Brownellfa16a5c2009-02-08 10:37:06 -0800403static int
Mark Brown3a93f2a2010-11-10 14:38:29 +0000404twl4030ldo_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
405 unsigned *selector)
David Brownellfa16a5c2009-02-08 10:37:06 -0800406{
407 struct twlreg_info *info = rdev_get_drvdata(rdev);
408 int vsel;
409
410 for (vsel = 0; vsel < info->table_len; vsel++) {
411 int mV = info->table[vsel];
412 int uV;
413
414 if (IS_UNSUP(mV))
415 continue;
416 uV = LDO_MV(mV) * 1000;
417
David Brownell66b659e2009-02-26 11:50:14 -0800418 /* REVISIT for VAUX2, first match may not be best/lowest */
419
David Brownellfa16a5c2009-02-08 10:37:06 -0800420 /* use the first in-range value */
Mark Brown3a93f2a2010-11-10 14:38:29 +0000421 if (min_uV <= uV && uV <= max_uV) {
422 *selector = vsel;
Rajendra Nayak441a4502009-12-13 22:19:23 +0100423 return twlreg_write(info, TWL_MODULE_PM_RECEIVER,
424 VREG_VOLTAGE, vsel);
Mark Brown3a93f2a2010-11-10 14:38:29 +0000425 }
David Brownellfa16a5c2009-02-08 10:37:06 -0800426 }
427
428 return -EDOM;
429}
430
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530431static int twl4030ldo_get_voltage(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800432{
433 struct twlreg_info *info = rdev_get_drvdata(rdev);
Rajendra Nayak441a4502009-12-13 22:19:23 +0100434 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
435 VREG_VOLTAGE);
David Brownellfa16a5c2009-02-08 10:37:06 -0800436
437 if (vsel < 0)
438 return vsel;
439
440 vsel &= info->table_len - 1;
441 return LDO_MV(info->table[vsel]) * 1000;
442}
443
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530444static struct regulator_ops twl4030ldo_ops = {
445 .list_voltage = twl4030ldo_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800446
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530447 .set_voltage = twl4030ldo_set_voltage,
448 .get_voltage = twl4030ldo_get_voltage,
449
450 .enable = twlreg_enable,
451 .disable = twlreg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530452 .is_enabled = twl4030reg_is_enabled,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530453
454 .set_mode = twlreg_set_mode,
455
Saquib Herman9a0244a2011-04-01 10:22:45 +0530456 .get_status = twl4030reg_get_status,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530457};
458
459static int twl6030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
460{
461 struct twlreg_info *info = rdev_get_drvdata(rdev);
462
463 return ((info->min_mV + (index * 100)) * 1000);
464}
465
466static int
Mark Brown3a93f2a2010-11-10 14:38:29 +0000467twl6030ldo_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
468 unsigned *selector)
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530469{
470 struct twlreg_info *info = rdev_get_drvdata(rdev);
471 int vsel;
472
473 if ((min_uV/1000 < info->min_mV) || (max_uV/1000 > info->max_mV))
474 return -EDOM;
475
476 /*
477 * Use the below formula to calculate vsel
478 * mV = 1000mv + 100mv * (vsel - 1)
479 */
480 vsel = (min_uV/1000 - 1000)/100 + 1;
Mark Brown3a93f2a2010-11-10 14:38:29 +0000481 *selector = vsel;
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530482 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE, vsel);
483
484}
485
486static int twl6030ldo_get_voltage(struct regulator_dev *rdev)
487{
488 struct twlreg_info *info = rdev_get_drvdata(rdev);
489 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
490 VREG_VOLTAGE);
491
492 if (vsel < 0)
493 return vsel;
494
495 /*
496 * Use the below formula to calculate vsel
497 * mV = 1000mv + 100mv * (vsel - 1)
498 */
499 return (1000 + (100 * (vsel - 1))) * 1000;
500}
501
502static struct regulator_ops twl6030ldo_ops = {
503 .list_voltage = twl6030ldo_list_voltage,
504
505 .set_voltage = twl6030ldo_set_voltage,
506 .get_voltage = twl6030ldo_get_voltage,
David Brownellfa16a5c2009-02-08 10:37:06 -0800507
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100508 .enable = twlreg_enable,
509 .disable = twlreg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530510 .is_enabled = twl6030reg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800511
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100512 .set_mode = twlreg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800513
Saquib Herman9a0244a2011-04-01 10:22:45 +0530514 .get_status = twl6030reg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800515};
516
517/*----------------------------------------------------------------------*/
518
519/*
520 * Fixed voltage LDOs don't have a VSEL field to update.
521 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100522static int twlfixed_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800523{
524 struct twlreg_info *info = rdev_get_drvdata(rdev);
525
526 return info->min_mV * 1000;
527}
528
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100529static int twlfixed_get_voltage(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800530{
531 struct twlreg_info *info = rdev_get_drvdata(rdev);
532
533 return info->min_mV * 1000;
534}
535
Saquib Hermanb2456772011-04-01 10:22:44 +0530536static struct regulator_ops twl4030fixed_ops = {
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100537 .list_voltage = twlfixed_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800538
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100539 .get_voltage = twlfixed_get_voltage,
David Brownellfa16a5c2009-02-08 10:37:06 -0800540
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100541 .enable = twlreg_enable,
542 .disable = twlreg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530543 .is_enabled = twl4030reg_is_enabled,
544
545 .set_mode = twlreg_set_mode,
546
Saquib Herman9a0244a2011-04-01 10:22:45 +0530547 .get_status = twl4030reg_get_status,
Saquib Hermanb2456772011-04-01 10:22:44 +0530548};
549
550static struct regulator_ops twl6030fixed_ops = {
551 .list_voltage = twlfixed_list_voltage,
552
553 .get_voltage = twlfixed_get_voltage,
554
555 .enable = twlreg_enable,
556 .disable = twlreg_disable,
557 .is_enabled = twl6030reg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800558
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100559 .set_mode = twlreg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800560
Saquib Herman9a0244a2011-04-01 10:22:45 +0530561 .get_status = twl6030reg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800562};
563
Balaji T K8e6de4a2011-02-10 18:44:50 +0530564static struct regulator_ops twl6030_fixed_resource = {
565 .enable = twlreg_enable,
566 .disable = twlreg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530567 .is_enabled = twl6030reg_is_enabled,
Saquib Herman9a0244a2011-04-01 10:22:45 +0530568 .get_status = twl6030reg_get_status,
Balaji T K8e6de4a2011-02-10 18:44:50 +0530569};
570
David Brownellfa16a5c2009-02-08 10:37:06 -0800571/*----------------------------------------------------------------------*/
572
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200573#define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
574 remap_conf) \
575 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530576 remap_conf, TWL4030, twl4030fixed_ops)
Saquib Herman776dc922011-04-01 10:22:43 +0530577#define TWL6030_FIXED_LDO(label, offset, mVolts, num, turnon_delay) \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200578 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530579 0x0, TWL6030, twl6030fixed_ops)
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100580
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530581#define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800582 .base = offset, \
583 .id = num, \
584 .table_len = ARRAY_SIZE(label##_VSEL_table), \
585 .table = label##_VSEL_table, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200586 .delay = turnon_delay, \
587 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800588 .desc = { \
589 .name = #label, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530590 .id = TWL4030_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800591 .n_voltages = ARRAY_SIZE(label##_VSEL_table), \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530592 .ops = &twl4030ldo_ops, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800593 .type = REGULATOR_VOLTAGE, \
594 .owner = THIS_MODULE, \
595 }, \
596 }
597
Saquib Herman776dc922011-04-01 10:22:43 +0530598#define TWL6030_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts, num) { \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530599 .base = offset, \
600 .id = num, \
601 .min_mV = min_mVolts, \
602 .max_mV = max_mVolts, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530603 .desc = { \
604 .name = #label, \
605 .id = TWL6030_REG_##label, \
606 .n_voltages = (max_mVolts - min_mVolts)/100, \
607 .ops = &twl6030ldo_ops, \
608 .type = REGULATOR_VOLTAGE, \
609 .owner = THIS_MODULE, \
610 }, \
611 }
612
613
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200614#define TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, remap_conf, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530615 family, operations) { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800616 .base = offset, \
617 .id = num, \
618 .min_mV = mVolts, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200619 .delay = turnon_delay, \
620 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800621 .desc = { \
622 .name = #label, \
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100623 .id = family##_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800624 .n_voltages = 1, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530625 .ops = &operations, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800626 .type = REGULATOR_VOLTAGE, \
627 .owner = THIS_MODULE, \
628 }, \
629 }
630
Saquib Herman776dc922011-04-01 10:22:43 +0530631#define TWL6030_FIXED_RESOURCE(label, offset, num, turnon_delay) { \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530632 .base = offset, \
633 .id = num, \
634 .delay = turnon_delay, \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530635 .desc = { \
636 .name = #label, \
637 .id = TWL6030_REG_##label, \
638 .ops = &twl6030_fixed_resource, \
639 .type = REGULATOR_VOLTAGE, \
640 .owner = THIS_MODULE, \
641 }, \
642 }
643
David Brownellfa16a5c2009-02-08 10:37:06 -0800644/*
645 * We list regulators here if systems need some level of
646 * software control over them after boot.
647 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100648static struct twlreg_info twl_regs[] = {
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200649 TWL4030_ADJUSTABLE_LDO(VAUX1, 0x17, 1, 100, 0x08),
650 TWL4030_ADJUSTABLE_LDO(VAUX2_4030, 0x1b, 2, 100, 0x08),
651 TWL4030_ADJUSTABLE_LDO(VAUX2, 0x1b, 2, 100, 0x08),
652 TWL4030_ADJUSTABLE_LDO(VAUX3, 0x1f, 3, 100, 0x08),
653 TWL4030_ADJUSTABLE_LDO(VAUX4, 0x23, 4, 100, 0x08),
654 TWL4030_ADJUSTABLE_LDO(VMMC1, 0x27, 5, 100, 0x08),
655 TWL4030_ADJUSTABLE_LDO(VMMC2, 0x2b, 6, 100, 0x08),
656 TWL4030_ADJUSTABLE_LDO(VPLL1, 0x2f, 7, 100, 0x00),
657 TWL4030_ADJUSTABLE_LDO(VPLL2, 0x33, 8, 100, 0x08),
658 TWL4030_ADJUSTABLE_LDO(VSIM, 0x37, 9, 100, 0x00),
659 TWL4030_ADJUSTABLE_LDO(VDAC, 0x3b, 10, 100, 0x08),
660 TWL4030_FIXED_LDO(VINTANA1, 0x3f, 1500, 11, 100, 0x08),
661 TWL4030_ADJUSTABLE_LDO(VINTANA2, 0x43, 12, 100, 0x08),
662 TWL4030_FIXED_LDO(VINTDIG, 0x47, 1500, 13, 100, 0x08),
663 TWL4030_ADJUSTABLE_LDO(VIO, 0x4b, 14, 1000, 0x08),
664 TWL4030_ADJUSTABLE_LDO(VDD1, 0x55, 15, 1000, 0x08),
665 TWL4030_ADJUSTABLE_LDO(VDD2, 0x63, 16, 1000, 0x08),
666 TWL4030_FIXED_LDO(VUSB1V5, 0x71, 1500, 17, 100, 0x08),
667 TWL4030_FIXED_LDO(VUSB1V8, 0x74, 1800, 18, 100, 0x08),
668 TWL4030_FIXED_LDO(VUSB3V1, 0x77, 3100, 19, 150, 0x08),
David Brownellfa16a5c2009-02-08 10:37:06 -0800669 /* VUSBCP is managed *only* by the USB subchip */
Rajendra Nayak441a4502009-12-13 22:19:23 +0100670
671 /* 6030 REG with base as PMC Slave Misc : 0x0030 */
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200672 /* Turnon-delay and remap configuration values for 6030 are not
673 verified since the specification is not public */
Saquib Herman776dc922011-04-01 10:22:43 +0530674 TWL6030_ADJUSTABLE_LDO(VAUX1_6030, 0x54, 1000, 3300, 1),
675 TWL6030_ADJUSTABLE_LDO(VAUX2_6030, 0x58, 1000, 3300, 2),
676 TWL6030_ADJUSTABLE_LDO(VAUX3_6030, 0x5c, 1000, 3300, 3),
677 TWL6030_ADJUSTABLE_LDO(VMMC, 0x68, 1000, 3300, 4),
678 TWL6030_ADJUSTABLE_LDO(VPP, 0x6c, 1000, 3300, 5),
679 TWL6030_ADJUSTABLE_LDO(VUSIM, 0x74, 1000, 3300, 7),
680 TWL6030_FIXED_LDO(VANA, 0x50, 2100, 15, 0),
681 TWL6030_FIXED_LDO(VCXIO, 0x60, 1800, 16, 0),
682 TWL6030_FIXED_LDO(VDAC, 0x64, 1800, 17, 0),
683 TWL6030_FIXED_LDO(VUSB, 0x70, 3300, 18, 0),
684 TWL6030_FIXED_RESOURCE(CLK32KG, 0x8C, 48, 0),
David Brownellfa16a5c2009-02-08 10:37:06 -0800685};
686
Dmitry Torokhov24c29022010-02-23 23:38:01 -0800687static int __devinit twlreg_probe(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800688{
689 int i;
690 struct twlreg_info *info;
691 struct regulator_init_data *initdata;
692 struct regulation_constraints *c;
693 struct regulator_dev *rdev;
David Brownellfa16a5c2009-02-08 10:37:06 -0800694
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100695 for (i = 0, info = NULL; i < ARRAY_SIZE(twl_regs); i++) {
696 if (twl_regs[i].desc.id != pdev->id)
David Brownellfa16a5c2009-02-08 10:37:06 -0800697 continue;
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100698 info = twl_regs + i;
David Brownellfa16a5c2009-02-08 10:37:06 -0800699 break;
700 }
701 if (!info)
702 return -ENODEV;
703
704 initdata = pdev->dev.platform_data;
705 if (!initdata)
706 return -EINVAL;
707
708 /* Constrain board-specific capabilities according to what
709 * this driver and the chip itself can actually do.
710 */
711 c = &initdata->constraints;
David Brownellfa16a5c2009-02-08 10:37:06 -0800712 c->valid_modes_mask &= REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY;
713 c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE
714 | REGULATOR_CHANGE_MODE
715 | REGULATOR_CHANGE_STATUS;
Juha Keski-Saari205e5cd2009-12-16 15:27:56 +0200716 switch (pdev->id) {
717 case TWL4030_REG_VIO:
718 case TWL4030_REG_VDD1:
719 case TWL4030_REG_VDD2:
720 case TWL4030_REG_VPLL1:
721 case TWL4030_REG_VINTANA1:
722 case TWL4030_REG_VINTANA2:
723 case TWL4030_REG_VINTDIG:
724 c->always_on = true;
725 break;
726 default:
727 break;
728 }
David Brownellfa16a5c2009-02-08 10:37:06 -0800729
730 rdev = regulator_register(&info->desc, &pdev->dev, initdata, info);
731 if (IS_ERR(rdev)) {
732 dev_err(&pdev->dev, "can't register %s, %ld\n",
733 info->desc.name, PTR_ERR(rdev));
734 return PTR_ERR(rdev);
735 }
736 platform_set_drvdata(pdev, rdev);
737
Saquib Herman776dc922011-04-01 10:22:43 +0530738 if (twl_class_is_4030())
739 twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_REMAP,
Juha Keski-Saari30010fa2009-12-16 15:27:58 +0200740 info->remap);
741
David Brownellfa16a5c2009-02-08 10:37:06 -0800742 /* NOTE: many regulators support short-circuit IRQs (presentable
743 * as REGULATOR_OVER_CURRENT notifications?) configured via:
744 * - SC_CONFIG
745 * - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
746 * - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
747 * - IT_CONFIG
748 */
749
750 return 0;
751}
752
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100753static int __devexit twlreg_remove(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800754{
755 regulator_unregister(platform_get_drvdata(pdev));
756 return 0;
757}
758
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100759MODULE_ALIAS("platform:twl_reg");
David Brownellfa16a5c2009-02-08 10:37:06 -0800760
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100761static struct platform_driver twlreg_driver = {
762 .probe = twlreg_probe,
763 .remove = __devexit_p(twlreg_remove),
David Brownellfa16a5c2009-02-08 10:37:06 -0800764 /* NOTE: short name, to work around driver model truncation of
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100765 * "twl_regulator.12" (and friends) to "twl_regulator.1".
David Brownellfa16a5c2009-02-08 10:37:06 -0800766 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100767 .driver.name = "twl_reg",
David Brownellfa16a5c2009-02-08 10:37:06 -0800768 .driver.owner = THIS_MODULE,
769};
770
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100771static int __init twlreg_init(void)
David Brownellfa16a5c2009-02-08 10:37:06 -0800772{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100773 return platform_driver_register(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -0800774}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100775subsys_initcall(twlreg_init);
David Brownellfa16a5c2009-02-08 10:37:06 -0800776
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100777static void __exit twlreg_exit(void)
David Brownellfa16a5c2009-02-08 10:37:06 -0800778{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100779 platform_driver_unregister(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -0800780}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100781module_exit(twlreg_exit)
David Brownellfa16a5c2009-02-08 10:37:06 -0800782
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100783MODULE_DESCRIPTION("TWL regulator driver");
David Brownellfa16a5c2009-02-08 10:37:06 -0800784MODULE_LICENSE("GPL");