4 * Copyright (C) 1991, 1992, 1993 Linus Torvalds
8 * head.S contains the 32-bit startup code.
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]
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
22 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
27 #include <linux/init.h>
28 #include <linux/linkage.h>
29 #include <asm/segment.h>
32 #include <asm/processor-flags.h>
33 #include <asm/asm-offsets.h>
34 #include <asm/bootparam.h>
37 * Locally defined symbols should be marked hidden:
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.
55 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
56 * us to not reload segments
58 testb $KEEP_SEGMENTS, BP_loadflags(%esi)
62 movl $(__BOOT_DS), %eax
69 * Calculate the delta between where we were compiled to run
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
73 * data at 0x1e4 (defined as a scratch field) are used as the stack
74 * for this calculation. Only 4 bytes are needed.
76 leal (BP_scratch+4)(%esi), %esp
81 /* setup a stack and make sure cpu supports long mode. */
82 movl $boot_stack_end, %eax
91 * Compute the delta between where we were compiled to run at
92 * and where the code will actually run at.
94 * %ebp contains the address we are loaded at by the boot loader and %ebx
95 * contains the address where we should move the kernel image temporarily
96 * for safe in-place decompression.
99 #ifdef CONFIG_RELOCATABLE
101 movl BP_kernel_alignment(%esi), %eax
106 cmpl $LOAD_PHYSICAL_ADDR, %ebx
109 movl $LOAD_PHYSICAL_ADDR, %ebx
112 /* Target address to relocate to for decompression */
113 movl BP_init_size(%esi), %eax
118 * Prepare for entering 64 bit mode
121 /* Load new GDT with the 64bit segments using 32bit descriptor */
123 movl %eax, gdt+2(%ebp)
126 /* Enable PAE mode */
128 orl $X86_CR4_PAE, %eax
132 * Build early 4G boot pagetable
134 /* Initialize Page tables to 0 */
135 leal pgtable(%ebx), %edi
137 movl $(BOOT_INIT_PGT_SIZE/4), %ecx
141 leal pgtable + 0(%ebx), %edi
142 leal 0x1007 (%edi), %eax
146 leal pgtable + 0x1000(%ebx), %edi
147 leal 0x1007(%edi), %eax
149 1: movl %eax, 0x00(%edi)
150 addl $0x00001000, %eax
156 leal pgtable + 0x2000(%ebx), %edi
157 movl $0x00000183, %eax
159 1: movl %eax, 0(%edi)
160 addl $0x00200000, %eax
165 /* Enable the boot page tables */
166 leal pgtable(%ebx), %eax
169 /* Enable Long mode in EFER (Extended Feature Enable Register) */
172 btsl $_EFER_LME, %eax
175 /* After gdt is loaded */
178 movl $__BOOT_TSS, %eax
182 * Setup for the jump to 64bit mode
184 * When the jump is performend we will be in long mode but
185 * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1
186 * (and in turn EFER.LMA = 1). To jump into 64bit mode we use
187 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
188 * We place all of the values on our mini stack so lret can
189 * used to perform that far jump.
192 leal startup_64(%ebp), %eax
193 #ifdef CONFIG_EFI_MIXED
194 movl efi32_config(%ebp), %ebx
197 leal handover_entry(%ebp), %eax
202 /* Enter paged protected Mode, activating Long Mode */
203 movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
206 /* Jump from 32bit compatibility mode into 64bit mode. */
210 #ifdef CONFIG_EFI_MIXED
212 ENTRY(efi32_stub_entry)
213 add $0x4, %esp /* Discard return address */
218 leal (BP_scratch+4)(%esi), %esp
223 movl %ecx, efi32_config(%ebp)
224 movl %edx, efi32_config+8(%ebp)
225 sgdtl efi32_boot_gdt(%ebp)
227 leal efi32_config(%ebp), %eax
228 movl %eax, efi_config(%ebp)
231 ENDPROC(efi32_stub_entry)
238 * 64bit entry is 0x200 and it is ABI so immutable!
239 * We come here either from startup_32 or directly from a
241 * If we come here from a bootloader, kernel(text+data+bss+brk),
242 * ramdisk, zero_page, command line could be above 4G.
243 * We depend on an identity mapped page table being provided
244 * that maps our entire kernel(text+data+bss+brk), zero page
247 #ifdef CONFIG_EFI_STUB
249 * The entry point for the PE/COFF executable is efi_pe_entry, so
250 * only legacy boot loaders will execute this jmp.
255 movq %rcx, efi64_config(%rip) /* Handle */
256 movq %rdx, efi64_config+8(%rip) /* EFI System table pointer */
258 leaq efi64_config(%rip), %rax
259 movq %rax, efi_config(%rip)
266 * Relocate efi_config->call().
268 addq %rbp, efi64_config+88(%rip)
271 call make_boot_params
275 leaq startup_32(%rip), %rax
276 movl %eax, BP_code32_start(%rsi)
277 jmp 2f /* Skip the relocation */
285 * Relocate efi_config->call().
287 movq efi_config(%rip), %rax
290 movq efi_config(%rip), %rdi
296 /* EFI init failed, so hang. */
300 movl BP_code32_start(%esi), %eax
301 leaq preferred_addr(%rax), %rax
307 /* Setup data segments. */
316 * Compute the decompressed kernel start address. It is where
317 * we were loaded at aligned to a 2M boundary. %rbp contains the
318 * decompressed kernel start address.
320 * If it is a relocatable kernel then decompress and run the kernel
321 * from load address aligned to 2MB addr, otherwise decompress and
322 * run the kernel from LOAD_PHYSICAL_ADDR
324 * We cannot rely on the calculation done in 32-bit mode, since we
325 * may have been invoked via the 64-bit entry point.
328 /* Start with the delta to where the kernel will run at. */
329 #ifdef CONFIG_RELOCATABLE
330 leaq startup_32(%rip) /* - $startup_32 */, %rbp
331 movl BP_kernel_alignment(%rsi), %eax
336 cmpq $LOAD_PHYSICAL_ADDR, %rbp
339 movq $LOAD_PHYSICAL_ADDR, %rbp
342 /* Target address to relocate to for decompression */
343 movl BP_init_size(%rsi), %ebx
347 /* Set up the stack */
348 leaq boot_stack_end(%rbx), %rsp
355 * Copy the compressed kernel to the end of our buffer
356 * where decompression in place becomes safe.
359 leaq (_bss-8)(%rip), %rsi
360 leaq (_bss-8)(%rbx), %rdi
361 movq $_bss /* - $startup_32 */, %rcx
369 * Jump to the relocated address.
371 leaq relocated(%rbx), %rax
374 #ifdef CONFIG_EFI_STUB
376 ENTRY(efi64_stub_entry)
377 movq %rdi, efi64_config(%rip) /* Handle */
378 movq %rsi, efi64_config+8(%rip) /* EFI System table pointer */
380 leaq efi64_config(%rip), %rax
381 movq %rax, efi_config(%rip)
385 ENDPROC(efi64_stub_entry)
392 * Clear BSS (stack is currently empty)
395 leaq _bss(%rip), %rdi
396 leaq _ebss(%rip), %rcx
404 leaq _got(%rip), %rdx
405 leaq _egot(%rip), %rcx
415 * Do the extraction, and jump to the new kernel..
417 pushq %rsi /* Save the real mode argument */
418 movq %rsi, %rdi /* real mode address */
419 leaq boot_heap(%rip), %rsi /* malloc area for uncompression */
420 leaq input_data(%rip), %rdx /* input_data */
421 movl $z_input_len, %ecx /* input_len */
422 movq %rbp, %r8 /* output target address */
423 movq $z_output_len, %r9 /* decompressed length, end of relocs */
424 call extract_kernel /* returns kernel location in %rax */
428 * Jump to the decompressed kernel.
434 /* This isn't an x86-64 CPU so hang */
439 #include "../../kernel/verify_cpu.S"
446 .quad 0x0000000000000000 /* NULL descriptor */
447 .quad 0x00af9a000000ffff /* __KERNEL_CS */
448 .quad 0x00cf92000000ffff /* __KERNEL_DS */
449 .quad 0x0080890000000000 /* TS descriptor */
450 .quad 0x0000000000000000 /* TS continued */
453 #ifdef CONFIG_EFI_STUB
457 #ifdef CONFIG_EFI_MIXED
470 #endif /* CONFIG_EFI_STUB */
473 * Stack and heap for uncompression
478 .fill BOOT_HEAP_SIZE, 1, 0
480 .fill BOOT_STACK_SIZE, 1, 0
484 * Space for page tables (not in .bss so not zeroed)
486 .section ".pgtable","a",@nobits
489 .fill BOOT_PGT_SIZE, 1, 0