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