blob: 1bc206fa4bd0df91310b59cf247aba56e1c78243 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/boot/head.S
3 *
4 * Copyright (C) 1991, 1992, 1993 Linus Torvalds
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
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 Puncerf4549442005-06-25 14:58:59 -070022 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070024 .code32
25 .text
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Tim Abbott1dc818c2009-09-16 16:44:27 -040027#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/linkage.h>
29#include <asm/segment.h>
Alexander van Heukelum7c539762008-04-08 12:54:30 +020030#include <asm/boot.h>
Vivek Goyal1ab60e02007-05-02 19:27:07 +020031#include <asm/msr.h>
Cyrill Gorcunove83e31f42008-05-12 15:43:39 +020032#include <asm/processor-flags.h>
Eric W. Biedermanbd531472007-10-26 11:29:04 -060033#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Tim Abbott1dc818c2009-09-16 16:44:27 -040035 __HEAD
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 .code32
Cyrill Gorcunov2d4eeecb2009-02-14 00:50:22 +030037ENTRY(startup_32)
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -080038 /*
39 * 32bit entry is 0 and it is ABI so immutable!
40 * If we come here directly from a bootloader,
41 * kernel(text+data+bss+brk) ramdisk, zero_page, command line
42 * all need to be under the 4G limit.
43 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 cld
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070045 /*
46 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
47 * us to not reload segments
48 */
Eric W. Biedermanbd531472007-10-26 11:29:04 -060049 testb $(1<<6), BP_loadflags(%esi)
50 jnz 1f
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 cli
Lans Zhang2dead152013-03-01 09:20:39 +080053 movl $(__BOOT_DS), %eax
Vivek Goyal1ab60e02007-05-02 19:27:07 +020054 movl %eax, %ds
55 movl %eax, %es
56 movl %eax, %ss
Eric W. Biedermanbd531472007-10-26 11:29:04 -0600571:
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070059/*
60 * Calculate the delta between where we were compiled to run
Vivek Goyal1ab60e02007-05-02 19:27:07 +020061 * at and where we were actually loaded at. This can only be done
62 * with a short local call on x86. Nothing else will tell us what
63 * address we are running at. The reserved chunk of the real-mode
H. Peter Anvin85414b62007-07-11 12:18:33 -070064 * data at 0x1e4 (defined as a scratch field) are used as the stack
65 * for this calculation. Only 4 bytes are needed.
Vivek Goyal1ab60e02007-05-02 19:27:07 +020066 */
H. Peter Anvinbd2a3692009-05-05 23:24:50 -070067 leal (BP_scratch+4)(%esi), %esp
Vivek Goyal1ab60e02007-05-02 19:27:07 +020068 call 1f
691: popl %ebp
70 subl $1b, %ebp
71
Vivek Goyala4831e02007-05-02 19:27:08 +020072/* setup a stack and make sure cpu supports long mode. */
Alexander van Heukelum7c539762008-04-08 12:54:30 +020073 movl $boot_stack_end, %eax
Vivek Goyala4831e02007-05-02 19:27:08 +020074 addl %ebp, %eax
75 movl %eax, %esp
76
77 call verify_cpu
78 testl %eax, %eax
79 jnz no_longmode
80
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070081/*
82 * Compute the delta between where we were compiled to run at
Vivek Goyal1ab60e02007-05-02 19:27:07 +020083 * and where the code will actually run at.
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070084 *
85 * %ebp contains the address we are loaded at by the boot loader and %ebx
Vivek Goyal1ab60e02007-05-02 19:27:07 +020086 * contains the address where we should move the kernel image temporarily
87 * for safe in-place decompression.
88 */
89
90#ifdef CONFIG_RELOCATABLE
91 movl %ebp, %ebx
H. Peter Anvin37ba7ab2009-05-11 15:56:08 -070092 movl BP_kernel_alignment(%esi), %eax
93 decl %eax
94 addl %eax, %ebx
95 notl %eax
96 andl %eax, %ebx
Kees Cook8ab38202013-10-10 17:18:14 -070097 cmpl $LOAD_PHYSICAL_ADDR, %ebx
98 jge 1f
Vivek Goyal1ab60e02007-05-02 19:27:07 +020099#endif
Kees Cook8ab38202013-10-10 17:18:14 -0700100 movl $LOAD_PHYSICAL_ADDR, %ebx
1011:
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200102
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700103 /* Target address to relocate to for decompression */
104 addl $z_extract_offset, %ebx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/*
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200107 * Prepare for entering 64 bit mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200109
110 /* Load new GDT with the 64bit segments using 32bit descriptor */
111 leal gdt(%ebp), %eax
112 movl %eax, gdt+2(%ebp)
113 lgdt gdt(%ebp)
114
115 /* Enable PAE mode */
Alexander Potashev48684022009-10-24 03:37:23 +0400116 movl $(X86_CR4_PAE), %eax
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200117 movl %eax, %cr4
118
119 /*
120 * Build early 4G boot pagetable
121 */
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700122 /* Initialize Page tables to 0 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200123 leal pgtable(%ebx), %edi
124 xorl %eax, %eax
125 movl $((4096*6)/4), %ecx
126 rep stosl
127
128 /* Build Level 4 */
129 leal pgtable + 0(%ebx), %edi
130 leal 0x1007 (%edi), %eax
131 movl %eax, 0(%edi)
132
133 /* Build Level 3 */
134 leal pgtable + 0x1000(%ebx), %edi
135 leal 0x1007(%edi), %eax
136 movl $4, %ecx
1371: movl %eax, 0x00(%edi)
138 addl $0x00001000, %eax
139 addl $8, %edi
140 decl %ecx
141 jnz 1b
142
143 /* Build Level 2 */
144 leal pgtable + 0x2000(%ebx), %edi
145 movl $0x00000183, %eax
146 movl $2048, %ecx
1471: movl %eax, 0(%edi)
148 addl $0x00200000, %eax
149 addl $8, %edi
150 decl %ecx
151 jnz 1b
152
153 /* Enable the boot page tables */
154 leal pgtable(%ebx), %eax
155 movl %eax, %cr3
156
157 /* Enable Long mode in EFER (Extended Feature Enable Register) */
158 movl $MSR_EFER, %ecx
159 rdmsr
160 btsl $_EFER_LME, %eax
161 wrmsr
162
Yinghai Lud3c433b2013-01-24 12:20:01 -0800163 /* After gdt is loaded */
164 xorl %eax, %eax
165 lldt %ax
166 movl $0x20, %eax
167 ltr %ax
168
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700169 /*
170 * Setup for the jump to 64bit mode
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200171 *
172 * When the jump is performend we will be in long mode but
173 * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1
174 * (and in turn EFER.LMA = 1). To jump into 64bit mode we use
175 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
176 * We place all of the values on our mini stack so lret can
177 * used to perform that far jump.
178 */
179 pushl $__KERNEL_CS
180 leal startup_64(%ebp), %eax
181 pushl %eax
182
183 /* Enter paged protected Mode, activating Long Mode */
Cyrill Gorcunove83e31f42008-05-12 15:43:39 +0200184 movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200185 movl %eax, %cr0
186
187 /* Jump from 32bit compatibility mode into 64bit mode. */
188 lret
Cyrill Gorcunov2d4eeecb2009-02-14 00:50:22 +0300189ENDPROC(startup_32)
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200190
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200191 .code64
Vivek Goyala4831e02007-05-02 19:27:08 +0200192 .org 0x200
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200193ENTRY(startup_64)
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700194 /*
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -0800195 * 64bit entry is 0x200 and it is ABI so immutable!
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700196 * We come here either from startup_32 or directly from a
Yinghai Lu8ee2f2d2013-01-24 12:20:07 -0800197 * 64bit bootloader.
198 * If we come here from a bootloader, kernel(text+data+bss+brk),
199 * ramdisk, zero_page, command line could be above 4G.
200 * We depend on an identity mapped page table being provided
201 * that maps our entire kernel(text+data+bss+brk), zero page
202 * and command line.
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200203 */
Matt Fleming291f3632011-12-12 21:27:52 +0000204#ifdef CONFIG_EFI_STUB
Matt Flemingb1994302012-04-15 16:06:04 +0100205 /*
David Woodhouse99f857d2013-01-10 14:31:59 +0000206 * The entry point for the PE/COFF executable is efi_pe_entry, so
207 * only legacy boot loaders will execute this jmp.
Matt Flemingb1994302012-04-15 16:06:04 +0100208 */
209 jmp preferred_addr
210
David Woodhouse99f857d2013-01-10 14:31:59 +0000211ENTRY(efi_pe_entry)
Matt Fleming54b52d82014-01-10 15:27:14 +0000212 movq %rcx, efi64_config(%rip) /* Handle */
213 movq %rdx, efi64_config+8(%rip) /* EFI System table pointer */
214
215 leaq efi64_config(%rip), %rax
216 movq %rax, efi_config(%rip)
217
218 call 1f
2191: popq %rbp
220 subq $1b, %rbp
221
222 /*
223 * Relocate efi_config->call().
224 */
225 addq %rbp, efi64_config+88(%rip)
226
227 movq %rax, %rdi
Matt Fleming9ca8f722012-07-19 10:23:48 +0100228 call make_boot_params
229 cmpq $0,%rax
Matt Fleming54b52d82014-01-10 15:27:14 +0000230 je fail
231 mov %rax, %rsi
232 jmp 2f /* Skip the relocation */
Matt Fleming9ca8f722012-07-19 10:23:48 +0100233
David Woodhouse99f857d2013-01-10 14:31:59 +0000234ENTRY(efi_stub_entry)
Matt Fleming54b52d82014-01-10 15:27:14 +0000235 movq %rdi, efi64_config(%rip) /* Handle */
236 movq %rsi, efi64_config+8(%rip) /* EFI System table pointer */
237
238 leaq efi64_config(%rip), %rax
239 movq %rax, efi_config(%rip)
240
241 call 1f
2421: popq %rbp
243 subq $1b, %rbp
244
245 /*
246 * Relocate efi_config->call().
247 */
248 movq efi_config(%rip), %rax
249 addq %rbp, 88(%rax)
250 movq %rdx, %rsi
2512:
252 movq efi_config(%rip), %rdi
Matt Fleming291f3632011-12-12 21:27:52 +0000253 call efi_main
Matt Fleming291f3632011-12-12 21:27:52 +0000254 movq %rax,%rsi
Matt Flemingb1994302012-04-15 16:06:04 +0100255 cmpq $0,%rax
256 jne 2f
Matt Fleming54b52d82014-01-10 15:27:14 +0000257fail:
Matt Flemingb1994302012-04-15 16:06:04 +0100258 /* EFI init failed, so hang. */
259 hlt
Matt Fleming54b52d82014-01-10 15:27:14 +0000260 jmp fail
Matt Flemingb1994302012-04-15 16:06:04 +01002612:
262 call 3f
2633:
Matt Fleming291f3632011-12-12 21:27:52 +0000264 popq %rax
Matt Flemingb1994302012-04-15 16:06:04 +0100265 subq $3b, %rax
Matt Fleming291f3632011-12-12 21:27:52 +0000266 subq BP_pref_address(%rsi), %rax
267 add BP_code32_start(%esi), %eax
268 leaq preferred_addr(%rax), %rax
269 jmp *%rax
270
271preferred_addr:
272#endif
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200273
274 /* Setup data segments. */
275 xorl %eax, %eax
276 movl %eax, %ds
277 movl %eax, %es
278 movl %eax, %ss
Zachary Amsden08da5a22007-08-10 22:31:05 +0200279 movl %eax, %fs
280 movl %eax, %gs
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200281
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700282 /*
283 * Compute the decompressed kernel start address. It is where
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200284 * we were loaded at aligned to a 2M boundary. %rbp contains the
285 * decompressed kernel start address.
286 *
287 * If it is a relocatable kernel then decompress and run the kernel
288 * from load address aligned to 2MB addr, otherwise decompress and
H. Peter Anvin40b387a2009-05-11 14:41:55 -0700289 * run the kernel from LOAD_PHYSICAL_ADDR
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700290 *
291 * We cannot rely on the calculation done in 32-bit mode, since we
292 * may have been invoked via the 64-bit entry point.
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200293 */
294
295 /* Start with the delta to where the kernel will run at. */
296#ifdef CONFIG_RELOCATABLE
297 leaq startup_32(%rip) /* - $startup_32 */, %rbp
H. Peter Anvin37ba7ab2009-05-11 15:56:08 -0700298 movl BP_kernel_alignment(%rsi), %eax
299 decl %eax
300 addq %rax, %rbp
301 notq %rax
302 andq %rax, %rbp
Kees Cook8ab38202013-10-10 17:18:14 -0700303 cmpq $LOAD_PHYSICAL_ADDR, %rbp
304 jge 1f
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200305#endif
Kees Cook8ab38202013-10-10 17:18:14 -0700306 movq $LOAD_PHYSICAL_ADDR, %rbp
3071:
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200308
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700309 /* Target address to relocate to for decompression */
310 leaq z_extract_offset(%rbp), %rbx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200311
H. Peter Anvin0a137732009-05-08 16:27:41 -0700312 /* Set up the stack */
313 leaq boot_stack_end(%rbx), %rsp
314
315 /* Zero EFLAGS */
316 pushq $0
317 popfq
318
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700319/*
320 * Copy the compressed kernel to the end of our buffer
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200321 * where decompression in place becomes safe.
322 */
H. Peter Anvin36d37932009-05-08 16:45:15 -0700323 pushq %rsi
324 leaq (_bss-8)(%rip), %rsi
325 leaq (_bss-8)(%rbx), %rdi
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700326 movq $_bss /* - $startup_32 */, %rcx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700327 shrq $3, %rcx
328 std
329 rep movsq
330 cld
331 popq %rsi
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200332
333/*
334 * Jump to the relocated address.
335 */
336 leaq relocated(%rbx), %rax
337 jmp *%rax
338
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700339 .text
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200340relocated:
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/*
H. Peter Anvin0a137732009-05-08 16:27:41 -0700343 * Clear BSS (stack is currently empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 */
H. Peter Anvin36d37932009-05-08 16:45:15 -0700345 xorl %eax, %eax
346 leaq _bss(%rip), %rdi
347 leaq _ebss(%rip), %rcx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200348 subq %rdi, %rcx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700349 shrq $3, %rcx
350 rep stosq
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/*
H. Peter Anvin22a57f52010-08-02 15:34:44 -0700353 * Adjust our own GOT
354 */
355 leaq _got(%rip), %rdx
356 leaq _egot(%rip), %rcx
3571:
358 cmpq %rcx, %rdx
359 jae 2f
360 addq %rbx, (%rdx)
361 addq $8, %rdx
362 jmp 1b
3632:
364
365/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * Do the decompression, and jump to the new kernel..
367 */
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700368 pushq %rsi /* Save the real mode argument */
369 movq %rsi, %rdi /* real mode address */
370 leaq boot_heap(%rip), %rsi /* malloc area for uncompression */
371 leaq input_data(%rip), %rdx /* input_data */
372 movl $z_input_len, %ecx /* input_len */
373 movq %rbp, %r8 /* output target address */
Kees Cooka0215062013-07-08 09:15:17 -0700374 movq $z_output_len, %r9 /* decompressed length */
Kees Cook8ab38202013-10-10 17:18:14 -0700375 call decompress_kernel /* returns kernel location in %rax */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200376 popq %rsi
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200379 * Jump to the decompressed kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
Kees Cook8ab38202013-10-10 17:18:14 -0700381 jmp *%rax
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Yinghai Lu187a8a72013-01-24 12:20:00 -0800383 .code32
384no_longmode:
385 /* This isn't an x86-64 CPU so hang */
3861:
387 hlt
388 jmp 1b
389
390#include "../../kernel/verify_cpu.S"
391
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200392 .data
393gdt:
394 .word gdt_end - gdt
395 .long gdt
396 .word 0
397 .quad 0x0000000000000000 /* NULL descriptor */
398 .quad 0x00af9a000000ffff /* __KERNEL_CS */
399 .quad 0x00cf92000000ffff /* __KERNEL_DS */
Zachary Amsden08da5a22007-08-10 22:31:05 +0200400 .quad 0x0080890000000000 /* TS descriptor */
401 .quad 0x0000000000000000 /* TS continued */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200402gdt_end:
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200403
Matt Fleming54b52d82014-01-10 15:27:14 +0000404efi_config:
405 .quad 0
406
407 .global efi64_config
408efi64_config:
409 .fill 11,8,0
410 .quad efi_call6
411 .byte 1
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700412/*
413 * Stack and heap for uncompression
414 */
415 .bss
416 .balign 4
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200417boot_heap:
418 .fill BOOT_HEAP_SIZE, 1, 0
419boot_stack:
420 .fill BOOT_STACK_SIZE, 1, 0
421boot_stack_end:
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700422
423/*
424 * Space for page tables (not in .bss so not zeroed)
425 */
426 .section ".pgtable","a",@nobits
427 .balign 4096
428pgtable:
429 .fill 6*4096, 1, 0