xref: /openbmc/linux/arch/x86/kernel/head_64.S (revision 032370b9)
1250c2277SThomas Gleixner/*
25b171e82SAlexander Kuleshov *  linux/arch/x86/kernel/head_64.S -- start in 32bit and switch to 64bit
3250c2277SThomas Gleixner *
4250c2277SThomas Gleixner *  Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5250c2277SThomas Gleixner *  Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
6250c2277SThomas Gleixner *  Copyright (C) 2000 Karsten Keil <kkeil@suse.de>
7250c2277SThomas Gleixner *  Copyright (C) 2001,2002 Andi Kleen <ak@suse.de>
8250c2277SThomas Gleixner *  Copyright (C) 2005 Eric Biederman <ebiederm@xmission.com>
9250c2277SThomas Gleixner */
10250c2277SThomas Gleixner
11250c2277SThomas Gleixner
12250c2277SThomas Gleixner#include <linux/linkage.h>
13250c2277SThomas Gleixner#include <linux/threads.h>
14250c2277SThomas Gleixner#include <linux/init.h>
15250c2277SThomas Gleixner#include <asm/segment.h>
16250c2277SThomas Gleixner#include <asm/pgtable.h>
17250c2277SThomas Gleixner#include <asm/page.h>
18250c2277SThomas Gleixner#include <asm/msr.h>
19250c2277SThomas Gleixner#include <asm/cache.h>
20369101daSCyrill Gorcunov#include <asm/processor-flags.h>
21b12d8db8STejun Heo#include <asm/percpu.h>
229900aa2fSH. Peter Anvin#include <asm/nops.h>
237bbcdb1cSAndy Lutomirski#include "../entry/calling.h"
24784d5699SAl Viro#include <asm/export.h>
25250c2277SThomas Gleixner
2649a69787SGlauber de Oliveira Costa#ifdef CONFIG_PARAVIRT
2749a69787SGlauber de Oliveira Costa#include <asm/asm-offsets.h>
2849a69787SGlauber de Oliveira Costa#include <asm/paravirt.h>
29ffc4bc9cSH. Peter Anvin#define GET_CR2_INTO(reg) GET_CR2_INTO_RAX ; movq %rax, reg
3049a69787SGlauber de Oliveira Costa#else
31ffc4bc9cSH. Peter Anvin#define GET_CR2_INTO(reg) movq %cr2, reg
329900aa2fSH. Peter Anvin#define INTERRUPT_RETURN iretq
3349a69787SGlauber de Oliveira Costa#endif
3449a69787SGlauber de Oliveira Costa
353ad2f3fbSDaniel Mack/* we are not able to switch in one step to the final KERNEL ADDRESS SPACE
36250c2277SThomas Gleixner * because we need identity-mapped pages.
37250c2277SThomas Gleixner *
38250c2277SThomas Gleixner */
39250c2277SThomas Gleixner
40032370b9SKirill A. Shutemov#define p4d_index(x)	(((x) >> P4D_SHIFT) & (PTRS_PER_P4D-1))
41a6523748SEduardo Habkost#define pud_index(x)	(((x) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
42a6523748SEduardo Habkost
43032370b9SKirill A. ShutemovPGD_PAGE_OFFSET = pgd_index(__PAGE_OFFSET_BASE)
44032370b9SKirill A. ShutemovPGD_START_KERNEL = pgd_index(__START_KERNEL_map)
45a6523748SEduardo HabkostL3_START_KERNEL = pud_index(__START_KERNEL_map)
46a6523748SEduardo Habkost
47250c2277SThomas Gleixner	.text
484ae59b91STim Abbott	__HEAD
49250c2277SThomas Gleixner	.code64
50250c2277SThomas Gleixner	.globl startup_64
51250c2277SThomas Gleixnerstartup_64:
52250c2277SThomas Gleixner	/*
531256276cSKonrad Rzeszutek Wilk	 * At this point the CPU runs in 64bit mode CS.L = 1 CS.D = 0,
54250c2277SThomas Gleixner	 * and someone has loaded an identity mapped page table
55250c2277SThomas Gleixner	 * for us.  These identity mapped page tables map all of the
56250c2277SThomas Gleixner	 * kernel pages and possibly all of memory.
57250c2277SThomas Gleixner	 *
588170e6beSH. Peter Anvin	 * %rsi holds a physical pointer to real_mode_data.
59250c2277SThomas Gleixner	 *
60250c2277SThomas Gleixner	 * We come here either directly from a 64bit bootloader, or from
615b171e82SAlexander Kuleshov	 * arch/x86/boot/compressed/head_64.S.
62250c2277SThomas Gleixner	 *
63250c2277SThomas Gleixner	 * We only come here initially at boot nothing else comes here.
64250c2277SThomas Gleixner	 *
65250c2277SThomas Gleixner	 * Since we may be loaded at an address different from what we were
66250c2277SThomas Gleixner	 * compiled to run at we first fixup the physical addresses in our page
67250c2277SThomas Gleixner	 * tables and then reload them.
68250c2277SThomas Gleixner	 */
69250c2277SThomas Gleixner
7022dc3918SJosh Poimboeuf	/* Set up the stack for verify_cpu(), similar to initial_stack below */
7122dc3918SJosh Poimboeuf	leaq	(__end_init_task - SIZEOF_PTREGS)(%rip), %rsp
7291ed140dSBorislav Petkov
7304633df0SBorislav Petkov	/* Sanitize CPU configuration */
7404633df0SBorislav Petkov	call verify_cpu
7504633df0SBorislav Petkov
76250c2277SThomas Gleixner	leaq	_text(%rip), %rdi
77c88d7150SKirill A. Shutemov	pushq	%rsi
78c88d7150SKirill A. Shutemov	call	__startup_64
79c88d7150SKirill A. Shutemov	popq	%rsi
80250c2277SThomas Gleixner
8165ade2f8SKirill A. Shutemov	movq	$(early_top_pgt - __START_KERNEL_map), %rax
828170e6beSH. Peter Anvin	jmp 1f
83250c2277SThomas GleixnerENTRY(secondary_startup_64)
84250c2277SThomas Gleixner	/*
851256276cSKonrad Rzeszutek Wilk	 * At this point the CPU runs in 64bit mode CS.L = 1 CS.D = 0,
86250c2277SThomas Gleixner	 * and someone has loaded a mapped page table.
87250c2277SThomas Gleixner	 *
888170e6beSH. Peter Anvin	 * %rsi holds a physical pointer to real_mode_data.
89250c2277SThomas Gleixner	 *
90250c2277SThomas Gleixner	 * We come here either from startup_64 (using physical addresses)
91250c2277SThomas Gleixner	 * or from trampoline.S (using virtual addresses).
92250c2277SThomas Gleixner	 *
93250c2277SThomas Gleixner	 * Using virtual addresses from trampoline.S removes the need
94250c2277SThomas Gleixner	 * to have any identity mapped pages in the kernel page table
95250c2277SThomas Gleixner	 * after the boot processor executes this code.
96250c2277SThomas Gleixner	 */
97250c2277SThomas Gleixner
9804633df0SBorislav Petkov	/* Sanitize CPU configuration */
9904633df0SBorislav Petkov	call verify_cpu
10004633df0SBorislav Petkov
10165ade2f8SKirill A. Shutemov	movq	$(init_top_pgt - __START_KERNEL_map), %rax
1028170e6beSH. Peter Anvin1:
1038170e6beSH. Peter Anvin
104032370b9SKirill A. Shutemov	/* Enable PAE mode, PGE and LA57 */
1058170e6beSH. Peter Anvin	movl	$(X86_CR4_PAE | X86_CR4_PGE), %ecx
106032370b9SKirill A. Shutemov#ifdef CONFIG_X86_5LEVEL
107032370b9SKirill A. Shutemov	orl	$X86_CR4_LA57, %ecx
108032370b9SKirill A. Shutemov#endif
1098170e6beSH. Peter Anvin	movq	%rcx, %cr4
110250c2277SThomas Gleixner
111032370b9SKirill A. Shutemov	/* Setup early boot stage 4-/5-level pagetables. */
112250c2277SThomas Gleixner	addq	phys_base(%rip), %rax
113250c2277SThomas Gleixner	movq	%rax, %cr3
114250c2277SThomas Gleixner
115250c2277SThomas Gleixner	/* Ensure I am executing from virtual addresses */
116250c2277SThomas Gleixner	movq	$1f, %rax
117250c2277SThomas Gleixner	jmp	*%rax
118250c2277SThomas Gleixner1:
119250c2277SThomas Gleixner
120250c2277SThomas Gleixner	/* Check if nx is implemented */
121250c2277SThomas Gleixner	movl	$0x80000001, %eax
122250c2277SThomas Gleixner	cpuid
123250c2277SThomas Gleixner	movl	%edx,%edi
124250c2277SThomas Gleixner
125250c2277SThomas Gleixner	/* Setup EFER (Extended Feature Enable Register) */
126250c2277SThomas Gleixner	movl	$MSR_EFER, %ecx
127250c2277SThomas Gleixner	rdmsr
128250c2277SThomas Gleixner	btsl	$_EFER_SCE, %eax	/* Enable System Call */
129250c2277SThomas Gleixner	btl	$20,%edi		/* No Execute supported? */
130250c2277SThomas Gleixner	jnc     1f
131250c2277SThomas Gleixner	btsl	$_EFER_NX, %eax
13278d77df7SH. Peter Anvin	btsq	$_PAGE_BIT_NX,early_pmd_flags(%rip)
133250c2277SThomas Gleixner1:	wrmsr				/* Make changes effective */
134250c2277SThomas Gleixner
135250c2277SThomas Gleixner	/* Setup cr0 */
136369101daSCyrill Gorcunov#define CR0_STATE	(X86_CR0_PE | X86_CR0_MP | X86_CR0_ET | \
137369101daSCyrill Gorcunov			 X86_CR0_NE | X86_CR0_WP | X86_CR0_AM | \
138369101daSCyrill Gorcunov			 X86_CR0_PG)
139369101daSCyrill Gorcunov	movl	$CR0_STATE, %eax
140250c2277SThomas Gleixner	/* Make changes effective */
141250c2277SThomas Gleixner	movq	%rax, %cr0
142250c2277SThomas Gleixner
143250c2277SThomas Gleixner	/* Setup a boot time stack */
144b32f96c7SJosh Poimboeuf	movq initial_stack(%rip), %rsp
145250c2277SThomas Gleixner
146250c2277SThomas Gleixner	/* zero EFLAGS after setting rsp */
147250c2277SThomas Gleixner	pushq $0
148250c2277SThomas Gleixner	popfq
149250c2277SThomas Gleixner
150250c2277SThomas Gleixner	/*
151250c2277SThomas Gleixner	 * We must switch to a new descriptor in kernel space for the GDT
152250c2277SThomas Gleixner	 * because soon the kernel won't have access anymore to the userspace
153250c2277SThomas Gleixner	 * addresses where we're currently running on. We have to do that here
154250c2277SThomas Gleixner	 * because in 32bit we couldn't load a 64bit linear address.
155250c2277SThomas Gleixner	 */
156a939098aSGlauber Costa	lgdt	early_gdt_descr(%rip)
157250c2277SThomas Gleixner
1588ec6993dSBrian Gerst	/* set up data segments */
1598ec6993dSBrian Gerst	xorl %eax,%eax
160250c2277SThomas Gleixner	movl %eax,%ds
161250c2277SThomas Gleixner	movl %eax,%ss
162250c2277SThomas Gleixner	movl %eax,%es
163250c2277SThomas Gleixner
164250c2277SThomas Gleixner	/*
165250c2277SThomas Gleixner	 * We don't really need to load %fs or %gs, but load them anyway
166250c2277SThomas Gleixner	 * to kill any stale realmode selectors.  This allows execution
167250c2277SThomas Gleixner	 * under VT hardware.
168250c2277SThomas Gleixner	 */
169250c2277SThomas Gleixner	movl %eax,%fs
170250c2277SThomas Gleixner	movl %eax,%gs
171250c2277SThomas Gleixner
172f32ff538STejun Heo	/* Set up %gs.
173f32ff538STejun Heo	 *
174947e76cdSBrian Gerst	 * The base of %gs always points to the bottom of the irqstack
175947e76cdSBrian Gerst	 * union.  If the stack protector canary is enabled, it is
176947e76cdSBrian Gerst	 * located at %gs:40.  Note that, on SMP, the boot cpu uses
177947e76cdSBrian Gerst	 * init data section till per cpu areas are set up.
178250c2277SThomas Gleixner	 */
179250c2277SThomas Gleixner	movl	$MSR_GS_BASE,%ecx
180650fb439SBrian Gerst	movl	initial_gs(%rip),%eax
181650fb439SBrian Gerst	movl	initial_gs+4(%rip),%edx
182250c2277SThomas Gleixner	wrmsr
183250c2277SThomas Gleixner
1848170e6beSH. Peter Anvin	/* rsi is pointer to real mode structure with interesting info.
185250c2277SThomas Gleixner	   pass it to C */
1868170e6beSH. Peter Anvin	movq	%rsi, %rdi
187250c2277SThomas Gleixner
18879d243a0SBorislav Petkov.Ljump_to_C_code:
189a9468df5SJosh Poimboeuf	/*
190a9468df5SJosh Poimboeuf	 * Jump to run C code and to be on a real kernel address.
191250c2277SThomas Gleixner	 * Since we are running on identity-mapped space we have to jump
192250c2277SThomas Gleixner	 * to the full 64bit address, this is only possible as indirect
193250c2277SThomas Gleixner	 * jump.  In addition we need to ensure %cs is set so we make this
194250c2277SThomas Gleixner	 * a far return.
1958170e6beSH. Peter Anvin	 *
1968170e6beSH. Peter Anvin	 * Note: do not change to far jump indirect with 64bit offset.
1978170e6beSH. Peter Anvin	 *
1988170e6beSH. Peter Anvin	 * AMD does not support far jump indirect with 64bit offset.
1998170e6beSH. Peter Anvin	 * AMD64 Architecture Programmer's Manual, Volume 3: states only
2008170e6beSH. Peter Anvin	 *	JMP FAR mem16:16 FF /5 Far jump indirect,
2018170e6beSH. Peter Anvin	 *		with the target specified by a far pointer in memory.
2028170e6beSH. Peter Anvin	 *	JMP FAR mem16:32 FF /5 Far jump indirect,
2038170e6beSH. Peter Anvin	 *		with the target specified by a far pointer in memory.
2048170e6beSH. Peter Anvin	 *
2058170e6beSH. Peter Anvin	 * Intel64 does support 64bit offset.
2068170e6beSH. Peter Anvin	 * Software Developer Manual Vol 2: states:
2078170e6beSH. Peter Anvin	 *	FF /5 JMP m16:16 Jump far, absolute indirect,
2088170e6beSH. Peter Anvin	 *		address given in m16:16
2098170e6beSH. Peter Anvin	 *	FF /5 JMP m16:32 Jump far, absolute indirect,
2108170e6beSH. Peter Anvin	 *		address given in m16:32.
2118170e6beSH. Peter Anvin	 *	REX.W + FF /5 JMP m16:64 Jump far, absolute indirect,
2128170e6beSH. Peter Anvin	 *		address given in m16:64.
213250c2277SThomas Gleixner	 */
21431dcfec1SJosh Poimboeuf	pushq	$.Lafter_lret	# put return address on stack for unwinder
21531dcfec1SJosh Poimboeuf	xorq	%rbp, %rbp	# clear frame pointer
216250c2277SThomas Gleixner	movq	initial_code(%rip), %rax
217250c2277SThomas Gleixner	pushq	$__KERNEL_CS	# set correct cs
218250c2277SThomas Gleixner	pushq	%rax		# target address in negative space
219250c2277SThomas Gleixner	lretq
22031dcfec1SJosh Poimboeuf.Lafter_lret:
22179d243a0SBorislav PetkovENDPROC(secondary_startup_64)
222250c2277SThomas Gleixner
22304633df0SBorislav Petkov#include "verify_cpu.S"
22404633df0SBorislav Petkov
22542e78e97SFenghua Yu#ifdef CONFIG_HOTPLUG_CPU
22642e78e97SFenghua Yu/*
22742e78e97SFenghua Yu * Boot CPU0 entry point. It's called from play_dead(). Everything has been set
22842e78e97SFenghua Yu * up already except stack. We just set up stack here. Then call
22979d243a0SBorislav Petkov * start_secondary() via .Ljump_to_C_code.
23042e78e97SFenghua Yu */
23142e78e97SFenghua YuENTRY(start_cpu0)
232b32f96c7SJosh Poimboeuf	movq	initial_stack(%rip), %rsp
23379d243a0SBorislav Petkov	jmp	.Ljump_to_C_code
23442e78e97SFenghua YuENDPROC(start_cpu0)
23542e78e97SFenghua Yu#endif
23642e78e97SFenghua Yu
237b32f96c7SJosh Poimboeuf	/* Both SMP bootup and ACPI suspend change these variables */
238da5968aeSSam Ravnborg	__REFDATA
2398170e6beSH. Peter Anvin	.balign	8
2408170e6beSH. Peter Anvin	GLOBAL(initial_code)
241250c2277SThomas Gleixner	.quad	x86_64_start_kernel
2428170e6beSH. Peter Anvin	GLOBAL(initial_gs)
2432add8e23SBrian Gerst	.quad	INIT_PER_CPU_VAR(irq_stack_union)
244b32f96c7SJosh Poimboeuf	GLOBAL(initial_stack)
24522dc3918SJosh Poimboeuf	/*
24622dc3918SJosh Poimboeuf	 * The SIZEOF_PTREGS gap is a convention which helps the in-kernel
24722dc3918SJosh Poimboeuf	 * unwinder reliably detect the end of the stack.
24822dc3918SJosh Poimboeuf	 */
24922dc3918SJosh Poimboeuf	.quad  init_thread_union + THREAD_SIZE - SIZEOF_PTREGS
250b9af7c0dSSuresh Siddha	__FINITDATA
251250c2277SThomas Gleixner
252250c2277SThomas Gleixnerbad_address:
253250c2277SThomas Gleixner	jmp bad_address
254250c2277SThomas Gleixner
2558170e6beSH. Peter Anvin	__INIT
256cdeb6048SAndy LutomirskiENTRY(early_idt_handler_array)
2579900aa2fSH. Peter Anvin	# 104(%rsp) %rflags
2589900aa2fSH. Peter Anvin	#  96(%rsp) %cs
2599900aa2fSH. Peter Anvin	#  88(%rsp) %rip
2609900aa2fSH. Peter Anvin	#  80(%rsp) error code
261749c970aSAndi Kleen	i = 0
262749c970aSAndi Kleen	.rept NUM_EXCEPTION_VECTORS
263cdeb6048SAndy Lutomirski	.ifeq (EXCEPTION_ERRCODE_MASK >> i) & 1
2649900aa2fSH. Peter Anvin	pushq $0		# Dummy error code, to make stack frame uniform
2659900aa2fSH. Peter Anvin	.endif
2669900aa2fSH. Peter Anvin	pushq $i		# 72(%rsp) Vector number
267cdeb6048SAndy Lutomirski	jmp early_idt_handler_common
268749c970aSAndi Kleen	i = i + 1
269cdeb6048SAndy Lutomirski	.fill early_idt_handler_array + i*EARLY_IDT_HANDLER_SIZE - ., 1, 0xcc
270749c970aSAndi Kleen	.endr
271cdeb6048SAndy LutomirskiENDPROC(early_idt_handler_array)
2728866cd9dSRoland McGrath
273cdeb6048SAndy Lutomirskiearly_idt_handler_common:
274cdeb6048SAndy Lutomirski	/*
275cdeb6048SAndy Lutomirski	 * The stack is the hardware frame, an error code or zero, and the
276cdeb6048SAndy Lutomirski	 * vector number.
277cdeb6048SAndy Lutomirski	 */
2789900aa2fSH. Peter Anvin	cld
2799900aa2fSH. Peter Anvin
280250c2277SThomas Gleixner	incl early_recursion_flag(%rip)
2819900aa2fSH. Peter Anvin
2827bbcdb1cSAndy Lutomirski	/* The vector number is currently in the pt_regs->di slot. */
2837bbcdb1cSAndy Lutomirski	pushq %rsi				/* pt_regs->si */
2847bbcdb1cSAndy Lutomirski	movq 8(%rsp), %rsi			/* RSI = vector number */
2857bbcdb1cSAndy Lutomirski	movq %rdi, 8(%rsp)			/* pt_regs->di = RDI */
2867bbcdb1cSAndy Lutomirski	pushq %rdx				/* pt_regs->dx */
2877bbcdb1cSAndy Lutomirski	pushq %rcx				/* pt_regs->cx */
2887bbcdb1cSAndy Lutomirski	pushq %rax				/* pt_regs->ax */
2897bbcdb1cSAndy Lutomirski	pushq %r8				/* pt_regs->r8 */
2907bbcdb1cSAndy Lutomirski	pushq %r9				/* pt_regs->r9 */
2917bbcdb1cSAndy Lutomirski	pushq %r10				/* pt_regs->r10 */
2927bbcdb1cSAndy Lutomirski	pushq %r11				/* pt_regs->r11 */
2937bbcdb1cSAndy Lutomirski	pushq %rbx				/* pt_regs->bx */
2947bbcdb1cSAndy Lutomirski	pushq %rbp				/* pt_regs->bp */
2957bbcdb1cSAndy Lutomirski	pushq %r12				/* pt_regs->r12 */
2967bbcdb1cSAndy Lutomirski	pushq %r13				/* pt_regs->r13 */
2977bbcdb1cSAndy Lutomirski	pushq %r14				/* pt_regs->r14 */
2987bbcdb1cSAndy Lutomirski	pushq %r15				/* pt_regs->r15 */
2999900aa2fSH. Peter Anvin
3007bbcdb1cSAndy Lutomirski	cmpq $14,%rsi		/* Page fault? */
3018170e6beSH. Peter Anvin	jnz 10f
3027bbcdb1cSAndy Lutomirski	GET_CR2_INTO(%rdi)	/* Can clobber any volatile register if pv */
3038170e6beSH. Peter Anvin	call early_make_pgtable
3048170e6beSH. Peter Anvin	andl %eax,%eax
3057bbcdb1cSAndy Lutomirski	jz 20f			/* All good */
3068170e6beSH. Peter Anvin
3078170e6beSH. Peter Anvin10:
3087bbcdb1cSAndy Lutomirski	movq %rsp,%rdi		/* RDI = pt_regs; RSI is already trapnr */
3099900aa2fSH. Peter Anvin	call early_fixup_exception
3109900aa2fSH. Peter Anvin
3110e861fbbSAndy Lutomirski20:
3129900aa2fSH. Peter Anvin	decl early_recursion_flag(%rip)
3137bbcdb1cSAndy Lutomirski	jmp restore_regs_and_iret
314cdeb6048SAndy LutomirskiENDPROC(early_idt_handler_common)
3159900aa2fSH. Peter Anvin
3168170e6beSH. Peter Anvin	__INITDATA
3178170e6beSH. Peter Anvin
3189900aa2fSH. Peter Anvin	.balign 4
3190e861fbbSAndy LutomirskiGLOBAL(early_recursion_flag)
320250c2277SThomas Gleixner	.long 0
321250c2277SThomas Gleixner
322250c2277SThomas Gleixner#define NEXT_PAGE(name) \
323250c2277SThomas Gleixner	.balign	PAGE_SIZE; \
3248170e6beSH. Peter AnvinGLOBAL(name)
325250c2277SThomas Gleixner
326250c2277SThomas Gleixner/* Automate the creation of 1 to 1 mapping pmd entries */
327250c2277SThomas Gleixner#define PMDS(START, PERM, COUNT)			\
328250c2277SThomas Gleixner	i = 0 ;						\
329250c2277SThomas Gleixner	.rept (COUNT) ;					\
3300e192b99SCyrill Gorcunov	.quad	(START) + (i << PMD_SHIFT) + (PERM) ;	\
331250c2277SThomas Gleixner	i = i + 1 ;					\
332250c2277SThomas Gleixner	.endr
333250c2277SThomas Gleixner
3348170e6beSH. Peter Anvin	__INITDATA
33565ade2f8SKirill A. ShutemovNEXT_PAGE(early_top_pgt)
3368170e6beSH. Peter Anvin	.fill	511,8,0
337032370b9SKirill A. Shutemov#ifdef CONFIG_X86_5LEVEL
338032370b9SKirill A. Shutemov	.quad	level4_kernel_pgt - __START_KERNEL_map + _PAGE_TABLE
339032370b9SKirill A. Shutemov#else
3408170e6beSH. Peter Anvin	.quad	level3_kernel_pgt - __START_KERNEL_map + _PAGE_TABLE
341032370b9SKirill A. Shutemov#endif
3428170e6beSH. Peter Anvin
3438170e6beSH. Peter AnvinNEXT_PAGE(early_dynamic_pgts)
3448170e6beSH. Peter Anvin	.fill	512*EARLY_DYNAMIC_PAGE_TABLES,8,0
3458170e6beSH. Peter Anvin
346b9af7c0dSSuresh Siddha	.data
3478170e6beSH. Peter Anvin
3488170e6beSH. Peter Anvin#ifndef CONFIG_XEN
34965ade2f8SKirill A. ShutemovNEXT_PAGE(init_top_pgt)
3508170e6beSH. Peter Anvin	.fill	512,8,0
3518170e6beSH. Peter Anvin#else
35265ade2f8SKirill A. ShutemovNEXT_PAGE(init_top_pgt)
353250c2277SThomas Gleixner	.quad   level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
354032370b9SKirill A. Shutemov	.org    init_top_pgt + PGD_PAGE_OFFSET*8, 0
355250c2277SThomas Gleixner	.quad   level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
356032370b9SKirill A. Shutemov	.org    init_top_pgt + PGD_START_KERNEL*8, 0
357250c2277SThomas Gleixner	/* (2^48-(2*1024*1024*1024))/(2^39) = 511 */
358250c2277SThomas Gleixner	.quad   level3_kernel_pgt - __START_KERNEL_map + _PAGE_TABLE
359250c2277SThomas Gleixner
360250c2277SThomas GleixnerNEXT_PAGE(level3_ident_pgt)
361250c2277SThomas Gleixner	.quad	level2_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
362250c2277SThomas Gleixner	.fill	511, 8, 0
3638170e6beSH. Peter AnvinNEXT_PAGE(level2_ident_pgt)
3648170e6beSH. Peter Anvin	/* Since I easily can, map the first 1G.
3658170e6beSH. Peter Anvin	 * Don't set NX because code runs from these pages.
3668170e6beSH. Peter Anvin	 */
3678170e6beSH. Peter Anvin	PMDS(0, __PAGE_KERNEL_IDENT_LARGE_EXEC, PTRS_PER_PMD)
3688170e6beSH. Peter Anvin#endif
369250c2277SThomas Gleixner
370032370b9SKirill A. Shutemov#ifdef CONFIG_X86_5LEVEL
371032370b9SKirill A. ShutemovNEXT_PAGE(level4_kernel_pgt)
372032370b9SKirill A. Shutemov	.fill	511,8,0
373032370b9SKirill A. Shutemov	.quad	level3_kernel_pgt - __START_KERNEL_map + _PAGE_TABLE
374032370b9SKirill A. Shutemov#endif
375032370b9SKirill A. Shutemov
376250c2277SThomas GleixnerNEXT_PAGE(level3_kernel_pgt)
377a6523748SEduardo Habkost	.fill	L3_START_KERNEL,8,0
378250c2277SThomas Gleixner	/* (2^48-(2*1024*1024*1024)-((2^39)*511))/(2^30) = 510 */
379250c2277SThomas Gleixner	.quad	level2_kernel_pgt - __START_KERNEL_map + _KERNPG_TABLE
380250c2277SThomas Gleixner	.quad	level2_fixmap_pgt - __START_KERNEL_map + _PAGE_TABLE
381250c2277SThomas Gleixner
382250c2277SThomas GleixnerNEXT_PAGE(level2_kernel_pgt)
38388f3aec7SIngo Molnar	/*
38485eb69a1SIngo Molnar	 * 512 MB kernel mapping. We spend a full page on this pagetable
38588f3aec7SIngo Molnar	 * anyway.
38688f3aec7SIngo Molnar	 *
38788f3aec7SIngo Molnar	 * The kernel code+data+bss must not be bigger than that.
38888f3aec7SIngo Molnar	 *
38985eb69a1SIngo Molnar	 * (NOTE: at +512MB starts the module area, see MODULES_VADDR.
39088f3aec7SIngo Molnar	 *  If you want to increase this then increase MODULES_VADDR
39188f3aec7SIngo Molnar	 *  too.)
39288f3aec7SIngo Molnar	 */
3938490638cSJeremy Fitzhardinge	PMDS(0, __PAGE_KERNEL_LARGE_EXEC,
394d4afe414SIngo Molnar		KERNEL_IMAGE_SIZE/PMD_SIZE)
395250c2277SThomas Gleixner
3968170e6beSH. Peter AnvinNEXT_PAGE(level2_fixmap_pgt)
3978170e6beSH. Peter Anvin	.fill	506,8,0
3988170e6beSH. Peter Anvin	.quad	level1_fixmap_pgt - __START_KERNEL_map + _PAGE_TABLE
3998170e6beSH. Peter Anvin	/* 8MB reserved for vsyscalls + a 2MB hole = 4 + 1 entries */
4008170e6beSH. Peter Anvin	.fill	5,8,0
4018170e6beSH. Peter Anvin
4028170e6beSH. Peter AnvinNEXT_PAGE(level1_fixmap_pgt)
403250c2277SThomas Gleixner	.fill	512,8,0
404250c2277SThomas Gleixner
405250c2277SThomas Gleixner#undef PMDS
406250c2277SThomas Gleixner
407250c2277SThomas Gleixner	.data
408250c2277SThomas Gleixner	.align 16
409a939098aSGlauber Costa	.globl early_gdt_descr
410a939098aSGlauber Costaearly_gdt_descr:
411a939098aSGlauber Costa	.word	GDT_ENTRIES*8-1
4123e5d8f97STejun Heoearly_gdt_descr_base:
4132add8e23SBrian Gerst	.quad	INIT_PER_CPU_VAR(gdt_page)
414250c2277SThomas Gleixner
415250c2277SThomas GleixnerENTRY(phys_base)
416250c2277SThomas Gleixner	/* This must match the first entry in level2_kernel_pgt */
417250c2277SThomas Gleixner	.quad   0x0000000000000000
418784d5699SAl ViroEXPORT_SYMBOL(phys_base)
419250c2277SThomas Gleixner
4208c5e5ac3SJeremy Fitzhardinge#include "../../x86/xen/xen-head.S"
421250c2277SThomas Gleixner
42202b7da37STim Abbott	__PAGE_ALIGNED_BSS
4238170e6beSH. Peter AnvinNEXT_PAGE(empty_zero_page)
424250c2277SThomas Gleixner	.skip PAGE_SIZE
425784d5699SAl ViroEXPORT_SYMBOL(empty_zero_page)
426ef7f0d6aSAndrey Ryabinin
427