1 // SPDX-License-Identifier: GPL-2.0-only
2 /* -*- linux-c -*- ------------------------------------------------------- *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright 2007 rPath, Inc. - All Rights Reserved
7 * ----------------------------------------------------------------------- */
10 * Prepare the machine for transition to protected mode.
14 #include <asm/segment.h>
17 * Invoke the realmode switch hook if present; otherwise
18 * disable all interrupts.
20 static void realmode_switch_hook(void)
22 if (boot_params
.hdr
.realmode_swtch
) {
23 asm volatile("lcallw *%0"
24 : : "m" (boot_params
.hdr
.realmode_swtch
)
25 : "eax", "ebx", "ecx", "edx");
28 outb(0x80, 0x70); /* Disable NMI */
34 * Disable all interrupts at the legacy PIC.
36 static void mask_all_interrupts(void)
38 outb(0xff, 0xa1); /* Mask all interrupts on the secondary PIC */
40 outb(0xfb, 0x21); /* Mask all but cascade on the primary PIC */
45 * Reset IGNNE# if asserted in the FPU.
47 static void reset_coprocessor(void)
62 } __attribute__((packed
));
64 static void setup_gdt(void)
66 /* There are machines which are known to not boot with the GDT
67 being 8-byte unaligned. Intel recommends 16 byte alignment. */
68 static const u64 boot_gdt
[] __attribute__((aligned(16))) = {
69 /* CS: code, read/execute, 4 GB, base 0 */
70 [GDT_ENTRY_BOOT_CS
] = GDT_ENTRY(0xc09b, 0, 0xfffff),
71 /* DS: data, read/write, 4 GB, base 0 */
72 [GDT_ENTRY_BOOT_DS
] = GDT_ENTRY(0xc093, 0, 0xfffff),
73 /* TSS: 32-bit tss, 104 bytes, base 4096 */
74 /* We only have a TSS here to keep Intel VT happy;
75 we don't actually use it for anything. */
76 [GDT_ENTRY_BOOT_TSS
] = GDT_ENTRY(0x0089, 4096, 103),
78 /* Xen HVM incorrectly stores a pointer to the gdt_ptr, instead
79 of the gdt_ptr contents. Thus, make it static so it will
80 stay in memory, at least long enough that we switch to the
82 static struct gdt_ptr gdt
;
84 gdt
.len
= sizeof(boot_gdt
)-1;
85 gdt
.ptr
= (u32
)&boot_gdt
+ (ds() << 4);
87 asm volatile("lgdtl %0" : : "m" (gdt
));
93 static void setup_idt(void)
95 static const struct gdt_ptr null_idt
= {0, 0};
96 asm volatile("lidtl %0" : : "m" (null_idt
));
100 * Actual invocation sequence
102 void go_to_protected_mode(void)
104 /* Hook before leaving real mode, also disables interrupts */
105 realmode_switch_hook();
107 /* Enable the A20 gate */
109 puts("A20 gate not responding, unable to boot...\n");
113 /* Reset coprocessor (IGNNE#) */
116 /* Mask all interrupts in the PIC */
117 mask_all_interrupts();
119 /* Actual transition to protected mode... */
122 protected_mode_jump(boot_params
.hdr
.code32_start
,
123 (u32
)&boot_params
+ (ds() << 4));