blob: fafb75c6c59253986fc39237abb85cbd43db04b1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/boot/head.S
4 *
5 * Copyright (C) 1991, 1992, 1993 Linus Torvalds
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8/*
9 * head.S contains the 32-bit startup code.
10 *
11 * NOTE!!! Startup happens at absolute address 0x00001000, which is also where
12 * the page directory will exist. The startup code will be overwritten by
13 * the page directory. [According to comments etc elsewhere on a compressed
14 * kernel it will end up at 0x1000 + 1Mb I hope so as I assume this. - AC]
15 *
16 * Page 0 is deliberately kept safe, since System Management Mode code in
17 * laptops may need to access the BIOS data stored there. This is also
18 * useful for future device drivers that either access the BIOS via VM86
19 * mode.
20 */
21
22/*
Domen Puncerf4549442005-06-25 14:58:59 -070023 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070025 .code32
26 .text
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Tim Abbott1dc818c2009-09-16 16:44:27 -040028#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/linkage.h>
30#include <asm/segment.h>
Alexander van Heukelum7c539762008-04-08 12:54:30 +020031#include <asm/boot.h>
Vivek Goyal1ab60e02007-05-02 19:27:07 +020032#include <asm/msr.h>
Cyrill Gorcunove83e31f42008-05-12 15:43:39 +020033#include <asm/processor-flags.h>
Eric W. Biedermanbd531472007-10-26 11:29:04 -060034#include <asm/asm-offsets.h>
Alexander Kuleshovfb148d82015-02-19 13:34:58 +060035#include <asm/bootparam.h>
Kirill A. Shutemovf7ff53e2018-03-12 13:02:44 +030036#include "pgtable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
H.J. Lu6d92bc92016-03-16 20:04:35 -070038/*
39 * Locally defined symbols should be marked hidden:
40 */
41 .hidden _bss
42 .hidden _ebss
43 .hidden _got
44 .hidden _egot
45
Tim Abbott1dc818c2009-09-16 16:44:27 -040046 __HEAD
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .code32
Cyrill Gorcunov2d4eeecb2009-02-14 00:50:22 +030048ENTRY(startup_32)
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -080049 /*
50 * 32bit entry is 0 and it is ABI so immutable!
51 * If we come here directly from a bootloader,
52 * kernel(text+data+bss+brk) ramdisk, zero_page, command line
53 * all need to be under the 4G limit.
54 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 cld
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070056 /*
57 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
58 * us to not reload segments
59 */
Alexander Kuleshovfb148d82015-02-19 13:34:58 +060060 testb $KEEP_SEGMENTS, BP_loadflags(%esi)
Eric W. Biedermanbd531472007-10-26 11:29:04 -060061 jnz 1f
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 cli
Lans Zhang2dead152013-03-01 09:20:39 +080064 movl $(__BOOT_DS), %eax
Vivek Goyal1ab60e02007-05-02 19:27:07 +020065 movl %eax, %ds
66 movl %eax, %es
67 movl %eax, %ss
Eric W. Biedermanbd531472007-10-26 11:29:04 -0600681:
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070070/*
71 * Calculate the delta between where we were compiled to run
Vivek Goyal1ab60e02007-05-02 19:27:07 +020072 * at and where we were actually loaded at. This can only be done
73 * with a short local call on x86. Nothing else will tell us what
74 * address we are running at. The reserved chunk of the real-mode
H. Peter Anvin85414b62007-07-11 12:18:33 -070075 * data at 0x1e4 (defined as a scratch field) are used as the stack
76 * for this calculation. Only 4 bytes are needed.
Vivek Goyal1ab60e02007-05-02 19:27:07 +020077 */
H. Peter Anvinbd2a3692009-05-05 23:24:50 -070078 leal (BP_scratch+4)(%esi), %esp
Vivek Goyal1ab60e02007-05-02 19:27:07 +020079 call 1f
801: popl %ebp
81 subl $1b, %ebp
82
Vivek Goyala4831e02007-05-02 19:27:08 +020083/* setup a stack and make sure cpu supports long mode. */
Alexander van Heukelum7c539762008-04-08 12:54:30 +020084 movl $boot_stack_end, %eax
Vivek Goyala4831e02007-05-02 19:27:08 +020085 addl %ebp, %eax
86 movl %eax, %esp
87
88 call verify_cpu
89 testl %eax, %eax
90 jnz no_longmode
91
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070092/*
93 * Compute the delta between where we were compiled to run at
Vivek Goyal1ab60e02007-05-02 19:27:07 +020094 * and where the code will actually run at.
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070095 *
96 * %ebp contains the address we are loaded at by the boot loader and %ebx
Vivek Goyal1ab60e02007-05-02 19:27:07 +020097 * contains the address where we should move the kernel image temporarily
98 * for safe in-place decompression.
99 */
100
101#ifdef CONFIG_RELOCATABLE
102 movl %ebp, %ebx
H. Peter Anvin37ba7ab2009-05-11 15:56:08 -0700103 movl BP_kernel_alignment(%esi), %eax
104 decl %eax
105 addl %eax, %ebx
106 notl %eax
107 andl %eax, %ebx
Kees Cook8ab38202013-10-10 17:18:14 -0700108 cmpl $LOAD_PHYSICAL_ADDR, %ebx
109 jge 1f
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200110#endif
Kees Cook8ab38202013-10-10 17:18:14 -0700111 movl $LOAD_PHYSICAL_ADDR, %ebx
1121:
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200113
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700114 /* Target address to relocate to for decompression */
Yinghai Lu974f2212016-04-28 17:09:04 -0700115 movl BP_init_size(%esi), %eax
116 subl $_end, %eax
117 addl %eax, %ebx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119/*
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200120 * Prepare for entering 64 bit mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200122
123 /* Load new GDT with the 64bit segments using 32bit descriptor */
Wei Yang064025f2016-11-01 15:49:24 +0000124 addl %ebp, gdt+2(%ebp)
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200125 lgdt gdt(%ebp)
126
127 /* Enable PAE mode */
Matt Fleming108d3f42014-02-24 13:37:29 +0000128 movl %cr4, %eax
129 orl $X86_CR4_PAE, %eax
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200130 movl %eax, %cr4
131
132 /*
133 * Build early 4G boot pagetable
134 */
Tom Lendacky1958b5f2017-10-20 09:30:54 -0500135 /*
136 * If SEV is active then set the encryption mask in the page tables.
137 * This will insure that when the kernel is copied and decompressed
138 * it will be done so encrypted.
139 */
140 call get_sev_encryption_bit
141 xorl %edx, %edx
142 testl %eax, %eax
143 jz 1f
144 subl $32, %eax /* Encryption bit is always above bit 31 */
145 bts %eax, %edx /* Set encryption mask for page tables */
1461:
147
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700148 /* Initialize Page tables to 0 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200149 leal pgtable(%ebx), %edi
150 xorl %eax, %eax
Kees Cook3a947072016-05-06 15:01:35 -0700151 movl $(BOOT_INIT_PGT_SIZE/4), %ecx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200152 rep stosl
153
154 /* Build Level 4 */
155 leal pgtable + 0(%ebx), %edi
156 leal 0x1007 (%edi), %eax
157 movl %eax, 0(%edi)
Tom Lendacky1958b5f2017-10-20 09:30:54 -0500158 addl %edx, 4(%edi)
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200159
160 /* Build Level 3 */
161 leal pgtable + 0x1000(%ebx), %edi
162 leal 0x1007(%edi), %eax
163 movl $4, %ecx
1641: movl %eax, 0x00(%edi)
Tom Lendacky1958b5f2017-10-20 09:30:54 -0500165 addl %edx, 0x04(%edi)
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200166 addl $0x00001000, %eax
167 addl $8, %edi
168 decl %ecx
169 jnz 1b
170
171 /* Build Level 2 */
172 leal pgtable + 0x2000(%ebx), %edi
173 movl $0x00000183, %eax
174 movl $2048, %ecx
1751: movl %eax, 0(%edi)
Tom Lendacky1958b5f2017-10-20 09:30:54 -0500176 addl %edx, 4(%edi)
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200177 addl $0x00200000, %eax
178 addl $8, %edi
179 decl %ecx
180 jnz 1b
181
182 /* Enable the boot page tables */
183 leal pgtable(%ebx), %eax
184 movl %eax, %cr3
185
186 /* Enable Long mode in EFER (Extended Feature Enable Register) */
187 movl $MSR_EFER, %ecx
188 rdmsr
189 btsl $_EFER_LME, %eax
190 wrmsr
191
Yinghai Lud3c433b2013-01-24 12:20:01 -0800192 /* After gdt is loaded */
193 xorl %eax, %eax
194 lldt %ax
Denys Vlasenko40e4f2d12015-04-01 16:50:58 +0200195 movl $__BOOT_TSS, %eax
Yinghai Lud3c433b2013-01-24 12:20:01 -0800196 ltr %ax
197
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700198 /*
199 * Setup for the jump to 64bit mode
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200200 *
201 * When the jump is performend we will be in long mode but
202 * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1
203 * (and in turn EFER.LMA = 1). To jump into 64bit mode we use
204 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
205 * We place all of the values on our mini stack so lret can
206 * used to perform that far jump.
207 */
208 pushl $__KERNEL_CS
209 leal startup_64(%ebp), %eax
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000210#ifdef CONFIG_EFI_MIXED
211 movl efi32_config(%ebp), %ebx
212 cmp $0, %ebx
213 jz 1f
214 leal handover_entry(%ebp), %eax
2151:
216#endif
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200217 pushl %eax
218
219 /* Enter paged protected Mode, activating Long Mode */
Cyrill Gorcunove83e31f42008-05-12 15:43:39 +0200220 movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200221 movl %eax, %cr0
222
223 /* Jump from 32bit compatibility mode into 64bit mode. */
224 lret
Cyrill Gorcunov2d4eeecb2009-02-14 00:50:22 +0300225ENDPROC(startup_32)
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200226
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000227#ifdef CONFIG_EFI_MIXED
228 .org 0x190
229ENTRY(efi32_stub_entry)
230 add $0x4, %esp /* Discard return address */
231 popl %ecx
232 popl %edx
233 popl %esi
234
235 leal (BP_scratch+4)(%esi), %esp
236 call 1f
2371: pop %ebp
238 subl $1b, %ebp
239
240 movl %ecx, efi32_config(%ebp)
241 movl %edx, efi32_config+8(%ebp)
242 sgdtl efi32_boot_gdt(%ebp)
243
244 leal efi32_config(%ebp), %eax
245 movl %eax, efi_config(%ebp)
246
247 jmp startup_32
248ENDPROC(efi32_stub_entry)
249#endif
250
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200251 .code64
Vivek Goyala4831e02007-05-02 19:27:08 +0200252 .org 0x200
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200253ENTRY(startup_64)
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700254 /*
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -0800255 * 64bit entry is 0x200 and it is ABI so immutable!
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700256 * We come here either from startup_32 or directly from a
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -0800257 * 64bit bootloader.
258 * If we come here from a bootloader, kernel(text+data+bss+brk),
259 * ramdisk, zero_page, command line could be above 4G.
260 * We depend on an identity mapped page table being provided
261 * that maps our entire kernel(text+data+bss+brk), zero page
262 * and command line.
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200263 */
264
265 /* Setup data segments. */
266 xorl %eax, %eax
267 movl %eax, %ds
268 movl %eax, %es
269 movl %eax, %ss
Zachary Amsden08da5a22007-08-10 22:31:05 +0200270 movl %eax, %fs
271 movl %eax, %gs
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200272
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700273 /*
274 * Compute the decompressed kernel start address. It is where
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200275 * we were loaded at aligned to a 2M boundary. %rbp contains the
276 * decompressed kernel start address.
277 *
278 * If it is a relocatable kernel then decompress and run the kernel
279 * from load address aligned to 2MB addr, otherwise decompress and
H. Peter Anvin40b387a2009-05-11 14:41:55 -0700280 * run the kernel from LOAD_PHYSICAL_ADDR
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700281 *
282 * We cannot rely on the calculation done in 32-bit mode, since we
283 * may have been invoked via the 64-bit entry point.
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200284 */
285
286 /* Start with the delta to where the kernel will run at. */
287#ifdef CONFIG_RELOCATABLE
288 leaq startup_32(%rip) /* - $startup_32 */, %rbp
H. Peter Anvin37ba7ab2009-05-11 15:56:08 -0700289 movl BP_kernel_alignment(%rsi), %eax
290 decl %eax
291 addq %rax, %rbp
292 notq %rax
293 andq %rax, %rbp
Kees Cook8ab38202013-10-10 17:18:14 -0700294 cmpq $LOAD_PHYSICAL_ADDR, %rbp
295 jge 1f
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200296#endif
Kees Cook8ab38202013-10-10 17:18:14 -0700297 movq $LOAD_PHYSICAL_ADDR, %rbp
2981:
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200299
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700300 /* Target address to relocate to for decompression */
Yinghai Lu974f2212016-04-28 17:09:04 -0700301 movl BP_init_size(%rsi), %ebx
302 subl $_end, %ebx
303 addq %rbp, %rbx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200304
H. Peter Anvin0a137732009-05-08 16:27:41 -0700305 /* Set up the stack */
306 leaq boot_stack_end(%rbx), %rsp
307
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300308 /*
Kirill A. Shutemov5c9b0b12018-05-16 11:01:28 +0300309 * paging_prepare() and cleanup_trampoline() below can have GOT
310 * references. Adjust the table with address we are running at.
311 *
312 * Zero RAX for adjust_got: the GOT was not adjusted before;
313 * there's no adjustment to undo.
314 */
315 xorq %rax, %rax
316
317 /*
318 * Calculate the address the binary is loaded at and use it as
319 * a GOT adjustment.
320 */
321 call 1f
3221: popq %rdi
323 subq $1b, %rdi
324
325 call adjust_got
326
327 /*
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300328 * At this point we are in long mode with 4-level paging enabled,
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300329 * but we might want to enable 5-level paging or vice versa.
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300330 *
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300331 * The problem is that we cannot do it directly. Setting or clearing
332 * CR4.LA57 in long mode would trigger #GP. So we need to switch off
333 * long mode and paging first.
334 *
335 * We also need a trampoline in lower memory to switch over from
336 * 4- to 5-level paging for cases when the bootloader puts the kernel
337 * above 4G, but didn't enable 5-level paging for us.
338 *
339 * The same trampoline can be used to switch from 5- to 4-level paging
340 * mode, like when starting 4-level paging kernel via kexec() when
341 * original kernel worked in 5-level paging mode.
342 *
343 * For the trampoline, we need the top page table to reside in lower
344 * memory as we don't have a way to load 64-bit values into CR3 in
345 * 32-bit mode.
346 *
347 * We go though the trampoline even if we don't have to: if we're
348 * already in a desired paging mode. This way the trampoline code gets
349 * tested on every boot.
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300350 */
351
Kirill A. Shutemov7beebacc2018-03-12 13:02:43 +0300352 /* Make sure we have GDT with 32-bit code segment */
353 leaq gdt(%rip), %rax
354 movq %rax, gdt64+2(%rip)
355 lgdt gdt64(%rip)
356
Kirill A. Shutemov44409772018-02-09 17:22:26 +0300357 /*
358 * paging_prepare() sets up the trampoline and checks if we need to
359 * enable 5-level paging.
360 *
Kirill A. Shutemov82434d22019-02-06 18:29:08 +0300361 * paging_prepare() returns a two-quadword structure which lands
362 * into RDX:RAX:
363 * - Address of the trampoline is returned in RAX.
364 * - Non zero RDX means trampoline needs to enable 5-level
365 * paging.
Kirill A. Shutemov44409772018-02-09 17:22:26 +0300366 *
367 * RSI holds real mode data and needs to be preserved across
368 * this function call.
369 */
370 pushq %rsi
Kirill A. Shutemov372fddf2018-05-18 13:35:25 +0300371 movq %rsi, %rdi /* real mode address */
Kirill A. Shutemov44409772018-02-09 17:22:26 +0300372 call paging_prepare
373 popq %rsi
374
375 /* Save the trampoline address in RCX */
376 movq %rax, %rcx
377
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300378 /*
379 * Load the address of trampoline_return() into RDI.
380 * It will be used by the trampoline to return to the main code.
381 */
382 leaq trampoline_return(%rip), %rdi
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300383
384 /* Switch to compatibility mode (CS.L = 0 CS.D = 1) via far return */
385 pushq $__KERNEL32_CS
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300386 leaq TRAMPOLINE_32BIT_CODE_OFFSET(%rax), %rax
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300387 pushq %rax
388 lretq
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300389trampoline_return:
Kirill A. Shutemovf7ff53e2018-03-12 13:02:44 +0300390 /* Restore the stack, the 32-bit trampoline uses its own stack */
391 leaq boot_stack_end(%rbx), %rsp
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300392
Kirill A. Shutemovfb5268352018-02-26 21:04:49 +0300393 /*
394 * cleanup_trampoline() would restore trampoline memory.
395 *
Kirill A. Shutemov589bb622018-05-16 11:01:29 +0300396 * RDI is address of the page table to use instead of page table
397 * in trampoline memory (if required).
398 *
Kirill A. Shutemovfb5268352018-02-26 21:04:49 +0300399 * RSI holds real mode data and needs to be preserved across
400 * this function call.
401 */
402 pushq %rsi
Kirill A. Shutemov589bb622018-05-16 11:01:29 +0300403 leaq top_pgtable(%rbx), %rdi
Kirill A. Shutemovfb5268352018-02-26 21:04:49 +0300404 call cleanup_trampoline
405 popq %rsi
406
H. Peter Anvin0a137732009-05-08 16:27:41 -0700407 /* Zero EFLAGS */
408 pushq $0
409 popfq
410
Kirill A. Shutemov5c9b0b12018-05-16 11:01:28 +0300411 /*
412 * Previously we've adjusted the GOT with address the binary was
413 * loaded at. Now we need to re-adjust for relocation address.
414 *
415 * Calculate the address the binary is loaded at, so that we can
416 * undo the previous GOT adjustment.
417 */
418 call 1f
4191: popq %rax
420 subq $1b, %rax
421
422 /* The new adjustment is the relocation address */
423 movq %rbx, %rdi
424 call adjust_got
425
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700426/*
427 * Copy the compressed kernel to the end of our buffer
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200428 * where decompression in place becomes safe.
429 */
H. Peter Anvin36d37932009-05-08 16:45:15 -0700430 pushq %rsi
431 leaq (_bss-8)(%rip), %rsi
432 leaq (_bss-8)(%rbx), %rdi
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700433 movq $_bss /* - $startup_32 */, %rcx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700434 shrq $3, %rcx
435 std
436 rep movsq
437 cld
438 popq %rsi
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200439
440/*
441 * Jump to the relocated address.
442 */
443 leaq relocated(%rbx), %rax
444 jmp *%rax
445
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000446#ifdef CONFIG_EFI_STUB
Jiri Slaby9e085ce2017-08-24 09:33:27 +0200447
448/* The entry point for the PE/COFF executable is efi_pe_entry. */
449ENTRY(efi_pe_entry)
450 movq %rcx, efi64_config(%rip) /* Handle */
451 movq %rdx, efi64_config+8(%rip) /* EFI System table pointer */
452
453 leaq efi64_config(%rip), %rax
454 movq %rax, efi_config(%rip)
455
456 call 1f
4571: popq %rbp
458 subq $1b, %rbp
459
460 /*
461 * Relocate efi_config->call().
462 */
463 addq %rbp, efi64_config+40(%rip)
464
465 movq %rax, %rdi
466 call make_boot_params
467 cmpq $0,%rax
468 je fail
469 mov %rax, %rsi
470 leaq startup_32(%rip), %rax
471 movl %eax, BP_code32_start(%rsi)
472 jmp 2f /* Skip the relocation */
473
474handover_entry:
475 call 1f
4761: popq %rbp
477 subq $1b, %rbp
478
479 /*
480 * Relocate efi_config->call().
481 */
482 movq efi_config(%rip), %rax
483 addq %rbp, 40(%rax)
4842:
485 movq efi_config(%rip), %rdi
486 call efi_main
487 movq %rax,%rsi
488 cmpq $0,%rax
489 jne 2f
490fail:
491 /* EFI init failed, so hang. */
492 hlt
493 jmp fail
4942:
495 movl BP_code32_start(%esi), %eax
496 leaq startup_64(%rax), %rax
497 jmp *%rax
498ENDPROC(efi_pe_entry)
499
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000500 .org 0x390
501ENTRY(efi64_stub_entry)
502 movq %rdi, efi64_config(%rip) /* Handle */
503 movq %rsi, efi64_config+8(%rip) /* EFI System table pointer */
504
505 leaq efi64_config(%rip), %rax
506 movq %rax, efi_config(%rip)
507
508 movq %rdx, %rsi
509 jmp handover_entry
510ENDPROC(efi64_stub_entry)
511#endif
512
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700513 .text
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200514relocated:
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516/*
H. Peter Anvin0a137732009-05-08 16:27:41 -0700517 * Clear BSS (stack is currently empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
H. Peter Anvin36d37932009-05-08 16:45:15 -0700519 xorl %eax, %eax
520 leaq _bss(%rip), %rdi
521 leaq _ebss(%rip), %rcx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200522 subq %rdi, %rcx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700523 shrq $3, %rcx
524 rep stosq
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200525
Linus Torvaldsf3670392014-09-22 23:05:49 -0700526/*
Kees Cookc0402882016-04-18 09:42:13 -0700527 * Do the extraction, and jump to the new kernel..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700529 pushq %rsi /* Save the real mode argument */
530 movq %rsi, %rdi /* real mode address */
531 leaq boot_heap(%rip), %rsi /* malloc area for uncompression */
532 leaq input_data(%rip), %rdx /* input_data */
533 movl $z_input_len, %ecx /* input_len */
534 movq %rbp, %r8 /* output target address */
Junjie Maoe6023362014-10-31 21:40:38 +0800535 movq $z_output_len, %r9 /* decompressed length, end of relocs */
Kees Cookc0402882016-04-18 09:42:13 -0700536 call extract_kernel /* returns kernel location in %rax */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200537 popq %rsi
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/*
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200540 * Jump to the decompressed kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
Kees Cook8ab38202013-10-10 17:18:14 -0700542 jmp *%rax
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Kirill A. Shutemov5c9b0b12018-05-16 11:01:28 +0300544/*
545 * Adjust the global offset table
546 *
547 * RAX is the previous adjustment of the table to undo (use 0 if it's the
548 * first time we touch GOT).
549 * RDI is the new adjustment to apply.
550 */
551adjust_got:
552 /* Walk through the GOT adding the address to the entries */
553 leaq _got(%rip), %rdx
554 leaq _egot(%rip), %rcx
5551:
556 cmpq %rcx, %rdx
557 jae 2f
558 subq %rax, (%rdx) /* Undo previous adjustment */
559 addq %rdi, (%rdx) /* Apply the new adjustment */
560 addq $8, %rdx
561 jmp 1b
5622:
563 ret
564
Yinghai Lu187a8a72013-01-24 12:20:00 -0800565 .code32
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300566/*
567 * This is the 32-bit trampoline that will be copied over to low memory.
568 *
569 * RDI contains the return address (might be above 4G).
570 * ECX contains the base address of the trampoline memory.
Kirill A. Shutemov82434d22019-02-06 18:29:08 +0300571 * Non zero RDX means trampoline needs to enable 5-level paging.
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300572 */
Kirill A. Shutemov32fcefa2018-02-26 21:04:50 +0300573ENTRY(trampoline_32bit_src)
Kirill A. Shutemov32fcefa2018-02-26 21:04:50 +0300574 /* Set up data and stack segments */
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300575 movl $__KERNEL_DS, %eax
576 movl %eax, %ds
577 movl %eax, %ss
578
Kirill A. Shutemovf7ff53e2018-03-12 13:02:44 +0300579 /* Set up new stack */
580 leal TRAMPOLINE_32BIT_STACK_END(%ecx), %esp
581
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300582 /* Disable paging */
583 movl %cr0, %eax
584 btrl $X86_CR0_PG_BIT, %eax
585 movl %eax, %cr0
586
Kirill A. Shutemov0a1756b2018-03-12 13:02:45 +0300587 /* Check what paging mode we want to be in after the trampoline */
588 cmpl $0, %edx
589 jz 1f
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300590
Kirill A. Shutemov0a1756b2018-03-12 13:02:45 +0300591 /* We want 5-level paging: don't touch CR3 if it already points to 5-level page tables */
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300592 movl %cr4, %eax
Kirill A. Shutemov0a1756b2018-03-12 13:02:45 +0300593 testl $X86_CR4_LA57, %eax
594 jnz 3f
595 jmp 2f
5961:
597 /* We want 4-level paging: don't touch CR3 if it already points to 4-level page tables */
598 movl %cr4, %eax
599 testl $X86_CR4_LA57, %eax
600 jz 3f
6012:
602 /* Point CR3 to the trampoline's new top level page table */
603 leal TRAMPOLINE_32BIT_PGTABLE_OFFSET(%ecx), %eax
604 movl %eax, %cr3
6053:
Wei Huangb677dfa2019-01-03 23:44:11 -0600606 /* Set EFER.LME=1 as a precaution in case hypervsior pulls the rug */
607 pushl %ecx
Kirill A. Shutemov45b13b42019-02-06 14:52:53 +0300608 pushl %edx
Wei Huangb677dfa2019-01-03 23:44:11 -0600609 movl $MSR_EFER, %ecx
610 rdmsr
611 btsl $_EFER_LME, %eax
612 wrmsr
Kirill A. Shutemov45b13b42019-02-06 14:52:53 +0300613 popl %edx
Wei Huangb677dfa2019-01-03 23:44:11 -0600614 popl %ecx
615
Kirill A. Shutemov0a1756b2018-03-12 13:02:45 +0300616 /* Enable PAE and LA57 (if required) paging modes */
617 movl $X86_CR4_PAE, %eax
618 cmpl $0, %edx
619 jz 1f
620 orl $X86_CR4_LA57, %eax
6211:
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300622 movl %eax, %cr4
623
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300624 /* Calculate address of paging_enabled() once we are executing in the trampoline */
625 leal paging_enabled - trampoline_32bit_src + TRAMPOLINE_32BIT_CODE_OFFSET(%ecx), %eax
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300626
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300627 /* Prepare the stack for far return to Long Mode */
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300628 pushl $__KERNEL_CS
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300629 pushl %eax
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300630
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300631 /* Enable paging again */
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300632 movl $(X86_CR0_PG | X86_CR0_PE), %eax
633 movl %eax, %cr0
634
635 lret
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300636
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300637 .code64
638paging_enabled:
639 /* Return from the trampoline */
640 jmp *%rdi
641
642 /*
643 * The trampoline code has a size limit.
644 * Make sure we fail to compile if the trampoline code grows
645 * beyond TRAMPOLINE_32BIT_CODE_SIZE bytes.
646 */
647 .org trampoline_32bit_src + TRAMPOLINE_32BIT_CODE_SIZE
648
649 .code32
Yinghai Lu187a8a72013-01-24 12:20:00 -0800650no_longmode:
Kirill A. Shutemov194a9742018-03-12 13:02:46 +0300651 /* This isn't an x86-64 CPU, so hang intentionally, we cannot continue */
Yinghai Lu187a8a72013-01-24 12:20:00 -08006521:
653 hlt
654 jmp 1b
655
656#include "../../kernel/verify_cpu.S"
657
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200658 .data
Kirill A. Shutemov7beebacc2018-03-12 13:02:43 +0300659gdt64:
660 .word gdt_end - gdt
Kirill A. Shutemov7beebacc2018-03-12 13:02:43 +0300661 .quad 0
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200662gdt:
663 .word gdt_end - gdt
664 .long gdt
665 .word 0
Kirill A. Shutemov34bbb002017-06-06 14:31:25 +0300666 .quad 0x00cf9a000000ffff /* __KERNEL32_CS */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200667 .quad 0x00af9a000000ffff /* __KERNEL_CS */
668 .quad 0x00cf92000000ffff /* __KERNEL_DS */
Zachary Amsden08da5a22007-08-10 22:31:05 +0200669 .quad 0x0080890000000000 /* TS descriptor */
670 .quad 0x0000000000000000 /* TS continued */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200671gdt_end:
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200672
Matt Fleming3db4caf2014-03-05 10:15:55 +0000673#ifdef CONFIG_EFI_STUB
Matt Fleming54b52d82014-01-10 15:27:14 +0000674efi_config:
675 .quad 0
676
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000677#ifdef CONFIG_EFI_MIXED
678 .global efi32_config
679efi32_config:
David Howellsa2cd2f32017-02-06 11:22:40 +0000680 .fill 5,8,0
Matt Flemingb8ff87a2014-01-10 15:54:31 +0000681 .quad efi64_thunk
682 .byte 0
683#endif
684
Matt Fleming54b52d82014-01-10 15:27:14 +0000685 .global efi64_config
686efi64_config:
David Howellsa2cd2f32017-02-06 11:22:40 +0000687 .fill 5,8,0
Matt Fleming62fa6e62014-03-27 15:10:39 -0700688 .quad efi_call
Matt Fleming54b52d82014-01-10 15:27:14 +0000689 .byte 1
Matt Fleming3db4caf2014-03-05 10:15:55 +0000690#endif /* CONFIG_EFI_STUB */
691
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700692/*
693 * Stack and heap for uncompression
694 */
695 .bss
696 .balign 4
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200697boot_heap:
698 .fill BOOT_HEAP_SIZE, 1, 0
699boot_stack:
700 .fill BOOT_STACK_SIZE, 1, 0
701boot_stack_end:
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700702
703/*
704 * Space for page tables (not in .bss so not zeroed)
705 */
706 .section ".pgtable","a",@nobits
707 .balign 4096
708pgtable:
Kees Cook3a947072016-05-06 15:01:35 -0700709 .fill BOOT_PGT_SIZE, 1, 0
Kirill A. Shutemov589bb622018-05-16 11:01:29 +0300710
711/*
712 * The page table is going to be used instead of page table in the trampoline
713 * memory.
714 */
715top_pgtable:
716 .fill PAGE_SIZE, 1, 0