Merge tag 'pwm/for-4.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry...
[deliverable/linux.git] / arch / x86 / boot / compressed / head_64.S
CommitLineData
1da177e4
LT
1/*
2 * linux/boot/head.S
3 *
4 * Copyright (C) 1991, 1992, 1993 Linus Torvalds
1da177e4
LT
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/*
f4549448 22 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
1da177e4 23 */
b40d68d5
PA
24 .code32
25 .text
1da177e4 26
1dc818c1 27#include <linux/init.h>
1da177e4
LT
28#include <linux/linkage.h>
29#include <asm/segment.h>
7c539764 30#include <asm/boot.h>
1ab60e0f 31#include <asm/msr.h>
e83e31f4 32#include <asm/processor-flags.h>
bd53147d 33#include <asm/asm-offsets.h>
fb148d83 34#include <asm/bootparam.h>
1da177e4 35
6d92bc9d
L
36/*
37 * Locally defined symbols should be marked hidden:
38 */
39 .hidden _bss
40 .hidden _ebss
41 .hidden _got
42 .hidden _egot
43
1dc818c1 44 __HEAD
1da177e4 45 .code32
2d4eeecb 46ENTRY(startup_32)
8ee2f2df
YL
47 /*
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.
52 */
1da177e4 53 cld
b40d68d5
PA
54 /*
55 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
56 * us to not reload segments
57 */
fb148d83 58 testb $KEEP_SEGMENTS, BP_loadflags(%esi)
bd53147d
EB
59 jnz 1f
60
1da177e4 61 cli
2dead15f 62 movl $(__BOOT_DS), %eax
1ab60e0f
VG
63 movl %eax, %ds
64 movl %eax, %es
65 movl %eax, %ss
bd53147d 661:
1ab60e0f 67
b40d68d5
PA
68/*
69 * Calculate the delta between where we were compiled to run
1ab60e0f
VG
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
85414b69
PA
73 * data at 0x1e4 (defined as a scratch field) are used as the stack
74 * for this calculation. Only 4 bytes are needed.
1ab60e0f 75 */
bd2a3698 76 leal (BP_scratch+4)(%esi), %esp
1ab60e0f
VG
77 call 1f
781: popl %ebp
79 subl $1b, %ebp
80
a4831e08 81/* setup a stack and make sure cpu supports long mode. */
7c539764 82 movl $boot_stack_end, %eax
a4831e08
VG
83 addl %ebp, %eax
84 movl %eax, %esp
85
86 call verify_cpu
87 testl %eax, %eax
88 jnz no_longmode
89
b40d68d5
PA
90/*
91 * Compute the delta between where we were compiled to run at
1ab60e0f 92 * and where the code will actually run at.
b40d68d5
PA
93 *
94 * %ebp contains the address we are loaded at by the boot loader and %ebx
1ab60e0f
VG
95 * contains the address where we should move the kernel image temporarily
96 * for safe in-place decompression.
97 */
98
99#ifdef CONFIG_RELOCATABLE
100 movl %ebp, %ebx
37ba7ab5
PA
101 movl BP_kernel_alignment(%esi), %eax
102 decl %eax
103 addl %eax, %ebx
104 notl %eax
105 andl %eax, %ebx
8ab3820f
KC
106 cmpl $LOAD_PHYSICAL_ADDR, %ebx
107 jge 1f
1ab60e0f 108#endif
8ab3820f
KC
109 movl $LOAD_PHYSICAL_ADDR, %ebx
1101:
1ab60e0f 111
02a884c0 112 /* Target address to relocate to for decompression */
974f221c
YL
113 movl BP_init_size(%esi), %eax
114 subl $_end, %eax
115 addl %eax, %ebx
1da177e4
LT
116
117/*
1ab60e0f 118 * Prepare for entering 64 bit mode
1da177e4 119 */
1ab60e0f
VG
120
121 /* Load new GDT with the 64bit segments using 32bit descriptor */
122 leal gdt(%ebp), %eax
123 movl %eax, gdt+2(%ebp)
124 lgdt gdt(%ebp)
125
126 /* Enable PAE mode */
108d3f44
MF
127 movl %cr4, %eax
128 orl $X86_CR4_PAE, %eax
1ab60e0f
VG
129 movl %eax, %cr4
130
131 /*
132 * Build early 4G boot pagetable
133 */
b40d68d5 134 /* Initialize Page tables to 0 */
1ab60e0f
VG
135 leal pgtable(%ebx), %edi
136 xorl %eax, %eax
3a94707d 137 movl $(BOOT_INIT_PGT_SIZE/4), %ecx
1ab60e0f
VG
138 rep stosl
139
140 /* Build Level 4 */
141 leal pgtable + 0(%ebx), %edi
142 leal 0x1007 (%edi), %eax
143 movl %eax, 0(%edi)
144
145 /* Build Level 3 */
146 leal pgtable + 0x1000(%ebx), %edi
147 leal 0x1007(%edi), %eax
148 movl $4, %ecx
1491: movl %eax, 0x00(%edi)
150 addl $0x00001000, %eax
151 addl $8, %edi
152 decl %ecx
153 jnz 1b
154
155 /* Build Level 2 */
156 leal pgtable + 0x2000(%ebx), %edi
157 movl $0x00000183, %eax
158 movl $2048, %ecx
1591: movl %eax, 0(%edi)
160 addl $0x00200000, %eax
161 addl $8, %edi
162 decl %ecx
163 jnz 1b
164
165 /* Enable the boot page tables */
166 leal pgtable(%ebx), %eax
167 movl %eax, %cr3
168
169 /* Enable Long mode in EFER (Extended Feature Enable Register) */
170 movl $MSR_EFER, %ecx
171 rdmsr
172 btsl $_EFER_LME, %eax
173 wrmsr
174
d3c433bf
YL
175 /* After gdt is loaded */
176 xorl %eax, %eax
177 lldt %ax
40e4f2d1 178 movl $__BOOT_TSS, %eax
d3c433bf
YL
179 ltr %ax
180
b40d68d5
PA
181 /*
182 * Setup for the jump to 64bit mode
1ab60e0f
VG
183 *
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.
190 */
191 pushl $__KERNEL_CS
192 leal startup_64(%ebp), %eax
b8ff87a6
MF
193#ifdef CONFIG_EFI_MIXED
194 movl efi32_config(%ebp), %ebx
195 cmp $0, %ebx
196 jz 1f
197 leal handover_entry(%ebp), %eax
1981:
199#endif
1ab60e0f
VG
200 pushl %eax
201
202 /* Enter paged protected Mode, activating Long Mode */
e83e31f4 203 movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
1ab60e0f
VG
204 movl %eax, %cr0
205
206 /* Jump from 32bit compatibility mode into 64bit mode. */
207 lret
2d4eeecb 208ENDPROC(startup_32)
1ab60e0f 209
b8ff87a6
MF
210#ifdef CONFIG_EFI_MIXED
211 .org 0x190
212ENTRY(efi32_stub_entry)
213 add $0x4, %esp /* Discard return address */
214 popl %ecx
215 popl %edx
216 popl %esi
217
218 leal (BP_scratch+4)(%esi), %esp
219 call 1f
2201: pop %ebp
221 subl $1b, %ebp
222
223 movl %ecx, efi32_config(%ebp)
224 movl %edx, efi32_config+8(%ebp)
225 sgdtl efi32_boot_gdt(%ebp)
226
227 leal efi32_config(%ebp), %eax
228 movl %eax, efi_config(%ebp)
229
230 jmp startup_32
231ENDPROC(efi32_stub_entry)
232#endif
233
1ab60e0f 234 .code64
a4831e08 235 .org 0x200
1ab60e0f 236ENTRY(startup_64)
b40d68d5 237 /*
8ee2f2df 238 * 64bit entry is 0x200 and it is ABI so immutable!
b40d68d5 239 * We come here either from startup_32 or directly from a
8ee2f2df
YL
240 * 64bit bootloader.
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
245 * and command line.
1ab60e0f 246 */
291f3632 247#ifdef CONFIG_EFI_STUB
b1994304 248 /*
99f857db
DW
249 * The entry point for the PE/COFF executable is efi_pe_entry, so
250 * only legacy boot loaders will execute this jmp.
b1994304
MF
251 */
252 jmp preferred_addr
253
99f857db 254ENTRY(efi_pe_entry)
54b52d87
MF
255 movq %rcx, efi64_config(%rip) /* Handle */
256 movq %rdx, efi64_config+8(%rip) /* EFI System table pointer */
257
258 leaq efi64_config(%rip), %rax
259 movq %rax, efi_config(%rip)
260
261 call 1f
2621: popq %rbp
263 subq $1b, %rbp
264
265 /*
f3670394 266 * Relocate efi_config->call().
54b52d87
MF
267 */
268 addq %rbp, efi64_config+88(%rip)
269
270 movq %rax, %rdi
9ca8f72a
MF
271 call make_boot_params
272 cmpq $0,%rax
54b52d87
MF
273 je fail
274 mov %rax, %rsi
7e8213c1
MF
275 leaq startup_32(%rip), %rax
276 movl %eax, BP_code32_start(%rsi)
54b52d87 277 jmp 2f /* Skip the relocation */
9ca8f72a 278
b8ff87a6 279handover_entry:
54b52d87
MF
280 call 1f
2811: popq %rbp
282 subq $1b, %rbp
283
284 /*
f3670394 285 * Relocate efi_config->call().
54b52d87
MF
286 */
287 movq efi_config(%rip), %rax
288 addq %rbp, 88(%rax)
54b52d87
MF
2892:
290 movq efi_config(%rip), %rdi
291f3632 291 call efi_main
291f3632 292 movq %rax,%rsi
b1994304
MF
293 cmpq $0,%rax
294 jne 2f
54b52d87 295fail:
b1994304
MF
296 /* EFI init failed, so hang. */
297 hlt
54b52d87 298 jmp fail
b1994304 2992:
7e8213c1 300 movl BP_code32_start(%esi), %eax
291f3632
MF
301 leaq preferred_addr(%rax), %rax
302 jmp *%rax
303
304preferred_addr:
305#endif
1ab60e0f
VG
306
307 /* Setup data segments. */
308 xorl %eax, %eax
309 movl %eax, %ds
310 movl %eax, %es
311 movl %eax, %ss
08da5a2c
ZA
312 movl %eax, %fs
313 movl %eax, %gs
1ab60e0f 314
b40d68d5
PA
315 /*
316 * Compute the decompressed kernel start address. It is where
1ab60e0f
VG
317 * we were loaded at aligned to a 2M boundary. %rbp contains the
318 * decompressed kernel start address.
319 *
320 * If it is a relocatable kernel then decompress and run the kernel
321 * from load address aligned to 2MB addr, otherwise decompress and
40b387a8 322 * run the kernel from LOAD_PHYSICAL_ADDR
02a884c0
PA
323 *
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.
1ab60e0f
VG
326 */
327
328 /* Start with the delta to where the kernel will run at. */
329#ifdef CONFIG_RELOCATABLE
330 leaq startup_32(%rip) /* - $startup_32 */, %rbp
37ba7ab5
PA
331 movl BP_kernel_alignment(%rsi), %eax
332 decl %eax
333 addq %rax, %rbp
334 notq %rax
335 andq %rax, %rbp
8ab3820f
KC
336 cmpq $LOAD_PHYSICAL_ADDR, %rbp
337 jge 1f
1ab60e0f 338#endif
8ab3820f
KC
339 movq $LOAD_PHYSICAL_ADDR, %rbp
3401:
1ab60e0f 341
02a884c0 342 /* Target address to relocate to for decompression */
974f221c
YL
343 movl BP_init_size(%rsi), %ebx
344 subl $_end, %ebx
345 addq %rbp, %rbx
1ab60e0f 346
0a137736
PA
347 /* Set up the stack */
348 leaq boot_stack_end(%rbx), %rsp
349
350 /* Zero EFLAGS */
351 pushq $0
352 popfq
353
b40d68d5
PA
354/*
355 * Copy the compressed kernel to the end of our buffer
1ab60e0f
VG
356 * where decompression in place becomes safe.
357 */
36d3793c
PA
358 pushq %rsi
359 leaq (_bss-8)(%rip), %rsi
360 leaq (_bss-8)(%rbx), %rdi
5b11f1ce 361 movq $_bss /* - $startup_32 */, %rcx
36d3793c
PA
362 shrq $3, %rcx
363 std
364 rep movsq
365 cld
366 popq %rsi
1ab60e0f
VG
367
368/*
369 * Jump to the relocated address.
370 */
371 leaq relocated(%rbx), %rax
372 jmp *%rax
373
b8ff87a6
MF
374#ifdef CONFIG_EFI_STUB
375 .org 0x390
376ENTRY(efi64_stub_entry)
377 movq %rdi, efi64_config(%rip) /* Handle */
378 movq %rsi, efi64_config+8(%rip) /* EFI System table pointer */
379
380 leaq efi64_config(%rip), %rax
381 movq %rax, efi_config(%rip)
382
383 movq %rdx, %rsi
384 jmp handover_entry
385ENDPROC(efi64_stub_entry)
386#endif
387
b40d68d5 388 .text
1ab60e0f
VG
389relocated:
390
1da177e4 391/*
0a137736 392 * Clear BSS (stack is currently empty)
1da177e4 393 */
36d3793c
PA
394 xorl %eax, %eax
395 leaq _bss(%rip), %rdi
396 leaq _ebss(%rip), %rcx
1ab60e0f 397 subq %rdi, %rcx
36d3793c
PA
398 shrq $3, %rcx
399 rep stosq
1ab60e0f 400
f3670394
LT
401/*
402 * Adjust our own GOT
403 */
404 leaq _got(%rip), %rdx
405 leaq _egot(%rip), %rcx
4061:
407 cmpq %rcx, %rdx
408 jae 2f
409 addq %rbx, (%rdx)
410 addq $8, %rdx
411 jmp 1b
4122:
413
1da177e4 414/*
c0402881 415 * Do the extraction, and jump to the new kernel..
1da177e4 416 */
02a884c0
PA
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 */
e6023367 423 movq $z_output_len, %r9 /* decompressed length, end of relocs */
c0402881 424 call extract_kernel /* returns kernel location in %rax */
1ab60e0f 425 popq %rsi
1da177e4 426
1da177e4 427/*
1ab60e0f 428 * Jump to the decompressed kernel.
1da177e4 429 */
8ab3820f 430 jmp *%rax
1da177e4 431
187a8a73
YL
432 .code32
433no_longmode:
434 /* This isn't an x86-64 CPU so hang */
4351:
436 hlt
437 jmp 1b
438
439#include "../../kernel/verify_cpu.S"
440
1ab60e0f
VG
441 .data
442gdt:
443 .word gdt_end - gdt
444 .long gdt
445 .word 0
446 .quad 0x0000000000000000 /* NULL descriptor */
447 .quad 0x00af9a000000ffff /* __KERNEL_CS */
448 .quad 0x00cf92000000ffff /* __KERNEL_DS */
08da5a2c
ZA
449 .quad 0x0080890000000000 /* TS descriptor */
450 .quad 0x0000000000000000 /* TS continued */
1ab60e0f 451gdt_end:
7c539764 452
3db4cafd 453#ifdef CONFIG_EFI_STUB
54b52d87
MF
454efi_config:
455 .quad 0
456
b8ff87a6
MF
457#ifdef CONFIG_EFI_MIXED
458 .global efi32_config
459efi32_config:
460 .fill 11,8,0
461 .quad efi64_thunk
462 .byte 0
463#endif
464
54b52d87
MF
465 .global efi64_config
466efi64_config:
467 .fill 11,8,0
62fa6e69 468 .quad efi_call
54b52d87 469 .byte 1
3db4cafd
MF
470#endif /* CONFIG_EFI_STUB */
471
b40d68d5
PA
472/*
473 * Stack and heap for uncompression
474 */
475 .bss
476 .balign 4
7c539764
AH
477boot_heap:
478 .fill BOOT_HEAP_SIZE, 1, 0
479boot_stack:
480 .fill BOOT_STACK_SIZE, 1, 0
481boot_stack_end:
5b11f1ce
PA
482
483/*
484 * Space for page tables (not in .bss so not zeroed)
485 */
486 .section ".pgtable","a",@nobits
487 .balign 4096
488pgtable:
3a94707d 489 .fill BOOT_PGT_SIZE, 1, 0
This page took 0.820608 seconds and 5 git commands to generate.