blob: 0010c78c4998cf0702299ea2f8a9229e09bb6438 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_EFI_H
2#define _ASM_X86_EFI_H
Huang, Ying5b836832008-01-30 13:31:19 +01003
Ingo Molnardf6b35f2015-04-24 02:46:00 +02004#include <asm/fpu/api.h>
Ingo Molnar744937b2015-03-03 07:48:50 +01005#include <asm/pgtable.h>
6
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +01007/*
8 * We map the EFI regions needed for runtime services non-contiguously,
9 * with preserved alignment on virtual addresses starting from -4G down
10 * for a total max space of 64G. This way, we provide for stable runtime
11 * services addresses across kernels so that a kexec'd kernel can still
12 * use them.
13 *
14 * This is the main reason why we're doing stable VA mappings for RT
15 * services.
16 *
17 * This flag is used in conjuction with a chicken bit called
18 * "efi=old_map" which can be used as a fallback to the old runtime
19 * services mapping method in case there's some b0rkage with a
20 * particular EFI implementation (haha, it is hard to hold up the
21 * sarcasm here...).
22 */
23#define EFI_OLD_MEMMAP EFI_ARCH_1
24
Matt Flemingb8ff87a2014-01-10 15:54:31 +000025#define EFI32_LOADER_SIGNATURE "EL32"
26#define EFI64_LOADER_SIGNATURE "EL64"
27
Huang, Ying5b836832008-01-30 13:31:19 +010028#ifdef CONFIG_X86_32
Huang, Yinge4297952008-01-30 13:31:19 +010029
Matt Flemingf7d7d012011-11-15 12:56:14 +000030
Huang, Yinge4297952008-01-30 13:31:19 +010031extern unsigned long asmlinkage efi_call_phys(void *, ...);
32
Huang, Yinge4297952008-01-30 13:31:19 +010033/*
34 * Wrap all the virtual calls in a way that forces the parameters on the stack.
35 */
36
Ricardo Neri982e2392014-03-27 15:10:41 -070037/* Use this macro if your virtual returns a non-void value */
Huang, Yinge4297952008-01-30 13:31:19 +010038#define efi_call_virt(f, args...) \
Ricardo Nerib738c6e2014-03-27 15:10:43 -070039({ \
40 efi_status_t __s; \
41 kernel_fpu_begin(); \
42 __s = ((efi_##f##_t __attribute__((regparm(0)))*) \
43 efi.systab->runtime->f)(args); \
44 kernel_fpu_end(); \
45 __s; \
46})
Huang, Yinge4297952008-01-30 13:31:19 +010047
Ricardo Neri982e2392014-03-27 15:10:41 -070048/* Use this macro if your virtual call does not return any value */
Ricardo Nerib738c6e2014-03-27 15:10:43 -070049#define __efi_call_virt(f, args...) \
50({ \
51 kernel_fpu_begin(); \
52 ((efi_##f##_t __attribute__((regparm(0)))*) \
53 efi.systab->runtime->f)(args); \
54 kernel_fpu_end(); \
55})
Ricardo Neri982e2392014-03-27 15:10:41 -070056
Matt Fleming3e8fa262012-10-19 13:25:46 +010057#define efi_ioremap(addr, size, type, attr) ioremap_cache(addr, size)
Keith Packarde1ad7832011-12-11 16:12:42 -080058
Huang, Ying5b836832008-01-30 13:31:19 +010059#else /* !CONFIG_X86_32 */
60
Matt Fleming62fa6e62014-03-27 15:10:39 -070061#define EFI_LOADER_SIGNATURE "EL64"
Huang, Ying5b836832008-01-30 13:31:19 +010062
Matt Fleming62fa6e62014-03-27 15:10:39 -070063extern u64 asmlinkage efi_call(void *fp, ...);
Huang, Ying5b836832008-01-30 13:31:19 +010064
Matt Fleming62fa6e62014-03-27 15:10:39 -070065#define efi_call_phys(f, args...) efi_call((f), args)
66
67#define efi_call_virt(f, ...) \
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010068({ \
69 efi_status_t __s; \
70 \
71 efi_sync_low_kernel_mappings(); \
72 preempt_disable(); \
Ricardo Neride057642014-03-27 15:10:42 -070073 __kernel_fpu_begin(); \
Matt Fleming62fa6e62014-03-27 15:10:39 -070074 __s = efi_call((void *)efi.systab->runtime->f, __VA_ARGS__); \
Ricardo Neride057642014-03-27 15:10:42 -070075 __kernel_fpu_end(); \
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010076 preempt_enable(); \
77 __s; \
78})
79
Ricardo Neri982e2392014-03-27 15:10:41 -070080/*
81 * All X86_64 virt calls return non-void values. Thus, use non-void call for
82 * virt calls that would be void on X86_32.
83 */
84#define __efi_call_virt(f, args...) efi_call_virt(f, args)
85
Mathias Krause4e78eb052014-09-07 19:42:17 +020086extern void __iomem *__init efi_ioremap(unsigned long addr, unsigned long size,
87 u32 type, u64 attribute);
Keith Packarde1ad7832011-12-11 16:12:42 -080088
Andrey Ryabinina5238412015-10-01 15:36:48 -070089#ifdef CONFIG_KASAN
Andrey Ryabinin769a8082015-09-22 14:59:17 -070090/*
91 * CONFIG_KASAN may redefine memset to __memset. __memset function is present
92 * only in kernel binary. Since the EFI stub linked into a separate binary it
93 * doesn't have __memset(). So we should use standard memset from
94 * arch/x86/boot/compressed/string.c. The same applies to memcpy and memmove.
95 */
96#undef memcpy
97#undef memset
98#undef memmove
Andrey Ryabinina5238412015-10-01 15:36:48 -070099#endif
Andrey Ryabinin769a8082015-09-22 14:59:17 -0700100
Huang, Ying5b836832008-01-30 13:31:19 +0100101#endif /* CONFIG_X86_32 */
102
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100103extern struct efi_scratch efi_scratch;
Mathias Krause4e78eb052014-09-07 19:42:17 +0200104extern void __init efi_set_executable(efi_memory_desc_t *md, bool executable);
105extern int __init efi_memblock_x86_reserve_range(void);
Ingo Molnar744937b2015-03-03 07:48:50 +0100106extern pgd_t * __init efi_call_phys_prolog(void);
107extern void __init efi_call_phys_epilog(pgd_t *save_pgd);
Taku Izumi0bbea1c2015-09-30 19:20:00 +0900108extern void __init efi_print_memmap(void);
Mathias Krause4e78eb052014-09-07 19:42:17 +0200109extern void __init efi_unmap_memmap(void);
110extern void __init efi_memory_uc(u64 addr, unsigned long size);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100111extern void __init efi_map_region(efi_memory_desc_t *md);
Dave Young3b266492013-12-20 18:02:14 +0800112extern void __init efi_map_region_fixed(efi_memory_desc_t *md);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100113extern void efi_sync_low_kernel_mappings(void);
Mathias Krause4e78eb052014-09-07 19:42:17 +0200114extern int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned num_pages);
115extern void __init efi_cleanup_page_tables(unsigned long pa_memmap, unsigned num_pages);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100116extern void __init old_map_region(efi_memory_desc_t *md);
Borislav Petkovc55d0162014-02-14 08:24:24 +0100117extern void __init runtime_code_page_mkexec(void);
118extern void __init efi_runtime_mkexec(void);
Borislav Petkov11cc8512014-01-18 12:48:15 +0100119extern void __init efi_dump_pagetable(void);
Borislav Petkova5d90c92014-03-04 17:02:17 +0100120extern void __init efi_apply_memmap_quirks(void);
Saurabh Tangrieeb9db02014-06-02 05:18:35 -0700121extern int __init efi_reuse_config(u64 tables, int nr_tables);
122extern void efi_delete_dummy_variable(void);
Huang, Ying5b836832008-01-30 13:31:19 +0100123
Dave Young1fec0532013-12-20 18:02:19 +0800124struct efi_setup_data {
125 u64 fw_vendor;
126 u64 runtime;
127 u64 tables;
128 u64 smbios;
129 u64 reserved[8];
130};
131
132extern u64 efi_setup;
Dave Young1fec0532013-12-20 18:02:19 +0800133
Satoru Takeuchi6b59e362013-02-14 09:07:35 +0900134#ifdef CONFIG_EFI
135
136static inline bool efi_is_native(void)
137{
138 return IS_ENABLED(CONFIG_X86_64) == efi_enabled(EFI_64BIT);
139}
140
Matt Fleming7d453ee2014-01-10 18:52:06 +0000141static inline bool efi_runtime_supported(void)
142{
143 if (efi_is_native())
144 return true;
145
146 if (IS_ENABLED(CONFIG_EFI_MIXED) && !efi_enabled(EFI_OLD_MEMMAP))
147 return true;
148
149 return false;
150}
151
Matt Fleming72548e82013-10-04 09:36:56 +0100152extern struct console early_efi_console;
Dave Young5c12af02014-01-03 11:56:49 +0800153extern void parse_efi_setup(u64 phys_addr, u32 data_len);
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000154
155#ifdef CONFIG_EFI_MIXED
156extern void efi_thunk_runtime_setup(void);
157extern efi_status_t efi_thunk_set_virtual_address_map(
158 void *phys_set_virtual_address_map,
159 unsigned long memory_map_size,
160 unsigned long descriptor_size,
161 u32 descriptor_version,
162 efi_memory_desc_t *virtual_map);
163#else
164static inline void efi_thunk_runtime_setup(void) {}
165static inline efi_status_t efi_thunk_set_virtual_address_map(
166 void *phys_set_virtual_address_map,
167 unsigned long memory_map_size,
168 unsigned long descriptor_size,
169 u32 descriptor_version,
170 efi_memory_desc_t *virtual_map)
171{
172 return EFI_SUCCESS;
173}
174#endif /* CONFIG_EFI_MIXED */
Ard Biesheuvelf23cf8b2014-07-02 14:54:40 +0200175
Ard Biesheuvel243b6752014-11-05 17:00:56 +0100176
177/* arch specific definitions used by the stub code */
178
179struct efi_config {
180 u64 image_handle;
181 u64 table;
182 u64 allocate_pool;
183 u64 allocate_pages;
184 u64 get_memory_map;
185 u64 free_pool;
186 u64 free_pages;
187 u64 locate_handle;
188 u64 handle_protocol;
189 u64 exit_boot_services;
190 u64 text_output;
191 efi_status_t (*call)(unsigned long, ...);
192 bool is64;
193} __packed;
194
195__pure const struct efi_config *__efi_early(void);
196
197#define efi_call_early(f, ...) \
198 __efi_early()->call(__efi_early()->f, __VA_ARGS__);
199
Matt Fleming44be28e2014-06-13 12:39:55 +0100200extern bool efi_reboot_required(void);
201
Satoru Takeuchi6b59e362013-02-14 09:07:35 +0900202#else
Dave Young5c12af02014-01-03 11:56:49 +0800203static inline void parse_efi_setup(u64 phys_addr, u32 data_len) {}
Matt Fleming44be28e2014-06-13 12:39:55 +0100204static inline bool efi_reboot_required(void)
205{
206 return false;
207}
Russ Anderson7f594232008-10-03 11:59:15 -0500208#endif /* CONFIG_EFI */
209
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700210#endif /* _ASM_X86_EFI_H */