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 */ |
| 113 | addl $z_extract_offset, %ebx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 115 | /* |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 116 | * Prepare for entering 64 bit mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 118 | |
| 119 | /* Load new GDT with the 64bit segments using 32bit descriptor */ |
| 120 | leal gdt(%ebp), %eax |
| 121 | movl %eax, gdt+2(%ebp) |
| 122 | lgdt gdt(%ebp) |
| 123 | |
| 124 | /* Enable PAE mode */ |
Matt Fleming | 108d3f4 | 2014-02-24 13:37:29 +0000 | [diff] [blame] | 125 | movl %cr4, %eax |
| 126 | orl $X86_CR4_PAE, %eax |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 127 | movl %eax, %cr4 |
| 128 | |
| 129 | /* |
| 130 | * Build early 4G boot pagetable |
| 131 | */ |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 132 | /* Initialize Page tables to 0 */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 133 | leal pgtable(%ebx), %edi |
| 134 | xorl %eax, %eax |
| 135 | movl $((4096*6)/4), %ecx |
| 136 | rep stosl |
| 137 | |
| 138 | /* Build Level 4 */ |
| 139 | leal pgtable + 0(%ebx), %edi |
| 140 | leal 0x1007 (%edi), %eax |
| 141 | movl %eax, 0(%edi) |
| 142 | |
| 143 | /* Build Level 3 */ |
| 144 | leal pgtable + 0x1000(%ebx), %edi |
| 145 | leal 0x1007(%edi), %eax |
| 146 | movl $4, %ecx |
| 147 | 1: movl %eax, 0x00(%edi) |
| 148 | addl $0x00001000, %eax |
| 149 | addl $8, %edi |
| 150 | decl %ecx |
| 151 | jnz 1b |
| 152 | |
| 153 | /* Build Level 2 */ |
| 154 | leal pgtable + 0x2000(%ebx), %edi |
| 155 | movl $0x00000183, %eax |
| 156 | movl $2048, %ecx |
| 157 | 1: movl %eax, 0(%edi) |
| 158 | addl $0x00200000, %eax |
| 159 | addl $8, %edi |
| 160 | decl %ecx |
| 161 | jnz 1b |
| 162 | |
| 163 | /* Enable the boot page tables */ |
| 164 | leal pgtable(%ebx), %eax |
| 165 | movl %eax, %cr3 |
| 166 | |
| 167 | /* Enable Long mode in EFER (Extended Feature Enable Register) */ |
| 168 | movl $MSR_EFER, %ecx |
| 169 | rdmsr |
| 170 | btsl $_EFER_LME, %eax |
| 171 | wrmsr |
| 172 | |
Yinghai Lu | d3c433b | 2013-01-24 12:20:01 -0800 | [diff] [blame] | 173 | /* After gdt is loaded */ |
| 174 | xorl %eax, %eax |
| 175 | lldt %ax |
Denys Vlasenko | 40e4f2d1 | 2015-04-01 16:50:58 +0200 | [diff] [blame] | 176 | movl $__BOOT_TSS, %eax |
Yinghai Lu | d3c433b | 2013-01-24 12:20:01 -0800 | [diff] [blame] | 177 | ltr %ax |
| 178 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 179 | /* |
| 180 | * Setup for the jump to 64bit mode |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 181 | * |
| 182 | * When the jump is performend we will be in long mode but |
| 183 | * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1 |
| 184 | * (and in turn EFER.LMA = 1). To jump into 64bit mode we use |
| 185 | * the new gdt/idt that has __KERNEL_CS with CS.L = 1. |
| 186 | * We place all of the values on our mini stack so lret can |
| 187 | * used to perform that far jump. |
| 188 | */ |
| 189 | pushl $__KERNEL_CS |
| 190 | leal startup_64(%ebp), %eax |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 191 | #ifdef CONFIG_EFI_MIXED |
| 192 | movl efi32_config(%ebp), %ebx |
| 193 | cmp $0, %ebx |
| 194 | jz 1f |
| 195 | leal handover_entry(%ebp), %eax |
| 196 | 1: |
| 197 | #endif |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 198 | pushl %eax |
| 199 | |
| 200 | /* Enter paged protected Mode, activating Long Mode */ |
Cyrill Gorcunov | e83e31f4 | 2008-05-12 15:43:39 +0200 | [diff] [blame] | 201 | 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] | 202 | movl %eax, %cr0 |
| 203 | |
| 204 | /* Jump from 32bit compatibility mode into 64bit mode. */ |
| 205 | lret |
Cyrill Gorcunov | 2d4eeecb | 2009-02-14 00:50:22 +0300 | [diff] [blame] | 206 | ENDPROC(startup_32) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 207 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 208 | #ifdef CONFIG_EFI_MIXED |
| 209 | .org 0x190 |
| 210 | ENTRY(efi32_stub_entry) |
| 211 | add $0x4, %esp /* Discard return address */ |
| 212 | popl %ecx |
| 213 | popl %edx |
| 214 | popl %esi |
| 215 | |
| 216 | leal (BP_scratch+4)(%esi), %esp |
| 217 | call 1f |
| 218 | 1: pop %ebp |
| 219 | subl $1b, %ebp |
| 220 | |
| 221 | movl %ecx, efi32_config(%ebp) |
| 222 | movl %edx, efi32_config+8(%ebp) |
| 223 | sgdtl efi32_boot_gdt(%ebp) |
| 224 | |
| 225 | leal efi32_config(%ebp), %eax |
| 226 | movl %eax, efi_config(%ebp) |
| 227 | |
| 228 | jmp startup_32 |
| 229 | ENDPROC(efi32_stub_entry) |
| 230 | #endif |
| 231 | |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 232 | .code64 |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 233 | .org 0x200 |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 234 | ENTRY(startup_64) |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 235 | /* |
Yinghai Lu | 8ee2f2d | 2013-01-24 12:20:07 -0800 | [diff] [blame] | 236 | * 64bit entry is 0x200 and it is ABI so immutable! |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 237 | * We come here either from startup_32 or directly from a |
Yinghai Lu | 8ee2f2d | 2013-01-24 12:20:07 -0800 | [diff] [blame] | 238 | * 64bit bootloader. |
| 239 | * If we come here from a bootloader, kernel(text+data+bss+brk), |
| 240 | * ramdisk, zero_page, command line could be above 4G. |
| 241 | * We depend on an identity mapped page table being provided |
| 242 | * that maps our entire kernel(text+data+bss+brk), zero page |
| 243 | * and command line. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 244 | */ |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 245 | #ifdef CONFIG_EFI_STUB |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 246 | /* |
David Woodhouse | 99f857d | 2013-01-10 14:31:59 +0000 | [diff] [blame] | 247 | * The entry point for the PE/COFF executable is efi_pe_entry, so |
| 248 | * only legacy boot loaders will execute this jmp. |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 249 | */ |
| 250 | jmp preferred_addr |
| 251 | |
David Woodhouse | 99f857d | 2013-01-10 14:31:59 +0000 | [diff] [blame] | 252 | ENTRY(efi_pe_entry) |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 253 | movq %rcx, efi64_config(%rip) /* Handle */ |
| 254 | movq %rdx, efi64_config+8(%rip) /* EFI System table pointer */ |
| 255 | |
| 256 | leaq efi64_config(%rip), %rax |
| 257 | movq %rax, efi_config(%rip) |
| 258 | |
| 259 | call 1f |
| 260 | 1: popq %rbp |
| 261 | subq $1b, %rbp |
| 262 | |
| 263 | /* |
Linus Torvalds | f367039 | 2014-09-22 23:05:49 -0700 | [diff] [blame] | 264 | * Relocate efi_config->call(). |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 265 | */ |
| 266 | addq %rbp, efi64_config+88(%rip) |
| 267 | |
| 268 | movq %rax, %rdi |
Matt Fleming | 9ca8f72 | 2012-07-19 10:23:48 +0100 | [diff] [blame] | 269 | call make_boot_params |
| 270 | cmpq $0,%rax |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 271 | je fail |
| 272 | mov %rax, %rsi |
Matt Fleming | 7e8213c | 2014-04-08 13:14:00 +0100 | [diff] [blame] | 273 | leaq startup_32(%rip), %rax |
| 274 | movl %eax, BP_code32_start(%rsi) |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 275 | jmp 2f /* Skip the relocation */ |
Matt Fleming | 9ca8f72 | 2012-07-19 10:23:48 +0100 | [diff] [blame] | 276 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 277 | handover_entry: |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 278 | call 1f |
| 279 | 1: popq %rbp |
| 280 | subq $1b, %rbp |
| 281 | |
| 282 | /* |
Linus Torvalds | f367039 | 2014-09-22 23:05:49 -0700 | [diff] [blame] | 283 | * Relocate efi_config->call(). |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 284 | */ |
| 285 | movq efi_config(%rip), %rax |
| 286 | addq %rbp, 88(%rax) |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 287 | 2: |
| 288 | movq efi_config(%rip), %rdi |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 289 | call efi_main |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 290 | movq %rax,%rsi |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 291 | cmpq $0,%rax |
| 292 | jne 2f |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 293 | fail: |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 294 | /* EFI init failed, so hang. */ |
| 295 | hlt |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 296 | jmp fail |
Matt Fleming | b199430 | 2012-04-15 16:06:04 +0100 | [diff] [blame] | 297 | 2: |
Matt Fleming | 7e8213c | 2014-04-08 13:14:00 +0100 | [diff] [blame] | 298 | movl BP_code32_start(%esi), %eax |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 299 | leaq preferred_addr(%rax), %rax |
| 300 | jmp *%rax |
| 301 | |
| 302 | preferred_addr: |
| 303 | #endif |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 304 | |
| 305 | /* Setup data segments. */ |
| 306 | xorl %eax, %eax |
| 307 | movl %eax, %ds |
| 308 | movl %eax, %es |
| 309 | movl %eax, %ss |
Zachary Amsden | 08da5a2 | 2007-08-10 22:31:05 +0200 | [diff] [blame] | 310 | movl %eax, %fs |
| 311 | movl %eax, %gs |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 312 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 313 | /* |
| 314 | * Compute the decompressed kernel start address. It is where |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 315 | * we were loaded at aligned to a 2M boundary. %rbp contains the |
| 316 | * decompressed kernel start address. |
| 317 | * |
| 318 | * If it is a relocatable kernel then decompress and run the kernel |
| 319 | * from load address aligned to 2MB addr, otherwise decompress and |
H. Peter Anvin | 40b387a | 2009-05-11 14:41:55 -0700 | [diff] [blame] | 320 | * run the kernel from LOAD_PHYSICAL_ADDR |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 321 | * |
| 322 | * We cannot rely on the calculation done in 32-bit mode, since we |
| 323 | * may have been invoked via the 64-bit entry point. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 324 | */ |
| 325 | |
| 326 | /* Start with the delta to where the kernel will run at. */ |
| 327 | #ifdef CONFIG_RELOCATABLE |
| 328 | leaq startup_32(%rip) /* - $startup_32 */, %rbp |
H. Peter Anvin | 37ba7ab | 2009-05-11 15:56:08 -0700 | [diff] [blame] | 329 | movl BP_kernel_alignment(%rsi), %eax |
| 330 | decl %eax |
| 331 | addq %rax, %rbp |
| 332 | notq %rax |
| 333 | andq %rax, %rbp |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 334 | cmpq $LOAD_PHYSICAL_ADDR, %rbp |
| 335 | jge 1f |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 336 | #endif |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 337 | movq $LOAD_PHYSICAL_ADDR, %rbp |
| 338 | 1: |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 339 | |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 340 | /* Target address to relocate to for decompression */ |
| 341 | leaq z_extract_offset(%rbp), %rbx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 342 | |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 343 | /* Set up the stack */ |
| 344 | leaq boot_stack_end(%rbx), %rsp |
| 345 | |
| 346 | /* Zero EFLAGS */ |
| 347 | pushq $0 |
| 348 | popfq |
| 349 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 350 | /* |
| 351 | * Copy the compressed kernel to the end of our buffer |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 352 | * where decompression in place becomes safe. |
| 353 | */ |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 354 | pushq %rsi |
| 355 | leaq (_bss-8)(%rip), %rsi |
| 356 | leaq (_bss-8)(%rbx), %rdi |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame] | 357 | movq $_bss /* - $startup_32 */, %rcx |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 358 | shrq $3, %rcx |
| 359 | std |
| 360 | rep movsq |
| 361 | cld |
| 362 | popq %rsi |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 363 | |
| 364 | /* |
| 365 | * Jump to the relocated address. |
| 366 | */ |
| 367 | leaq relocated(%rbx), %rax |
| 368 | jmp *%rax |
| 369 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 370 | #ifdef CONFIG_EFI_STUB |
| 371 | .org 0x390 |
| 372 | ENTRY(efi64_stub_entry) |
| 373 | movq %rdi, efi64_config(%rip) /* Handle */ |
| 374 | movq %rsi, efi64_config+8(%rip) /* EFI System table pointer */ |
| 375 | |
| 376 | leaq efi64_config(%rip), %rax |
| 377 | movq %rax, efi_config(%rip) |
| 378 | |
| 379 | movq %rdx, %rsi |
| 380 | jmp handover_entry |
| 381 | ENDPROC(efi64_stub_entry) |
| 382 | #endif |
| 383 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 384 | .text |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 385 | relocated: |
| 386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | /* |
H. Peter Anvin | 0a13773 | 2009-05-08 16:27:41 -0700 | [diff] [blame] | 388 | * Clear BSS (stack is currently empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | */ |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 390 | xorl %eax, %eax |
| 391 | leaq _bss(%rip), %rdi |
| 392 | leaq _ebss(%rip), %rcx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 393 | subq %rdi, %rcx |
H. Peter Anvin | 36d3793 | 2009-05-08 16:45:15 -0700 | [diff] [blame] | 394 | shrq $3, %rcx |
| 395 | rep stosq |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 396 | |
Linus Torvalds | f367039 | 2014-09-22 23:05:49 -0700 | [diff] [blame] | 397 | /* |
| 398 | * Adjust our own GOT |
| 399 | */ |
| 400 | leaq _got(%rip), %rdx |
| 401 | leaq _egot(%rip), %rcx |
| 402 | 1: |
| 403 | cmpq %rcx, %rdx |
| 404 | jae 2f |
| 405 | addq %rbx, (%rdx) |
| 406 | addq $8, %rdx |
| 407 | jmp 1b |
| 408 | 2: |
| 409 | |
H. Peter Anvin | 22a57f5 | 2010-08-02 15:34:44 -0700 | [diff] [blame] | 410 | /* |
Kees Cook | c040288 | 2016-04-18 09:42:13 -0700 | [diff] [blame] | 411 | * Do the extraction, and jump to the new kernel.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | */ |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 413 | pushq %rsi /* Save the real mode argument */ |
Junjie Mao | e602336 | 2014-10-31 21:40:38 +0800 | [diff] [blame] | 414 | movq $z_run_size, %r9 /* size of kernel with .bss and .brk */ |
| 415 | pushq %r9 |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 416 | movq %rsi, %rdi /* real mode address */ |
| 417 | leaq boot_heap(%rip), %rsi /* malloc area for uncompression */ |
| 418 | leaq input_data(%rip), %rdx /* input_data */ |
| 419 | movl $z_input_len, %ecx /* input_len */ |
| 420 | movq %rbp, %r8 /* output target address */ |
Junjie Mao | e602336 | 2014-10-31 21:40:38 +0800 | [diff] [blame] | 421 | movq $z_output_len, %r9 /* decompressed length, end of relocs */ |
Kees Cook | c040288 | 2016-04-18 09:42:13 -0700 | [diff] [blame] | 422 | call extract_kernel /* returns kernel location in %rax */ |
Junjie Mao | e602336 | 2014-10-31 21:40:38 +0800 | [diff] [blame] | 423 | popq %r9 |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 424 | popq %rsi |
| 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | /* |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 427 | * Jump to the decompressed kernel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | */ |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 429 | jmp *%rax |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
Yinghai Lu | 187a8a7 | 2013-01-24 12:20:00 -0800 | [diff] [blame] | 431 | .code32 |
| 432 | no_longmode: |
| 433 | /* This isn't an x86-64 CPU so hang */ |
| 434 | 1: |
| 435 | hlt |
| 436 | jmp 1b |
| 437 | |
| 438 | #include "../../kernel/verify_cpu.S" |
| 439 | |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 440 | .data |
| 441 | gdt: |
| 442 | .word gdt_end - gdt |
| 443 | .long gdt |
| 444 | .word 0 |
| 445 | .quad 0x0000000000000000 /* NULL descriptor */ |
| 446 | .quad 0x00af9a000000ffff /* __KERNEL_CS */ |
| 447 | .quad 0x00cf92000000ffff /* __KERNEL_DS */ |
Zachary Amsden | 08da5a2 | 2007-08-10 22:31:05 +0200 | [diff] [blame] | 448 | .quad 0x0080890000000000 /* TS descriptor */ |
| 449 | .quad 0x0000000000000000 /* TS continued */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 450 | gdt_end: |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 451 | |
Matt Fleming | 3db4caf | 2014-03-05 10:15:55 +0000 | [diff] [blame] | 452 | #ifdef CONFIG_EFI_STUB |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 453 | efi_config: |
| 454 | .quad 0 |
| 455 | |
Matt Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 456 | #ifdef CONFIG_EFI_MIXED |
| 457 | .global efi32_config |
| 458 | efi32_config: |
| 459 | .fill 11,8,0 |
| 460 | .quad efi64_thunk |
| 461 | .byte 0 |
| 462 | #endif |
| 463 | |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 464 | .global efi64_config |
| 465 | efi64_config: |
| 466 | .fill 11,8,0 |
Matt Fleming | 62fa6e6 | 2014-03-27 15:10:39 -0700 | [diff] [blame] | 467 | .quad efi_call |
Matt Fleming | 54b52d8 | 2014-01-10 15:27:14 +0000 | [diff] [blame] | 468 | .byte 1 |
Matt Fleming | 3db4caf | 2014-03-05 10:15:55 +0000 | [diff] [blame] | 469 | #endif /* CONFIG_EFI_STUB */ |
| 470 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame] | 471 | /* |
| 472 | * Stack and heap for uncompression |
| 473 | */ |
| 474 | .bss |
| 475 | .balign 4 |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 476 | boot_heap: |
| 477 | .fill BOOT_HEAP_SIZE, 1, 0 |
| 478 | boot_stack: |
| 479 | .fill BOOT_STACK_SIZE, 1, 0 |
| 480 | boot_stack_end: |
H. Peter Anvin | 5b11f1c | 2009-05-08 16:20:34 -0700 | [diff] [blame] | 481 | |
| 482 | /* |
| 483 | * Space for page tables (not in .bss so not zeroed) |
| 484 | */ |
| 485 | .section ".pgtable","a",@nobits |
| 486 | .balign 4096 |
| 487 | pgtable: |
| 488 | .fill 6*4096, 1, 0 |