• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2014 Intel Corporation; author Matt Fleming
4 *
5 * Support for invoking 32-bit EFI runtime services from a 64-bit
6 * kernel.
7 *
8 * The below thunking functions are only used after ExitBootServices()
9 * has been called. This simplifies things considerably as compared with
10 * the early EFI thunking because we can leave all the kernel state
11 * intact (GDT, IDT, etc) and simply invoke the the 32-bit EFI runtime
12 * services from __KERNEL32_CS. This means we can continue to service
13 * interrupts across an EFI mixed mode call.
14 *
15 * We do however, need to handle the fact that we're running in a full
16 * 64-bit virtual address space. Things like the stack and instruction
17 * addresses need to be accessible by the 32-bit firmware, so we rely on
18 * using the identity mappings in the EFI page table to access the stack
19 * and kernel text (see efi_setup_page_tables()).
20 */
21
22#include <linux/linkage.h>
23#include <asm/page_types.h>
24#include <asm/segment.h>
25#include <asm/nospec-branch.h>
26
27	.text
28	.code64
29SYM_CODE_START(__efi64_thunk)
30	push	%rbp
31	push	%rbx
32
33	/*
34	 * Switch to 1:1 mapped 32-bit stack pointer.
35	 */
36	movq	%rsp, %rax
37	movq	efi_scratch(%rip), %rsp
38	push	%rax
39
40	/*
41	 * Calculate the physical address of the kernel text.
42	 */
43	movq	$__START_KERNEL_map, %rax
44	subq	phys_base(%rip), %rax
45
46	leaq	1f(%rip), %rbp
47	leaq	2f(%rip), %rbx
48	subq	%rax, %rbp
49	subq	%rax, %rbx
50
51	subq	$28, %rsp
52	movl	%ebx, 0x0(%rsp)		/* return address */
53	movl	%esi, 0x4(%rsp)
54	movl	%edx, 0x8(%rsp)
55	movl	%ecx, 0xc(%rsp)
56	movl	%r8d, 0x10(%rsp)
57	movl	%r9d, 0x14(%rsp)
58
59	/* Switch to 32-bit descriptor */
60	pushq	$__KERNEL32_CS
61	pushq	%rdi			/* EFI runtime service address */
62	lretq
63
641:	movq	24(%rsp), %rsp
65	pop	%rbx
66	pop	%rbp
67	ANNOTATE_UNRET_SAFE
68	ret
69	int3
70
71	.code32
722:	pushl	$__KERNEL_CS
73	pushl	%ebp
74	lret
75SYM_CODE_END(__efi64_thunk)
76