blob: b95aa6cfe3cb207befad0a4337678317ec1f9606 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001.text
2
Rafael J. Wysockic5759122008-02-09 23:24:09 +01003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This may not use any stack, nor any variable that is not "NoSave":
5 *
6 * Its rewriting one kernel image with another. What is stack in "old"
7 * image could very well be data page in "new" image, and overwriting
8 * your own stack under you is bad idea.
9 */
10
11#include <linux/linkage.h>
12#include <asm/segment.h>
13#include <asm/page.h>
Sam Ravnborg86feeaa2005-09-09 19:28:28 +020014#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16 .text
17
18ENTRY(swsusp_arch_suspend)
19
20 movl %esp, saved_context_esp
21 movl %ebx, saved_context_ebx
22 movl %ebp, saved_context_ebp
23 movl %esi, saved_context_esi
24 movl %edi, saved_context_edi
25 pushfl ; popl saved_context_eflags
26
27 call swsusp_save
28 ret
29
Rafael J. Wysocki2d4a34c2006-12-06 20:34:29 -080030ENTRY(restore_image)
31 movl resume_pg_dir, %ecx
32 subl $__PAGE_OFFSET, %ecx
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 movl %ecx, %cr3
34
Rafael J. Wysocki75534b52006-09-25 23:32:52 -070035 movl restore_pblist, %edx
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 .p2align 4,,7
37
38copy_loop:
39 testl %edx, %edx
40 jz done
41
42 movl pbe_address(%edx), %esi
43 movl pbe_orig_address(%edx), %edi
44
45 movl $1024, %ecx
46 rep
47 movsl
48
49 movl pbe_next(%edx), %edx
50 jmp copy_loop
51 .p2align 4,,7
52
53done:
Rafael J. Wysocki2d4a34c2006-12-06 20:34:29 -080054 /* go back to the original page tables */
55 movl $swapper_pg_dir, %ecx
56 subl $__PAGE_OFFSET, %ecx
57 movl %ecx, %cr3
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 /* Flush TLB, including "global" things (vmalloc) */
59 movl mmu_cr4_features, %eax
60 movl %eax, %edx
61 andl $~(1<<7), %edx; # PGE
62 movl %edx, %cr4; # turn off PGE
63 movl %cr3, %ecx; # flush TLB
64 movl %ecx, %cr3
65 movl %eax, %cr4; # turn PGE back on
66
67 movl saved_context_esp, %esp
68 movl saved_context_ebp, %ebp
69 movl saved_context_ebx, %ebx
70 movl saved_context_esi, %esi
71 movl saved_context_edi, %edi
72
73 pushl saved_context_eflags ; popfl
74
75 xorl %eax, %eax
76
77 ret