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)
39 #define PHY_TO_OFF_PM_MASTER(p) (p - 0x36)
40 #define PHY_TO_OFF_PM_RECEIVER(p) (p - 0x5b)
42 /* resource - hfclk */
43 #define R_HFCLKOUT_DEV_GRP PHY_TO_OFF_PM_RECEIVER(0xe6)
46 #define R_P1_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x46)
47 #define R_P2_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x47)
48 #define R_P3_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x48)
49 #define R_CFG_P1_TRANSITION PHY_TO_OFF_PM_MASTER(0x36)
50 #define R_CFG_P2_TRANSITION PHY_TO_OFF_PM_MASTER(0x37)
51 #define R_CFG_P3_TRANSITION PHY_TO_OFF_PM_MASTER(0x38)
53 #define LVL_WAKEUP 0x08
55 #define ENABLE_WARMRESET (1<<4)
57 #define END_OF_SCRIPT 0x3f
59 #define R_SEQ_ADD_A2S PHY_TO_OFF_PM_MASTER(0x55)
60 #define R_SEQ_ADD_S2A12 PHY_TO_OFF_PM_MASTER(0x56)
61 #define R_SEQ_ADD_S2A3 PHY_TO_OFF_PM_MASTER(0x57)
62 #define R_SEQ_ADD_WARM PHY_TO_OFF_PM_MASTER(0x58)
63 #define R_MEMORY_ADDRESS PHY_TO_OFF_PM_MASTER(0x59)
64 #define R_MEMORY_DATA PHY_TO_OFF_PM_MASTER(0x5a)
66 #define R_PROTECT_KEY 0x0E
70 /* resource configuration registers
71 <RESOURCE>_DEV_GRP at address 'n+0'
72 <RESOURCE>_TYPE at address 'n+1'
73 <RESOURCE>_REMAP at address 'n+2'
74 <RESOURCE>_DEDICATED at address 'n+3'
76 #define DEV_GRP_OFFSET 0
78 #define REMAP_OFFSET 2
79 #define DEDICATED_OFFSET 3
81 /* Bit positions in the registers */
83 /* <RESOURCE>_DEV_GRP */
84 #define DEV_GRP_SHIFT 5
85 #define DEV_GRP_MASK (7 << DEV_GRP_SHIFT)
89 #define TYPE_MASK (7 << TYPE_SHIFT)
91 #define TYPE2_MASK (3 << TYPE2_SHIFT)
93 /* <RESOURCE>_REMAP */
94 #define SLEEP_STATE_SHIFT 0
95 #define SLEEP_STATE_MASK (0xf << SLEEP_STATE_SHIFT)
96 #define OFF_STATE_SHIFT 4
97 #define OFF_STATE_MASK (0xf << OFF_STATE_SHIFT)
99 static u8 res_config_addrs[] = {
110 [RES_VINTANA1] = 0x3f,
111 [RES_VINTANA2] = 0x43,
112 [RES_VINTDIG] = 0x47,
116 [RES_VUSB_1V5] = 0x71,
117 [RES_VUSB_1V8] = 0x74,
118 [RES_VUSB_3V1] = 0x77,
121 [RES_NRES_PWRON] = 0x82,
124 [RES_HFCLKOUT] = 0x8b,
125 [RES_32KCLKOUT] = 0x8e,
127 [RES_Main_Ref] = 0x94,
130 static int __init twl4030_write_script_byte(u8 address, u8 byte)
134 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
138 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, byte,
144 static int __init twl4030_write_script_ins(u8 address, u16 pmb_message,
150 err = twl4030_write_script_byte(address++, pmb_message >> 8);
153 err = twl4030_write_script_byte(address++, pmb_message & 0xff);
156 err = twl4030_write_script_byte(address++, delay);
159 err = twl4030_write_script_byte(address++, next);
164 static int __init twl4030_write_script(u8 address, struct twl4030_ins *script,
169 for (; len; len--, address++, script++) {
171 err = twl4030_write_script_ins(address,
178 err = twl4030_write_script_ins(address,
189 static int __init twl4030_config_wakeup3_sequence(u8 address)
194 /* Set SLEEP to ACTIVE SEQ address for P3 */
195 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
200 /* P3 LVL_WAKEUP should be on LEVEL */
201 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data,
206 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data,
210 pr_err("TWL4030 wakeup sequence for P3 config error\n");
214 static int __init twl4030_config_wakeup12_sequence(u8 address)
219 /* Set SLEEP to ACTIVE SEQ address for P1 and P2 */
220 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
225 /* P1/P2 LVL_WAKEUP should be on LEVEL */
226 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data,
232 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data,
237 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data,
243 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data,
248 if (machine_is_omap_3430sdp() || machine_is_omap_ldp()) {
249 /* Disabling AC charger effect on sleep-active transitions */
250 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &data,
251 R_CFG_P1_TRANSITION);
255 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, data ,
256 R_CFG_P1_TRANSITION);
263 pr_err("TWL4030 wakeup sequence for P1 and P2" \
268 static int __init twl4030_config_sleep_sequence(u8 address)
272 /* Set ACTIVE to SLEEP SEQ address in T2 memory*/
273 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
277 pr_err("TWL4030 sleep sequence config error\n");
282 static int __init twl4030_config_warmreset_sequence(u8 address)
287 /* Set WARM RESET SEQ address for P1 */
288 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, address,
293 /* P1/P2/P3 enable WARMRESET */
294 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data,
299 rd_data |= ENABLE_WARMRESET;
300 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data,
305 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data,
310 rd_data |= ENABLE_WARMRESET;
311 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data,
316 err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &rd_data,
321 rd_data |= ENABLE_WARMRESET;
322 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, rd_data,
326 pr_err("TWL4030 warmreset seq config error\n");
330 static int __init twl4030_configure_resource(struct twl4030_resconfig *rconfig)
338 if (rconfig->resource > TOTAL_RESOURCES) {
339 pr_err("TWL4030 Resource %d does not exist\n",
344 rconfig_addr = res_config_addrs[rconfig->resource];
346 /* Set resource group */
347 err = twl_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, &grp,
348 rconfig_addr + DEV_GRP_OFFSET);
350 pr_err("TWL4030 Resource %d group could not be read\n",
355 if (rconfig->devgroup != TWL4030_RESCONFIG_UNDEF) {
356 grp &= ~DEV_GRP_MASK;
357 grp |= rconfig->devgroup << DEV_GRP_SHIFT;
358 err = twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
359 grp, rconfig_addr + DEV_GRP_OFFSET);
361 pr_err("TWL4030 failed to program devgroup\n");
366 /* Set resource types */
367 err = twl_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, &type,
368 rconfig_addr + TYPE_OFFSET);
370 pr_err("TWL4030 Resource %d type could not be read\n",
375 if (rconfig->type != TWL4030_RESCONFIG_UNDEF) {
377 type |= rconfig->type << TYPE_SHIFT;
380 if (rconfig->type2 != TWL4030_RESCONFIG_UNDEF) {
382 type |= rconfig->type2 << TYPE2_SHIFT;
385 err = twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
386 type, rconfig_addr + TYPE_OFFSET);
388 pr_err("TWL4030 failed to program resource type\n");
392 /* Set remap states */
393 err = twl_i2c_read_u8(TWL4030_MODULE_PM_RECEIVER, &remap,
394 rconfig_addr + REMAP_OFFSET);
396 pr_err("TWL4030 Resource %d remap could not be read\n",
401 if (rconfig->remap_off != TWL4030_RESCONFIG_UNDEF) {
402 remap &= ~OFF_STATE_MASK;
403 remap |= rconfig->remap_off << OFF_STATE_SHIFT;
406 if (rconfig->remap_sleep != TWL4030_RESCONFIG_UNDEF) {
407 remap &= ~SLEEP_STATE_MASK;
408 remap |= rconfig->remap_sleep << SLEEP_STATE_SHIFT;
411 err = twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
413 rconfig_addr + REMAP_OFFSET);
415 pr_err("TWL4030 failed to program remap\n");
422 static int __init load_twl4030_script(struct twl4030_script *tscript,
428 /* Make sure the script isn't going beyond last valid address (0x3f) */
429 if ((address + tscript->size) > END_OF_SCRIPT) {
430 pr_err("TWL4030 scripts too big error\n");
434 err = twl4030_write_script(address, tscript->script, tscript->size);
438 if (tscript->flags & TWL4030_WRST_SCRIPT) {
439 err = twl4030_config_warmreset_sequence(address);
443 if (tscript->flags & TWL4030_WAKEUP12_SCRIPT) {
444 err = twl4030_config_wakeup12_sequence(address);
449 if (tscript->flags & TWL4030_WAKEUP3_SCRIPT) {
450 err = twl4030_config_wakeup3_sequence(address);
454 if (tscript->flags & TWL4030_SLEEP_SCRIPT)
456 pr_warning("TWL4030: Bad order of scripts (sleep "\
457 "script before wakeup) Leads to boot"\
458 "failure on some boards\n");
459 err = twl4030_config_sleep_sequence(address);
464 int twl4030_remove_script(u8 flags)
468 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, R_KEY_1,
471 pr_err("twl4030: unable to unlock PROTECT_KEY\n");
475 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, R_KEY_2,
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) {
490 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, R_PROTECT_KEY);
509 pr_err("TWL4030 Unable to relock registers\n");
514 void __init twl4030_power_init(struct twl4030_power_data *twl4030_scripts)
518 struct twl4030_resconfig *resconfig;
519 u8 address = twl4030_start_script_address;
521 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, R_KEY_1,
526 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, R_KEY_2,
531 for (i = 0; i < twl4030_scripts->num; i++) {
532 err = load_twl4030_script(twl4030_scripts->scripts[i], address);
535 address += twl4030_scripts->scripts[i]->size;
538 resconfig = twl4030_scripts->resource_config;
540 while (resconfig->resource) {
541 err = twl4030_configure_resource(resconfig);
549 err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, 0, R_PROTECT_KEY);
551 pr_err("TWL4030 Unable to relock registers\n");
556 pr_err("TWL4030 Unable to unlock registers\n");
560 pr_err("TWL4030 failed to load scripts\n");
564 pr_err("TWL4030 failed to configure resource\n");