blob: abba1fe1db5e7d145781b8bf1c0238fa34bc9253 [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...) \
Ricardo Nerib738c6e2014-03-27 15:10:43 -070037({ \
38 efi_status_t __s; \
39 kernel_fpu_begin(); \
40 __s = ((efi_##f##_t __attribute__((regparm(0)))*) \
41 efi.systab->runtime->f)(args); \
42 kernel_fpu_end(); \
43 __s; \
44})
Huang, Yinge4297952008-01-30 13:31:19 +010045
Ricardo Neri982e2392014-03-27 15:10:41 -070046/* Use this macro if your virtual call does not return any value */
Ricardo Nerib738c6e2014-03-27 15:10:43 -070047#define __efi_call_virt(f, args...) \
48({ \
49 kernel_fpu_begin(); \
50 ((efi_##f##_t __attribute__((regparm(0)))*) \
51 efi.systab->runtime->f)(args); \
52 kernel_fpu_end(); \
53})
Ricardo Neri982e2392014-03-27 15:10:41 -070054
Matt Fleming3e8fa262012-10-19 13:25:46 +010055#define efi_ioremap(addr, size, type, attr) ioremap_cache(addr, size)
Keith Packarde1ad7832011-12-11 16:12:42 -080056
Huang, Ying5b836832008-01-30 13:31:19 +010057#else /* !CONFIG_X86_32 */
58
Matt Fleming62fa6e62014-03-27 15:10:39 -070059#define EFI_LOADER_SIGNATURE "EL64"
Huang, Ying5b836832008-01-30 13:31:19 +010060
Matt Fleming62fa6e62014-03-27 15:10:39 -070061extern u64 asmlinkage efi_call(void *fp, ...);
Huang, Ying5b836832008-01-30 13:31:19 +010062
Matt Fleming62fa6e62014-03-27 15:10:39 -070063#define efi_call_phys(f, args...) efi_call((f), args)
64
65#define efi_call_virt(f, ...) \
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010066({ \
67 efi_status_t __s; \
68 \
69 efi_sync_low_kernel_mappings(); \
70 preempt_disable(); \
Ricardo Neride057642014-03-27 15:10:42 -070071 __kernel_fpu_begin(); \
Matt Fleming62fa6e62014-03-27 15:10:39 -070072 __s = efi_call((void *)efi.systab->runtime->f, __VA_ARGS__); \
Ricardo Neride057642014-03-27 15:10:42 -070073 __kernel_fpu_end(); \
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010074 preempt_enable(); \
75 __s; \
76})
77
Ricardo Neri982e2392014-03-27 15:10:41 -070078/*
79 * All X86_64 virt calls return non-void values. Thus, use non-void call for
80 * virt calls that would be void on X86_32.
81 */
82#define __efi_call_virt(f, args...) efi_call_virt(f, args)
83
Mathias Krause4e78eb052014-09-07 19:42:17 +020084extern void __iomem *__init efi_ioremap(unsigned long addr, unsigned long size,
85 u32 type, u64 attribute);
Keith Packarde1ad7832011-12-11 16:12:42 -080086
Huang, Ying5b836832008-01-30 13:31:19 +010087#endif /* CONFIG_X86_32 */
88
Ard Biesheuvel161485e2014-08-04 18:16:00 +020089#define efi_in_nmi() in_nmi()
90
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010091extern struct efi_scratch efi_scratch;
Mathias Krause4e78eb052014-09-07 19:42:17 +020092extern void __init efi_set_executable(efi_memory_desc_t *md, bool executable);
93extern int __init efi_memblock_x86_reserve_range(void);
94extern void __init efi_call_phys_prolog(void);
95extern void __init efi_call_phys_epilog(void);
96extern void __init efi_unmap_memmap(void);
97extern void __init efi_memory_uc(u64 addr, unsigned long size);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010098extern void __init efi_map_region(efi_memory_desc_t *md);
Dave Young3b266492013-12-20 18:02:14 +080099extern void __init efi_map_region_fixed(efi_memory_desc_t *md);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100100extern void efi_sync_low_kernel_mappings(void);
Mathias Krause4e78eb052014-09-07 19:42:17 +0200101extern int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned num_pages);
102extern void __init efi_cleanup_page_tables(unsigned long pa_memmap, unsigned num_pages);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100103extern void __init old_map_region(efi_memory_desc_t *md);
Borislav Petkovc55d0162014-02-14 08:24:24 +0100104extern void __init runtime_code_page_mkexec(void);
105extern void __init efi_runtime_mkexec(void);
Borislav Petkov11cc8512014-01-18 12:48:15 +0100106extern void __init efi_dump_pagetable(void);
Borislav Petkova5d90c92014-03-04 17:02:17 +0100107extern void __init efi_apply_memmap_quirks(void);
Saurabh Tangrieeb9db02014-06-02 05:18:35 -0700108extern int __init efi_reuse_config(u64 tables, int nr_tables);
109extern void efi_delete_dummy_variable(void);
Huang, Ying5b836832008-01-30 13:31:19 +0100110
Dave Young1fec0532013-12-20 18:02:19 +0800111struct efi_setup_data {
112 u64 fw_vendor;
113 u64 runtime;
114 u64 tables;
115 u64 smbios;
116 u64 reserved[8];
117};
118
119extern u64 efi_setup;
Dave Young1fec0532013-12-20 18:02:19 +0800120
Satoru Takeuchi6b59e362013-02-14 09:07:35 +0900121#ifdef CONFIG_EFI
122
123static inline bool efi_is_native(void)
124{
125 return IS_ENABLED(CONFIG_X86_64) == efi_enabled(EFI_64BIT);
126}
127
Matt Fleming7d453ee2014-01-10 18:52:06 +0000128static inline bool efi_runtime_supported(void)
129{
130 if (efi_is_native())
131 return true;
132
133 if (IS_ENABLED(CONFIG_EFI_MIXED) && !efi_enabled(EFI_OLD_MEMMAP))
134 return true;
135
136 return false;
137}
138
Matt Fleming72548e82013-10-04 09:36:56 +0100139extern struct console early_efi_console;
Dave Young5c12af02014-01-03 11:56:49 +0800140extern void parse_efi_setup(u64 phys_addr, u32 data_len);
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000141
142#ifdef CONFIG_EFI_MIXED
143extern void efi_thunk_runtime_setup(void);
144extern efi_status_t efi_thunk_set_virtual_address_map(
145 void *phys_set_virtual_address_map,
146 unsigned long memory_map_size,
147 unsigned long descriptor_size,
148 u32 descriptor_version,
149 efi_memory_desc_t *virtual_map);
150#else
151static inline void efi_thunk_runtime_setup(void) {}
152static inline efi_status_t efi_thunk_set_virtual_address_map(
153 void *phys_set_virtual_address_map,
154 unsigned long memory_map_size,
155 unsigned long descriptor_size,
156 u32 descriptor_version,
157 efi_memory_desc_t *virtual_map)
158{
159 return EFI_SUCCESS;
160}
161#endif /* CONFIG_EFI_MIXED */
Ard Biesheuvelf23cf8b2014-07-02 14:54:40 +0200162
163
164/* arch specific definitions used by the stub code */
165
166struct efi_config {
167 u64 image_handle;
168 u64 table;
169 u64 allocate_pool;
170 u64 allocate_pages;
171 u64 get_memory_map;
172 u64 free_pool;
173 u64 free_pages;
174 u64 locate_handle;
175 u64 handle_protocol;
176 u64 exit_boot_services;
177 u64 text_output;
178 efi_status_t (*call)(unsigned long, ...);
179 bool is64;
180} __packed;
181
182extern struct efi_config *efi_early;
183
184#define efi_call_early(f, ...) \
185 efi_early->call(efi_early->f, __VA_ARGS__);
186
Matt Fleming44be28e2014-06-13 12:39:55 +0100187extern bool efi_reboot_required(void);
188
Satoru Takeuchi6b59e362013-02-14 09:07:35 +0900189#else
Dave Young5c12af02014-01-03 11:56:49 +0800190static inline void parse_efi_setup(u64 phys_addr, u32 data_len) {}
Matt Fleming44be28e2014-06-13 12:39:55 +0100191static inline bool efi_reboot_required(void)
192{
193 return false;
194}
Russ Anderson7f594232008-10-03 11:59:15 -0500195#endif /* CONFIG_EFI */
196
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700197#endif /* _ASM_X86_EFI_H */