diff options
| author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
|---|---|---|
| committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
| commit | fcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch) | |
| tree | a57612d1888735a2ec7972891b68c1ac5ec8faea /arch/arm/mach-exynos4/sleep.S | |
| parent | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff) | |
Diffstat (limited to 'arch/arm/mach-exynos4/sleep.S')
| -rw-r--r-- | arch/arm/mach-exynos4/sleep.S | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos4/sleep.S b/arch/arm/mach-exynos4/sleep.S new file mode 100644 index 00000000000..0984078f1eb --- /dev/null +++ b/arch/arm/mach-exynos4/sleep.S | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | /* linux/arch/arm/mach-exynos4/sleep.S | ||
| 2 | * | ||
| 3 | * Copyright (c) 2011 Samsung Electronics Co., Ltd. | ||
| 4 | * http://www.samsung.com | ||
| 5 | * | ||
| 6 | * EXYNOS4210 power Manager (Suspend-To-RAM) support | ||
| 7 | * Based on S3C2410 sleep code by: | ||
| 8 | * Ben Dooks, (c) 2004 Simtec Electronics | ||
| 9 | * | ||
| 10 | * Based on PXA/SA1100 sleep code by: | ||
| 11 | * Nicolas Pitre, (c) 2002 Monta Vista Software Inc | ||
| 12 | * Cliff Brake, (c) 2001 | ||
| 13 | * | ||
| 14 | * This program is free software; you can redistribute it and/or modify | ||
| 15 | * it under the terms of the GNU General Public License as published by | ||
| 16 | * the Free Software Foundation; either version 2 of the License, or | ||
| 17 | * (at your option) any later version. | ||
| 18 | * | ||
| 19 | * This program is distributed in the hope that it will be useful, | ||
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 22 | * GNU General Public License for more details. | ||
| 23 | * | ||
| 24 | * You should have received a copy of the GNU General Public License | ||
| 25 | * along with this program; if not, write to the Free Software | ||
| 26 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 27 | */ | ||
| 28 | |||
| 29 | #include <linux/linkage.h> | ||
| 30 | #include <asm/assembler.h> | ||
| 31 | #include <asm/memory.h> | ||
| 32 | |||
| 33 | .text | ||
| 34 | |||
| 35 | /* | ||
| 36 | * sleep magic, to allow the bootloader to check for an valid | ||
| 37 | * image to resume to. Must be the first word before the | ||
| 38 | * s3c_cpu_resume entry. | ||
| 39 | */ | ||
| 40 | |||
| 41 | .word 0x2bedf00d | ||
| 42 | |||
| 43 | /* | ||
| 44 | * s3c_cpu_resume | ||
| 45 | * | ||
| 46 | * resume code entry for bootloader to call | ||
| 47 | * | ||
| 48 | * we must put this code here in the data segment as we have no | ||
| 49 | * other way of restoring the stack pointer after sleep, and we | ||
| 50 | * must not write to the code segment (code is read-only) | ||
| 51 | */ | ||
| 52 | |||
| 53 | ENTRY(s3c_cpu_resume) | ||
| 54 | b cpu_resume | ||
