| Uwe Kleine-König | 5886269 | 2007-05-09 07:51:49 +0200 | [diff] [blame] | 1 | /* linux/arch/arm/plat-s3c24xx/sleep.S | 
| Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 2 |  * | 
 | 3 |  * Copyright (c) 2004 Simtec Electronics | 
 | 4 |  *	Ben Dooks <ben@simtec.co.uk> | 
 | 5 |  * | 
 | 6 |  * S3C2410 Power Manager (Suspend-To-RAM) support | 
 | 7 |  * | 
 | 8 |  * Based on PXA/SA1100 sleep code by: | 
 | 9 |  *	Nicolas Pitre, (c) 2002 Monta Vista Software Inc | 
 | 10 |  *	Cliff Brake, (c) 2001 | 
 | 11 |  * | 
 | 12 |  * This program is free software; you can redistribute it and/or modify | 
 | 13 |  * it under the terms of the GNU General Public License as published by | 
 | 14 |  * the Free Software Foundation; either version 2 of the License, or | 
 | 15 |  * (at your option) any later version. | 
 | 16 |  * | 
 | 17 |  * This program is distributed in the hope that it will be useful, | 
 | 18 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 19 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 20 |  * GNU General Public License for more details. | 
 | 21 |  * | 
 | 22 |  * You should have received a copy of the GNU General Public License | 
 | 23 |  * along with this program; if not, write to the Free Software | 
 | 24 |  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 | 25 | */ | 
 | 26 |  | 
 | 27 | #include <linux/linkage.h> | 
 | 28 | #include <asm/assembler.h> | 
 | 29 | #include <asm/hardware.h> | 
 | 30 | #include <asm/arch/map.h> | 
 | 31 |  | 
 | 32 | #include <asm/arch/regs-gpio.h> | 
 | 33 | #include <asm/arch/regs-clock.h> | 
 | 34 | #include <asm/arch/regs-mem.h> | 
| Ben Dooks | 531b617 | 2007-07-22 16:05:25 +0100 | [diff] [blame] | 35 | #include <asm/plat-s3c/regs-serial.h> | 
| Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 36 |  | 
 | 37 | /* CONFIG_DEBUG_RESUME is dangerous if your bootloader does not | 
 | 38 |  * reset the UART configuration, only enable if you really need this! | 
 | 39 | */ | 
 | 40 | //#define CONFIG_DEBUG_RESUME | 
 | 41 |  | 
 | 42 | 	.text | 
 | 43 |  | 
 | 44 | 	/* s3c2410_cpu_save | 
 | 45 | 	 * | 
 | 46 | 	 * save enough of the CPU state to allow us to re-start | 
 | 47 | 	 * pm.c code. as we store items like the sp/lr, we will | 
 | 48 | 	 * end up returning from this function when the cpu resumes | 
 | 49 | 	 * so the return value is set to mark this. | 
 | 50 | 	 * | 
 | 51 | 	 * This arangement means we avoid having to flush the cache | 
 | 52 | 	 * from this code. | 
 | 53 | 	 * | 
 | 54 | 	 * entry: | 
 | 55 | 	 *	r0 = pointer to save block | 
 | 56 | 	 * | 
 | 57 | 	 * exit: | 
 | 58 | 	 *	r0 = 0 => we stored everything | 
 | 59 | 	 *	     1 => resumed from sleep | 
 | 60 | 	*/ | 
 | 61 |  | 
 | 62 | ENTRY(s3c2410_cpu_save) | 
 | 63 | 	stmfd	sp!, { r4 - r12, lr } | 
 | 64 |  | 
 | 65 | 	@@ store co-processor registers | 
 | 66 |  | 
| Matt Reimer | 07b0459 | 2007-02-12 21:05:02 +0100 | [diff] [blame] | 67 | 	mrc	p15, 0, r4, c13, c0, 0	@ PID | 
 | 68 | 	mrc	p15, 0, r5, c3, c0, 0	@ Domain ID | 
 | 69 | 	mrc	p15, 0, r6, c2, c0, 0	@ translation table base address | 
 | 70 | 	mrc	p15, 0, r7, c1, c0, 0	@ control register | 
| Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 71 |  | 
 | 72 | 	stmia	r0, { r4 - r13 } | 
 | 73 |  | 
 | 74 | 	mov	r0, #0 | 
 | 75 | 	ldmfd	sp, { r4 - r12, pc } | 
 | 76 |  | 
 | 77 | 	@@ return to the caller, after having the MMU | 
 | 78 | 	@@ turned on, this restores the last bits from the | 
 | 79 | 	@@ stack | 
 | 80 | resume_with_mmu: | 
 | 81 | 	mov	r0, #1 | 
 | 82 | 	ldmfd	sp!, { r4 - r12, pc } | 
 | 83 |  | 
 | 84 | 	.ltorg | 
 | 85 |  | 
 | 86 | 	@@ the next bits sit in the .data segment, even though they | 
 | 87 | 	@@ happen to be code... the s3c2410_sleep_save_phys needs to be | 
 | 88 | 	@@ accessed by the resume code before it can restore the MMU. | 
 | 89 | 	@@ This means that the variable has to be close enough for the | 
 | 90 | 	@@ code to read it... since the .text segment needs to be RO, | 
 | 91 | 	@@ the data segment can be the only place to put this code. | 
 | 92 |  | 
 | 93 | 	.data | 
 | 94 |  | 
 | 95 | 	.global	s3c2410_sleep_save_phys | 
 | 96 | s3c2410_sleep_save_phys: | 
 | 97 | 	.word	0 | 
 | 98 |  | 
| Ben Dooks | 6c729af | 2007-09-30 09:59:15 +0100 | [diff] [blame] | 99 |  | 
 | 100 | 	/* sleep magic, to allow the bootloader to check for an valid | 
 | 101 | 	 * image to resume to. Must be the first word before the | 
 | 102 | 	 * s3c2410_cpu_resume entry. | 
 | 103 | 	*/ | 
 | 104 |  | 
 | 105 | 	.word	0x2bedf00d | 
 | 106 |  | 
| Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 107 | 	/* s3c2410_cpu_resume | 
 | 108 | 	 * | 
 | 109 | 	 * resume code entry for bootloader to call | 
 | 110 | 	 * | 
 | 111 | 	 * we must put this code here in the data segment as we have no | 
 | 112 | 	 * other way of restoring the stack pointer after sleep, and we | 
 | 113 | 	 * must not write to the code segment (code is read-only) | 
 | 114 | 	*/ | 
 | 115 |  | 
 | 116 | ENTRY(s3c2410_cpu_resume) | 
 | 117 | 	mov	r0, #PSR_I_BIT | PSR_F_BIT | SVC_MODE | 
 | 118 | 	msr	cpsr_c, r0 | 
 | 119 |  | 
 | 120 | 	@@ load UART to allow us to print the two characters for | 
 | 121 | 	@@ resume debug | 
 | 122 |  | 
 | 123 | 	mov	r2, #S3C24XX_PA_UART & 0xff000000 | 
 | 124 | 	orr	r2, r2, #S3C24XX_PA_UART & 0xff000 | 
 | 125 |  | 
 | 126 | #if 0 | 
 | 127 | 	/* SMDK2440 LED set */ | 
 | 128 | 	mov	r14, #S3C24XX_PA_GPIO | 
 | 129 | 	ldr	r12, [ r14, #0x54 ] | 
 | 130 | 	bic	r12, r12, #3<<4 | 
 | 131 | 	orr	r12, r12, #1<<7 | 
 | 132 | 	str	r12, [ r14, #0x54 ] | 
 | 133 | #endif | 
 | 134 |  | 
 | 135 | #ifdef CONFIG_DEBUG_RESUME | 
 | 136 | 	mov	r3, #'L' | 
 | 137 | 	strb	r3, [ r2, #S3C2410_UTXH ] | 
 | 138 | 1001: | 
 | 139 | 	ldrb	r14, [ r3, #S3C2410_UTRSTAT ] | 
 | 140 | 	tst	r14, #S3C2410_UTRSTAT_TXE | 
 | 141 | 	beq	1001b | 
 | 142 | #endif /* CONFIG_DEBUG_RESUME */ | 
 | 143 |  | 
 | 144 | 	mov	r1, #0 | 
 | 145 | 	mcr	p15, 0, r1, c8, c7, 0		@@ invalidate I & D TLBs | 
 | 146 | 	mcr	p15, 0, r1, c7, c7, 0		@@ invalidate I & D caches | 
 | 147 |  | 
 | 148 | 	ldr	r0, s3c2410_sleep_save_phys	@ address of restore block | 
 | 149 | 	ldmia	r0, { r4 - r13 } | 
 | 150 |  | 
| Matt Reimer | 07b0459 | 2007-02-12 21:05:02 +0100 | [diff] [blame] | 151 | 	mcr	p15, 0, r4, c13, c0, 0		@ PID | 
 | 152 | 	mcr	p15, 0, r5, c3, c0, 0		@ Domain ID | 
 | 153 | 	mcr	p15, 0, r6, c2, c0, 0		@ translation table base | 
| Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 154 |  | 
 | 155 | #ifdef CONFIG_DEBUG_RESUME | 
 | 156 | 	mov	r3, #'R' | 
 | 157 | 	strb	r3, [ r2, #S3C2410_UTXH ] | 
 | 158 | #endif | 
 | 159 |  | 
 | 160 | 	ldr	r2, =resume_with_mmu | 
| Matt Reimer | 07b0459 | 2007-02-12 21:05:02 +0100 | [diff] [blame] | 161 | 	mcr	p15, 0, r7, c1, c0, 0		@ turn on MMU, etc | 
| Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 162 | 	nop					@ second-to-last before mmu | 
 | 163 | 	mov	pc, r2				@ go back to virtual address | 
 | 164 |  | 
 | 165 | 	.ltorg |