blob: 451c0a7ef7fd8c2faa4b0a5d78e30ce538317b17 [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.
6 *
7 * This is only used for booting secondary CPUs in SMP machine
8 *
9 * Entry: CS:IP point to the start of our code, we are
10 * in real mode with no stack, but the rest of the
11 * trampoline page to make our stack and everything else
12 * is a mystery.
13 *
Pavel Machek94a8a7a2008-02-04 16:48:01 +010014 * We jump into arch/x86/kernel/head_32.S.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
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 *
21 * If you work on this file, check the object module with
22 * objdump --reloc to make sure there are no relocation
23 * entries except for:
24 *
25 * TYPE VALUE
26 * R_386_32 startup_32_smp
Sebastien Dugue52de74d2007-05-02 19:27:10 +020027 * R_386_32 boot_gdt
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
30#include <linux/linkage.h>
Jan Beulich5f685632009-09-04 09:16:22 +010031#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/segment.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080033#include <asm/page_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
H. Peter Anvin4822b7f2011-02-14 15:34:57 -080035#ifdef CONFIG_SMP
36
37 .section ".x86_trampoline","a"
38 .balign PAGE_SIZE
39 .code16
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41ENTRY(trampoline_data)
42r_base = .
43 wbinvd # Needed for NUMA-Q should be harmless for others
44 mov %cs, %ax # Code and data in the same place
45 mov %ax, %ds
46
47 cli # We should be safe anyway
48
H. Peter Anvin4822b7f2011-02-14 15:34:57 -080049 movl $0xA5A5A5A5, trampoline_status - r_base
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 # write marker for master knows we're running
51
52 /* GDT tables in non default location kernel can be beyond 16MB and
53 * lgdt will not be able to load the address as in real mode default
54 * operand size is 16bit. Use lgdtl instead to force operand size
55 * to 32 bit.
56 */
57
Sebastien Dugue52de74d2007-05-02 19:27:10 +020058 lidtl boot_idt_descr - r_base # load idt with 0, 0
59 lgdtl boot_gdt_descr - r_base # load gdt with whatever is appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 xor %ax, %ax
62 inc %ax # protected mode (PE) bit
63 lmsw %ax # into protected mode
64 # flush prefetch and jump to startup_32_smp in arch/i386/kernel/head.S
65 ljmpl $__BOOT_CS, $(startup_32_smp-__PAGE_OFFSET)
66
67 # These need to be in the same 64K segment as the above;
68 # hence we don't use the boot_gdt_descr defined in head.S
Sebastien Dugue52de74d2007-05-02 19:27:10 +020069boot_gdt_descr:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 .word __BOOT_DS + 7 # gdt limit
Sebastien Dugue52de74d2007-05-02 19:27:10 +020071 .long boot_gdt - __PAGE_OFFSET # gdt base
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Sebastien Dugue52de74d2007-05-02 19:27:10 +020073boot_idt_descr:
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 .word 0 # idt limit = 0
75 .long 0 # idt base = 0L
76
H. Peter Anvin4822b7f2011-02-14 15:34:57 -080077ENTRY(trampoline_status)
78 .long 0
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080.globl trampoline_end
81trampoline_end:
H. Peter Anvin4822b7f2011-02-14 15:34:57 -080082
83#endif /* CONFIG_SMP */