blob: 19292e7cae580399d27b5abcc319e78f700297ba [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
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +01004/*
5 * We map the EFI regions needed for runtime services non-contiguously,
6 * with preserved alignment on virtual addresses starting from -4G down
7 * for a total max space of 64G. This way, we provide for stable runtime
8 * services addresses across kernels so that a kexec'd kernel can still
9 * use them.
10 *
11 * This is the main reason why we're doing stable VA mappings for RT
12 * services.
13 *
14 * This flag is used in conjuction with a chicken bit called
15 * "efi=old_map" which can be used as a fallback to the old runtime
16 * services mapping method in case there's some b0rkage with a
17 * particular EFI implementation (haha, it is hard to hold up the
18 * sarcasm here...).
19 */
20#define EFI_OLD_MEMMAP EFI_ARCH_1
21
Matt Flemingb8ff87a2014-01-10 15:54:31 +000022#define EFI32_LOADER_SIGNATURE "EL32"
23#define EFI64_LOADER_SIGNATURE "EL64"
24
Huang, Ying5b836832008-01-30 13:31:19 +010025#ifdef CONFIG_X86_32
Huang, Yinge4297952008-01-30 13:31:19 +010026
Matt Flemingf7d7d012011-11-15 12:56:14 +000027
Huang, Yinge4297952008-01-30 13:31:19 +010028extern unsigned long asmlinkage efi_call_phys(void *, ...);
29
Huang, Yinge4297952008-01-30 13:31:19 +010030/*
31 * Wrap all the virtual calls in a way that forces the parameters on the stack.
32 */
33
Ricardo Neri982e2392014-03-27 15:10:41 -070034/* Use this macro if your virtual returns a non-void value */
Huang, Yinge4297952008-01-30 13:31:19 +010035#define efi_call_virt(f, args...) \
Joe Perches0c6f6ab2008-03-23 01:02:07 -070036 ((efi_##f##_t __attribute__((regparm(0)))*)efi.systab->runtime->f)(args)
Huang, Yinge4297952008-01-30 13:31:19 +010037
Ricardo Neri982e2392014-03-27 15:10:41 -070038/* Use this macro if your virtual call does not return any value */
39#define __efi_call_virt(f, args...) efi_call_virt(f, args)
40
Matt Fleming3e8fa262012-10-19 13:25:46 +010041#define efi_ioremap(addr, size, type, attr) ioremap_cache(addr, size)
Keith Packarde1ad7832011-12-11 16:12:42 -080042
Huang, Ying5b836832008-01-30 13:31:19 +010043#else /* !CONFIG_X86_32 */
44
Matt Fleming62fa6e62014-03-27 15:10:39 -070045#define EFI_LOADER_SIGNATURE "EL64"
Huang, Ying5b836832008-01-30 13:31:19 +010046
Matt Fleming62fa6e62014-03-27 15:10:39 -070047extern u64 asmlinkage efi_call(void *fp, ...);
Huang, Ying5b836832008-01-30 13:31:19 +010048
Matt Fleming62fa6e62014-03-27 15:10:39 -070049#define efi_call_phys(f, args...) efi_call((f), args)
50
51#define efi_call_virt(f, ...) \
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010052({ \
53 efi_status_t __s; \
54 \
55 efi_sync_low_kernel_mappings(); \
56 preempt_disable(); \
Matt Fleming62fa6e62014-03-27 15:10:39 -070057 __s = efi_call((void *)efi.systab->runtime->f, __VA_ARGS__); \
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010058 preempt_enable(); \
59 __s; \
60})
61
Ricardo Neri982e2392014-03-27 15:10:41 -070062/*
63 * All X86_64 virt calls return non-void values. Thus, use non-void call for
64 * virt calls that would be void on X86_32.
65 */
66#define __efi_call_virt(f, args...) efi_call_virt(f, args)
67
Keith Packarde1ad7832011-12-11 16:12:42 -080068extern void __iomem *efi_ioremap(unsigned long addr, unsigned long size,
Matt Fleming3e8fa262012-10-19 13:25:46 +010069 u32 type, u64 attribute);
Keith Packarde1ad7832011-12-11 16:12:42 -080070
Huang, Ying5b836832008-01-30 13:31:19 +010071#endif /* CONFIG_X86_32 */
72
Jaswinder Singh Rajputcbafbc82008-12-29 20:36:40 +053073extern int add_efi_memmap;
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010074extern struct efi_scratch efi_scratch;
Matthew Garrett9cd2b072011-05-05 15:19:43 -040075extern void efi_set_executable(efi_memory_desc_t *md, bool executable);
Olof Johansson1adbfa32012-02-12 13:24:29 -080076extern int efi_memblock_x86_reserve_range(void);
Huang, Ying5b836832008-01-30 13:31:19 +010077extern void efi_call_phys_prelog(void);
78extern void efi_call_phys_epilog(void);
Olof Johansson5189c2a2012-10-24 10:00:44 -070079extern void efi_unmap_memmap(void);
Matt Fleming3e8fa262012-10-19 13:25:46 +010080extern void efi_memory_uc(u64 addr, unsigned long size);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010081extern void __init efi_map_region(efi_memory_desc_t *md);
Dave Young3b266492013-12-20 18:02:14 +080082extern void __init efi_map_region_fixed(efi_memory_desc_t *md);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010083extern void efi_sync_low_kernel_mappings(void);
Borislav Petkovb7b898a2014-01-18 12:48:17 +010084extern int efi_setup_page_tables(unsigned long pa_memmap, unsigned num_pages);
85extern void efi_cleanup_page_tables(unsigned long pa_memmap, unsigned num_pages);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010086extern void __init old_map_region(efi_memory_desc_t *md);
Borislav Petkovc55d0162014-02-14 08:24:24 +010087extern void __init runtime_code_page_mkexec(void);
88extern void __init efi_runtime_mkexec(void);
Borislav Petkov11cc8512014-01-18 12:48:15 +010089extern void __init efi_dump_pagetable(void);
Borislav Petkova5d90c92014-03-04 17:02:17 +010090extern void __init efi_apply_memmap_quirks(void);
Huang, Ying5b836832008-01-30 13:31:19 +010091
Dave Young1fec0532013-12-20 18:02:19 +080092struct efi_setup_data {
93 u64 fw_vendor;
94 u64 runtime;
95 u64 tables;
96 u64 smbios;
97 u64 reserved[8];
98};
99
100extern u64 efi_setup;
Dave Young1fec0532013-12-20 18:02:19 +0800101
Satoru Takeuchi6b59e362013-02-14 09:07:35 +0900102#ifdef CONFIG_EFI
103
104static inline bool efi_is_native(void)
105{
106 return IS_ENABLED(CONFIG_X86_64) == efi_enabled(EFI_64BIT);
107}
108
Matt Fleming7d453ee2014-01-10 18:52:06 +0000109static inline bool efi_runtime_supported(void)
110{
111 if (efi_is_native())
112 return true;
113
114 if (IS_ENABLED(CONFIG_EFI_MIXED) && !efi_enabled(EFI_OLD_MEMMAP))
115 return true;
116
117 return false;
118}
119
Matt Fleming72548e82013-10-04 09:36:56 +0100120extern struct console early_efi_console;
Dave Young5c12af02014-01-03 11:56:49 +0800121extern void parse_efi_setup(u64 phys_addr, u32 data_len);
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000122
123#ifdef CONFIG_EFI_MIXED
124extern void efi_thunk_runtime_setup(void);
125extern efi_status_t efi_thunk_set_virtual_address_map(
126 void *phys_set_virtual_address_map,
127 unsigned long memory_map_size,
128 unsigned long descriptor_size,
129 u32 descriptor_version,
130 efi_memory_desc_t *virtual_map);
131#else
132static inline void efi_thunk_runtime_setup(void) {}
133static inline efi_status_t efi_thunk_set_virtual_address_map(
134 void *phys_set_virtual_address_map,
135 unsigned long memory_map_size,
136 unsigned long descriptor_size,
137 u32 descriptor_version,
138 efi_memory_desc_t *virtual_map)
139{
140 return EFI_SUCCESS;
141}
142#endif /* CONFIG_EFI_MIXED */
Satoru Takeuchi6b59e362013-02-14 09:07:35 +0900143#else
Russ Anderson7f594232008-10-03 11:59:15 -0500144/*
145 * IF EFI is not configured, have the EFI calls return -ENOSYS.
146 */
147#define efi_call0(_f) (-ENOSYS)
148#define efi_call1(_f, _a1) (-ENOSYS)
149#define efi_call2(_f, _a1, _a2) (-ENOSYS)
150#define efi_call3(_f, _a1, _a2, _a3) (-ENOSYS)
151#define efi_call4(_f, _a1, _a2, _a3, _a4) (-ENOSYS)
152#define efi_call5(_f, _a1, _a2, _a3, _a4, _a5) (-ENOSYS)
153#define efi_call6(_f, _a1, _a2, _a3, _a4, _a5, _a6) (-ENOSYS)
Dave Young5c12af02014-01-03 11:56:49 +0800154static inline void parse_efi_setup(u64 phys_addr, u32 data_len) {}
Russ Anderson7f594232008-10-03 11:59:15 -0500155#endif /* CONFIG_EFI */
156
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700157#endif /* _ASM_X86_EFI_H */