blob: b68df81b6f8f790495461c7bdbe34be792b358eb [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
Saquib Hermanb2456772011-04-01 10:22:44 +0530619static struct regulator_ops twl4030fixed_ops = {
Axel Linb3816d52012-12-22 13:31:19 +0800620 .list_voltage = regulator_list_voltage_linear,
David Brownell66b659e2009-02-26 11:50:14 -0800621
Balaji T Kf8c29402011-05-20 19:03:51 +0530622 .enable = twl4030reg_enable,
Balaji T K0ff38972011-05-20 19:03:52 +0530623 .disable = twl4030reg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530624 .is_enabled = twl4030reg_is_enabled,
625
Saquib Herman1a399622011-04-01 10:22:46 +0530626 .set_mode = twl4030reg_set_mode,
Saquib Hermanb2456772011-04-01 10:22:44 +0530627
Saquib Herman9a0244a2011-04-01 10:22:45 +0530628 .get_status = twl4030reg_get_status,
Saquib Hermanb2456772011-04-01 10:22:44 +0530629};
630
631static struct regulator_ops twl6030fixed_ops = {
Axel Linb3816d52012-12-22 13:31:19 +0800632 .list_voltage = regulator_list_voltage_linear,
Saquib Hermanb2456772011-04-01 10:22:44 +0530633
Balaji T Kf8c29402011-05-20 19:03:51 +0530634 .enable = twl6030reg_enable,
Balaji T K0ff38972011-05-20 19:03:52 +0530635 .disable = twl6030reg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530636 .is_enabled = twl6030reg_is_enabled,
David Brownellfa16a5c2009-02-08 10:37:06 -0800637
Saquib Herman1a399622011-04-01 10:22:46 +0530638 .set_mode = twl6030reg_set_mode,
David Brownellfa16a5c2009-02-08 10:37:06 -0800639
Saquib Herman9a0244a2011-04-01 10:22:45 +0530640 .get_status = twl6030reg_get_status,
David Brownellfa16a5c2009-02-08 10:37:06 -0800641};
642
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100643/*
644 * SMPS status and control
645 */
646
647static int twl6030smps_list_voltage(struct regulator_dev *rdev, unsigned index)
648{
649 struct twlreg_info *info = rdev_get_drvdata(rdev);
650
651 int voltage = 0;
652
653 switch (info->flags) {
654 case SMPS_OFFSET_EN:
655 voltage = 100000;
656 /* fall through */
657 case 0:
658 switch (index) {
659 case 0:
660 voltage = 0;
661 break;
662 case 58:
663 voltage = 1350 * 1000;
664 break;
665 case 59:
666 voltage = 1500 * 1000;
667 break;
668 case 60:
669 voltage = 1800 * 1000;
670 break;
671 case 61:
672 voltage = 1900 * 1000;
673 break;
674 case 62:
675 voltage = 2100 * 1000;
676 break;
677 default:
678 voltage += (600000 + (12500 * (index - 1)));
679 }
680 break;
681 case SMPS_EXTENDED_EN:
682 switch (index) {
683 case 0:
684 voltage = 0;
685 break;
686 case 58:
687 voltage = 2084 * 1000;
688 break;
689 case 59:
690 voltage = 2315 * 1000;
691 break;
692 case 60:
693 voltage = 2778 * 1000;
694 break;
695 case 61:
696 voltage = 2932 * 1000;
697 break;
698 case 62:
699 voltage = 3241 * 1000;
700 break;
701 default:
702 voltage = (1852000 + (38600 * (index - 1)));
703 }
704 break;
705 case SMPS_OFFSET_EN | SMPS_EXTENDED_EN:
706 switch (index) {
707 case 0:
708 voltage = 0;
709 break;
710 case 58:
711 voltage = 4167 * 1000;
712 break;
713 case 59:
714 voltage = 2315 * 1000;
715 break;
716 case 60:
717 voltage = 2778 * 1000;
718 break;
719 case 61:
720 voltage = 2932 * 1000;
721 break;
722 case 62:
723 voltage = 3241 * 1000;
724 break;
725 default:
726 voltage = (2161000 + (38600 * (index - 1)));
727 }
728 break;
729 }
730
731 return voltage;
732}
733
Axel Lin38f8f432012-07-14 13:41:23 +0800734static int twl6030smps_map_voltage(struct regulator_dev *rdev, int min_uV,
735 int max_uV)
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100736{
Axel Lin38f8f432012-07-14 13:41:23 +0800737 struct twlreg_info *info = rdev_get_drvdata(rdev);
738 int vsel = 0;
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100739
740 switch (info->flags) {
741 case 0:
742 if (min_uV == 0)
743 vsel = 0;
Laxman Dewangana33b6e52012-02-03 12:54:38 +0530744 else if ((min_uV >= 600000) && (min_uV <= 1300000)) {
Axel Lin268a1642012-04-09 23:35:10 +0800745 vsel = DIV_ROUND_UP(min_uV - 600000, 12500);
Axel Lin0cb2f122012-04-10 23:07:52 +0800746 vsel++;
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100747 }
748 /* Values 1..57 for vsel are linear and can be calculated
749 * values 58..62 are non linear.
750 */
Axel Lin78292f42012-07-14 13:37:13 +0800751 else if ((min_uV > 1900000) && (min_uV <= 2100000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100752 vsel = 62;
Axel Lin78292f42012-07-14 13:37:13 +0800753 else if ((min_uV > 1800000) && (min_uV <= 1900000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100754 vsel = 61;
Axel Lin78292f42012-07-14 13:37:13 +0800755 else if ((min_uV > 1500000) && (min_uV <= 1800000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100756 vsel = 60;
Axel Lin78292f42012-07-14 13:37:13 +0800757 else if ((min_uV > 1350000) && (min_uV <= 1500000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100758 vsel = 59;
Axel Lin78292f42012-07-14 13:37:13 +0800759 else if ((min_uV > 1300000) && (min_uV <= 1350000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100760 vsel = 58;
761 else
762 return -EINVAL;
763 break;
764 case SMPS_OFFSET_EN:
765 if (min_uV == 0)
766 vsel = 0;
Laxman Dewangana33b6e52012-02-03 12:54:38 +0530767 else if ((min_uV >= 700000) && (min_uV <= 1420000)) {
Axel Lin268a1642012-04-09 23:35:10 +0800768 vsel = DIV_ROUND_UP(min_uV - 700000, 12500);
Axel Lin0cb2f122012-04-10 23:07:52 +0800769 vsel++;
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100770 }
771 /* Values 1..57 for vsel are linear and can be calculated
772 * values 58..62 are non linear.
773 */
Axel Lin78292f42012-07-14 13:37:13 +0800774 else if ((min_uV > 1900000) && (min_uV <= 2100000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100775 vsel = 62;
Axel Lin78292f42012-07-14 13:37:13 +0800776 else if ((min_uV > 1800000) && (min_uV <= 1900000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100777 vsel = 61;
Axel Lin78292f42012-07-14 13:37:13 +0800778 else if ((min_uV > 1350000) && (min_uV <= 1800000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100779 vsel = 60;
Axel Lin78292f42012-07-14 13:37:13 +0800780 else if ((min_uV > 1350000) && (min_uV <= 1500000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100781 vsel = 59;
Axel Lin78292f42012-07-14 13:37:13 +0800782 else if ((min_uV > 1300000) && (min_uV <= 1350000))
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100783 vsel = 58;
784 else
785 return -EINVAL;
786 break;
787 case SMPS_EXTENDED_EN:
Axel Lin0cb2f122012-04-10 23:07:52 +0800788 if (min_uV == 0) {
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100789 vsel = 0;
Axel Lin0cb2f122012-04-10 23:07:52 +0800790 } else if ((min_uV >= 1852000) && (max_uV <= 4013600)) {
Axel Lin268a1642012-04-09 23:35:10 +0800791 vsel = DIV_ROUND_UP(min_uV - 1852000, 38600);
Axel Lin0cb2f122012-04-10 23:07:52 +0800792 vsel++;
793 }
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100794 break;
795 case SMPS_OFFSET_EN|SMPS_EXTENDED_EN:
Axel Lin0cb2f122012-04-10 23:07:52 +0800796 if (min_uV == 0) {
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100797 vsel = 0;
Axel Lin78292f42012-07-14 13:37:13 +0800798 } else if ((min_uV >= 2161000) && (min_uV <= 4321000)) {
Axel Lin268a1642012-04-09 23:35:10 +0800799 vsel = DIV_ROUND_UP(min_uV - 2161000, 38600);
Axel Lin0cb2f122012-04-10 23:07:52 +0800800 vsel++;
801 }
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100802 break;
803 }
804
Axel Lin38f8f432012-07-14 13:41:23 +0800805 return vsel;
806}
Axel Lin78292f42012-07-14 13:37:13 +0800807
Axel Lin38f8f432012-07-14 13:41:23 +0800808static int twl6030smps_set_voltage_sel(struct regulator_dev *rdev,
809 unsigned int selector)
810{
811 struct twlreg_info *info = rdev_get_drvdata(rdev);
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100812
813 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE_SMPS,
Axel Lin38f8f432012-07-14 13:41:23 +0800814 selector);
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100815}
816
817static int twl6030smps_get_voltage_sel(struct regulator_dev *rdev)
818{
819 struct twlreg_info *info = rdev_get_drvdata(rdev);
820
821 return twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE_SMPS);
822}
823
824static struct regulator_ops twlsmps_ops = {
825 .list_voltage = twl6030smps_list_voltage,
Axel Lin38f8f432012-07-14 13:41:23 +0800826 .map_voltage = twl6030smps_map_voltage,
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100827
Axel Lin38f8f432012-07-14 13:41:23 +0800828 .set_voltage_sel = twl6030smps_set_voltage_sel,
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100829 .get_voltage_sel = twl6030smps_get_voltage_sel,
830
831 .enable = twl6030reg_enable,
832 .disable = twl6030reg_disable,
833 .is_enabled = twl6030reg_is_enabled,
834
835 .set_mode = twl6030reg_set_mode,
836
837 .get_status = twl6030reg_get_status,
838};
839
David Brownellfa16a5c2009-02-08 10:37:06 -0800840/*----------------------------------------------------------------------*/
841
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200842#define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
843 remap_conf) \
844 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530845 remap_conf, TWL4030, twl4030fixed_ops)
Ambresh Kaf8b2442011-07-09 19:02:21 -0700846#define TWL6030_FIXED_LDO(label, offset, mVolts, turnon_delay) \
847 TWL_FIXED_LDO(label, offset, mVolts, 0x0, turnon_delay, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530848 0x0, TWL6030, twl6030fixed_ops)
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100849
Rajendra Nayak2098e952012-02-28 15:09:11 +0530850#define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000851static const struct twlreg_info TWL4030_INFO_##label = { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800852 .base = offset, \
853 .id = num, \
854 .table_len = ARRAY_SIZE(label##_VSEL_table), \
855 .table = label##_VSEL_table, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200856 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800857 .desc = { \
858 .name = #label, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530859 .id = TWL4030_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800860 .n_voltages = ARRAY_SIZE(label##_VSEL_table), \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530861 .ops = &twl4030ldo_ops, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800862 .type = REGULATOR_VOLTAGE, \
863 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800864 .enable_time = turnon_delay, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800865 }, \
866 }
867
Tero Kristoba305e32011-11-28 16:53:19 +0200868#define TWL4030_ADJUSTABLE_SMPS(label, offset, num, turnon_delay, remap_conf) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000869static const struct twlreg_info TWL4030_INFO_##label = { \
Tero Kristoba305e32011-11-28 16:53:19 +0200870 .base = offset, \
871 .id = num, \
Tero Kristoba305e32011-11-28 16:53:19 +0200872 .remap = remap_conf, \
873 .desc = { \
874 .name = #label, \
875 .id = TWL4030_REG_##label, \
876 .ops = &twl4030smps_ops, \
877 .type = REGULATOR_VOLTAGE, \
878 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800879 .enable_time = turnon_delay, \
Tero Kristoba305e32011-11-28 16:53:19 +0200880 }, \
881 }
882
Rajendra Nayak2098e952012-02-28 15:09:11 +0530883#define TWL6030_ADJUSTABLE_SMPS(label) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000884static const struct twlreg_info TWL6030_INFO_##label = { \
Tero Kristo34a38442012-02-28 15:09:10 +0530885 .desc = { \
886 .name = #label, \
887 .id = TWL6030_REG_##label, \
888 .ops = &twl6030coresmps_ops, \
889 .type = REGULATOR_VOLTAGE, \
890 .owner = THIS_MODULE, \
891 }, \
892 }
893
Rajendra Nayak2098e952012-02-28 15:09:11 +0530894#define TWL6030_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000895static const struct twlreg_info TWL6030_INFO_##label = { \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530896 .base = offset, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530897 .min_mV = min_mVolts, \
898 .max_mV = max_mVolts, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530899 .desc = { \
900 .name = #label, \
901 .id = TWL6030_REG_##label, \
Axel Linc6a717c2012-07-16 18:31:10 +0800902 .n_voltages = 32, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530903 .ops = &twl6030ldo_ops, \
904 .type = REGULATOR_VOLTAGE, \
905 .owner = THIS_MODULE, \
906 }, \
907 }
908
Rajendra Nayak2098e952012-02-28 15:09:11 +0530909#define TWL6025_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000910static const struct twlreg_info TWL6025_INFO_##label = { \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100911 .base = offset, \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100912 .min_mV = min_mVolts, \
913 .max_mV = max_mVolts, \
914 .desc = { \
915 .name = #label, \
916 .id = TWL6025_REG_##label, \
Axel Linc6a717c2012-07-16 18:31:10 +0800917 .n_voltages = 32, \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100918 .ops = &twl6030ldo_ops, \
919 .type = REGULATOR_VOLTAGE, \
920 .owner = THIS_MODULE, \
921 }, \
922 }
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530923
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200924#define TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, remap_conf, \
Rajendra Nayak2098e952012-02-28 15:09:11 +0530925 family, operations) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000926static const struct twlreg_info TWLFIXED_INFO_##label = { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800927 .base = offset, \
928 .id = num, \
929 .min_mV = mVolts, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200930 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800931 .desc = { \
932 .name = #label, \
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100933 .id = family##_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800934 .n_voltages = 1, \
Saquib Hermanb2456772011-04-01 10:22:44 +0530935 .ops = &operations, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800936 .type = REGULATOR_VOLTAGE, \
937 .owner = THIS_MODULE, \
Axel Linb3816d52012-12-22 13:31:19 +0800938 .min_uV = mVolts * 1000, \
Axel Linfca53d82012-07-04 10:46:34 +0800939 .enable_time = turnon_delay, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800940 }, \
941 }
942
Rajendra Nayak2098e952012-02-28 15:09:11 +0530943#define TWL6030_FIXED_RESOURCE(label, offset, turnon_delay) \
944static struct twlreg_info TWLRES_INFO_##label = { \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530945 .base = offset, \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530946 .desc = { \
947 .name = #label, \
948 .id = TWL6030_REG_##label, \
949 .ops = &twl6030_fixed_resource, \
950 .type = REGULATOR_VOLTAGE, \
951 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800952 .enable_time = turnon_delay, \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530953 }, \
954 }
955
Rajendra Nayak2098e952012-02-28 15:09:11 +0530956#define TWL6025_ADJUSTABLE_SMPS(label, offset) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000957static const struct twlreg_info TWLSMPS_INFO_##label = { \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100958 .base = offset, \
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100959 .min_mV = 600, \
960 .max_mV = 2100, \
961 .desc = { \
962 .name = #label, \
963 .id = TWL6025_REG_##label, \
964 .n_voltages = 63, \
965 .ops = &twlsmps_ops, \
966 .type = REGULATOR_VOLTAGE, \
967 .owner = THIS_MODULE, \
968 }, \
969 }
970
David Brownellfa16a5c2009-02-08 10:37:06 -0800971/*
972 * We list regulators here if systems need some level of
973 * software control over them after boot.
974 */
Rajendra Nayak2098e952012-02-28 15:09:11 +0530975TWL4030_ADJUSTABLE_LDO(VAUX1, 0x17, 1, 100, 0x08);
976TWL4030_ADJUSTABLE_LDO(VAUX2_4030, 0x1b, 2, 100, 0x08);
977TWL4030_ADJUSTABLE_LDO(VAUX2, 0x1b, 2, 100, 0x08);
978TWL4030_ADJUSTABLE_LDO(VAUX3, 0x1f, 3, 100, 0x08);
979TWL4030_ADJUSTABLE_LDO(VAUX4, 0x23, 4, 100, 0x08);
980TWL4030_ADJUSTABLE_LDO(VMMC1, 0x27, 5, 100, 0x08);
981TWL4030_ADJUSTABLE_LDO(VMMC2, 0x2b, 6, 100, 0x08);
982TWL4030_ADJUSTABLE_LDO(VPLL1, 0x2f, 7, 100, 0x00);
983TWL4030_ADJUSTABLE_LDO(VPLL2, 0x33, 8, 100, 0x08);
984TWL4030_ADJUSTABLE_LDO(VSIM, 0x37, 9, 100, 0x00);
985TWL4030_ADJUSTABLE_LDO(VDAC, 0x3b, 10, 100, 0x08);
986TWL4030_ADJUSTABLE_LDO(VINTANA2, 0x43, 12, 100, 0x08);
987TWL4030_ADJUSTABLE_LDO(VIO, 0x4b, 14, 1000, 0x08);
988TWL4030_ADJUSTABLE_SMPS(VDD1, 0x55, 15, 1000, 0x08);
989TWL4030_ADJUSTABLE_SMPS(VDD2, 0x63, 16, 1000, 0x08);
990/* VUSBCP is managed *only* by the USB subchip */
991/* 6030 REG with base as PMC Slave Misc : 0x0030 */
992/* Turnon-delay and remap configuration values for 6030 are not
993 verified since the specification is not public */
994TWL6030_ADJUSTABLE_SMPS(VDD1);
995TWL6030_ADJUSTABLE_SMPS(VDD2);
996TWL6030_ADJUSTABLE_SMPS(VDD3);
997TWL6030_ADJUSTABLE_LDO(VAUX1_6030, 0x54, 1000, 3300);
998TWL6030_ADJUSTABLE_LDO(VAUX2_6030, 0x58, 1000, 3300);
999TWL6030_ADJUSTABLE_LDO(VAUX3_6030, 0x5c, 1000, 3300);
1000TWL6030_ADJUSTABLE_LDO(VMMC, 0x68, 1000, 3300);
1001TWL6030_ADJUSTABLE_LDO(VPP, 0x6c, 1000, 3300);
1002TWL6030_ADJUSTABLE_LDO(VUSIM, 0x74, 1000, 3300);
1003/* 6025 are renamed compared to 6030 versions */
1004TWL6025_ADJUSTABLE_LDO(LDO2, 0x54, 1000, 3300);
1005TWL6025_ADJUSTABLE_LDO(LDO4, 0x58, 1000, 3300);
1006TWL6025_ADJUSTABLE_LDO(LDO3, 0x5c, 1000, 3300);
1007TWL6025_ADJUSTABLE_LDO(LDO5, 0x68, 1000, 3300);
1008TWL6025_ADJUSTABLE_LDO(LDO1, 0x6c, 1000, 3300);
1009TWL6025_ADJUSTABLE_LDO(LDO7, 0x74, 1000, 3300);
1010TWL6025_ADJUSTABLE_LDO(LDO6, 0x60, 1000, 3300);
1011TWL6025_ADJUSTABLE_LDO(LDOLN, 0x64, 1000, 3300);
1012TWL6025_ADJUSTABLE_LDO(LDOUSB, 0x70, 1000, 3300);
Aaro Koskinen908d6d52012-08-15 01:10:04 +03001013TWL4030_FIXED_LDO(VINTANA1, 0x3f, 1500, 11, 100, 0x08);
Rajendra Nayak2098e952012-02-28 15:09:11 +05301014TWL4030_FIXED_LDO(VINTDIG, 0x47, 1500, 13, 100, 0x08);
1015TWL4030_FIXED_LDO(VUSB1V5, 0x71, 1500, 17, 100, 0x08);
1016TWL4030_FIXED_LDO(VUSB1V8, 0x74, 1800, 18, 100, 0x08);
1017TWL4030_FIXED_LDO(VUSB3V1, 0x77, 3100, 19, 150, 0x08);
1018TWL6030_FIXED_LDO(VANA, 0x50, 2100, 0);
1019TWL6030_FIXED_LDO(VCXIO, 0x60, 1800, 0);
1020TWL6030_FIXED_LDO(VDAC, 0x64, 1800, 0);
1021TWL6030_FIXED_LDO(VUSB, 0x70, 3300, 0);
Peter Ujfalusie9d47fa2012-02-28 15:09:12 +05301022TWL6030_FIXED_LDO(V1V8, 0x16, 1800, 0);
1023TWL6030_FIXED_LDO(V2V1, 0x1c, 2100, 0);
Rajendra Nayak2098e952012-02-28 15:09:11 +05301024TWL6025_ADJUSTABLE_SMPS(SMPS3, 0x34);
1025TWL6025_ADJUSTABLE_SMPS(SMPS4, 0x10);
1026TWL6025_ADJUSTABLE_SMPS(VIO, 0x16);
David Brownellfa16a5c2009-02-08 10:37:06 -08001027
Graeme Gregory4d94aee2011-05-22 21:21:23 +01001028static u8 twl_get_smps_offset(void)
1029{
1030 u8 value;
1031
1032 twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &value,
1033 TWL6030_SMPS_OFFSET);
1034 return value;
1035}
1036
1037static u8 twl_get_smps_mult(void)
1038{
1039 u8 value;
1040
1041 twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &value,
1042 TWL6030_SMPS_MULT);
1043 return value;
1044}
1045
Rajendra Nayak2098e952012-02-28 15:09:11 +05301046#define TWL_OF_MATCH(comp, family, label) \
1047 { \
1048 .compatible = comp, \
1049 .data = &family##_INFO_##label, \
1050 }
1051
1052#define TWL4030_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL4030, label)
1053#define TWL6030_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL6030, label)
1054#define TWL6025_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL6025, label)
1055#define TWLFIXED_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWLFIXED, label)
Rajendra Nayak2098e952012-02-28 15:09:11 +05301056#define TWLSMPS_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWLSMPS, label)
1057
Greg Kroah-Hartman3d68dfe2012-12-21 13:26:06 -08001058static const struct of_device_id twl_of_match[] = {
Rajendra Nayak2098e952012-02-28 15:09:11 +05301059 TWL4030_OF_MATCH("ti,twl4030-vaux1", VAUX1),
1060 TWL4030_OF_MATCH("ti,twl4030-vaux2", VAUX2_4030),
1061 TWL4030_OF_MATCH("ti,twl5030-vaux2", VAUX2),
1062 TWL4030_OF_MATCH("ti,twl4030-vaux3", VAUX3),
1063 TWL4030_OF_MATCH("ti,twl4030-vaux4", VAUX4),
1064 TWL4030_OF_MATCH("ti,twl4030-vmmc1", VMMC1),
1065 TWL4030_OF_MATCH("ti,twl4030-vmmc2", VMMC2),
1066 TWL4030_OF_MATCH("ti,twl4030-vpll1", VPLL1),
1067 TWL4030_OF_MATCH("ti,twl4030-vpll2", VPLL2),
1068 TWL4030_OF_MATCH("ti,twl4030-vsim", VSIM),
1069 TWL4030_OF_MATCH("ti,twl4030-vdac", VDAC),
1070 TWL4030_OF_MATCH("ti,twl4030-vintana2", VINTANA2),
1071 TWL4030_OF_MATCH("ti,twl4030-vio", VIO),
1072 TWL4030_OF_MATCH("ti,twl4030-vdd1", VDD1),
1073 TWL4030_OF_MATCH("ti,twl4030-vdd2", VDD2),
1074 TWL6030_OF_MATCH("ti,twl6030-vdd1", VDD1),
1075 TWL6030_OF_MATCH("ti,twl6030-vdd2", VDD2),
1076 TWL6030_OF_MATCH("ti,twl6030-vdd3", VDD3),
1077 TWL6030_OF_MATCH("ti,twl6030-vaux1", VAUX1_6030),
1078 TWL6030_OF_MATCH("ti,twl6030-vaux2", VAUX2_6030),
1079 TWL6030_OF_MATCH("ti,twl6030-vaux3", VAUX3_6030),
1080 TWL6030_OF_MATCH("ti,twl6030-vmmc", VMMC),
1081 TWL6030_OF_MATCH("ti,twl6030-vpp", VPP),
1082 TWL6030_OF_MATCH("ti,twl6030-vusim", VUSIM),
1083 TWL6025_OF_MATCH("ti,twl6025-ldo2", LDO2),
1084 TWL6025_OF_MATCH("ti,twl6025-ldo4", LDO4),
1085 TWL6025_OF_MATCH("ti,twl6025-ldo3", LDO3),
1086 TWL6025_OF_MATCH("ti,twl6025-ldo5", LDO5),
1087 TWL6025_OF_MATCH("ti,twl6025-ldo1", LDO1),
1088 TWL6025_OF_MATCH("ti,twl6025-ldo7", LDO7),
1089 TWL6025_OF_MATCH("ti,twl6025-ldo6", LDO6),
1090 TWL6025_OF_MATCH("ti,twl6025-ldoln", LDOLN),
1091 TWL6025_OF_MATCH("ti,twl6025-ldousb", LDOUSB),
Aaro Koskinen908d6d52012-08-15 01:10:04 +03001092 TWLFIXED_OF_MATCH("ti,twl4030-vintana1", VINTANA1),
Rajendra Nayak2098e952012-02-28 15:09:11 +05301093 TWLFIXED_OF_MATCH("ti,twl4030-vintdig", VINTDIG),
1094 TWLFIXED_OF_MATCH("ti,twl4030-vusb1v5", VUSB1V5),
1095 TWLFIXED_OF_MATCH("ti,twl4030-vusb1v8", VUSB1V8),
1096 TWLFIXED_OF_MATCH("ti,twl4030-vusb3v1", VUSB3V1),
1097 TWLFIXED_OF_MATCH("ti,twl6030-vana", VANA),
1098 TWLFIXED_OF_MATCH("ti,twl6030-vcxio", VCXIO),
1099 TWLFIXED_OF_MATCH("ti,twl6030-vdac", VDAC),
1100 TWLFIXED_OF_MATCH("ti,twl6030-vusb", VUSB),
Peter Ujfalusie9d47fa2012-02-28 15:09:12 +05301101 TWLFIXED_OF_MATCH("ti,twl6030-v1v8", V1V8),
1102 TWLFIXED_OF_MATCH("ti,twl6030-v2v1", V2V1),
Rajendra Nayak2098e952012-02-28 15:09:11 +05301103 TWLSMPS_OF_MATCH("ti,twl6025-smps3", SMPS3),
1104 TWLSMPS_OF_MATCH("ti,twl6025-smps4", SMPS4),
1105 TWLSMPS_OF_MATCH("ti,twl6025-vio", VIO),
1106 {},
1107};
1108MODULE_DEVICE_TABLE(of, twl_of_match);
1109
Bill Pembertona5023572012-11-19 13:22:22 -05001110static int twlreg_probe(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -08001111{
Rajendra Nayak2098e952012-02-28 15:09:11 +05301112 int i, id;
David Brownellfa16a5c2009-02-08 10:37:06 -08001113 struct twlreg_info *info;
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001114 const struct twlreg_info *template;
David Brownellfa16a5c2009-02-08 10:37:06 -08001115 struct regulator_init_data *initdata;
1116 struct regulation_constraints *c;
1117 struct regulator_dev *rdev;
Tero Kristo63bfff42012-02-16 12:27:52 +02001118 struct twl_regulator_driver_data *drvdata;
Rajendra Nayak2098e952012-02-28 15:09:11 +05301119 const struct of_device_id *match;
Mark Brownc1727082012-04-04 00:50:22 +01001120 struct regulator_config config = { };
David Brownellfa16a5c2009-02-08 10:37:06 -08001121
Rajendra Nayak2098e952012-02-28 15:09:11 +05301122 match = of_match_device(twl_of_match, &pdev->dev);
1123 if (match) {
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001124 template = match->data;
1125 id = template->desc.id;
Rajendra Nayak2098e952012-02-28 15:09:11 +05301126 initdata = of_get_regulator_init_data(&pdev->dev,
1127 pdev->dev.of_node);
1128 drvdata = NULL;
1129 } else {
1130 id = pdev->id;
1131 initdata = pdev->dev.platform_data;
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001132 for (i = 0, template = NULL; i < ARRAY_SIZE(twl_of_match); i++) {
1133 template = twl_of_match[i].data;
1134 if (template && template->desc.id == id)
Axel Lin5ade3932012-04-09 22:32:49 +08001135 break;
Rajendra Nayak2098e952012-02-28 15:09:11 +05301136 }
Axel Lin5ade3932012-04-09 22:32:49 +08001137 if (i == ARRAY_SIZE(twl_of_match))
1138 return -ENODEV;
1139
Rajendra Nayak2098e952012-02-28 15:09:11 +05301140 drvdata = initdata->driver_data;
1141 if (!drvdata)
1142 return -EINVAL;
David Brownellfa16a5c2009-02-08 10:37:06 -08001143 }
Rajendra Nayak2098e952012-02-28 15:09:11 +05301144
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001145 if (!template)
David Brownellfa16a5c2009-02-08 10:37:06 -08001146 return -ENODEV;
1147
David Brownellfa16a5c2009-02-08 10:37:06 -08001148 if (!initdata)
1149 return -EINVAL;
1150
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001151 info = kmemdup(template, sizeof (*info), GFP_KERNEL);
1152 if (!info)
1153 return -ENOMEM;
1154
Rajendra Nayak2098e952012-02-28 15:09:11 +05301155 if (drvdata) {
1156 /* copy the driver data into regulator data */
1157 info->features = drvdata->features;
1158 info->data = drvdata->data;
1159 info->set_voltage = drvdata->set_voltage;
1160 info->get_voltage = drvdata->get_voltage;
1161 }
Graeme Gregory4d94aee2011-05-22 21:21:23 +01001162
David Brownellfa16a5c2009-02-08 10:37:06 -08001163 /* Constrain board-specific capabilities according to what
1164 * this driver and the chip itself can actually do.
1165 */
1166 c = &initdata->constraints;
David Brownellfa16a5c2009-02-08 10:37:06 -08001167 c->valid_modes_mask &= REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY;
1168 c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE
1169 | REGULATOR_CHANGE_MODE
1170 | REGULATOR_CHANGE_STATUS;
Rajendra Nayak2098e952012-02-28 15:09:11 +05301171 switch (id) {
Juha Keski-Saari205e5cd2009-12-16 15:27:56 +02001172 case TWL4030_REG_VIO:
1173 case TWL4030_REG_VDD1:
1174 case TWL4030_REG_VDD2:
1175 case TWL4030_REG_VPLL1:
1176 case TWL4030_REG_VINTANA1:
1177 case TWL4030_REG_VINTANA2:
1178 case TWL4030_REG_VINTDIG:
1179 c->always_on = true;
1180 break;
1181 default:
1182 break;
1183 }
David Brownellfa16a5c2009-02-08 10:37:06 -08001184
Rajendra Nayak2098e952012-02-28 15:09:11 +05301185 switch (id) {
Graeme Gregory4d94aee2011-05-22 21:21:23 +01001186 case TWL6025_REG_SMPS3:
1187 if (twl_get_smps_mult() & SMPS_MULTOFFSET_SMPS3)
1188 info->flags |= SMPS_EXTENDED_EN;
1189 if (twl_get_smps_offset() & SMPS_MULTOFFSET_SMPS3)
1190 info->flags |= SMPS_OFFSET_EN;
1191 break;
1192 case TWL6025_REG_SMPS4:
1193 if (twl_get_smps_mult() & SMPS_MULTOFFSET_SMPS4)
1194 info->flags |= SMPS_EXTENDED_EN;
1195 if (twl_get_smps_offset() & SMPS_MULTOFFSET_SMPS4)
1196 info->flags |= SMPS_OFFSET_EN;
1197 break;
1198 case TWL6025_REG_VIO:
1199 if (twl_get_smps_mult() & SMPS_MULTOFFSET_VIO)
1200 info->flags |= SMPS_EXTENDED_EN;
1201 if (twl_get_smps_offset() & SMPS_MULTOFFSET_VIO)
1202 info->flags |= SMPS_OFFSET_EN;
1203 break;
1204 }
1205
Mark Brownc1727082012-04-04 00:50:22 +01001206 config.dev = &pdev->dev;
1207 config.init_data = initdata;
1208 config.driver_data = info;
1209 config.of_node = pdev->dev.of_node;
1210
1211 rdev = regulator_register(&info->desc, &config);
David Brownellfa16a5c2009-02-08 10:37:06 -08001212 if (IS_ERR(rdev)) {
1213 dev_err(&pdev->dev, "can't register %s, %ld\n",
1214 info->desc.name, PTR_ERR(rdev));
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001215 kfree(info);
David Brownellfa16a5c2009-02-08 10:37:06 -08001216 return PTR_ERR(rdev);
1217 }
1218 platform_set_drvdata(pdev, rdev);
1219
Saquib Herman776dc922011-04-01 10:22:43 +05301220 if (twl_class_is_4030())
1221 twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_REMAP,
Juha Keski-Saari30010fa2009-12-16 15:27:58 +02001222 info->remap);
1223
David Brownellfa16a5c2009-02-08 10:37:06 -08001224 /* NOTE: many regulators support short-circuit IRQs (presentable
1225 * as REGULATOR_OVER_CURRENT notifications?) configured via:
1226 * - SC_CONFIG
1227 * - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
1228 * - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
1229 * - IT_CONFIG
1230 */
1231
1232 return 0;
1233}
1234
Bill Pemberton8dc995f2012-11-19 13:26:10 -05001235static int twlreg_remove(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -08001236{
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +00001237 struct regulator_dev *rdev = platform_get_drvdata(pdev);
1238 struct twlreg_info *info = rdev->reg_data;
1239
1240 regulator_unregister(rdev);
1241 kfree(info);
David Brownellfa16a5c2009-02-08 10:37:06 -08001242 return 0;
1243}
1244
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001245MODULE_ALIAS("platform:twl_reg");
David Brownellfa16a5c2009-02-08 10:37:06 -08001246
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001247static struct platform_driver twlreg_driver = {
1248 .probe = twlreg_probe,
Bill Pemberton5eb9f2b2012-11-19 13:20:42 -05001249 .remove = twlreg_remove,
David Brownellfa16a5c2009-02-08 10:37:06 -08001250 /* NOTE: short name, to work around driver model truncation of
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001251 * "twl_regulator.12" (and friends) to "twl_regulator.1".
David Brownellfa16a5c2009-02-08 10:37:06 -08001252 */
Rajendra Nayak2098e952012-02-28 15:09:11 +05301253 .driver = {
1254 .name = "twl_reg",
1255 .owner = THIS_MODULE,
1256 .of_match_table = of_match_ptr(twl_of_match),
1257 },
David Brownellfa16a5c2009-02-08 10:37:06 -08001258};
1259
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001260static int __init twlreg_init(void)
David Brownellfa16a5c2009-02-08 10:37:06 -08001261{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001262 return platform_driver_register(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -08001263}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001264subsys_initcall(twlreg_init);
David Brownellfa16a5c2009-02-08 10:37:06 -08001265
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001266static void __exit twlreg_exit(void)
David Brownellfa16a5c2009-02-08 10:37:06 -08001267{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001268 platform_driver_unregister(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -08001269}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001270module_exit(twlreg_exit)
David Brownellfa16a5c2009-02-08 10:37:06 -08001271
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01001272MODULE_DESCRIPTION("TWL regulator driver");
David Brownellfa16a5c2009-02-08 10:37:06 -08001273MODULE_LICENSE("GPL");