blob: 4a51cfea45ac2b39efc1abc9fcd2673ffc36b1f2 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Brownellfa16a5c2009-02-08 10:37:06 -08002/*
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +01003 * twl-regulator.c -- support regulators in twl4030/twl6030 family chips
David Brownellfa16a5c2009-02-08 10:37:06 -08004 *
5 * Copyright (C) 2008 David Brownell
David Brownellfa16a5c2009-02-08 10:37:06 -08006 */
7
8#include <linux/module.h>
Stephen Rothwell8f52a582012-08-16 15:16:05 +10009#include <linux/string.h>
10#include <linux/slab.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080011#include <linux/init.h>
12#include <linux/err.h>
13#include <linux/platform_device.h>
Rajendra Nayak2098e952012-02-28 15:09:11 +053014#include <linux/of.h>
15#include <linux/of_device.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080016#include <linux/regulator/driver.h>
17#include <linux/regulator/machine.h>
Rajendra Nayak2098e952012-02-28 15:09:11 +053018#include <linux/regulator/of_regulator.h>
Wolfram Sanga2054252017-08-14 18:34:24 +020019#include <linux/mfd/twl.h>
Ivaylo Dimitrov2330b052016-03-26 10:28:13 +020020#include <linux/delay.h>
David Brownellfa16a5c2009-02-08 10:37:06 -080021
22/*
Nicolae Rosiacac28ae2016-11-12 14:42:15 +020023 * The TWL4030/TW5030/TPS659x0 family chips include power management, a
David Brownellfa16a5c2009-02-08 10:37:06 -080024 * USB OTG transceiver, an RTC, ADC, PWM, and lots more. Some versions
25 * include an audio codec, battery charger, and more voltage regulators.
26 * These chips are often used in OMAP-based systems.
27 *
28 * This driver implements software-based resource control for various
29 * voltage regulators. This is usually augmented with state machine
30 * based control.
31 */
32
33struct twlreg_info {
34 /* start of regulator's PM_RECEIVER control register bank */
35 u8 base;
36
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +010037 /* twl resource ID, for resource control state machine */
David Brownellfa16a5c2009-02-08 10:37:06 -080038 u8 id;
39
40 /* voltage in mV = table[VSEL]; table_len must be a power-of-two */
41 u8 table_len;
42 const u16 *table;
43
Juha Keski-Saari045f9722009-12-16 14:49:52 +020044 /* State REMAP default configuration */
45 u8 remap;
46
David Brownellfa16a5c2009-02-08 10:37:06 -080047 /* used by regulator core */
48 struct regulator_desc desc;
Graeme Gregory4d94aee2011-05-22 21:21:23 +010049
50 /* chip specific features */
Jingoo Han3db39882014-01-08 10:04:48 +090051 unsigned long features;
Tero Kristo63bfff42012-02-16 12:27:52 +020052
Tero Kristo63bfff42012-02-16 12:27:52 +020053 /* data passed from board for external get/set voltage */
54 void *data;
David Brownellfa16a5c2009-02-08 10:37:06 -080055};
56
57
58/* LDO control registers ... offset is from the base of its register bank.
59 * The first three registers of all power resource banks help hardware to
60 * manage the various resource groups.
61 */
Rajendra Nayak441a4502009-12-13 22:19:23 +010062/* Common offset in TWL4030/6030 */
David Brownellfa16a5c2009-02-08 10:37:06 -080063#define VREG_GRP 0
Rajendra Nayak441a4502009-12-13 22:19:23 +010064/* TWL4030 register offsets */
David Brownellfa16a5c2009-02-08 10:37:06 -080065#define VREG_TYPE 1
66#define VREG_REMAP 2
67#define VREG_DEDICATED 3 /* LDO control */
Tero Kristoba305e32011-11-28 16:53:19 +020068#define VREG_VOLTAGE_SMPS_4030 9
Rajendra Nayak441a4502009-12-13 22:19:23 +010069/* TWL6030 register offsets */
70#define VREG_TRANS 1
71#define VREG_STATE 2
72#define VREG_VOLTAGE 3
Graeme Gregory4d94aee2011-05-22 21:21:23 +010073#define VREG_VOLTAGE_SMPS 4
Graeme Gregory4d94aee2011-05-22 21:21:23 +010074
David Brownellfa16a5c2009-02-08 10:37:06 -080075static inline int
Rajendra Nayak441a4502009-12-13 22:19:23 +010076twlreg_read(struct twlreg_info *info, unsigned slave_subgp, unsigned offset)
David Brownellfa16a5c2009-02-08 10:37:06 -080077{
78 u8 value;
79 int status;
80
Rajendra Nayak441a4502009-12-13 22:19:23 +010081 status = twl_i2c_read_u8(slave_subgp,
David Brownellfa16a5c2009-02-08 10:37:06 -080082 &value, info->base + offset);
83 return (status < 0) ? status : value;
84}
85
86static inline int
Rajendra Nayak441a4502009-12-13 22:19:23 +010087twlreg_write(struct twlreg_info *info, unsigned slave_subgp, unsigned offset,
88 u8 value)
David Brownellfa16a5c2009-02-08 10:37:06 -080089{
Rajendra Nayak441a4502009-12-13 22:19:23 +010090 return twl_i2c_write_u8(slave_subgp,
David Brownellfa16a5c2009-02-08 10:37:06 -080091 value, info->base + offset);
92}
93
94/*----------------------------------------------------------------------*/
95
96/* generic power resource operations, which work on all regulators */
97
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +010098static int twlreg_grp(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -080099{
Rajendra Nayak441a4502009-12-13 22:19:23 +0100100 return twlreg_read(rdev_get_drvdata(rdev), TWL_MODULE_PM_RECEIVER,
101 VREG_GRP);
David Brownellfa16a5c2009-02-08 10:37:06 -0800102}
103
104/*
105 * Enable/disable regulators by joining/leaving the P1 (processor) group.
106 * We assume nobody else is updating the DEV_GRP registers.
107 */
Rajendra Nayak441a4502009-12-13 22:19:23 +0100108/* definition for 4030 family */
109#define P3_GRP_4030 BIT(7) /* "peripherals" */
110#define P2_GRP_4030 BIT(6) /* secondary processor, modem, etc */
111#define P1_GRP_4030 BIT(5) /* CPU/Linux */
112/* definition for 6030 family */
113#define P3_GRP_6030 BIT(2) /* secondary processor, modem, etc */
114#define P2_GRP_6030 BIT(1) /* "peripherals" */
115#define P1_GRP_6030 BIT(0) /* CPU/Linux */
David Brownellfa16a5c2009-02-08 10:37:06 -0800116
Saquib Hermanb2456772011-04-01 10:22:44 +0530117static int twl4030reg_is_enabled(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800118{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100119 int state = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800120
121 if (state < 0)
122 return state;
123
Saquib Hermanb2456772011-04-01 10:22:44 +0530124 return state & P1_GRP_4030;
125}
126
Ivaylo Dimitrov2330b052016-03-26 10:28:13 +0200127#define PB_I2C_BUSY BIT(0)
128#define PB_I2C_BWEN BIT(1)
129
130/* Wait until buffer empty/ready to send a word on power bus. */
131static int twl4030_wait_pb_ready(void)
132{
133
134 int ret;
135 int timeout = 10;
136 u8 val;
137
138 do {
139 ret = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &val,
140 TWL4030_PM_MASTER_PB_CFG);
141 if (ret < 0)
142 return ret;
143
144 if (!(val & PB_I2C_BUSY))
145 return 0;
146
147 mdelay(1);
148 timeout--;
149 } while (timeout);
150
151 return -ETIMEDOUT;
152}
153
154/* Send a word over the powerbus */
155static int twl4030_send_pb_msg(unsigned msg)
156{
157 u8 val;
158 int ret;
159
160 /* save powerbus configuration */
161 ret = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &val,
162 TWL4030_PM_MASTER_PB_CFG);
163 if (ret < 0)
164 return ret;
165
166 /* Enable i2c access to powerbus */
167 ret = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, val | PB_I2C_BWEN,
168 TWL4030_PM_MASTER_PB_CFG);
169 if (ret < 0)
170 return ret;
171
172 ret = twl4030_wait_pb_ready();
173 if (ret < 0)
174 return ret;
175
176 ret = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, msg >> 8,
177 TWL4030_PM_MASTER_PB_WORD_MSB);
178 if (ret < 0)
179 return ret;
180
181 ret = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, msg & 0xff,
182 TWL4030_PM_MASTER_PB_WORD_LSB);
183 if (ret < 0)
184 return ret;
185
186 ret = twl4030_wait_pb_ready();
187 if (ret < 0)
188 return ret;
189
190 /* Restore powerbus configuration */
191 return twl_i2c_write_u8(TWL_MODULE_PM_MASTER, val,
Ivaylo Dimitrov74d8b452016-04-06 09:06:03 +0300192 TWL4030_PM_MASTER_PB_CFG);
Ivaylo Dimitrov2330b052016-03-26 10:28:13 +0200193}
194
Balaji T Kf8c29402011-05-20 19:03:51 +0530195static int twl4030reg_enable(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800196{
197 struct twlreg_info *info = rdev_get_drvdata(rdev);
198 int grp;
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +0200199 int ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800200
Axel Linb6f476c2012-04-11 11:07:17 +0800201 grp = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800202 if (grp < 0)
203 return grp;
204
Balaji T Kf8c29402011-05-20 19:03:51 +0530205 grp |= P1_GRP_4030;
Rajendra Nayak441a4502009-12-13 22:19:23 +0100206
Juha Keski-Saari53b8a9d2009-12-16 14:55:26 +0200207 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
208
Balaji T Kf8c29402011-05-20 19:03:51 +0530209 return ret;
210}
211
Balaji T K0ff38972011-05-20 19:03:52 +0530212static int twl4030reg_disable(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800213{
214 struct twlreg_info *info = rdev_get_drvdata(rdev);
215 int grp;
Saquib Herman21657ebf2011-04-01 10:22:42 +0530216 int ret;
David Brownellfa16a5c2009-02-08 10:37:06 -0800217
Axel Linb6f476c2012-04-11 11:07:17 +0800218 grp = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800219 if (grp < 0)
220 return grp;
221
Balaji T K0ff38972011-05-20 19:03:52 +0530222 grp &= ~(P1_GRP_4030 | P2_GRP_4030 | P3_GRP_4030);
Rajendra Nayak441a4502009-12-13 22:19:23 +0100223
Saquib Herman21657ebf2011-04-01 10:22:42 +0530224 ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);
225
Balaji T K0ff38972011-05-20 19:03:52 +0530226 return ret;
227}
228
Saquib Herman9a0244a2011-04-01 10:22:45 +0530229static int twl4030reg_get_status(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800230{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100231 int state = twlreg_grp(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800232
233 if (state < 0)
234 return state;
235 state &= 0x0f;
236
237 /* assume state != WARM_RESET; we'd not be running... */
238 if (!state)
239 return REGULATOR_STATUS_OFF;
240 return (state & BIT(3))
241 ? REGULATOR_STATUS_NORMAL
242 : REGULATOR_STATUS_STANDBY;
243}
244
Saquib Herman1a399622011-04-01 10:22:46 +0530245static int twl4030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
David Brownellfa16a5c2009-02-08 10:37:06 -0800246{
247 struct twlreg_info *info = rdev_get_drvdata(rdev);
248 unsigned message;
David Brownellfa16a5c2009-02-08 10:37:06 -0800249
250 /* We can only set the mode through state machine commands... */
251 switch (mode) {
252 case REGULATOR_MODE_NORMAL:
253 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_ACTIVE);
254 break;
255 case REGULATOR_MODE_STANDBY:
256 message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_SLEEP);
257 break;
258 default:
259 return -EINVAL;
260 }
261
Ivaylo Dimitrov2330b052016-03-26 10:28:13 +0200262 return twl4030_send_pb_msg(message);
David Brownellfa16a5c2009-02-08 10:37:06 -0800263}
264
Ivaylo Dimitrova221f952016-04-05 08:59:34 +0300265static inline unsigned int twl4030reg_map_mode(unsigned int mode)
266{
267 switch (mode) {
268 case RES_STATE_ACTIVE:
269 return REGULATOR_MODE_NORMAL;
270 case RES_STATE_SLEEP:
271 return REGULATOR_MODE_STANDBY;
272 default:
Douglas Anderson02f37032018-04-18 08:54:18 -0700273 return REGULATOR_MODE_INVALID;
Ivaylo Dimitrova221f952016-04-05 08:59:34 +0300274 }
275}
276
David Brownellfa16a5c2009-02-08 10:37:06 -0800277/*----------------------------------------------------------------------*/
278
279/*
280 * Support for adjustable-voltage LDOs uses a four bit (or less) voltage
281 * select field in its control register. We use tables indexed by VSEL
282 * to record voltages in milliVolts. (Accuracy is about three percent.)
283 *
284 * Note that VSEL values for VAUX2 changed in twl5030 and newer silicon;
285 * currently handled by listing two slightly different VAUX2 regulators,
286 * only one of which will be configured.
287 *
288 * VSEL values documented as "TI cannot support these values" are flagged
289 * in these tables as UNSUP() values; we normally won't assign them.
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200290 *
291 * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported.
292 * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting.
David Brownellfa16a5c2009-02-08 10:37:06 -0800293 */
David Brownellfa16a5c2009-02-08 10:37:06 -0800294#define UNSUP_MASK 0x8000
David Brownellfa16a5c2009-02-08 10:37:06 -0800295
296#define UNSUP(x) (UNSUP_MASK | (x))
NeilBrown411a2df2012-05-09 05:44:00 +1000297#define IS_UNSUP(info, x) \
298 ((UNSUP_MASK & (x)) && \
299 !((info)->features & TWL4030_ALLOW_UNSUPPORTED))
David Brownellfa16a5c2009-02-08 10:37:06 -0800300#define LDO_MV(x) (~UNSUP_MASK & (x))
301
302
303static const u16 VAUX1_VSEL_table[] = {
304 UNSUP(1500), UNSUP(1800), 2500, 2800,
305 3000, 3000, 3000, 3000,
306};
307static const u16 VAUX2_4030_VSEL_table[] = {
308 UNSUP(1000), UNSUP(1000), UNSUP(1200), 1300,
309 1500, 1800, UNSUP(1850), 2500,
310 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
311 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
312};
313static const u16 VAUX2_VSEL_table[] = {
314 1700, 1700, 1900, 1300,
315 1500, 1800, 2000, 2500,
316 2100, 2800, 2200, 2300,
317 2400, 2400, 2400, 2400,
318};
319static const u16 VAUX3_VSEL_table[] = {
320 1500, 1800, 2500, 2800,
Adrian Hunterd6bb69c2009-03-06 14:51:30 +0200321 3000, 3000, 3000, 3000,
David Brownellfa16a5c2009-02-08 10:37:06 -0800322};
323static const u16 VAUX4_VSEL_table[] = {
324 700, 1000, 1200, UNSUP(1300),
325 1500, 1800, UNSUP(1850), 2500,
David Brownell1897e742009-03-10 11:51:15 -0800326 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
327 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
David Brownellfa16a5c2009-02-08 10:37:06 -0800328};
329static const u16 VMMC1_VSEL_table[] = {
330 1850, 2850, 3000, 3150,
331};
332static const u16 VMMC2_VSEL_table[] = {
333 UNSUP(1000), UNSUP(1000), UNSUP(1200), UNSUP(1300),
334 UNSUP(1500), UNSUP(1800), 1850, UNSUP(2500),
335 2600, 2800, 2850, 3000,
336 3150, 3150, 3150, 3150,
337};
338static const u16 VPLL1_VSEL_table[] = {
339 1000, 1200, 1300, 1800,
340 UNSUP(2800), UNSUP(3000), UNSUP(3000), UNSUP(3000),
341};
342static const u16 VPLL2_VSEL_table[] = {
343 700, 1000, 1200, 1300,
344 UNSUP(1500), 1800, UNSUP(1850), UNSUP(2500),
345 UNSUP(2600), UNSUP(2800), UNSUP(2850), UNSUP(3000),
346 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
347};
348static const u16 VSIM_VSEL_table[] = {
349 UNSUP(1000), UNSUP(1200), UNSUP(1300), 1800,
350 2800, 3000, 3000, 3000,
351};
352static const u16 VDAC_VSEL_table[] = {
353 1200, 1300, 1800, 1800,
354};
Juha Keski-Saari07fc4932009-12-16 15:27:55 +0200355static const u16 VIO_VSEL_table[] = {
356 1800, 1850,
357};
358static const u16 VINTANA2_VSEL_table[] = {
359 2500, 2750,
360};
David Brownellfa16a5c2009-02-08 10:37:06 -0800361
Andreas Kemnade38291002019-08-14 23:43:19 +0200362/* 600mV to 1450mV in 12.5 mV steps */
Matti Vaittinen60ab7f42020-05-08 18:43:36 +0300363static const struct linear_range VDD1_ranges[] = {
Andreas Kemnade38291002019-08-14 23:43:19 +0200364 REGULATOR_LINEAR_RANGE(600000, 0, 68, 12500)
365};
366
367/* 600mV to 1450mV in 12.5 mV steps, everything above = 1500mV */
Matti Vaittinen60ab7f42020-05-08 18:43:36 +0300368static const struct linear_range VDD2_ranges[] = {
Andreas Kemnade38291002019-08-14 23:43:19 +0200369 REGULATOR_LINEAR_RANGE(600000, 0, 68, 12500),
370 REGULATOR_LINEAR_RANGE(1500000, 69, 69, 12500)
371};
372
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530373static int twl4030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
David Brownell66b659e2009-02-26 11:50:14 -0800374{
375 struct twlreg_info *info = rdev_get_drvdata(rdev);
376 int mV = info->table[index];
377
NeilBrown411a2df2012-05-09 05:44:00 +1000378 return IS_UNSUP(info, mV) ? 0 : (LDO_MV(mV) * 1000);
David Brownell66b659e2009-02-26 11:50:14 -0800379}
380
David Brownellfa16a5c2009-02-08 10:37:06 -0800381static int
Axel Lindd16b1f2012-03-26 09:30:06 +0800382twl4030ldo_set_voltage_sel(struct regulator_dev *rdev, unsigned selector)
David Brownellfa16a5c2009-02-08 10:37:06 -0800383{
384 struct twlreg_info *info = rdev_get_drvdata(rdev);
David Brownellfa16a5c2009-02-08 10:37:06 -0800385
Axel Lindd16b1f2012-03-26 09:30:06 +0800386 return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE,
387 selector);
David Brownellfa16a5c2009-02-08 10:37:06 -0800388}
389
Axel Lin6949fbe2013-02-16 10:09:54 +0800390static int twl4030ldo_get_voltage_sel(struct regulator_dev *rdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800391{
392 struct twlreg_info *info = rdev_get_drvdata(rdev);
Axel Lin6949fbe2013-02-16 10:09:54 +0800393 int vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE);
David Brownellfa16a5c2009-02-08 10:37:06 -0800394
395 if (vsel < 0)
396 return vsel;
397
398 vsel &= info->table_len - 1;
Axel Lin6949fbe2013-02-16 10:09:54 +0800399 return vsel;
David Brownellfa16a5c2009-02-08 10:37:06 -0800400}
401
Axel Lin401861f2019-04-03 07:41:54 +0800402static const struct regulator_ops twl4030ldo_ops = {
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530403 .list_voltage = twl4030ldo_list_voltage,
David Brownell66b659e2009-02-26 11:50:14 -0800404
Axel Lindd16b1f2012-03-26 09:30:06 +0800405 .set_voltage_sel = twl4030ldo_set_voltage_sel,
Axel Lin6949fbe2013-02-16 10:09:54 +0800406 .get_voltage_sel = twl4030ldo_get_voltage_sel,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530407
Balaji T Kf8c29402011-05-20 19:03:51 +0530408 .enable = twl4030reg_enable,
Balaji T K0ff38972011-05-20 19:03:52 +0530409 .disable = twl4030reg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530410 .is_enabled = twl4030reg_is_enabled,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530411
Saquib Herman1a399622011-04-01 10:22:46 +0530412 .set_mode = twl4030reg_set_mode,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530413
Saquib Herman9a0244a2011-04-01 10:22:45 +0530414 .get_status = twl4030reg_get_status,
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530415};
416
Tero Kristoba305e32011-11-28 16:53:19 +0200417static int
418twl4030smps_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
419 unsigned *selector)
420{
421 struct twlreg_info *info = rdev_get_drvdata(rdev);
422 int vsel = DIV_ROUND_UP(min_uV - 600000, 12500);
423
Nicolae Rosia8313a4f2016-11-12 14:42:13 +0200424 twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE_SMPS_4030, vsel);
Tero Kristo63bfff42012-02-16 12:27:52 +0200425
Tero Kristoba305e32011-11-28 16:53:19 +0200426 return 0;
427}
428
429static int twl4030smps_get_voltage(struct regulator_dev *rdev)
430{
431 struct twlreg_info *info = rdev_get_drvdata(rdev);
Tero Kristo63bfff42012-02-16 12:27:52 +0200432 int vsel;
433
Tero Kristo63bfff42012-02-16 12:27:52 +0200434 vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
Tero Kristoba305e32011-11-28 16:53:19 +0200435 VREG_VOLTAGE_SMPS_4030);
436
437 return vsel * 12500 + 600000;
438}
439
Axel Lin401861f2019-04-03 07:41:54 +0800440static const struct regulator_ops twl4030smps_ops = {
Andreas Kemnade38291002019-08-14 23:43:19 +0200441 .list_voltage = regulator_list_voltage_linear_range,
442
Tero Kristoba305e32011-11-28 16:53:19 +0200443 .set_voltage = twl4030smps_set_voltage,
444 .get_voltage = twl4030smps_get_voltage,
445};
446
David Brownellfa16a5c2009-02-08 10:37:06 -0800447/*----------------------------------------------------------------------*/
448
Axel Lin401861f2019-04-03 07:41:54 +0800449static const struct regulator_ops twl4030fixed_ops = {
Axel Linb3816d52012-12-22 13:31:19 +0800450 .list_voltage = regulator_list_voltage_linear,
David Brownell66b659e2009-02-26 11:50:14 -0800451
Balaji T Kf8c29402011-05-20 19:03:51 +0530452 .enable = twl4030reg_enable,
Balaji T K0ff38972011-05-20 19:03:52 +0530453 .disable = twl4030reg_disable,
Saquib Hermanb2456772011-04-01 10:22:44 +0530454 .is_enabled = twl4030reg_is_enabled,
455
Saquib Herman1a399622011-04-01 10:22:46 +0530456 .set_mode = twl4030reg_set_mode,
Saquib Hermanb2456772011-04-01 10:22:44 +0530457
Saquib Herman9a0244a2011-04-01 10:22:45 +0530458 .get_status = twl4030reg_get_status,
Saquib Hermanb2456772011-04-01 10:22:44 +0530459};
460
David Brownellfa16a5c2009-02-08 10:37:06 -0800461/*----------------------------------------------------------------------*/
462
Rajendra Nayak2098e952012-02-28 15:09:11 +0530463#define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000464static const struct twlreg_info TWL4030_INFO_##label = { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800465 .base = offset, \
466 .id = num, \
467 .table_len = ARRAY_SIZE(label##_VSEL_table), \
468 .table = label##_VSEL_table, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200469 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800470 .desc = { \
471 .name = #label, \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530472 .id = TWL4030_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800473 .n_voltages = ARRAY_SIZE(label##_VSEL_table), \
Rajendra Nayak3e3d3be2010-04-22 14:18:32 +0530474 .ops = &twl4030ldo_ops, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800475 .type = REGULATOR_VOLTAGE, \
476 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800477 .enable_time = turnon_delay, \
Ivaylo Dimitrova221f952016-04-05 08:59:34 +0300478 .of_map_mode = twl4030reg_map_mode, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800479 }, \
480 }
481
Andreas Kemnade38291002019-08-14 23:43:19 +0200482#define TWL4030_ADJUSTABLE_SMPS(label, offset, num, turnon_delay, remap_conf, \
483 n_volt) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000484static const struct twlreg_info TWL4030_INFO_##label = { \
Tero Kristoba305e32011-11-28 16:53:19 +0200485 .base = offset, \
486 .id = num, \
Tero Kristoba305e32011-11-28 16:53:19 +0200487 .remap = remap_conf, \
488 .desc = { \
489 .name = #label, \
490 .id = TWL4030_REG_##label, \
491 .ops = &twl4030smps_ops, \
492 .type = REGULATOR_VOLTAGE, \
493 .owner = THIS_MODULE, \
Axel Linfca53d82012-07-04 10:46:34 +0800494 .enable_time = turnon_delay, \
Ivaylo Dimitrova221f952016-04-05 08:59:34 +0300495 .of_map_mode = twl4030reg_map_mode, \
Andreas Kemnade38291002019-08-14 23:43:19 +0200496 .n_voltages = n_volt, \
497 .n_linear_ranges = ARRAY_SIZE(label ## _ranges), \
498 .linear_ranges = label ## _ranges, \
Tero Kristoba305e32011-11-28 16:53:19 +0200499 }, \
500 }
501
Nicolae Rosiadab780a2016-11-12 14:42:14 +0200502#define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
503 remap_conf) \
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000504static const struct twlreg_info TWLFIXED_INFO_##label = { \
David Brownellfa16a5c2009-02-08 10:37:06 -0800505 .base = offset, \
506 .id = num, \
Juha Keski-Saari045f9722009-12-16 14:49:52 +0200507 .remap = remap_conf, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800508 .desc = { \
509 .name = #label, \
Nicolae Rosiadab780a2016-11-12 14:42:14 +0200510 .id = TWL4030##_REG_##label, \
David Brownell66b659e2009-02-26 11:50:14 -0800511 .n_voltages = 1, \
Nicolae Rosiadab780a2016-11-12 14:42:14 +0200512 .ops = &twl4030fixed_ops, \
David Brownellfa16a5c2009-02-08 10:37:06 -0800513 .type = REGULATOR_VOLTAGE, \
514 .owner = THIS_MODULE, \
Axel Linb3816d52012-12-22 13:31:19 +0800515 .min_uV = mVolts * 1000, \
Axel Linfca53d82012-07-04 10:46:34 +0800516 .enable_time = turnon_delay, \
Nicolae Rosiadab780a2016-11-12 14:42:14 +0200517 .of_map_mode = twl4030reg_map_mode, \
Balaji T K8e6de4a2011-02-10 18:44:50 +0530518 }, \
519 }
520
David Brownellfa16a5c2009-02-08 10:37:06 -0800521/*
522 * We list regulators here if systems need some level of
523 * software control over them after boot.
524 */
Rajendra Nayak2098e952012-02-28 15:09:11 +0530525TWL4030_ADJUSTABLE_LDO(VAUX1, 0x17, 1, 100, 0x08);
526TWL4030_ADJUSTABLE_LDO(VAUX2_4030, 0x1b, 2, 100, 0x08);
527TWL4030_ADJUSTABLE_LDO(VAUX2, 0x1b, 2, 100, 0x08);
528TWL4030_ADJUSTABLE_LDO(VAUX3, 0x1f, 3, 100, 0x08);
529TWL4030_ADJUSTABLE_LDO(VAUX4, 0x23, 4, 100, 0x08);
530TWL4030_ADJUSTABLE_LDO(VMMC1, 0x27, 5, 100, 0x08);
531TWL4030_ADJUSTABLE_LDO(VMMC2, 0x2b, 6, 100, 0x08);
532TWL4030_ADJUSTABLE_LDO(VPLL1, 0x2f, 7, 100, 0x00);
533TWL4030_ADJUSTABLE_LDO(VPLL2, 0x33, 8, 100, 0x08);
534TWL4030_ADJUSTABLE_LDO(VSIM, 0x37, 9, 100, 0x00);
535TWL4030_ADJUSTABLE_LDO(VDAC, 0x3b, 10, 100, 0x08);
536TWL4030_ADJUSTABLE_LDO(VINTANA2, 0x43, 12, 100, 0x08);
537TWL4030_ADJUSTABLE_LDO(VIO, 0x4b, 14, 1000, 0x08);
Andreas Kemnade38291002019-08-14 23:43:19 +0200538TWL4030_ADJUSTABLE_SMPS(VDD1, 0x55, 15, 1000, 0x08, 68);
539TWL4030_ADJUSTABLE_SMPS(VDD2, 0x63, 16, 1000, 0x08, 69);
Rajendra Nayak2098e952012-02-28 15:09:11 +0530540/* VUSBCP is managed *only* by the USB subchip */
Aaro Koskinen908d6d52012-08-15 01:10:04 +0300541TWL4030_FIXED_LDO(VINTANA1, 0x3f, 1500, 11, 100, 0x08);
Rajendra Nayak2098e952012-02-28 15:09:11 +0530542TWL4030_FIXED_LDO(VINTDIG, 0x47, 1500, 13, 100, 0x08);
543TWL4030_FIXED_LDO(VUSB1V5, 0x71, 1500, 17, 100, 0x08);
544TWL4030_FIXED_LDO(VUSB1V8, 0x74, 1800, 18, 100, 0x08);
545TWL4030_FIXED_LDO(VUSB3V1, 0x77, 3100, 19, 150, 0x08);
Graeme Gregory4d94aee2011-05-22 21:21:23 +0100546
Rajendra Nayak2098e952012-02-28 15:09:11 +0530547#define TWL_OF_MATCH(comp, family, label) \
548 { \
549 .compatible = comp, \
550 .data = &family##_INFO_##label, \
551 }
552
553#define TWL4030_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL4030, label)
554#define TWL6030_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL6030, label)
Graeme Gregory89ce43f2013-06-19 15:24:02 +0300555#define TWL6032_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWL6032, label)
Rajendra Nayak2098e952012-02-28 15:09:11 +0530556#define TWLFIXED_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWLFIXED, label)
Rajendra Nayak2098e952012-02-28 15:09:11 +0530557#define TWLSMPS_OF_MATCH(comp, label) TWL_OF_MATCH(comp, TWLSMPS, label)
558
Greg Kroah-Hartman3d68dfe2012-12-21 13:26:06 -0800559static const struct of_device_id twl_of_match[] = {
Rajendra Nayak2098e952012-02-28 15:09:11 +0530560 TWL4030_OF_MATCH("ti,twl4030-vaux1", VAUX1),
561 TWL4030_OF_MATCH("ti,twl4030-vaux2", VAUX2_4030),
562 TWL4030_OF_MATCH("ti,twl5030-vaux2", VAUX2),
563 TWL4030_OF_MATCH("ti,twl4030-vaux3", VAUX3),
564 TWL4030_OF_MATCH("ti,twl4030-vaux4", VAUX4),
565 TWL4030_OF_MATCH("ti,twl4030-vmmc1", VMMC1),
566 TWL4030_OF_MATCH("ti,twl4030-vmmc2", VMMC2),
567 TWL4030_OF_MATCH("ti,twl4030-vpll1", VPLL1),
568 TWL4030_OF_MATCH("ti,twl4030-vpll2", VPLL2),
569 TWL4030_OF_MATCH("ti,twl4030-vsim", VSIM),
570 TWL4030_OF_MATCH("ti,twl4030-vdac", VDAC),
571 TWL4030_OF_MATCH("ti,twl4030-vintana2", VINTANA2),
572 TWL4030_OF_MATCH("ti,twl4030-vio", VIO),
573 TWL4030_OF_MATCH("ti,twl4030-vdd1", VDD1),
574 TWL4030_OF_MATCH("ti,twl4030-vdd2", VDD2),
Aaro Koskinen908d6d52012-08-15 01:10:04 +0300575 TWLFIXED_OF_MATCH("ti,twl4030-vintana1", VINTANA1),
Rajendra Nayak2098e952012-02-28 15:09:11 +0530576 TWLFIXED_OF_MATCH("ti,twl4030-vintdig", VINTDIG),
577 TWLFIXED_OF_MATCH("ti,twl4030-vusb1v5", VUSB1V5),
578 TWLFIXED_OF_MATCH("ti,twl4030-vusb1v8", VUSB1V8),
579 TWLFIXED_OF_MATCH("ti,twl4030-vusb3v1", VUSB3V1),
Rajendra Nayak2098e952012-02-28 15:09:11 +0530580 {},
581};
582MODULE_DEVICE_TABLE(of, twl_of_match);
583
Bill Pembertona5023572012-11-19 13:22:22 -0500584static int twlreg_probe(struct platform_device *pdev)
David Brownellfa16a5c2009-02-08 10:37:06 -0800585{
Nicolae Rosia8313a4f2016-11-12 14:42:13 +0200586 int id;
David Brownellfa16a5c2009-02-08 10:37:06 -0800587 struct twlreg_info *info;
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000588 const struct twlreg_info *template;
David Brownellfa16a5c2009-02-08 10:37:06 -0800589 struct regulator_init_data *initdata;
590 struct regulation_constraints *c;
591 struct regulator_dev *rdev;
Mark Brownc172708d2012-04-04 00:50:22 +0100592 struct regulator_config config = { };
David Brownellfa16a5c2009-02-08 10:37:06 -0800593
Axel Lin93997a02019-01-19 20:41:35 +0800594 template = of_device_get_match_data(&pdev->dev);
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000595 if (!template)
David Brownellfa16a5c2009-02-08 10:37:06 -0800596 return -ENODEV;
597
Nicolae Rosia25d82332016-11-12 14:42:12 +0200598 id = template->desc.id;
599 initdata = of_get_regulator_init_data(&pdev->dev, pdev->dev.of_node,
600 &template->desc);
David Brownellfa16a5c2009-02-08 10:37:06 -0800601 if (!initdata)
602 return -EINVAL;
603
Axel Lincd01e322014-06-16 09:44:20 +0800604 info = devm_kmemdup(&pdev->dev, template, sizeof(*info), GFP_KERNEL);
Arnd Bergmann0ffff5a2012-08-14 12:41:50 +0000605 if (!info)
606 return -ENOMEM;
607
David Brownellfa16a5c2009-02-08 10:37:06 -0800608 /* Constrain board-specific capabilities according to what
609 * this driver and the chip itself can actually do.
610 */
611 c = &initdata->constraints;
David Brownellfa16a5c2009-02-08 10:37:06 -0800612 c->valid_modes_mask &= REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY;
613 c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE
614 | REGULATOR_CHANGE_MODE
615 | REGULATOR_CHANGE_STATUS;
Rajendra Nayak2098e952012-02-28 15:09:11 +0530616 switch (id) {
Juha Keski-Saari205e5cd2009-12-16 15:27:56 +0200617 case TWL4030_REG_VIO:
618 case TWL4030_REG_VDD1:
619 case TWL4030_REG_VDD2:
620 case TWL4030_REG_VPLL1:
621 case TWL4030_REG_VINTANA1:
622 case TWL4030_REG_VINTANA2:
623 case TWL4030_REG_VINTDIG:
624 c->always_on = true;
625 break;
626 default:
627 break;
628 }
David Brownellfa16a5c2009-02-08 10:37:06 -0800629
Mark Brownc172708d2012-04-04 00:50:22 +0100630 config.dev = &pdev->dev;
631 config.init_data = initdata;
632 config.driver_data = info;
633 config.of_node = pdev->dev.of_node;
634
Jingoo Han00ce0702013-09-30 09:59:04 +0900635 rdev = devm_regulator_register(&pdev->dev, &info->desc, &config);
David Brownellfa16a5c2009-02-08 10:37:06 -0800636 if (IS_ERR(rdev)) {
637 dev_err(&pdev->dev, "can't register %s, %ld\n",
638 info->desc.name, PTR_ERR(rdev));
639 return PTR_ERR(rdev);
640 }
641 platform_set_drvdata(pdev, rdev);
642
Nicolae Rosiacac28ae2016-11-12 14:42:15 +0200643 twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_REMAP, info->remap);
Juha Keski-Saari30010fa2009-12-16 15:27:58 +0200644
David Brownellfa16a5c2009-02-08 10:37:06 -0800645 /* NOTE: many regulators support short-circuit IRQs (presentable
646 * as REGULATOR_OVER_CURRENT notifications?) configured via:
647 * - SC_CONFIG
648 * - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
649 * - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
650 * - IT_CONFIG
651 */
652
653 return 0;
654}
655
Nicolae Rosiacac28ae2016-11-12 14:42:15 +0200656MODULE_ALIAS("platform:twl4030_reg");
David Brownellfa16a5c2009-02-08 10:37:06 -0800657
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100658static struct platform_driver twlreg_driver = {
659 .probe = twlreg_probe,
David Brownellfa16a5c2009-02-08 10:37:06 -0800660 /* NOTE: short name, to work around driver model truncation of
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100661 * "twl_regulator.12" (and friends) to "twl_regulator.1".
David Brownellfa16a5c2009-02-08 10:37:06 -0800662 */
Rajendra Nayak2098e952012-02-28 15:09:11 +0530663 .driver = {
Nicolae Rosiacac28ae2016-11-12 14:42:15 +0200664 .name = "twl4030_reg",
Rajendra Nayak2098e952012-02-28 15:09:11 +0530665 .of_match_table = of_match_ptr(twl_of_match),
666 },
David Brownellfa16a5c2009-02-08 10:37:06 -0800667};
668
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100669static int __init twlreg_init(void)
David Brownellfa16a5c2009-02-08 10:37:06 -0800670{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100671 return platform_driver_register(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -0800672}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100673subsys_initcall(twlreg_init);
David Brownellfa16a5c2009-02-08 10:37:06 -0800674
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100675static void __exit twlreg_exit(void)
David Brownellfa16a5c2009-02-08 10:37:06 -0800676{
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100677 platform_driver_unregister(&twlreg_driver);
David Brownellfa16a5c2009-02-08 10:37:06 -0800678}
Rajendra Nayakc4aa6f32009-12-13 21:36:49 +0100679module_exit(twlreg_exit)
David Brownellfa16a5c2009-02-08 10:37:06 -0800680
Nicolae Rosiacac28ae2016-11-12 14:42:15 +0200681MODULE_DESCRIPTION("TWL4030 regulator driver");
David Brownellfa16a5c2009-02-08 10:37:06 -0800682MODULE_LICENSE("GPL");