blob: 4aedd0bcee4cf58162a7c1296aee4b9bd9691687 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * Trampoline.S Derived from Setup.S by Linus Torvalds
4 *
5 * 4 Jan 1997 Michael Chastain: changed to gnu as.
Vivek Goyal90b1c202007-05-02 19:27:07 +02006 * 15 Sept 2005 Eric Biederman: 64bit PIC support
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Entry: CS:IP point to the start of our code, we are
9 * in real mode with no stack, but the rest of the
10 * trampoline page to make our stack and everything else
11 * is a mystery.
12 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * On entry to trampoline_data, the processor is in real mode
14 * with 16-bit addressing and 16-bit data. CS has some value
15 * and IP is zero. Thus, data addresses need to be absolute
16 * (no relocation) and are taken with regard to r_base.
17 *
Vivek Goyal90b1c202007-05-02 19:27:07 +020018 * With the addition of trampoline_level4_pgt this code can
19 * now enter a 64bit kernel that lives at arbitrary 64bit
20 * physical addresses.
21 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * If you work on this file, check the object module with objdump
23 * --full-contents --reloc to make sure there are no relocation
Vivek Goyal90b1c202007-05-02 19:27:07 +020024 * entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
27#include <linux/linkage.h>
Vivek Goyal90b1c202007-05-02 19:27:07 +020028#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/page.h>
Vivek Goyal90b1c202007-05-02 19:27:07 +020030#include <asm/msr.h>
31#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Jan Beulich121d7bf2007-10-17 18:04:37 +020033/* We can free up trampoline after bootup if cpu hotplug is not supported. */
34#ifndef CONFIG_HOTPLUG_CPU
35.section .init.data, "aw", @progbits
36#else
37.section .rodata, "a", @progbits
38#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40.code16
41
42ENTRY(trampoline_data)
43r_base = .
Vivek Goyal90b1c202007-05-02 19:27:07 +020044 cli # We should be safe anyway
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 wbinvd
46 mov %cs, %ax # Code and data in the same place
47 mov %ax, %ds
Vivek Goyal90b1c202007-05-02 19:27:07 +020048 mov %ax, %es
49 mov %ax, %ss
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 movl $0xA5A5A5A5, trampoline_data - r_base
53 # write marker for master knows we're running
54
Vivek Goyal90b1c202007-05-02 19:27:07 +020055 # Setup stack
56 movw $(trampoline_stack_end - r_base), %sp
57
58 call verify_cpu # Verify the cpu supports long mode
Vivek Goyala4831e02007-05-02 19:27:08 +020059 testl %eax, %eax # Check for return code
60 jnz no_longmode
Vivek Goyal90b1c202007-05-02 19:27:07 +020061
62 mov %cs, %ax
63 movzx %ax, %esi # Find the 32bit trampoline location
64 shll $4, %esi
65
66 # Fixup the vectors
67 addl %esi, startup_32_vector - r_base
68 addl %esi, startup_64_vector - r_base
69 addl %esi, tgdt + 2 - r_base # Fixup the gdt pointer
70
Vivek Goyal983d5db2006-01-12 03:35:20 +010071 /*
72 * GDT tables in non default location kernel can be beyond 16MB and
73 * lgdt will not be able to load the address as in real mode default
74 * operand size is 16bit. Use lgdtl instead to force operand size
75 * to 32 bit.
76 */
77
Vivek Goyal90b1c202007-05-02 19:27:07 +020078 lidtl tidt - r_base # load idt with 0, 0
79 lgdtl tgdt - r_base # load gdt with whatever is appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 xor %ax, %ax
82 inc %ax # protected mode (PE) bit
83 lmsw %ax # into protected mode
Vivek Goyal90b1c202007-05-02 19:27:07 +020084
85 # flush prefetch and jump to startup_32
86 ljmpl *(startup_32_vector - r_base)
87
88 .code32
89 .balign 4
90startup_32:
91 movl $__KERNEL_DS, %eax # Initialize the %ds segment register
92 movl %eax, %ds
93
94 xorl %eax, %eax
95 btsl $5, %eax # Enable PAE mode
96 movl %eax, %cr4
97
98 # Setup trampoline 4 level pagetables
99 leal (trampoline_level4_pgt - r_base)(%esi), %eax
100 movl %eax, %cr3
101
102 movl $MSR_EFER, %ecx
103 movl $(1 << _EFER_LME), %eax # Enable Long Mode
104 xorl %edx, %edx
105 wrmsr
106
107 xorl %eax, %eax
108 btsl $31, %eax # Enable paging and in turn activate Long Mode
109 btsl $0, %eax # Enable protected mode
110 movl %eax, %cr0
111
112 /*
113 * At this point we're in long mode but in 32bit compatibility mode
114 * with EFER.LME = 1, CS.L = 0, CS.D = 1 (and in turn
115 * EFER.LMA = 1). Now we want to jump in 64bit mode, to do that we use
116 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
117 */
118 ljmp *(startup_64_vector - r_base)(%esi)
119
120 .code64
121 .balign 4
122startup_64:
123 # Now jump into the kernel using virtual addresses
124 movq $secondary_startup_64, %rax
125 jmp *%rax
126
127 .code16
Vivek Goyal90b1c202007-05-02 19:27:07 +0200128no_longmode:
129 hlt
130 jmp no_longmode
Thomas Gleixnere0a84f62007-10-11 11:15:19 +0200131#include "verify_cpu_64.S"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 # Careful these need to be in the same 64K segment as the above;
Vivek Goyal90b1c202007-05-02 19:27:07 +0200134tidt:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .word 0 # idt limit = 0
136 .word 0, 0 # idt base = 0L
137
Vivek Goyal90b1c202007-05-02 19:27:07 +0200138 # Duplicate the global descriptor table
139 # so the kernel can live anywhere
140 .balign 4
141tgdt:
142 .short tgdt_end - tgdt # gdt limit
143 .long tgdt - r_base
144 .short 0
145 .quad 0x00cf9b000000ffff # __KERNEL32_CS
146 .quad 0x00af9b000000ffff # __KERNEL_CS
147 .quad 0x00cf93000000ffff # __KERNEL_DS
148tgdt_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Vivek Goyal90b1c202007-05-02 19:27:07 +0200150 .balign 4
151startup_32_vector:
152 .long startup_32 - r_base
153 .word __KERNEL32_CS, 0
154
155 .balign 4
156startup_64_vector:
157 .long startup_64 - r_base
158 .word __KERNEL_CS, 0
159
160trampoline_stack:
161 .org 0x1000
162trampoline_stack_end:
163ENTRY(trampoline_level4_pgt)
164 .quad level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
165 .fill 510,8,0
166 .quad level3_kernel_pgt - __START_KERNEL_map + _KERNPG_TABLE
167
168ENTRY(trampoline_end)