blob: 17dbc5af6915a0da723490352f61e4ae199ebc11 [file] [log] [blame]
Kevin Hilman8bd22942009-05-28 10:56:16 -07001/*
Kevin Hilman8bd22942009-05-28 10:56:16 -07002 * (C) Copyright 2007
3 * Texas Instruments
4 * Karthik Dasu <karthik-dp@ti.com>
5 *
6 * (C) Copyright 2004
7 * Texas Instruments, <www.ti.com>
8 * Richard Woodruff <r-woodruff2@ti.com>
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 as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25#include <linux/linkage.h>
26#include <asm/assembler.h>
Jean Pihetb4b36fd2010-12-18 16:44:42 +010027#include <plat/sram.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070028#include <mach/io.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070029
Paul Walmsley59fb6592010-12-21 15:30:55 -070030#include "cm2xxx_3xxx.h"
31#include "prm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070032#include "sdrc.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060033#include "control.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070034
Jean Pihetfe360e12010-12-18 16:44:43 +010035/*
36 * Registers access definitions
37 */
38#define SDRC_SCRATCHPAD_SEM_OFFS 0xc
39#define SDRC_SCRATCHPAD_SEM_V OMAP343X_SCRATCHPAD_REGADDR\
40 (SDRC_SCRATCHPAD_SEM_OFFS)
41#define PM_PREPWSTST_CORE_P OMAP3430_PRM_BASE + CORE_MOD +\
42 OMAP3430_PM_PREPWSTST
Abhijit Pagare37903002010-01-26 20:12:51 -070043#define PM_PWSTCTRL_MPU_P OMAP3430_PRM_BASE + MPU_MOD + OMAP2_PM_PWSTCTRL
Peter 'p2' De Schrijver89139dc2009-01-16 18:53:48 +020044#define CM_IDLEST1_CORE_V OMAP34XX_CM_REGADDR(CORE_MOD, CM_IDLEST1)
Peter 'p2' De Schrijver9d93b8a22010-12-20 14:05:04 -060045#define CM_IDLEST_CKGEN_V OMAP34XX_CM_REGADDR(PLL_MOD, CM_IDLEST)
Jean Pihetfe360e12010-12-18 16:44:43 +010046#define SRAM_BASE_P OMAP3_SRAM_PA
47#define CONTROL_STAT OMAP343X_CTRL_BASE + OMAP343X_CONTROL_STATUS
48#define CONTROL_MEM_RTA_CTRL (OMAP343X_CTRL_BASE +\
49 OMAP36XX_CONTROL_MEM_RTA_CTRL)
50
51/* Move this as correct place is available */
52#define SCRATCHPAD_MEM_OFFS 0x310
53#define SCRATCHPAD_BASE_P (OMAP343X_CTRL_BASE +\
54 OMAP343X_CONTROL_MEM_WKUP +\
55 SCRATCHPAD_MEM_OFFS)
Kevin Hilman8bd22942009-05-28 10:56:16 -070056#define SDRC_POWER_V OMAP34XX_SDRC_REGADDR(SDRC_POWER)
Tero Kristo0795a752008-10-13 17:58:50 +030057#define SDRC_SYSCONFIG_P (OMAP343X_SDRC_BASE + SDRC_SYSCONFIG)
58#define SDRC_MR_0_P (OMAP343X_SDRC_BASE + SDRC_MR_0)
59#define SDRC_EMR2_0_P (OMAP343X_SDRC_BASE + SDRC_EMR2_0)
60#define SDRC_MANUAL_0_P (OMAP343X_SDRC_BASE + SDRC_MANUAL_0)
61#define SDRC_MR_1_P (OMAP343X_SDRC_BASE + SDRC_MR_1)
62#define SDRC_EMR2_1_P (OMAP343X_SDRC_BASE + SDRC_EMR2_1)
63#define SDRC_MANUAL_1_P (OMAP343X_SDRC_BASE + SDRC_MANUAL_1)
Peter 'p2' De Schrijver89139dc2009-01-16 18:53:48 +020064#define SDRC_DLLA_STATUS_V OMAP34XX_SDRC_REGADDR(SDRC_DLLA_STATUS)
65#define SDRC_DLLA_CTRL_V OMAP34XX_SDRC_REGADDR(SDRC_DLLA_CTRL)
Kevin Hilman8bd22942009-05-28 10:56:16 -070066
Dave Martindd313942011-03-04 15:33:57 +000067/*
68 * This file needs be built unconditionally as ARM to interoperate correctly
69 * with non-Thumb-2-capable firmware.
70 */
71 .arm
Rajendra Nayaka89b6f02009-05-28 18:13:06 +053072
Jean Pihetd3cdfd22010-12-18 16:44:41 +010073/*
74 * API functions
75 */
Rajendra Nayaka89b6f02009-05-28 18:13:06 +053076
Jean Pihet1e81bc02010-12-18 16:44:44 +010077 .text
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -060078/*
79 * L2 cache needs to be toggled for stable OFF mode functionality on 3630.
Jean Pihet1e81bc02010-12-18 16:44:44 +010080 * This function sets up a flag that will allow for this toggling to take
Jean Pihetf7dfe3d2010-12-18 16:44:45 +010081 * place on 3630. Hopefully some version in the future may not need this.
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -060082 */
83ENTRY(enable_omap3630_toggle_l2_on_restore)
Jean Pihetbb1c9032010-12-18 16:49:57 +010084 stmfd sp!, {lr} @ save registers on stack
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -060085 /* Setup so that we will disable and enable l2 */
86 mov r1, #0x1
Dave Martindd313942011-03-04 15:33:57 +000087 adrl r2, l2dis_3630 @ may be too distant for plain adr
88 str r1, [r2]
Jean Pihetbb1c9032010-12-18 16:49:57 +010089 ldmfd sp!, {pc} @ restore regs and return
Dave Martindd313942011-03-04 15:33:57 +000090ENDPROC(enable_omap3630_toggle_l2_on_restore)
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -060091
Jean Pihetbb1c9032010-12-18 16:49:57 +010092 .text
Tero Kristo27d59a42008-10-13 13:15:00 +030093/* Function to call rom code to save secure ram context */
Jean Pihetb6338bd2011-02-02 16:38:06 +010094 .align 3
Tero Kristo27d59a42008-10-13 13:15:00 +030095ENTRY(save_secure_ram_context)
Russell King857c1b82011-06-22 12:44:32 +010096 stmfd sp!, {r4 - r11, lr} @ save registers on stack
Tero Kristo27d59a42008-10-13 13:15:00 +030097 adr r3, api_params @ r3 points to parameters
98 str r0, [r3,#0x4] @ r0 has sdram address
99 ldr r12, high_mask
100 and r3, r3, r12
101 ldr r12, sram_phy_addr_mask
102 orr r3, r3, r12
103 mov r0, #25 @ set service ID for PPA
104 mov r12, r0 @ copy secure service ID in r12
105 mov r1, #0 @ set task id for ROM code in r1
Kalle Jokiniemiba50ea72009-03-26 15:59:00 +0200106 mov r2, #4 @ set some flags in r2, r6
Tero Kristo27d59a42008-10-13 13:15:00 +0300107 mov r6, #0xff
Santosh Shilimkar4444d712011-01-23 19:00:34 +0530108 dsb @ data write barrier
109 dmb @ data memory barrier
Dave Martin76d50012011-03-04 15:33:55 +0000110 smc #1 @ call SMI monitor (smi #1)
Tero Kristo27d59a42008-10-13 13:15:00 +0300111 nop
112 nop
113 nop
114 nop
Russell King857c1b82011-06-22 12:44:32 +0100115 ldmfd sp!, {r4 - r11, pc}
Dave Martindd313942011-03-04 15:33:57 +0000116 .align
Tero Kristo27d59a42008-10-13 13:15:00 +0300117sram_phy_addr_mask:
118 .word SRAM_BASE_P
119high_mask:
120 .word 0xffff
121api_params:
122 .word 0x4, 0x0, 0x0, 0x1, 0x1
Dave Martindd313942011-03-04 15:33:57 +0000123ENDPROC(save_secure_ram_context)
Tero Kristo27d59a42008-10-13 13:15:00 +0300124ENTRY(save_secure_ram_context_sz)
125 .word . - save_secure_ram_context
126
Kevin Hilman8bd22942009-05-28 10:56:16 -0700127/*
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100128 * ======================
129 * == Idle entry point ==
130 * ======================
131 */
132
133/*
Kevin Hilman8bd22942009-05-28 10:56:16 -0700134 * Forces OMAP into idle state
135 *
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100136 * omap34xx_cpu_suspend() - This bit of code saves the CPU context if needed
137 * and executes the WFI instruction. Calling WFI effectively changes the
138 * power domains states to the desired target power states.
Kevin Hilman8bd22942009-05-28 10:56:16 -0700139 *
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100140 *
141 * Notes:
Jean Pihet46e130d2011-06-29 18:40:23 +0200142 * - only the minimum set of functions gets copied to internal SRAM at boot
143 * and after wake-up from OFF mode, cf. omap_push_sram_idle. The function
144 * pointers in SDRAM or SRAM are called depending on the desired low power
145 * target state.
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100146 * - when the OMAP wakes up it continues at different execution points
147 * depending on the low power mode (non-OFF vs OFF modes),
148 * cf. 'Resume path for xxx mode' comments.
Kevin Hilman8bd22942009-05-28 10:56:16 -0700149 */
Jean Pihetb6338bd2011-02-02 16:38:06 +0100150 .align 3
Kevin Hilman8bd22942009-05-28 10:56:16 -0700151ENTRY(omap34xx_cpu_suspend)
Russell King857c1b82011-06-22 12:44:32 +0100152 stmfd sp!, {r4 - r11, lr} @ save registers on stack
Jean Pihetd3cdfd22010-12-18 16:44:41 +0100153
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100154 /*
Santosh Shilimkarc9749a32011-01-23 19:33:53 +0530155 * r0 contains CPU context save/restore pointer in sdram
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100156 * r1 contains information about saving context:
157 * 0 - No context lost
158 * 1 - Only L1 and logic lost
Santosh Shilimkarc9749a32011-01-23 19:33:53 +0530159 * 2 - Only L2 lost (Even L1 is retained we clean it along with L2)
160 * 3 - Both L1 and L2 lost and logic lost
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100161 */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700162
Jean Pihet46e130d2011-06-29 18:40:23 +0200163 /*
164 * For OFF mode: save context and jump to WFI in SDRAM (omap3_do_wfi)
165 * For non-OFF modes: jump to the WFI code in SRAM (omap3_do_wfi_sram)
166 */
167 ldr r4, omap3_do_wfi_sram_addr
168 ldr r5, [r4]
169 cmp r1, #0x0 @ If no context save required,
170 bxeq r5 @ jump to the WFI code in SRAM
171
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100172
173 /* Otherwise fall through to the save context code */
174save_context_wfi:
175 mov r8, r0 @ Store SDRAM address in r8
176 mrc p15, 0, r5, c1, c0, 1 @ Read Auxiliary Control Register
177 mov r4, #0x1 @ Number of parameters for restore call
178 stmia r8!, {r4-r5} @ Push parameters for restore call
179 mrc p15, 1, r5, c9, c0, 2 @ Read L2 AUX ctrl register
180 stmia r8!, {r4-r5} @ Push parameters for restore call
181
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100182 /*
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100183 * jump out to kernel flush routine
184 * - reuse that code is better
185 * - it executes in a cached space so is faster than refetch per-block
186 * - should be faster and will change with kernel
187 * - 'might' have to copy address, load and jump to it
Santosh Shilimkar90625112011-01-23 22:51:09 +0530188 * Flush all data from the L1 data cache before disabling
189 * SCTLR.C bit.
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100190 */
Jean Pihetbb1c9032010-12-18 16:49:57 +0100191 ldr r1, kernel_flush
192 mov lr, pc
193 bx r1
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100194
Santosh Shilimkar90625112011-01-23 22:51:09 +0530195 /*
196 * Clear the SCTLR.C bit to prevent further data cache
197 * allocation. Clearing SCTLR.C would make all the data accesses
198 * strongly ordered and would not hit the cache.
199 */
200 mrc p15, 0, r0, c1, c0, 0
201 bic r0, r0, #(1 << 2) @ Disable the C bit
202 mcr p15, 0, r0, c1, c0, 0
203 isb
204
205 /*
206 * Invalidate L1 data cache. Even though only invalidate is
207 * necessary exported flush API is used here. Doing clean
208 * on already clean cache would be almost NOP.
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100209 */
210 ldr r1, kernel_flush
Dave Martindd313942011-03-04 15:33:57 +0000211 blx r1
212 /*
213 * The kernel doesn't interwork: v7_flush_dcache_all in particluar will
214 * always return in Thumb state when CONFIG_THUMB2_KERNEL is enabled.
215 * This sequence switches back to ARM. Note that .align may insert a
216 * nop: bx pc needs to be word-aligned in order to work.
217 */
218 THUMB( .thumb )
219 THUMB( .align )
220 THUMB( bx pc )
221 THUMB( nop )
222 .arm
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100223
Jean Pihet46e130d2011-06-29 18:40:23 +0200224 b omap3_do_wfi
225
226/*
227 * Local variables
228 */
229omap3_do_wfi_sram_addr:
230 .word omap3_do_wfi_sram
231kernel_flush:
232 .word v7_flush_dcache_all
233
234/* ===================================
235 * == WFI instruction => Enter idle ==
236 * ===================================
237 */
238
239/*
240 * Do WFI instruction
241 * Includes the resume path for non-OFF modes
242 *
243 * This code gets copied to internal SRAM and is accessible
244 * from both SDRAM and SRAM:
245 * - executed from SRAM for non-off modes (omap3_do_wfi_sram),
246 * - executed from SDRAM for OFF mode (omap3_do_wfi).
247 */
248 .align 3
249ENTRY(omap3_do_wfi)
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100250 ldr r4, sdrc_power @ read the SDRC_POWER register
251 ldr r5, [r4] @ read the contents of SDRC_POWER
252 orr r5, r5, #0x40 @ enable self refresh on idle req
253 str r5, [r4] @ write back to SDRC_POWER register
254
Kevin Hilman8bd22942009-05-28 10:56:16 -0700255 /* Data memory barrier and Data sync barrier */
Santosh Shilimkar4444d712011-01-23 19:00:34 +0530256 dsb
257 dmb
Kevin Hilman8bd22942009-05-28 10:56:16 -0700258
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100259/*
260 * ===================================
261 * == WFI instruction => Enter idle ==
262 * ===================================
263 */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700264 wfi @ wait for interrupt
265
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100266/*
267 * ===================================
268 * == Resume path for non-OFF modes ==
269 * ===================================
270 */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700271 nop
272 nop
273 nop
274 nop
275 nop
276 nop
277 nop
278 nop
279 nop
280 nop
Kevin Hilman8bd22942009-05-28 10:56:16 -0700281
Jean Pihet46e130d2011-06-29 18:40:23 +0200282/*
283 * This function implements the erratum ID i581 WA:
284 * SDRC state restore before accessing the SDRAM
285 *
286 * Only used at return from non-OFF mode. For OFF
287 * mode the ROM code configures the SDRC and
288 * the DPLL before calling the restore code directly
289 * from DDR.
290 */
291
292/* Make sure SDRC accesses are ok */
293wait_sdrc_ok:
294
295/* DPLL3 must be locked before accessing the SDRC. Maybe the HW ensures this */
296 ldr r4, cm_idlest_ckgen
297wait_dpll3_lock:
298 ldr r5, [r4]
299 tst r5, #1
300 beq wait_dpll3_lock
301
302 ldr r4, cm_idlest1_core
303wait_sdrc_ready:
304 ldr r5, [r4]
305 tst r5, #0x2
306 bne wait_sdrc_ready
307 /* allow DLL powerdown upon hw idle req */
308 ldr r4, sdrc_power
309 ldr r5, [r4]
310 bic r5, r5, #0x40
311 str r5, [r4]
312
313/*
314 * PC-relative stores lead to undefined behaviour in Thumb-2: use a r7 as a
315 * base instead.
316 * Be careful not to clobber r7 when maintaing this code.
317 */
318
319is_dll_in_lock_mode:
320 /* Is dll in lock mode? */
321 ldr r4, sdrc_dlla_ctrl
322 ldr r5, [r4]
323 tst r5, #0x4
324 bne exit_nonoff_modes @ Return if locked
325 /* wait till dll locks */
326 adr r7, kick_counter
327wait_dll_lock_timed:
328 ldr r4, wait_dll_lock_counter
329 add r4, r4, #1
330 str r4, [r7, #wait_dll_lock_counter - kick_counter]
331 ldr r4, sdrc_dlla_status
332 /* Wait 20uS for lock */
333 mov r6, #8
334wait_dll_lock:
335 subs r6, r6, #0x1
336 beq kick_dll
337 ldr r5, [r4]
338 and r5, r5, #0x4
339 cmp r5, #0x4
340 bne wait_dll_lock
341 b exit_nonoff_modes @ Return when locked
342
343 /* disable/reenable DLL if not locked */
344kick_dll:
345 ldr r4, sdrc_dlla_ctrl
346 ldr r5, [r4]
347 mov r6, r5
348 bic r6, #(1<<3) @ disable dll
349 str r6, [r4]
350 dsb
351 orr r6, r6, #(1<<3) @ enable dll
352 str r6, [r4]
353 dsb
354 ldr r4, kick_counter
355 add r4, r4, #1
356 str r4, [r7] @ kick_counter
357 b wait_dll_lock_timed
358
359exit_nonoff_modes:
360 /* Re-enable C-bit if needed */
Santosh Shilimkar90625112011-01-23 22:51:09 +0530361 mrc p15, 0, r0, c1, c0, 0
362 tst r0, #(1 << 2) @ Check C bit enabled?
363 orreq r0, r0, #(1 << 2) @ Enable the C bit if cleared
364 mcreq p15, 0, r0, c1, c0, 0
365 isb
366
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100367/*
368 * ===================================
369 * == Exit point from non-OFF modes ==
370 * ===================================
371 */
Russell King857c1b82011-06-22 12:44:32 +0100372 ldmfd sp!, {r4 - r11, pc} @ restore regs and return
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100373
Jean Pihet46e130d2011-06-29 18:40:23 +0200374/*
375 * Local variables
376 */
377sdrc_power:
378 .word SDRC_POWER_V
379cm_idlest1_core:
380 .word CM_IDLEST1_CORE_V
381cm_idlest_ckgen:
382 .word CM_IDLEST_CKGEN_V
383sdrc_dlla_status:
384 .word SDRC_DLLA_STATUS_V
385sdrc_dlla_ctrl:
386 .word SDRC_DLLA_CTRL_V
387 /*
388 * When exporting to userspace while the counters are in SRAM,
389 * these 2 words need to be at the end to facilitate retrival!
390 */
391kick_counter:
392 .word 0
393wait_dll_lock_counter:
394 .word 0
395
396ENTRY(omap3_do_wfi_sz)
397 .word . - omap3_do_wfi
398
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100399
400/*
401 * ==============================
402 * == Resume path for OFF mode ==
403 * ==============================
404 */
405
406/*
407 * The restore_* functions are called by the ROM code
408 * when back from WFI in OFF mode.
409 * Cf. the get_*restore_pointer functions.
410 *
411 * restore_es3: applies to 34xx >= ES3.0
412 * restore_3630: applies to 36xx
413 * restore: common code for 3xxx
Jean Pihet46e130d2011-06-29 18:40:23 +0200414 *
415 * Note: when back from CORE and MPU OFF mode we are running
416 * from SDRAM, without MMU, without the caches and prediction.
417 * Also the SRAM content has been cleared.
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100418 */
Kevin Hilman14c79bb2011-06-23 17:16:14 -0700419ENTRY(omap3_restore_es3)
Tero Kristo0795a752008-10-13 17:58:50 +0300420 ldr r5, pm_prepwstst_core_p
421 ldr r4, [r5]
422 and r4, r4, #0x3
423 cmp r4, #0x0 @ Check if previous power state of CORE is OFF
Jean Pihet46e130d2011-06-29 18:40:23 +0200424 bne omap3_restore @ Fall through to OMAP3 common code
Tero Kristo0795a752008-10-13 17:58:50 +0300425 adr r0, es3_sdrc_fix
426 ldr r1, sram_base
427 ldr r2, es3_sdrc_fix_sz
428 mov r2, r2, ror #2
429copy_to_sram:
430 ldmia r0!, {r3} @ val = *src
431 stmia r1!, {r3} @ *dst = val
432 subs r2, r2, #0x1 @ num_words--
433 bne copy_to_sram
434 ldr r1, sram_base
435 blx r1
Jean Pihet46e130d2011-06-29 18:40:23 +0200436 b omap3_restore @ Fall through to OMAP3 common code
Kevin Hilman14c79bb2011-06-23 17:16:14 -0700437ENDPROC(omap3_restore_es3)
Nishanth Menon458e9992010-12-20 14:05:06 -0600438
Kevin Hilman14c79bb2011-06-23 17:16:14 -0700439ENTRY(omap3_restore_3630)
Nishanth Menon458e9992010-12-20 14:05:06 -0600440 ldr r1, pm_prepwstst_core_p
441 ldr r2, [r1]
442 and r2, r2, #0x3
443 cmp r2, #0x0 @ Check if previous power state of CORE is OFF
Jean Pihet46e130d2011-06-29 18:40:23 +0200444 bne omap3_restore @ Fall through to OMAP3 common code
Nishanth Menon458e9992010-12-20 14:05:06 -0600445 /* Disable RTA before giving control */
446 ldr r1, control_mem_rta
447 mov r2, #OMAP36XX_RTA_DISABLE
448 str r2, [r1]
Kevin Hilman14c79bb2011-06-23 17:16:14 -0700449ENDPROC(omap3_restore_3630)
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100450
451 /* Fall through to common code for the remaining logic */
452
Kevin Hilman14c79bb2011-06-23 17:16:14 -0700453ENTRY(omap3_restore)
Jean Pihetbb1c9032010-12-18 16:49:57 +0100454 /*
Russell King2637ce32011-06-22 12:54:41 +0100455 * Read the pwstctrl register to check the reason for mpu reset.
456 * This tells us what was lost.
Jean Pihetf7dfe3d2010-12-18 16:44:45 +0100457 */
Jean Pihetbb1c9032010-12-18 16:49:57 +0100458 ldr r1, pm_pwstctrl_mpu
Kevin Hilman8bd22942009-05-28 10:56:16 -0700459 ldr r2, [r1]
Jean Pihetbb1c9032010-12-18 16:49:57 +0100460 and r2, r2, #0x3
461 cmp r2, #0x0 @ Check if target power state was OFF or RET
Kevin Hilman8bd22942009-05-28 10:56:16 -0700462 bne logic_l1_restore
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600463
464 ldr r0, l2dis_3630
465 cmp r0, #0x1 @ should we disable L2 on 3630?
466 bne skipl2dis
467 mrc p15, 0, r0, c1, c0, 1
468 bic r0, r0, #2 @ disable L2 cache
469 mcr p15, 0, r0, c1, c0, 1
470skipl2dis:
Tero Kristo27d59a42008-10-13 13:15:00 +0300471 ldr r0, control_stat
472 ldr r1, [r0]
473 and r1, #0x700
474 cmp r1, #0x300
475 beq l2_inv_gp
Jean Pihetbb1c9032010-12-18 16:49:57 +0100476 mov r0, #40 @ set service ID for PPA
477 mov r12, r0 @ copy secure Service ID in r12
478 mov r1, #0 @ set task id for ROM code in r1
479 mov r2, #4 @ set some flags in r2, r6
Tero Kristo27d59a42008-10-13 13:15:00 +0300480 mov r6, #0xff
481 adr r3, l2_inv_api_params @ r3 points to dummy parameters
Santosh Shilimkar4444d712011-01-23 19:00:34 +0530482 dsb @ data write barrier
483 dmb @ data memory barrier
Dave Martin76d50012011-03-04 15:33:55 +0000484 smc #1 @ call SMI monitor (smi #1)
Tero Kristo27d59a42008-10-13 13:15:00 +0300485 /* Write to Aux control register to set some bits */
Jean Pihetbb1c9032010-12-18 16:49:57 +0100486 mov r0, #42 @ set service ID for PPA
487 mov r12, r0 @ copy secure Service ID in r12
488 mov r1, #0 @ set task id for ROM code in r1
489 mov r2, #4 @ set some flags in r2, r6
Tero Kristo27d59a42008-10-13 13:15:00 +0300490 mov r6, #0xff
Tero Kristoa087cad2009-11-12 12:07:20 +0200491 ldr r4, scratchpad_base
Jean Pihetbb1c9032010-12-18 16:49:57 +0100492 ldr r3, [r4, #0xBC] @ r3 points to parameters
Santosh Shilimkar4444d712011-01-23 19:00:34 +0530493 dsb @ data write barrier
494 dmb @ data memory barrier
Dave Martin76d50012011-03-04 15:33:55 +0000495 smc #1 @ call SMI monitor (smi #1)
Tero Kristo27d59a42008-10-13 13:15:00 +0300496
Tero Kristo79dcfdd2009-11-12 12:07:22 +0200497#ifdef CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE
498 /* Restore L2 aux control register */
Jean Pihetbb1c9032010-12-18 16:49:57 +0100499 @ set service ID for PPA
Tero Kristo79dcfdd2009-11-12 12:07:22 +0200500 mov r0, #CONFIG_OMAP3_L2_AUX_SECURE_SERVICE_SET_ID
Jean Pihetbb1c9032010-12-18 16:49:57 +0100501 mov r12, r0 @ copy service ID in r12
502 mov r1, #0 @ set task ID for ROM code in r1
503 mov r2, #4 @ set some flags in r2, r6
Tero Kristo79dcfdd2009-11-12 12:07:22 +0200504 mov r6, #0xff
505 ldr r4, scratchpad_base
506 ldr r3, [r4, #0xBC]
Jean Pihetbb1c9032010-12-18 16:49:57 +0100507 adds r3, r3, #8 @ r3 points to parameters
Santosh Shilimkar4444d712011-01-23 19:00:34 +0530508 dsb @ data write barrier
509 dmb @ data memory barrier
Dave Martin76d50012011-03-04 15:33:55 +0000510 smc #1 @ call SMI monitor (smi #1)
Tero Kristo79dcfdd2009-11-12 12:07:22 +0200511#endif
Tero Kristo27d59a42008-10-13 13:15:00 +0300512 b logic_l1_restore
Jean Pihetbb1c9032010-12-18 16:49:57 +0100513
Dave Martindd313942011-03-04 15:33:57 +0000514 .align
Tero Kristo27d59a42008-10-13 13:15:00 +0300515l2_inv_api_params:
Jean Pihetbb1c9032010-12-18 16:49:57 +0100516 .word 0x1, 0x00
Tero Kristo27d59a42008-10-13 13:15:00 +0300517l2_inv_gp:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700518 /* Execute smi to invalidate L2 cache */
Jean Pihetbb1c9032010-12-18 16:49:57 +0100519 mov r12, #0x1 @ set up to invalidate L2
Dave Martin76d50012011-03-04 15:33:55 +0000520 smc #0 @ Call SMI monitor (smieq)
Tero Kristo27d59a42008-10-13 13:15:00 +0300521 /* Write to Aux control register to set some bits */
Tero Kristoa087cad2009-11-12 12:07:20 +0200522 ldr r4, scratchpad_base
523 ldr r3, [r4,#0xBC]
524 ldr r0, [r3,#4]
Tero Kristo27d59a42008-10-13 13:15:00 +0300525 mov r12, #0x3
Dave Martin76d50012011-03-04 15:33:55 +0000526 smc #0 @ Call SMI monitor (smieq)
Tero Kristo79dcfdd2009-11-12 12:07:22 +0200527 ldr r4, scratchpad_base
528 ldr r3, [r4,#0xBC]
529 ldr r0, [r3,#12]
530 mov r12, #0x2
Dave Martin76d50012011-03-04 15:33:55 +0000531 smc #0 @ Call SMI monitor (smieq)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700532logic_l1_restore:
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600533 ldr r1, l2dis_3630
Jean Pihetbb1c9032010-12-18 16:49:57 +0100534 cmp r1, #0x1 @ Test if L2 re-enable needed on 3630
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600535 bne skipl2reen
536 mrc p15, 0, r1, c1, c0, 1
Jean Pihetbb1c9032010-12-18 16:49:57 +0100537 orr r1, r1, #2 @ re-enable L2 cache
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600538 mcr p15, 0, r1, c1, c0, 1
539skipl2reen:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700540
Russell King076f2cc2011-06-22 15:42:54 +0100541 /* Now branch to the common CPU resume function */
542 b cpu_resume
Kevin Hilman14c79bb2011-06-23 17:16:14 -0700543ENDPROC(omap3_restore)
Santosh Shilimkar46f557c2011-01-23 21:37:03 +0530544
Russell King076f2cc2011-06-22 15:42:54 +0100545 .ltorg
Jean Pihet1e81bc02010-12-18 16:44:44 +0100546
547/*
Jean Pihet46e130d2011-06-29 18:40:23 +0200548 * Local variables
549 */
550pm_prepwstst_core_p:
551 .word PM_PREPWSTST_CORE_P
552pm_pwstctrl_mpu:
553 .word PM_PWSTCTRL_MPU_P
554scratchpad_base:
555 .word SCRATCHPAD_BASE_P
556sram_base:
557 .word SRAM_BASE_P + 0x8000
558control_stat:
559 .word CONTROL_STAT
560control_mem_rta:
561 .word CONTROL_MEM_RTA_CTRL
562l2dis_3630:
563 .word 0
564
565/*
Jean Pihet1e81bc02010-12-18 16:44:44 +0100566 * Internal functions
567 */
568
Jean Pihet46e130d2011-06-29 18:40:23 +0200569/*
570 * This function implements the erratum ID i443 WA, applies to 34xx >= ES3.0
571 * Copied to and run from SRAM in order to reconfigure the SDRC parameters.
572 */
Jean Pihet1e81bc02010-12-18 16:44:44 +0100573 .text
Dave Martindd313942011-03-04 15:33:57 +0000574 .align 3
Jean Pihet1e81bc02010-12-18 16:44:44 +0100575ENTRY(es3_sdrc_fix)
576 ldr r4, sdrc_syscfg @ get config addr
577 ldr r5, [r4] @ get value
578 tst r5, #0x100 @ is part access blocked
579 it eq
580 biceq r5, r5, #0x100 @ clear bit if set
581 str r5, [r4] @ write back change
582 ldr r4, sdrc_mr_0 @ get config addr
583 ldr r5, [r4] @ get value
584 str r5, [r4] @ write back change
585 ldr r4, sdrc_emr2_0 @ get config addr
586 ldr r5, [r4] @ get value
587 str r5, [r4] @ write back change
588 ldr r4, sdrc_manual_0 @ get config addr
589 mov r5, #0x2 @ autorefresh command
590 str r5, [r4] @ kick off refreshes
591 ldr r4, sdrc_mr_1 @ get config addr
592 ldr r5, [r4] @ get value
593 str r5, [r4] @ write back change
594 ldr r4, sdrc_emr2_1 @ get config addr
595 ldr r5, [r4] @ get value
596 str r5, [r4] @ write back change
597 ldr r4, sdrc_manual_1 @ get config addr
598 mov r5, #0x2 @ autorefresh command
599 str r5, [r4] @ kick off refreshes
600 bx lr
601
Jean Pihet46e130d2011-06-29 18:40:23 +0200602/*
603 * Local variables
604 */
Dave Martindd313942011-03-04 15:33:57 +0000605 .align
Jean Pihet1e81bc02010-12-18 16:44:44 +0100606sdrc_syscfg:
607 .word SDRC_SYSCONFIG_P
608sdrc_mr_0:
609 .word SDRC_MR_0_P
610sdrc_emr2_0:
611 .word SDRC_EMR2_0_P
612sdrc_manual_0:
613 .word SDRC_MANUAL_0_P
614sdrc_mr_1:
615 .word SDRC_MR_1_P
616sdrc_emr2_1:
617 .word SDRC_EMR2_1_P
618sdrc_manual_1:
619 .word SDRC_MANUAL_1_P
Dave Martindd313942011-03-04 15:33:57 +0000620ENDPROC(es3_sdrc_fix)
Jean Pihet1e81bc02010-12-18 16:44:44 +0100621ENTRY(es3_sdrc_fix_sz)
622 .word . - es3_sdrc_fix