hibernate_asm_64.S 3.9 KB
Newer Older
1 2
/*
 * Hibernation support for x86-64
L
Linus Torvalds 已提交
3 4 5
 *
 * Distribute under GPLv2.
 *
6 7 8 9
 * Copyright 2007 Rafael J. Wysocki <rjw@sisk.pl>
 * Copyright 2005 Andi Kleen <ak@suse.de>
 * Copyright 2004 Pavel Machek <pavel@suse.cz>
 *
10 11
 * swsusp_arch_resume must not use any stack or any nonlocal variables while
 * copying pages:
L
Linus Torvalds 已提交
12 13 14 15 16
 *
 * Its rewriting one kernel image with another. What is stack in "old"
 * image could very well be data page in "new" image, and overwriting
 * your own stack under you is bad idea.
 */
17

L
Linus Torvalds 已提交
18 19 20
	.text
#include <linux/linkage.h>
#include <asm/segment.h>
21
#include <asm/page_types.h>
22
#include <asm/asm-offsets.h>
23
#include <asm/processor-flags.h>
L
Linus Torvalds 已提交
24 25

ENTRY(swsusp_arch_suspend)
26
	movq	$saved_context, %rax
27 28 29 30 31 32 33
	movq	%rsp, pt_regs_sp(%rax)
	movq	%rbp, pt_regs_bp(%rax)
	movq	%rsi, pt_regs_si(%rax)
	movq	%rdi, pt_regs_di(%rax)
	movq	%rbx, pt_regs_bx(%rax)
	movq	%rcx, pt_regs_cx(%rax)
	movq	%rdx, pt_regs_dx(%rax)
34 35 36 37 38 39 40 41 42
	movq	%r8, pt_regs_r8(%rax)
	movq	%r9, pt_regs_r9(%rax)
	movq	%r10, pt_regs_r10(%rax)
	movq	%r11, pt_regs_r11(%rax)
	movq	%r12, pt_regs_r12(%rax)
	movq	%r13, pt_regs_r13(%rax)
	movq	%r14, pt_regs_r14(%rax)
	movq	%r15, pt_regs_r15(%rax)
	pushfq
43
	popq	pt_regs_flags(%rax)
L
Linus Torvalds 已提交
44

45 46 47
	/* save the address of restore_registers */
	movq	$restore_registers, %rax
	movq	%rax, restore_jump_address(%rip)
48 49 50
	/* save cr3 */
	movq	%cr3, %rax
	movq	%rax, restore_cr3(%rip)
51

L
Linus Torvalds 已提交
52 53 54
	call swsusp_save
	ret

55 56 57 58 59 60 61
ENTRY(restore_image)
	/* switch to temporary page tables */
	movq	$__PAGE_OFFSET, %rdx
	movq	temp_level4_pgt(%rip), %rax
	subq	%rdx, %rax
	movq	%rax, %cr3
	/* Flush TLB */
L
Linus Torvalds 已提交
62 63
	movq	mmu_cr4_features(%rip), %rax
	movq	%rax, %rdx
64
	andq	$~(X86_CR4_PGE), %rdx
L
Linus Torvalds 已提交
65 66 67 68 69
	movq	%rdx, %cr4;  # turn off PGE
	movq	%cr3, %rcx;  # flush TLB
	movq	%rcx, %cr3;
	movq	%rax, %cr4;  # turn PGE back on

70 71
	/* prepare to jump to the image kernel */
	movq	restore_jump_address(%rip), %rax
72
	movq	restore_cr3(%rip), %rbx
73 74

	/* prepare to copy image data to their original locations */
75
	movq	restore_pblist(%rip), %rdx
76 77 78 79 80
	movq	relocated_restore_code(%rip), %rcx
	jmpq	*%rcx

	/* code below has been relocated to a safe page */
ENTRY(core_restore_code)
81
.Lloop:
L
Linus Torvalds 已提交
82
	testq	%rdx, %rdx
83
	jz	.Ldone
L
Linus Torvalds 已提交
84 85 86 87

	/* get addresses from the pbe and copy the page */
	movq	pbe_address(%rdx), %rsi
	movq	pbe_orig_address(%rdx), %rdi
88
	movq	$(PAGE_SIZE >> 3), %rcx
L
Linus Torvalds 已提交
89 90 91 92 93
	rep
	movsq

	/* progress to the next pbe */
	movq	pbe_next(%rdx), %rdx
94 95
	jmp	.Lloop
.Ldone:
96 97 98 99 100 101 102 103 104 105 106 107 108 109
	/* jump to the restore_registers address from the image header */
	jmpq	*%rax
	/*
	 * NOTE: This assumes that the boot kernel's text mapping covers the
	 * image kernel's page containing restore_registers and the address of
	 * this page is the same as in the image kernel's text mapping (it
	 * should always be true, because the text mapping is linear, starting
	 * from 0, and is supposed to cover the entire kernel text for every
	 * kernel).
	 *
	 * code below belongs to the image kernel
	 */

ENTRY(restore_registers)
110
	/* go back to the original page tables */
111
	movq    %rbx, %cr3
112

L
Linus Torvalds 已提交
113 114 115
	/* Flush TLB, including "global" things (vmalloc) */
	movq	mmu_cr4_features(%rip), %rax
	movq	%rax, %rdx
116
	andq	$~(X86_CR4_PGE), %rdx
L
Linus Torvalds 已提交
117 118 119 120 121
	movq	%rdx, %cr4;  # turn off PGE
	movq	%cr3, %rcx;  # flush TLB
	movq	%rcx, %cr3
	movq	%rax, %cr4;  # turn PGE back on

122 123
	/* We don't restore %rax, it must be 0 anyway */
	movq	$saved_context, %rax
124 125 126 127 128 129 130
	movq	pt_regs_sp(%rax), %rsp
	movq	pt_regs_bp(%rax), %rbp
	movq	pt_regs_si(%rax), %rsi
	movq	pt_regs_di(%rax), %rdi
	movq	pt_regs_bx(%rax), %rbx
	movq	pt_regs_cx(%rax), %rcx
	movq	pt_regs_dx(%rax), %rdx
131 132 133 134 135 136 137 138
	movq	pt_regs_r8(%rax), %r8
	movq	pt_regs_r9(%rax), %r9
	movq	pt_regs_r10(%rax), %r10
	movq	pt_regs_r11(%rax), %r11
	movq	pt_regs_r12(%rax), %r12
	movq	pt_regs_r13(%rax), %r13
	movq	pt_regs_r14(%rax), %r14
	movq	pt_regs_r15(%rax), %r15
139
	pushq	pt_regs_flags(%rax)
140
	popfq
L
Linus Torvalds 已提交
141

142 143 144
	/* Saved in save_processor_state. */
	lgdt	saved_context_gdt_desc(%rax)

L
Linus Torvalds 已提交
145 146
	xorq	%rax, %rax

147 148 149
	/* tell the hibernation core that we've just restored the memory */
	movq	%rax, in_suspend(%rip)

L
Linus Torvalds 已提交
150
	ret