blob: 562d62fbd69fe0d2ee49cf49a1306696bc27706d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/kernel/head.S -- start in 32bit and switch to 64bit
3 *
4 * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
6 * Copyright (C) 2000 Karsten Keil <kkeil@suse.de>
7 * Copyright (C) 2001,2002 Andi Kleen <ak@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10
11#include <linux/linkage.h>
12#include <linux/threads.h>
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +010013#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/desc.h>
15#include <asm/segment.h>
Vivek Goyal67dcbb62007-05-02 19:27:06 +020016#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/page.h>
18#include <asm/msr.h>
19#include <asm/cache.h>
20
21/* we are not able to switch in one step to the final KERNEL ADRESS SPACE
22 * because we need identity-mapped pages on setup so define __START_KERNEL to
23 * 0x100000 for this stage
24 *
25 */
26
27 .text
Arjan van de Veneaeae0c2006-03-25 16:30:28 +010028 .section .bootstrap.text
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 .code32
30 .globl startup_32
31/* %bx: 1 if coming from smp trampoline on secondary cpu */
32startup_32:
33
34 /*
35 * At this point the CPU runs in 32bit protected mode (CS.D = 1) with
36 * paging disabled and the point of this file is to switch to 64bit
37 * long mode with a kernel mapping for kerneland to jump into the
38 * kernel virtual addresses.
39 * There is no stack until we set one up.
40 */
41
42 /* Initialize the %ds segment register */
43 movl $__KERNEL_DS,%eax
44 movl %eax,%ds
45
46 /* Load new GDT with the 64bit segments using 32bit descriptor */
47 lgdt pGDT32 - __START_KERNEL_map
48
49 /* If the CPU doesn't support CPUID this will double fault.
50 * Unfortunately it is hard to check for CPUID without a stack.
51 */
52
53 /* Check if extended functions are implemented */
54 movl $0x80000000, %eax
55 cpuid
56 cmpl $0x80000000, %eax
57 jbe no_long_mode
58 /* Check if long mode is implemented */
59 mov $0x80000001, %eax
60 cpuid
61 btl $29, %edx
62 jnc no_long_mode
63
64 /*
65 * Prepare for entering 64bits mode
66 */
67
68 /* Enable PAE mode */
69 xorl %eax, %eax
70 btsl $5, %eax
71 movl %eax, %cr4
72
73 /* Setup early boot stage 4 level pagetables */
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +010074 movl $(boot_level4_pgt - __START_KERNEL_map), %eax
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 movl %eax, %cr3
76
77 /* Setup EFER (Extended Feature Enable Register) */
78 movl $MSR_EFER, %ecx
79 rdmsr
80
81 /* Enable Long Mode */
82 btsl $_EFER_LME, %eax
83
84 /* Make changes effective */
85 wrmsr
86
87 xorl %eax, %eax
88 btsl $31, %eax /* Enable paging and in turn activate Long Mode */
89 btsl $0, %eax /* Enable protected mode */
90 /* Make changes effective */
91 movl %eax, %cr0
92 /*
93 * At this point we're in long mode but in 32bit compatibility mode
94 * with EFER.LME = 1, CS.L = 0, CS.D = 1 (and in turn
95 * EFER.LMA = 1). Now we want to jump in 64bit mode, to do that we use
96 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
97 */
98 ljmp $__KERNEL_CS, $(startup_64 - __START_KERNEL_map)
99
100 .code64
101 .org 0x100
102 .globl startup_64
103startup_64:
Vivek Goyal90b1c202007-05-02 19:27:07 +0200104ENTRY(secondary_startup_64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* We come here either from startup_32
106 * or directly from a 64bit bootloader.
107 * Since we may have come directly from a bootloader we
108 * reload the page tables here.
109 */
110
111 /* Enable PAE mode and PGE */
112 xorq %rax, %rax
113 btsq $5, %rax
114 btsq $7, %rax
115 movq %rax, %cr4
116
117 /* Setup early boot stage 4 level pagetables. */
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100118 movq $(boot_level4_pgt - __START_KERNEL_map), %rax
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 movq %rax, %cr3
120
121 /* Check if nx is implemented */
122 movl $0x80000001, %eax
123 cpuid
124 movl %edx,%edi
125
126 /* Setup EFER (Extended Feature Enable Register) */
127 movl $MSR_EFER, %ecx
128 rdmsr
129
130 /* Enable System Call */
131 btsl $_EFER_SCE, %eax
132
133 /* No Execute supported? */
134 btl $20,%edi
135 jnc 1f
136 btsl $_EFER_NX, %eax
1371:
138 /* Make changes effective */
139 wrmsr
140
141 /* Setup cr0 */
Andi Kleen3829ee62005-07-28 21:15:48 -0700142#define CR0_PM 1 /* protected mode */
143#define CR0_MP (1<<1)
144#define CR0_ET (1<<4)
145#define CR0_NE (1<<5)
146#define CR0_WP (1<<16)
147#define CR0_AM (1<<18)
148#define CR0_PAGING (1<<31)
149 movl $CR0_PM|CR0_MP|CR0_ET|CR0_NE|CR0_WP|CR0_AM|CR0_PAGING,%eax
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 /* Make changes effective */
151 movq %rax, %cr0
152
153 /* Setup a boot time stack */
154 movq init_rsp(%rip),%rsp
155
156 /* zero EFLAGS after setting rsp */
157 pushq $0
158 popfq
159
160 /*
161 * We must switch to a new descriptor in kernel space for the GDT
162 * because soon the kernel won't have access anymore to the userspace
163 * addresses where we're currently running on. We have to do that here
164 * because in 32bit we couldn't load a 64bit linear address.
165 */
166 lgdt cpu_gdt_descr
167
Zachary Amsdenffb60172007-02-13 13:26:24 +0100168 /* set up data segments. actually 0 would do too */
169 movl $__KERNEL_DS,%eax
170 movl %eax,%ds
171 movl %eax,%ss
172 movl %eax,%es
173
174 /*
175 * We don't really need to load %fs or %gs, but load them anyway
176 * to kill any stale realmode selectors. This allows execution
177 * under VT hardware.
178 */
179 movl %eax,%fs
180 movl %eax,%gs
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /*
183 * Setup up a dummy PDA. this is just for some early bootup code
184 * that does in_interrupt()
185 */
186 movl $MSR_GS_BASE,%ecx
187 movq $empty_zero_page,%rax
188 movq %rax,%rdx
189 shrq $32,%rdx
190 wrmsr
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 /* esi is pointer to real mode structure with interesting info.
193 pass it to C */
194 movl %esi, %edi
195
196 /* Finally jump to run C code and to be on real kernel address
197 * Since we are running on identity-mapped space we have to jump
Eric W. Biederman26374c72006-09-26 10:52:38 +0200198 * to the full 64bit address, this is only possible as indirect
199 * jump. In addition we need to ensure %cs is set so we make this
200 * a far return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 */
202 movq initial_code(%rip),%rax
Eric W. Biederman26374c72006-09-26 10:52:38 +0200203 pushq $0 # fake return address to stop unwinder
204 pushq $__KERNEL_CS # set correct cs
205 pushq %rax # target address in negative space
206 lretq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Jan Beuliche57113b2006-03-25 16:30:01 +0100208 /* SMP bootup changes these two */
209 .align 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .globl initial_code
211initial_code:
212 .quad x86_64_start_kernel
213 .globl init_rsp
214init_rsp:
215 .quad init_thread_union+THREAD_SIZE-8
216
217ENTRY(early_idt_handler)
Andi Kleenb9575912005-04-16 15:25:00 -0700218 cmpl $2,early_recursion_flag(%rip)
219 jz 1f
220 incl early_recursion_flag(%rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 xorl %eax,%eax
222 movq 8(%rsp),%rsi # get rip
223 movq (%rsp),%rdx
224 movq %cr2,%rcx
225 leaq early_idt_msg(%rip),%rdi
226 call early_printk
Andi Kleenb9575912005-04-16 15:25:00 -0700227 cmpl $2,early_recursion_flag(%rip)
228 jz 1f
229 call dump_stack
Andi Kleen6574ffd2006-02-16 23:42:10 +0100230#ifdef CONFIG_KALLSYMS
231 leaq early_idt_ripmsg(%rip),%rdi
232 movq 8(%rsp),%rsi # get rip again
233 call __print_symbol
234#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351: hlt
236 jmp 1b
Andi Kleenb9575912005-04-16 15:25:00 -0700237early_recursion_flag:
238 .long 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240early_idt_msg:
241 .asciz "PANIC: early exception rip %lx error %lx cr2 %lx\n"
Andi Kleen6574ffd2006-02-16 23:42:10 +0100242early_idt_ripmsg:
243 .asciz "RIP %s\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245.code32
246ENTRY(no_long_mode)
247 /* This isn't an x86-64 CPU so hang */
2481:
249 jmp 1b
250
251.org 0xf00
252 .globl pGDT32
253pGDT32:
Jan Beuliche57113b2006-03-25 16:30:01 +0100254 .word gdt_end-cpu_gdt_table-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 .long cpu_gdt_table-__START_KERNEL_map
256
257.org 0xf10
258ljumpvector:
259 .long startup_64-__START_KERNEL_map
260 .word __KERNEL_CS
261
262ENTRY(stext)
263ENTRY(_stext)
264
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100265#define NEXT_PAGE(name) \
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200266 .balign PAGE_SIZE; \
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100267ENTRY(name)
268
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200269/* Automate the creation of 1 to 1 mapping pmd entries */
270#define PMDS(START, PERM, COUNT) \
271 i = 0 ; \
272 .rept (COUNT) ; \
273 .quad (START) + (i << 21) + (PERM) ; \
274 i = i + 1 ; \
275 .endr
276
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100277NEXT_PAGE(init_level4_pgt)
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100278 /* This gets initialized in x86_64_start_kernel */
279 .fill 512,8,0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100281NEXT_PAGE(level3_ident_pgt)
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200282 .quad level2_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 .fill 511,8,0
284
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100285NEXT_PAGE(level3_kernel_pgt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 .fill 510,8,0
287 /* (2^48-(2*1024*1024*1024)-((2^39)*511))/(2^30) = 510 */
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200288 .quad level2_kernel_pgt - __START_KERNEL_map + _KERNPG_TABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 .fill 1,8,0
290
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100291NEXT_PAGE(level2_ident_pgt)
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200292 /* Since I easily can, map the first 1G.
293 * Don't set NX because code runs from these pages.
294 */
295 PMDS(0x0000000000000000, __PAGE_KERNEL_LARGE_EXEC, PTRS_PER_PMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100297NEXT_PAGE(level2_kernel_pgt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* 40MB kernel mapping. The kernel code cannot be bigger than that.
299 When you change this change KERNEL_TEXT_SIZE in page.h too. */
300 /* (2^48-(2*1024*1024*1024)-((2^39)*511)-((2^30)*510)) = 0 */
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200301 PMDS(0x0000000000000000, __PAGE_KERNEL_LARGE_EXEC|_PAGE_GLOBAL,
302 KERNEL_TEXT_SIZE/PMD_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 /* Module mapping starts here */
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200304 .fill (PTRS_PER_PMD - (KERNEL_TEXT_SIZE/PMD_SIZE)),8,0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200306#undef PMDS
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100307#undef NEXT_PAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100309 .data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311#ifdef CONFIG_ACPI_SLEEP
Jan Beulichf0cf5d12006-01-17 07:03:32 +0100312 .align PAGE_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313ENTRY(wakeup_level4_pgt)
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200314 .quad level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
315 .fill 510,8,0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* (2^48-(2*1024*1024*1024))/(2^39) = 511 */
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200317 .quad level3_kernel_pgt - __START_KERNEL_map + _KERNPG_TABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#endif
319
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100320#ifndef CONFIG_HOTPLUG_CPU
321 __INITDATA
322#endif
323 /*
324 * This default setting generates an ident mapping at address 0x100000
325 * and a mapping for the kernel that precisely maps virtual address
326 * 0xffffffff80000000 to physical address 0x000000. (always using
327 * 2Mbyte large pages provided by PAE mode)
328 */
329 .align PAGE_SIZE
330ENTRY(boot_level4_pgt)
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200331 .quad level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
332 .fill 257,8,0
333 .quad level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
334 .fill 252,8,0
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100335 /* (2^48-(2*1024*1024*1024))/(2^39) = 511 */
Vivek Goyal67dcbb62007-05-02 19:27:06 +0200336 .quad level3_kernel_pgt - __START_KERNEL_map + _PAGE_TABLE
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 .data
339
340 .align 16
341 .globl cpu_gdt_descr
342cpu_gdt_descr:
Jan Beuliche57113b2006-03-25 16:30:01 +0100343 .word gdt_end-cpu_gdt_table-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344gdt:
345 .quad cpu_gdt_table
346#ifdef CONFIG_SMP
347 .rept NR_CPUS-1
348 .word 0
349 .quad 0
350 .endr
351#endif
352
353/* We need valid kernel segments for data and code in long mode too
354 * IRET will check the segment types kkeil 2000/10/28
355 * Also sysret mandates a special GDT layout
356 */
357
Jan Beuliche57113b2006-03-25 16:30:01 +0100358 .section .data.page_aligned, "aw"
359 .align PAGE_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361/* The TLS descriptors are currently at a different place compared to i386.
362 Hopefully nobody expects them at a fixed place (Wine?) */
363
364ENTRY(cpu_gdt_table)
365 .quad 0x0000000000000000 /* NULL descriptor */
Vivek Goyal30f47282007-05-02 19:27:07 +0200366 .quad 0x00cf9b000000ffff /* __KERNEL32_CS */
367 .quad 0x00af9b000000ffff /* __KERNEL_CS */
368 .quad 0x00cf93000000ffff /* __KERNEL_DS */
369 .quad 0x00cffb000000ffff /* __USER32_CS */
370 .quad 0x00cff3000000ffff /* __USER_DS, __USER32_DS */
371 .quad 0x00affb000000ffff /* __USER_CS */
Andi Kleencdc4b9c2006-01-11 22:46:24 +0100372 .quad 0x0 /* unused */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 .quad 0,0 /* TSS */
374 .quad 0,0 /* LDT */
375 .quad 0,0,0 /* three TLS descriptors */
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200376 .quad 0x0000f40000000000 /* node/CPU stored in limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377gdt_end:
378 /* asm/segment.h:GDT_ENTRIES must match this */
379 /* This should be a multiple of the cache line size */
Ravikiran G Thirumalaic11efdf2006-01-11 22:43:57 +0100380 /* GDTs of other CPUs are now dynamically allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Ravikiran G Thirumalaic11efdf2006-01-11 22:43:57 +0100382 /* zero the remaining page */
383 .fill PAGE_SIZE / 8 - GDT_ENTRIES,8,0
384
Jan Beuliche57113b2006-03-25 16:30:01 +0100385 .section .bss, "aw", @nobits
386 .align L1_CACHE_BYTES
387ENTRY(idt_table)
388 .skip 256 * 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Jan Beuliche57113b2006-03-25 16:30:01 +0100390 .section .bss.page_aligned, "aw", @nobits
391 .align PAGE_SIZE
392ENTRY(empty_zero_page)
393 .skip PAGE_SIZE