]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/arm64/include/asm/efi.h
Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[mirror_ubuntu-jammy-kernel.git] / arch / arm64 / include / asm / efi.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
f84d0275
MS
2#ifndef _ASM_EFI_H
3#define _ASM_EFI_H
4
24d7c494 5#include <asm/boot.h>
39bc88e5 6#include <asm/cpufeature.h>
4328825d 7#include <asm/fpsimd.h>
f84d0275 8#include <asm/io.h>
170976bc 9#include <asm/memory.h>
f7d92489 10#include <asm/mmu_context.h>
e15dd494 11#include <asm/neon.h>
ee6cab5d 12#include <asm/ptrace.h>
f7d92489 13#include <asm/tlbflush.h>
f84d0275
MS
14
15#ifdef CONFIG_EFI
16extern void efi_init(void);
f84d0275
MS
17#else
18#define efi_init()
f84d0275
MS
19#endif
20
f7d92489 21int efi_create_mapping(struct mm_struct *mm, efi_memory_desc_t *md);
bd264d04 22int efi_set_mapping_permissions(struct mm_struct *mm, efi_memory_desc_t *md);
789957ef 23
489f80f7 24#define arch_efi_call_virt_setup() \
e15dd494 25({ \
f3cdfd23 26 efi_virtmap_load(); \
4328825d 27 __efi_fpsimd_begin(); \
e15dd494
AB
28})
29
80e75596 30#define arch_efi_call_virt(p, f, args...) \
e15dd494 31({ \
f3cdfd23 32 efi_##f##_t *__f; \
80e75596 33 __f = p->f; \
489f80f7
MR
34 __f(args); \
35})
36
37#define arch_efi_call_virt_teardown() \
38({ \
4328825d 39 __efi_fpsimd_end(); \
f3cdfd23 40 efi_virtmap_unload(); \
e15dd494
AB
41})
42
ee6cab5d
MR
43#define ARCH_EFI_IRQ_FLAGS_MASK (PSR_D_BIT | PSR_A_BIT | PSR_I_BIT | PSR_F_BIT)
44
a13b0077
AB
45/* arch specific definitions used by the stub code */
46
47/*
48 * AArch64 requires the DTB to be 8-byte aligned in the first 512MiB from
49 * start of kernel and may not cross a 2MiB boundary. We set alignment to
50 * 2MiB so we know it won't cross a 2MiB boundary.
51 */
52#define EFI_FDT_ALIGN SZ_2M /* used by allocate_new_fdt_and_exit_boot() */
138728dd 53
e3067861
MR
54/*
55 * In some configurations (e.g. VMAP_STACK && 64K pages), stacks built into the
56 * kernel need greater alignment than we require the segments to be padded to.
57 */
58#define EFI_KIMG_ALIGN \
59 (SEGMENT_ALIGN > THREAD_ALIGN ? SEGMENT_ALIGN : THREAD_ALIGN)
170976bc 60
138728dd
AB
61/* on arm64, the FDT may be located anywhere in system RAM */
62static inline unsigned long efi_get_max_fdt_addr(unsigned long dram_base)
63{
64 return ULONG_MAX;
65}
66
67/*
68 * On arm64, we have to ensure that the initrd ends up in the linear region,
69 * which is a 1 GB aligned region of size '1UL << (VA_BITS - 1)' that is
70 * guaranteed to cover the kernel Image.
71 *
72 * Since the EFI stub is part of the kernel Image, we can relax the
73 * usual requirements in Documentation/arm64/booting.txt, which still
74 * apply to other bootloaders, and are required for some kernel
75 * configurations.
76 */
77static inline unsigned long efi_get_max_initrd_addr(unsigned long dram_base,
78 unsigned long image_addr)
79{
80 return (image_addr & ~(SZ_1G - 1UL)) + (1UL << (VA_BITS - 1));
81}
a13b0077 82
fc372064
AB
83#define efi_call_early(f, ...) sys_table_arg->boottime->f(__VA_ARGS__)
84#define __efi_call_early(f, ...) f(__VA_ARGS__)
6d0ca4a4 85#define efi_call_runtime(f, ...) sys_table_arg->runtime->f(__VA_ARGS__)
fc372064 86#define efi_is_64bit() (true)
a13b0077 87
3552fdf2
LW
88#define efi_call_proto(protocol, f, instance, ...) \
89 ((protocol##_t *)instance)->f(instance, ##__VA_ARGS__)
90
57fdb89a
AB
91#define alloc_screen_info(x...) &screen_info
92#define free_screen_info(x...)
93
760b61d7
AB
94/* redeclare as 'hidden' so the compiler will generate relative references */
95extern struct screen_info screen_info __attribute__((__visibility__("hidden")));
96
9822504c
AB
97static inline void efifb_setup_from_dmi(struct screen_info *si, const char *opt)
98{
99}
100
1bd0abb0
AB
101#define EFI_ALLOC_ALIGN SZ_64K
102
f3cdfd23 103/*
60305db9 104 * On ARM systems, virtually remapped UEFI runtime services are set up in two
f3cdfd23
AB
105 * distinct stages:
106 * - The stub retrieves the final version of the memory map from UEFI, populates
107 * the virt_addr fields and calls the SetVirtualAddressMap() [SVAM] runtime
108 * service to communicate the new mapping to the firmware (Note that the new
109 * mapping is not live at this time)
60305db9
AB
110 * - During an early initcall(), the EFI system table is permanently remapped
111 * and the virtual remapping of the UEFI Runtime Services regions is loaded
112 * into a private set of page tables. If this all succeeds, the Runtime
113 * Services are enabled and the EFI_RUNTIME_SERVICES bit set.
f3cdfd23 114 */
f3cdfd23 115
f7d92489
AB
116static inline void efi_set_pgd(struct mm_struct *mm)
117{
39bc88e5
CM
118 __switch_mm(mm);
119
120 if (system_uses_ttbr0_pan()) {
121 if (mm != current->active_mm) {
122 /*
123 * Update the current thread's saved ttbr0 since it is
6b88a32c
CM
124 * restored as part of a return from exception. Enable
125 * access to the valid TTBR0_EL1 and invoke the errata
126 * workaround directly since there is no return from
127 * exception when invoking the EFI run-time services.
39bc88e5
CM
128 */
129 update_saved_ttbr0(current, mm);
6b88a32c
CM
130 uaccess_ttbr0_enable();
131 post_ttbr_update_workaround();
39bc88e5
CM
132 } else {
133 /*
134 * Defer the switch to the current thread's TTBR0_EL1
135 * until uaccess_enable(). Restore the current
136 * thread's saved ttbr0 corresponding to its active_mm
39bc88e5 137 */
6b88a32c 138 uaccess_ttbr0_disable();
0adbdfde 139 update_saved_ttbr0(current, current->active_mm);
39bc88e5
CM
140 }
141 }
f7d92489
AB
142}
143
f3cdfd23
AB
144void efi_virtmap_load(void);
145void efi_virtmap_unload(void);
146
f84d0275 147#endif /* _ASM_EFI_H */