blob: 66e62a2cb244bb158c6413d9890f045ae9e9d2c8 [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>
Stephen Rothwell8f52a582012-08-16 15:16:05 +100013#include <linux/string.h>
14#include <linux/slab.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080015#include <linux/init.h>
16#include <linux/err.h>
17#include <linux/platform_device.h>
Rajendra Nayak2098e952012-02-28 15:09:11 +053018#include <linux/of.h>
19#include <linux/of_device.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080020#include <linux/regulator/driver.h>
21#include <linux/regulator/machine.h>
Rajendra Nayak2098e952012-02-28 15:09:11 +053022#include <linux/regulator/of_regulator.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010023#include <linux/i2c/twl.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080024
25
26/*
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +010027 * The TWL4030/TW5030/TPS659x0/TWL6030 family chips include power management, a
David Brownellfa16a5c2009-02-08 10:37:06 -080028 * USB OTG transceiver, an RTC, ADC, PWM, and lots more. Some versions
29 * include an audio codec, battery charger, and more voltage regulators.
30 * These chips are often used in OMAP-based systems.
31 *
32 * This driver implements software-based resource control for various
33 * voltage regulators. This is usually augmented with state machine
34 * based control.
35 */
36
37struct twlreg_info {
38 /* start of regulator's PM_RECEIVER control register bank */
39 u8 base;
40
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +010041 /* twl resource ID, for resource control state machine */
David Brownellfa16a5c2009-02-08 10:37:06 -080042 u8 id;
43
44 /* voltage in mV = table[VSEL]; table_len must be a power-of-two */
45 u8 table_len;
46 const u16 *table;
47
Juha Keski-Saari045f9722009-12-16 14:49:52 +020048 /* State REMAP default configuration */
49 u8 remap;
50
David Brownellfa16a5c2009-02-08 10:37:06 -080051 /* chip constraints on regulator behavior */
52 u16 min_mV;
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +053053 u16 max_mV;
David Brownellfa16a5c2009-02-08 10:37:06 -080054
Graeme Gregory4d94aee2011-05-22 21:21:23 +010055 u8 flags;
56
David Brownellfa16a5c2009-02-08 10:37:06 -080057 /* used by regulator core */
58 struct regulator_desc desc;
Graeme Gregory4d94aee2011-05-22 21:21:23 +010059
60 /* chip specific features */
61 unsigned long features;
Tero Kristo63bfff42012-02-16 12:27:52 +020062
63 /*
64 * optional override functions for voltage set/get
65 * these are currently only used for SMPS regulators
66 */
67 int (*get_voltage)(void *data);
68 int (*set_voltage)(void *data, int target_uV);
69
70 /* data passed from board for external get/set voltage */
71 void *data;
David Brownellfa16a5c2009-02-08 10:37:06 -080072};
73
74
75/* LDO control registers ... offset is from the base of its register bank.
76 * The first three registers of all power resource banks help hardware to
77 * manage the various resource groups.
78 */
Rajendra Nayak441a4502009-12-13 22:19:23 +010079/* Common offset in TWL4030/6030 */
David Brownellfa16a5c2009-02-08 10:37:06 -080080#define VREG_GRP 0
Rajendra Nayak441a4502009-12-13 22:19:23 +010081/* TWL4030 register offsets */
David Brownellfa16a5c2009-02-08 10:37:06 -080082#define VREG_TYPE 1
83#define VREG_REMAP 2
84#define VREG_DEDICATED 3 /* LDO control */
Tero Kristoba305e32011-11-28 16:53:19 +020085#define VREG_VOLTAGE_SMPS_4030 9
Rajendra Nayak441a4502009-12-13 22:19:23 +010086/* TWL6030 register offsets */
87#define VREG_TRANS 1
88#define VREG_STATE 2
89#define VREG_VOLTAGE 3
Graeme Gregory4d94aee2011-05-22 21:21:23 +010090#define VREG_VOLTAGE_SMPS 4
Rajendra Nayak441a4502009-12-13 22:19:23 +010091/* TWL6030 Misc register offsets */
92#define VREG_BC_ALL 1
93#define VREG_BC_REF 2
94#define VREG_BC_PROC 3
95#define VREG_BC_CLK_RST 4
David Brownellfa16a5c2009-02-08 10:37:06 -080096
Saquib Herman21657ebf2011-04-01 10:22:42 +053097/* TWL6030 LDO register values for CFG_STATE */
98#define TWL6030_CFG_STATE_OFF 0x00
99#define TWL6030_CFG_STATE_ON 0x01
Saquib Herman9a0244a2011-04-01 10:22:45 +0530100#define TWL6030_CFG_STATE_OFF2 0x02
101#define TWL6030_CFG_STATE_SLEEP 0x03
Saquib Herman21657ebf2011-04-01 10:22:42 +0530102#define TWL6030_CFG_STATE_GRP_SHIFT 5
Saquib Hermanb2456772011-04-01 10:22:44 +0530103#define TWL6030_CFG_STATE_APP_SHIFT 2
104#define TWL6030_CFG_STATE_APP_MASK (0x03 << TWL6030_CFG_STATE_APP_SHIFT)
105#define TWL6030_CFG_STATE_APP(v) (((v) & TWL6030_CFG_STATE_APP_MASK) >>\
106 TWL6030_CFG_STATE_APP_SHIFT)
Saquib Herman21657ebf2011-04-01 10:22:42 +0530107
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100108/* Flags for SMPS Voltage reading */
109#define SMPS_OFFSET_EN BIT(0)
110#define SMPS_EXTENDED_EN BIT(1)
111
112/* twl6025 SMPS EPROM values */
113#define TWL6030_SMPS_OFFSET 0xB0
114#define TWL6030_SMPS_MULT 0xB3
115#define SMPS_MULTOFFSET_SMPS4 BIT(0)
116#define SMPS_MULTOFFSET_VIO BIT(1)
117#define SMPS_MULTOFFSET_SMPS3 BIT(6)
118
David Brownellfa16a5c2009-02-08 10:37:06 -0800119static inline int
Rajendra Nayak441a4502009-12-13 22:19:23 +0100120twlreg_read(struct twlreg_info *info, unsigned slave_subgp, unsigned offset)
David Brownellfa16a5c2009-02-08 10:37:06 -0800121{
122 u8 value;
123 int status;
124
Rajendra Nayak441a4502009-12-13 22:19:23 +0100125 status = twl_i2c_read_u8(slave_subgp,
David Brownellfa16a5c2009-02-08 10:37:06 -0800126 &value, info->base + offset);
127 return (status < 0) ? status : value;
128}
129
130static inline int
Rajendra Nayak441a4502009-12-13 22:19:23 +0100131twlreg_write(struct twlreg_info *info, unsigned slave_subgp, unsigned offset,
132 u8 value)
David Brownellfa16a5c2009-02-08 10:37:06 -0800133{
Rajendra Nayak441a4502009-12-13 22:19:23 +0100134 return twl_i2c_write_u8(slave_subgp,
David Brownellfa16a5c2009-02-08 10:37:06 -0800135 value, info->base + offset);
136}
137
138/*----------------------------------------------------------------------*/
139
140/* generic power resource operations, which work on all regulators */
141
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100142static int twlreg_grp(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800143{
Rajendra Nayak441a4502009-12-13 22:19:23 +0100144 return twlreg_read(rdev_get_drvdata(rdev), TWL_MODULE_PM_RECEIVER,
145 VREG_GRP);
David Brownellfa16a5c2009-02-08 10:37:06 -0800146}
147
148/*
149 * Enable/disable regulators by joining/leaving the P1 (processor) group.
150 * We assume nobody else is updating the DEV_GRP registers.
151 */
Rajendra Nayak441a4502009-12-13 22:19:23 +0100152/* definition for 4030 family */
153#define P3_GRP_4030 BIT(7) /* "peripherals" */
154#define P2_GRP_4030 BIT(6) /* secondary processor, modem, etc */
155#define P1_GRP_4030 BIT(5) /* CPU/Linux */
156/* definition for 6030 family */
157#define P3_GRP_6030 BIT(2) /* secondary processor, modem, etc */
158#define P2_GRP_6030 BIT(1) /* "peripherals" */
159#define P1_GRP_6030 BIT(0) /* CPU/Linux */
David Brownellfa16a5c2009-02-08 10:37:06 -0800160
Saquib Hermanb2456772011-04-01 10:22:44 +0530161static int twl4030reg_is_enabled(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800162{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100163 int state = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800164
165 if (state < 0)
166 return state;
167
Saquib Hermanb2456772011-04-01 10:22:44 +0530168 return state & P1_GRP_4030;
169}
170
171static int twl6030reg_is_enabled(struct regulator_dev *rdev)
172{
173 struct twlreg_info *info = rdev_get_drvdata(rdev);
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100174 int grp = 0, val;
Saquib Hermanb2456772011-04-01 10:22:44 +0530175
Axel Linb6f476c2012-04-11 11:07:17 +0800176 if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS))) {
177 grp = twlreg_grp(rdev);
178 if (grp < 0)
179 return grp;
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100180 grp &= P1_GRP_6030;
Axel Linb6f476c2012-04-11 11:07:17 +0800181 } else {
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100182 grp = 1;
Axel Linb6f476c2012-04-11 11:07:17 +0800183 }
Saquib Hermanb2456772011-04-01 10:22:44 +0530184
185 val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);
186 val = TWL6030_CFG_STATE_APP(val);
187
188 return grp && (val == TWL6030_CFG_STATE_ON);
David Brownellfa16a5c2009-02-08 10:37:06 -0800189}
190
Balaji T Kf8c29402011-05-20 19:03:51 +0530191static int twl4030reg_enable(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800192{
193 struct twlreg_info *info = rdev_get_drvdata(rdev);
194 int grp;
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +0200195 int ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800196
Axel Linb6f476c2012-04-11 11:07:17 +0800197 grp = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800198 if (grp < 0)
199 return grp;
200
Balaji T Kf8c29402011-05-20 19:03:51 +0530201 grp |= P1_GRP_4030;
Rajendra Nayak441a4502009-12-13 22:19:23 +0100202
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +0200203 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
204
Balaji T Kf8c29402011-05-20 19:03:51 +0530205 return ret;
206}
207
208static int twl6030reg_enable(struct regulator_dev *rdev)
209{
210 struct twlreg_info *info = rdev_get_drvdata(rdev);
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100211 int grp = 0;
Balaji T Kf8c29402011-05-20 19:03:51 +0530212 int ret;
213
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100214 if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
Axel Linb6f476c2012-04-11 11:07:17 +0800215 grp = twlreg_grp(rdev);
Balaji T Kf8c29402011-05-20 19:03:51 +0530216 if (grp < 0)
217 return grp;
218
219 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
220 grp << TWL6030_CFG_STATE_GRP_SHIFT |
221 TWL6030_CFG_STATE_ON);
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +0200222 return ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800223}
224
Balaji T K0ff38972011-05-20 19:03:52 +0530225static int twl4030reg_disable(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800226{
227 struct twlreg_info *info = rdev_get_drvdata(rdev);
228 int grp;
Saquib Herman21657ebf2011-04-01 10:22:42 +0530229 int ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800230
Axel Linb6f476c2012-04-11 11:07:17 +0800231 grp = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800232 if (grp < 0)
233 return grp;
234
Balaji T K0ff38972011-05-20 19:03:52 +0530235 grp &= ~(P1_GRP_4030 | P2_GRP_4030 | P3_GRP_4030);
Rajendra Nayak441a4502009-12-13 22:19:23 +0100236
Saquib Herman21657ebf2011-04-01 10:22:42 +0530237 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
238
Balaji T K0ff38972011-05-20 19:03:52 +0530239 return ret;
240}
241
242static int twl6030reg_disable(struct regulator_dev *rdev)
243{
244 struct twlreg_info *info = rdev_get_drvdata(rdev);
245 int grp = 0;
246 int ret;
247
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100248 if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
249 grp = P1_GRP_6030 | P2_GRP_6030 | P3_GRP_6030;
Balaji T K0ff38972011-05-20 19:03:52 +0530250
251 /* For 6030, set the off state for all grps enabled */
252 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
253 (grp) << TWL6030_CFG_STATE_GRP_SHIFT |
254 TWL6030_CFG_STATE_OFF);
Saquib Herman21657ebf2011-04-01 10:22:42 +0530255
256 return ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800257}
258
Saquib Herman9a0244a2011-04-01 10:22:45 +0530259static int twl4030reg_get_status(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800260{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100261 int state = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800262
263 if (state < 0)
264 return state;
265 state &= 0x0f;
266
267 /* assume state != WARM_RESET; we'd not be running... */
268 if (!state)
269 return REGULATOR_STATUS_OFF;
270 return (state & BIT(3))
271 ? REGULATOR_STATUS_NORMAL
272 : REGULATOR_STATUS_STANDBY;
273}
274
Saquib Herman9a0244a2011-04-01 10:22:45 +0530275static int twl6030reg_get_status(struct regulator_dev *rdev)
276{
277 struct twlreg_info *info = rdev_get_drvdata(rdev);
278 int val;
279
280 val = twlreg_grp(rdev);
281 if (val < 0)
282 return val;
283
284 val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);
285
286 switch (TWL6030_CFG_STATE_APP(val)) {
287 case TWL6030_CFG_STATE_ON:
288 return REGULATOR_STATUS_NORMAL;
289
290 case TWL6030_CFG_STATE_SLEEP:
291 return REGULATOR_STATUS_STANDBY;
292
293 case TWL6030_CFG_STATE_OFF:
294 case TWL6030_CFG_STATE_OFF2:
295 default:
296 break;
297 }
298
299 return REGULATOR_STATUS_OFF;
300}
301
Saquib Herman1a399622011-04-01 10:22:46 +0530302static int twl4030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
David Brownellfa16a5c2009-02-08 10:37:06 -0800303{
304 struct twlreg_info *info = rdev_get_drvdata(rdev);
305 unsigned message;
306 int status;
307
308 /* We can only set the mode through state machine commands... */
309 switch (mode) {
310 case REGULATOR_MODE_NORMAL:
311 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_ACTIVE);
312 break;
313 case REGULATOR_MODE_STANDBY:
314 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_SLEEP);
315 break;
316 default:
317 return -EINVAL;
318 }
319
320 /* Ensure the resource is associated with some group */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100321 status = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800322 if (status < 0)
323 return status;
Rajendra Nayak441a4502009-12-13 22:19:23 +0100324 if (!(status & (P3_GRP_4030 | P2_GRP_4030 | P1_GRP_4030)))
David Brownellfa16a5c2009-02-08 10:37:06 -0800325 return -EACCES;
326
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100327 status = twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
Axel Linb9e26bc2010-10-22 16:38:22 +0800328 message >> 8, TWL4030_PM_MASTER_PB_WORD_MSB);
329 if (status < 0)
David Brownellfa16a5c2009-02-08 10:37:06 -0800330 return status;
331
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100332 return twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
Axel Linb9e26bc2010-10-22 16:38:22 +0800333 message & 0xff, TWL4030_PM_MASTER_PB_WORD_LSB);
David Brownellfa16a5c2009-02-08 10:37:06 -0800334}
335
Saquib Herman1a399622011-04-01 10:22:46 +0530336static int twl6030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
337{
338 struct twlreg_info *info = rdev_get_drvdata(rdev);
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100339 int grp = 0;
Saquib Herman1a399622011-04-01 10:22:46 +0530340 int val;
341
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100342 if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
Axel Linb6f476c2012-04-11 11:07:17 +0800343 grp = twlreg_grp(rdev);
Saquib Herman1a399622011-04-01 10:22:46 +0530344
345 if (grp < 0)
346 return grp;
347
348 /* Compose the state register settings */
349 val = grp << TWL6030_CFG_STATE_GRP_SHIFT;
350 /* We can only set the mode through state machine commands... */
351 switch (mode) {
352 case REGULATOR_MODE_NORMAL:
353 val |= TWL6030_CFG_STATE_ON;
354 break;
355 case REGULATOR_MODE_STANDBY:
356 val |= TWL6030_CFG_STATE_SLEEP;
357 break;
358
359 default:
360 return -EINVAL;
361 }
362
363 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE, val);
364}
365
David Brownellfa16a5c2009-02-08 10:37:06 -0800366/*----------------------------------------------------------------------*/
367
368/*
369 * Support for adjustable-voltage LDOs uses a four bit (or less) voltage
370 * select field in its control register. We use tables indexed by VSEL
371 * to record voltages in milliVolts. (Accuracy is about three percent.)
372 *
373 * Note that VSEL values for VAUX2 changed in twl5030 and newer silicon;
374 * currently handled by listing two slightly different VAUX2 regulators,
375 * only one of which will be configured.
376 *
377 * VSEL values documented as "TI cannot support these values" are flagged
378 * in these tables as UNSUP() values; we normally won't assign them.
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200379 *
380 * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported.
381 * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting.
David Brownellfa16a5c2009-02-08 10:37:06 -0800382 */
David Brownellfa16a5c2009-02-08 10:37:06 -0800383#define UNSUP_MASK 0x8000
David Brownellfa16a5c2009-02-08 10:37:06 -0800384
385#define UNSUP(x) (UNSUP_MASK | (x))
NeilBrown411a2df2012-05-09 05:44:00 +1000386#define IS_UNSUP(info, x) \
387 ((UNSUP_MASK & (x)) && \
388 !((info)->features & TWL4030_ALLOW_UNSUPPORTED))
David Brownellfa16a5c2009-02-08 10:37:06 -0800389#define LDO_MV(x) (~UNSUP_MASK & (x))
390
391
392static const u16 VAUX1_VSEL_table[] = {
393 UNSUP(1500), UNSUP(1800), 2500, 2800,
394 3000, 3000, 3000, 3000,
395};
396static const u16 VAUX2_4030_VSEL_table[] = {
397 UNSUP(1000), UNSUP(1000), UNSUP(1200), 1300,
398 1500, 1800, UNSUP(1850), 2500,
399 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
400 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
401};
402static const u16 VAUX2_VSEL_table[] = {
403 1700, 1700, 1900, 1300,
404 1500, 1800, 2000, 2500,
405 2100, 2800, 2200, 2300,
406 2400, 2400, 2400, 2400,
407};
408static const u16 VAUX3_VSEL_table[] = {
409 1500, 1800, 2500, 2800,
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200410 3000, 3000, 3000, 3000,
David Brownellfa16a5c2009-02-08 10:37:06 -0800411};
412static const u16 VAUX4_VSEL_table[] = {
413 700, 1000, 1200, UNSUP(1300),
414 1500, 1800, UNSUP(1850), 2500,
David Brownell1897e742009-03-10 11:51:15 -0800415 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
416 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
David Brownellfa16a5c2009-02-08 10:37:06 -0800417};
418static const u16 VMMC1_VSEL_table[] = {
419 1850, 2850, 3000, 3150,
420};
421static const u16 VMMC2_VSEL_table[] = {
422 UNSUP(1000), UNSUP(1000), UNSUP(1200), UNSUP(1300),
423 UNSUP(1500), UNSUP(1800), 1850, UNSUP(2500),
424 2600, 2800, 2850, 3000,
425 3150, 3150, 3150, 3150,
426};
427static const u16 VPLL1_VSEL_table[] = {
428 1000, 1200, 1300, 1800,
429 UNSUP(2800), UNSUP(3000), UNSUP(3000), UNSUP(3000),
430};
431static const u16 VPLL2_VSEL_table[] = {
432 700, 1000, 1200, 1300,
433 UNSUP(1500), 1800, UNSUP(1850), UNSUP(2500),
434 UNSUP(2600), UNSUP(2800), UNSUP(2850), UNSUP(3000),
435 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
436};
437static const u16 VSIM_VSEL_table[] = {
438 UNSUP(1000), UNSUP(1200), UNSUP(1300), 1800,
439 2800, 3000, 3000, 3000,
440};
441static const u16 VDAC_VSEL_table[] = {
442 1200, 1300, 1800, 1800,
443};
Juha Keski-Saari07fc4932009-12-16 15:27:55 +0200444static const u16 VDD1_VSEL_table[] = {
445 800, 1450,
446};
447static const u16 VDD2_VSEL_table[] = {
448 800, 1450, 1500,
449};
450static const u16 VIO_VSEL_table[] = {
451 1800, 1850,
452};
453static const u16 VINTANA2_VSEL_table[] = {
454 2500, 2750,
455};
David Brownellfa16a5c2009-02-08 10:37:06 -0800456
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530457static int twl4030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800458{
459 struct twlreg_info *info = rdev_get_drvdata(rdev);
460 int mV = info->table[index];
461
NeilBrown411a2df2012-05-09 05:44:00 +1000462 return IS_UNSUP(info, mV) ? 0 : (LDO_MV(mV) * 1000);
David Brownell66b659e2009-02-26 11:50:14 -0800463}
464
David Brownellfa16a5c2009-02-08 10:37:06 -0800465static int
Axel Lindd16b1f2012-03-26 09:30:06 +0800466twl4030ldo_set_voltage_sel(struct regulator_dev *rdev, unsigned selector)
David Brownellfa16a5c2009-02-08 10:37:06 -0800467{
468 struct twlreg_info *info = rdev_get_drvdata(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800469
Axel Lindd16b1f2012-03-26 09:30:06 +0800470 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE,
471 selector);
David Brownellfa16a5c2009-02-08 10:37:06 -0800472}
473
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530474static int twl4030ldo_get_voltage(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800475{
476 struct twlreg_info *info = rdev_get_drvdata(rdev);
Rajendra Nayak441a4502009-12-13 22:19:23 +0100477 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
478 VREG_VOLTAGE);
David Brownellfa16a5c2009-02-08 10:37:06 -0800479
480 if (vsel < 0)
481 return vsel;
482
483 vsel &= info->table_len - 1;
484 return LDO_MV(info->table[vsel]) * 1000;
485}
486
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530487static struct regulator_ops twl4030ldo_ops = {
488 .list_voltage = twl4030ldo_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800489
Axel Lindd16b1f2012-03-26 09:30:06 +0800490 .set_voltage_sel = twl4030ldo_set_voltage_sel,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530491 .get_voltage = twl4030ldo_get_voltage,
492
Balaji T Kf8c29402011-05-20 19:03:51 +0530493 .enable = twl4030reg_enable,
Balaji T K0ff38972011-05-20 19:03:52 +0530494 .disable = twl4030reg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530495 .is_enabled = twl4030reg_is_enabled,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530496
Saquib Herman1a399622011-04-01 10:22:46 +0530497 .set_mode = twl4030reg_set_mode,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530498
Saquib Herman9a0244a2011-04-01 10:22:45 +0530499 .get_status = twl4030reg_get_status,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530500};
501
Tero Kristoba305e32011-11-28 16:53:19 +0200502static int
503twl4030smps_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
504 unsigned *selector)
505{
506 struct twlreg_info *info = rdev_get_drvdata(rdev);
507 int vsel = DIV_ROUND_UP(min_uV - 600000, 12500);
508
Tero Kristo63bfff42012-02-16 12:27:52 +0200509 if (info->set_voltage) {
510 return info->set_voltage(info->data, min_uV);
511 } else {
512 twlreg_write(info, TWL_MODULE_PM_RECEIVER,
513 VREG_VOLTAGE_SMPS_4030, vsel);
514 }
515
Tero Kristoba305e32011-11-28 16:53:19 +0200516 return 0;
517}
518
519static int twl4030smps_get_voltage(struct regulator_dev *rdev)
520{
521 struct twlreg_info *info = rdev_get_drvdata(rdev);
Tero Kristo63bfff42012-02-16 12:27:52 +0200522 int vsel;
523
524 if (info->get_voltage)
525 return info->get_voltage(info->data);
526
527 vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
Tero Kristoba305e32011-11-28 16:53:19 +0200528 VREG_VOLTAGE_SMPS_4030);
529
530 return vsel * 12500 + 600000;
531}
532
533static struct regulator_ops twl4030smps_ops = {
534 .set_voltage = twl4030smps_set_voltage,
535 .get_voltage = twl4030smps_get_voltage,
536};
537
Tero Kristo34a38442012-02-28 15:09:10 +0530538static int twl6030coresmps_set_voltage(struct regulator_dev *rdev, int min_uV,
539 int max_uV, unsigned *selector)
540{
541 struct twlreg_info *info = rdev_get_drvdata(rdev);
542
543 if (info->set_voltage)
544 return info->set_voltage(info->data, min_uV);
545
546 return -ENODEV;
547}
548
549static int twl6030coresmps_get_voltage(struct regulator_dev *rdev)
550{
551 struct twlreg_info *info = rdev_get_drvdata(rdev);
552
553 if (info->get_voltage)
554 return info->get_voltage(info->data);
555
556 return -ENODEV;
557}
558
559static struct regulator_ops twl6030coresmps_ops = {
560 .set_voltage = twl6030coresmps_set_voltage,
561 .get_voltage = twl6030coresmps_get_voltage,
562};
563
Axel Linc6a717c2012-07-16 18:31:10 +0800564static int twl6030ldo_list_voltage(struct regulator_dev *rdev, unsigned sel)
565{
566 struct twlreg_info *info = rdev_get_drvdata(rdev);
567
568 switch (sel) {
569 case 0:
570 return 0;
571 case 1 ... 24:
572 /* Linear mapping from 00000001 to 00011000:
573 * Absolute voltage value = 1.0 V + 0.1 V × (sel – 00000001)
574 */
575 return (info->min_mV + 100 * (sel - 1)) * 1000;
576 case 25 ... 30:
577 return -EINVAL;
578 case 31:
579 return 2750000;
580 default:
581 return -EINVAL;
582 }
583}
584
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530585static int
Axel Lin4bcb9f42012-07-09 11:26:28 +0800586twl6030ldo_set_voltage_sel(struct regulator_dev *rdev, unsigned selector)
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530587{
588 struct twlreg_info *info = rdev_get_drvdata(rdev);
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530589
Axel Lin4bcb9f42012-07-09 11:26:28 +0800590 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE,
591 selector);
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530592}
593
Axel Lin4bcb9f42012-07-09 11:26:28 +0800594static int twl6030ldo_get_voltage_sel(struct regulator_dev *rdev)
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530595{
596 struct twlreg_info *info = rdev_get_drvdata(rdev);
Axel Lina3cb80f2012-07-09 11:22:31 +0800597 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE);
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530598
Axel Lin4bcb9f42012-07-09 11:26:28 +0800599 return vsel;
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530600}
601
602static struct regulator_ops twl6030ldo_ops = {
Axel Linc6a717c2012-07-16 18:31:10 +0800603 .list_voltage = twl6030ldo_list_voltage,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530604
Axel Lin4bcb9f42012-07-09 11:26:28 +0800605 .set_voltage_sel = twl6030ldo_set_voltage_sel,
606 .get_voltage_sel = twl6030ldo_get_voltage_sel,
David Brownellfa16a5c2009-02-08 10:37:06 -0800607
Balaji T Kf8c29402011-05-20 19:03:51 +0530608 .enable = twl6030reg_enable,
Balaji T K0ff38972011-05-20 19:03:52 +0530609 .disable = twl6030reg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530610 .is_enabled = twl6030reg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800611
Saquib Herman1a399622011-04-01 10:22:46 +0530612 .set_mode = twl6030reg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800613
Saquib Herman9a0244a2011-04-01 10:22:45 +0530614 .get_status = twl6030reg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800615};
616
617/*----------------------------------------------------------------------*/
618
619/*
620 * Fixed voltage LDOs don't have a VSEL field to update.
621 */
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100622static int twlfixed_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800623{
624 struct twlreg_info *info = rdev_get_drvdata(rdev);
625
626 return info->min_mV * 1000;
627}
628
Saquib Hermanb2456772011-04-01 10:22:44 +0530629static struct regulator_ops twl4030fixed_ops = {
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100630 .list_voltage = twlfixed_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800631
Balaji T Kf8c29402011-05-20 19:03:51 +0530632 .enable = twl4030reg_enable,
Balaji T K0ff38972011-05-20 19:03:52 +0530633 .disable = twl4030reg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530634 .is_enabled = twl4030reg_is_enabled,
635
Saquib Herman1a399622011-04-01 10:22:46 +0530636 .set_mode = twl4030reg_set_mode,
Saquib Hermanb2456772011-04-01 10:22:44 +0530637
Saquib Herman9a0244a2011-04-01 10:22:45 +0530638 .get_status = twl4030reg_get_status,
Saquib Hermanb2456772011-04-01 10:22:44 +0530639};
640
641static struct regulator_ops twl6030fixed_ops = {
642 .list_voltage = twlfixed_list_voltage,
643
Balaji T Kf8c29402011-05-20 19:03:51 +0530644 .enable = twl6030reg_enable,
Balaji T K0ff38972011-05-20 19:03:52 +0530645 .disable = twl6030reg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530646 .is_enabled = twl6030reg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800647
Saquib Herman1a399622011-04-01 10:22:46 +0530648 .set_mode = twl6030reg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800649
Saquib Herman9a0244a2011-04-01 10:22:45 +0530650 .get_status = twl6030reg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800651};
652
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100653/*
654 * SMPS status and control
655 */
656
657static int twl6030smps_list_voltage(struct regulator_dev *rdev, unsigned index)
658{
659 struct twlreg_info *info = rdev_get_drvdata(rdev);
660
661 int voltage = 0;
662
663 switch (info->flags) {
664 case SMPS_OFFSET_EN:
665 voltage = 100000;
666 /* fall through */
667 case 0:
668 switch (index) {
669 case 0:
670 voltage = 0;
671 break;
672 case 58:
673 voltage = 1350 * 1000;
674 break;
675 case 59:
676 voltage = 1500 * 1000;
677 break;
678 case 60:
679 voltage = 1800 * 1000;
680 break;
681 case 61:
682 voltage = 1900 * 1000;
683 break;
684 case 62:
685 voltage = 2100 * 1000;
686 break;
687 default:
688 voltage += (600000 + (12500 * (index - 1)));
689 }
690 break;
691 case SMPS_EXTENDED_EN:
692 switch (index) {
693 case 0:
694 voltage = 0;
695 break;
696 case 58:
697 voltage = 2084 * 1000;
698 break;
699 case 59:
700 voltage = 2315 * 1000;
701 break;
702 case 60:
703 voltage = 2778 * 1000;
704 break;
705 case 61:
706 voltage = 2932 * 1000;
707 break;
708 case 62:
709 voltage = 3241 * 1000;
710 break;
711 default:
712 voltage = (1852000 + (38600 * (index - 1)));
713 }
714 break;
715 case SMPS_OFFSET_EN | SMPS_EXTENDED_EN:
716 switch (index) {
717 case 0:
718 voltage = 0;
719 break;
720 case 58:
721 voltage = 4167 * 1000;
722 break;
723 case 59:
724 voltage = 2315 * 1000;
725 break;
726 case 60:
727 voltage = 2778 * 1000;
728 break;
729 case 61:
730 voltage = 2932 * 1000;
731 break;
732 case 62:
733 voltage = 3241 * 1000;
734 break;
735 default:
736 voltage = (2161000 + (38600 * (index - 1)));
737 }
738 break;
739 }
740
741 return voltage;
742}
743
Axel Lin38f8f432012-07-14 13:41:23 +0800744static int twl6030smps_map_voltage(struct regulator_dev *rdev, int min_uV,
745 int max_uV)
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100746{
Axel Lin38f8f432012-07-14 13:41:23 +0800747 struct twlreg_info *info = rdev_get_drvdata(rdev);
748 int vsel = 0;
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100749
750 switch (info->flags) {
751 case 0:
752 if (min_uV == 0)
753 vsel = 0;
Laxman Dewangana33b6e52012-02-03 12:54:38 +0530754 else if ((min_uV >= 600000) && (min_uV <= 1300000)) {
Axel Lin268a1642012-04-09 23:35:10 +0800755 vsel = DIV_ROUND_UP(min_uV - 600000, 12500);
Axel Lin0cb2f122012-04-10 23:07:52 +0800756 vsel++;
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100757 }
758 /* Values 1..57 for vsel are linear and can be calculated
759 * values 58..62 are non linear.
760 */
Axel Lin78292f42012-07-14 13:37:13 +0800761 else if ((min_uV > 1900000) && (min_uV <= 2100000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100762 vsel = 62;
Axel Lin78292f42012-07-14 13:37:13 +0800763 else if ((min_uV > 1800000) && (min_uV <= 1900000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100764 vsel = 61;
Axel Lin78292f42012-07-14 13:37:13 +0800765 else if ((min_uV > 1500000) && (min_uV <= 1800000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100766 vsel = 60;
Axel Lin78292f42012-07-14 13:37:13 +0800767 else if ((min_uV > 1350000) && (min_uV <= 1500000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100768 vsel = 59;
Axel Lin78292f42012-07-14 13:37:13 +0800769 else if ((min_uV > 1300000) && (min_uV <= 1350000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100770 vsel = 58;
771 else
772 return -EINVAL;
773 break;
774 case SMPS_OFFSET_EN:
775 if (min_uV == 0)
776 vsel = 0;
Laxman Dewangana33b6e52012-02-03 12:54:38 +0530777 else if ((min_uV >= 700000) && (min_uV <= 1420000)) {
Axel Lin268a1642012-04-09 23:35:10 +0800778 vsel = DIV_ROUND_UP(min_uV - 700000, 12500);
Axel Lin0cb2f122012-04-10 23:07:52 +0800779 vsel++;
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100780 }
781 /* Values 1..57 for vsel are linear and can be calculated
782 * values 58..62 are non linear.
783 */
Axel Lin78292f42012-07-14 13:37:13 +0800784 else if ((min_uV > 1900000) && (min_uV <= 2100000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100785 vsel = 62;
Axel Lin78292f42012-07-14 13:37:13 +0800786 else if ((min_uV > 1800000) && (min_uV <= 1900000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100787 vsel = 61;
Axel Lin78292f42012-07-14 13:37:13 +0800788 else if ((min_uV > 1350000) && (min_uV <= 1800000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100789 vsel = 60;
Axel Lin78292f42012-07-14 13:37:13 +0800790 else if ((min_uV > 1350000) && (min_uV <= 1500000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100791 vsel = 59;
Axel Lin78292f42012-07-14 13:37:13 +0800792 else if ((min_uV > 1300000) && (min_uV <= 1350000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100793 vsel = 58;
794 else
795 return -EINVAL;
796 break;
797 case SMPS_EXTENDED_EN:
Axel Lin0cb2f122012-04-10 23:07:52 +0800798 if (min_uV == 0) {
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100799 vsel = 0;
Axel Lin0cb2f122012-04-10 23:07:52 +0800800 } else if ((min_uV >= 1852000) && (max_uV <= 4013600)) {
Axel Lin268a1642012-04-09 23:35:10 +0800801 vsel = DIV_ROUND_UP(min_uV - 1852000, 38600);
Axel Lin0cb2f122012-04-10 23:07:52 +0800802 vsel++;
803 }
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100804 break;
805 case SMPS_OFFSET_EN|SMPS_EXTENDED_EN:
Axel Lin0cb2f122012-04-10 23:07:52 +0800806 if (min_uV == 0) {
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100807 vsel = 0;
Axel Lin78292f42012-07-14 13:37:13 +0800808 } else if ((min_uV >= 2161000) && (min_uV <= 4321000)) {
Axel Lin268a1642012-04-09 23:35:10 +0800809 vsel = DIV_ROUND_UP(min_uV - 2161000, 38600);
Axel Lin0cb2f122012-04-10 23:07:52 +0800810 vsel++;
811 }
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100812 break;
813 }
814
Axel Lin38f8f432012-07-14 13:41:23 +0800815 return vsel;
816}
Axel Lin78292f42012-07-14 13:37:13 +0800817
Axel Lin38f8f432012-07-14 13:41:23 +0800818static int twl6030smps_set_voltage_sel(struct regulator_dev *rdev,
819 unsigned int selector)
820{
821 struct twlreg_info *info = rdev_get_drvdata(rdev);
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100822
823 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE_SMPS,
Axel Lin38f8f432012-07-14 13:41:23 +0800824 selector);
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100825}
826
827static int twl6030smps_get_voltage_sel(struct regulator_dev *rdev)
828{
829 struct twlreg_info *info = rdev_get_drvdata(rdev);
830
831 return twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE_SMPS);
832}
833
834static struct regulator_ops twlsmps_ops = {
835 .list_voltage = twl6030smps_list_voltage,
Axel Lin38f8f432012-07-14 13:41:23 +0800836 .map_voltage = twl6030smps_map_voltage,
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100837
Axel Lin38f8f432012-07-14 13:41:23 +0800838 .set_voltage_sel = twl6030smps_set_voltage_sel,
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100839 .get_voltage_sel = twl6030smps_get_voltage_sel,
840
841 .enable = twl6030reg_enable,
842 .disable = twl6030reg_disable,
843 .is_enabled = twl6030reg_is_enabled,
844
845 .set_mode = twl6030reg_set_mode,
846
847 .get_status = twl6030reg_get_status,
848};
849
David Brownellfa16a5c2009-02-08 10:37:06 -0800850/*----------------------------------------------------------------------*/
851
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200852#define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
853 remap_conf) \
854 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530855 remap_conf, TWL4030, twl4030fixed_ops)
Ambresh Kaf8b2442011-07-09 19:02:21 -0700856#define TWL6030_FIXED_LDO(label, offset, mVolts, turnon_delay) \
857 TWL_FIXED_LDO(label, offset, mVolts, 0x0, turnon_delay, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530858 0x0, TWL6030, twl6030fixed_ops)
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100859
Rajendra Nayak2098e952012-02-28 15:09:11 +0530860#define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000861static const struct twlreg_info TWL4030_INFO_##label = { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800862 .base = offset, \
863 .id = num, \
864 .table_len = ARRAY_SIZE(label##_VSEL_table), \
865 .table = label##_VSEL_table, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200866 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800867 .desc = { \
868 .name = #label, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530869 .id = TWL4030_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800870 .n_voltages = ARRAY_SIZE(label##_VSEL_table), \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530871 .ops = &twl4030ldo_ops, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800872 .type = REGULATOR_VOLTAGE, \
873 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800874 .enable_time = turnon_delay, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800875 }, \
876 }
877
Tero Kristoba305e32011-11-28 16:53:19 +0200878#define TWL4030_ADJUSTABLE_SMPS(label, offset, num, turnon_delay, remap_conf) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000879static const struct twlreg_info TWL4030_INFO_##label = { \
Tero Kristoba305e32011-11-28 16:53:19 +0200880 .base = offset, \
881 .id = num, \
Tero Kristoba305e32011-11-28 16:53:19 +0200882 .remap = remap_conf, \
883 .desc = { \
884 .name = #label, \
885 .id = TWL4030_REG_##label, \
886 .ops = &twl4030smps_ops, \
887 .type = REGULATOR_VOLTAGE, \
888 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800889 .enable_time = turnon_delay, \
Tero Kristoba305e32011-11-28 16:53:19 +0200890 }, \
891 }
892
Rajendra Nayak2098e952012-02-28 15:09:11 +0530893#define TWL6030_ADJUSTABLE_SMPS(label) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000894static const struct twlreg_info TWL6030_INFO_##label = { \
Tero Kristo34a38442012-02-28 15:09:10 +0530895 .desc = { \
896 .name = #label, \
897 .id = TWL6030_REG_##label, \
898 .ops = &twl6030coresmps_ops, \
899 .type = REGULATOR_VOLTAGE, \
900 .owner = THIS_MODULE, \
901 }, \
902 }
903
Rajendra Nayak2098e952012-02-28 15:09:11 +0530904#define TWL6030_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000905static const struct twlreg_info TWL6030_INFO_##label = { \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530906 .base = offset, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530907 .min_mV = min_mVolts, \
908 .max_mV = max_mVolts, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530909 .desc = { \
910 .name = #label, \
911 .id = TWL6030_REG_##label, \
Axel Linc6a717c2012-07-16 18:31:10 +0800912 .n_voltages = 32, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530913 .ops = &twl6030ldo_ops, \
914 .type = REGULATOR_VOLTAGE, \
915 .owner = THIS_MODULE, \
916 }, \
917 }
918
Rajendra Nayak2098e952012-02-28 15:09:11 +0530919#define TWL6025_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000920static const struct twlreg_info TWL6025_INFO_##label = { \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100921 .base = offset, \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100922 .min_mV = min_mVolts, \
923 .max_mV = max_mVolts, \
924 .desc = { \
925 .name = #label, \
926 .id = TWL6025_REG_##label, \
Axel Linc6a717c2012-07-16 18:31:10 +0800927 .n_voltages = 32, \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100928 .ops = &twl6030ldo_ops, \
929 .type = REGULATOR_VOLTAGE, \
930 .owner = THIS_MODULE, \
931 }, \
932 }
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530933
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200934#define TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, remap_conf, \
Rajendra Nayak2098e952012-02-28 15:09:11 +0530935 family, operations) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000936static const struct twlreg_info TWLFIXED_INFO_##label = { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800937 .base = offset, \
938 .id = num, \
939 .min_mV = mVolts, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200940 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800941 .desc = { \
942 .name = #label, \
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100943 .id = family##_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800944 .n_voltages = 1, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530945 .ops = &operations, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800946 .type = REGULATOR_VOLTAGE, \
947 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800948 .enable_time = turnon_delay, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800949 }, \
950 }
951
Rajendra Nayak2098e952012-02-28 15:09:11 +0530952#define TWL6030_FIXED_RESOURCE(label, offset, turnon_delay) \
953static struct twlreg_info TWLRES_INFO_##label = { \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530954 .base = offset, \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530955 .desc = { \
956 .name = #label, \
957 .id = TWL6030_REG_##label, \
958 .ops = &twl6030_fixed_resource, \
959 .type = REGULATOR_VOLTAGE, \
960 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800961 .enable_time = turnon_delay, \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530962 }, \
963 }
964
Rajendra Nayak2098e952012-02-28 15:09:11 +0530965#define TWL6025_ADJUSTABLE_SMPS(label, offset) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000966static const struct twlreg_info TWLSMPS_INFO_##label = { \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100967 .base = offset, \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100968 .min_mV = 600, \
969 .max_mV = 2100, \
970 .desc = { \
971 .name = #label, \
972 .id = TWL6025_REG_##label, \
973 .n_voltages = 63, \
974 .ops = &twlsmps_ops, \
975 .type = REGULATOR_VOLTAGE, \
976 .owner = THIS_MODULE, \
977 }, \
978 }
979
David Brownellfa16a5c2009-02-08 10:37:06 -0800980/*
981 * We list regulators here if systems need some level of
982 * software control over them after boot.
983 */
Rajendra Nayak2098e952012-02-28 15:09:11 +0530984TWL4030_ADJUSTABLE_LDO(VAUX1, 0x17, 1, 100, 0x08);
985TWL4030_ADJUSTABLE_LDO(VAUX2_4030, 0x1b, 2, 100, 0x08);
986TWL4030_ADJUSTABLE_LDO(VAUX2, 0x1b, 2, 100, 0x08);
987TWL4030_ADJUSTABLE_LDO(VAUX3, 0x1f, 3, 100, 0x08);
988TWL4030_ADJUSTABLE_LDO(VAUX4, 0x23, 4, 100, 0x08);
989TWL4030_ADJUSTABLE_LDO(VMMC1, 0x27, 5, 100, 0x08);
990TWL4030_ADJUSTABLE_LDO(VMMC2, 0x2b, 6, 100, 0x08);
991TWL4030_ADJUSTABLE_LDO(VPLL1, 0x2f, 7, 100, 0x00);
992TWL4030_ADJUSTABLE_LDO(VPLL2, 0x33, 8, 100, 0x08);
993TWL4030_ADJUSTABLE_LDO(VSIM, 0x37, 9, 100, 0x00);
994TWL4030_ADJUSTABLE_LDO(VDAC, 0x3b, 10, 100, 0x08);
995TWL4030_ADJUSTABLE_LDO(VINTANA2, 0x43, 12, 100, 0x08);
996TWL4030_ADJUSTABLE_LDO(VIO, 0x4b, 14, 1000, 0x08);
997TWL4030_ADJUSTABLE_SMPS(VDD1, 0x55, 15, 1000, 0x08);
998TWL4030_ADJUSTABLE_SMPS(VDD2, 0x63, 16, 1000, 0x08);
999/* VUSBCP is managed *only* by the USB subchip */
1000/* 6030 REG with base as PMC Slave Misc : 0x0030 */
1001/* Turnon-delay and remap configuration values for 6030 are not
1002 verified since the specification is not public */
1003TWL6030_ADJUSTABLE_SMPS(VDD1);
1004TWL6030_ADJUSTABLE_SMPS(VDD2);
1005TWL6030_ADJUSTABLE_SMPS(VDD3);
1006TWL6030_ADJUSTABLE_LDO(VAUX1_6030, 0x54, 1000, 3300);
1007TWL6030_ADJUSTABLE_LDO(VAUX2_6030, 0x58, 1000, 3300);
1008TWL6030_ADJUSTABLE_LDO(VAUX3_6030, 0x5c, 1000, 3300);
1009TWL6030_ADJUSTABLE_LDO(VMMC, 0x68, 1000, 3300);
1010TWL6030_ADJUSTABLE_LDO(VPP, 0x6c, 1000, 3300);
1011TWL6030_ADJUSTABLE_LDO(VUSIM, 0x74, 1000, 3300);
1012/* 6025 are renamed compared to 6030 versions */
1013TWL6025_ADJUSTABLE_LDO(LDO2, 0x54, 1000, 3300);
1014TWL6025_ADJUSTABLE_LDO(LDO4, 0x58, 1000, 3300);
1015TWL6025_ADJUSTABLE_LDO(LDO3, 0x5c, 1000, 3300);
1016TWL6025_ADJUSTABLE_LDO(LDO5, 0x68, 1000, 3300);
1017TWL6025_ADJUSTABLE_LDO(LDO1, 0x6c, 1000, 3300);
1018TWL6025_ADJUSTABLE_LDO(LDO7, 0x74, 1000, 3300);
1019TWL6025_ADJUSTABLE_LDO(LDO6, 0x60, 1000, 3300);
1020TWL6025_ADJUSTABLE_LDO(LDOLN, 0x64, 1000, 3300);
1021TWL6025_ADJUSTABLE_LDO(LDOUSB, 0x70, 1000, 3300);
Aaro Koskinen908d6d52012-08-15 01:10:04 +03001022TWL4030_FIXED_LDO(VINTANA1, 0x3f, 1500, 11, 100, 0x08);
Rajendra Nayak2098e952012-02-28 15:09:11 +05301023TWL4030_FIXED_LDO(VINTDIG, 0x47, 1500, 13, 100, 0x08);
1024TWL4030_FIXED_LDO(VUSB1V5, 0x71, 1500, 17, 100, 0x08);
1025TWL4030_FIXED_LDO(VUSB1V8, 0x74, 1800, 18, 100, 0x08);
1026TWL4030_FIXED_LDO(VUSB3V1, 0x77, 3100, 19, 150, 0x08);
1027TWL6030_FIXED_LDO(VANA, 0x50, 2100, 0);
1028TWL6030_FIXED_LDO(VCXIO, 0x60, 1800, 0);
1029TWL6030_FIXED_LDO(VDAC, 0x64, 1800, 0);
1030TWL6030_FIXED_LDO(VUSB, 0x70, 3300, 0);
Peter Ujfalusie9d47fa2012-02-28 15:09:12 +05301031TWL6030_FIXED_LDO(V1V8, 0x16, 1800, 0);
1032TWL6030_FIXED_LDO(V2V1, 0x1c, 2100, 0);
Rajendra Nayak2098e952012-02-28 15:09:11 +05301033TWL6025_ADJUSTABLE_SMPS(SMPS3, 0x34);
1034TWL6025_ADJUSTABLE_SMPS(SMPS4, 0x10);
1035TWL6025_ADJUSTABLE_SMPS(VIO, 0x16);
David Brownellfa16a5c2009-02-08 10:37:06 -08001036
Graeme Gregory4d94aee2011-05-22 21:21:23 +01001037static u8 twl_get_smps_offset(void)
1038{
1039 u8 value;
1040
1041 twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &value,
1042 TWL6030_SMPS_OFFSET);
1043 return value;
1044}
1045
1046static u8 twl_get_smps_mult(void)
1047{
1048 u8 value;
1049
1050 twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &value,
1051 TWL6030_SMPS_MULT);
1052 return value;
1053}
1054
Rajendra Nayak2098e952012-02-28 15:09:11 +05301055#define TWL_OF_MATCH(comp, family, label) \
1056 { \
1057 .compatible = comp, \
1058 .data = &family##_INFO_##label, \
1059 }
1060
1061#define TWL4030_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL4030, label)
1062#define TWL6030_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL6030, label)
1063#define TWL6025_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL6025, label)
1064#define TWLFIXED_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWLFIXED, label)
Rajendra Nayak2098e952012-02-28 15:09:11 +05301065#define TWLSMPS_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWLSMPS, label)
1066
1067static const struct of_device_id twl_of_match[] __devinitconst = {
1068 TWL4030_OF_MATCH("ti,twl4030-vaux1", VAUX1),
1069 TWL4030_OF_MATCH("ti,twl4030-vaux2", VAUX2_4030),
1070 TWL4030_OF_MATCH("ti,twl5030-vaux2", VAUX2),
1071 TWL4030_OF_MATCH("ti,twl4030-vaux3", VAUX3),
1072 TWL4030_OF_MATCH("ti,twl4030-vaux4", VAUX4),
1073 TWL4030_OF_MATCH("ti,twl4030-vmmc1", VMMC1),
1074 TWL4030_OF_MATCH("ti,twl4030-vmmc2", VMMC2),
1075 TWL4030_OF_MATCH("ti,twl4030-vpll1", VPLL1),
1076 TWL4030_OF_MATCH("ti,twl4030-vpll2", VPLL2),
1077 TWL4030_OF_MATCH("ti,twl4030-vsim", VSIM),
1078 TWL4030_OF_MATCH("ti,twl4030-vdac", VDAC),
1079 TWL4030_OF_MATCH("ti,twl4030-vintana2", VINTANA2),
1080 TWL4030_OF_MATCH("ti,twl4030-vio", VIO),
1081 TWL4030_OF_MATCH("ti,twl4030-vdd1", VDD1),
1082 TWL4030_OF_MATCH("ti,twl4030-vdd2", VDD2),
1083 TWL6030_OF_MATCH("ti,twl6030-vdd1", VDD1),
1084 TWL6030_OF_MATCH("ti,twl6030-vdd2", VDD2),
1085 TWL6030_OF_MATCH("ti,twl6030-vdd3", VDD3),
1086 TWL6030_OF_MATCH("ti,twl6030-vaux1", VAUX1_6030),
1087 TWL6030_OF_MATCH("ti,twl6030-vaux2", VAUX2_6030),
1088 TWL6030_OF_MATCH("ti,twl6030-vaux3", VAUX3_6030),
1089 TWL6030_OF_MATCH("ti,twl6030-vmmc", VMMC),
1090 TWL6030_OF_MATCH("ti,twl6030-vpp", VPP),
1091 TWL6030_OF_MATCH("ti,twl6030-vusim", VUSIM),
1092 TWL6025_OF_MATCH("ti,twl6025-ldo2", LDO2),
1093 TWL6025_OF_MATCH("ti,twl6025-ldo4", LDO4),
1094 TWL6025_OF_MATCH("ti,twl6025-ldo3", LDO3),
1095 TWL6025_OF_MATCH("ti,twl6025-ldo5", LDO5),
1096 TWL6025_OF_MATCH("ti,twl6025-ldo1", LDO1),
1097 TWL6025_OF_MATCH("ti,twl6025-ldo7", LDO7),
1098 TWL6025_OF_MATCH("ti,twl6025-ldo6", LDO6),
1099 TWL6025_OF_MATCH("ti,twl6025-ldoln", LDOLN),
1100 TWL6025_OF_MATCH("ti,twl6025-ldousb", LDOUSB),
Aaro Koskinen908d6d52012-08-15 01:10:04 +03001101 TWLFIXED_OF_MATCH("ti,twl4030-vintana1", VINTANA1),
Rajendra Nayak2098e952012-02-28 15:09:11 +05301102 TWLFIXED_OF_MATCH("ti,twl4030-vintdig", VINTDIG),
1103 TWLFIXED_OF_MATCH("ti,twl4030-vusb1v5", VUSB1V5),
1104 TWLFIXED_OF_MATCH("ti,twl4030-vusb1v8", VUSB1V8),
1105 TWLFIXED_OF_MATCH("ti,twl4030-vusb3v1", VUSB3V1),
1106 TWLFIXED_OF_MATCH("ti,twl6030-vana", VANA),
1107 TWLFIXED_OF_MATCH("ti,twl6030-vcxio", VCXIO),
1108 TWLFIXED_OF_MATCH("ti,twl6030-vdac", VDAC),
1109 TWLFIXED_OF_MATCH("ti,twl6030-vusb", VUSB),
Peter Ujfalusie9d47fa2012-02-28 15:09:12 +05301110 TWLFIXED_OF_MATCH("ti,twl6030-v1v8", V1V8),
1111 TWLFIXED_OF_MATCH("ti,twl6030-v2v1", V2V1),
Rajendra Nayak2098e952012-02-28 15:09:11 +05301112 TWLSMPS_OF_MATCH("ti,twl6025-smps3", SMPS3),
1113 TWLSMPS_OF_MATCH("ti,twl6025-smps4", SMPS4),
1114 TWLSMPS_OF_MATCH("ti,twl6025-vio", VIO),
1115 {},
1116};
1117MODULE_DEVICE_TABLE(of, twl_of_match);
1118
Bill Pembertona5023572012-11-19 13:22:22 -05001119static int twlreg_probe(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -08001120{
Rajendra Nayak2098e952012-02-28 15:09:11 +05301121 int i, id;
David Brownellfa16a5c2009-02-08 10:37:06 -08001122 struct twlreg_info *info;
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001123 const struct twlreg_info *template;
David Brownellfa16a5c2009-02-08 10:37:06 -08001124 struct regulator_init_data *initdata;
1125 struct regulation_constraints *c;
1126 struct regulator_dev *rdev;
Tero Kristo63bfff42012-02-16 12:27:52 +02001127 struct twl_regulator_driver_data *drvdata;
Rajendra Nayak2098e952012-02-28 15:09:11 +05301128 const struct of_device_id *match;
Mark Brownc1727082012-04-04 00:50:22 +01001129 struct regulator_config config = { };
David Brownellfa16a5c2009-02-08 10:37:06 -08001130
Rajendra Nayak2098e952012-02-28 15:09:11 +05301131 match = of_match_device(twl_of_match, &pdev->dev);
1132 if (match) {
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001133 template = match->data;
1134 id = template->desc.id;
Rajendra Nayak2098e952012-02-28 15:09:11 +05301135 initdata = of_get_regulator_init_data(&pdev->dev,
1136 pdev->dev.of_node);
1137 drvdata = NULL;
1138 } else {
1139 id = pdev->id;
1140 initdata = pdev->dev.platform_data;
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001141 for (i = 0, template = NULL; i < ARRAY_SIZE(twl_of_match); i++) {
1142 template = twl_of_match[i].data;
1143 if (template && template->desc.id == id)
Axel Lin5ade3932012-04-09 22:32:49 +08001144 break;
Rajendra Nayak2098e952012-02-28 15:09:11 +05301145 }
Axel Lin5ade3932012-04-09 22:32:49 +08001146 if (i == ARRAY_SIZE(twl_of_match))
1147 return -ENODEV;
1148
Rajendra Nayak2098e952012-02-28 15:09:11 +05301149 drvdata = initdata->driver_data;
1150 if (!drvdata)
1151 return -EINVAL;
David Brownellfa16a5c2009-02-08 10:37:06 -08001152 }
Rajendra Nayak2098e952012-02-28 15:09:11 +05301153
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001154 if (!template)
David Brownellfa16a5c2009-02-08 10:37:06 -08001155 return -ENODEV;
1156
David Brownellfa16a5c2009-02-08 10:37:06 -08001157 if (!initdata)
1158 return -EINVAL;
1159
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001160 info = kmemdup(template, sizeof (*info), GFP_KERNEL);
1161 if (!info)
1162 return -ENOMEM;
1163
Rajendra Nayak2098e952012-02-28 15:09:11 +05301164 if (drvdata) {
1165 /* copy the driver data into regulator data */
1166 info->features = drvdata->features;
1167 info->data = drvdata->data;
1168 info->set_voltage = drvdata->set_voltage;
1169 info->get_voltage = drvdata->get_voltage;
1170 }
Graeme Gregory4d94aee2011-05-22 21:21:23 +01001171
David Brownellfa16a5c2009-02-08 10:37:06 -08001172 /* Constrain board-specific capabilities according to what
1173 * this driver and the chip itself can actually do.
1174 */
1175 c = &initdata->constraints;
David Brownellfa16a5c2009-02-08 10:37:06 -08001176 c->valid_modes_mask &= REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY;
1177 c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE
1178 | REGULATOR_CHANGE_MODE
1179 | REGULATOR_CHANGE_STATUS;
Rajendra Nayak2098e952012-02-28 15:09:11 +05301180 switch (id) {
Juha Keski-Saari205e5cd2009-12-16 15:27:56 +02001181 case TWL4030_REG_VIO:
1182 case TWL4030_REG_VDD1:
1183 case TWL4030_REG_VDD2:
1184 case TWL4030_REG_VPLL1:
1185 case TWL4030_REG_VINTANA1:
1186 case TWL4030_REG_VINTANA2:
1187 case TWL4030_REG_VINTDIG:
1188 c->always_on = true;
1189 break;
1190 default:
1191 break;
1192 }
David Brownellfa16a5c2009-02-08 10:37:06 -08001193
Rajendra Nayak2098e952012-02-28 15:09:11 +05301194 switch (id) {
Graeme Gregory4d94aee2011-05-22 21:21:23 +01001195 case TWL6025_REG_SMPS3:
1196 if (twl_get_smps_mult() & SMPS_MULTOFFSET_SMPS3)
1197 info->flags |= SMPS_EXTENDED_EN;
1198 if (twl_get_smps_offset() & SMPS_MULTOFFSET_SMPS3)
1199 info->flags |= SMPS_OFFSET_EN;
1200 break;
1201 case TWL6025_REG_SMPS4:
1202 if (twl_get_smps_mult() & SMPS_MULTOFFSET_SMPS4)
1203 info->flags |= SMPS_EXTENDED_EN;
1204 if (twl_get_smps_offset() & SMPS_MULTOFFSET_SMPS4)
1205 info->flags |= SMPS_OFFSET_EN;
1206 break;
1207 case TWL6025_REG_VIO:
1208 if (twl_get_smps_mult() & SMPS_MULTOFFSET_VIO)
1209 info->flags |= SMPS_EXTENDED_EN;
1210 if (twl_get_smps_offset() & SMPS_MULTOFFSET_VIO)
1211 info->flags |= SMPS_OFFSET_EN;
1212 break;
1213 }
1214
Mark Brownc1727082012-04-04 00:50:22 +01001215 config.dev = &pdev->dev;
1216 config.init_data = initdata;
1217 config.driver_data = info;
1218 config.of_node = pdev->dev.of_node;
1219
1220 rdev = regulator_register(&info->desc, &config);
David Brownellfa16a5c2009-02-08 10:37:06 -08001221 if (IS_ERR(rdev)) {
1222 dev_err(&pdev->dev, "can't register %s, %ld\n",
1223 info->desc.name, PTR_ERR(rdev));
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001224 kfree(info);
David Brownellfa16a5c2009-02-08 10:37:06 -08001225 return PTR_ERR(rdev);
1226 }
1227 platform_set_drvdata(pdev, rdev);
1228
Saquib Herman776dc922011-04-01 10:22:43 +05301229 if (twl_class_is_4030())
1230 twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_REMAP,
Juha Keski-Saari30010fa2009-12-16 15:27:58 +02001231 info->remap);
1232
David Brownellfa16a5c2009-02-08 10:37:06 -08001233 /* NOTE: many regulators support short-circuit IRQs (presentable
1234 * as REGULATOR_OVER_CURRENT notifications?) configured via:
1235 * - SC_CONFIG
1236 * - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
1237 * - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
1238 * - IT_CONFIG
1239 */
1240
1241 return 0;
1242}
1243
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001244static int __devexit twlreg_remove(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -08001245{
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001246 struct regulator_dev *rdev = platform_get_drvdata(pdev);
1247 struct twlreg_info *info = rdev->reg_data;
1248
1249 regulator_unregister(rdev);
1250 kfree(info);
David Brownellfa16a5c2009-02-08 10:37:06 -08001251 return 0;
1252}
1253
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001254MODULE_ALIAS("platform:twl_reg");
David Brownellfa16a5c2009-02-08 10:37:06 -08001255
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001256static struct platform_driver twlreg_driver = {
1257 .probe = twlreg_probe,
Bill Pemberton5eb9f2b2012-11-19 13:20:42 -05001258 .remove = twlreg_remove,
David Brownellfa16a5c2009-02-08 10:37:06 -08001259 /* NOTE: short name, to work around driver model truncation of
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001260 * "twl_regulator.12" (and friends) to "twl_regulator.1".
David Brownellfa16a5c2009-02-08 10:37:06 -08001261 */
Rajendra Nayak2098e952012-02-28 15:09:11 +05301262 .driver = {
1263 .name = "twl_reg",
1264 .owner = THIS_MODULE,
1265 .of_match_table = of_match_ptr(twl_of_match),
1266 },
David Brownellfa16a5c2009-02-08 10:37:06 -08001267};
1268
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001269static int __init twlreg_init(void)
David Brownellfa16a5c2009-02-08 10:37:06 -08001270{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001271 return platform_driver_register(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -08001272}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001273subsys_initcall(twlreg_init);
David Brownellfa16a5c2009-02-08 10:37:06 -08001274
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001275static void __exit twlreg_exit(void)
David Brownellfa16a5c2009-02-08 10:37:06 -08001276{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001277 platform_driver_unregister(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -08001278}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001279module_exit(twlreg_exit)
David Brownellfa16a5c2009-02-08 10:37:06 -08001280
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001281MODULE_DESCRIPTION("TWL regulator driver");
David Brownellfa16a5c2009-02-08 10:37:06 -08001282MODULE_LICENSE("GPL");