Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/boot/head.S |
| 4 | * |
| 5 | * Copyright (C) 1991, 1992, 1993 Linus Torvalds |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 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 Puncer | f454944 | 2005-06-25 14:58:59 -0700 | [diff] [blame] | 23 | * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | */ |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 25 | .code32 |
| 26 | .text |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Tim Abbott | 1dc818c | 2009-09-16 16:44:27 -0400 | [diff] [blame] | 28 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/linkage.h> |
| 30 | #include <asm/segment.h> |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 31 | #include <asm/boot.h> |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 32 | #include <asm/msr.h> |
Cyrill Gorcunov | e83e31f4 | 2008-05-12 15:43:39 +0200 | [diff] [blame] | 33 | #include <asm/processor-flags.h> |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 34 | #include <asm/asm-offsets.h> |
Alexander Kuleshov | fb148d8 | 2015-02-19 13:34:58 +0600 | [diff] [blame] | 35 | #include <asm/bootparam.h> |
Kirill A. Shutemov | f7ff53e | 2018-03-12 13:02:44 +0300 | [diff] [blame] | 36 | #include "pgtable.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
H.J. Lu | 6d92bc9 | 2016-03-16 20:04:35 -0700 | [diff] [blame] | 38 | /* |
| 39 | * Locally defined symbols should be marked hidden: |
| 40 | */ |
| 41 | .hidden _bss |
| 42 | .hidden _ebss |
| 43 | .hidden _got |
| 44 | .hidden _egot |
| 45 | |
Tim Abbott | 1dc818c | 2009-09-16 16:44:27 -0400 | [diff] [blame] | 46 | __HEAD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | .code32 |
Jiri Slaby | 6dcc562 | 2019-10-11 13:51:04 +0200 | [diff] [blame] | 48 | SYM_FUNC_START(startup_32) |
Yinghai Lu | 8ee2f2d | 2013-01-24 12:20:07 -0800 | [diff] [blame] | 49 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | cld |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 56 | /* |
| 57 | * Test KEEP_SEGMENTS flag to see if the bootloader is asking |
| 58 | * us to not reload segments |
| 59 | */ |
Alexander Kuleshov | fb148d8 | 2015-02-19 13:34:58 +0600 | [diff] [blame] | 60 | testb $KEEP_SEGMENTS, BP_loadflags(%esi) |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 61 | jnz 1f |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | cli |
Lans Zhang | 2dead15 | 2013-03-01 09:20:39 +0800 | [diff] [blame] | 64 | movl $(__BOOT_DS), %eax |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 65 | movl %eax, %ds |
| 66 | movl %eax, %es |
| 67 | movl %eax, %ss |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 68 | 1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 70 | /* |
| 71 | * Calculate the delta between where we were compiled to run |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 72 | * 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 Anvin | 85414b6 | 2007-07-11 12:18:33 -0700 | [diff] [blame] | 75 | * data at 0x1e4 (defined as a scratch field) are used as the stack |
| 76 | * for this calculation. Only 4 bytes are needed. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 77 | */ |
H. Peter Anvin | bd2a369 | 2009-05-05 23:24:50 -0700 | [diff] [blame] | 78 | leal (BP_scratch+4)(%esi), %esp |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 79 | call 1f |
| 80 | 1: popl %ebp |
| 81 | subl $1b, %ebp |
| 82 | |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 83 | /* setup a stack and make sure cpu supports long mode. */ |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 84 | movl $boot_stack_end, %eax |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 85 | addl %ebp, %eax |
| 86 | movl %eax, %esp |
| 87 | |
| 88 | call verify_cpu |
| 89 | testl %eax, %eax |
Jiri Slaby | 98ededb | 2019-09-06 09:55:50 +0200 | [diff] [blame] | 90 | jnz .Lno_longmode |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 91 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 92 | /* |
| 93 | * Compute the delta between where we were compiled to run at |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 94 | * and where the code will actually run at. |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 95 | * |
| 96 | * %ebp contains the address we are loaded at by the boot loader and %ebx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 97 | * 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 Anvin | 37ba7ab | 2009-05-11 15:56:08 -0700 | [diff] [blame] | 103 | movl BP_kernel_alignment(%esi), %eax |
| 104 | decl %eax |
| 105 | addl %eax, %ebx |
| 106 | notl %eax |
| 107 | andl %eax, %ebx |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 108 | cmpl $LOAD_PHYSICAL_ADDR, %ebx |
| 109 | jge 1f |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 110 | #endif |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 111 | movl $LOAD_PHYSICAL_ADDR, %ebx |
| 112 | 1: |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 113 | |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 114 | /* Target address to relocate to for decompression */ |
Yinghai Lu | 974f221 | 2016-04-28 17:09:04 -0700 | [diff] [blame] | 115 | movl BP_init_size(%esi), %eax |
| 116 | subl $_end, %eax |
| 117 | addl %eax, %ebx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | /* |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 120 | * Prepare for entering 64 bit mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 122 | |
| 123 | /* Load new GDT with the 64bit segments using 32bit descriptor */ |
Wei Yang | 064025f | 2016-11-01 15:49:24 +0000 | [diff] [blame] | 124 | addl %ebp, gdt+2(%ebp) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 125 | lgdt gdt(%ebp) |
| 126 | |
| 127 | /* Enable PAE mode */ |
Matt Fleming | 108d3f4 | 2014-02-24 13:37:29 +0000 | [diff] [blame] | 128 | movl %cr4, %eax |
| 129 | orl $X86_CR4_PAE, %eax |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 130 | movl %eax, %cr4 |
| 131 | |
| 132 | /* |
| 133 | * Build early 4G boot pagetable |
| 134 | */ |
Tom Lendacky | 1958b5f | 2017-10-20 09:30:54 -0500 | [diff] [blame] | 135 | /* |
| 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 */ |
| 146 | 1: |
| 147 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 148 | /* Initialize Page tables to 0 */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 149 | leal pgtable(%ebx), %edi |
| 150 | xorl %eax, %eax |
Kees Cook | 3a94707 | 2016-05-06 15:01:35 -0700 | [diff] [blame] | 151 | movl $(BOOT_INIT_PGT_SIZE/4), %ecx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 152 | rep stosl |
| 153 | |
| 154 | /* Build Level 4 */ |
| 155 | leal pgtable + 0(%ebx), %edi |
| 156 | leal 0x1007 (%edi), %eax |
| 157 | movl %eax, 0(%edi) |
Tom Lendacky | 1958b5f | 2017-10-20 09:30:54 -0500 | [diff] [blame] | 158 | addl %edx, 4(%edi) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 159 | |
| 160 | /* Build Level 3 */ |
| 161 | leal pgtable + 0x1000(%ebx), %edi |
| 162 | leal 0x1007(%edi), %eax |
| 163 | movl $4, %ecx |
| 164 | 1: movl %eax, 0x00(%edi) |
Tom Lendacky | 1958b5f | 2017-10-20 09:30:54 -0500 | [diff] [blame] | 165 | addl %edx, 0x04(%edi) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 166 | 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 |
| 175 | 1: movl %eax, 0(%edi) |
Tom Lendacky | 1958b5f | 2017-10-20 09:30:54 -0500 | [diff] [blame] | 176 | addl %edx, 4(%edi) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 177 | 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 Lu | d3c433b | 2013-01-24 12:20:01 -0800 | [diff] [blame] | 192 | /* After gdt is loaded */ |
| 193 | xorl %eax, %eax |
| 194 | lldt %ax |
Denys Vlasenko | 40e4f2d1 | 2015-04-01 16:50:58 +0200 | [diff] [blame] | 195 | movl $__BOOT_TSS, %eax |
Yinghai Lu | d3c433b | 2013-01-24 12:20:01 -0800 | [diff] [blame] | 196 | ltr %ax |
| 197 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 198 | /* |
| 199 | * Setup for the jump to 64bit mode |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 200 | * |
| 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 Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 210 | #ifdef CONFIG_EFI_MIXED |
| 211 | movl efi32_config(%ebp), %ebx |
| 212 | cmp $0, %ebx |
| 213 | jz 1f |
| 214 | leal handover_entry(%ebp), %eax |
| 215 | 1: |
| 216 | #endif |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 217 | pushl %eax |
| 218 | |
| 219 | /* Enter paged protected Mode, activating Long Mode */ |
Cyrill Gorcunov | e83e31f4 | 2008-05-12 15:43:39 +0200 | [diff] [blame] | 220 | movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 221 | movl %eax, %cr0 |
| 222 | |
| 223 | /* Jump from 32bit compatibility mode into 64bit mode. */ |
| 224 | lret |
Jiri Slaby | 6dcc562 | 2019-10-11 13:51:04 +0200 | [diff] [blame] | 225 | SYM_FUNC_END(startup_32) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 226 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 227 | #ifdef CONFIG_EFI_MIXED |
| 228 | .org 0x190 |
Jiri Slaby | 6dcc562 | 2019-10-11 13:51:04 +0200 | [diff] [blame] | 229 | SYM_FUNC_START(efi32_stub_entry) |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 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 |
| 237 | 1: 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 | |
Ard Biesheuvel | 4911ee4 | 2019-12-24 14:29:09 +0100 | [diff] [blame] | 247 | /* Disable paging */ |
| 248 | movl %cr0, %eax |
| 249 | btrl $X86_CR0_PG_BIT, %eax |
| 250 | movl %eax, %cr0 |
| 251 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 252 | jmp startup_32 |
Jiri Slaby | 6dcc562 | 2019-10-11 13:51:04 +0200 | [diff] [blame] | 253 | SYM_FUNC_END(efi32_stub_entry) |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 254 | #endif |
| 255 | |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 256 | .code64 |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 257 | .org 0x200 |
Jiri Slaby | 4aec216 | 2019-10-11 13:51:02 +0200 | [diff] [blame] | 258 | SYM_CODE_START(startup_64) |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 259 | /* |
Yinghai Lu | 8ee2f2d | 2013-01-24 12:20:07 -0800 | [diff] [blame] | 260 | * 64bit entry is 0x200 and it is ABI so immutable! |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 261 | * We come here either from startup_32 or directly from a |
Yinghai Lu | 8ee2f2d | 2013-01-24 12:20:07 -0800 | [diff] [blame] | 262 | * 64bit bootloader. |
| 263 | * If we come here from a bootloader, kernel(text+data+bss+brk), |
| 264 | * ramdisk, zero_page, command line could be above 4G. |
| 265 | * We depend on an identity mapped page table being provided |
| 266 | * that maps our entire kernel(text+data+bss+brk), zero page |
| 267 | * and command line. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 268 | */ |
| 269 | |
| 270 | /* Setup data segments. */ |
| 271 | xorl %eax, %eax |
| 272 | movl %eax, %ds |
| 273 | movl %eax, %es |
| 274 | movl %eax, %ss |
Zachary Amsden | 08da5a2 | 2007-08-10 22:31:05 +0200 | [diff] [blame] | 275 | movl %eax, %fs |
| 276 | movl %eax, %gs |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 277 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 278 | /* |
| 279 | * Compute the decompressed kernel start address. It is where |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 280 | * we were loaded at aligned to a 2M boundary. %rbp contains the |
| 281 | * decompressed kernel start address. |
| 282 | * |
| 283 | * If it is a relocatable kernel then decompress and run the kernel |
| 284 | * from load address aligned to 2MB addr, otherwise decompress and |
H. Peter Anvin | 40b387a | 2009-05-11 14:41:55 -0700 | [diff] [blame] | 285 | * run the kernel from LOAD_PHYSICAL_ADDR |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 286 | * |
| 287 | * We cannot rely on the calculation done in 32-bit mode, since we |
| 288 | * may have been invoked via the 64-bit entry point. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 289 | */ |
| 290 | |
| 291 | /* Start with the delta to where the kernel will run at. */ |
| 292 | #ifdef CONFIG_RELOCATABLE |
| 293 | leaq startup_32(%rip) /* - $startup_32 */, %rbp |
H. Peter Anvin | 37ba7ab | 2009-05-11 15:56:08 -0700 | [diff] [blame] | 294 | movl BP_kernel_alignment(%rsi), %eax |
| 295 | decl %eax |
| 296 | addq %rax, %rbp |
| 297 | notq %rax |
| 298 | andq %rax, %rbp |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 299 | cmpq $LOAD_PHYSICAL_ADDR, %rbp |
| 300 | jge 1f |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 301 | #endif |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 302 | movq $LOAD_PHYSICAL_ADDR, %rbp |
| 303 | 1: |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 304 | |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 305 | /* Target address to relocate to for decompression */ |
Yinghai Lu | 974f221 | 2016-04-28 17:09:04 -0700 | [diff] [blame] | 306 | movl BP_init_size(%rsi), %ebx |
| 307 | subl $_end, %ebx |
| 308 | addq %rbp, %rbx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 309 | |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 310 | /* Set up the stack */ |
| 311 | leaq boot_stack_end(%rbx), %rsp |
| 312 | |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 313 | /* |
Kirill A. Shutemov | 5c9b0b1 | 2018-05-16 11:01:28 +0300 | [diff] [blame] | 314 | * paging_prepare() and cleanup_trampoline() below can have GOT |
| 315 | * references. Adjust the table with address we are running at. |
| 316 | * |
| 317 | * Zero RAX for adjust_got: the GOT was not adjusted before; |
| 318 | * there's no adjustment to undo. |
| 319 | */ |
| 320 | xorq %rax, %rax |
| 321 | |
| 322 | /* |
| 323 | * Calculate the address the binary is loaded at and use it as |
| 324 | * a GOT adjustment. |
| 325 | */ |
| 326 | call 1f |
| 327 | 1: popq %rdi |
| 328 | subq $1b, %rdi |
| 329 | |
Jiri Slaby | 98ededb | 2019-09-06 09:55:50 +0200 | [diff] [blame] | 330 | call .Ladjust_got |
Kirill A. Shutemov | 5c9b0b1 | 2018-05-16 11:01:28 +0300 | [diff] [blame] | 331 | |
| 332 | /* |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 333 | * At this point we are in long mode with 4-level paging enabled, |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 334 | * but we might want to enable 5-level paging or vice versa. |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 335 | * |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 336 | * The problem is that we cannot do it directly. Setting or clearing |
| 337 | * CR4.LA57 in long mode would trigger #GP. So we need to switch off |
| 338 | * long mode and paging first. |
| 339 | * |
| 340 | * We also need a trampoline in lower memory to switch over from |
| 341 | * 4- to 5-level paging for cases when the bootloader puts the kernel |
| 342 | * above 4G, but didn't enable 5-level paging for us. |
| 343 | * |
| 344 | * The same trampoline can be used to switch from 5- to 4-level paging |
| 345 | * mode, like when starting 4-level paging kernel via kexec() when |
| 346 | * original kernel worked in 5-level paging mode. |
| 347 | * |
| 348 | * For the trampoline, we need the top page table to reside in lower |
| 349 | * memory as we don't have a way to load 64-bit values into CR3 in |
| 350 | * 32-bit mode. |
| 351 | * |
| 352 | * We go though the trampoline even if we don't have to: if we're |
| 353 | * already in a desired paging mode. This way the trampoline code gets |
| 354 | * tested on every boot. |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 355 | */ |
| 356 | |
Kirill A. Shutemov | 7beebacc | 2018-03-12 13:02:43 +0300 | [diff] [blame] | 357 | /* Make sure we have GDT with 32-bit code segment */ |
| 358 | leaq gdt(%rip), %rax |
| 359 | movq %rax, gdt64+2(%rip) |
| 360 | lgdt gdt64(%rip) |
| 361 | |
Kirill A. Shutemov | 4440977 | 2018-02-09 17:22:26 +0300 | [diff] [blame] | 362 | /* |
| 363 | * paging_prepare() sets up the trampoline and checks if we need to |
| 364 | * enable 5-level paging. |
| 365 | * |
Kirill A. Shutemov | 82434d2 | 2019-02-06 18:29:08 +0300 | [diff] [blame] | 366 | * paging_prepare() returns a two-quadword structure which lands |
| 367 | * into RDX:RAX: |
| 368 | * - Address of the trampoline is returned in RAX. |
| 369 | * - Non zero RDX means trampoline needs to enable 5-level |
| 370 | * paging. |
Kirill A. Shutemov | 4440977 | 2018-02-09 17:22:26 +0300 | [diff] [blame] | 371 | * |
| 372 | * RSI holds real mode data and needs to be preserved across |
| 373 | * this function call. |
| 374 | */ |
| 375 | pushq %rsi |
Kirill A. Shutemov | 372fddf | 2018-05-18 13:35:25 +0300 | [diff] [blame] | 376 | movq %rsi, %rdi /* real mode address */ |
Kirill A. Shutemov | 4440977 | 2018-02-09 17:22:26 +0300 | [diff] [blame] | 377 | call paging_prepare |
| 378 | popq %rsi |
| 379 | |
| 380 | /* Save the trampoline address in RCX */ |
| 381 | movq %rax, %rcx |
| 382 | |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 383 | /* |
| 384 | * Load the address of trampoline_return() into RDI. |
| 385 | * It will be used by the trampoline to return to the main code. |
| 386 | */ |
| 387 | leaq trampoline_return(%rip), %rdi |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 388 | |
| 389 | /* Switch to compatibility mode (CS.L = 0 CS.D = 1) via far return */ |
| 390 | pushq $__KERNEL32_CS |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 391 | leaq TRAMPOLINE_32BIT_CODE_OFFSET(%rax), %rax |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 392 | pushq %rax |
| 393 | lretq |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 394 | trampoline_return: |
Kirill A. Shutemov | f7ff53e | 2018-03-12 13:02:44 +0300 | [diff] [blame] | 395 | /* Restore the stack, the 32-bit trampoline uses its own stack */ |
| 396 | leaq boot_stack_end(%rbx), %rsp |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 397 | |
Kirill A. Shutemov | fb526835 | 2018-02-26 21:04:49 +0300 | [diff] [blame] | 398 | /* |
| 399 | * cleanup_trampoline() would restore trampoline memory. |
| 400 | * |
Kirill A. Shutemov | 589bb62 | 2018-05-16 11:01:29 +0300 | [diff] [blame] | 401 | * RDI is address of the page table to use instead of page table |
| 402 | * in trampoline memory (if required). |
| 403 | * |
Kirill A. Shutemov | fb526835 | 2018-02-26 21:04:49 +0300 | [diff] [blame] | 404 | * RSI holds real mode data and needs to be preserved across |
| 405 | * this function call. |
| 406 | */ |
| 407 | pushq %rsi |
Kirill A. Shutemov | 589bb62 | 2018-05-16 11:01:29 +0300 | [diff] [blame] | 408 | leaq top_pgtable(%rbx), %rdi |
Kirill A. Shutemov | fb526835 | 2018-02-26 21:04:49 +0300 | [diff] [blame] | 409 | call cleanup_trampoline |
| 410 | popq %rsi |
| 411 | |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 412 | /* Zero EFLAGS */ |
| 413 | pushq $0 |
| 414 | popfq |
| 415 | |
Kirill A. Shutemov | 5c9b0b1 | 2018-05-16 11:01:28 +0300 | [diff] [blame] | 416 | /* |
| 417 | * Previously we've adjusted the GOT with address the binary was |
| 418 | * loaded at. Now we need to re-adjust for relocation address. |
| 419 | * |
| 420 | * Calculate the address the binary is loaded at, so that we can |
| 421 | * undo the previous GOT adjustment. |
| 422 | */ |
| 423 | call 1f |
| 424 | 1: popq %rax |
| 425 | subq $1b, %rax |
| 426 | |
| 427 | /* The new adjustment is the relocation address */ |
| 428 | movq %rbx, %rdi |
Jiri Slaby | 98ededb | 2019-09-06 09:55:50 +0200 | [diff] [blame] | 429 | call .Ladjust_got |
Kirill A. Shutemov | 5c9b0b1 | 2018-05-16 11:01:28 +0300 | [diff] [blame] | 430 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 431 | /* |
| 432 | * Copy the compressed kernel to the end of our buffer |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 433 | * where decompression in place becomes safe. |
| 434 | */ |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 435 | pushq %rsi |
| 436 | leaq (_bss-8)(%rip), %rsi |
| 437 | leaq (_bss-8)(%rbx), %rdi |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame] | 438 | movq $_bss /* - $startup_32 */, %rcx |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 439 | shrq $3, %rcx |
| 440 | std |
| 441 | rep movsq |
| 442 | cld |
| 443 | popq %rsi |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 444 | |
| 445 | /* |
| 446 | * Jump to the relocated address. |
| 447 | */ |
Jiri Slaby | 98ededb | 2019-09-06 09:55:50 +0200 | [diff] [blame] | 448 | leaq .Lrelocated(%rbx), %rax |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 449 | jmp *%rax |
Jiri Slaby | 4aec216 | 2019-10-11 13:51:02 +0200 | [diff] [blame] | 450 | SYM_CODE_END(startup_64) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 451 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 452 | #ifdef CONFIG_EFI_STUB |
Jiri Slaby | 9e085ce | 2017-08-24 09:33:27 +0200 | [diff] [blame] | 453 | |
| 454 | /* The entry point for the PE/COFF executable is efi_pe_entry. */ |
Jiri Slaby | 6dcc562 | 2019-10-11 13:51:04 +0200 | [diff] [blame] | 455 | SYM_FUNC_START(efi_pe_entry) |
Jiri Slaby | 9e085ce | 2017-08-24 09:33:27 +0200 | [diff] [blame] | 456 | movq %rcx, efi64_config(%rip) /* Handle */ |
| 457 | movq %rdx, efi64_config+8(%rip) /* EFI System table pointer */ |
| 458 | |
| 459 | leaq efi64_config(%rip), %rax |
| 460 | movq %rax, efi_config(%rip) |
| 461 | |
| 462 | call 1f |
| 463 | 1: popq %rbp |
| 464 | subq $1b, %rbp |
| 465 | |
| 466 | /* |
| 467 | * Relocate efi_config->call(). |
| 468 | */ |
| 469 | addq %rbp, efi64_config+40(%rip) |
| 470 | |
| 471 | movq %rax, %rdi |
| 472 | call make_boot_params |
| 473 | cmpq $0,%rax |
| 474 | je fail |
| 475 | mov %rax, %rsi |
| 476 | leaq startup_32(%rip), %rax |
| 477 | movl %eax, BP_code32_start(%rsi) |
| 478 | jmp 2f /* Skip the relocation */ |
| 479 | |
| 480 | handover_entry: |
| 481 | call 1f |
| 482 | 1: popq %rbp |
| 483 | subq $1b, %rbp |
| 484 | |
| 485 | /* |
| 486 | * Relocate efi_config->call(). |
| 487 | */ |
| 488 | movq efi_config(%rip), %rax |
| 489 | addq %rbp, 40(%rax) |
| 490 | 2: |
| 491 | movq efi_config(%rip), %rdi |
| 492 | call efi_main |
| 493 | movq %rax,%rsi |
| 494 | cmpq $0,%rax |
| 495 | jne 2f |
| 496 | fail: |
| 497 | /* EFI init failed, so hang. */ |
| 498 | hlt |
| 499 | jmp fail |
| 500 | 2: |
| 501 | movl BP_code32_start(%esi), %eax |
| 502 | leaq startup_64(%rax), %rax |
| 503 | jmp *%rax |
Jiri Slaby | 6dcc562 | 2019-10-11 13:51:04 +0200 | [diff] [blame] | 504 | SYM_FUNC_END(efi_pe_entry) |
Jiri Slaby | 9e085ce | 2017-08-24 09:33:27 +0200 | [diff] [blame] | 505 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 506 | .org 0x390 |
Jiri Slaby | 6dcc562 | 2019-10-11 13:51:04 +0200 | [diff] [blame] | 507 | SYM_FUNC_START(efi64_stub_entry) |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 508 | movq %rdi, efi64_config(%rip) /* Handle */ |
| 509 | movq %rsi, efi64_config+8(%rip) /* EFI System table pointer */ |
| 510 | |
| 511 | leaq efi64_config(%rip), %rax |
| 512 | movq %rax, efi_config(%rip) |
| 513 | |
| 514 | movq %rdx, %rsi |
| 515 | jmp handover_entry |
Jiri Slaby | 6dcc562 | 2019-10-11 13:51:04 +0200 | [diff] [blame] | 516 | SYM_FUNC_END(efi64_stub_entry) |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 517 | #endif |
| 518 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 519 | .text |
Jiri Slaby | deff8a2 | 2019-10-11 13:50:47 +0200 | [diff] [blame] | 520 | SYM_FUNC_START_LOCAL_NOALIGN(.Lrelocated) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | /* |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 523 | * Clear BSS (stack is currently empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | */ |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 525 | xorl %eax, %eax |
| 526 | leaq _bss(%rip), %rdi |
| 527 | leaq _ebss(%rip), %rcx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 528 | subq %rdi, %rcx |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 529 | shrq $3, %rcx |
| 530 | rep stosq |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 531 | |
Linus Torvalds | f367039 | 2014-09-22 23:05:49 -0700 | [diff] [blame] | 532 | /* |
Kees Cook | c040288 | 2016-04-18 09:42:13 -0700 | [diff] [blame] | 533 | * Do the extraction, and jump to the new kernel.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | */ |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 535 | pushq %rsi /* Save the real mode argument */ |
| 536 | movq %rsi, %rdi /* real mode address */ |
| 537 | leaq boot_heap(%rip), %rsi /* malloc area for uncompression */ |
| 538 | leaq input_data(%rip), %rdx /* input_data */ |
| 539 | movl $z_input_len, %ecx /* input_len */ |
| 540 | movq %rbp, %r8 /* output target address */ |
Junjie Mao | e602336 | 2014-10-31 21:40:38 +0800 | [diff] [blame] | 541 | movq $z_output_len, %r9 /* decompressed length, end of relocs */ |
Kees Cook | c040288 | 2016-04-18 09:42:13 -0700 | [diff] [blame] | 542 | call extract_kernel /* returns kernel location in %rax */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 543 | popq %rsi |
| 544 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | /* |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 546 | * Jump to the decompressed kernel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | */ |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 548 | jmp *%rax |
Jiri Slaby | deff8a2 | 2019-10-11 13:50:47 +0200 | [diff] [blame] | 549 | SYM_FUNC_END(.Lrelocated) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
Kirill A. Shutemov | 5c9b0b1 | 2018-05-16 11:01:28 +0300 | [diff] [blame] | 551 | /* |
| 552 | * Adjust the global offset table |
| 553 | * |
| 554 | * RAX is the previous adjustment of the table to undo (use 0 if it's the |
| 555 | * first time we touch GOT). |
| 556 | * RDI is the new adjustment to apply. |
| 557 | */ |
Jiri Slaby | 98ededb | 2019-09-06 09:55:50 +0200 | [diff] [blame] | 558 | .Ladjust_got: |
Kirill A. Shutemov | 5c9b0b1 | 2018-05-16 11:01:28 +0300 | [diff] [blame] | 559 | /* Walk through the GOT adding the address to the entries */ |
| 560 | leaq _got(%rip), %rdx |
| 561 | leaq _egot(%rip), %rcx |
| 562 | 1: |
| 563 | cmpq %rcx, %rdx |
| 564 | jae 2f |
| 565 | subq %rax, (%rdx) /* Undo previous adjustment */ |
| 566 | addq %rdi, (%rdx) /* Apply the new adjustment */ |
| 567 | addq $8, %rdx |
| 568 | jmp 1b |
| 569 | 2: |
| 570 | ret |
| 571 | |
Yinghai Lu | 187a8a7 | 2013-01-24 12:20:00 -0800 | [diff] [blame] | 572 | .code32 |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 573 | /* |
| 574 | * This is the 32-bit trampoline that will be copied over to low memory. |
| 575 | * |
| 576 | * RDI contains the return address (might be above 4G). |
| 577 | * ECX contains the base address of the trampoline memory. |
Kirill A. Shutemov | 82434d2 | 2019-02-06 18:29:08 +0300 | [diff] [blame] | 578 | * Non zero RDX means trampoline needs to enable 5-level paging. |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 579 | */ |
Jiri Slaby | 4aec216 | 2019-10-11 13:51:02 +0200 | [diff] [blame] | 580 | SYM_CODE_START(trampoline_32bit_src) |
Kirill A. Shutemov | 32fcefa | 2018-02-26 21:04:50 +0300 | [diff] [blame] | 581 | /* Set up data and stack segments */ |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 582 | movl $__KERNEL_DS, %eax |
| 583 | movl %eax, %ds |
| 584 | movl %eax, %ss |
| 585 | |
Kirill A. Shutemov | f7ff53e | 2018-03-12 13:02:44 +0300 | [diff] [blame] | 586 | /* Set up new stack */ |
| 587 | leal TRAMPOLINE_32BIT_STACK_END(%ecx), %esp |
| 588 | |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 589 | /* Disable paging */ |
| 590 | movl %cr0, %eax |
| 591 | btrl $X86_CR0_PG_BIT, %eax |
| 592 | movl %eax, %cr0 |
| 593 | |
Kirill A. Shutemov | 0a1756b | 2018-03-12 13:02:45 +0300 | [diff] [blame] | 594 | /* Check what paging mode we want to be in after the trampoline */ |
| 595 | cmpl $0, %edx |
| 596 | jz 1f |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 597 | |
Kirill A. Shutemov | 0a1756b | 2018-03-12 13:02:45 +0300 | [diff] [blame] | 598 | /* We want 5-level paging: don't touch CR3 if it already points to 5-level page tables */ |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 599 | movl %cr4, %eax |
Kirill A. Shutemov | 0a1756b | 2018-03-12 13:02:45 +0300 | [diff] [blame] | 600 | testl $X86_CR4_LA57, %eax |
| 601 | jnz 3f |
| 602 | jmp 2f |
| 603 | 1: |
| 604 | /* We want 4-level paging: don't touch CR3 if it already points to 4-level page tables */ |
| 605 | movl %cr4, %eax |
| 606 | testl $X86_CR4_LA57, %eax |
| 607 | jz 3f |
| 608 | 2: |
| 609 | /* Point CR3 to the trampoline's new top level page table */ |
| 610 | leal TRAMPOLINE_32BIT_PGTABLE_OFFSET(%ecx), %eax |
| 611 | movl %eax, %cr3 |
| 612 | 3: |
Wei Huang | b677dfa | 2019-01-03 23:44:11 -0600 | [diff] [blame] | 613 | /* Set EFER.LME=1 as a precaution in case hypervsior pulls the rug */ |
| 614 | pushl %ecx |
Kirill A. Shutemov | 45b13b4 | 2019-02-06 14:52:53 +0300 | [diff] [blame] | 615 | pushl %edx |
Wei Huang | b677dfa | 2019-01-03 23:44:11 -0600 | [diff] [blame] | 616 | movl $MSR_EFER, %ecx |
| 617 | rdmsr |
| 618 | btsl $_EFER_LME, %eax |
| 619 | wrmsr |
Kirill A. Shutemov | 45b13b4 | 2019-02-06 14:52:53 +0300 | [diff] [blame] | 620 | popl %edx |
Wei Huang | b677dfa | 2019-01-03 23:44:11 -0600 | [diff] [blame] | 621 | popl %ecx |
| 622 | |
Kirill A. Shutemov | 0a1756b | 2018-03-12 13:02:45 +0300 | [diff] [blame] | 623 | /* Enable PAE and LA57 (if required) paging modes */ |
| 624 | movl $X86_CR4_PAE, %eax |
| 625 | cmpl $0, %edx |
| 626 | jz 1f |
| 627 | orl $X86_CR4_LA57, %eax |
| 628 | 1: |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 629 | movl %eax, %cr4 |
| 630 | |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 631 | /* Calculate address of paging_enabled() once we are executing in the trampoline */ |
Jiri Slaby | 98ededb | 2019-09-06 09:55:50 +0200 | [diff] [blame] | 632 | leal .Lpaging_enabled - trampoline_32bit_src + TRAMPOLINE_32BIT_CODE_OFFSET(%ecx), %eax |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 633 | |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 634 | /* Prepare the stack for far return to Long Mode */ |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 635 | pushl $__KERNEL_CS |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 636 | pushl %eax |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 637 | |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 638 | /* Enable paging again */ |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 639 | movl $(X86_CR0_PG | X86_CR0_PE), %eax |
| 640 | movl %eax, %cr0 |
| 641 | |
| 642 | lret |
Jiri Slaby | 4aec216 | 2019-10-11 13:51:02 +0200 | [diff] [blame] | 643 | SYM_CODE_END(trampoline_32bit_src) |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 644 | |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 645 | .code64 |
Jiri Slaby | deff8a2 | 2019-10-11 13:50:47 +0200 | [diff] [blame] | 646 | SYM_FUNC_START_LOCAL_NOALIGN(.Lpaging_enabled) |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 647 | /* Return from the trampoline */ |
| 648 | jmp *%rdi |
Jiri Slaby | deff8a2 | 2019-10-11 13:50:47 +0200 | [diff] [blame] | 649 | SYM_FUNC_END(.Lpaging_enabled) |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 650 | |
| 651 | /* |
| 652 | * The trampoline code has a size limit. |
| 653 | * Make sure we fail to compile if the trampoline code grows |
| 654 | * beyond TRAMPOLINE_32BIT_CODE_SIZE bytes. |
| 655 | */ |
| 656 | .org trampoline_32bit_src + TRAMPOLINE_32BIT_CODE_SIZE |
| 657 | |
| 658 | .code32 |
Jiri Slaby | deff8a2 | 2019-10-11 13:50:47 +0200 | [diff] [blame] | 659 | SYM_FUNC_START_LOCAL_NOALIGN(.Lno_longmode) |
Kirill A. Shutemov | 194a974 | 2018-03-12 13:02:46 +0300 | [diff] [blame] | 660 | /* This isn't an x86-64 CPU, so hang intentionally, we cannot continue */ |
Yinghai Lu | 187a8a7 | 2013-01-24 12:20:00 -0800 | [diff] [blame] | 661 | 1: |
| 662 | hlt |
| 663 | jmp 1b |
Jiri Slaby | deff8a2 | 2019-10-11 13:50:47 +0200 | [diff] [blame] | 664 | SYM_FUNC_END(.Lno_longmode) |
Yinghai Lu | 187a8a7 | 2013-01-24 12:20:00 -0800 | [diff] [blame] | 665 | |
| 666 | #include "../../kernel/verify_cpu.S" |
| 667 | |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 668 | .data |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 669 | SYM_DATA_START_LOCAL(gdt64) |
Kirill A. Shutemov | 7beebacc | 2018-03-12 13:02:43 +0300 | [diff] [blame] | 670 | .word gdt_end - gdt |
Kirill A. Shutemov | 7beebacc | 2018-03-12 13:02:43 +0300 | [diff] [blame] | 671 | .quad 0 |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 672 | SYM_DATA_END(gdt64) |
Xiaoyao Li | 2238246 | 2019-06-27 12:55:25 +0800 | [diff] [blame] | 673 | .balign 8 |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 674 | SYM_DATA_START_LOCAL(gdt) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 675 | .word gdt_end - gdt |
| 676 | .long gdt |
| 677 | .word 0 |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame] | 678 | .quad 0x00cf9a000000ffff /* __KERNEL32_CS */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 679 | .quad 0x00af9a000000ffff /* __KERNEL_CS */ |
| 680 | .quad 0x00cf92000000ffff /* __KERNEL_DS */ |
Zachary Amsden | 08da5a2 | 2007-08-10 22:31:05 +0200 | [diff] [blame] | 681 | .quad 0x0080890000000000 /* TS descriptor */ |
| 682 | .quad 0x0000000000000000 /* TS continued */ |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 683 | SYM_DATA_END_LABEL(gdt, SYM_L_LOCAL, gdt_end) |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 684 | |
Matt Fleming | 3db4caf | 2014-03-05 10:15:55 +0000 | [diff] [blame] | 685 | #ifdef CONFIG_EFI_STUB |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 686 | SYM_DATA_LOCAL(efi_config, .quad 0) |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 687 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 688 | #ifdef CONFIG_EFI_MIXED |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 689 | SYM_DATA_START(efi32_config) |
David Howells | a2cd2f3 | 2017-02-06 11:22:40 +0000 | [diff] [blame] | 690 | .fill 5,8,0 |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 691 | .quad efi64_thunk |
| 692 | .byte 0 |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 693 | SYM_DATA_END(efi32_config) |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 694 | #endif |
| 695 | |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 696 | SYM_DATA_START(efi64_config) |
David Howells | a2cd2f3 | 2017-02-06 11:22:40 +0000 | [diff] [blame] | 697 | .fill 5,8,0 |
Matt Fleming | 62fa6e6 | 2014-03-27 15:10:39 -0700 | [diff] [blame] | 698 | .quad efi_call |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 699 | .byte 1 |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 700 | SYM_DATA_END(efi64_config) |
Matt Fleming | 3db4caf | 2014-03-05 10:15:55 +0000 | [diff] [blame] | 701 | #endif /* CONFIG_EFI_STUB */ |
| 702 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 703 | /* |
| 704 | * Stack and heap for uncompression |
| 705 | */ |
| 706 | .bss |
| 707 | .balign 4 |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 708 | SYM_DATA_LOCAL(boot_heap, .fill BOOT_HEAP_SIZE, 1, 0) |
| 709 | |
| 710 | SYM_DATA_START_LOCAL(boot_stack) |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 711 | .fill BOOT_STACK_SIZE, 1, 0 |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 712 | SYM_DATA_END_LABEL(boot_stack, SYM_L_LOCAL, boot_stack_end) |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame] | 713 | |
| 714 | /* |
| 715 | * Space for page tables (not in .bss so not zeroed) |
| 716 | */ |
| 717 | .section ".pgtable","a",@nobits |
| 718 | .balign 4096 |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 719 | SYM_DATA_LOCAL(pgtable, .fill BOOT_PGT_SIZE, 1, 0) |
Kirill A. Shutemov | 589bb62 | 2018-05-16 11:01:29 +0300 | [diff] [blame] | 720 | |
| 721 | /* |
| 722 | * The page table is going to be used instead of page table in the trampoline |
| 723 | * memory. |
| 724 | */ |
Jiri Slaby | b8c3f9b | 2019-10-11 13:50:52 +0200 | [diff] [blame] | 725 | SYM_DATA_LOCAL(top_pgtable, .fill PAGE_SIZE, 1, 0) |