2 * linux/drivers/i2c/chips/twl4030-power.c
4 * Handle TWL4030 Power initialization
6 * Copyright (C) 2008 Nokia Corporation
7 * Copyright (C) 2006 Texas Instruments, Inc
9 * Written by Kalle Jokiniemi
10 * Peter De Schrijver <peter.de-schrijver@nokia.com>
11 * Several fixes by Amit Kucheria <amit.kucheria@verdurent.com>
13 * This file is subject to the terms and conditions of the GNU General
14 * Public License. See the file "COPYING" in the main directory of this
15 * archive for more details.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/module.h>
29 #include <linux/i2c/twl.h>
30 #include <linux/platform_device.h>
32 #include <asm/mach-types.h>
34 static u8 twl4030_start_script_address = 0x2b;
36 #define PWR_P1_SW_EVENTS 0x10
37 #define PWR_DEVOFF (1 << 0)
38 #define SEQ_OFFSYNC (1 << 0)
40 #define PHY_TO_OFF_PM_MASTER(p) (p - 0x36)
41 #define PHY_TO_OFF_PM_RECEIVER(p) (p - 0x5b)
43 /* resource - hfclk */
44 #define R_HFCLKOUT_DEV_GRP PHY_TO_OFF_PM_RECEIVER(0xe6)
47 #define R_P1_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x46)
48 #define R_P2_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x47)
49 #define R_P3_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x48)
50 #define R_CFG_P1_TRANSITION PHY_TO_OFF_PM_MASTER(0x36)
51 #define R_CFG_P2_TRANSITION PHY_TO_OFF_PM_MASTER(0x37)
52 #define R_CFG_P3_TRANSITION PHY_TO_OFF_PM_MASTER(0x38)
54 #define LVL_WAKEUP 0x08
56 #define ENABLE_WARMRESET (1<<4)
58 #define END_OF_SCRIPT 0x3f
60 #define R_SEQ_ADD_A2S PHY_TO_OFF_PM_MASTER(0x55)
61 #define R_SEQ_ADD_S2A12 PHY_TO_OFF_PM_MASTER(0x56)
62 #define R_SEQ_ADD_S2A3 PHY_TO_OFF_PM_MASTER(0x57)
63 #define R_SEQ_ADD_WARM PHY_TO_OFF_PM_MASTER(0x58)
64 #define R_MEMORY_ADDRESS PHY_TO_OFF_PM_MASTER(0x59)
65 #define R_MEMORY_DATA PHY_TO_OFF_PM_MASTER(0x5a)
67 /* resource configuration registers
68 <RESOURCE>_DEV_GRP at address 'n+0'
69 <RESOURCE>_TYPE at address 'n+1'
70 <RESOURCE>_REMAP at address 'n+2'
71 <RESOURCE>_DEDICATED at address 'n+3'
73 #define DEV_GRP_OFFSET 0
75 #define REMAP_OFFSET 2
76 #define DEDICATED_OFFSET 3
78 /* Bit positions in the registers */
80 /* <RESOURCE>_DEV_GRP */
81 #define DEV_GRP_SHIFT 5
82 #define DEV_GRP_MASK (7 << DEV_GRP_SHIFT)
86 #define TYPE_MASK (7 << TYPE_SHIFT)
88 #define TYPE2_MASK (3 << TYPE2_SHIFT)
90 /* <RESOURCE>_REMAP */
91 #define SLEEP_STATE_SHIFT 0
92 #define SLEEP_STATE_MASK (0xf << SLEEP_STATE_SHIFT)
93 #define OFF_STATE_SHIFT 4
94 #define OFF_STATE_MASK (0xf << OFF_STATE_SHIFT)
96 static u8 res_config_addrs[] = {
107 [RES_VINTANA1] = 0x3f,
108 [RES_VINTANA2] = 0x43,
109 [RES_VINTDIG] = 0x47,
113 [RES_VUSB_1V5] = 0x71,
114 [RES_VUSB_1V8] = 0x74,
115 [RES_VUSB_3V1] = 0x77,
118 [RES_NRES_PWRON] = 0x82,
121 [RES_HFCLKOUT] = 0x8b,
122 [RES_32KCLKOUT] = 0x8e,
124 [RES_MAIN_REF] = 0x94,
127 static int __devinit twl4030_write_script_byte(u8 address, u8 byte)
131 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
135 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, byte,
141 static int __devinit twl4030_write_script_ins(u8 address, u16 pmb_message,
147 err = twl4030_write_script_byte(address++, pmb_message >> 8);
150 err = twl4030_write_script_byte(address++, pmb_message & 0xff);
153 err = twl4030_write_script_byte(address++, delay);
156 err = twl4030_write_script_byte(address++, next);
161 static int __devinit twl4030_write_script(u8 address, struct twl4030_ins *script,
166 for (; len; len--, address++, script++) {
168 err = twl4030_write_script_ins(address,
175 err = twl4030_write_script_ins(address,
186 static int __devinit twl4030_config_wakeup3_sequence(u8 address)
191 /* Set SLEEP to ACTIVE SEQ address for P3 */
192 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
197 /* P3 LVL_WAKEUP should be on LEVEL */
198 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data,
203 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data,
207 pr_err("TWL4030 wakeup sequence for P3 config error\n");
211 static int __devinit twl4030_config_wakeup12_sequence(u8 address)
216 /* Set SLEEP to ACTIVE SEQ address for P1 and P2 */
217 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
222 /* P1/P2 LVL_WAKEUP should be on LEVEL */
223 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data,
229 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data,
234 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data,
240 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data,
245 if (machine_is_omap_3430sdp() || machine_is_omap_ldp()) {
246 /* Disabling AC charger effect on sleep-active transitions */
247 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data,
248 R_CFG_P1_TRANSITION);
252 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data ,
253 R_CFG_P1_TRANSITION);
260 pr_err("TWL4030 wakeup sequence for P1 and P2" \
265 static int __devinit twl4030_config_sleep_sequence(u8 address)
269 /* Set ACTIVE to SLEEP SEQ address in T2 memory*/
270 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
274 pr_err("TWL4030 sleep sequence config error\n");
279 static int __devinit twl4030_config_warmreset_sequence(u8 address)
284 /* Set WARM RESET SEQ address for P1 */
285 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
290 /* P1/P2/P3 enable WARMRESET */
291 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data,
296 rd_data |= ENABLE_WARMRESET;
297 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data,
302 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data,
307 rd_data |= ENABLE_WARMRESET;
308 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data,
313 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data,
318 rd_data |= ENABLE_WARMRESET;
319 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data,
323 pr_err("TWL4030 warmreset seq config error\n");
327 static int __devinit twl4030_configure_resource(struct twl4030_resconfig *rconfig)
335 if (rconfig->resource > TOTAL_RESOURCES) {
336 pr_err("TWL4030 Resource %d does not exist\n",
341 rconfig_addr = res_config_addrs[rconfig->resource];
343 /* Set resource group */
344 err = twl_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, &grp,
345 rconfig_addr + DEV_GRP_OFFSET);
347 pr_err("TWL4030 Resource %d group could not be read\n",
352 if (rconfig->devgroup != TWL4030_RESCONFIG_UNDEF) {
353 grp &= ~DEV_GRP_MASK;
354 grp |= rconfig->devgroup << DEV_GRP_SHIFT;
355 err = twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
356 grp, rconfig_addr + DEV_GRP_OFFSET);
358 pr_err("TWL4030 failed to program devgroup\n");
363 /* Set resource types */
364 err = twl_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, &type,
365 rconfig_addr + TYPE_OFFSET);
367 pr_err("TWL4030 Resource %d type could not be read\n",
372 if (rconfig->type != TWL4030_RESCONFIG_UNDEF) {
374 type |= rconfig->type << TYPE_SHIFT;
377 if (rconfig->type2 != TWL4030_RESCONFIG_UNDEF) {
379 type |= rconfig->type2 << TYPE2_SHIFT;
382 err = twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
383 type, rconfig_addr + TYPE_OFFSET);
385 pr_err("TWL4030 failed to program resource type\n");
389 /* Set remap states */
390 err = twl_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, &remap,
391 rconfig_addr + REMAP_OFFSET);
393 pr_err("TWL4030 Resource %d remap could not be read\n",
398 if (rconfig->remap_off != TWL4030_RESCONFIG_UNDEF) {
399 remap &= ~OFF_STATE_MASK;
400 remap |= rconfig->remap_off << OFF_STATE_SHIFT;
403 if (rconfig->remap_sleep != TWL4030_RESCONFIG_UNDEF) {
404 remap &= ~SLEEP_STATE_MASK;
405 remap |= rconfig->remap_sleep << SLEEP_STATE_SHIFT;
408 err = twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
410 rconfig_addr + REMAP_OFFSET);
412 pr_err("TWL4030 failed to program remap\n");
419 static int __devinit load_twl4030_script(struct twl4030_script *tscript,
425 /* Make sure the script isn't going beyond last valid address (0x3f) */
426 if ((address + tscript->size) > END_OF_SCRIPT) {
427 pr_err("TWL4030 scripts too big error\n");
431 err = twl4030_write_script(address, tscript->script, tscript->size);
435 if (tscript->flags & TWL4030_WRST_SCRIPT) {
436 err = twl4030_config_warmreset_sequence(address);
440 if (tscript->flags & TWL4030_WAKEUP12_SCRIPT) {
441 err = twl4030_config_wakeup12_sequence(address);
446 if (tscript->flags & TWL4030_WAKEUP3_SCRIPT) {
447 err = twl4030_config_wakeup3_sequence(address);
451 if (tscript->flags & TWL4030_SLEEP_SCRIPT) {
453 pr_warning("TWL4030: Bad order of scripts (sleep "\
454 "script before wakeup) Leads to boot"\
455 "failure on some boards\n");
456 err = twl4030_config_sleep_sequence(address);
462 int twl4030_remove_script(u8 flags)
466 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER,
467 TWL4030_PM_MASTER_KEY_CFG1,
468 TWL4030_PM_MASTER_PROTECT_KEY);
470 pr_err("twl4030: unable to unlock PROTECT_KEY\n");
474 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER,
475 TWL4030_PM_MASTER_KEY_CFG2,
476 TWL4030_PM_MASTER_PROTECT_KEY);
478 pr_err("twl4030: unable to unlock PROTECT_KEY\n");
482 if (flags & TWL4030_WRST_SCRIPT) {
483 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, END_OF_SCRIPT,
488 if (flags & TWL4030_WAKEUP12_SCRIPT) {
489 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, END_OF_SCRIPT,
494 if (flags & TWL4030_WAKEUP3_SCRIPT) {
495 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, END_OF_SCRIPT,
500 if (flags & TWL4030_SLEEP_SCRIPT) {
501 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, END_OF_SCRIPT,
507 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, 0,
508 TWL4030_PM_MASTER_PROTECT_KEY);
510 pr_err("TWL4030 Unable to relock registers\n");
516 * In master mode, start the power off sequence.
517 * After a successful execution, TWL shuts down the power to the SoC
518 * and all peripherals connected to it.
520 void twl4030_power_off(void)
524 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, PWR_DEVOFF,
525 TWL4030_PM_MASTER_P1_SW_EVENTS);
527 pr_err("TWL4030 Unable to power off\n");
530 void __devinit twl4030_power_init(struct twl4030_power_data *twl4030_scripts)
534 struct twl4030_resconfig *resconfig;
535 u8 val, address = twl4030_start_script_address;
537 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER,
538 TWL4030_PM_MASTER_KEY_CFG1,
539 TWL4030_PM_MASTER_PROTECT_KEY);
543 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER,
544 TWL4030_PM_MASTER_KEY_CFG2,
545 TWL4030_PM_MASTER_PROTECT_KEY);
549 for (i = 0; i < twl4030_scripts->num; i++) {
550 err = load_twl4030_script(twl4030_scripts->scripts[i], address);
553 address += twl4030_scripts->scripts[i]->size;
556 resconfig = twl4030_scripts->resource_config;
558 while (resconfig->resource) {
559 err = twl4030_configure_resource(resconfig);
567 /* Board has to be wired properly to use this feature */
568 if (twl4030_scripts->use_poweroff && !pm_power_off) {
569 /* Default for SEQ_OFFSYNC is set, lets ensure this */
570 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &val,
571 TWL4030_PM_MASTER_CFG_P123_TRANSITION);
573 pr_warning("TWL4030 Unable to read registers\n");
575 } else if (!(val & SEQ_OFFSYNC)) {
577 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, val,
578 TWL4030_PM_MASTER_CFG_P123_TRANSITION);
580 pr_err("TWL4030 Unable to setup SEQ_OFFSYNC\n");
585 pm_power_off = twl4030_power_off;
589 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, 0,
590 TWL4030_PM_MASTER_PROTECT_KEY);
592 pr_err("TWL4030 Unable to relock registers\n");
597 pr_err("TWL4030 Unable to unlock registers\n");
601 pr_err("TWL4030 failed to load scripts\n");
605 pr_err("TWL4030 failed to configure resource\n");