2 * linux/arch/arm/plat-omap/sleep.S
4 * Low-level OMAP1510/1610 sleep/wakeUp support
7 * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>
9 * Adapted for PXA by Nicolas Pitre:
10 * Copyright (c) 2002 Monta Vista Software, Inc.
12 * Support for OMAP1510/1610 by Dirk Behme <dirk.behme@de.bosch.com>
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
19 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
20 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
22 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * You should have received a copy of the GNU General Public License along
31 * with this program; if not, write to the Free Software Foundation, Inc.,
32 * 675 Mass Ave, Cambridge, MA 02139, USA.
35 #include <linux/config.h>
36 #include <linux/linkage.h>
37 #include <asm/assembler.h>
38 #include <asm/arch/io.h>
39 #include <asm/arch/pm.h>
44 * Forces OMAP into idle state
46 * omapXXXX_idle_loop_suspend()
48 * Note: This code get's copied to internal SRAM at boot. When the OMAP
49 * wakes up it continues execution at the point it went to sleep.
51 * Note: Because of slightly different configuration values we have
52 * processor specific functions here.
55 #ifdef CONFIG_ARCH_OMAP1510
56 ENTRY(omap1510_idle_loop_suspend)
58 stmfd sp!, {r0 - r12, lr} @ save registers on stack
60 @ load base address of ARM_IDLECT1 and ARM_IDLECT2
61 mov r4, #CLKGEN_REG_ASM_BASE & 0xff000000
62 orr r4, r4, #CLKGEN_REG_ASM_BASE & 0x00ff0000
63 orr r4, r4, #CLKGEN_REG_ASM_BASE & 0x0000ff00
65 @ turn off clock domains
66 @ get ARM_IDLECT2 into r2
67 ldrh r2, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
68 mov r5, #OMAP1510_IDLE_CLOCK_DOMAINS & 0xff
69 orr r5, r5, #OMAP1510_IDLE_CLOCK_DOMAINS & 0xff00
70 strh r5, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
73 @ get ARM_IDLECT1 into r1
74 ldrh r1, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
75 orr r3, r1, #OMAP1510_IDLE_LOOP_REQUEST & 0xffff
76 strh r3, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
78 mov r5, #IDLE_WAIT_CYCLES & 0xff
79 orr r5, r5, #IDLE_WAIT_CYCLES & 0xff00
80 l_1510: subs r5, r5, #1
83 * Let's wait for the next clock tick to wake us up.
86 mcr p15, 0, r0, c7, c0, 4 @ wait for interrupt
88 * omap1510_idle_loop_suspend()'s resume point.
90 * It will just start executing here, so we'll restore stuff from the
91 * stack, reset the ARM_IDLECT1 and ARM_IDLECT2.
94 @ restore ARM_IDLECT1 and ARM_IDLECT2 and return
95 @ r1 has ARM_IDLECT1 and r2 still has ARM_IDLECT2
96 strh r2, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
97 strh r1, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
99 ldmfd sp!, {r0 - r12, pc} @ restore regs and return
101 ENTRY(omap1510_idle_loop_suspend_sz)
102 .word . - omap1510_idle_loop_suspend
103 #endif /* CONFIG_ARCH_OMAP1510 */
105 #if defined(CONFIG_ARCH_OMAP16XX)
106 ENTRY(omap1610_idle_loop_suspend)
108 stmfd sp!, {r0 - r12, lr} @ save registers on stack
110 @ load base address of ARM_IDLECT1 and ARM_IDLECT2
111 mov r4, #CLKGEN_REG_ASM_BASE & 0xff000000
112 orr r4, r4, #CLKGEN_REG_ASM_BASE & 0x00ff0000
113 orr r4, r4, #CLKGEN_REG_ASM_BASE & 0x0000ff00
115 @ turn off clock domains
116 @ get ARM_IDLECT2 into r2
117 ldrh r2, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
118 mov r5, #OMAP1610_IDLECT2_SLEEP_VAL & 0xff
119 orr r5, r5, #OMAP1610_IDLECT2_SLEEP_VAL & 0xff00
120 strh r5, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
123 @ get ARM_IDLECT1 into r1
124 ldrh r1, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
125 orr r3, r1, #OMAP1610_IDLE_LOOP_REQUEST & 0xffff
126 strh r3, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
128 mov r5, #IDLE_WAIT_CYCLES & 0xff
129 orr r5, r5, #IDLE_WAIT_CYCLES & 0xff00
130 l_1610: subs r5, r5, #1
133 * Let's wait for the next clock tick to wake us up.
136 mcr p15, 0, r0, c7, c0, 4 @ wait for interrupt
138 * omap1610_idle_loop_suspend()'s resume point.
140 * It will just start executing here, so we'll restore stuff from the
141 * stack, reset the ARM_IDLECT1 and ARM_IDLECT2.
144 @ restore ARM_IDLECT1 and ARM_IDLECT2 and return
145 @ r1 has ARM_IDLECT1 and r2 still has ARM_IDLECT2
146 strh r2, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
147 strh r1, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
149 ldmfd sp!, {r0 - r12, pc} @ restore regs and return
151 ENTRY(omap1610_idle_loop_suspend_sz)
152 .word . - omap1610_idle_loop_suspend
153 #endif /* CONFIG_ARCH_OMAP16XX */
156 * Forces OMAP into deep sleep state
158 * omapXXXX_cpu_suspend()
160 * The values of the registers ARM_IDLECT1 and ARM_IDLECT2 are passed
161 * as arg0 and arg1 from caller. arg0 is stored in register r0 and arg1
164 * Note: This code get's copied to internal SRAM at boot. When the OMAP
165 * wakes up it continues execution at the point it went to sleep.
167 * Note: Because of errata work arounds we have processor specific functions
168 * here. They are mostly the same, but slightly different.
172 #ifdef CONFIG_ARCH_OMAP1510
173 ENTRY(omap1510_cpu_suspend)
175 @ save registers on stack
176 stmfd sp!, {r0 - r12, lr}
178 @ load base address of Traffic Controller
179 mov r4, #TCMIF_ASM_BASE & 0xff000000
180 orr r4, r4, #TCMIF_ASM_BASE & 0x00ff0000
181 orr r4, r4, #TCMIF_ASM_BASE & 0x0000ff00
183 @ work around errata of OMAP1510 PDE bit for TC shut down
185 ldr r5, [r4, #EMIFS_CONFIG_ASM_OFFSET & 0xff]
186 bic r5, r5, #PDE_BIT & 0xff
187 str r5, [r4, #EMIFS_CONFIG_ASM_OFFSET & 0xff]
190 and r5, r5, #PWD_EN_BIT & 0xff
191 str r5, [r4, #EMIFS_CONFIG_ASM_OFFSET & 0xff]
193 @ prepare to put SDRAM into self-refresh manually
194 ldr r5, [r4, #EMIFF_SDRAM_CONFIG_ASM_OFFSET & 0xff]
195 orr r5, r5, #SELF_REFRESH_MODE & 0xff000000
196 orr r5, r5, #SELF_REFRESH_MODE & 0x000000ff
197 str r5, [r4, #EMIFF_SDRAM_CONFIG_ASM_OFFSET & 0xff]
199 @ prepare to put EMIFS to Sleep
200 ldr r5, [r4, #EMIFS_CONFIG_ASM_OFFSET & 0xff]
201 orr r5, r5, #IDLE_EMIFS_REQUEST & 0xff
202 str r5, [r4, #EMIFS_CONFIG_ASM_OFFSET & 0xff]
204 @ load base address of ARM_IDLECT1 and ARM_IDLECT2
205 mov r4, #CLKGEN_REG_ASM_BASE & 0xff000000
206 orr r4, r4, #CLKGEN_REG_ASM_BASE & 0x00ff0000
207 orr r4, r4, #CLKGEN_REG_ASM_BASE & 0x0000ff00
209 @ turn off clock domains
210 mov r5, #OMAP1510_IDLE_CLOCK_DOMAINS & 0xff
211 orr r5, r5, #OMAP1510_IDLE_CLOCK_DOMAINS & 0xff00
212 strh r5, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
215 mov r3, #OMAP1510_DEEP_SLEEP_REQUEST & 0xff
216 orr r3, r3, #OMAP1510_DEEP_SLEEP_REQUEST & 0xff00
217 strh r3, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
219 mov r5, #IDLE_WAIT_CYCLES & 0xff
220 orr r5, r5, #IDLE_WAIT_CYCLES & 0xff00
225 * Let's wait for the next wake up event to wake us up. r0 can't be
226 * used here because r0 holds ARM_IDLECT1
229 mcr p15, 0, r2, c7, c0, 4 @ wait for interrupt
231 * omap1510_cpu_suspend()'s resume point.
233 * It will just start executing here, so we'll restore stuff from the
234 * stack, reset the ARM_IDLECT1 and ARM_IDLECT2.
236 strh r1, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
237 strh r0, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
239 @ restore regs and return
240 ldmfd sp!, {r0 - r12, pc}
242 ENTRY(omap1510_cpu_suspend_sz)
243 .word . - omap1510_cpu_suspend
244 #endif /* CONFIG_ARCH_OMAP1510 */
246 #if defined(CONFIG_ARCH_OMAP16XX)
247 ENTRY(omap1610_cpu_suspend)
249 @ save registers on stack
250 stmfd sp!, {r0 - r12, lr}
254 mcr p15, 0, r0, c7, c10, 4
257 @ load base address of Traffic Controller
258 mov r6, #TCMIF_ASM_BASE & 0xff000000
259 orr r6, r6, #TCMIF_ASM_BASE & 0x00ff0000
260 orr r6, r6, #TCMIF_ASM_BASE & 0x0000ff00
262 @ prepare to put SDRAM into self-refresh manually
263 ldr r7, [r6, #EMIFF_SDRAM_CONFIG_ASM_OFFSET & 0xff]
264 orr r9, r7, #SELF_REFRESH_MODE & 0xff000000
265 orr r9, r9, #SELF_REFRESH_MODE & 0x000000ff
266 str r9, [r6, #EMIFF_SDRAM_CONFIG_ASM_OFFSET & 0xff]
268 @ prepare to put EMIFS to Sleep
269 ldr r8, [r6, #EMIFS_CONFIG_ASM_OFFSET & 0xff]
270 orr r9, r8, #IDLE_EMIFS_REQUEST & 0xff
271 str r9, [r6, #EMIFS_CONFIG_ASM_OFFSET & 0xff]
273 @ load base address of ARM_IDLECT1 and ARM_IDLECT2
274 mov r4, #CLKGEN_REG_ASM_BASE & 0xff000000
275 orr r4, r4, #CLKGEN_REG_ASM_BASE & 0x00ff0000
276 orr r4, r4, #CLKGEN_REG_ASM_BASE & 0x0000ff00
278 @ turn off clock domains
279 @ do not disable PERCK (0x04)
280 mov r5, #OMAP1610_IDLECT2_SLEEP_VAL & 0xff
281 orr r5, r5, #OMAP1610_IDLECT2_SLEEP_VAL & 0xff00
282 strh r5, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
285 mov r3, #OMAP1610_IDLECT1_SLEEP_VAL & 0xff
286 orr r3, r3, #OMAP1610_IDLECT1_SLEEP_VAL & 0xff00
287 strh r3, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
289 @ disable instruction cache
290 mrc p15, 0, r9, c1, c0, 0
292 mcr p15, 0, r2, c1, c0, 0
296 * Let's wait for the next wake up event to wake us up. r0 can't be
297 * used here because r0 holds ARM_IDLECT1
300 mcr p15, 0, r2, c7, c0, 4 @ wait for interrupt
302 * omap1610_cpu_suspend()'s resume point.
304 * It will just start executing here, so we'll restore stuff from the
308 mcr p15, 0, r9, c1, c0, 0
310 @ reset the ARM_IDLECT1 and ARM_IDLECT2.
311 strh r1, [r4, #ARM_IDLECT2_ASM_OFFSET & 0xff]
312 strh r0, [r4, #ARM_IDLECT1_ASM_OFFSET & 0xff]
314 @ Restore EMIFF controls
315 str r7, [r6, #EMIFF_SDRAM_CONFIG_ASM_OFFSET & 0xff]
316 str r8, [r6, #EMIFS_CONFIG_ASM_OFFSET & 0xff]
318 @ restore regs and return
319 ldmfd sp!, {r0 - r12, pc}
321 ENTRY(omap1610_cpu_suspend_sz)
322 .word . - omap1610_cpu_suspend
323 #endif /* CONFIG_ARCH_OMAP16XX */