Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/boot/head.S |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992, 1993 Linus Torvalds |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * head.S contains the 32-bit startup code. |
| 9 | * |
| 10 | * NOTE!!! Startup happens at absolute address 0x00001000, which is also where |
| 11 | * the page directory will exist. The startup code will be overwritten by |
| 12 | * the page directory. [According to comments etc elsewhere on a compressed |
| 13 | * kernel it will end up at 0x1000 + 1Mb I hope so as I assume this. - AC] |
| 14 | * |
| 15 | * Page 0 is deliberately kept safe, since System Management Mode code in |
| 16 | * laptops may need to access the BIOS data stored there. This is also |
| 17 | * useful for future device drivers that either access the BIOS via VM86 |
| 18 | * mode. |
| 19 | */ |
| 20 | |
| 21 | /* |
Domen Puncer | f454944 | 2005-06-25 14:58:59 -0700 | [diff] [blame] | 22 | * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | */ |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 24 | .code32 |
| 25 | .text |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Tim Abbott | 1dc818c | 2009-09-16 16:44:27 -0400 | [diff] [blame] | 27 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/linkage.h> |
| 29 | #include <asm/segment.h> |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 30 | #include <asm/boot.h> |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 31 | #include <asm/msr.h> |
Cyrill Gorcunov | e83e31f4 | 2008-05-12 15:43:39 +0200 | [diff] [blame] | 32 | #include <asm/processor-flags.h> |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 33 | #include <asm/asm-offsets.h> |
Alexander Kuleshov | fb148d8 | 2015-02-19 13:34:58 +0600 | [diff] [blame] | 34 | #include <asm/bootparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
H.J. Lu | 6d92bc9 | 2016-03-16 20:04:35 -0700 | [diff] [blame] | 36 | /* |
| 37 | * Locally defined symbols should be marked hidden: |
| 38 | */ |
| 39 | .hidden _bss |
| 40 | .hidden _ebss |
| 41 | .hidden _got |
| 42 | .hidden _egot |
| 43 | |
Tim Abbott | 1dc818c | 2009-09-16 16:44:27 -0400 | [diff] [blame] | 44 | __HEAD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | .code32 |
Cyrill Gorcunov | 2d4eeecb | 2009-02-14 00:50:22 +0300 | [diff] [blame] | 46 | ENTRY(startup_32) |
Yinghai Lu | 8ee2f2d | 2013-01-24 12:20:07 -0800 | [diff] [blame] | 47 | /* |
| 48 | * 32bit entry is 0 and it is ABI so immutable! |
| 49 | * If we come here directly from a bootloader, |
| 50 | * kernel(text+data+bss+brk) ramdisk, zero_page, command line |
| 51 | * all need to be under the 4G limit. |
| 52 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | cld |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 54 | /* |
| 55 | * Test KEEP_SEGMENTS flag to see if the bootloader is asking |
| 56 | * us to not reload segments |
| 57 | */ |
Alexander Kuleshov | fb148d8 | 2015-02-19 13:34:58 +0600 | [diff] [blame] | 58 | testb $KEEP_SEGMENTS, BP_loadflags(%esi) |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 59 | jnz 1f |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | cli |
Lans Zhang | 2dead15 | 2013-03-01 09:20:39 +0800 | [diff] [blame] | 62 | movl $(__BOOT_DS), %eax |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 63 | movl %eax, %ds |
| 64 | movl %eax, %es |
| 65 | movl %eax, %ss |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 66 | 1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 68 | /* |
| 69 | * Calculate the delta between where we were compiled to run |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 70 | * at and where we were actually loaded at. This can only be done |
| 71 | * with a short local call on x86. Nothing else will tell us what |
| 72 | * 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] | 73 | * data at 0x1e4 (defined as a scratch field) are used as the stack |
| 74 | * for this calculation. Only 4 bytes are needed. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 75 | */ |
H. Peter Anvin | bd2a369 | 2009-05-05 23:24:50 -0700 | [diff] [blame] | 76 | leal (BP_scratch+4)(%esi), %esp |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 77 | call 1f |
| 78 | 1: popl %ebp |
| 79 | subl $1b, %ebp |
| 80 | |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 81 | /* setup a stack and make sure cpu supports long mode. */ |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 82 | movl $boot_stack_end, %eax |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 83 | addl %ebp, %eax |
| 84 | movl %eax, %esp |
| 85 | |
| 86 | call verify_cpu |
| 87 | testl %eax, %eax |
| 88 | jnz no_longmode |
| 89 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 90 | /* |
| 91 | * Compute the delta between where we were compiled to run at |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 92 | * and where the code will actually run at. |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 93 | * |
| 94 | * %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] | 95 | * contains the address where we should move the kernel image temporarily |
| 96 | * for safe in-place decompression. |
| 97 | */ |
| 98 | |
| 99 | #ifdef CONFIG_RELOCATABLE |
| 100 | movl %ebp, %ebx |
H. Peter Anvin | 37ba7ab | 2009-05-11 15:56:08 -0700 | [diff] [blame] | 101 | movl BP_kernel_alignment(%esi), %eax |
| 102 | decl %eax |
| 103 | addl %eax, %ebx |
| 104 | notl %eax |
| 105 | andl %eax, %ebx |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 106 | cmpl $LOAD_PHYSICAL_ADDR, %ebx |
| 107 | jge 1f |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 108 | #endif |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 109 | movl $LOAD_PHYSICAL_ADDR, %ebx |
| 110 | 1: |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 111 | |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 112 | /* Target address to relocate to for decompression */ |
Yinghai Lu | 974f221 | 2016-04-28 17:09:04 -0700 | [diff] [blame] | 113 | movl BP_init_size(%esi), %eax |
| 114 | subl $_end, %eax |
| 115 | addl %eax, %ebx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | /* |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 118 | * Prepare for entering 64 bit mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 120 | |
| 121 | /* Load new GDT with the 64bit segments using 32bit descriptor */ |
Wei Yang | 064025f | 2016-11-01 15:49:24 +0000 | [diff] [blame] | 122 | addl %ebp, gdt+2(%ebp) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 123 | lgdt gdt(%ebp) |
| 124 | |
| 125 | /* Enable PAE mode */ |
Matt Fleming | 108d3f4 | 2014-02-24 13:37:29 +0000 | [diff] [blame] | 126 | movl %cr4, %eax |
| 127 | orl $X86_CR4_PAE, %eax |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 128 | movl %eax, %cr4 |
| 129 | |
| 130 | /* |
| 131 | * Build early 4G boot pagetable |
| 132 | */ |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 133 | /* Initialize Page tables to 0 */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 134 | leal pgtable(%ebx), %edi |
| 135 | xorl %eax, %eax |
Kees Cook | 3a94707 | 2016-05-06 15:01:35 -0700 | [diff] [blame] | 136 | movl $(BOOT_INIT_PGT_SIZE/4), %ecx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 137 | rep stosl |
| 138 | |
| 139 | /* Build Level 4 */ |
| 140 | leal pgtable + 0(%ebx), %edi |
| 141 | leal 0x1007 (%edi), %eax |
| 142 | movl %eax, 0(%edi) |
| 143 | |
| 144 | /* Build Level 3 */ |
| 145 | leal pgtable + 0x1000(%ebx), %edi |
| 146 | leal 0x1007(%edi), %eax |
| 147 | movl $4, %ecx |
| 148 | 1: movl %eax, 0x00(%edi) |
| 149 | addl $0x00001000, %eax |
| 150 | addl $8, %edi |
| 151 | decl %ecx |
| 152 | jnz 1b |
| 153 | |
| 154 | /* Build Level 2 */ |
| 155 | leal pgtable + 0x2000(%ebx), %edi |
| 156 | movl $0x00000183, %eax |
| 157 | movl $2048, %ecx |
| 158 | 1: movl %eax, 0(%edi) |
| 159 | addl $0x00200000, %eax |
| 160 | addl $8, %edi |
| 161 | decl %ecx |
| 162 | jnz 1b |
| 163 | |
| 164 | /* Enable the boot page tables */ |
| 165 | leal pgtable(%ebx), %eax |
| 166 | movl %eax, %cr3 |
| 167 | |
| 168 | /* Enable Long mode in EFER (Extended Feature Enable Register) */ |
| 169 | movl $MSR_EFER, %ecx |
| 170 | rdmsr |
| 171 | btsl $_EFER_LME, %eax |
| 172 | wrmsr |
| 173 | |
Yinghai Lu | d3c433b | 2013-01-24 12:20:01 -0800 | [diff] [blame] | 174 | /* After gdt is loaded */ |
| 175 | xorl %eax, %eax |
| 176 | lldt %ax |
Denys Vlasenko | 40e4f2d1 | 2015-04-01 16:50:58 +0200 | [diff] [blame] | 177 | movl $__BOOT_TSS, %eax |
Yinghai Lu | d3c433b | 2013-01-24 12:20:01 -0800 | [diff] [blame] | 178 | ltr %ax |
| 179 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 180 | /* |
| 181 | * Setup for the jump to 64bit mode |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 182 | * |
| 183 | * When the jump is performend we will be in long mode but |
| 184 | * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1 |
| 185 | * (and in turn EFER.LMA = 1). To jump into 64bit mode we use |
| 186 | * the new gdt/idt that has __KERNEL_CS with CS.L = 1. |
| 187 | * We place all of the values on our mini stack so lret can |
| 188 | * used to perform that far jump. |
| 189 | */ |
| 190 | pushl $__KERNEL_CS |
| 191 | leal startup_64(%ebp), %eax |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 192 | #ifdef CONFIG_EFI_MIXED |
| 193 | movl efi32_config(%ebp), %ebx |
| 194 | cmp $0, %ebx |
| 195 | jz 1f |
| 196 | leal handover_entry(%ebp), %eax |
| 197 | 1: |
| 198 | #endif |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 199 | pushl %eax |
| 200 | |
| 201 | /* Enter paged protected Mode, activating Long Mode */ |
Cyrill Gorcunov | e83e31f4 | 2008-05-12 15:43:39 +0200 | [diff] [blame] | 202 | 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] | 203 | movl %eax, %cr0 |
| 204 | |
| 205 | /* Jump from 32bit compatibility mode into 64bit mode. */ |
| 206 | lret |
Cyrill Gorcunov | 2d4eeecb | 2009-02-14 00:50:22 +0300 | [diff] [blame] | 207 | ENDPROC(startup_32) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 208 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 209 | #ifdef CONFIG_EFI_MIXED |
| 210 | .org 0x190 |
| 211 | ENTRY(efi32_stub_entry) |
| 212 | add $0x4, %esp /* Discard return address */ |
| 213 | popl %ecx |
| 214 | popl %edx |
| 215 | popl %esi |
| 216 | |
| 217 | leal (BP_scratch+4)(%esi), %esp |
| 218 | call 1f |
| 219 | 1: pop %ebp |
| 220 | subl $1b, %ebp |
| 221 | |
| 222 | movl %ecx, efi32_config(%ebp) |
| 223 | movl %edx, efi32_config+8(%ebp) |
| 224 | sgdtl efi32_boot_gdt(%ebp) |
| 225 | |
| 226 | leal efi32_config(%ebp), %eax |
| 227 | movl %eax, efi_config(%ebp) |
| 228 | |
| 229 | jmp startup_32 |
| 230 | ENDPROC(efi32_stub_entry) |
| 231 | #endif |
| 232 | |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 233 | .code64 |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 234 | .org 0x200 |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 235 | ENTRY(startup_64) |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 236 | /* |
Yinghai Lu | 8ee2f2d | 2013-01-24 12:20:07 -0800 | [diff] [blame] | 237 | * 64bit entry is 0x200 and it is ABI so immutable! |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 238 | * We come here either from startup_32 or directly from a |
Yinghai Lu | 8ee2f2d | 2013-01-24 12:20:07 -0800 | [diff] [blame] | 239 | * 64bit bootloader. |
| 240 | * If we come here from a bootloader, kernel(text+data+bss+brk), |
| 241 | * ramdisk, zero_page, command line could be above 4G. |
| 242 | * We depend on an identity mapped page table being provided |
| 243 | * that maps our entire kernel(text+data+bss+brk), zero page |
| 244 | * and command line. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 245 | */ |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 246 | #ifdef CONFIG_EFI_STUB |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 247 | /* |
David Woodhouse | 99f857d | 2013-01-10 14:31:59 +0000 | [diff] [blame] | 248 | * The entry point for the PE/COFF executable is efi_pe_entry, so |
| 249 | * only legacy boot loaders will execute this jmp. |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 250 | */ |
| 251 | jmp preferred_addr |
| 252 | |
David Woodhouse | 99f857d | 2013-01-10 14:31:59 +0000 | [diff] [blame] | 253 | ENTRY(efi_pe_entry) |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 254 | movq %rcx, efi64_config(%rip) /* Handle */ |
| 255 | movq %rdx, efi64_config+8(%rip) /* EFI System table pointer */ |
| 256 | |
| 257 | leaq efi64_config(%rip), %rax |
| 258 | movq %rax, efi_config(%rip) |
| 259 | |
| 260 | call 1f |
| 261 | 1: popq %rbp |
| 262 | subq $1b, %rbp |
| 263 | |
| 264 | /* |
Linus Torvalds | f367039 | 2014-09-22 23:05:49 -0700 | [diff] [blame] | 265 | * Relocate efi_config->call(). |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 266 | */ |
David Howells | a2cd2f3 | 2017-02-06 11:22:40 +0000 | [diff] [blame] | 267 | addq %rbp, efi64_config+40(%rip) |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 268 | |
| 269 | movq %rax, %rdi |
Matt Fleming | 9ca8f72 | 2012-07-19 10:23:48 +0100 | [diff] [blame] | 270 | call make_boot_params |
| 271 | cmpq $0,%rax |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 272 | je fail |
| 273 | mov %rax, %rsi |
Matt Fleming | 7e8213c | 2014-04-08 13:14:00 +0100 | [diff] [blame] | 274 | leaq startup_32(%rip), %rax |
| 275 | movl %eax, BP_code32_start(%rsi) |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 276 | jmp 2f /* Skip the relocation */ |
Matt Fleming | 9ca8f72 | 2012-07-19 10:23:48 +0100 | [diff] [blame] | 277 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 278 | handover_entry: |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 279 | call 1f |
| 280 | 1: popq %rbp |
| 281 | subq $1b, %rbp |
| 282 | |
| 283 | /* |
Linus Torvalds | f367039 | 2014-09-22 23:05:49 -0700 | [diff] [blame] | 284 | * Relocate efi_config->call(). |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 285 | */ |
| 286 | movq efi_config(%rip), %rax |
David Howells | a2cd2f3 | 2017-02-06 11:22:40 +0000 | [diff] [blame] | 287 | addq %rbp, 40(%rax) |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 288 | 2: |
| 289 | movq efi_config(%rip), %rdi |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 290 | call efi_main |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 291 | movq %rax,%rsi |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 292 | cmpq $0,%rax |
| 293 | jne 2f |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 294 | fail: |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 295 | /* EFI init failed, so hang. */ |
| 296 | hlt |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 297 | jmp fail |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 298 | 2: |
Matt Fleming | 7e8213c | 2014-04-08 13:14:00 +0100 | [diff] [blame] | 299 | movl BP_code32_start(%esi), %eax |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 300 | leaq preferred_addr(%rax), %rax |
| 301 | jmp *%rax |
| 302 | |
| 303 | preferred_addr: |
| 304 | #endif |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 305 | |
| 306 | /* Setup data segments. */ |
| 307 | xorl %eax, %eax |
| 308 | movl %eax, %ds |
| 309 | movl %eax, %es |
| 310 | movl %eax, %ss |
Zachary Amsden | 08da5a2 | 2007-08-10 22:31:05 +0200 | [diff] [blame] | 311 | movl %eax, %fs |
| 312 | movl %eax, %gs |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 313 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 314 | /* |
| 315 | * Compute the decompressed kernel start address. It is where |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 316 | * we were loaded at aligned to a 2M boundary. %rbp contains the |
| 317 | * decompressed kernel start address. |
| 318 | * |
| 319 | * If it is a relocatable kernel then decompress and run the kernel |
| 320 | * from load address aligned to 2MB addr, otherwise decompress and |
H. Peter Anvin | 40b387a | 2009-05-11 14:41:55 -0700 | [diff] [blame] | 321 | * run the kernel from LOAD_PHYSICAL_ADDR |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 322 | * |
| 323 | * We cannot rely on the calculation done in 32-bit mode, since we |
| 324 | * may have been invoked via the 64-bit entry point. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 325 | */ |
| 326 | |
| 327 | /* Start with the delta to where the kernel will run at. */ |
| 328 | #ifdef CONFIG_RELOCATABLE |
| 329 | leaq startup_32(%rip) /* - $startup_32 */, %rbp |
H. Peter Anvin | 37ba7ab | 2009-05-11 15:56:08 -0700 | [diff] [blame] | 330 | movl BP_kernel_alignment(%rsi), %eax |
| 331 | decl %eax |
| 332 | addq %rax, %rbp |
| 333 | notq %rax |
| 334 | andq %rax, %rbp |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 335 | cmpq $LOAD_PHYSICAL_ADDR, %rbp |
| 336 | jge 1f |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 337 | #endif |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 338 | movq $LOAD_PHYSICAL_ADDR, %rbp |
| 339 | 1: |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 340 | |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 341 | /* Target address to relocate to for decompression */ |
Yinghai Lu | 974f221 | 2016-04-28 17:09:04 -0700 | [diff] [blame] | 342 | movl BP_init_size(%rsi), %ebx |
| 343 | subl $_end, %ebx |
| 344 | addq %rbp, %rbx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 345 | |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 346 | /* Set up the stack */ |
| 347 | leaq boot_stack_end(%rbx), %rsp |
| 348 | |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame^] | 349 | #ifdef CONFIG_X86_5LEVEL |
| 350 | /* Check if 5-level paging has already enabled */ |
| 351 | movq %cr4, %rax |
| 352 | testl $X86_CR4_LA57, %eax |
| 353 | jnz lvl5 |
| 354 | |
| 355 | /* |
| 356 | * At this point we are in long mode with 4-level paging enabled, |
| 357 | * but we want to enable 5-level paging. |
| 358 | * |
| 359 | * The problem is that we cannot do it directly. Setting LA57 in |
| 360 | * long mode would trigger #GP. So we need to switch off long mode |
| 361 | * first. |
| 362 | * |
| 363 | * NOTE: This is not going to work if bootloader put us above 4G |
| 364 | * limit. |
| 365 | * |
| 366 | * The first step is go into compatibility mode. |
| 367 | */ |
| 368 | |
| 369 | /* Clear additional page table */ |
| 370 | leaq lvl5_pgtable(%rbx), %rdi |
| 371 | xorq %rax, %rax |
| 372 | movq $(PAGE_SIZE/8), %rcx |
| 373 | rep stosq |
| 374 | |
| 375 | /* |
| 376 | * Setup current CR3 as the first and only entry in a new top level |
| 377 | * page table. |
| 378 | */ |
| 379 | movq %cr3, %rdi |
| 380 | leaq 0x7 (%rdi), %rax |
| 381 | movq %rax, lvl5_pgtable(%rbx) |
| 382 | |
| 383 | /* Switch to compatibility mode (CS.L = 0 CS.D = 1) via far return */ |
| 384 | pushq $__KERNEL32_CS |
| 385 | leaq compatible_mode(%rip), %rax |
| 386 | pushq %rax |
| 387 | lretq |
| 388 | lvl5: |
| 389 | #endif |
| 390 | |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 391 | /* Zero EFLAGS */ |
| 392 | pushq $0 |
| 393 | popfq |
| 394 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 395 | /* |
| 396 | * Copy the compressed kernel to the end of our buffer |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 397 | * where decompression in place becomes safe. |
| 398 | */ |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 399 | pushq %rsi |
| 400 | leaq (_bss-8)(%rip), %rsi |
| 401 | leaq (_bss-8)(%rbx), %rdi |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame] | 402 | movq $_bss /* - $startup_32 */, %rcx |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 403 | shrq $3, %rcx |
| 404 | std |
| 405 | rep movsq |
| 406 | cld |
| 407 | popq %rsi |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 408 | |
| 409 | /* |
| 410 | * Jump to the relocated address. |
| 411 | */ |
| 412 | leaq relocated(%rbx), %rax |
| 413 | jmp *%rax |
| 414 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 415 | #ifdef CONFIG_EFI_STUB |
| 416 | .org 0x390 |
| 417 | ENTRY(efi64_stub_entry) |
| 418 | movq %rdi, efi64_config(%rip) /* Handle */ |
| 419 | movq %rsi, efi64_config+8(%rip) /* EFI System table pointer */ |
| 420 | |
| 421 | leaq efi64_config(%rip), %rax |
| 422 | movq %rax, efi_config(%rip) |
| 423 | |
| 424 | movq %rdx, %rsi |
| 425 | jmp handover_entry |
| 426 | ENDPROC(efi64_stub_entry) |
| 427 | #endif |
| 428 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 429 | .text |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 430 | relocated: |
| 431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | /* |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 433 | * Clear BSS (stack is currently empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | */ |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 435 | xorl %eax, %eax |
| 436 | leaq _bss(%rip), %rdi |
| 437 | leaq _ebss(%rip), %rcx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 438 | subq %rdi, %rcx |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 439 | shrq $3, %rcx |
| 440 | rep stosq |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 441 | |
Linus Torvalds | f367039 | 2014-09-22 23:05:49 -0700 | [diff] [blame] | 442 | /* |
| 443 | * Adjust our own GOT |
| 444 | */ |
| 445 | leaq _got(%rip), %rdx |
| 446 | leaq _egot(%rip), %rcx |
| 447 | 1: |
| 448 | cmpq %rcx, %rdx |
| 449 | jae 2f |
| 450 | addq %rbx, (%rdx) |
| 451 | addq $8, %rdx |
| 452 | jmp 1b |
| 453 | 2: |
| 454 | |
H. Peter Anvin | 22a57f5 | 2010-08-02 15:34:44 -0700 | [diff] [blame] | 455 | /* |
Kees Cook | c040288 | 2016-04-18 09:42:13 -0700 | [diff] [blame] | 456 | * Do the extraction, and jump to the new kernel.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | */ |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 458 | pushq %rsi /* Save the real mode argument */ |
| 459 | movq %rsi, %rdi /* real mode address */ |
| 460 | leaq boot_heap(%rip), %rsi /* malloc area for uncompression */ |
| 461 | leaq input_data(%rip), %rdx /* input_data */ |
| 462 | movl $z_input_len, %ecx /* input_len */ |
| 463 | movq %rbp, %r8 /* output target address */ |
Junjie Mao | e602336 | 2014-10-31 21:40:38 +0800 | [diff] [blame] | 464 | movq $z_output_len, %r9 /* decompressed length, end of relocs */ |
Kees Cook | c040288 | 2016-04-18 09:42:13 -0700 | [diff] [blame] | 465 | call extract_kernel /* returns kernel location in %rax */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 466 | popq %rsi |
| 467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | /* |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 469 | * Jump to the decompressed kernel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | */ |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 471 | jmp *%rax |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
Yinghai Lu | 187a8a7 | 2013-01-24 12:20:00 -0800 | [diff] [blame] | 473 | .code32 |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame^] | 474 | #ifdef CONFIG_X86_5LEVEL |
| 475 | compatible_mode: |
| 476 | /* Setup data and stack segments */ |
| 477 | movl $__KERNEL_DS, %eax |
| 478 | movl %eax, %ds |
| 479 | movl %eax, %ss |
| 480 | |
| 481 | /* Disable paging */ |
| 482 | movl %cr0, %eax |
| 483 | btrl $X86_CR0_PG_BIT, %eax |
| 484 | movl %eax, %cr0 |
| 485 | |
| 486 | /* Point CR3 to 5-level paging */ |
| 487 | leal lvl5_pgtable(%ebx), %eax |
| 488 | movl %eax, %cr3 |
| 489 | |
| 490 | /* Enable PAE and LA57 mode */ |
| 491 | movl %cr4, %eax |
| 492 | orl $(X86_CR4_PAE | X86_CR4_LA57), %eax |
| 493 | movl %eax, %cr4 |
| 494 | |
| 495 | /* Calculate address we are running at */ |
| 496 | call 1f |
| 497 | 1: popl %edi |
| 498 | subl $1b, %edi |
| 499 | |
| 500 | /* Prepare stack for far return to Long Mode */ |
| 501 | pushl $__KERNEL_CS |
| 502 | leal lvl5(%edi), %eax |
| 503 | push %eax |
| 504 | |
| 505 | /* Enable paging back */ |
| 506 | movl $(X86_CR0_PG | X86_CR0_PE), %eax |
| 507 | movl %eax, %cr0 |
| 508 | |
| 509 | lret |
| 510 | #endif |
| 511 | |
Yinghai Lu | 187a8a7 | 2013-01-24 12:20:00 -0800 | [diff] [blame] | 512 | no_longmode: |
| 513 | /* This isn't an x86-64 CPU so hang */ |
| 514 | 1: |
| 515 | hlt |
| 516 | jmp 1b |
| 517 | |
| 518 | #include "../../kernel/verify_cpu.S" |
| 519 | |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 520 | .data |
| 521 | gdt: |
| 522 | .word gdt_end - gdt |
| 523 | .long gdt |
| 524 | .word 0 |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame^] | 525 | .quad 0x00cf9a000000ffff /* __KERNEL32_CS */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 526 | .quad 0x00af9a000000ffff /* __KERNEL_CS */ |
| 527 | .quad 0x00cf92000000ffff /* __KERNEL_DS */ |
Zachary Amsden | 08da5a2 | 2007-08-10 22:31:05 +0200 | [diff] [blame] | 528 | .quad 0x0080890000000000 /* TS descriptor */ |
| 529 | .quad 0x0000000000000000 /* TS continued */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 530 | gdt_end: |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 531 | |
Matt Fleming | 3db4caf | 2014-03-05 10:15:55 +0000 | [diff] [blame] | 532 | #ifdef CONFIG_EFI_STUB |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 533 | efi_config: |
| 534 | .quad 0 |
| 535 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 536 | #ifdef CONFIG_EFI_MIXED |
| 537 | .global efi32_config |
| 538 | efi32_config: |
David Howells | a2cd2f3 | 2017-02-06 11:22:40 +0000 | [diff] [blame] | 539 | .fill 5,8,0 |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 540 | .quad efi64_thunk |
| 541 | .byte 0 |
| 542 | #endif |
| 543 | |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 544 | .global efi64_config |
| 545 | efi64_config: |
David Howells | a2cd2f3 | 2017-02-06 11:22:40 +0000 | [diff] [blame] | 546 | .fill 5,8,0 |
Matt Fleming | 62fa6e6 | 2014-03-27 15:10:39 -0700 | [diff] [blame] | 547 | .quad efi_call |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 548 | .byte 1 |
Matt Fleming | 3db4caf | 2014-03-05 10:15:55 +0000 | [diff] [blame] | 549 | #endif /* CONFIG_EFI_STUB */ |
| 550 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 551 | /* |
| 552 | * Stack and heap for uncompression |
| 553 | */ |
| 554 | .bss |
| 555 | .balign 4 |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 556 | boot_heap: |
| 557 | .fill BOOT_HEAP_SIZE, 1, 0 |
| 558 | boot_stack: |
| 559 | .fill BOOT_STACK_SIZE, 1, 0 |
| 560 | boot_stack_end: |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame] | 561 | |
| 562 | /* |
| 563 | * Space for page tables (not in .bss so not zeroed) |
| 564 | */ |
| 565 | .section ".pgtable","a",@nobits |
| 566 | .balign 4096 |
| 567 | pgtable: |
Kees Cook | 3a94707 | 2016-05-06 15:01:35 -0700 | [diff] [blame] | 568 | .fill BOOT_PGT_SIZE, 1, 0 |
Kirill A. Shutemov | 34bbb00 | 2017-06-06 14:31:25 +0300 | [diff] [blame^] | 569 | #ifdef CONFIG_X86_5LEVEL |
| 570 | lvl5_pgtable: |
| 571 | .fill PAGE_SIZE, 1, 0 |
| 572 | #endif |