head_64.S 10.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 *  linux/boot/head.S
 *
 *  Copyright (C) 1991, 1992, 1993  Linus Torvalds
 */

/*
 *  head.S contains the 32-bit startup code.
 *
 * NOTE!!! Startup happens at absolute address 0x00001000, which is also where
 * the page directory will exist. The startup code will be overwritten by
 * the page directory. [According to comments etc elsewhere on a compressed
 * kernel it will end up at 0x1000 + 1Mb I hope so as I assume this. - AC]
 *
 * Page 0 is deliberately kept safe, since System Management Mode code in 
 * laptops may need to access the BIOS data stored there.  This is also
 * useful for future device drivers that either access the BIOS via VM86 
 * mode.
 */

/*
22
 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
L
Linus Torvalds 已提交
23
 */
24 25
	.code32
	.text
L
Linus Torvalds 已提交
26

27
#include <linux/init.h>
L
Linus Torvalds 已提交
28 29
#include <linux/linkage.h>
#include <asm/segment.h>
30
#include <asm/boot.h>
31
#include <asm/msr.h>
32
#include <asm/processor-flags.h>
33
#include <asm/asm-offsets.h>
34
#include <asm/bootparam.h>
L
Linus Torvalds 已提交
35

36 37 38 39 40 41 42 43
/*
 * Locally defined symbols should be marked hidden:
 */
	.hidden _bss
	.hidden _ebss
	.hidden _got
	.hidden _egot

44
	__HEAD
L
Linus Torvalds 已提交
45
	.code32
46
ENTRY(startup_32)
47 48 49 50 51 52
	/*
	 * 32bit entry is 0 and it is ABI so immutable!
	 * If we come here directly from a bootloader,
	 * kernel(text+data+bss+brk) ramdisk, zero_page, command line
	 * all need to be under the 4G limit.
	 */
L
Linus Torvalds 已提交
53
	cld
54 55 56 57
	/*
	 * Test KEEP_SEGMENTS flag to see if the bootloader is asking
	 * us to not reload segments
	 */
58
	testb $KEEP_SEGMENTS, BP_loadflags(%esi)
59 60
	jnz 1f

L
Linus Torvalds 已提交
61
	cli
62
	movl	$(__BOOT_DS), %eax
63 64 65
	movl	%eax, %ds
	movl	%eax, %es
	movl	%eax, %ss
66
1:
67

68 69
/*
 * Calculate the delta between where we were compiled to run
70 71 72
 * at and where we were actually loaded at.  This can only be done
 * with a short local call on x86.  Nothing  else will tell us what
 * address we are running at.  The reserved chunk of the real-mode
73 74
 * data at 0x1e4 (defined as a scratch field) are used as the stack
 * for this calculation. Only 4 bytes are needed.
75
 */
76
	leal	(BP_scratch+4)(%esi), %esp
77 78 79 80
	call	1f
1:	popl	%ebp
	subl	$1b, %ebp

81
/* setup a stack and make sure cpu supports long mode. */
82
	movl	$boot_stack_end, %eax
83 84 85 86 87 88 89
	addl	%ebp, %eax
	movl	%eax, %esp

	call	verify_cpu
	testl	%eax, %eax
	jnz	no_longmode

90 91
/*
 * Compute the delta between where we were compiled to run at
92
 * and where the code will actually run at.
93 94
 *
 * %ebp contains the address we are loaded at by the boot loader and %ebx
95 96 97 98 99 100
 * contains the address where we should move the kernel image temporarily
 * for safe in-place decompression.
 */

#ifdef CONFIG_RELOCATABLE
	movl	%ebp, %ebx
101 102 103 104 105
	movl	BP_kernel_alignment(%esi), %eax
	decl	%eax
	addl	%eax, %ebx
	notl	%eax
	andl	%eax, %ebx
106 107
	cmpl	$LOAD_PHYSICAL_ADDR, %ebx
	jge	1f
108
#endif
109 110
	movl	$LOAD_PHYSICAL_ADDR, %ebx
1:
111

112
	/* Target address to relocate to for decompression */
113 114 115
	movl	BP_init_size(%esi), %eax
	subl	$_end, %eax
	addl	%eax, %ebx
L
Linus Torvalds 已提交
116 117

/*
118
 * Prepare for entering 64 bit mode
L
Linus Torvalds 已提交
119
 */
120 121 122 123 124 125 126

	/* Load new GDT with the 64bit segments using 32bit descriptor */
	leal	gdt(%ebp), %eax
	movl	%eax, gdt+2(%ebp)
	lgdt	gdt(%ebp)

	/* Enable PAE mode */
127 128
	movl	%cr4, %eax
	orl	$X86_CR4_PAE, %eax
129 130 131 132 133
	movl	%eax, %cr4

 /*
  * Build early 4G boot pagetable
  */
134
	/* Initialize Page tables to 0 */
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
	leal	pgtable(%ebx), %edi
	xorl	%eax, %eax
	movl	$((4096*6)/4), %ecx
	rep	stosl

	/* Build Level 4 */
	leal	pgtable + 0(%ebx), %edi
	leal	0x1007 (%edi), %eax
	movl	%eax, 0(%edi)

	/* Build Level 3 */
	leal	pgtable + 0x1000(%ebx), %edi
	leal	0x1007(%edi), %eax
	movl	$4, %ecx
1:	movl	%eax, 0x00(%edi)
	addl	$0x00001000, %eax
	addl	$8, %edi
	decl	%ecx
	jnz	1b

	/* Build Level 2 */
	leal	pgtable + 0x2000(%ebx), %edi
	movl	$0x00000183, %eax
	movl	$2048, %ecx
1:	movl	%eax, 0(%edi)
	addl	$0x00200000, %eax
	addl	$8, %edi
	decl	%ecx
	jnz	1b

	/* Enable the boot page tables */
	leal	pgtable(%ebx), %eax
	movl	%eax, %cr3

	/* Enable Long mode in EFER (Extended Feature Enable Register) */
	movl	$MSR_EFER, %ecx
	rdmsr
	btsl	$_EFER_LME, %eax
	wrmsr

175 176 177
	/* After gdt is loaded */
	xorl	%eax, %eax
	lldt	%ax
178
	movl    $__BOOT_TSS, %eax
179 180
	ltr	%ax

181 182
	/*
	 * Setup for the jump to 64bit mode
183 184 185 186 187 188 189 190 191 192
	 *
	 * When the jump is performend we will be in long mode but
	 * in 32bit compatibility mode with EFER.LME = 1, CS.L = 0, CS.D = 1
	 * (and in turn EFER.LMA = 1).	To jump into 64bit mode we use
	 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
	 * We place all of the values on our mini stack so lret can
	 * used to perform that far jump.
	 */
	pushl	$__KERNEL_CS
	leal	startup_64(%ebp), %eax
193 194 195 196 197 198 199
#ifdef CONFIG_EFI_MIXED
	movl	efi32_config(%ebp), %ebx
	cmp	$0, %ebx
	jz	1f
	leal	handover_entry(%ebp), %eax
1:
#endif
200 201 202
	pushl	%eax

	/* Enter paged protected Mode, activating Long Mode */
203
	movl	$(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
204 205 206 207
	movl	%eax, %cr0

	/* Jump from 32bit compatibility mode into 64bit mode. */
	lret
208
ENDPROC(startup_32)
209

210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
#ifdef CONFIG_EFI_MIXED
	.org 0x190
ENTRY(efi32_stub_entry)
	add	$0x4, %esp		/* Discard return address */
	popl	%ecx
	popl	%edx
	popl	%esi

	leal	(BP_scratch+4)(%esi), %esp
	call	1f
1:	pop	%ebp
	subl	$1b, %ebp

	movl	%ecx, efi32_config(%ebp)
	movl	%edx, efi32_config+8(%ebp)
	sgdtl	efi32_boot_gdt(%ebp)

	leal	efi32_config(%ebp), %eax
	movl	%eax, efi_config(%ebp)

	jmp	startup_32
ENDPROC(efi32_stub_entry)
#endif

234
	.code64
235
	.org 0x200
236
ENTRY(startup_64)
237
	/*
238
	 * 64bit entry is 0x200 and it is ABI so immutable!
239
	 * We come here either from startup_32 or directly from a
240 241 242 243 244 245
	 * 64bit bootloader.
	 * If we come here from a bootloader, kernel(text+data+bss+brk),
	 * ramdisk, zero_page, command line could be above 4G.
	 * We depend on an identity mapped page table being provided
	 * that maps our entire kernel(text+data+bss+brk), zero page
	 * and command line.
246
	 */
M
Matt Fleming 已提交
247
#ifdef CONFIG_EFI_STUB
248
	/*
249 250
	 * The entry point for the PE/COFF executable is efi_pe_entry, so
	 * only legacy boot loaders will execute this jmp.
251 252 253
	 */
	jmp	preferred_addr

254
ENTRY(efi_pe_entry)
255 256 257 258 259 260 261 262 263 264 265
	movq	%rcx, efi64_config(%rip)	/* Handle */
	movq	%rdx, efi64_config+8(%rip) /* EFI System table pointer */

	leaq	efi64_config(%rip), %rax
	movq	%rax, efi_config(%rip)

	call	1f
1:	popq	%rbp
	subq	$1b, %rbp

	/*
266
	 * Relocate efi_config->call().
267 268 269 270
	 */
	addq	%rbp, efi64_config+88(%rip)

	movq	%rax, %rdi
M
Matt Fleming 已提交
271 272
	call	make_boot_params
	cmpq	$0,%rax
273 274
	je	fail
	mov	%rax, %rsi
275 276
	leaq	startup_32(%rip), %rax
	movl	%eax, BP_code32_start(%rsi)
277
	jmp	2f		/* Skip the relocation */
M
Matt Fleming 已提交
278

279
handover_entry:
280 281 282 283 284
	call	1f
1:	popq	%rbp
	subq	$1b, %rbp

	/*
285
	 * Relocate efi_config->call().
286 287 288 289 290
	 */
	movq	efi_config(%rip), %rax
	addq	%rbp, 88(%rax)
2:
	movq	efi_config(%rip), %rdi
M
Matt Fleming 已提交
291 292
	call	efi_main
	movq	%rax,%rsi
293 294
	cmpq	$0,%rax
	jne	2f
295
fail:
296 297
	/* EFI init failed, so hang. */
	hlt
298
	jmp	fail
299
2:
300
	movl	BP_code32_start(%esi), %eax
M
Matt Fleming 已提交
301 302 303 304 305
	leaq	preferred_addr(%rax), %rax
	jmp	*%rax

preferred_addr:
#endif
306 307 308 309 310 311

	/* Setup data segments. */
	xorl	%eax, %eax
	movl	%eax, %ds
	movl	%eax, %es
	movl	%eax, %ss
312 313
	movl	%eax, %fs
	movl	%eax, %gs
314

315 316
	/*
	 * Compute the decompressed kernel start address.  It is where
317 318 319 320 321
	 * we were loaded at aligned to a 2M boundary. %rbp contains the
	 * decompressed kernel start address.
	 *
	 * If it is a relocatable kernel then decompress and run the kernel
	 * from load address aligned to 2MB addr, otherwise decompress and
322
	 * run the kernel from LOAD_PHYSICAL_ADDR
323 324 325
	 *
	 * We cannot rely on the calculation done in 32-bit mode, since we
	 * may have been invoked via the 64-bit entry point.
326 327 328 329 330
	 */

	/* Start with the delta to where the kernel will run at. */
#ifdef CONFIG_RELOCATABLE
	leaq	startup_32(%rip) /* - $startup_32 */, %rbp
331 332 333 334 335
	movl	BP_kernel_alignment(%rsi), %eax
	decl	%eax
	addq	%rax, %rbp
	notq	%rax
	andq	%rax, %rbp
336 337
	cmpq	$LOAD_PHYSICAL_ADDR, %rbp
	jge	1f
338
#endif
339 340
	movq	$LOAD_PHYSICAL_ADDR, %rbp
1:
341

342
	/* Target address to relocate to for decompression */
343 344 345
	movl	BP_init_size(%rsi), %ebx
	subl	$_end, %ebx
	addq	%rbp, %rbx
346

347 348 349 350 351 352 353
	/* Set up the stack */
	leaq	boot_stack_end(%rbx), %rsp

	/* Zero EFLAGS */
	pushq	$0
	popfq

354 355
/*
 * Copy the compressed kernel to the end of our buffer
356 357
 * where decompression in place becomes safe.
 */
358 359 360
	pushq	%rsi
	leaq	(_bss-8)(%rip), %rsi
	leaq	(_bss-8)(%rbx), %rdi
361
	movq	$_bss /* - $startup_32 */, %rcx
362 363 364 365 366
	shrq	$3, %rcx
	std
	rep	movsq
	cld
	popq	%rsi
367 368 369 370 371 372 373

/*
 * Jump to the relocated address.
 */
	leaq	relocated(%rbx), %rax
	jmp	*%rax

374 375 376 377 378 379 380 381 382 383 384 385 386 387
#ifdef CONFIG_EFI_STUB
	.org 0x390
ENTRY(efi64_stub_entry)
	movq	%rdi, efi64_config(%rip)	/* Handle */
	movq	%rsi, efi64_config+8(%rip) /* EFI System table pointer */

	leaq	efi64_config(%rip), %rax
	movq	%rax, efi_config(%rip)

	movq	%rdx, %rsi
	jmp	handover_entry
ENDPROC(efi64_stub_entry)
#endif

388
	.text
389 390
relocated:

L
Linus Torvalds 已提交
391
/*
392
 * Clear BSS (stack is currently empty)
L
Linus Torvalds 已提交
393
 */
394 395 396
	xorl	%eax, %eax
	leaq    _bss(%rip), %rdi
	leaq    _ebss(%rip), %rcx
397
	subq	%rdi, %rcx
398 399
	shrq	$3, %rcx
	rep	stosq
400

401 402 403 404 405 406 407 408 409 410 411 412 413
/*
 * Adjust our own GOT
 */
	leaq	_got(%rip), %rdx
	leaq	_egot(%rip), %rcx
1:
	cmpq	%rcx, %rdx
	jae	2f
	addq	%rbx, (%rdx)
	addq	$8, %rdx
	jmp	1b
2:
	
L
Linus Torvalds 已提交
414
/*
415
 * Do the extraction, and jump to the new kernel..
L
Linus Torvalds 已提交
416
 */
417 418 419 420 421 422
	pushq	%rsi			/* Save the real mode argument */
	movq	%rsi, %rdi		/* real mode address */
	leaq	boot_heap(%rip), %rsi	/* malloc area for uncompression */
	leaq	input_data(%rip), %rdx  /* input_data */
	movl	$z_input_len, %ecx	/* input_len */
	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 */
425
	popq	%rsi
L
Linus Torvalds 已提交
426 427

/*
428
 * Jump to the decompressed kernel.
L
Linus Torvalds 已提交
429
 */
430
	jmp	*%rax
L
Linus Torvalds 已提交
431

432 433 434 435 436 437 438 439 440
	.code32
no_longmode:
	/* This isn't an x86-64 CPU so hang */
1:
	hlt
	jmp     1b

#include "../../kernel/verify_cpu.S"

441 442 443 444 445 446 447 448
	.data
gdt:
	.word	gdt_end - gdt
	.long	gdt
	.word	0
	.quad	0x0000000000000000	/* NULL descriptor */
	.quad	0x00af9a000000ffff	/* __KERNEL_CS */
	.quad	0x00cf92000000ffff	/* __KERNEL_DS */
449 450
	.quad	0x0080890000000000	/* TS descriptor */
	.quad   0x0000000000000000	/* TS continued */
451
gdt_end:
452

M
Matt Fleming 已提交
453
#ifdef CONFIG_EFI_STUB
454 455 456
efi_config:
	.quad	0

457 458 459 460 461 462 463 464
#ifdef CONFIG_EFI_MIXED
	.global efi32_config
efi32_config:
	.fill	11,8,0
	.quad	efi64_thunk
	.byte	0
#endif

465 466 467
	.global efi64_config
efi64_config:
	.fill	11,8,0
468
	.quad	efi_call
469
	.byte	1
M
Matt Fleming 已提交
470 471
#endif /* CONFIG_EFI_STUB */

472 473 474 475 476
/*
 * Stack and heap for uncompression
 */
	.bss
	.balign 4
477 478 479 480 481
boot_heap:
	.fill BOOT_HEAP_SIZE, 1, 0
boot_stack:
	.fill BOOT_STACK_SIZE, 1, 0
boot_stack_end:
482 483 484 485 486 487 488 489

/*
 * Space for page tables (not in .bss so not zeroed)
 */
	.section ".pgtable","a",@nobits
	.balign 4096
pgtable:
	.fill 6*4096, 1, 0