1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2014, 2015 Intel Corporation; author Matt Fleming
5 * Early support for invoking 32-bit EFI services from a 64-bit kernel.
7 * Because this thunking occurs before ExitBootServices() we have to
8 * restore the firmware's 32-bit GDT before we make EFI serivce calls,
9 * since the firmware's 32-bit IDT is still currently installed and it
10 * needs to be able to service interrupts.
12 * On the plus side, we don't have to worry about mangling 64-bit
13 * addresses into 32-bits because we're executing with an identify
14 * mapped pagetable and haven't transitioned to 64-bit virtual addresses
18 #include <linux/linkage.h>
20 #include <asm/page_types.h>
21 #include <asm/processor-flags.h>
22 #include <asm/segment.h>
31 leaq efi_exit32(%rip), %rax
33 leaq efi_gdt64(%rip), %rax
35 movl %eax, 2(%rax) /* Fixup the gdt base address */
45 * Convert x86-64 ABI params to i386 ABI
59 movq %rbx, func_rt_ptr(%rip)
62 * Switch to gdt with 32-bit segments. This is the firmware GDT
63 * that was installed when the kernel started executing. This
64 * pointer was saved at the EFI stub entry point in head_64.S.
66 leaq efi32_boot_gdt(%rip), %rax
70 leaq efi_enter32(%rip), %rax
86 * Convert 32-bit status code into 64-bit.
91 andl $0x0fffffff, %ecx
92 andl $0xf0000000, %eax
103 movq func_rt_ptr(%rip), %rax
111 * EFI service pointer must be in %edi.
113 * The stack should represent the 32-bit calling convention.
116 movl $__KERNEL_DS, %eax
121 /* Reload pgtables */
127 btrl $X86_CR0_PG_BIT, %eax
130 /* Disable long mode via EFER */
133 btrl $_EFER_LME, %eax
138 /* We must preserve return value */
142 * Some firmware will return with interrupts enabled. Be sure to
143 * disable them before we switch GDTs.
152 btsl $(X86_CR4_PAE_BIT), %eax
160 btsl $_EFER_LME, %eax
172 btsl $X86_CR0_PG_BIT, %eax
179 .global efi32_boot_gdt
180 efi32_boot_gdt: .word 0
189 .word efi_gdt64_end - efi_gdt64
190 .long 0 /* Filled out by user */
192 .quad 0x0000000000000000 /* NULL descriptor */
193 .quad 0x00af9a000000ffff /* __KERNEL_CS */
194 .quad 0x00cf92000000ffff /* __KERNEL_DS */
195 .quad 0x0080890000000000 /* TS descriptor */
196 .quad 0x0000000000000000 /* TS continued */