blob: 0b19187cc88268f04dfcb49b4433ed5fe8b6d463 [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
Ricardo Neride057642014-03-27 15:10:42 -07004#include <asm/i387.h>
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +01005/*
6 * We map the EFI regions needed for runtime services non-contiguously,
7 * with preserved alignment on virtual addresses starting from -4G down
8 * for a total max space of 64G. This way, we provide for stable runtime
9 * services addresses across kernels so that a kexec'd kernel can still
10 * use them.
11 *
12 * This is the main reason why we're doing stable VA mappings for RT
13 * services.
14 *
15 * This flag is used in conjuction with a chicken bit called
16 * "efi=old_map" which can be used as a fallback to the old runtime
17 * services mapping method in case there's some b0rkage with a
18 * particular EFI implementation (haha, it is hard to hold up the
19 * sarcasm here...).
20 */
21#define EFI_OLD_MEMMAP EFI_ARCH_1
22
Matt Flemingb8ff87a2014-01-10 15:54:31 +000023#define EFI32_LOADER_SIGNATURE "EL32"
24#define EFI64_LOADER_SIGNATURE "EL64"
25
Huang, Ying5b836832008-01-30 13:31:19 +010026#ifdef CONFIG_X86_32
Huang, Yinge4297952008-01-30 13:31:19 +010027
Matt Flemingf7d7d012011-11-15 12:56:14 +000028
Huang, Yinge4297952008-01-30 13:31:19 +010029extern unsigned long asmlinkage efi_call_phys(void *, ...);
30
Huang, Yinge4297952008-01-30 13:31:19 +010031/*
32 * Wrap all the virtual calls in a way that forces the parameters on the stack.
33 */
34
Ricardo Neri982e2392014-03-27 15:10:41 -070035/* Use this macro if your virtual returns a non-void value */
Huang, Yinge4297952008-01-30 13:31:19 +010036#define efi_call_virt(f, args...) \
Joe Perches0c6f6ab2008-03-23 01:02:07 -070037 ((efi_##f##_t __attribute__((regparm(0)))*)efi.systab->runtime->f)(args)
Huang, Yinge4297952008-01-30 13:31:19 +010038
Ricardo Neri982e2392014-03-27 15:10:41 -070039/* Use this macro if your virtual call does not return any value */
40#define __efi_call_virt(f, args...) efi_call_virt(f, args)
41
Matt Fleming3e8fa262012-10-19 13:25:46 +010042#define efi_ioremap(addr, size, type, attr) ioremap_cache(addr, size)
Keith Packarde1ad7832011-12-11 16:12:42 -080043
Huang, Ying5b836832008-01-30 13:31:19 +010044#else /* !CONFIG_X86_32 */
45
Matt Fleming62fa6e62014-03-27 15:10:39 -070046#define EFI_LOADER_SIGNATURE "EL64"
Huang, Ying5b836832008-01-30 13:31:19 +010047
Matt Fleming62fa6e62014-03-27 15:10:39 -070048extern u64 asmlinkage efi_call(void *fp, ...);
Huang, Ying5b836832008-01-30 13:31:19 +010049
Matt Fleming62fa6e62014-03-27 15:10:39 -070050#define efi_call_phys(f, args...) efi_call((f), args)
51
52#define efi_call_virt(f, ...) \
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010053({ \
54 efi_status_t __s; \
55 \
56 efi_sync_low_kernel_mappings(); \
57 preempt_disable(); \
Ricardo Neride057642014-03-27 15:10:42 -070058 __kernel_fpu_begin(); \
Matt Fleming62fa6e62014-03-27 15:10:39 -070059 __s = efi_call((void *)efi.systab->runtime->f, __VA_ARGS__); \
Ricardo Neride057642014-03-27 15:10:42 -070060 __kernel_fpu_end(); \
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010061 preempt_enable(); \
62 __s; \
63})
64
Ricardo Neri982e2392014-03-27 15:10:41 -070065/*
66 * All X86_64 virt calls return non-void values. Thus, use non-void call for
67 * virt calls that would be void on X86_32.
68 */
69#define __efi_call_virt(f, args...) efi_call_virt(f, args)
70
Keith Packarde1ad7832011-12-11 16:12:42 -080071extern void __iomem *efi_ioremap(unsigned long addr, unsigned long size,
Matt Fleming3e8fa262012-10-19 13:25:46 +010072 u32 type, u64 attribute);
Keith Packarde1ad7832011-12-11 16:12:42 -080073
Huang, Ying5b836832008-01-30 13:31:19 +010074#endif /* CONFIG_X86_32 */
75
Jaswinder Singh Rajputcbafbc82008-12-29 20:36:40 +053076extern int add_efi_memmap;
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010077extern struct efi_scratch efi_scratch;
Matthew Garrett9cd2b072011-05-05 15:19:43 -040078extern void efi_set_executable(efi_memory_desc_t *md, bool executable);
Olof Johansson1adbfa32012-02-12 13:24:29 -080079extern int efi_memblock_x86_reserve_range(void);
Huang, Ying5b836832008-01-30 13:31:19 +010080extern void efi_call_phys_prelog(void);
81extern void efi_call_phys_epilog(void);
Olof Johansson5189c2a2012-10-24 10:00:44 -070082extern void efi_unmap_memmap(void);
Matt Fleming3e8fa262012-10-19 13:25:46 +010083extern void efi_memory_uc(u64 addr, unsigned long size);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010084extern void __init efi_map_region(efi_memory_desc_t *md);
Dave Young3b266492013-12-20 18:02:14 +080085extern void __init efi_map_region_fixed(efi_memory_desc_t *md);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010086extern void efi_sync_low_kernel_mappings(void);
Borislav Petkovb7b898a2014-01-18 12:48:17 +010087extern int efi_setup_page_tables(unsigned long pa_memmap, unsigned num_pages);
88extern void efi_cleanup_page_tables(unsigned long pa_memmap, unsigned num_pages);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010089extern void __init old_map_region(efi_memory_desc_t *md);
Borislav Petkovc55d0162014-02-14 08:24:24 +010090extern void __init runtime_code_page_mkexec(void);
91extern void __init efi_runtime_mkexec(void);
Borislav Petkov11cc8512014-01-18 12:48:15 +010092extern void __init efi_dump_pagetable(void);
Borislav Petkova5d90c92014-03-04 17:02:17 +010093extern void __init efi_apply_memmap_quirks(void);
Huang, Ying5b836832008-01-30 13:31:19 +010094
Dave Young1fec0532013-12-20 18:02:19 +080095struct efi_setup_data {
96 u64 fw_vendor;
97 u64 runtime;
98 u64 tables;
99 u64 smbios;
100 u64 reserved[8];
101};
102
103extern u64 efi_setup;
Dave Young1fec0532013-12-20 18:02:19 +0800104
Satoru Takeuchi6b59e362013-02-14 09:07:35 +0900105#ifdef CONFIG_EFI
106
107static inline bool efi_is_native(void)
108{
109 return IS_ENABLED(CONFIG_X86_64) == efi_enabled(EFI_64BIT);
110}
111
Matt Fleming7d453ee2014-01-10 18:52:06 +0000112static inline bool efi_runtime_supported(void)
113{
114 if (efi_is_native())
115 return true;
116
117 if (IS_ENABLED(CONFIG_EFI_MIXED) && !efi_enabled(EFI_OLD_MEMMAP))
118 return true;
119
120 return false;
121}
122
Matt Fleming72548e82013-10-04 09:36:56 +0100123extern struct console early_efi_console;
Dave Young5c12af02014-01-03 11:56:49 +0800124extern void parse_efi_setup(u64 phys_addr, u32 data_len);
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000125
126#ifdef CONFIG_EFI_MIXED
127extern void efi_thunk_runtime_setup(void);
128extern efi_status_t efi_thunk_set_virtual_address_map(
129 void *phys_set_virtual_address_map,
130 unsigned long memory_map_size,
131 unsigned long descriptor_size,
132 u32 descriptor_version,
133 efi_memory_desc_t *virtual_map);
134#else
135static inline void efi_thunk_runtime_setup(void) {}
136static inline efi_status_t efi_thunk_set_virtual_address_map(
137 void *phys_set_virtual_address_map,
138 unsigned long memory_map_size,
139 unsigned long descriptor_size,
140 u32 descriptor_version,
141 efi_memory_desc_t *virtual_map)
142{
143 return EFI_SUCCESS;
144}
145#endif /* CONFIG_EFI_MIXED */
Satoru Takeuchi6b59e362013-02-14 09:07:35 +0900146#else
Russ Anderson7f594232008-10-03 11:59:15 -0500147/*
148 * IF EFI is not configured, have the EFI calls return -ENOSYS.
149 */
150#define efi_call0(_f) (-ENOSYS)
151#define efi_call1(_f, _a1) (-ENOSYS)
152#define efi_call2(_f, _a1, _a2) (-ENOSYS)
153#define efi_call3(_f, _a1, _a2, _a3) (-ENOSYS)
154#define efi_call4(_f, _a1, _a2, _a3, _a4) (-ENOSYS)
155#define efi_call5(_f, _a1, _a2, _a3, _a4, _a5) (-ENOSYS)
156#define efi_call6(_f, _a1, _a2, _a3, _a4, _a5, _a6) (-ENOSYS)
Dave Young5c12af02014-01-03 11:56:49 +0800157static inline void parse_efi_setup(u64 phys_addr, u32 data_len) {}
Russ Anderson7f594232008-10-03 11:59:15 -0500158#endif /* CONFIG_EFI */
159
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700160#endif /* _ASM_X86_EFI_H */