blob: 13eee63c7bb596a8bf9a3de4f7c4157ab22608cf [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 *
13 * In fact we don't actually need a stack so we don't
14 * set one up.
15 *
16 * On entry to trampoline_data, the processor is in real mode
17 * with 16-bit addressing and 16-bit data. CS has some value
18 * and IP is zero. Thus, data addresses need to be absolute
19 * (no relocation) and are taken with regard to r_base.
20 *
Vivek Goyal90b1c202007-05-02 19:27:07 +020021 * With the addition of trampoline_level4_pgt this code can
22 * now enter a 64bit kernel that lives at arbitrary 64bit
23 * physical addresses.
24 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * If you work on this file, check the object module with objdump
26 * --full-contents --reloc to make sure there are no relocation
Vivek Goyal90b1c202007-05-02 19:27:07 +020027 * entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
30#include <linux/linkage.h>
Vivek Goyal90b1c202007-05-02 19:27:07 +020031#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/page.h>
Vivek Goyal90b1c202007-05-02 19:27:07 +020033#include <asm/msr.h>
34#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36.data
37
38.code16
39
40ENTRY(trampoline_data)
41r_base = .
Vivek Goyal90b1c202007-05-02 19:27:07 +020042 cli # We should be safe anyway
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 wbinvd
44 mov %cs, %ax # Code and data in the same place
45 mov %ax, %ds
Vivek Goyal90b1c202007-05-02 19:27:07 +020046 mov %ax, %es
47 mov %ax, %ss
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 movl $0xA5A5A5A5, trampoline_data - r_base
51 # write marker for master knows we're running
52
Vivek Goyal90b1c202007-05-02 19:27:07 +020053 # Setup stack
54 movw $(trampoline_stack_end - r_base), %sp
55
56 call verify_cpu # Verify the cpu supports long mode
57
58 mov %cs, %ax
59 movzx %ax, %esi # Find the 32bit trampoline location
60 shll $4, %esi
61
62 # Fixup the vectors
63 addl %esi, startup_32_vector - r_base
64 addl %esi, startup_64_vector - r_base
65 addl %esi, tgdt + 2 - r_base # Fixup the gdt pointer
66
Vivek Goyal983d5db2006-01-12 03:35:20 +010067 /*
68 * GDT tables in non default location kernel can be beyond 16MB and
69 * lgdt will not be able to load the address as in real mode default
70 * operand size is 16bit. Use lgdtl instead to force operand size
71 * to 32 bit.
72 */
73
Vivek Goyal90b1c202007-05-02 19:27:07 +020074 lidtl tidt - r_base # load idt with 0, 0
75 lgdtl tgdt - r_base # load gdt with whatever is appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 xor %ax, %ax
78 inc %ax # protected mode (PE) bit
79 lmsw %ax # into protected mode
Vivek Goyal90b1c202007-05-02 19:27:07 +020080
81 # flush prefetch and jump to startup_32
82 ljmpl *(startup_32_vector - r_base)
83
84 .code32
85 .balign 4
86startup_32:
87 movl $__KERNEL_DS, %eax # Initialize the %ds segment register
88 movl %eax, %ds
89
90 xorl %eax, %eax
91 btsl $5, %eax # Enable PAE mode
92 movl %eax, %cr4
93
94 # Setup trampoline 4 level pagetables
95 leal (trampoline_level4_pgt - r_base)(%esi), %eax
96 movl %eax, %cr3
97
98 movl $MSR_EFER, %ecx
99 movl $(1 << _EFER_LME), %eax # Enable Long Mode
100 xorl %edx, %edx
101 wrmsr
102
103 xorl %eax, %eax
104 btsl $31, %eax # Enable paging and in turn activate Long Mode
105 btsl $0, %eax # Enable protected mode
106 movl %eax, %cr0
107
108 /*
109 * At this point we're in long mode but in 32bit compatibility mode
110 * with EFER.LME = 1, CS.L = 0, CS.D = 1 (and in turn
111 * EFER.LMA = 1). Now we want to jump in 64bit mode, to do that we use
112 * the new gdt/idt that has __KERNEL_CS with CS.L = 1.
113 */
114 ljmp *(startup_64_vector - r_base)(%esi)
115
116 .code64
117 .balign 4
118startup_64:
119 # Now jump into the kernel using virtual addresses
120 movq $secondary_startup_64, %rax
121 jmp *%rax
122
123 .code16
124verify_cpu:
125 pushl $0 # Kill any dangerous flags
126 popfl
127
128 /* minimum CPUID flags for x86-64 */
129 /* see http://www.x86-64.org/lists/discuss/msg02971.html */
130#define REQUIRED_MASK1 ((1<<0)|(1<<3)|(1<<4)|(1<<5)|(1<<6)|(1<<8)|\
131 (1<<13)|(1<<15)|(1<<24)|(1<<25)|(1<<26))
132#define REQUIRED_MASK2 (1<<29)
133
134 pushfl # check for cpuid
135 popl %eax
136 movl %eax, %ebx
137 xorl $0x200000,%eax
138 pushl %eax
139 popfl
140 pushfl
141 popl %eax
142 pushl %ebx
143 popfl
144 cmpl %eax, %ebx
145 jz no_longmode
146
147 xorl %eax, %eax # See if cpuid 1 is implemented
148 cpuid
149 cmpl $0x1, %eax
150 jb no_longmode
151
152 movl $0x01, %eax # Does the cpu have what it takes?
153 cpuid
154 andl $REQUIRED_MASK1, %edx
155 xorl $REQUIRED_MASK1, %edx
156 jnz no_longmode
157
158 movl $0x80000000, %eax # See if extended cpuid is implemented
159 cpuid
160 cmpl $0x80000001, %eax
161 jb no_longmode
162
163 movl $0x80000001, %eax # Does the cpu have what it takes?
164 cpuid
165 andl $REQUIRED_MASK2, %edx
166 xorl $REQUIRED_MASK2, %edx
167 jnz no_longmode
168
169 ret # The cpu supports long mode
170
171no_longmode:
172 hlt
173 jmp no_longmode
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 # Careful these need to be in the same 64K segment as the above;
Vivek Goyal90b1c202007-05-02 19:27:07 +0200177tidt:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .word 0 # idt limit = 0
179 .word 0, 0 # idt base = 0L
180
Vivek Goyal90b1c202007-05-02 19:27:07 +0200181 # Duplicate the global descriptor table
182 # so the kernel can live anywhere
183 .balign 4
184tgdt:
185 .short tgdt_end - tgdt # gdt limit
186 .long tgdt - r_base
187 .short 0
188 .quad 0x00cf9b000000ffff # __KERNEL32_CS
189 .quad 0x00af9b000000ffff # __KERNEL_CS
190 .quad 0x00cf93000000ffff # __KERNEL_DS
191tgdt_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Vivek Goyal90b1c202007-05-02 19:27:07 +0200193 .balign 4
194startup_32_vector:
195 .long startup_32 - r_base
196 .word __KERNEL32_CS, 0
197
198 .balign 4
199startup_64_vector:
200 .long startup_64 - r_base
201 .word __KERNEL_CS, 0
202
203trampoline_stack:
204 .org 0x1000
205trampoline_stack_end:
206ENTRY(trampoline_level4_pgt)
207 .quad level3_ident_pgt - __START_KERNEL_map + _KERNPG_TABLE
208 .fill 510,8,0
209 .quad level3_kernel_pgt - __START_KERNEL_map + _KERNPG_TABLE
210
211ENTRY(trampoline_end)