blob: 5c80b94f6c4ade07510d71ae64c66bd1066035d0 [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>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080030#include <asm/pgtable_types.h>
31#include <asm/page_types.h>
Alexander van Heukelum7c539762008-04-08 12:54:30 +020032#include <asm/boot.h>
Vivek Goyal1ab60e02007-05-02 19:27:07 +020033#include <asm/msr.h>
Cyrill Gorcunove83e31f42008-05-12 15:43:39 +020034#include <asm/processor-flags.h>
Eric W. Biedermanbd531472007-10-26 11:29:04 -060035#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Tim Abbott1dc818c2009-09-16 16:44:27 -040037 __HEAD
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 .code32
Cyrill Gorcunov2d4eeecb2009-02-14 00:50:22 +030039ENTRY(startup_32)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 cld
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070041 /*
42 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
43 * us to not reload segments
44 */
Eric W. Biedermanbd531472007-10-26 11:29:04 -060045 testb $(1<<6), BP_loadflags(%esi)
46 jnz 1f
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 cli
Vivek Goyal1ab60e02007-05-02 19:27:07 +020049 movl $(__KERNEL_DS), %eax
50 movl %eax, %ds
51 movl %eax, %es
52 movl %eax, %ss
Eric W. Biedermanbd531472007-10-26 11:29:04 -0600531:
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070055/*
56 * Calculate the delta between where we were compiled to run
Vivek Goyal1ab60e02007-05-02 19:27:07 +020057 * 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 Anvin85414b62007-07-11 12:18:33 -070060 * data at 0x1e4 (defined as a scratch field) are used as the stack
61 * for this calculation. Only 4 bytes are needed.
Vivek Goyal1ab60e02007-05-02 19:27:07 +020062 */
H. Peter Anvinbd2a3692009-05-05 23:24:50 -070063 leal (BP_scratch+4)(%esi), %esp
Vivek Goyal1ab60e02007-05-02 19:27:07 +020064 call 1f
651: popl %ebp
66 subl $1b, %ebp
67
Vivek Goyala4831e02007-05-02 19:27:08 +020068/* setup a stack and make sure cpu supports long mode. */
Alexander van Heukelum7c539762008-04-08 12:54:30 +020069 movl $boot_stack_end, %eax
Vivek Goyala4831e02007-05-02 19:27:08 +020070 addl %ebp, %eax
71 movl %eax, %esp
72
73 call verify_cpu
74 testl %eax, %eax
75 jnz no_longmode
76
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070077/*
78 * Compute the delta between where we were compiled to run at
Vivek Goyal1ab60e02007-05-02 19:27:07 +020079 * and where the code will actually run at.
H. Peter Anvinb40d68d2009-05-08 15:59:13 -070080 *
81 * %ebp contains the address we are loaded at by the boot loader and %ebx
Vivek Goyal1ab60e02007-05-02 19:27:07 +020082 * 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 Anvin37ba7ab2009-05-11 15:56:08 -070088 movl BP_kernel_alignment(%esi), %eax
89 decl %eax
90 addl %eax, %ebx
91 notl %eax
92 andl %eax, %ebx
Vivek Goyal1ab60e02007-05-02 19:27:07 +020093#else
H. Peter Anvin40b387a2009-05-11 14:41:55 -070094 movl $LOAD_PHYSICAL_ADDR, %ebx
Vivek Goyal1ab60e02007-05-02 19:27:07 +020095#endif
96
H. Peter Anvin02a884c2009-05-08 17:42:16 -070097 /* Target address to relocate to for decompression */
98 addl $z_extract_offset, %ebx
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200101 * Prepare for entering 64 bit mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200103
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 Potashev48684022009-10-24 03:37:23 +0400110 movl $(X86_CR4_PAE), %eax
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200111 movl %eax, %cr4
112
113 /*
114 * Build early 4G boot pagetable
115 */
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700116 /* Initialize Page tables to 0 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200117 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
1311: 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
1411: 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
Yinghai Lud3c433b2013-01-24 12:20:01 -0800157 /* After gdt is loaded */
158 xorl %eax, %eax
159 lldt %ax
160 movl $0x20, %eax
161 ltr %ax
162
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700163 /*
164 * Setup for the jump to 64bit mode
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200165 *
166 * When the jump is performend we will be in long mode but
167 * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1
168 * (and in turn EFER.LMA = 1). To jump into 64bit mode we use
169 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
170 * We place all of the values on our mini stack so lret can
171 * used to perform that far jump.
172 */
173 pushl $__KERNEL_CS
174 leal startup_64(%ebp), %eax
175 pushl %eax
176
177 /* Enter paged protected Mode, activating Long Mode */
Cyrill Gorcunove83e31f42008-05-12 15:43:39 +0200178 movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200179 movl %eax, %cr0
180
181 /* Jump from 32bit compatibility mode into 64bit mode. */
182 lret
Cyrill Gorcunov2d4eeecb2009-02-14 00:50:22 +0300183ENDPROC(startup_32)
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200184
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700185 /*
186 * Be careful here startup_64 needs to be at a predictable
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200187 * address so I can export it in an ELF header. Bootloaders
188 * should look at the ELF header to find this address, as
189 * it may change in the future.
190 */
191 .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 /*
195 * We come here either from startup_32 or directly from a
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200196 * 64bit bootloader. If we come here from a bootloader we depend on
197 * an identity mapped page table being provied that maps our
198 * entire text+data+bss and hopefully all of memory.
199 */
Matt Fleming291f3632011-12-12 21:27:52 +0000200#ifdef CONFIG_EFI_STUB
Matt Flemingb1994302012-04-15 16:06:04 +0100201 /*
202 * The entry point for the PE/COFF executable is 0x210, so only
203 * legacy boot loaders will execute this jmp.
204 */
205 jmp preferred_addr
206
207 .org 0x210
Matt Fleming291f3632011-12-12 21:27:52 +0000208 mov %rcx, %rdi
209 mov %rdx, %rsi
Matt Fleming9ca8f722012-07-19 10:23:48 +0100210 pushq %rdi
211 pushq %rsi
212 call make_boot_params
213 cmpq $0,%rax
214 je 1f
215 mov %rax, %rdx
216 popq %rsi
217 popq %rdi
218
219 .org 0x230,0x90
Matt Fleming291f3632011-12-12 21:27:52 +0000220 call efi_main
Matt Fleming291f3632011-12-12 21:27:52 +0000221 movq %rax,%rsi
Matt Flemingb1994302012-04-15 16:06:04 +0100222 cmpq $0,%rax
223 jne 2f
Matt Fleming291f3632011-12-12 21:27:52 +00002241:
Matt Flemingb1994302012-04-15 16:06:04 +0100225 /* EFI init failed, so hang. */
226 hlt
227 jmp 1b
2282:
229 call 3f
2303:
Matt Fleming291f3632011-12-12 21:27:52 +0000231 popq %rax
Matt Flemingb1994302012-04-15 16:06:04 +0100232 subq $3b, %rax
Matt Fleming291f3632011-12-12 21:27:52 +0000233 subq BP_pref_address(%rsi), %rax
234 add BP_code32_start(%esi), %eax
235 leaq preferred_addr(%rax), %rax
236 jmp *%rax
237
238preferred_addr:
239#endif
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200240
241 /* Setup data segments. */
242 xorl %eax, %eax
243 movl %eax, %ds
244 movl %eax, %es
245 movl %eax, %ss
Zachary Amsden08da5a22007-08-10 22:31:05 +0200246 movl %eax, %fs
247 movl %eax, %gs
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200248
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700249 /*
250 * Compute the decompressed kernel start address. It is where
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200251 * we were loaded at aligned to a 2M boundary. %rbp contains the
252 * decompressed kernel start address.
253 *
254 * If it is a relocatable kernel then decompress and run the kernel
255 * from load address aligned to 2MB addr, otherwise decompress and
H. Peter Anvin40b387a2009-05-11 14:41:55 -0700256 * run the kernel from LOAD_PHYSICAL_ADDR
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700257 *
258 * We cannot rely on the calculation done in 32-bit mode, since we
259 * may have been invoked via the 64-bit entry point.
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200260 */
261
262 /* Start with the delta to where the kernel will run at. */
263#ifdef CONFIG_RELOCATABLE
264 leaq startup_32(%rip) /* - $startup_32 */, %rbp
H. Peter Anvin37ba7ab2009-05-11 15:56:08 -0700265 movl BP_kernel_alignment(%rsi), %eax
266 decl %eax
267 addq %rax, %rbp
268 notq %rax
269 andq %rax, %rbp
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200270#else
H. Peter Anvin40b387a2009-05-11 14:41:55 -0700271 movq $LOAD_PHYSICAL_ADDR, %rbp
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200272#endif
273
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700274 /* Target address to relocate to for decompression */
275 leaq z_extract_offset(%rbp), %rbx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200276
H. Peter Anvin0a137732009-05-08 16:27:41 -0700277 /* Set up the stack */
278 leaq boot_stack_end(%rbx), %rsp
279
280 /* Zero EFLAGS */
281 pushq $0
282 popfq
283
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700284/*
285 * Copy the compressed kernel to the end of our buffer
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200286 * where decompression in place becomes safe.
287 */
H. Peter Anvin36d37932009-05-08 16:45:15 -0700288 pushq %rsi
289 leaq (_bss-8)(%rip), %rsi
290 leaq (_bss-8)(%rbx), %rdi
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700291 movq $_bss /* - $startup_32 */, %rcx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700292 shrq $3, %rcx
293 std
294 rep movsq
295 cld
296 popq %rsi
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200297
298/*
299 * Jump to the relocated address.
300 */
301 leaq relocated(%rbx), %rax
302 jmp *%rax
303
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700304 .text
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200305relocated:
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
H. Peter Anvin0a137732009-05-08 16:27:41 -0700308 * Clear BSS (stack is currently empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 */
H. Peter Anvin36d37932009-05-08 16:45:15 -0700310 xorl %eax, %eax
311 leaq _bss(%rip), %rdi
312 leaq _ebss(%rip), %rcx
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200313 subq %rdi, %rcx
H. Peter Anvin36d37932009-05-08 16:45:15 -0700314 shrq $3, %rcx
315 rep stosq
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*
H. Peter Anvin22a57f52010-08-02 15:34:44 -0700318 * Adjust our own GOT
319 */
320 leaq _got(%rip), %rdx
321 leaq _egot(%rip), %rcx
3221:
323 cmpq %rcx, %rdx
324 jae 2f
325 addq %rbx, (%rdx)
326 addq $8, %rdx
327 jmp 1b
3282:
329
330/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * Do the decompression, and jump to the new kernel..
332 */
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700333 pushq %rsi /* Save the real mode argument */
334 movq %rsi, %rdi /* real mode address */
335 leaq boot_heap(%rip), %rsi /* malloc area for uncompression */
336 leaq input_data(%rip), %rdx /* input_data */
337 movl $z_input_len, %ecx /* input_len */
338 movq %rbp, %r8 /* output target address */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200339 call decompress_kernel
340 popq %rsi
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/*
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200343 * Jump to the decompressed kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200345 jmp *%rbp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Yinghai Lu187a8a72013-01-24 12:20:00 -0800347 .code32
348no_longmode:
349 /* This isn't an x86-64 CPU so hang */
3501:
351 hlt
352 jmp 1b
353
354#include "../../kernel/verify_cpu.S"
355
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200356 .data
357gdt:
358 .word gdt_end - gdt
359 .long gdt
360 .word 0
361 .quad 0x0000000000000000 /* NULL descriptor */
362 .quad 0x00af9a000000ffff /* __KERNEL_CS */
363 .quad 0x00cf92000000ffff /* __KERNEL_DS */
Zachary Amsden08da5a22007-08-10 22:31:05 +0200364 .quad 0x0080890000000000 /* TS descriptor */
365 .quad 0x0000000000000000 /* TS continued */
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200366gdt_end:
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200367
H. Peter Anvinb40d68d2009-05-08 15:59:13 -0700368/*
369 * Stack and heap for uncompression
370 */
371 .bss
372 .balign 4
Alexander van Heukelum7c539762008-04-08 12:54:30 +0200373boot_heap:
374 .fill BOOT_HEAP_SIZE, 1, 0
375boot_stack:
376 .fill BOOT_STACK_SIZE, 1, 0
377boot_stack_end:
H. Peter Anvin5b11f1c2009-05-08 16:20:34 -0700378
379/*
380 * Space for page tables (not in .bss so not zeroed)
381 */
382 .section ".pgtable","a",@nobits
383 .balign 4096
384pgtable:
385 .fill 6*4096, 1, 0