blob: 6c5b3ffd2cd3f53900a4106696566dee2a2b9c5f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Low-level PXA250/210 sleep/wakeUp support
3 *
4 * Initial SA1110 code:
5 * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>
6 *
7 * Adapted for PXA 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 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/linkage.h>
15#include <asm/assembler.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010016#include <mach/hardware.h>
Marek Vasutad68bb92010-11-03 16:29:35 +010017#include <mach/smemc.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010018#include <mach/pxa2xx-regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Jeff Lackey41130d32005-04-25 23:38:55 +010020#define MDREFR_KDIV 0x200a4000 // all banks
21#define CCCR_SLEEP 0x00000107 // L=7 2N=2 A=0 PPDIS=0 CPDIS=0
Jeff Lackey41130d32005-04-25 23:38:55 +010022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 .text
24
eric miaoc4d1fb62008-01-28 23:00:02 +000025#ifdef CONFIG_PXA3xx
26/*
Russell Kinga9503d22011-06-21 16:29:30 +010027 * pxa3xx_finish_suspend() - forces CPU into sleep state (S2D3C4)
eric miaoc4d1fb62008-01-28 23:00:02 +000028 */
Russell Kinga9503d22011-06-21 16:29:30 +010029ENTRY(pxa3xx_finish_suspend)
eric miaoc4d1fb62008-01-28 23:00:02 +000030 mov r0, #0x06 @ S2D3C4 mode
31 mcr p14, 0, r0, c7, c0, 0 @ enter sleep
32
3320: b 20b @ waiting for sleep
eric miaoc4d1fb62008-01-28 23:00:02 +000034#endif /* CONFIG_PXA3xx */
35
Russell King533462f2008-01-04 22:43:36 +000036#ifdef CONFIG_PXA27x
Eric Miaob750a092007-07-18 11:40:13 +010037/*
Russell Kinga9503d22011-06-21 16:29:30 +010038 * pxa27x_finish_suspend()
Eric Miaob750a092007-07-18 11:40:13 +010039 *
40 * Forces CPU into sleep state.
41 *
42 * r0 = value for PWRMODE M field for desired sleep state
43 */
Russell Kinga9503d22011-06-21 16:29:30 +010044ENTRY(pxa27x_finish_suspend)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 @ Put the processor to sleep
46 @ (also workaround for sighting 28071)
47
48 @ prepare value for sleep mode
Russell Kingdbc12512011-06-13 15:52:47 +010049 mov r1, r0 @ sleep mode
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 @ prepare pointer to physical address 0 (virtual mapping in generic.c)
52 mov r2, #UNCACHED_PHYS_0
53
Jeff Lackey41130d32005-04-25 23:38:55 +010054 @ prepare SDRAM refresh settings
55 ldr r4, =MDREFR
56 ldr r5, [r4]
57
58 @ enable SDRAM self-refresh mode
59 orr r5, r5, #MDREFR_SLFRSH
60
Jeff Lackey41130d32005-04-25 23:38:55 +010061 @ set SDCLKx divide-by-2 bits (this is part of a workaround for Errata 50)
62 ldr r6, =MDREFR_KDIV
63 orr r5, r5, r6
Jeff Lackey41130d32005-04-25 23:38:55 +010064
Eric Miaob750a092007-07-18 11:40:13 +010065 @ Intel PXA270 Specification Update notes problems sleeping
66 @ with core operating above 91 MHz
67 @ (see Errata 50, ...processor does not exit from sleep...)
68
69 ldr r6, =CCCR
70 ldr r8, [r6] @ keep original value for resume
71
72 ldr r7, =CCCR_SLEEP @ prepare CCCR sleep value
73 mov r0, #0x2 @ prepare value for CLKCFG
74
75 @ align execution to a cache line
76 b pxa_cpu_do_suspend
Russell King533462f2008-01-04 22:43:36 +000077#endif
Eric Miaob750a092007-07-18 11:40:13 +010078
Russell King533462f2008-01-04 22:43:36 +000079#ifdef CONFIG_PXA25x
Eric Miaob750a092007-07-18 11:40:13 +010080/*
Russell Kinga9503d22011-06-21 16:29:30 +010081 * pxa25x_finish_suspend()
Eric Miaob750a092007-07-18 11:40:13 +010082 *
83 * Forces CPU into sleep state.
84 *
85 * r0 = value for PWRMODE M field for desired sleep state
86 */
87
Russell Kinga9503d22011-06-21 16:29:30 +010088ENTRY(pxa25x_finish_suspend)
Eric Miaob750a092007-07-18 11:40:13 +010089 @ prepare value for sleep mode
Russell Kingdbc12512011-06-13 15:52:47 +010090 mov r1, r0 @ sleep mode
Eric Miaob750a092007-07-18 11:40:13 +010091
92 @ prepare pointer to physical address 0 (virtual mapping in generic.c)
93 mov r2, #UNCACHED_PHYS_0
94
95 @ prepare SDRAM refresh settings
96 ldr r4, =MDREFR
97 ldr r5, [r4]
98
99 @ enable SDRAM self-refresh mode
100 orr r5, r5, #MDREFR_SLFRSH
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 @ Intel PXA255 Specification Update notes problems
103 @ about suspending with PXBus operating above 133MHz
104 @ (see Errata 31, GPIO output signals, ... unpredictable in sleep
105 @
106 @ We keep the change-down close to the actual suspend on SDRAM
107 @ as possible to eliminate messing about with the refresh clock
108 @ as the system will restore with the original speed settings
109 @
110 @ Ben Dooks, 13-Sep-2004
111
112 ldr r6, =CCCR
113 ldr r8, [r6] @ keep original value for resume
114
115 @ ensure x1 for run and turbo mode with memory clock
116 bic r7, r8, #CCCR_M_MASK | CCCR_N_MASK
117 orr r7, r7, #(1<<5) | (2<<7)
118
119 @ check that the memory frequency is within limits
120 and r14, r7, #CCCR_L_MASK
121 teq r14, #1
122 bicne r7, r7, #CCCR_L_MASK
123 orrne r7, r7, #1 @@ 99.53MHz
124
125 @ get ready for the change
126
127 @ note, turbo is not preserved over sleep so there is no
128 @ point in preserving it here. we save it on the stack with the
129 @ other CP registers instead.
130 mov r0, #0
131 mcr p14, 0, r0, c6, c0, 0
132 orr r0, r0, #2 @ initiate change bit
Eric Miaob750a092007-07-18 11:40:13 +0100133 b pxa_cpu_do_suspend
Russell King533462f2008-01-04 22:43:36 +0000134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 .ltorg
137 .align 5
Eric Miaob750a092007-07-18 11:40:13 +0100138pxa_cpu_do_suspend:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 @ All needed values are now in registers.
141 @ These last instructions should be in cache
142
143 @ initiate the frequency change...
144 str r7, [r6]
145 mcr p14, 0, r0, c6, c0, 0
146
147 @ restore the original cpu speed value for resume
148 str r8, [r6]
149
Jeff Lackey41130d32005-04-25 23:38:55 +0100150 @ need 6 13-MHz cycles before changing PWRMODE
151 @ just set frequency to 91-MHz... 6*91/13 = 42
152
153 mov r0, #42
15410: subs r0, r0, #1
155 bne 10b
Jeff Lackey41130d32005-04-25 23:38:55 +0100156
157 @ Do not reorder...
158 @ Intel PXA270 Specification Update notes problems performing
159 @ external accesses after SDRAM is put in self-refresh mode
Andrew Ruder43e2be12014-06-05 14:10:56 -0500160 @ (see Errata 38 ...hangs when entering self-refresh mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 @ force address lines low by reading at physical address 0
163 ldr r3, [r2]
164
Jeff Lackey41130d32005-04-25 23:38:55 +0100165 @ put SDRAM into self-refresh
166 str r5, [r4]
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 @ enter sleep mode
Jeff Lackey41130d32005-04-25 23:38:55 +0100169 mcr p14, 0, r1, c7, c0, 0 @ PWRMODE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
17120: b 20b @ loop waiting for sleep