Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | /* * PXA250/210 Power Management Routines * * Original code for the SA11x0: * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com> * * Modified for the PXA250 by Nicolas Pitre: * Copyright (c) 2002 Monta Vista Software, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License. */ #include <linux/config.h> #include <linux/init.h> #include <linux/pm.h> #include <linux/slab.h> #include <linux/interrupt.h> #include <linux/sysctl.h> #include <linux/errno.h> #include <asm/hardware.h> #include <asm/memory.h> #include <asm/system.h> #include <asm/leds.h> /* * Debug macros */ #undef DEBUG extern void pxa_cpu_suspend(void); extern void pxa_cpu_resume(void); #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x #define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x] /* * List of global PXA peripheral registers to preserve. * More ones like CP and general purpose register values are preserved * with the stack pointer in sleep.S. */ enum { SLEEP_SAVE_START = 0, SLEEP_SAVE_OSCR, SLEEP_SAVE_OIER, SLEEP_SAVE_OSMR0, SLEEP_SAVE_OSMR1, SLEEP_SAVE_OSMR2, SLEEP_SAVE_OSMR3, SLEEP_SAVE_GPDR0, SLEEP_SAVE_GPDR1, SLEEP_SAVE_GPDR2, SLEEP_SAVE_GRER0, SLEEP_SAVE_GRER1, SLEEP_SAVE_GRER2, SLEEP_SAVE_GFER0, SLEEP_SAVE_GFER1, SLEEP_SAVE_GFER2, SLEEP_SAVE_GAFR0_L, SLEEP_SAVE_GAFR1_L, SLEEP_SAVE_GAFR2_L, SLEEP_SAVE_GAFR0_U, SLEEP_SAVE_GAFR1_U, SLEEP_SAVE_GAFR2_U, SLEEP_SAVE_FFIER, SLEEP_SAVE_FFLCR, SLEEP_SAVE_FFMCR, SLEEP_SAVE_FFSPR, SLEEP_SAVE_FFISR, SLEEP_SAVE_FFDLL, SLEEP_SAVE_FFDLH, SLEEP_SAVE_ICMR, SLEEP_SAVE_CKEN, SLEEP_SAVE_CKSUM, SLEEP_SAVE_SIZE }; int pm_do_suspend(void) { unsigned long sleep_save[SLEEP_SAVE_SIZE]; unsigned long checksum = 0; int i; cli(); clf(); leds_event(led_stop); /* preserve current time */ RCNR = xtime.tv_sec; /* * Temporary solution. This won't be necessary once * we move pxa support into the serial/* driver * Save the FF UART */ SAVE(FFIER); SAVE(FFLCR); SAVE(FFMCR); SAVE(FFSPR); SAVE(FFISR); FFLCR |= 0x80; SAVE(FFDLL); SAVE(FFDLH); FFLCR &= 0xef; /* save vital registers */ SAVE(OSCR); SAVE(OSMR0); SAVE(OSMR1); SAVE(OSMR2); SAVE(OSMR3); SAVE(OIER); SAVE(GPDR0); SAVE(GPDR1); SAVE(GPDR2); SAVE(GRER0); SAVE(GRER1); SAVE(GRER2); SAVE(GFER0); SAVE(GFER1); SAVE(GFER2); SAVE(GAFR0_L); SAVE(GAFR0_U); SAVE(GAFR1_L); SAVE(GAFR1_U); SAVE(GAFR2_L); SAVE(GAFR2_U); SAVE(ICMR); ICMR = 0; SAVE(CKEN); CKEN = 0; /* Note: wake up source are set up in each machine specific files */ /* clear GPIO transition detect bits */ GEDR0 = GEDR0; GEDR1 = GEDR1; GEDR2 = GEDR2; /* Clear sleep reset status */ RCSR = RCSR_SMR; /* set resume return address */ PSPR = virt_to_phys(pxa_cpu_resume); /* before sleeping, calculate and save a checksum */ for (i = 0; i < SLEEP_SAVE_SIZE - 1; i++) checksum += sleep_save[i]; sleep_save[SLEEP_SAVE_CKSUM] = checksum; /* *** go zzz *** */ pxa_cpu_suspend(); /* after sleeping, validate the checksum */ checksum = 0; for (i = 0; i < SLEEP_SAVE_SIZE - 1; i++) checksum += sleep_save[i]; /* if invalid, display message and wait for a hardware reset */ if (checksum != sleep_save[SLEEP_SAVE_CKSUM]) { #ifdef CONFIG_ARCH_LUBBOCK LUB_HEXLED = 0xbadbadc5; #endif while (1); } /* ensure not to come back here if it wasn't intended */ PSPR = 0; /* restore registers */ RESTORE(GPDR0); RESTORE(GPDR1); RESTORE(GPDR2); RESTORE(GRER0); RESTORE(GRER1); RESTORE(GRER2); RESTORE(GFER0); RESTORE(GFER1); RESTORE(GFER2); RESTORE(GAFR0_L); RESTORE(GAFR0_U); RESTORE(GAFR1_L); RESTORE(GAFR1_U); RESTORE(GAFR2_L); RESTORE(GAFR2_U); PSSR = PSSR_PH; RESTORE(OSMR0); RESTORE(OSMR1); RESTORE(OSMR2); RESTORE(OSMR3); RESTORE(OSCR); RESTORE(OIER); RESTORE(CKEN); ICLR = 0; ICCR = 1; RESTORE(ICMR); /* * Temporary solution. This won't be necessary once * we move pxa support into the serial/* driver. * Restore the FF UART. */ RESTORE(FFMCR); RESTORE(FFSPR); RESTORE(FFLCR); FFLCR |= 0x80; RESTORE(FFDLH); RESTORE(FFDLL); RESTORE(FFLCR); RESTORE(FFISR); FFFCR = 0x07; RESTORE(FFIER); /* restore current time */ xtime.tv_sec = RCNR; #ifdef DEBUG printk(KERN_DEBUG "*** made it back from resume\n"); #endif leds_event(led_start); sti(); return 0; } unsigned long sleep_phys_sp(void *sp) { return virt_to_phys(sp); } #ifdef CONFIG_SYSCTL /* * ARGH! ACPI people defined CTL_ACPI in linux/acpi.h rather than * linux/sysctl.h. * * This means our interface here won't survive long - it needs a new * interface. Quick hack to get this working - use sysctl id 9999. */ #warning ACPI broke the kernel, this interface needs to be fixed up. #define CTL_ACPI 9999 #define ACPI_S1_SLP_TYP 19 /* * Send us to sleep. */ static int sysctl_pm_do_suspend(void) { int retval; retval = pm_send_all(PM_SUSPEND, (void *)3); if (retval == 0) { retval = pm_do_suspend(); pm_send_all(PM_RESUME, (void *)0); } return retval; } static struct ctl_table pm_table[] = { {ACPI_S1_SLP_TYP, "suspend", NULL, 0, 0600, NULL, (proc_handler *)&sysctl_pm_do_suspend}, {0} }; static struct ctl_table pm_dir_table[] = { {CTL_ACPI, "pm", NULL, 0, 0555, pm_table}, {0} }; /* * Initialize power interface */ static int __init pm_init(void) { register_sysctl_table(pm_dir_table, 1); return 0; } __initcall(pm_init); #endif |