2 * Low-level PXA250/210 sleep/wakeUp support
5 * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>
7 * Adapted for PXA by Nicolas Pitre:
8 * Copyright (c) 2002 Monta Vista Software, Inc.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License.
14 #include <linux/linkage.h>
15 #include <asm/assembler.h>
16 #include <mach/hardware.h>
18 #include <mach/pxa-regs.h>
19 #include <mach/pxa2xx-regs.h>
21 #define MDREFR_KDIV 0x200a4000 // all banks
22 #define CCCR_SLEEP 0x00000107 // L=7 2N=2 A=0 PPDIS=0 CPDIS=0
27 @ get coprocessor registers
28 mrc p14, 0, r3, c6, c0, 0 @ clock configuration, for turbo mode
29 mrc p15, 0, r4, c15, c1, 0 @ CP access reg
30 mrc p15, 0, r5, c13, c0, 0 @ PID
31 mrc p15, 0, r6, c3, c0, 0 @ domain ID
32 mrc p15, 0, r7, c2, c0, 0 @ translation table base addr
33 mrc p15, 0, r8, c1, c1, 0 @ auxiliary control reg
34 mrc p15, 0, r9, c1, c0, 0 @ control reg
36 bic r3, r3, #2 @ clear frequency change bit
38 @ store them plus current virtual stack ptr on stack
45 @ preserve phys address of stack
49 ldr r1, =sleep_save_sp
55 * pxa3xx_cpu_suspend() - forces CPU into sleep state (S2D3C4)
57 * NOTE: unfortunately, pxa_cpu_save_cp can not be reused here since
58 * the auxiliary control register address is different between pxa3xx
62 ENTRY(pxa3xx_cpu_suspend)
67 stmfd sp!, {r2 - r12, lr} @ save registers on stack
69 mrc p14, 0, r3, c6, c0, 0 @ clock configuration, for turbo mode
70 mrc p15, 0, r4, c15, c1, 0 @ CP access reg
71 mrc p15, 0, r5, c13, c0, 0 @ PID
72 mrc p15, 0, r6, c3, c0, 0 @ domain ID
73 mrc p15, 0, r7, c2, c0, 0 @ translation table base addr
74 mrc p15, 0, r8, c1, c0, 1 @ auxiliary control reg
75 mrc p15, 0, r9, c1, c0, 0 @ control reg
77 bic r3, r3, #2 @ clear frequency change bit
79 @ store them plus current virtual stack ptr on stack
83 @ store physical address of stack pointer
86 ldr r1, =sleep_save_sp
90 bl xsc3_flush_kern_cache_all
92 mov r0, #0x06 @ S2D3C4 mode
93 mcr p14, 0, r0, c7, c0, 0 @ enter sleep
95 20: b 20b @ waiting for sleep
103 ENTRY(pxa3xx_cpu_resume)
105 mov r0, #PSR_I_BIT | PSR_F_BIT | SVC_MODE @ set SVC, irqs off
108 ldr r0, sleep_save_sp @ stack phys addr
109 ldmfd r0, {r3 - r9, sp} @ CP regs + virt stack ptr
112 mcr p15, 0, r1, c7, c7, 0 @ invalidate I & D caches, BTB
113 mcr p15, 0, r1, c7, c10, 4 @ drain write (&fill) buffer
114 mcr p15, 0, r1, c7, c5, 4 @ flush prefetch buffer
115 mcr p15, 0, r1, c8, c7, 0 @ invalidate I & D TLBs
117 mcr p14, 0, r3, c6, c0, 0 @ clock configuration, turbo mode.
118 mcr p15, 0, r4, c15, c1, 0 @ CP access reg
119 mcr p15, 0, r5, c13, c0, 0 @ PID
120 mcr p15, 0, r6, c3, c0, 0 @ domain ID
121 mcr p15, 0, r7, c2, c0, 0 @ translation table base addr
122 mcr p15, 0, r8, c1, c0, 1 @ auxiliary control reg
124 @ temporarily map resume_turn_on_mmu into the page table,
125 @ otherwise prefetch abort occurs after MMU is turned on
131 adr r3, resume_turn_on_mmu
133 orr r4, r2, r3, lsl #20
134 ldr r5, [r1, r3, lsl #2]
135 str r4, [r1, r3, lsl #2]
137 @ Mapping page table address in the page table
139 orr r7, r2, r6, lsl #20
140 ldr r8, [r1, r6, lsl #2]
141 str r7, [r1, r6, lsl #2]
143 ldr r2, =pxa3xx_resume_after_mmu @ absolute virtual address
144 b resume_turn_on_mmu @ cache align execution
147 pxa3xx_resume_after_mmu:
148 /* restore the temporary mapping */
149 str r5, [r1, r3, lsl #2]
150 str r8, [r1, r6, lsl #2]
153 #endif /* CONFIG_PXA3xx */
157 * pxa27x_cpu_suspend()
159 * Forces CPU into sleep state.
161 * r0 = value for PWRMODE M field for desired sleep state
164 ENTRY(pxa27x_cpu_suspend)
166 #ifndef CONFIG_IWMMXT
169 stmfd sp!, {r2 - r12, lr} @ save registers on stack
173 mov r5, r0 @ save sleep mode
177 bl xscale_flush_kern_cache_all
179 @ Put the processor to sleep
180 @ (also workaround for sighting 28071)
182 @ prepare value for sleep mode
183 mov r1, r5 @ sleep mode
185 @ prepare pointer to physical address 0 (virtual mapping in generic.c)
186 mov r2, #UNCACHED_PHYS_0
188 @ prepare SDRAM refresh settings
192 @ enable SDRAM self-refresh mode
193 orr r5, r5, #MDREFR_SLFRSH
195 @ set SDCLKx divide-by-2 bits (this is part of a workaround for Errata 50)
199 @ Intel PXA270 Specification Update notes problems sleeping
200 @ with core operating above 91 MHz
201 @ (see Errata 50, ...processor does not exit from sleep...)
204 ldr r8, [r6] @ keep original value for resume
206 ldr r7, =CCCR_SLEEP @ prepare CCCR sleep value
207 mov r0, #0x2 @ prepare value for CLKCFG
209 @ align execution to a cache line
215 * pxa25x_cpu_suspend()
217 * Forces CPU into sleep state.
219 * r0 = value for PWRMODE M field for desired sleep state
222 ENTRY(pxa25x_cpu_suspend)
223 stmfd sp!, {r2 - r12, lr} @ save registers on stack
227 mov r5, r0 @ save sleep mode
231 bl xscale_flush_kern_cache_all
233 @ prepare value for sleep mode
234 mov r1, r5 @ sleep mode
236 @ prepare pointer to physical address 0 (virtual mapping in generic.c)
237 mov r2, #UNCACHED_PHYS_0
239 @ prepare SDRAM refresh settings
243 @ enable SDRAM self-refresh mode
244 orr r5, r5, #MDREFR_SLFRSH
246 @ Intel PXA255 Specification Update notes problems
247 @ about suspending with PXBus operating above 133MHz
248 @ (see Errata 31, GPIO output signals, ... unpredictable in sleep
250 @ We keep the change-down close to the actual suspend on SDRAM
251 @ as possible to eliminate messing about with the refresh clock
252 @ as the system will restore with the original speed settings
254 @ Ben Dooks, 13-Sep-2004
257 ldr r8, [r6] @ keep original value for resume
259 @ ensure x1 for run and turbo mode with memory clock
260 bic r7, r8, #CCCR_M_MASK | CCCR_N_MASK
261 orr r7, r7, #(1<<5) | (2<<7)
263 @ check that the memory frequency is within limits
264 and r14, r7, #CCCR_L_MASK
266 bicne r7, r7, #CCCR_L_MASK
267 orrne r7, r7, #1 @@ 99.53MHz
269 @ get ready for the change
271 @ note, turbo is not preserved over sleep so there is no
272 @ point in preserving it here. we save it on the stack with the
273 @ other CP registers instead.
275 mcr p14, 0, r0, c6, c0, 0
276 orr r0, r0, #2 @ initiate change bit
284 @ All needed values are now in registers.
285 @ These last instructions should be in cache
287 @ initiate the frequency change...
289 mcr p14, 0, r0, c6, c0, 0
291 @ restore the original cpu speed value for resume
294 @ need 6 13-MHz cycles before changing PWRMODE
295 @ just set frequency to 91-MHz... 6*91/13 = 42
302 @ Intel PXA270 Specification Update notes problems performing
303 @ external accesses after SDRAM is put in self-refresh mode
304 @ (see Errata 39 ...hangs when entering self-refresh mode)
306 @ force address lines low by reading at physical address 0
309 @ put SDRAM into self-refresh
313 mcr p14, 0, r1, c7, c0, 0 @ PWRMODE
315 20: b 20b @ loop waiting for sleep
320 * entry point from bootloader into kernel during resume
322 * Note: Yes, part of the following code is located into the .data section.
323 * This is to allow sleep_save_sp to be accessed with a relative load
324 * while we can't rely on any MMU translation. We could have put
325 * sleep_save_sp in the .text section as well, but some setups might
326 * insist on it to be truly read-only.
331 ENTRY(pxa_cpu_resume)
332 mov r0, #PSR_I_BIT | PSR_F_BIT | SVC_MODE @ set SVC, irqs off
335 ldr r0, sleep_save_sp @ stack phys addr
336 ldr r2, =resume_after_mmu @ its absolute virtual address
337 ldmfd r0, {r3 - r9, sp} @ CP regs + virt stack ptr
340 mcr p15, 0, r1, c8, c7, 0 @ invalidate I & D TLBs
341 mcr p15, 0, r1, c7, c7, 0 @ invalidate I & D caches, BTB
343 #ifdef CONFIG_XSCALE_CACHE_ERRATA
344 bic r9, r9, #0x0004 @ see cpu_xscale_proc_init
347 mcr p14, 0, r3, c6, c0, 0 @ clock configuration, turbo mode.
348 mcr p15, 0, r4, c15, c1, 0 @ CP access reg
349 mcr p15, 0, r5, c13, c0, 0 @ PID
350 mcr p15, 0, r6, c3, c0, 0 @ domain ID
351 mcr p15, 0, r7, c2, c0, 0 @ translation table base addr
352 mcr p15, 0, r8, c1, c1, 0 @ auxiliary control reg
353 b resume_turn_on_mmu @ cache align execution
357 mcr p15, 0, r9, c1, c0, 0 @ turn on MMU, caches, etc.
359 @ Let us ensure we jump to resume_after_mmu only when the mcr above
360 @ actually took effect. They call it the "cpwait" operation.
361 mrc p15, 0, r1, c2, c0, 0 @ queue a dependency on CP15
362 sub pc, r2, r1, lsr #32 @ jump to virtual addr
368 .word 0 @ preserve stack phys ptr here
372 #ifdef CONFIG_XSCALE_CACHE_ERRATA
373 bl cpu_xscale_proc_init
376 #ifndef CONFIG_IWMMXT
379 ldmfd sp!, {r4 - r12, pc} @ return to caller