head_64.S 10.8 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7
/*
 *  linux/arch/x86_64/kernel/head.S -- start in 32bit and switch to 64bit
 *
 *  Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
 *  Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
 *  Copyright (C) 2000 Karsten Keil <kkeil@suse.de>
 *  Copyright (C) 2001,2002 Andi Kleen <ak@suse.de>
8
 *  Copyright (C) 2005 Eric Biederman <ebiederm@xmission.com>
Linus Torvalds's avatar
Linus Torvalds committed
9 10 11 12 13
 */


#include <linux/linkage.h>
#include <linux/threads.h>
14
#include <linux/init.h>
Linus Torvalds's avatar
Linus Torvalds committed
15
#include <asm/segment.h>
16
#include <asm/pgtable.h>
Linus Torvalds's avatar
Linus Torvalds committed
17 18 19
#include <asm/page.h>
#include <asm/msr.h>
#include <asm/cache.h>
20
#include <asm/processor-flags.h>
Tejun Heo's avatar
Tejun Heo committed
21
#include <asm/percpu.h>
22

23 24 25 26 27 28 29
#ifdef CONFIG_PARAVIRT
#include <asm/asm-offsets.h>
#include <asm/paravirt.h>
#else
#define GET_CR2_INTO_RCX movq %cr2, %rcx
#endif

30
/* we are not able to switch in one step to the final KERNEL ADDRESS SPACE
31 32
 * because we need identity-mapped pages.
 *
Linus Torvalds's avatar
Linus Torvalds committed
33 34
 */

35 36 37 38 39 40 41
#define pud_index(x)	(((x) >> PUD_SHIFT) & (PTRS_PER_PUD-1))

L4_PAGE_OFFSET = pgd_index(__PAGE_OFFSET)
L3_PAGE_OFFSET = pud_index(__PAGE_OFFSET)
L4_START_KERNEL = pgd_index(__START_KERNEL_map)
L3_START_KERNEL = pud_index(__START_KERNEL_map)

Linus Torvalds's avatar
Linus Torvalds committed
42
	.text
43
	__HEAD
44 45 46 47
	.code64
	.globl startup_64
startup_64:

Linus Torvalds's avatar
Linus Torvalds committed
48
	/*
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
	 * At this point the CPU runs in 64bit mode CS.L = 1 CS.D = 1,
	 * and someone has loaded an identity mapped page table
	 * for us.  These identity mapped page tables map all of the
	 * kernel pages and possibly all of memory.
	 *
	 * %esi holds a physical pointer to real_mode_data.
	 *
	 * We come here either directly from a 64bit bootloader, or from
	 * arch/x86_64/boot/compressed/head.S.
	 *
	 * We only come here initially at boot nothing else comes here.
	 *
	 * Since we may be loaded at an address different from what we were
	 * compiled to run at we first fixup the physical addresses in our page
	 * tables and then reload them.
Linus Torvalds's avatar
Linus Torvalds committed
64 65
	 */

66 67
	/* Compute the delta between the address I am compiled to run at and the
	 * address I am actually running at.
Linus Torvalds's avatar
Linus Torvalds committed
68
	 */
69 70 71 72 73
	leaq	_text(%rip), %rbp
	subq	$_text - __START_KERNEL_map, %rbp

	/* Is the address not 2M aligned? */
	movq	%rbp, %rax
74
	andl	$~PMD_PAGE_MASK, %eax
75 76 77 78 79 80 81 82 83 84
	testl	%eax, %eax
	jnz	bad_address

	/* Is the address too large? */
	leaq	_text(%rip), %rdx
	movq	$PGDIR_SIZE, %rax
	cmpq	%rax, %rdx
	jae	bad_address

	/* Fixup the physical addresses in the page table
Linus Torvalds's avatar
Linus Torvalds committed
85
	 */
86
	addq	%rbp, init_level4_pgt + 0(%rip)
87 88
	addq	%rbp, init_level4_pgt + (L4_PAGE_OFFSET*8)(%rip)
	addq	%rbp, init_level4_pgt + (L4_START_KERNEL*8)(%rip)
89 90

	addq	%rbp, level3_ident_pgt + 0(%rip)
91

92
	addq	%rbp, level3_kernel_pgt + (510*8)(%rip)
93 94 95
	addq	%rbp, level3_kernel_pgt + (511*8)(%rip)

	addq	%rbp, level2_fixmap_pgt + (506*8)(%rip)
96 97 98

	/* Add an Identity mapping if I am above 1G */
	leaq	_text(%rip), %rdi
99
	andq	$PMD_PAGE_MASK, %rdi
100 101 102 103 104 105 106 107 108 109 110 111 112

	movq	%rdi, %rax
	shrq	$PUD_SHIFT, %rax
	andq	$(PTRS_PER_PUD - 1), %rax
	jz	ident_complete

	leaq	(level2_spare_pgt - __START_KERNEL_map + _KERNPG_TABLE)(%rbp), %rdx
	leaq	level3_ident_pgt(%rip), %rbx
	movq	%rdx, 0(%rbx, %rax, 8)

	movq	%rdi, %rax
	shrq	$PMD_SHIFT, %rax
	andq	$(PTRS_PER_PMD - 1), %rax
113
	leaq	__PAGE_KERNEL_IDENT_LARGE_EXEC(%rdi), %rdx
114 115 116 117
	leaq	level2_spare_pgt(%rip), %rbx
	movq	%rdx, 0(%rbx, %rax, 8)
ident_complete:

118 119 120 121 122
	/*
	 * Fixup the kernel text+data virtual addresses. Note that
	 * we might write invalid pmds, when the kernel is relocated
	 * cleanup_highmap() fixes this up along with the mappings
	 * beyond _end.
123
	 */
124

125 126 127 128 129 130 131 132 133 134 135 136 137
	leaq	level2_kernel_pgt(%rip), %rdi
	leaq	4096(%rdi), %r8
	/* See if it is a valid page table entry */
1:	testq	$1, 0(%rdi)
	jz	2f
	addq	%rbp, 0(%rdi)
	/* Go to the next page */
2:	addq	$8, %rdi
	cmp	%r8, %rdi
	jne	1b

	/* Fixup phys_base */
	addq	%rbp, phys_base(%rip)
Linus Torvalds's avatar
Linus Torvalds committed
138

139
	/* Fixup trampoline */
140 141
	addq	%rbp, trampoline_level4_pgt + 0(%rip)
	addq	%rbp, trampoline_level4_pgt + (511*8)(%rip)
Linus Torvalds's avatar
Linus Torvalds committed
142

143 144 145
	/* Due to ENTRY(), sometimes the empty space gets filled with
	 * zeros. Better take a jmp than relying on empty space being
	 * filled with 0x90 (nop)
Linus Torvalds's avatar
Linus Torvalds committed
146
	 */
147
	jmp secondary_startup_64
148
ENTRY(secondary_startup_64)
149 150 151 152 153 154 155 156 157 158 159 160
	/*
	 * At this point the CPU runs in 64bit mode CS.L = 1 CS.D = 1,
	 * and someone has loaded a mapped page table.
	 *
	 * %esi holds a physical pointer to real_mode_data.
	 *
	 * We come here either from startup_64 (using physical addresses)
	 * or from trampoline.S (using virtual addresses).
	 *
	 * Using virtual addresses from trampoline.S removes the need
	 * to have any identity mapped pages in the kernel page table
	 * after the boot processor executes this code.
Linus Torvalds's avatar
Linus Torvalds committed
161 162 163
	 */

	/* Enable PAE mode and PGE */
164
	movl	$(X86_CR4_PAE | X86_CR4_PGE), %eax
Linus Torvalds's avatar
Linus Torvalds committed
165 166 167
	movq	%rax, %cr4

	/* Setup early boot stage 4 level pagetables. */
168
	movq	$(init_level4_pgt - __START_KERNEL_map), %rax
169
	addq	phys_base(%rip), %rax
Linus Torvalds's avatar
Linus Torvalds committed
170 171
	movq	%rax, %cr3

172 173 174 175 176
	/* Ensure I am executing from virtual addresses */
	movq	$1f, %rax
	jmp	*%rax
1:

Linus Torvalds's avatar
Linus Torvalds committed
177 178 179 180 181 182 183 184
	/* Check if nx is implemented */
	movl	$0x80000001, %eax
	cpuid
	movl	%edx,%edi

	/* Setup EFER (Extended Feature Enable Register) */
	movl	$MSR_EFER, %ecx
	rdmsr
185 186
	btsl	$_EFER_SCE, %eax	/* Enable System Call */
	btl	$20,%edi		/* No Execute supported? */
Linus Torvalds's avatar
Linus Torvalds committed
187 188
	jnc     1f
	btsl	$_EFER_NX, %eax
189
1:	wrmsr				/* Make changes effective */
Linus Torvalds's avatar
Linus Torvalds committed
190 191

	/* Setup cr0 */
192 193 194 195
#define CR0_STATE	(X86_CR0_PE | X86_CR0_MP | X86_CR0_ET | \
			 X86_CR0_NE | X86_CR0_WP | X86_CR0_AM | \
			 X86_CR0_PG)
	movl	$CR0_STATE, %eax
Linus Torvalds's avatar
Linus Torvalds committed
196 197 198 199
	/* Make changes effective */
	movq	%rax, %cr0

	/* Setup a boot time stack */
200
	movq stack_start(%rip),%rsp
Linus Torvalds's avatar
Linus Torvalds committed
201 202 203 204 205 206 207 208 209 210 211

	/* zero EFLAGS after setting rsp */
	pushq $0
	popfq

	/*
	 * We must switch to a new descriptor in kernel space for the GDT
	 * because soon the kernel won't have access anymore to the userspace
	 * addresses where we're currently running on. We have to do that here
	 * because in 32bit we couldn't load a 64bit linear address.
	 */
212
	lgdt	early_gdt_descr(%rip)
Linus Torvalds's avatar
Linus Torvalds committed
213

214 215
	/* set up data segments */
	xorl %eax,%eax
216 217 218 219 220 221 222 223 224 225 226 227
	movl %eax,%ds
	movl %eax,%ss
	movl %eax,%es

	/*
	 * We don't really need to load %fs or %gs, but load them anyway
	 * to kill any stale realmode selectors.  This allows execution
	 * under VT hardware.
	 */
	movl %eax,%fs
	movl %eax,%gs

228 229
	/* Set up %gs.
	 *
230 231 232 233
	 * The base of %gs always points to the bottom of the irqstack
	 * union.  If the stack protector canary is enabled, it is
	 * located at %gs:40.  Note that, on SMP, the boot cpu uses
	 * init data section till per cpu areas are set up.
234
	 */
Linus Torvalds's avatar
Linus Torvalds committed
235
	movl	$MSR_GS_BASE,%ecx
236 237
	movl	initial_gs(%rip),%eax
	movl	initial_gs+4(%rip),%edx
Linus Torvalds's avatar
Linus Torvalds committed
238 239 240 241 242 243 244 245
	wrmsr	

	/* esi is pointer to real mode structure with interesting info.
	   pass it to C */
	movl	%esi, %edi
	
	/* Finally jump to run C code and to be on real kernel address
	 * Since we are running on identity-mapped space we have to jump
246 247 248
	 * to the full 64bit address, this is only possible as indirect
	 * jump.  In addition we need to ensure %cs is set so we make this
	 * a far return.
Linus Torvalds's avatar
Linus Torvalds committed
249 250
	 */
	movq	initial_code(%rip),%rax
251 252 253 254
	pushq	$0		# fake return address to stop unwinder
	pushq	$__KERNEL_CS	# set correct cs
	pushq	%rax		# target address in negative space
	lretq
Linus Torvalds's avatar
Linus Torvalds committed
255

256
	/* SMP bootup changes these two */
257
	__REFDATA
258
	.align	8
Sam Ravnborg's avatar
Sam Ravnborg committed
259
	ENTRY(initial_code)
Linus Torvalds's avatar
Linus Torvalds committed
260
	.quad	x86_64_start_kernel
261
	ENTRY(initial_gs)
262
	.quad	INIT_PER_CPU_VAR(irq_stack_union)
Sam Ravnborg's avatar
Sam Ravnborg committed
263

264
	ENTRY(stack_start)
Linus Torvalds's avatar
Linus Torvalds committed
265
	.quad  init_thread_union+THREAD_SIZE-8
266
	.word  0
267
	__FINITDATA
Linus Torvalds's avatar
Linus Torvalds committed
268

269 270 271
bad_address:
	jmp bad_address

272
	.section ".init.text","ax"
273
#ifdef CONFIG_EARLY_PRINTK
274 275
	.globl early_idt_handlers
early_idt_handlers:
276 277 278 279 280 281
	i = 0
	.rept NUM_EXCEPTION_VECTORS
	movl $i, %esi
	jmp early_idt_handler
	i = i + 1
	.endr
282
#endif
283

Linus Torvalds's avatar
Linus Torvalds committed
284
ENTRY(early_idt_handler)
285
#ifdef CONFIG_EARLY_PRINTK
286 287 288
	cmpl $2,early_recursion_flag(%rip)
	jz  1f
	incl early_recursion_flag(%rip)
289
	GET_CR2_INTO_RCX
290 291 292 293 294 295 296 297
	movq %rcx,%r9
	xorl %r8d,%r8d		# zero for error code
	movl %esi,%ecx		# get vector number
	# Test %ecx against mask of vectors that push error code.
	cmpl $31,%ecx
	ja 0f
	movl $1,%eax
	salq %cl,%rax
298
	testl $EXCEPTION_ERRCODE_MASK,%eax
299 300 301 302 303
	je 0f
	popq %r8		# get error code
0:	movq 0(%rsp),%rcx	# get ip
	movq 8(%rsp),%rdx	# get cs
	xorl %eax,%eax
Linus Torvalds's avatar
Linus Torvalds committed
304 305
	leaq early_idt_msg(%rip),%rdi
	call early_printk
306 307 308
	cmpl $2,early_recursion_flag(%rip)
	jz  1f
	call dump_stack
309 310
#ifdef CONFIG_KALLSYMS	
	leaq early_idt_ripmsg(%rip),%rdi
311
	movq 0(%rsp),%rsi	# get rip again
312 313
	call __print_symbol
#endif
314
#endif /* EARLY_PRINTK */
Linus Torvalds's avatar
Linus Torvalds committed
315 316
1:	hlt
	jmp 1b
317 318

#ifdef CONFIG_EARLY_PRINTK
319 320
early_recursion_flag:
	.long 0
Linus Torvalds's avatar
Linus Torvalds committed
321 322

early_idt_msg:
323
	.asciz "PANIC: early exception %02lx rip %lx:%lx error %lx cr2 %lx\n"
324 325
early_idt_ripmsg:
	.asciz "RIP %s\n"
326
#endif /* CONFIG_EARLY_PRINTK */
327
	.previous
Linus Torvalds's avatar
Linus Torvalds committed
328

329
#define NEXT_PAGE(name) \
330
	.balign	PAGE_SIZE; \
331 332
ENTRY(name)

333
/* Automate the creation of 1 to 1 mapping pmd entries */
334 335 336 337 338
#define PMDS(START, PERM, COUNT)			\
	i = 0 ;						\
	.rept (COUNT) ;					\
	.quad	(START) + (i << PMD_SHIFT) + (PERM) ;	\
	i = i + 1 ;					\
339 340
	.endr

341
	.data
342 343 344 345 346 347
	/*
	 * This default setting generates an ident mapping at address 0x100000
	 * and a mapping for the kernel that precisely maps virtual address
	 * 0xffffffff80000000 to physical address 0x000000. (always using
	 * 2Mbyte large pages provided by PAE mode)
	 */
348
NEXT_PAGE(init_level4_pgt)
349
	.quad	level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
350
	.org	init_level4_pgt + L4_PAGE_OFFSET*8, 0
351
	.quad	level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
352
	.org	init_level4_pgt + L4_START_KERNEL*8, 0
353 354
	/* (2^48-(2*1024*1024*1024))/(2^39) = 511 */
	.quad	level3_kernel_pgt - __START_KERNEL_map + _PAGE_TABLE
Linus Torvalds's avatar
Linus Torvalds committed
355

356
NEXT_PAGE(level3_ident_pgt)
357
	.quad	level2_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
Linus Torvalds's avatar
Linus Torvalds committed
358 359
	.fill	511,8,0

360
NEXT_PAGE(level3_kernel_pgt)
361
	.fill	L3_START_KERNEL,8,0
Linus Torvalds's avatar
Linus Torvalds committed
362
	/* (2^48-(2*1024*1024*1024)-((2^39)*511))/(2^30) = 510 */
363
	.quad	level2_kernel_pgt - __START_KERNEL_map + _KERNPG_TABLE
364 365 366
	.quad	level2_fixmap_pgt - __START_KERNEL_map + _PAGE_TABLE

NEXT_PAGE(level2_fixmap_pgt)
367 368 369 370 371 372
	.fill	506,8,0
	.quad	level1_fixmap_pgt - __START_KERNEL_map + _PAGE_TABLE
	/* 8MB reserved for vsyscalls + a 2MB hole = 4 + 1 entries */
	.fill	5,8,0

NEXT_PAGE(level1_fixmap_pgt)
373
	.fill	512,8,0
Linus Torvalds's avatar
Linus Torvalds committed
374

375
NEXT_PAGE(level2_ident_pgt)
376 377 378
	/* Since I easily can, map the first 1G.
	 * Don't set NX because code runs from these pages.
	 */
379
	PMDS(0, __PAGE_KERNEL_IDENT_LARGE_EXEC, PTRS_PER_PMD)
380

381
NEXT_PAGE(level2_kernel_pgt)
382
	/*
383
	 * 512 MB kernel mapping. We spend a full page on this pagetable
384 385 386 387
	 * anyway.
	 *
	 * The kernel code+data+bss must not be bigger than that.
	 *
388
	 * (NOTE: at +512MB starts the module area, see MODULES_VADDR.
389 390 391
	 *  If you want to increase this then increase MODULES_VADDR
	 *  too.)
	 */
392
	PMDS(0, __PAGE_KERNEL_LARGE_EXEC,
393
		KERNEL_IMAGE_SIZE/PMD_SIZE)
Linus Torvalds's avatar
Linus Torvalds committed
394

395
NEXT_PAGE(level2_spare_pgt)
396
	.fill   512, 8, 0
397

398
#undef PMDS
399
#undef NEXT_PAGE
Linus Torvalds's avatar
Linus Torvalds committed
400

401
	.data
Linus Torvalds's avatar
Linus Torvalds committed
402
	.align 16
403 404 405
	.globl early_gdt_descr
early_gdt_descr:
	.word	GDT_ENTRIES*8-1
406
early_gdt_descr_base:
407
	.quad	INIT_PER_CPU_VAR(gdt_page)
Linus Torvalds's avatar
Linus Torvalds committed
408

409 410 411 412
ENTRY(phys_base)
	/* This must match the first entry in level2_kernel_pgt */
	.quad   0x0000000000000000

413
#include "../../x86/xen/xen-head.S"
Linus Torvalds's avatar
Linus Torvalds committed
414
	
415 416 417
	.section .bss, "aw", @nobits
	.align L1_CACHE_BYTES
ENTRY(idt_table)
418
	.skip IDT_ENTRIES * 16
Linus Torvalds's avatar
Linus Torvalds committed
419

420 421 422 423
	.align L1_CACHE_BYTES
ENTRY(nmi_idt_table)
	.skip IDT_ENTRIES * 16

424
	__PAGE_ALIGNED_BSS
425 426 427
	.align PAGE_SIZE
ENTRY(empty_zero_page)
	.skip PAGE_SIZE