blob: 4400a43b9e28f20aaac68c1a20091e683e31b799 [file] [log] [blame]
Rafael J. Wysockicf7700f2008-02-09 23:24:09 +01001/*
2 * Hibernation support for x86-64
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Distribute under GPLv2.
5 *
Rafael J. Wysockicf7700f2008-02-09 23:24:09 +01006 * Copyright 2007 Rafael J. Wysocki <rjw@sisk.pl>
7 * Copyright 2005 Andi Kleen <ak@suse.de>
8 * Copyright 2004 Pavel Machek <pavel@suse.cz>
9 *
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -070010 * swsusp_arch_resume must not use any stack or any nonlocal variables while
11 * copying pages:
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * Its rewriting one kernel image with another. What is stack in "old"
14 * image could very well be data page in "new" image, and overwriting
15 * your own stack under you is bad idea.
16 */
Rafael J. Wysockicf7700f2008-02-09 23:24:09 +010017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 .text
19#include <linux/linkage.h>
20#include <asm/segment.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080021#include <asm/page_types.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020022#include <asm/asm-offsets.h>
Cyrill Gorcunovbbb1e572008-02-09 00:49:13 +030023#include <asm/processor-flags.h>
Josh Poimboeufef0f3ed2016-01-21 16:49:24 -060024#include <asm/frame.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26ENTRY(swsusp_arch_suspend)
Josh Poimboeufef0f3ed2016-01-21 16:49:24 -060027 FRAME_BEGIN
Rafael J. Wysocki0de80bc2007-10-23 22:37:24 +020028 movq $saved_context, %rax
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010029 movq %rsp, pt_regs_sp(%rax)
30 movq %rbp, pt_regs_bp(%rax)
31 movq %rsi, pt_regs_si(%rax)
32 movq %rdi, pt_regs_di(%rax)
33 movq %rbx, pt_regs_bx(%rax)
34 movq %rcx, pt_regs_cx(%rax)
35 movq %rdx, pt_regs_dx(%rax)
Rafael J. Wysocki0de80bc2007-10-23 22:37:24 +020036 movq %r8, pt_regs_r8(%rax)
37 movq %r9, pt_regs_r9(%rax)
38 movq %r10, pt_regs_r10(%rax)
39 movq %r11, pt_regs_r11(%rax)
40 movq %r12, pt_regs_r12(%rax)
41 movq %r13, pt_regs_r13(%rax)
42 movq %r14, pt_regs_r14(%rax)
43 movq %r15, pt_regs_r15(%rax)
44 pushfq
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010045 popq pt_regs_flags(%rax)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -070047 /* save the address of restore_registers */
48 movq $restore_registers, %rax
49 movq %rax, restore_jump_address(%rip)
Rafael J. Wysockic30bb682007-10-18 03:04:54 -070050 /* save cr3 */
51 movq %cr3, %rax
52 movq %rax, restore_cr3(%rip)
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 call swsusp_save
Josh Poimboeufef0f3ed2016-01-21 16:49:24 -060055 FRAME_END
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 ret
Josh Poimboeufef0f3ed2016-01-21 16:49:24 -060057ENDPROC(swsusp_arch_suspend)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +020059ENTRY(restore_image)
60 /* switch to temporary page tables */
61 movq $__PAGE_OFFSET, %rdx
62 movq temp_level4_pgt(%rip), %rax
63 subq %rdx, %rax
64 movq %rax, %cr3
65 /* Flush TLB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 movq mmu_cr4_features(%rip), %rax
67 movq %rax, %rdx
Cyrill Gorcunovbbb1e572008-02-09 00:49:13 +030068 andq $~(X86_CR4_PGE), %rdx
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 movq %rdx, %cr4; # turn off PGE
70 movq %cr3, %rcx; # flush TLB
71 movq %rcx, %cr3;
72 movq %rax, %cr4; # turn PGE back on
73
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -070074 /* prepare to jump to the image kernel */
75 movq restore_jump_address(%rip), %rax
Rafael J. Wysockic30bb682007-10-18 03:04:54 -070076 movq restore_cr3(%rip), %rbx
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -070077
78 /* prepare to copy image data to their original locations */
Rafael J. Wysocki75534b52006-09-25 23:32:52 -070079 movq restore_pblist(%rip), %rdx
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -070080 movq relocated_restore_code(%rip), %rcx
81 jmpq *%rcx
82
83 /* code below has been relocated to a safe page */
84ENTRY(core_restore_code)
Borislav Petkovff22e202015-04-12 21:45:06 +020085.Lloop:
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 testq %rdx, %rdx
Borislav Petkovff22e202015-04-12 21:45:06 +020087 jz .Ldone
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 /* get addresses from the pbe and copy the page */
90 movq pbe_address(%rdx), %rsi
91 movq pbe_orig_address(%rdx), %rdi
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -070092 movq $(PAGE_SIZE >> 3), %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 rep
94 movsq
95
96 /* progress to the next pbe */
97 movq pbe_next(%rdx), %rdx
Borislav Petkovff22e202015-04-12 21:45:06 +020098 jmp .Lloop
99.Ldone:
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700100 /* jump to the restore_registers address from the image header */
101 jmpq *%rax
102 /*
103 * NOTE: This assumes that the boot kernel's text mapping covers the
104 * image kernel's page containing restore_registers and the address of
105 * this page is the same as in the image kernel's text mapping (it
106 * should always be true, because the text mapping is linear, starting
107 * from 0, and is supposed to cover the entire kernel text for every
108 * kernel).
109 *
110 * code below belongs to the image kernel
111 */
112
113ENTRY(restore_registers)
Josh Poimboeufef0f3ed2016-01-21 16:49:24 -0600114 FRAME_BEGIN
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200115 /* go back to the original page tables */
Rafael J. Wysockic30bb682007-10-18 03:04:54 -0700116 movq %rbx, %cr3
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 /* Flush TLB, including "global" things (vmalloc) */
119 movq mmu_cr4_features(%rip), %rax
120 movq %rax, %rdx
Cyrill Gorcunovbbb1e572008-02-09 00:49:13 +0300121 andq $~(X86_CR4_PGE), %rdx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 movq %rdx, %cr4; # turn off PGE
123 movq %cr3, %rcx; # flush TLB
124 movq %rcx, %cr3
125 movq %rax, %cr4; # turn PGE back on
126
Rafael J. Wysocki0de80bc2007-10-23 22:37:24 +0200127 /* We don't restore %rax, it must be 0 anyway */
128 movq $saved_context, %rax
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100129 movq pt_regs_sp(%rax), %rsp
130 movq pt_regs_bp(%rax), %rbp
131 movq pt_regs_si(%rax), %rsi
132 movq pt_regs_di(%rax), %rdi
133 movq pt_regs_bx(%rax), %rbx
134 movq pt_regs_cx(%rax), %rcx
135 movq pt_regs_dx(%rax), %rdx
Rafael J. Wysocki0de80bc2007-10-23 22:37:24 +0200136 movq pt_regs_r8(%rax), %r8
137 movq pt_regs_r9(%rax), %r9
138 movq pt_regs_r10(%rax), %r10
139 movq pt_regs_r11(%rax), %r11
140 movq pt_regs_r12(%rax), %r12
141 movq pt_regs_r13(%rax), %r13
142 movq pt_regs_r14(%rax), %r14
143 movq pt_regs_r15(%rax), %r15
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100144 pushq pt_regs_flags(%rax)
Rafael J. Wysocki0de80bc2007-10-23 22:37:24 +0200145 popfq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Konrad Rzeszutek Wilkcc456c42013-05-01 21:53:30 -0400147 /* Saved in save_processor_state. */
148 lgdt saved_context_gdt_desc(%rax)
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 xorq %rax, %rax
151
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700152 /* tell the hibernation core that we've just restored the memory */
153 movq %rax, in_suspend(%rip)
154
Josh Poimboeufef0f3ed2016-01-21 16:49:24 -0600155 FRAME_END
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 ret
Josh Poimboeufef0f3ed2016-01-21 16:49:24 -0600157ENDPROC(restore_registers)