1
2
3
4
5
6
7
8
9#include <linux/linkage.h>
10#include <asm/page_types.h>
11#include <asm/kexec.h>
12#include <asm/processor-flags.h>
13#include <asm/pgtable_types.h>
14
15
16
17
18
19#define PTR(x) (x << 3)
20#define PAGE_ATTR (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)
21
22
23
24
25
26
27#define DATA(offset) (KEXEC_CONTROL_CODE_MAX_SIZE+(offset))
28
29
30#define RSP DATA(0x0)
31#define CR0 DATA(0x8)
32#define CR3 DATA(0x10)
33#define CR4 DATA(0x18)
34
35
36#define CP_PA_TABLE_PAGE DATA(0x20)
37#define CP_PA_SWAP_PAGE DATA(0x28)
38#define CP_PA_BACKUP_PAGES_MAP DATA(0x30)
39
40 .text
41 .align PAGE_SIZE
42 .code64
43 .globl relocate_kernel
44relocate_kernel:
45
46
47
48
49
50
51
52
53
54 pushq %rbx
55 pushq %rbp
56 pushq %r12
57 pushq %r13
58 pushq %r14
59 pushq %r15
60 pushf
61
62 movq PTR(VA_CONTROL_PAGE)(%rsi), %r11
63 movq %rsp, RSP(%r11)
64 movq %cr0, %rax
65 movq %rax, CR0(%r11)
66 movq %cr3, %rax
67 movq %rax, CR3(%r11)
68 movq %cr4, %rax
69 movq %rax, CR4(%r11)
70
71
72 movq %rax, %r13
73
74
75 pushq $0
76 popfq
77
78
79 movq %r8, %r12
80
81
82
83
84
85 movq PTR(PA_CONTROL_PAGE)(%rsi), %r8
86
87
88 movq PTR(PA_TABLE_PAGE)(%rsi), %r9
89
90
91 movq PTR(PA_SWAP_PAGE)(%rsi), %r10
92
93
94 movq %r9, CP_PA_TABLE_PAGE(%r11)
95 movq %r10, CP_PA_SWAP_PAGE(%r11)
96 movq %rdi, CP_PA_BACKUP_PAGES_MAP(%r11)
97
98
99 movq %r9, %cr3
100
101
102 lea PAGE_SIZE(%r8), %rsp
103
104
105 addq $(identity_mapped - relocate_kernel), %r8
106 pushq %r8
107 ret
108
109identity_mapped:
110
111 pushq $0
112
113 pushq %rdx
114
115
116
117
118
119
120
121
122
123
124 movq %cr0, %rax
125 andq $~(X86_CR0_AM | X86_CR0_WP | X86_CR0_TS | X86_CR0_EM), %rax
126 orl $(X86_CR0_PG | X86_CR0_PE), %eax
127 movq %rax, %cr0
128
129
130
131
132
133
134 movl $X86_CR4_PAE, %eax
135 testq $X86_CR4_LA57, %r13
136 jz 1f
137 orl $X86_CR4_LA57, %eax
1381:
139 movq %rax, %cr4
140
141 jmp 1f
1421:
143
144
145 movq %r9, %cr3
146
147
148
149
150
151
152 testq %r12, %r12
153 jz 1f
154 wbinvd
1551:
156
157 movq %rcx, %r11
158 call swap_pages
159
160
161
162
163
164
165
166 movq %cr3, %rax
167 movq %rax, %cr3
168
169
170
171
172
173
174 testq %r11, %r11
175 jnz 1f
176 xorl %eax, %eax
177 xorl %ebx, %ebx
178 xorl %ecx, %ecx
179 xorl %edx, %edx
180 xorl %esi, %esi
181 xorl %edi, %edi
182 xorl %ebp, %ebp
183 xorl %r8d, %r8d
184 xorl %r9d, %r9d
185 xorl %r10d, %r10d
186 xorl %r11d, %r11d
187 xorl %r12d, %r12d
188 xorl %r13d, %r13d
189 xorl %r14d, %r14d
190 xorl %r15d, %r15d
191
192 ret
193
1941:
195 popq %rdx
196 leaq PAGE_SIZE(%r10), %rsp
197 call *%rdx
198
199
200 movq 0(%rsp), %rbp
201 call 1f
2021:
203 popq %r8
204 subq $(1b - relocate_kernel), %r8
205 movq CP_PA_SWAP_PAGE(%r8), %r10
206 movq CP_PA_BACKUP_PAGES_MAP(%r8), %rdi
207 movq CP_PA_TABLE_PAGE(%r8), %rax
208 movq %rax, %cr3
209 lea PAGE_SIZE(%r8), %rsp
210 call swap_pages
211 movq $virtual_mapped, %rax
212 pushq %rax
213 ret
214
215virtual_mapped:
216 movq RSP(%r8), %rsp
217 movq CR4(%r8), %rax
218 movq %rax, %cr4
219 movq CR3(%r8), %rax
220 movq CR0(%r8), %r8
221 movq %rax, %cr3
222 movq %r8, %cr0
223 movq %rbp, %rax
224
225 popf
226 popq %r15
227 popq %r14
228 popq %r13
229 popq %r12
230 popq %rbp
231 popq %rbx
232 ret
233
234
235swap_pages:
236 movq %rdi, %rcx
237 xorl %edi, %edi
238 xorl %esi, %esi
239 jmp 1f
240
2410:
242
243 movq (%rbx), %rcx
244 addq $8, %rbx
2451:
246 testb $0x1, %cl
247 jz 2f
248 movq %rcx, %rdi
249 andq $0xfffffffffffff000, %rdi
250 jmp 0b
2512:
252 testb $0x2, %cl
253 jz 2f
254 movq %rcx, %rbx
255 andq $0xfffffffffffff000, %rbx
256 jmp 0b
2572:
258 testb $0x4, %cl
259 jz 2f
260 jmp 3f
2612:
262 testb $0x8, %cl
263 jz 0b
264 movq %rcx, %rsi
265 andq $0xfffffffffffff000, %rsi
266
267 movq %rdi, %rdx
268 movq %rsi, %rax
269
270 movq %r10, %rdi
271 movl $512, %ecx
272 rep ; movsq
273
274 movq %rax, %rdi
275 movq %rdx, %rsi
276 movl $512, %ecx
277 rep ; movsq
278
279 movq %rdx, %rdi
280 movq %r10, %rsi
281 movl $512, %ecx
282 rep ; movsq
283
284 lea PAGE_SIZE(%rax), %rsi
285 jmp 0b
2863:
287 ret
288
289 .globl kexec_control_code_size
290.set kexec_control_code_size, . - relocate_kernel
291