| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * SA1100 Power Management Routines | 
 | 3 |  * | 
 | 4 |  * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com> | 
 | 5 |  * | 
 | 6 |  * This program is free software; you can redistribute it and/or | 
 | 7 |  * modify it under the terms of the GNU General Public License. | 
 | 8 |  * | 
 | 9 |  * History: | 
 | 10 |  * | 
 | 11 |  * 2001-02-06:	Cliff Brake         Initial code | 
 | 12 |  * | 
 | 13 |  * 2001-02-25:	Sukjae Cho <sjcho@east.isi.edu> & | 
 | 14 |  * 		Chester Kuo <chester@linux.org.tw> | 
 | 15 |  * 			Save more value for the resume function! Support | 
 | 16 |  * 			Bitsy/Assabet/Freebird board | 
 | 17 |  * | 
| Nicolas Pitre | 2f82af0 | 2009-09-14 03:25:28 -0400 | [diff] [blame] | 18 |  * 2001-08-29:	Nicolas Pitre <nico@fluxnic.net> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 |  * 			Cleaned up, pushed platform dependent stuff | 
 | 20 |  * 			in the platform specific files. | 
 | 21 |  * | 
 | 22 |  * 2002-05-27:	Nicolas Pitre	Killed sleep.h and the kmalloced save array. | 
 | 23 |  * 				Storage is local on the stack now. | 
 | 24 |  */ | 
 | 25 | #include <linux/init.h> | 
 | 26 | #include <linux/suspend.h> | 
 | 27 | #include <linux/errno.h> | 
 | 28 | #include <linux/time.h> | 
 | 29 |  | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 30 | #include <mach/hardware.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <asm/memory.h> | 
 | 32 | #include <asm/system.h> | 
 | 33 | #include <asm/mach/time.h> | 
 | 34 |  | 
 | 35 | extern void sa1100_cpu_suspend(void); | 
 | 36 | extern void sa1100_cpu_resume(void); | 
 | 37 |  | 
 | 38 | #define SAVE(x)		sleep_save[SLEEP_SAVE_##x] = x | 
 | 39 | #define RESTORE(x)	x = sleep_save[SLEEP_SAVE_##x] | 
 | 40 |  | 
 | 41 | /* | 
 | 42 |  * List of global SA11x0 peripheral registers to preserve. | 
 | 43 |  * More ones like CP and general purpose register values are preserved | 
 | 44 |  * on the stack and then the stack pointer is stored last in sleep.S. | 
 | 45 |  */ | 
| Robert Jarzmik | 649de51 | 2008-05-02 21:17:06 +0100 | [diff] [blame] | 46 | enum {	SLEEP_SAVE_GPDR, SLEEP_SAVE_GAFR, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | 	SLEEP_SAVE_PPDR, SLEEP_SAVE_PPSR, SLEEP_SAVE_PPAR, SLEEP_SAVE_PSDR, | 
 | 48 |  | 
 | 49 | 	SLEEP_SAVE_Ser1SDCR0, | 
 | 50 |  | 
| Robert Jarzmik | 649de51 | 2008-05-02 21:17:06 +0100 | [diff] [blame] | 51 | 	SLEEP_SAVE_COUNT | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | }; | 
 | 53 |  | 
 | 54 |  | 
 | 55 | static int sa11x0_pm_enter(suspend_state_t state) | 
 | 56 | { | 
| Robert Jarzmik | 649de51 | 2008-05-02 21:17:06 +0100 | [diff] [blame] | 57 | 	unsigned long gpio, sleep_save[SLEEP_SAVE_COUNT]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | 	gpio = GPLR; | 
 | 60 |  | 
 | 61 | 	/* save vital registers */ | 
 | 62 | 	SAVE(GPDR); | 
 | 63 | 	SAVE(GAFR); | 
 | 64 |  | 
 | 65 | 	SAVE(PPDR); | 
 | 66 | 	SAVE(PPSR); | 
 | 67 | 	SAVE(PPAR); | 
 | 68 | 	SAVE(PSDR); | 
 | 69 |  | 
 | 70 | 	SAVE(Ser1SDCR0); | 
 | 71 |  | 
 | 72 | 	/* Clear previous reset status */ | 
 | 73 | 	RCSR = RCSR_HWR | RCSR_SWR | RCSR_WDR | RCSR_SMR; | 
 | 74 |  | 
 | 75 | 	/* set resume return address */ | 
 | 76 | 	PSPR = virt_to_phys(sa1100_cpu_resume); | 
 | 77 |  | 
 | 78 | 	/* go zzz */ | 
 | 79 | 	sa1100_cpu_suspend(); | 
 | 80 |  | 
| Russell King | 36c5ed2 | 2005-06-19 18:39:33 +0100 | [diff] [blame] | 81 | 	cpu_init(); | 
 | 82 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | 	/* | 
 | 84 | 	 * Ensure not to come back here if it wasn't intended | 
 | 85 | 	 */ | 
 | 86 | 	PSPR = 0; | 
 | 87 |  | 
 | 88 | 	/* | 
 | 89 | 	 * Ensure interrupt sources are disabled; we will re-init | 
 | 90 | 	 * the interrupt subsystem via the device manager. | 
 | 91 | 	 */ | 
 | 92 | 	ICLR = 0; | 
 | 93 | 	ICCR = 1; | 
 | 94 | 	ICMR = 0; | 
 | 95 |  | 
 | 96 | 	/* restore registers */ | 
 | 97 | 	RESTORE(GPDR); | 
 | 98 | 	RESTORE(GAFR); | 
 | 99 |  | 
 | 100 | 	RESTORE(PPDR); | 
 | 101 | 	RESTORE(PPSR); | 
 | 102 | 	RESTORE(PPAR); | 
 | 103 | 	RESTORE(PSDR); | 
 | 104 |  | 
 | 105 | 	RESTORE(Ser1SDCR0); | 
 | 106 |  | 
 | 107 | 	GPSR = gpio; | 
 | 108 | 	GPCR = ~gpio; | 
 | 109 |  | 
 | 110 | 	/* | 
 | 111 | 	 * Clear the peripheral sleep-hold bit. | 
 | 112 | 	 */ | 
 | 113 | 	PSSR = PSSR_PH; | 
 | 114 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | 	return 0; | 
 | 116 | } | 
 | 117 |  | 
 | 118 | unsigned long sleep_phys_sp(void *sp) | 
 | 119 | { | 
 | 120 | 	return virt_to_phys(sp); | 
 | 121 | } | 
 | 122 |  | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 123 | static struct platform_suspend_ops sa11x0_pm_ops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | 	.enter		= sa11x0_pm_enter, | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 125 | 	.valid		= suspend_valid_only_mem, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | }; | 
 | 127 |  | 
 | 128 | static int __init sa11x0_pm_init(void) | 
 | 129 | { | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 130 | 	suspend_set_ops(&sa11x0_pm_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | 	return 0; | 
 | 132 | } | 
 | 133 |  | 
 | 134 | late_initcall(sa11x0_pm_init); |