twl-regulator.c 21.3 KB
Newer Older
D
David Brownell 已提交
1
/*
2
 * twl-regulator.c -- support regulators in twl4030/twl6030 family chips
D
David Brownell 已提交
3 4 5 6 7 8 9 10 11 12 13 14
 *
 * Copyright (C) 2008 David Brownell
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/err.h>
15
#include <linux/delay.h>
D
David Brownell 已提交
16 17 18
#include <linux/platform_device.h>
#include <linux/regulator/driver.h>
#include <linux/regulator/machine.h>
19
#include <linux/i2c/twl.h>
D
David Brownell 已提交
20 21 22


/*
23
 * The TWL4030/TW5030/TPS659x0/TWL6030 family chips include power management, a
D
David Brownell 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36
 * USB OTG transceiver, an RTC, ADC, PWM, and lots more.  Some versions
 * include an audio codec, battery charger, and more voltage regulators.
 * These chips are often used in OMAP-based systems.
 *
 * This driver implements software-based resource control for various
 * voltage regulators.  This is usually augmented with state machine
 * based control.
 */

struct twlreg_info {
	/* start of regulator's PM_RECEIVER control register bank */
	u8			base;

37
	/* twl resource ID, for resource control state machine */
D
David Brownell 已提交
38 39 40 41 42 43
	u8			id;

	/* voltage in mV = table[VSEL]; table_len must be a power-of-two */
	u8			table_len;
	const u16		*table;

44 45 46 47 48 49
	/* regulator specific turn-on delay */
	u16			delay;

	/* State REMAP default configuration */
	u8			remap;

D
David Brownell 已提交
50 51
	/* chip constraints on regulator behavior */
	u16			min_mV;
52
	u16			max_mV;
D
David Brownell 已提交
53 54 55 56 57 58 59 60 61 62

	/* used by regulator core */
	struct regulator_desc	desc;
};


/* LDO control registers ... offset is from the base of its register bank.
 * The first three registers of all power resource banks help hardware to
 * manage the various resource groups.
 */
63
/* Common offset in TWL4030/6030 */
D
David Brownell 已提交
64
#define VREG_GRP		0
65
/* TWL4030 register offsets */
D
David Brownell 已提交
66 67 68
#define VREG_TYPE		1
#define VREG_REMAP		2
#define VREG_DEDICATED		3	/* LDO control */
69 70 71 72 73 74 75 76 77
/* TWL6030 register offsets */
#define VREG_TRANS		1
#define VREG_STATE		2
#define VREG_VOLTAGE		3
/* TWL6030 Misc register offsets */
#define VREG_BC_ALL		1
#define VREG_BC_REF		2
#define VREG_BC_PROC		3
#define VREG_BC_CLK_RST		4
D
David Brownell 已提交
78

79 80 81
/* TWL6030 LDO register values for CFG_STATE */
#define TWL6030_CFG_STATE_OFF	0x00
#define TWL6030_CFG_STATE_ON	0x01
82 83
#define TWL6030_CFG_STATE_OFF2	0x02
#define TWL6030_CFG_STATE_SLEEP	0x03
84
#define TWL6030_CFG_STATE_GRP_SHIFT	5
85 86 87 88
#define TWL6030_CFG_STATE_APP_SHIFT	2
#define TWL6030_CFG_STATE_APP_MASK	(0x03 << TWL6030_CFG_STATE_APP_SHIFT)
#define TWL6030_CFG_STATE_APP(v)	(((v) & TWL6030_CFG_STATE_APP_MASK) >>\
						TWL6030_CFG_STATE_APP_SHIFT)
89

D
David Brownell 已提交
90
static inline int
91
twlreg_read(struct twlreg_info *info, unsigned slave_subgp, unsigned offset)
D
David Brownell 已提交
92 93 94 95
{
	u8 value;
	int status;

96
	status = twl_i2c_read_u8(slave_subgp,
D
David Brownell 已提交
97 98 99 100 101
			&value, info->base + offset);
	return (status < 0) ? status : value;
}

static inline int
102 103
twlreg_write(struct twlreg_info *info, unsigned slave_subgp, unsigned offset,
						 u8 value)
D
David Brownell 已提交
104
{
105
	return twl_i2c_write_u8(slave_subgp,
D
David Brownell 已提交
106 107 108 109 110 111 112
			value, info->base + offset);
}

/*----------------------------------------------------------------------*/

/* generic power resource operations, which work on all regulators */

113
static int twlreg_grp(struct regulator_dev *rdev)
D
David Brownell 已提交
114
{
115 116
	return twlreg_read(rdev_get_drvdata(rdev), TWL_MODULE_PM_RECEIVER,
								 VREG_GRP);
D
David Brownell 已提交
117 118 119 120 121 122
}

/*
 * Enable/disable regulators by joining/leaving the P1 (processor) group.
 * We assume nobody else is updating the DEV_GRP registers.
 */
123 124 125 126 127 128 129 130
/* definition for 4030 family */
#define P3_GRP_4030	BIT(7)		/* "peripherals" */
#define P2_GRP_4030	BIT(6)		/* secondary processor, modem, etc */
#define P1_GRP_4030	BIT(5)		/* CPU/Linux */
/* definition for 6030 family */
#define P3_GRP_6030	BIT(2)		/* secondary processor, modem, etc */
#define P2_GRP_6030	BIT(1)		/* "peripherals" */
#define P1_GRP_6030	BIT(0)		/* CPU/Linux */
D
David Brownell 已提交
131

132
static int twl4030reg_is_enabled(struct regulator_dev *rdev)
D
David Brownell 已提交
133
{
134
	int	state = twlreg_grp(rdev);
D
David Brownell 已提交
135 136 137 138

	if (state < 0)
		return state;

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
	return state & P1_GRP_4030;
}

static int twl6030reg_is_enabled(struct regulator_dev *rdev)
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int			grp, val;

	grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
	if (grp < 0)
		return grp;

	grp &= P1_GRP_6030;

	val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);
	val = TWL6030_CFG_STATE_APP(val);

	return grp && (val == TWL6030_CFG_STATE_ON);
D
David Brownell 已提交
157 158
}

159
static int twl4030reg_enable(struct regulator_dev *rdev)
D
David Brownell 已提交
160 161 162
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int			grp;
163
	int			ret;
D
David Brownell 已提交
164

165
	grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
D
David Brownell 已提交
166 167 168
	if (grp < 0)
		return grp;

169
	grp |= P1_GRP_4030;
170

171 172
	ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
	udelay(info->delay);

	return ret;
}

static int twl6030reg_enable(struct regulator_dev *rdev)
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int			grp;
	int			ret;

	grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
	if (grp < 0)
		return grp;

	ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
			grp << TWL6030_CFG_STATE_GRP_SHIFT |
			TWL6030_CFG_STATE_ON);
191

192 193 194
	udelay(info->delay);

	return ret;
D
David Brownell 已提交
195 196
}

197
static int twlreg_disable(struct regulator_dev *rdev)
D
David Brownell 已提交
198 199 200
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int			grp;
201
	int			ret;
D
David Brownell 已提交
202

203
	grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);
D
David Brownell 已提交
204 205 206
	if (grp < 0)
		return grp;

207 208 209 210 211 212 213 214 215 216
	/* For 6030, set the off state for all grps enabled */
	if (twl_class_is_6030()) {
		ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
			(grp & (P1_GRP_6030 | P2_GRP_6030 | P3_GRP_6030)) <<
				TWL6030_CFG_STATE_GRP_SHIFT |
			TWL6030_CFG_STATE_OFF);
		if (ret)
			return ret;
	}

217
	if (twl_class_is_4030())
218
		grp &= ~(P1_GRP_4030 | P2_GRP_4030 | P3_GRP_4030);
219
	else
220
		grp &= ~(P1_GRP_6030 | P2_GRP_6030 | P3_GRP_6030);
221

222 223 224 225 226 227 228 229 230
	ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_GRP, grp);

	/* Next, associate cleared grp in state register */
	if (!ret && twl_class_is_6030())
		ret = twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE,
				grp << TWL6030_CFG_STATE_GRP_SHIFT |
				TWL6030_CFG_STATE_OFF);

	return ret;
D
David Brownell 已提交
231 232
}

233
static int twl4030reg_get_status(struct regulator_dev *rdev)
D
David Brownell 已提交
234
{
235
	int	state = twlreg_grp(rdev);
D
David Brownell 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248

	if (state < 0)
		return state;
	state &= 0x0f;

	/* assume state != WARM_RESET; we'd not be running...  */
	if (!state)
		return REGULATOR_STATUS_OFF;
	return (state & BIT(3))
		? REGULATOR_STATUS_NORMAL
		: REGULATOR_STATUS_STANDBY;
}

249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
static int twl6030reg_get_status(struct regulator_dev *rdev)
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int			val;

	val = twlreg_grp(rdev);
	if (val < 0)
		return val;

	val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);

	switch (TWL6030_CFG_STATE_APP(val)) {
	case TWL6030_CFG_STATE_ON:
		return REGULATOR_STATUS_NORMAL;

	case TWL6030_CFG_STATE_SLEEP:
		return REGULATOR_STATUS_STANDBY;

	case TWL6030_CFG_STATE_OFF:
	case TWL6030_CFG_STATE_OFF2:
	default:
		break;
	}

	return REGULATOR_STATUS_OFF;
}

276
static int twl4030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
D
David Brownell 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	unsigned		message;
	int			status;

	/* We can only set the mode through state machine commands... */
	switch (mode) {
	case REGULATOR_MODE_NORMAL:
		message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_ACTIVE);
		break;
	case REGULATOR_MODE_STANDBY:
		message = MSG_SINGULAR(DEV_GRP_P1, info->id, RES_STATE_SLEEP);
		break;
	default:
		return -EINVAL;
	}

	/* Ensure the resource is associated with some group */
295
	status = twlreg_grp(rdev);
D
David Brownell 已提交
296 297
	if (status < 0)
		return status;
298
	if (!(status & (P3_GRP_4030 | P2_GRP_4030 | P1_GRP_4030)))
D
David Brownell 已提交
299 300
		return -EACCES;

301
	status = twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
302 303
			message >> 8, TWL4030_PM_MASTER_PB_WORD_MSB);
	if (status < 0)
D
David Brownell 已提交
304 305
		return status;

306
	return twl_i2c_write_u8(TWL_MODULE_PM_MASTER,
307
			message & 0xff, TWL4030_PM_MASTER_PB_WORD_LSB);
D
David Brownell 已提交
308 309
}

310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
static int twl6030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int grp;
	int val;

	grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP);

	if (grp < 0)
		return grp;

	/* Compose the state register settings */
	val = grp << TWL6030_CFG_STATE_GRP_SHIFT;
	/* We can only set the mode through state machine commands... */
	switch (mode) {
	case REGULATOR_MODE_NORMAL:
		val |= TWL6030_CFG_STATE_ON;
		break;
	case REGULATOR_MODE_STANDBY:
		val |= TWL6030_CFG_STATE_SLEEP;
		break;

	default:
		return -EINVAL;
	}

	return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_STATE, val);
}

D
David Brownell 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351
/*----------------------------------------------------------------------*/

/*
 * Support for adjustable-voltage LDOs uses a four bit (or less) voltage
 * select field in its control register.   We use tables indexed by VSEL
 * to record voltages in milliVolts.  (Accuracy is about three percent.)
 *
 * Note that VSEL values for VAUX2 changed in twl5030 and newer silicon;
 * currently handled by listing two slightly different VAUX2 regulators,
 * only one of which will be configured.
 *
 * VSEL values documented as "TI cannot support these values" are flagged
 * in these tables as UNSUP() values; we normally won't assign them.
352 353 354
 *
 * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported.
 * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting.
D
David Brownell 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
 */
#ifdef CONFIG_TWL4030_ALLOW_UNSUPPORTED
#define UNSUP_MASK	0x0000
#else
#define UNSUP_MASK	0x8000
#endif

#define UNSUP(x)	(UNSUP_MASK | (x))
#define IS_UNSUP(x)	(UNSUP_MASK & (x))
#define LDO_MV(x)	(~UNSUP_MASK & (x))


static const u16 VAUX1_VSEL_table[] = {
	UNSUP(1500), UNSUP(1800), 2500, 2800,
	3000, 3000, 3000, 3000,
};
static const u16 VAUX2_4030_VSEL_table[] = {
	UNSUP(1000), UNSUP(1000), UNSUP(1200), 1300,
	1500, 1800, UNSUP(1850), 2500,
	UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
	UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
};
static const u16 VAUX2_VSEL_table[] = {
	1700, 1700, 1900, 1300,
	1500, 1800, 2000, 2500,
	2100, 2800, 2200, 2300,
	2400, 2400, 2400, 2400,
};
static const u16 VAUX3_VSEL_table[] = {
	1500, 1800, 2500, 2800,
385
	3000, 3000, 3000, 3000,
D
David Brownell 已提交
386 387 388 389
};
static const u16 VAUX4_VSEL_table[] = {
	700, 1000, 1200, UNSUP(1300),
	1500, 1800, UNSUP(1850), 2500,
390 391
	UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
	UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
D
David Brownell 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
};
static const u16 VMMC1_VSEL_table[] = {
	1850, 2850, 3000, 3150,
};
static const u16 VMMC2_VSEL_table[] = {
	UNSUP(1000), UNSUP(1000), UNSUP(1200), UNSUP(1300),
	UNSUP(1500), UNSUP(1800), 1850, UNSUP(2500),
	2600, 2800, 2850, 3000,
	3150, 3150, 3150, 3150,
};
static const u16 VPLL1_VSEL_table[] = {
	1000, 1200, 1300, 1800,
	UNSUP(2800), UNSUP(3000), UNSUP(3000), UNSUP(3000),
};
static const u16 VPLL2_VSEL_table[] = {
	700, 1000, 1200, 1300,
	UNSUP(1500), 1800, UNSUP(1850), UNSUP(2500),
	UNSUP(2600), UNSUP(2800), UNSUP(2850), UNSUP(3000),
	UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
};
static const u16 VSIM_VSEL_table[] = {
	UNSUP(1000), UNSUP(1200), UNSUP(1300), 1800,
	2800, 3000, 3000, 3000,
};
static const u16 VDAC_VSEL_table[] = {
	1200, 1300, 1800, 1800,
};
419 420 421 422 423 424 425 426 427 428 429 430
static const u16 VDD1_VSEL_table[] = {
	800, 1450,
};
static const u16 VDD2_VSEL_table[] = {
	800, 1450, 1500,
};
static const u16 VIO_VSEL_table[] = {
	1800, 1850,
};
static const u16 VINTANA2_VSEL_table[] = {
	2500, 2750,
};
D
David Brownell 已提交
431

432
static int twl4030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
433 434 435 436 437 438 439
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int			mV = info->table[index];

	return IS_UNSUP(mV) ? 0 : (LDO_MV(mV) * 1000);
}

D
David Brownell 已提交
440
static int
441 442
twl4030ldo_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
		       unsigned *selector)
D
David Brownell 已提交
443 444 445 446 447 448 449 450 451 452 453 454
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int			vsel;

	for (vsel = 0; vsel < info->table_len; vsel++) {
		int mV = info->table[vsel];
		int uV;

		if (IS_UNSUP(mV))
			continue;
		uV = LDO_MV(mV) * 1000;

455 456
		/* REVISIT for VAUX2, first match may not be best/lowest */

D
David Brownell 已提交
457
		/* use the first in-range value */
458 459
		if (min_uV <= uV && uV <= max_uV) {
			*selector = vsel;
460 461
			return twlreg_write(info, TWL_MODULE_PM_RECEIVER,
							VREG_VOLTAGE, vsel);
462
		}
D
David Brownell 已提交
463 464 465 466 467
	}

	return -EDOM;
}

468
static int twl4030ldo_get_voltage(struct regulator_dev *rdev)
D
David Brownell 已提交
469 470
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
471 472
	int		vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
								VREG_VOLTAGE);
D
David Brownell 已提交
473 474 475 476 477 478 479 480

	if (vsel < 0)
		return vsel;

	vsel &= info->table_len - 1;
	return LDO_MV(info->table[vsel]) * 1000;
}

481 482
static struct regulator_ops twl4030ldo_ops = {
	.list_voltage	= twl4030ldo_list_voltage,
483

484 485 486
	.set_voltage	= twl4030ldo_set_voltage,
	.get_voltage	= twl4030ldo_get_voltage,

487
	.enable		= twl4030reg_enable,
488
	.disable	= twlreg_disable,
489
	.is_enabled	= twl4030reg_is_enabled,
490

491
	.set_mode	= twl4030reg_set_mode,
492

493
	.get_status	= twl4030reg_get_status,
494 495 496 497 498 499 500 501 502 503
};

static int twl6030ldo_list_voltage(struct regulator_dev *rdev, unsigned index)
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);

	return ((info->min_mV + (index * 100)) * 1000);
}

static int
504 505
twl6030ldo_set_voltage(struct regulator_dev *rdev, int min_uV, int max_uV,
		       unsigned *selector)
506 507 508 509 510 511 512 513 514 515 516 517
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int			vsel;

	if ((min_uV/1000 < info->min_mV) || (max_uV/1000 > info->max_mV))
		return -EDOM;

	/*
	 * Use the below formula to calculate vsel
	 * mV = 1000mv + 100mv * (vsel - 1)
	 */
	vsel = (min_uV/1000 - 1000)/100 + 1;
518
	*selector = vsel;
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
	return twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_VOLTAGE, vsel);

}

static int twl6030ldo_get_voltage(struct regulator_dev *rdev)
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);
	int		vsel = twlreg_read(info, TWL_MODULE_PM_RECEIVER,
								VREG_VOLTAGE);

	if (vsel < 0)
		return vsel;

	/*
	 * Use the below formula to calculate vsel
	 * mV = 1000mv + 100mv * (vsel - 1)
	 */
	return (1000 + (100 * (vsel - 1))) * 1000;
}

static struct regulator_ops twl6030ldo_ops = {
	.list_voltage	= twl6030ldo_list_voltage,

	.set_voltage	= twl6030ldo_set_voltage,
	.get_voltage	= twl6030ldo_get_voltage,
D
David Brownell 已提交
544

545
	.enable		= twl6030reg_enable,
546
	.disable	= twlreg_disable,
547
	.is_enabled	= twl6030reg_is_enabled,
D
David Brownell 已提交
548

549
	.set_mode	= twl6030reg_set_mode,
D
David Brownell 已提交
550

551
	.get_status	= twl6030reg_get_status,
D
David Brownell 已提交
552 553 554 555 556 557 558
};

/*----------------------------------------------------------------------*/

/*
 * Fixed voltage LDOs don't have a VSEL field to update.
 */
559
static int twlfixed_list_voltage(struct regulator_dev *rdev, unsigned index)
560 561 562 563 564 565
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);

	return info->min_mV * 1000;
}

566
static int twlfixed_get_voltage(struct regulator_dev *rdev)
D
David Brownell 已提交
567 568 569 570 571 572
{
	struct twlreg_info	*info = rdev_get_drvdata(rdev);

	return info->min_mV * 1000;
}

573 574 575 576 577
static struct regulator_ops twl4030fixed_ops = {
	.list_voltage	= twlfixed_list_voltage,

	.get_voltage	= twlfixed_get_voltage,

578
	.enable		= twl4030reg_enable,
579 580 581
	.disable	= twlreg_disable,
	.is_enabled	= twl4030reg_is_enabled,

582
	.set_mode	= twl4030reg_set_mode,
583

584
	.get_status	= twl4030reg_get_status,
585 586 587
};

static struct regulator_ops twl6030fixed_ops = {
588
	.list_voltage	= twlfixed_list_voltage,
589

590
	.get_voltage	= twlfixed_get_voltage,
D
David Brownell 已提交
591

592
	.enable		= twl6030reg_enable,
593
	.disable	= twlreg_disable,
594
	.is_enabled	= twl6030reg_is_enabled,
D
David Brownell 已提交
595

596
	.set_mode	= twl6030reg_set_mode,
D
David Brownell 已提交
597

598
	.get_status	= twl6030reg_get_status,
D
David Brownell 已提交
599 600
};

601
static struct regulator_ops twl6030_fixed_resource = {
602
	.enable		= twl6030reg_enable,
603
	.disable	= twlreg_disable,
604
	.is_enabled	= twl6030reg_is_enabled,
605
	.get_status	= twl6030reg_get_status,
606 607
};

D
David Brownell 已提交
608 609
/*----------------------------------------------------------------------*/

610 611 612
#define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
			remap_conf) \
		TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
613
			remap_conf, TWL4030, twl4030fixed_ops)
614
#define TWL6030_FIXED_LDO(label, offset, mVolts, num, turnon_delay) \
615
		TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
616
			0x0, TWL6030, twl6030fixed_ops)
617

618
#define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) { \
D
David Brownell 已提交
619 620 621 622
	.base = offset, \
	.id = num, \
	.table_len = ARRAY_SIZE(label##_VSEL_table), \
	.table = label##_VSEL_table, \
623 624
	.delay = turnon_delay, \
	.remap = remap_conf, \
D
David Brownell 已提交
625 626
	.desc = { \
		.name = #label, \
627
		.id = TWL4030_REG_##label, \
628
		.n_voltages = ARRAY_SIZE(label##_VSEL_table), \
629 630 631 632 633 634
		.ops = &twl4030ldo_ops, \
		.type = REGULATOR_VOLTAGE, \
		.owner = THIS_MODULE, \
		}, \
	}

635
#define TWL6030_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts, num) { \
636 637 638 639 640 641 642 643 644
	.base = offset, \
	.id = num, \
	.min_mV = min_mVolts, \
	.max_mV = max_mVolts, \
	.desc = { \
		.name = #label, \
		.id = TWL6030_REG_##label, \
		.n_voltages = (max_mVolts - min_mVolts)/100, \
		.ops = &twl6030ldo_ops, \
D
David Brownell 已提交
645 646 647 648 649
		.type = REGULATOR_VOLTAGE, \
		.owner = THIS_MODULE, \
		}, \
	}

650

651
#define TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, remap_conf, \
652
		family, operations) { \
D
David Brownell 已提交
653 654 655
	.base = offset, \
	.id = num, \
	.min_mV = mVolts, \
656 657
	.delay = turnon_delay, \
	.remap = remap_conf, \
D
David Brownell 已提交
658 659
	.desc = { \
		.name = #label, \
660
		.id = family##_REG_##label, \
661
		.n_voltages = 1, \
662
		.ops = &operations, \
D
David Brownell 已提交
663 664 665 666 667
		.type = REGULATOR_VOLTAGE, \
		.owner = THIS_MODULE, \
		}, \
	}

668
#define TWL6030_FIXED_RESOURCE(label, offset, num, turnon_delay) { \
669 670 671 672 673 674 675 676 677 678 679 680
	.base = offset, \
	.id = num, \
	.delay = turnon_delay, \
	.desc = { \
		.name = #label, \
		.id = TWL6030_REG_##label, \
		.ops = &twl6030_fixed_resource, \
		.type = REGULATOR_VOLTAGE, \
		.owner = THIS_MODULE, \
		}, \
	}

D
David Brownell 已提交
681 682 683 684
/*
 * We list regulators here if systems need some level of
 * software control over them after boot.
 */
685
static struct twlreg_info twl_regs[] = {
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
	TWL4030_ADJUSTABLE_LDO(VAUX1, 0x17, 1, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VAUX2_4030, 0x1b, 2, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VAUX2, 0x1b, 2, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VAUX3, 0x1f, 3, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VAUX4, 0x23, 4, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VMMC1, 0x27, 5, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VMMC2, 0x2b, 6, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VPLL1, 0x2f, 7, 100, 0x00),
	TWL4030_ADJUSTABLE_LDO(VPLL2, 0x33, 8, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VSIM, 0x37, 9, 100, 0x00),
	TWL4030_ADJUSTABLE_LDO(VDAC, 0x3b, 10, 100, 0x08),
	TWL4030_FIXED_LDO(VINTANA1, 0x3f, 1500, 11, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VINTANA2, 0x43, 12, 100, 0x08),
	TWL4030_FIXED_LDO(VINTDIG, 0x47, 1500, 13, 100, 0x08),
	TWL4030_ADJUSTABLE_LDO(VIO, 0x4b, 14, 1000, 0x08),
	TWL4030_ADJUSTABLE_LDO(VDD1, 0x55, 15, 1000, 0x08),
	TWL4030_ADJUSTABLE_LDO(VDD2, 0x63, 16, 1000, 0x08),
	TWL4030_FIXED_LDO(VUSB1V5, 0x71, 1500, 17, 100, 0x08),
	TWL4030_FIXED_LDO(VUSB1V8, 0x74, 1800, 18, 100, 0x08),
	TWL4030_FIXED_LDO(VUSB3V1, 0x77, 3100, 19, 150, 0x08),
D
David Brownell 已提交
706
	/* VUSBCP is managed *only* by the USB subchip */
707 708

	/* 6030 REG with base as PMC Slave Misc : 0x0030 */
709 710
	/* Turnon-delay and remap configuration values for 6030 are not
	   verified since the specification is not public */
711 712 713 714 715 716 717 718 719 720 721
	TWL6030_ADJUSTABLE_LDO(VAUX1_6030, 0x54, 1000, 3300, 1),
	TWL6030_ADJUSTABLE_LDO(VAUX2_6030, 0x58, 1000, 3300, 2),
	TWL6030_ADJUSTABLE_LDO(VAUX3_6030, 0x5c, 1000, 3300, 3),
	TWL6030_ADJUSTABLE_LDO(VMMC, 0x68, 1000, 3300, 4),
	TWL6030_ADJUSTABLE_LDO(VPP, 0x6c, 1000, 3300, 5),
	TWL6030_ADJUSTABLE_LDO(VUSIM, 0x74, 1000, 3300, 7),
	TWL6030_FIXED_LDO(VANA, 0x50, 2100, 15, 0),
	TWL6030_FIXED_LDO(VCXIO, 0x60, 1800, 16, 0),
	TWL6030_FIXED_LDO(VDAC, 0x64, 1800, 17, 0),
	TWL6030_FIXED_LDO(VUSB, 0x70, 3300, 18, 0),
	TWL6030_FIXED_RESOURCE(CLK32KG, 0x8C, 48, 0),
D
David Brownell 已提交
722 723
};

724
static int __devinit twlreg_probe(struct platform_device *pdev)
D
David Brownell 已提交
725 726 727 728 729 730 731
{
	int				i;
	struct twlreg_info		*info;
	struct regulator_init_data	*initdata;
	struct regulation_constraints	*c;
	struct regulator_dev		*rdev;

732 733
	for (i = 0, info = NULL; i < ARRAY_SIZE(twl_regs); i++) {
		if (twl_regs[i].desc.id != pdev->id)
D
David Brownell 已提交
734
			continue;
735
		info = twl_regs + i;
D
David Brownell 已提交
736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752
		break;
	}
	if (!info)
		return -ENODEV;

	initdata = pdev->dev.platform_data;
	if (!initdata)
		return -EINVAL;

	/* Constrain board-specific capabilities according to what
	 * this driver and the chip itself can actually do.
	 */
	c = &initdata->constraints;
	c->valid_modes_mask &= REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY;
	c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE
				| REGULATOR_CHANGE_MODE
				| REGULATOR_CHANGE_STATUS;
753 754 755 756 757 758 759 760 761 762 763 764 765
	switch (pdev->id) {
	case TWL4030_REG_VIO:
	case TWL4030_REG_VDD1:
	case TWL4030_REG_VDD2:
	case TWL4030_REG_VPLL1:
	case TWL4030_REG_VINTANA1:
	case TWL4030_REG_VINTANA2:
	case TWL4030_REG_VINTDIG:
		c->always_on = true;
		break;
	default:
		break;
	}
D
David Brownell 已提交
766 767 768 769 770 771 772 773 774

	rdev = regulator_register(&info->desc, &pdev->dev, initdata, info);
	if (IS_ERR(rdev)) {
		dev_err(&pdev->dev, "can't register %s, %ld\n",
				info->desc.name, PTR_ERR(rdev));
		return PTR_ERR(rdev);
	}
	platform_set_drvdata(pdev, rdev);

775 776
	if (twl_class_is_4030())
		twlreg_write(info, TWL_MODULE_PM_RECEIVER, VREG_REMAP,
777 778
						info->remap);

D
David Brownell 已提交
779 780 781 782 783 784 785 786 787 788 789
	/* NOTE:  many regulators support short-circuit IRQs (presentable
	 * as REGULATOR_OVER_CURRENT notifications?) configured via:
	 *  - SC_CONFIG
	 *  - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
	 *  - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
	 *  - IT_CONFIG
	 */

	return 0;
}

790
static int __devexit twlreg_remove(struct platform_device *pdev)
D
David Brownell 已提交
791 792 793 794 795
{
	regulator_unregister(platform_get_drvdata(pdev));
	return 0;
}

796
MODULE_ALIAS("platform:twl_reg");
D
David Brownell 已提交
797

798 799 800
static struct platform_driver twlreg_driver = {
	.probe		= twlreg_probe,
	.remove		= __devexit_p(twlreg_remove),
D
David Brownell 已提交
801
	/* NOTE: short name, to work around driver model truncation of
802
	 * "twl_regulator.12" (and friends) to "twl_regulator.1".
D
David Brownell 已提交
803
	 */
804
	.driver.name	= "twl_reg",
D
David Brownell 已提交
805 806 807
	.driver.owner	= THIS_MODULE,
};

808
static int __init twlreg_init(void)
D
David Brownell 已提交
809
{
810
	return platform_driver_register(&twlreg_driver);
D
David Brownell 已提交
811
}
812
subsys_initcall(twlreg_init);
D
David Brownell 已提交
813

814
static void __exit twlreg_exit(void)
D
David Brownell 已提交
815
{
816
	platform_driver_unregister(&twlreg_driver);
D
David Brownell 已提交
817
}
818
module_exit(twlreg_exit)
D
David Brownell 已提交
819

820
MODULE_DESCRIPTION("TWL regulator driver");
D
David Brownell 已提交
821
MODULE_LICENSE("GPL");