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 | |
| 27 | #include <linux/linkage.h> |
| 28 | #include <asm/segment.h> |
Jeremy Fitzhardinge | 0341c14 | 2009-02-13 11:14:01 -0800 | [diff] [blame] | 29 | #include <asm/pgtable_types.h> |
| 30 | #include <asm/page_types.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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 36 | .section ".text.head" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | .code32 |
Cyrill Gorcunov | 2d4eeecb | 2009-02-14 00:50:22 +0300 | [diff] [blame] | 38 | ENTRY(startup_32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | cld |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 40 | /* |
| 41 | * Test KEEP_SEGMENTS flag to see if the bootloader is asking |
| 42 | * us to not reload segments |
| 43 | */ |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 44 | testb $(1<<6), BP_loadflags(%esi) |
| 45 | jnz 1f |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | cli |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 48 | movl $(__KERNEL_DS), %eax |
| 49 | movl %eax, %ds |
| 50 | movl %eax, %es |
| 51 | movl %eax, %ss |
Eric W. Biederman | bd53147 | 2007-10-26 11:29:04 -0600 | [diff] [blame] | 52 | 1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 54 | /* |
| 55 | * Calculate the delta between where we were compiled to run |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 56 | * at and where we were actually loaded at. This can only be done |
| 57 | * with a short local call on x86. Nothing else will tell us what |
| 58 | * 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] | 59 | * data at 0x1e4 (defined as a scratch field) are used as the stack |
| 60 | * for this calculation. Only 4 bytes are needed. |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 61 | */ |
H. Peter Anvin | bd2a369 | 2009-05-05 23:24:50 -0700 | [diff] [blame] | 62 | leal (BP_scratch+4)(%esi), %esp |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 63 | call 1f |
| 64 | 1: popl %ebp |
| 65 | subl $1b, %ebp |
| 66 | |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 67 | /* setup a stack and make sure cpu supports long mode. */ |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 68 | movl $boot_stack_end, %eax |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 69 | addl %ebp, %eax |
| 70 | movl %eax, %esp |
| 71 | |
| 72 | call verify_cpu |
| 73 | testl %eax, %eax |
| 74 | jnz no_longmode |
| 75 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 76 | /* |
| 77 | * Compute the delta between where we were compiled to run at |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 78 | * and where the code will actually run at. |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 79 | * |
| 80 | * %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] | 81 | * contains the address where we should move the kernel image temporarily |
| 82 | * for safe in-place decompression. |
| 83 | */ |
| 84 | |
| 85 | #ifdef CONFIG_RELOCATABLE |
| 86 | movl %ebp, %ebx |
Andi Kleen | 31422c5 | 2008-02-04 16:48:08 +0100 | [diff] [blame] | 87 | addl $(PMD_PAGE_SIZE -1), %ebx |
| 88 | andl $PMD_PAGE_MASK, %ebx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 89 | #else |
| 90 | movl $CONFIG_PHYSICAL_START, %ebx |
| 91 | #endif |
| 92 | |
| 93 | /* Replace the compressed data size with the uncompressed size */ |
| 94 | subl input_len(%ebp), %ebx |
| 95 | movl output_len(%ebp), %eax |
| 96 | addl %eax, %ebx |
| 97 | /* Add 8 bytes for every 32K input block */ |
| 98 | shrl $12, %eax |
| 99 | addl %eax, %ebx |
| 100 | /* Add 32K + 18 bytes of extra slack and align on a 4K boundary */ |
| 101 | addl $(32768 + 18 + 4095), %ebx |
| 102 | andl $~4095, %ebx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | /* |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 105 | * Prepare for entering 64 bit mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 107 | |
| 108 | /* Load new GDT with the 64bit segments using 32bit descriptor */ |
| 109 | leal gdt(%ebp), %eax |
| 110 | movl %eax, gdt+2(%ebp) |
| 111 | lgdt gdt(%ebp) |
| 112 | |
| 113 | /* Enable PAE mode */ |
| 114 | xorl %eax, %eax |
Cyrill Gorcunov | e83e31f4 | 2008-05-12 15:43:39 +0200 | [diff] [blame] | 115 | orl $(X86_CR4_PAE), %eax |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 116 | movl %eax, %cr4 |
| 117 | |
| 118 | /* |
| 119 | * Build early 4G boot pagetable |
| 120 | */ |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 121 | /* Initialize Page tables to 0 */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 122 | leal pgtable(%ebx), %edi |
| 123 | xorl %eax, %eax |
| 124 | movl $((4096*6)/4), %ecx |
| 125 | rep stosl |
| 126 | |
| 127 | /* Build Level 4 */ |
| 128 | leal pgtable + 0(%ebx), %edi |
| 129 | leal 0x1007 (%edi), %eax |
| 130 | movl %eax, 0(%edi) |
| 131 | |
| 132 | /* Build Level 3 */ |
| 133 | leal pgtable + 0x1000(%ebx), %edi |
| 134 | leal 0x1007(%edi), %eax |
| 135 | movl $4, %ecx |
| 136 | 1: movl %eax, 0x00(%edi) |
| 137 | addl $0x00001000, %eax |
| 138 | addl $8, %edi |
| 139 | decl %ecx |
| 140 | jnz 1b |
| 141 | |
| 142 | /* Build Level 2 */ |
| 143 | leal pgtable + 0x2000(%ebx), %edi |
| 144 | movl $0x00000183, %eax |
| 145 | movl $2048, %ecx |
| 146 | 1: movl %eax, 0(%edi) |
| 147 | addl $0x00200000, %eax |
| 148 | addl $8, %edi |
| 149 | decl %ecx |
| 150 | jnz 1b |
| 151 | |
| 152 | /* Enable the boot page tables */ |
| 153 | leal pgtable(%ebx), %eax |
| 154 | movl %eax, %cr3 |
| 155 | |
| 156 | /* Enable Long mode in EFER (Extended Feature Enable Register) */ |
| 157 | movl $MSR_EFER, %ecx |
| 158 | rdmsr |
| 159 | btsl $_EFER_LME, %eax |
| 160 | wrmsr |
| 161 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 162 | /* |
| 163 | * Setup for the jump to 64bit mode |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 164 | * |
| 165 | * When the jump is performend we will be in long mode but |
| 166 | * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1 |
| 167 | * (and in turn EFER.LMA = 1). To jump into 64bit mode we use |
| 168 | * the new gdt/idt that has __KERNEL_CS with CS.L = 1. |
| 169 | * We place all of the values on our mini stack so lret can |
| 170 | * used to perform that far jump. |
| 171 | */ |
| 172 | pushl $__KERNEL_CS |
| 173 | leal startup_64(%ebp), %eax |
| 174 | pushl %eax |
| 175 | |
| 176 | /* Enter paged protected Mode, activating Long Mode */ |
Cyrill Gorcunov | e83e31f4 | 2008-05-12 15:43:39 +0200 | [diff] [blame] | 177 | 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] | 178 | movl %eax, %cr0 |
| 179 | |
| 180 | /* Jump from 32bit compatibility mode into 64bit mode. */ |
| 181 | lret |
Cyrill Gorcunov | 2d4eeecb | 2009-02-14 00:50:22 +0300 | [diff] [blame] | 182 | ENDPROC(startup_32) |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 183 | |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 184 | no_longmode: |
| 185 | /* This isn't an x86-64 CPU so hang */ |
| 186 | 1: |
| 187 | hlt |
| 188 | jmp 1b |
| 189 | |
Thomas Gleixner | 250c227 | 2007-10-11 11:17:24 +0200 | [diff] [blame] | 190 | #include "../../kernel/verify_cpu_64.S" |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 191 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 192 | /* |
| 193 | * Be careful here startup_64 needs to be at a predictable |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 194 | * address so I can export it in an ELF header. Bootloaders |
| 195 | * should look at the ELF header to find this address, as |
| 196 | * it may change in the future. |
| 197 | */ |
| 198 | .code64 |
Vivek Goyal | a4831e0 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 199 | .org 0x200 |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 200 | ENTRY(startup_64) |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 201 | /* |
| 202 | * We come here either from startup_32 or directly from a |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 203 | * 64bit bootloader. If we come here from a bootloader we depend on |
| 204 | * an identity mapped page table being provied that maps our |
| 205 | * entire text+data+bss and hopefully all of memory. |
| 206 | */ |
| 207 | |
| 208 | /* Setup data segments. */ |
| 209 | xorl %eax, %eax |
| 210 | movl %eax, %ds |
| 211 | movl %eax, %es |
| 212 | movl %eax, %ss |
Zachary Amsden | 08da5a2 | 2007-08-10 22:31:05 +0200 | [diff] [blame] | 213 | movl %eax, %fs |
| 214 | movl %eax, %gs |
| 215 | lldt %ax |
| 216 | movl $0x20, %eax |
| 217 | ltr %ax |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 218 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 219 | /* |
| 220 | * Compute the decompressed kernel start address. It is where |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 221 | * we were loaded at aligned to a 2M boundary. %rbp contains the |
| 222 | * decompressed kernel start address. |
| 223 | * |
| 224 | * If it is a relocatable kernel then decompress and run the kernel |
| 225 | * from load address aligned to 2MB addr, otherwise decompress and |
| 226 | * run the kernel from CONFIG_PHYSICAL_START |
| 227 | */ |
| 228 | |
| 229 | /* Start with the delta to where the kernel will run at. */ |
| 230 | #ifdef CONFIG_RELOCATABLE |
| 231 | leaq startup_32(%rip) /* - $startup_32 */, %rbp |
Andi Kleen | 31422c5 | 2008-02-04 16:48:08 +0100 | [diff] [blame] | 232 | addq $(PMD_PAGE_SIZE - 1), %rbp |
| 233 | andq $PMD_PAGE_MASK, %rbp |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 234 | movq %rbp, %rbx |
| 235 | #else |
| 236 | movq $CONFIG_PHYSICAL_START, %rbp |
| 237 | movq %rbp, %rbx |
| 238 | #endif |
| 239 | |
| 240 | /* Replace the compressed data size with the uncompressed size */ |
| 241 | movl input_len(%rip), %eax |
| 242 | subq %rax, %rbx |
| 243 | movl output_len(%rip), %eax |
| 244 | addq %rax, %rbx |
| 245 | /* Add 8 bytes for every 32K input block */ |
| 246 | shrq $12, %rax |
| 247 | addq %rax, %rbx |
| 248 | /* Add 32K + 18 bytes of extra slack and align on a 4K boundary */ |
| 249 | addq $(32768 + 18 + 4095), %rbx |
| 250 | andq $~4095, %rbx |
| 251 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 252 | /* |
| 253 | * Copy the compressed kernel to the end of our buffer |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 254 | * where decompression in place becomes safe. |
| 255 | */ |
Yinghai Lu | 4a9f54c | 2008-04-10 15:06:38 -0700 | [diff] [blame] | 256 | leaq _end_before_pgt(%rip), %r8 |
| 257 | leaq _end_before_pgt(%rbx), %r9 |
| 258 | movq $_end_before_pgt /* - $startup_32 */, %rcx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 259 | 1: subq $8, %r8 |
| 260 | subq $8, %r9 |
| 261 | movq 0(%r8), %rax |
| 262 | movq %rax, 0(%r9) |
| 263 | subq $8, %rcx |
| 264 | jnz 1b |
| 265 | |
| 266 | /* |
| 267 | * Jump to the relocated address. |
| 268 | */ |
| 269 | leaq relocated(%rbx), %rax |
| 270 | jmp *%rax |
| 271 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 272 | .text |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 273 | relocated: |
| 274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | /* |
| 276 | * Clear BSS |
| 277 | */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 278 | xorq %rax, %rax |
| 279 | leaq _edata(%rbx), %rdi |
Yinghai Lu | 4a9f54c | 2008-04-10 15:06:38 -0700 | [diff] [blame] | 280 | leaq _end_before_pgt(%rbx), %rcx |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 281 | subq %rdi, %rcx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | cld |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 283 | rep stosb |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 284 | |
| 285 | /* Setup the stack */ |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 286 | leaq boot_stack_end(%rip), %rsp |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 287 | |
| 288 | /* zero EFLAGS after setting rsp */ |
| 289 | pushq $0 |
| 290 | popfq |
| 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | /* |
| 293 | * Do the decompression, and jump to the new kernel.. |
| 294 | */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 295 | pushq %rsi # Save the real mode argument |
| 296 | movq %rsi, %rdi # real mode address |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 297 | leaq boot_heap(%rip), %rsi # malloc area for uncompression |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 298 | leaq input_data(%rip), %rdx # input_data |
| 299 | movl input_len(%rip), %eax |
| 300 | movq %rax, %rcx # input_len |
| 301 | movq %rbp, %r8 # output |
| 302 | call decompress_kernel |
| 303 | popq %rsi |
| 304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | /* |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 306 | * Jump to the decompressed kernel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 308 | jmp *%rbp |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 310 | .data |
| 311 | gdt: |
| 312 | .word gdt_end - gdt |
| 313 | .long gdt |
| 314 | .word 0 |
| 315 | .quad 0x0000000000000000 /* NULL descriptor */ |
| 316 | .quad 0x00af9a000000ffff /* __KERNEL_CS */ |
| 317 | .quad 0x00cf92000000ffff /* __KERNEL_DS */ |
Zachary Amsden | 08da5a2 | 2007-08-10 22:31:05 +0200 | [diff] [blame] | 318 | .quad 0x0080890000000000 /* TS descriptor */ |
| 319 | .quad 0x0000000000000000 /* TS continued */ |
Vivek Goyal | 1ab60e0 | 2007-05-02 19:27:07 +0200 | [diff] [blame] | 320 | gdt_end: |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 321 | |
H. Peter Anvin | b40d68d | 2009-05-08 15:59:13 -0700 | [diff] [blame^] | 322 | /* |
| 323 | * Stack and heap for uncompression |
| 324 | */ |
| 325 | .bss |
| 326 | .balign 4 |
Alexander van Heukelum | 7c53976 | 2008-04-08 12:54:30 +0200 | [diff] [blame] | 327 | boot_heap: |
| 328 | .fill BOOT_HEAP_SIZE, 1, 0 |
| 329 | boot_stack: |
| 330 | .fill BOOT_STACK_SIZE, 1, 0 |
| 331 | boot_stack_end: |