| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * PXA250/210 Power Management Routines | 
 | 3 |  * | 
 | 4 |  * Original code for the SA11x0: | 
 | 5 |  * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com> | 
 | 6 |  * | 
 | 7 |  * Modified for the PXA250 by Nicolas Pitre: | 
 | 8 |  * Copyright (c) 2002 Monta Vista Software, Inc. | 
 | 9 |  * | 
 | 10 |  * This program is free software; you can redistribute it and/or | 
 | 11 |  * modify it under the terms of the GNU General Public License. | 
 | 12 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/init.h> | 
| Richard Purdie | 756c7b7 | 2005-11-06 15:03:23 +0000 | [diff] [blame] | 14 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/suspend.h> | 
 | 16 | #include <linux/errno.h> | 
 | 17 | #include <linux/time.h> | 
 | 18 |  | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 19 | #include <mach/hardware.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <asm/memory.h> | 
 | 21 | #include <asm/system.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 22 | #include <mach/pm.h> | 
 | 23 | #include <mach/pxa-regs.h> | 
 | 24 | #include <mach/lubbock.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/mach/time.h> | 
 | 26 |  | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 27 | struct pxa_cpu_pm_fns *pxa_cpu_pm_fns; | 
 | 28 | static unsigned long *sleep_save; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 |  | 
| Richard Purdie | 756c7b7 | 2005-11-06 15:03:23 +0000 | [diff] [blame] | 30 | int pxa_pm_enter(suspend_state_t state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | { | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 32 | 	unsigned long sleep_save_checksum = 0, checksum = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | 	int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 |  | 
 | 35 | #ifdef CONFIG_IWMMXT | 
 | 36 | 	/* force any iWMMXt context to ram **/ | 
| Lennert Buytenhek | afe4b25 | 2006-12-03 18:51:14 +0100 | [diff] [blame] | 37 | 	if (elf_hwcap & HWCAP_IWMMXT) | 
 | 38 | 		iwmmxt_task_disable(NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #endif | 
 | 40 |  | 
| eric miao | 512f03f | 2008-01-14 15:50:54 +0800 | [diff] [blame] | 41 | 	/* skip registers saving for standby */ | 
 | 42 | 	if (state != PM_SUSPEND_STANDBY) { | 
 | 43 | 		pxa_cpu_pm_fns->save(sleep_save); | 
 | 44 | 		/* before sleeping, calculate and save a checksum */ | 
| Robert Jarzmik | 649de51 | 2008-05-02 21:17:06 +0100 | [diff] [blame] | 45 | 		for (i = 0; i < pxa_cpu_pm_fns->save_count - 1; i++) | 
| eric miao | 512f03f | 2008-01-14 15:50:54 +0800 | [diff] [blame] | 46 | 			sleep_save_checksum += sleep_save[i]; | 
 | 47 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | 	/* *** go zzz *** */ | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 50 | 	pxa_cpu_pm_fns->enter(state); | 
| Russell King | 36c5ed2 | 2005-06-19 18:39:33 +0100 | [diff] [blame] | 51 | 	cpu_init(); | 
 | 52 |  | 
| eric miao | 512f03f | 2008-01-14 15:50:54 +0800 | [diff] [blame] | 53 | 	if (state != PM_SUSPEND_STANDBY) { | 
 | 54 | 		/* after sleeping, validate the checksum */ | 
| Robert Jarzmik | 649de51 | 2008-05-02 21:17:06 +0100 | [diff] [blame] | 55 | 		for (i = 0; i < pxa_cpu_pm_fns->save_count - 1; i++) | 
| eric miao | 512f03f | 2008-01-14 15:50:54 +0800 | [diff] [blame] | 56 | 			checksum += sleep_save[i]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 |  | 
| eric miao | 512f03f | 2008-01-14 15:50:54 +0800 | [diff] [blame] | 58 | 		/* if invalid, display message and wait for a hardware reset */ | 
 | 59 | 		if (checksum != sleep_save_checksum) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #ifdef CONFIG_ARCH_LUBBOCK | 
| eric miao | 512f03f | 2008-01-14 15:50:54 +0800 | [diff] [blame] | 61 | 			LUB_HEXLED = 0xbadbadc5; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #endif | 
| eric miao | 512f03f | 2008-01-14 15:50:54 +0800 | [diff] [blame] | 63 | 			while (1) | 
 | 64 | 				pxa_cpu_pm_fns->enter(state); | 
 | 65 | 		} | 
 | 66 | 		pxa_cpu_pm_fns->restore(sleep_save); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | 	} | 
 | 68 |  | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 69 | 	pr_debug("*** made it back from resume\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
 | 71 | 	return 0; | 
 | 72 | } | 
 | 73 |  | 
| Richard Purdie | 756c7b7 | 2005-11-06 15:03:23 +0000 | [diff] [blame] | 74 | EXPORT_SYMBOL_GPL(pxa_pm_enter); | 
 | 75 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | unsigned long sleep_phys_sp(void *sp) | 
 | 77 | { | 
 | 78 | 	return virt_to_phys(sp); | 
 | 79 | } | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 80 |  | 
 | 81 | static int pxa_pm_valid(suspend_state_t state) | 
 | 82 | { | 
 | 83 | 	if (pxa_cpu_pm_fns) | 
 | 84 | 		return pxa_cpu_pm_fns->valid(state); | 
 | 85 |  | 
 | 86 | 	return -EINVAL; | 
 | 87 | } | 
 | 88 |  | 
| Russell King | 4104980 | 2008-08-27 12:55:04 +0100 | [diff] [blame] | 89 | static int pxa_pm_prepare(void) | 
 | 90 | { | 
 | 91 | 	int ret = 0; | 
 | 92 |  | 
 | 93 | 	if (pxa_cpu_pm_fns && pxa_cpu_pm_fns->prepare) | 
 | 94 | 		ret = pxa_cpu_pm_fns->prepare(); | 
 | 95 |  | 
 | 96 | 	return ret; | 
 | 97 | } | 
 | 98 |  | 
 | 99 | static void pxa_pm_finish(void) | 
 | 100 | { | 
 | 101 | 	if (pxa_cpu_pm_fns && pxa_cpu_pm_fns->finish) | 
 | 102 | 		pxa_cpu_pm_fns->finish(); | 
 | 103 | } | 
 | 104 |  | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 105 | static struct platform_suspend_ops pxa_pm_ops = { | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 106 | 	.valid		= pxa_pm_valid, | 
 | 107 | 	.enter		= pxa_pm_enter, | 
| Russell King | 4104980 | 2008-08-27 12:55:04 +0100 | [diff] [blame] | 108 | 	.prepare	= pxa_pm_prepare, | 
 | 109 | 	.finish		= pxa_pm_finish, | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 110 | }; | 
 | 111 |  | 
 | 112 | static int __init pxa_pm_init(void) | 
 | 113 | { | 
 | 114 | 	if (!pxa_cpu_pm_fns) { | 
 | 115 | 		printk(KERN_ERR "no valid pxa_cpu_pm_fns defined\n"); | 
 | 116 | 		return -EINVAL; | 
 | 117 | 	} | 
 | 118 |  | 
| Robert Jarzmik | 649de51 | 2008-05-02 21:17:06 +0100 | [diff] [blame] | 119 | 	sleep_save = kmalloc(pxa_cpu_pm_fns->save_count * sizeof(unsigned long), | 
 | 120 | 			     GFP_KERNEL); | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 121 | 	if (!sleep_save) { | 
 | 122 | 		printk(KERN_ERR "failed to alloc memory for pm save\n"); | 
 | 123 | 		return -ENOMEM; | 
 | 124 | 	} | 
 | 125 |  | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 126 | 	suspend_set_ops(&pxa_pm_ops); | 
| Eric Miao | 711be5c | 2007-07-18 11:38:45 +0100 | [diff] [blame] | 127 | 	return 0; | 
 | 128 | } | 
 | 129 |  | 
 | 130 | device_initcall(pxa_pm_init); |