xref: /linux/arch/arm/mach-omap2/sleep34xx.S (revision d8a50941c91a68da202aaa96a3dacd471ea9c693)
18bd22949SKevin Hilman/*
28bd22949SKevin Hilman * (C) Copyright 2007
38bd22949SKevin Hilman * Texas Instruments
48bd22949SKevin Hilman * Karthik Dasu <karthik-dp@ti.com>
58bd22949SKevin Hilman *
68bd22949SKevin Hilman * (C) Copyright 2004
78bd22949SKevin Hilman * Texas Instruments, <www.ti.com>
88bd22949SKevin Hilman * Richard Woodruff <r-woodruff2@ti.com>
98bd22949SKevin Hilman *
108bd22949SKevin Hilman * This program is free software; you can redistribute it and/or
118bd22949SKevin Hilman * modify it under the terms of the GNU General Public License as
128bd22949SKevin Hilman * published by the Free Software Foundation; either version 2 of
138bd22949SKevin Hilman * the License, or (at your option) any later version.
148bd22949SKevin Hilman *
158bd22949SKevin Hilman * This program is distributed in the hope that it will be useful,
168bd22949SKevin Hilman * but WITHOUT ANY WARRANTY; without even the implied warranty of
178bd22949SKevin Hilman * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE.  See the
188bd22949SKevin Hilman * GNU General Public License for more details.
198bd22949SKevin Hilman *
208bd22949SKevin Hilman * You should have received a copy of the GNU General Public License
218bd22949SKevin Hilman * along with this program; if not, write to the Free Software
228bd22949SKevin Hilman * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
238bd22949SKevin Hilman * MA 02111-1307 USA
248bd22949SKevin Hilman */
258bd22949SKevin Hilman#include <linux/linkage.h>
268bd22949SKevin Hilman
27ee0839c2STony Lindgren#include <asm/assembler.h>
28ee0839c2STony Lindgren
29c49f34bcSTony Lindgren#include "omap34xx.h"
30ee0839c2STony Lindgren#include "iomap.h"
31ff4ae5d9SPaul Walmsley#include "cm3xxx.h"
32139563adSPaul Walmsley#include "prm3xxx.h"
338bd22949SKevin Hilman#include "sdrc.h"
34bf027ca1STony Lindgren#include "sram.h"
354814ced5SPaul Walmsley#include "control.h"
368bd22949SKevin Hilman
37fe360e1cSJean Pihet/*
38fe360e1cSJean Pihet * Registers access definitions
39fe360e1cSJean Pihet */
40fe360e1cSJean Pihet#define SDRC_SCRATCHPAD_SEM_OFFS	0xc
41fe360e1cSJean Pihet#define SDRC_SCRATCHPAD_SEM_V	OMAP343X_SCRATCHPAD_REGADDR\
42fe360e1cSJean Pihet					(SDRC_SCRATCHPAD_SEM_OFFS)
43fe360e1cSJean Pihet#define PM_PREPWSTST_CORE_P	OMAP3430_PRM_BASE + CORE_MOD +\
44fe360e1cSJean Pihet					OMAP3430_PM_PREPWSTST
4537903009SAbhijit Pagare#define PM_PWSTCTRL_MPU_P	OMAP3430_PRM_BASE + MPU_MOD + OMAP2_PM_PWSTCTRL
4689139dceSPeter 'p2' De Schrijver#define CM_IDLEST1_CORE_V	OMAP34XX_CM_REGADDR(CORE_MOD, CM_IDLEST1)
479d93b8a2SPeter 'p2' De Schrijver#define CM_IDLEST_CKGEN_V	OMAP34XX_CM_REGADDR(PLL_MOD, CM_IDLEST)
48fe360e1cSJean Pihet#define SRAM_BASE_P		OMAP3_SRAM_PA
49fe360e1cSJean Pihet#define CONTROL_STAT		OMAP343X_CTRL_BASE + OMAP343X_CONTROL_STATUS
50fe360e1cSJean Pihet#define CONTROL_MEM_RTA_CTRL	(OMAP343X_CTRL_BASE +\
51fe360e1cSJean Pihet					OMAP36XX_CONTROL_MEM_RTA_CTRL)
52fe360e1cSJean Pihet
53fe360e1cSJean Pihet/* Move this as correct place is available */
54fe360e1cSJean Pihet#define SCRATCHPAD_MEM_OFFS	0x310
55fe360e1cSJean Pihet#define SCRATCHPAD_BASE_P	(OMAP343X_CTRL_BASE +\
56fe360e1cSJean Pihet					OMAP343X_CONTROL_MEM_WKUP +\
57fe360e1cSJean Pihet					SCRATCHPAD_MEM_OFFS)
588bd22949SKevin Hilman#define SDRC_POWER_V		OMAP34XX_SDRC_REGADDR(SDRC_POWER)
590795a75aSTero Kristo#define SDRC_SYSCONFIG_P	(OMAP343X_SDRC_BASE + SDRC_SYSCONFIG)
600795a75aSTero Kristo#define SDRC_MR_0_P		(OMAP343X_SDRC_BASE + SDRC_MR_0)
610795a75aSTero Kristo#define SDRC_EMR2_0_P		(OMAP343X_SDRC_BASE + SDRC_EMR2_0)
620795a75aSTero Kristo#define SDRC_MANUAL_0_P		(OMAP343X_SDRC_BASE + SDRC_MANUAL_0)
630795a75aSTero Kristo#define SDRC_MR_1_P		(OMAP343X_SDRC_BASE + SDRC_MR_1)
640795a75aSTero Kristo#define SDRC_EMR2_1_P		(OMAP343X_SDRC_BASE + SDRC_EMR2_1)
650795a75aSTero Kristo#define SDRC_MANUAL_1_P		(OMAP343X_SDRC_BASE + SDRC_MANUAL_1)
6689139dceSPeter 'p2' De Schrijver#define SDRC_DLLA_STATUS_V	OMAP34XX_SDRC_REGADDR(SDRC_DLLA_STATUS)
6789139dceSPeter 'p2' De Schrijver#define SDRC_DLLA_CTRL_V	OMAP34XX_SDRC_REGADDR(SDRC_DLLA_CTRL)
688bd22949SKevin Hilman
69dd313947SDave Martin/*
70dd313947SDave Martin * This file needs be built unconditionally as ARM to interoperate correctly
71dd313947SDave Martin * with non-Thumb-2-capable firmware.
72dd313947SDave Martin */
73dd313947SDave Martin	.arm
74a89b6f00SRajendra Nayak
75d3cdfd2aSJean Pihet/*
76d3cdfd2aSJean Pihet * API functions
77d3cdfd2aSJean Pihet */
78a89b6f00SRajendra Nayak
791e81bc01SJean Pihet	.text
80c4236d2eSPeter 'p2' De Schrijver/*
81c4236d2eSPeter 'p2' De Schrijver * L2 cache needs to be toggled for stable OFF mode functionality on 3630.
821e81bc01SJean Pihet * This function sets up a flag that will allow for this toggling to take
83f7dfe3d8SJean Pihet * place on 3630. Hopefully some version in the future may not need this.
84c4236d2eSPeter 'p2' De Schrijver */
85c4236d2eSPeter 'p2' De SchrijverENTRY(enable_omap3630_toggle_l2_on_restore)
86c4236d2eSPeter 'p2' De Schrijver	stmfd	sp!, {lr}	@ save registers on stack
87c4236d2eSPeter 'p2' De Schrijver	/* Setup so that we will disable and enable l2 */
88c4236d2eSPeter 'p2' De Schrijver	mov	r1, #0x1
89dd313947SDave Martin	adrl	r2, l2dis_3630	@ may be too distant for plain adr
90dd313947SDave Martin	str	r1, [r2]
91c4236d2eSPeter 'p2' De Schrijver	ldmfd	sp!, {pc}	@ restore regs and return
92dd313947SDave MartinENDPROC(enable_omap3630_toggle_l2_on_restore)
93c4236d2eSPeter 'p2' De Schrijver
94bb1c9034SJean Pihet	.text
9527d59a4aSTero Kristo/* Function to call rom code to save secure ram context */
96b6338bdcSJean Pihet	.align	3
9727d59a4aSTero KristoENTRY(save_secure_ram_context)
98857c1b81SRussell King	stmfd	sp!, {r4 - r11, lr}	@ save registers on stack
9927d59a4aSTero Kristo	adr	r3, api_params		@ r3 points to parameters
10027d59a4aSTero Kristo	str	r0, [r3,#0x4]		@ r0 has sdram address
10127d59a4aSTero Kristo	ldr	r12, high_mask
10227d59a4aSTero Kristo	and	r3, r3, r12
10327d59a4aSTero Kristo	ldr	r12, sram_phy_addr_mask
10427d59a4aSTero Kristo	orr	r3, r3, r12
10527d59a4aSTero Kristo	mov	r0, #25			@ set service ID for PPA
10627d59a4aSTero Kristo	mov	r12, r0			@ copy secure service ID in r12
10727d59a4aSTero Kristo	mov	r1, #0			@ set task id for ROM code in r1
108ba50ea7eSKalle Jokiniemi	mov	r2, #4			@ set some flags in r2, r6
10927d59a4aSTero Kristo	mov	r6, #0xff
1104444d712SSantosh Shilimkar	dsb				@ data write barrier
1114444d712SSantosh Shilimkar	dmb				@ data memory barrier
11276d50018SDave Martin	smc	#1			@ call SMI monitor (smi #1)
11327d59a4aSTero Kristo	nop
11427d59a4aSTero Kristo	nop
11527d59a4aSTero Kristo	nop
11627d59a4aSTero Kristo	nop
117857c1b81SRussell King	ldmfd	sp!, {r4 - r11, pc}
118dd313947SDave Martin	.align
11927d59a4aSTero Kristosram_phy_addr_mask:
12027d59a4aSTero Kristo	.word	SRAM_BASE_P
12127d59a4aSTero Kristohigh_mask:
12227d59a4aSTero Kristo	.word	0xffff
12327d59a4aSTero Kristoapi_params:
12427d59a4aSTero Kristo	.word	0x4, 0x0, 0x0, 0x1, 0x1
125dd313947SDave MartinENDPROC(save_secure_ram_context)
12627d59a4aSTero KristoENTRY(save_secure_ram_context_sz)
12727d59a4aSTero Kristo	.word	. - save_secure_ram_context
12827d59a4aSTero Kristo
1298bd22949SKevin Hilman/*
130f7dfe3d8SJean Pihet * ======================
131f7dfe3d8SJean Pihet * == Idle entry point ==
132f7dfe3d8SJean Pihet * ======================
133f7dfe3d8SJean Pihet */
134f7dfe3d8SJean Pihet
135f7dfe3d8SJean Pihet/*
1368bd22949SKevin Hilman * Forces OMAP into idle state
1378bd22949SKevin Hilman *
138f7dfe3d8SJean Pihet * omap34xx_cpu_suspend() - This bit of code saves the CPU context if needed
139f7dfe3d8SJean Pihet * and executes the WFI instruction. Calling WFI effectively changes the
140f7dfe3d8SJean Pihet * power domains states to the desired target power states.
1418bd22949SKevin Hilman *
142f7dfe3d8SJean Pihet *
143f7dfe3d8SJean Pihet * Notes:
14446e130d2SJean Pihet * - only the minimum set of functions gets copied to internal SRAM at boot
14546e130d2SJean Pihet *   and after wake-up from OFF mode, cf. omap_push_sram_idle. The function
14646e130d2SJean Pihet *   pointers in SDRAM or SRAM are called depending on the desired low power
14746e130d2SJean Pihet *   target state.
148f7dfe3d8SJean Pihet * - when the OMAP wakes up it continues at different execution points
149f7dfe3d8SJean Pihet *   depending on the low power mode (non-OFF vs OFF modes),
150f7dfe3d8SJean Pihet *   cf. 'Resume path for xxx mode' comments.
1518bd22949SKevin Hilman */
152b6338bdcSJean Pihet	.align	3
1538bd22949SKevin HilmanENTRY(omap34xx_cpu_suspend)
154857c1b81SRussell King	stmfd	sp!, {r4 - r11, lr}	@ save registers on stack
155d3cdfd2aSJean Pihet
156f7dfe3d8SJean Pihet	/*
157cbe26349SRussell King	 * r0 contains information about saving context:
158f7dfe3d8SJean Pihet	 *   0 - No context lost
159f7dfe3d8SJean Pihet	 *   1 - Only L1 and logic lost
160c9749a35SSantosh Shilimkar	 *   2 - Only L2 lost (Even L1 is retained we clean it along with L2)
161c9749a35SSantosh Shilimkar	 *   3 - Both L1 and L2 lost and logic lost
162f7dfe3d8SJean Pihet	 */
163f7dfe3d8SJean Pihet
16446e130d2SJean Pihet	/*
16546e130d2SJean Pihet	 * For OFF mode: save context and jump to WFI in SDRAM (omap3_do_wfi)
16646e130d2SJean Pihet	 * For non-OFF modes: jump to the WFI code in SRAM (omap3_do_wfi_sram)
16746e130d2SJean Pihet	 */
16846e130d2SJean Pihet	ldr	r4, omap3_do_wfi_sram_addr
16946e130d2SJean Pihet	ldr	r5, [r4]
170cbe26349SRussell King	cmp	r0, #0x0		@ If no context save required,
17146e130d2SJean Pihet	bxeq	r5			@  jump to the WFI code in SRAM
17246e130d2SJean Pihet
173f7dfe3d8SJean Pihet
174f7dfe3d8SJean Pihet	/* Otherwise fall through to the save context code */
175f7dfe3d8SJean Pihetsave_context_wfi:
176f7dfe3d8SJean Pihet	/*
177f7dfe3d8SJean Pihet	 * jump out to kernel flush routine
178f7dfe3d8SJean Pihet	 *  - reuse that code is better
179f7dfe3d8SJean Pihet	 *  - it executes in a cached space so is faster than refetch per-block
180f7dfe3d8SJean Pihet	 *  - should be faster and will change with kernel
181f7dfe3d8SJean Pihet	 *  - 'might' have to copy address, load and jump to it
18290625110SSantosh Shilimkar	 * Flush all data from the L1 data cache before disabling
18390625110SSantosh Shilimkar	 * SCTLR.C bit.
184f7dfe3d8SJean Pihet	 */
185f7dfe3d8SJean Pihet	ldr	r1, kernel_flush
186f7dfe3d8SJean Pihet	mov	lr, pc
187f7dfe3d8SJean Pihet	bx	r1
188f7dfe3d8SJean Pihet
18990625110SSantosh Shilimkar	/*
19090625110SSantosh Shilimkar	 * Clear the SCTLR.C bit to prevent further data cache
19190625110SSantosh Shilimkar	 * allocation. Clearing SCTLR.C would make all the data accesses
19290625110SSantosh Shilimkar	 * strongly ordered and would not hit the cache.
19390625110SSantosh Shilimkar	 */
19490625110SSantosh Shilimkar	mrc	p15, 0, r0, c1, c0, 0
19590625110SSantosh Shilimkar	bic	r0, r0, #(1 << 2)	@ Disable the C bit
19690625110SSantosh Shilimkar	mcr	p15, 0, r0, c1, c0, 0
19790625110SSantosh Shilimkar	isb
19890625110SSantosh Shilimkar
19990625110SSantosh Shilimkar	/*
20090625110SSantosh Shilimkar	 * Invalidate L1 data cache. Even though only invalidate is
20190625110SSantosh Shilimkar	 * necessary exported flush API is used here. Doing clean
20290625110SSantosh Shilimkar	 * on already clean cache would be almost NOP.
203f7dfe3d8SJean Pihet	 */
204f7dfe3d8SJean Pihet	ldr	r1, kernel_flush
205dd313947SDave Martin	blx	r1
20646e130d2SJean Pihet	b	omap3_do_wfi
207*d8a50941STony LindgrenENDPROC(omap34xx_cpu_suspend)
20846e130d2SJean Pihetomap3_do_wfi_sram_addr:
20946e130d2SJean Pihet	.word omap3_do_wfi_sram
21046e130d2SJean Pihetkernel_flush:
21146e130d2SJean Pihet	.word v7_flush_dcache_all
21246e130d2SJean Pihet
21346e130d2SJean Pihet/* ===================================
21446e130d2SJean Pihet * == WFI instruction => Enter idle ==
21546e130d2SJean Pihet * ===================================
21646e130d2SJean Pihet */
21746e130d2SJean Pihet
21846e130d2SJean Pihet/*
21946e130d2SJean Pihet * Do WFI instruction
22046e130d2SJean Pihet * Includes the resume path for non-OFF modes
22146e130d2SJean Pihet *
22246e130d2SJean Pihet * This code gets copied to internal SRAM and is accessible
22346e130d2SJean Pihet * from both SDRAM and SRAM:
22446e130d2SJean Pihet * - executed from SRAM for non-off modes (omap3_do_wfi_sram),
22546e130d2SJean Pihet * - executed from SDRAM for OFF mode (omap3_do_wfi).
22646e130d2SJean Pihet */
22746e130d2SJean Pihet	.align	3
22846e130d2SJean PihetENTRY(omap3_do_wfi)
2298bd22949SKevin Hilman	ldr	r4, sdrc_power		@ read the SDRC_POWER register
2308bd22949SKevin Hilman	ldr	r5, [r4]		@ read the contents of SDRC_POWER
2318bd22949SKevin Hilman	orr	r5, r5, #0x40		@ enable self refresh on idle req
2328bd22949SKevin Hilman	str	r5, [r4]		@ write back to SDRC_POWER register
2338bd22949SKevin Hilman
2348bd22949SKevin Hilman	/* Data memory barrier and Data sync barrier */
2354444d712SSantosh Shilimkar	dsb
2364444d712SSantosh Shilimkar	dmb
2378bd22949SKevin Hilman
238f7dfe3d8SJean Pihet/*
239f7dfe3d8SJean Pihet * ===================================
240f7dfe3d8SJean Pihet * == WFI instruction => Enter idle ==
241f7dfe3d8SJean Pihet * ===================================
242f7dfe3d8SJean Pihet */
2438bd22949SKevin Hilman	wfi				@ wait for interrupt
2448bd22949SKevin Hilman
245f7dfe3d8SJean Pihet/*
246f7dfe3d8SJean Pihet * ===================================
247f7dfe3d8SJean Pihet * == Resume path for non-OFF modes ==
248f7dfe3d8SJean Pihet * ===================================
249f7dfe3d8SJean Pihet */
2508bd22949SKevin Hilman	nop
2518bd22949SKevin Hilman	nop
2528bd22949SKevin Hilman	nop
2538bd22949SKevin Hilman	nop
2548bd22949SKevin Hilman	nop
2558bd22949SKevin Hilman	nop
2568bd22949SKevin Hilman	nop
2578bd22949SKevin Hilman	nop
2588bd22949SKevin Hilman	nop
2598bd22949SKevin Hilman	nop
2608bd22949SKevin Hilman
26146e130d2SJean Pihet/*
26246e130d2SJean Pihet * This function implements the erratum ID i581 WA:
26346e130d2SJean Pihet *  SDRC state restore before accessing the SDRAM
26446e130d2SJean Pihet *
26546e130d2SJean Pihet * Only used at return from non-OFF mode. For OFF
26646e130d2SJean Pihet * mode the ROM code configures the SDRC and
26746e130d2SJean Pihet * the DPLL before calling the restore code directly
26846e130d2SJean Pihet * from DDR.
26946e130d2SJean Pihet */
27046e130d2SJean Pihet
27146e130d2SJean Pihet/* Make sure SDRC accesses are ok */
27246e130d2SJean Pihetwait_sdrc_ok:
27346e130d2SJean Pihet
27446e130d2SJean Pihet/* DPLL3 must be locked before accessing the SDRC. Maybe the HW ensures this */
27546e130d2SJean Pihet	ldr	r4, cm_idlest_ckgen
27646e130d2SJean Pihetwait_dpll3_lock:
27746e130d2SJean Pihet	ldr	r5, [r4]
27846e130d2SJean Pihet	tst	r5, #1
27946e130d2SJean Pihet	beq	wait_dpll3_lock
28046e130d2SJean Pihet
28146e130d2SJean Pihet	ldr	r4, cm_idlest1_core
28246e130d2SJean Pihetwait_sdrc_ready:
28346e130d2SJean Pihet	ldr	r5, [r4]
28446e130d2SJean Pihet	tst	r5, #0x2
28546e130d2SJean Pihet	bne	wait_sdrc_ready
28646e130d2SJean Pihet	/* allow DLL powerdown upon hw idle req */
28746e130d2SJean Pihet	ldr	r4, sdrc_power
28846e130d2SJean Pihet	ldr	r5, [r4]
28946e130d2SJean Pihet	bic	r5, r5, #0x40
29046e130d2SJean Pihet	str	r5, [r4]
29146e130d2SJean Pihet
29246e130d2SJean Pihet/*
29346e130d2SJean Pihet * PC-relative stores lead to undefined behaviour in Thumb-2: use a r7 as a
29446e130d2SJean Pihet * base instead.
29546e130d2SJean Pihet * Be careful not to clobber r7 when maintaing this code.
29646e130d2SJean Pihet */
29746e130d2SJean Pihet
29846e130d2SJean Pihetis_dll_in_lock_mode:
29946e130d2SJean Pihet	/* Is dll in lock mode? */
30046e130d2SJean Pihet	ldr	r4, sdrc_dlla_ctrl
30146e130d2SJean Pihet	ldr	r5, [r4]
30246e130d2SJean Pihet	tst	r5, #0x4
30346e130d2SJean Pihet	bne	exit_nonoff_modes	@ Return if locked
30446e130d2SJean Pihet	/* wait till dll locks */
30546e130d2SJean Pihet	adr	r7, kick_counter
30646e130d2SJean Pihetwait_dll_lock_timed:
30746e130d2SJean Pihet	ldr	r4, wait_dll_lock_counter
30846e130d2SJean Pihet	add	r4, r4, #1
30946e130d2SJean Pihet	str	r4, [r7, #wait_dll_lock_counter - kick_counter]
31046e130d2SJean Pihet	ldr	r4, sdrc_dlla_status
31146e130d2SJean Pihet	/* Wait 20uS for lock */
31246e130d2SJean Pihet	mov	r6, #8
31346e130d2SJean Pihetwait_dll_lock:
31446e130d2SJean Pihet	subs	r6, r6, #0x1
31546e130d2SJean Pihet	beq	kick_dll
31646e130d2SJean Pihet	ldr	r5, [r4]
31746e130d2SJean Pihet	and	r5, r5, #0x4
31846e130d2SJean Pihet	cmp	r5, #0x4
31946e130d2SJean Pihet	bne	wait_dll_lock
32046e130d2SJean Pihet	b	exit_nonoff_modes	@ Return when locked
32146e130d2SJean Pihet
32246e130d2SJean Pihet	/* disable/reenable DLL if not locked */
32346e130d2SJean Pihetkick_dll:
32446e130d2SJean Pihet	ldr	r4, sdrc_dlla_ctrl
32546e130d2SJean Pihet	ldr	r5, [r4]
32646e130d2SJean Pihet	mov	r6, r5
32746e130d2SJean Pihet	bic	r6, #(1<<3)		@ disable dll
32846e130d2SJean Pihet	str	r6, [r4]
32946e130d2SJean Pihet	dsb
33046e130d2SJean Pihet	orr	r6, r6, #(1<<3)		@ enable dll
33146e130d2SJean Pihet	str	r6, [r4]
33246e130d2SJean Pihet	dsb
33346e130d2SJean Pihet	ldr	r4, kick_counter
33446e130d2SJean Pihet	add	r4, r4, #1
33546e130d2SJean Pihet	str	r4, [r7]		@ kick_counter
33646e130d2SJean Pihet	b	wait_dll_lock_timed
33746e130d2SJean Pihet
33846e130d2SJean Pihetexit_nonoff_modes:
33946e130d2SJean Pihet	/* Re-enable C-bit if needed */
34090625110SSantosh Shilimkar	mrc	p15, 0, r0, c1, c0, 0
34190625110SSantosh Shilimkar	tst	r0, #(1 << 2)		@ Check C bit enabled?
34290625110SSantosh Shilimkar	orreq	r0, r0, #(1 << 2)	@ Enable the C bit if cleared
34390625110SSantosh Shilimkar	mcreq	p15, 0, r0, c1, c0, 0
34490625110SSantosh Shilimkar	isb
34590625110SSantosh Shilimkar
346f7dfe3d8SJean Pihet/*
347f7dfe3d8SJean Pihet * ===================================
348f7dfe3d8SJean Pihet * == Exit point from non-OFF modes ==
349f7dfe3d8SJean Pihet * ===================================
350f7dfe3d8SJean Pihet */
351857c1b81SRussell King	ldmfd	sp!, {r4 - r11, pc}	@ restore regs and return
352*d8a50941STony LindgrenENDPROC(omap3_do_wfi)
35346e130d2SJean Pihetsdrc_power:
35446e130d2SJean Pihet	.word	SDRC_POWER_V
35546e130d2SJean Pihetcm_idlest1_core:
35646e130d2SJean Pihet	.word	CM_IDLEST1_CORE_V
35746e130d2SJean Pihetcm_idlest_ckgen:
35846e130d2SJean Pihet	.word	CM_IDLEST_CKGEN_V
35946e130d2SJean Pihetsdrc_dlla_status:
36046e130d2SJean Pihet	.word	SDRC_DLLA_STATUS_V
36146e130d2SJean Pihetsdrc_dlla_ctrl:
36246e130d2SJean Pihet	.word	SDRC_DLLA_CTRL_V
36346e130d2SJean Pihet	/*
36446e130d2SJean Pihet	 * When exporting to userspace while the counters are in SRAM,
36546e130d2SJean Pihet	 * these 2 words need to be at the end to facilitate retrival!
36646e130d2SJean Pihet	 */
36746e130d2SJean Pihetkick_counter:
36846e130d2SJean Pihet	.word	0
36946e130d2SJean Pihetwait_dll_lock_counter:
37046e130d2SJean Pihet	.word	0
37146e130d2SJean Pihet
37246e130d2SJean PihetENTRY(omap3_do_wfi_sz)
37346e130d2SJean Pihet	.word	. - omap3_do_wfi
37446e130d2SJean Pihet
375f7dfe3d8SJean Pihet
376f7dfe3d8SJean Pihet/*
377f7dfe3d8SJean Pihet * ==============================
378f7dfe3d8SJean Pihet * == Resume path for OFF mode ==
379f7dfe3d8SJean Pihet * ==============================
380f7dfe3d8SJean Pihet */
381f7dfe3d8SJean Pihet
382f7dfe3d8SJean Pihet/*
383f7dfe3d8SJean Pihet * The restore_* functions are called by the ROM code
384f7dfe3d8SJean Pihet *  when back from WFI in OFF mode.
385f7dfe3d8SJean Pihet * Cf. the get_*restore_pointer functions.
386f7dfe3d8SJean Pihet *
387f7dfe3d8SJean Pihet *  restore_es3: applies to 34xx >= ES3.0
388f7dfe3d8SJean Pihet *  restore_3630: applies to 36xx
389f7dfe3d8SJean Pihet *  restore: common code for 3xxx
39046e130d2SJean Pihet *
39146e130d2SJean Pihet * Note: when back from CORE and MPU OFF mode we are running
39246e130d2SJean Pihet *  from SDRAM, without MMU, without the caches and prediction.
39346e130d2SJean Pihet *  Also the SRAM content has been cleared.
394f7dfe3d8SJean Pihet */
39514c79bbeSKevin HilmanENTRY(omap3_restore_es3)
3960795a75aSTero Kristo	ldr	r5, pm_prepwstst_core_p
3970795a75aSTero Kristo	ldr	r4, [r5]
3980795a75aSTero Kristo	and	r4, r4, #0x3
3990795a75aSTero Kristo	cmp	r4, #0x0	@ Check if previous power state of CORE is OFF
40046e130d2SJean Pihet	bne	omap3_restore	@ Fall through to OMAP3 common code
4010795a75aSTero Kristo	adr	r0, es3_sdrc_fix
4020795a75aSTero Kristo	ldr	r1, sram_base
4030795a75aSTero Kristo	ldr	r2, es3_sdrc_fix_sz
4040795a75aSTero Kristo	mov	r2, r2, ror #2
4050795a75aSTero Kristocopy_to_sram:
4060795a75aSTero Kristo	ldmia	r0!, {r3}	@ val = *src
4070795a75aSTero Kristo	stmia	r1!, {r3}	@ *dst = val
4080795a75aSTero Kristo	subs	r2, r2, #0x1	@ num_words--
4090795a75aSTero Kristo	bne	copy_to_sram
4100795a75aSTero Kristo	ldr	r1, sram_base
4110795a75aSTero Kristo	blx	r1
41246e130d2SJean Pihet	b	omap3_restore	@ Fall through to OMAP3 common code
41314c79bbeSKevin HilmanENDPROC(omap3_restore_es3)
414458e999eSNishanth Menon
41514c79bbeSKevin HilmanENTRY(omap3_restore_3630)
416458e999eSNishanth Menon	ldr	r1, pm_prepwstst_core_p
417458e999eSNishanth Menon	ldr	r2, [r1]
418458e999eSNishanth Menon	and	r2, r2, #0x3
419458e999eSNishanth Menon	cmp	r2, #0x0	@ Check if previous power state of CORE is OFF
42046e130d2SJean Pihet	bne	omap3_restore	@ Fall through to OMAP3 common code
421458e999eSNishanth Menon	/* Disable RTA before giving control */
422458e999eSNishanth Menon	ldr	r1, control_mem_rta
423458e999eSNishanth Menon	mov	r2, #OMAP36XX_RTA_DISABLE
424458e999eSNishanth Menon	str	r2, [r1]
42514c79bbeSKevin HilmanENDPROC(omap3_restore_3630)
426f7dfe3d8SJean Pihet
427f7dfe3d8SJean Pihet	/* Fall through to common code for the remaining logic */
428f7dfe3d8SJean Pihet
42914c79bbeSKevin HilmanENTRY(omap3_restore)
430f7dfe3d8SJean Pihet	/*
4312637ce30SRussell King	 * Read the pwstctrl register to check the reason for mpu reset.
4322637ce30SRussell King	 * This tells us what was lost.
433f7dfe3d8SJean Pihet	 */
4348bd22949SKevin Hilman	ldr	r1, pm_pwstctrl_mpu
4358bd22949SKevin Hilman	ldr	r2, [r1]
4368bd22949SKevin Hilman	and	r2, r2, #0x3
4378bd22949SKevin Hilman	cmp	r2, #0x0	@ Check if target power state was OFF or RET
4388bd22949SKevin Hilman	bne	logic_l1_restore
439c4236d2eSPeter 'p2' De Schrijver
440c4236d2eSPeter 'p2' De Schrijver	ldr	r0, l2dis_3630
441c4236d2eSPeter 'p2' De Schrijver	cmp	r0, #0x1	@ should we disable L2 on 3630?
442c4236d2eSPeter 'p2' De Schrijver	bne	skipl2dis
443c4236d2eSPeter 'p2' De Schrijver	mrc	p15, 0, r0, c1, c0, 1
444c4236d2eSPeter 'p2' De Schrijver	bic	r0, r0, #2	@ disable L2 cache
445c4236d2eSPeter 'p2' De Schrijver	mcr	p15, 0, r0, c1, c0, 1
446c4236d2eSPeter 'p2' De Schrijverskipl2dis:
44727d59a4aSTero Kristo	ldr	r0, control_stat
44827d59a4aSTero Kristo	ldr	r1, [r0]
44927d59a4aSTero Kristo	and	r1, #0x700
45027d59a4aSTero Kristo	cmp	r1, #0x300
45127d59a4aSTero Kristo	beq	l2_inv_gp
45227d59a4aSTero Kristo	mov	r0, #40			@ set service ID for PPA
45327d59a4aSTero Kristo	mov	r12, r0			@ copy secure Service ID in r12
45427d59a4aSTero Kristo	mov	r1, #0			@ set task id for ROM code in r1
45527d59a4aSTero Kristo	mov	r2, #4			@ set some flags in r2, r6
45627d59a4aSTero Kristo	mov	r6, #0xff
45727d59a4aSTero Kristo	adr	r3, l2_inv_api_params	@ r3 points to dummy parameters
4584444d712SSantosh Shilimkar	dsb				@ data write barrier
4594444d712SSantosh Shilimkar	dmb				@ data memory barrier
46076d50018SDave Martin	smc	#1			@ call SMI monitor (smi #1)
46127d59a4aSTero Kristo	/* Write to Aux control register to set some bits */
46227d59a4aSTero Kristo	mov	r0, #42			@ set service ID for PPA
46327d59a4aSTero Kristo	mov	r12, r0			@ copy secure Service ID in r12
46427d59a4aSTero Kristo	mov	r1, #0			@ set task id for ROM code in r1
46527d59a4aSTero Kristo	mov	r2, #4			@ set some flags in r2, r6
46627d59a4aSTero Kristo	mov	r6, #0xff
467a087cad9STero Kristo	ldr	r4, scratchpad_base
468a087cad9STero Kristo	ldr	r3, [r4, #0xBC]		@ r3 points to parameters
4694444d712SSantosh Shilimkar	dsb				@ data write barrier
4704444d712SSantosh Shilimkar	dmb				@ data memory barrier
47176d50018SDave Martin	smc	#1			@ call SMI monitor (smi #1)
47227d59a4aSTero Kristo
47379dcfdd4STero Kristo#ifdef CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE
47479dcfdd4STero Kristo	/* Restore L2 aux control register */
47579dcfdd4STero Kristo					@ set service ID for PPA
47679dcfdd4STero Kristo	mov	r0, #CONFIG_OMAP3_L2_AUX_SECURE_SERVICE_SET_ID
47779dcfdd4STero Kristo	mov	r12, r0			@ copy service ID in r12
47879dcfdd4STero Kristo	mov	r1, #0			@ set task ID for ROM code in r1
47979dcfdd4STero Kristo	mov	r2, #4			@ set some flags in r2, r6
48079dcfdd4STero Kristo	mov	r6, #0xff
48179dcfdd4STero Kristo	ldr	r4, scratchpad_base
48279dcfdd4STero Kristo	ldr	r3, [r4, #0xBC]
48379dcfdd4STero Kristo	adds	r3, r3, #8		@ r3 points to parameters
4844444d712SSantosh Shilimkar	dsb				@ data write barrier
4854444d712SSantosh Shilimkar	dmb				@ data memory barrier
48676d50018SDave Martin	smc	#1			@ call SMI monitor (smi #1)
48779dcfdd4STero Kristo#endif
48827d59a4aSTero Kristo	b	logic_l1_restore
489bb1c9034SJean Pihet
490dd313947SDave Martin	.align
49127d59a4aSTero Kristol2_inv_api_params:
49227d59a4aSTero Kristo	.word	0x1, 0x00
49327d59a4aSTero Kristol2_inv_gp:
4948bd22949SKevin Hilman	/* Execute smi to invalidate L2 cache */
495bb1c9034SJean Pihet	mov r12, #0x1			@ set up to invalidate L2
49676d50018SDave Martin	smc	#0			@ Call SMI monitor (smieq)
49727d59a4aSTero Kristo	/* Write to Aux control register to set some bits */
498a087cad9STero Kristo	ldr	r4, scratchpad_base
499a087cad9STero Kristo	ldr	r3, [r4,#0xBC]
500a087cad9STero Kristo	ldr	r0, [r3,#4]
50127d59a4aSTero Kristo	mov	r12, #0x3
50276d50018SDave Martin	smc	#0			@ Call SMI monitor (smieq)
50379dcfdd4STero Kristo	ldr	r4, scratchpad_base
50479dcfdd4STero Kristo	ldr	r3, [r4,#0xBC]
50579dcfdd4STero Kristo	ldr	r0, [r3,#12]
50679dcfdd4STero Kristo	mov	r12, #0x2
50776d50018SDave Martin	smc	#0			@ Call SMI monitor (smieq)
5088bd22949SKevin Hilmanlogic_l1_restore:
509c4236d2eSPeter 'p2' De Schrijver	ldr	r1, l2dis_3630
510bb1c9034SJean Pihet	cmp	r1, #0x1		@ Test if L2 re-enable needed on 3630
511c4236d2eSPeter 'p2' De Schrijver	bne	skipl2reen
512c4236d2eSPeter 'p2' De Schrijver	mrc	p15, 0, r1, c1, c0, 1
513c4236d2eSPeter 'p2' De Schrijver	orr	r1, r1, #2		@ re-enable L2 cache
514c4236d2eSPeter 'p2' De Schrijver	mcr	p15, 0, r1, c1, c0, 1
515c4236d2eSPeter 'p2' De Schrijverskipl2reen:
5168bd22949SKevin Hilman
517076f2cc4SRussell King	/* Now branch to the common CPU resume function */
518076f2cc4SRussell King	b	cpu_resume
51914c79bbeSKevin HilmanENDPROC(omap3_restore)
52046f557cbSSantosh Shilimkar
521076f2cc4SRussell King	.ltorg
5221e81bc01SJean Pihet
5231e81bc01SJean Pihet/*
52446e130d2SJean Pihet * Local variables
52546e130d2SJean Pihet */
52646e130d2SJean Pihetpm_prepwstst_core_p:
52746e130d2SJean Pihet	.word	PM_PREPWSTST_CORE_P
52846e130d2SJean Pihetpm_pwstctrl_mpu:
52946e130d2SJean Pihet	.word	PM_PWSTCTRL_MPU_P
53046e130d2SJean Pihetscratchpad_base:
53146e130d2SJean Pihet	.word	SCRATCHPAD_BASE_P
53246e130d2SJean Pihetsram_base:
53346e130d2SJean Pihet	.word	SRAM_BASE_P + 0x8000
53446e130d2SJean Pihetcontrol_stat:
53546e130d2SJean Pihet	.word	CONTROL_STAT
53646e130d2SJean Pihetcontrol_mem_rta:
53746e130d2SJean Pihet	.word	CONTROL_MEM_RTA_CTRL
53846e130d2SJean Pihetl2dis_3630:
53946e130d2SJean Pihet	.word	0
54046e130d2SJean Pihet
54146e130d2SJean Pihet/*
5421e81bc01SJean Pihet * Internal functions
5431e81bc01SJean Pihet */
5441e81bc01SJean Pihet
54546e130d2SJean Pihet/*
54646e130d2SJean Pihet * This function implements the erratum ID i443 WA, applies to 34xx >= ES3.0
54746e130d2SJean Pihet * Copied to and run from SRAM in order to reconfigure the SDRC parameters.
54846e130d2SJean Pihet */
5491e81bc01SJean Pihet	.text
550dd313947SDave Martin	.align	3
5511e81bc01SJean PihetENTRY(es3_sdrc_fix)
5521e81bc01SJean Pihet	ldr	r4, sdrc_syscfg		@ get config addr
5531e81bc01SJean Pihet	ldr	r5, [r4]		@ get value
5541e81bc01SJean Pihet	tst	r5, #0x100		@ is part access blocked
5551e81bc01SJean Pihet	it	eq
5561e81bc01SJean Pihet	biceq	r5, r5, #0x100		@ clear bit if set
5571e81bc01SJean Pihet	str	r5, [r4]		@ write back change
5581e81bc01SJean Pihet	ldr	r4, sdrc_mr_0		@ get config addr
5591e81bc01SJean Pihet	ldr	r5, [r4]		@ get value
5601e81bc01SJean Pihet	str	r5, [r4]		@ write back change
5611e81bc01SJean Pihet	ldr	r4, sdrc_emr2_0		@ get config addr
5621e81bc01SJean Pihet	ldr	r5, [r4]		@ get value
5631e81bc01SJean Pihet	str	r5, [r4]		@ write back change
5641e81bc01SJean Pihet	ldr	r4, sdrc_manual_0	@ get config addr
5651e81bc01SJean Pihet	mov	r5, #0x2		@ autorefresh command
5661e81bc01SJean Pihet	str	r5, [r4]		@ kick off refreshes
5671e81bc01SJean Pihet	ldr	r4, sdrc_mr_1		@ get config addr
5681e81bc01SJean Pihet	ldr	r5, [r4]		@ get value
5691e81bc01SJean Pihet	str	r5, [r4]		@ write back change
5701e81bc01SJean Pihet	ldr	r4, sdrc_emr2_1		@ get config addr
5711e81bc01SJean Pihet	ldr	r5, [r4]		@ get value
5721e81bc01SJean Pihet	str	r5, [r4]		@ write back change
5731e81bc01SJean Pihet	ldr	r4, sdrc_manual_1	@ get config addr
5741e81bc01SJean Pihet	mov	r5, #0x2		@ autorefresh command
5751e81bc01SJean Pihet	str	r5, [r4]		@ kick off refreshes
5761e81bc01SJean Pihet	bx	lr
5771e81bc01SJean Pihet
57846e130d2SJean Pihet/*
57946e130d2SJean Pihet * Local variables
58046e130d2SJean Pihet */
581dd313947SDave Martin	.align
5821e81bc01SJean Pihetsdrc_syscfg:
5831e81bc01SJean Pihet	.word	SDRC_SYSCONFIG_P
5841e81bc01SJean Pihetsdrc_mr_0:
5851e81bc01SJean Pihet	.word	SDRC_MR_0_P
5861e81bc01SJean Pihetsdrc_emr2_0:
5871e81bc01SJean Pihet	.word	SDRC_EMR2_0_P
5881e81bc01SJean Pihetsdrc_manual_0:
5891e81bc01SJean Pihet	.word	SDRC_MANUAL_0_P
5901e81bc01SJean Pihetsdrc_mr_1:
5911e81bc01SJean Pihet	.word	SDRC_MR_1_P
5921e81bc01SJean Pihetsdrc_emr2_1:
5931e81bc01SJean Pihet	.word	SDRC_EMR2_1_P
5941e81bc01SJean Pihetsdrc_manual_1:
5951e81bc01SJean Pihet	.word	SDRC_MANUAL_1_P
596dd313947SDave MartinENDPROC(es3_sdrc_fix)
5971e81bc01SJean PihetENTRY(es3_sdrc_fix_sz)
5981e81bc01SJean Pihet	.word	. - es3_sdrc_fix
599