H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_EFI_H |
| 2 | #define _ASM_X86_EFI_H |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 3 | |
Borislav Petkov | d2f7cbe | 2013-10-31 17:25:08 +0100 | [diff] [blame] | 4 | /* |
| 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 Fleming | b8ff87a | 2014-01-10 15:54:31 +0000 | [diff] [blame] | 22 | #define EFI32_LOADER_SIGNATURE "EL32" |
| 23 | #define EFI64_LOADER_SIGNATURE "EL64" |
| 24 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 25 | #ifdef CONFIG_X86_32 |
Huang, Ying | e429795 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 26 | |
Matt Fleming | f7d7d01 | 2011-11-15 12:56:14 +0000 | [diff] [blame] | 27 | |
Huang, Ying | e429795 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 28 | extern unsigned long asmlinkage efi_call_phys(void *, ...); |
| 29 | |
Huang, Ying | e429795 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 30 | /* |
| 31 | * Wrap all the virtual calls in a way that forces the parameters on the stack. |
| 32 | */ |
| 33 | |
| 34 | #define efi_call_virt(f, args...) \ |
Joe Perches | 0c6f6ab | 2008-03-23 01:02:07 -0700 | [diff] [blame] | 35 | ((efi_##f##_t __attribute__((regparm(0)))*)efi.systab->runtime->f)(args) |
Huang, Ying | e429795 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 36 | |
Matt Fleming | 3e8fa26 | 2012-10-19 13:25:46 +0100 | [diff] [blame] | 37 | #define efi_ioremap(addr, size, type, attr) ioremap_cache(addr, size) |
Keith Packard | e1ad783 | 2011-12-11 16:12:42 -0800 | [diff] [blame] | 38 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 39 | #else /* !CONFIG_X86_32 */ |
| 40 | |
Matt Fleming | 62fa6e6 | 2014-03-27 15:10:39 -0700 | [diff] [blame^] | 41 | #define EFI_LOADER_SIGNATURE "EL64" |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 42 | |
Matt Fleming | 62fa6e6 | 2014-03-27 15:10:39 -0700 | [diff] [blame^] | 43 | extern u64 asmlinkage efi_call(void *fp, ...); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 44 | |
Matt Fleming | 62fa6e6 | 2014-03-27 15:10:39 -0700 | [diff] [blame^] | 45 | #define efi_call_phys(f, args...) efi_call((f), args) |
| 46 | |
| 47 | #define efi_call_virt(f, ...) \ |
Borislav Petkov | d2f7cbe | 2013-10-31 17:25:08 +0100 | [diff] [blame] | 48 | ({ \ |
| 49 | efi_status_t __s; \ |
| 50 | \ |
| 51 | efi_sync_low_kernel_mappings(); \ |
| 52 | preempt_disable(); \ |
Matt Fleming | 62fa6e6 | 2014-03-27 15:10:39 -0700 | [diff] [blame^] | 53 | __s = efi_call((void *)efi.systab->runtime->f, __VA_ARGS__); \ |
Borislav Petkov | d2f7cbe | 2013-10-31 17:25:08 +0100 | [diff] [blame] | 54 | preempt_enable(); \ |
| 55 | __s; \ |
| 56 | }) |
| 57 | |
Keith Packard | e1ad783 | 2011-12-11 16:12:42 -0800 | [diff] [blame] | 58 | extern void __iomem *efi_ioremap(unsigned long addr, unsigned long size, |
Matt Fleming | 3e8fa26 | 2012-10-19 13:25:46 +0100 | [diff] [blame] | 59 | u32 type, u64 attribute); |
Keith Packard | e1ad783 | 2011-12-11 16:12:42 -0800 | [diff] [blame] | 60 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 61 | #endif /* CONFIG_X86_32 */ |
| 62 | |
Jaswinder Singh Rajput | cbafbc8 | 2008-12-29 20:36:40 +0530 | [diff] [blame] | 63 | extern int add_efi_memmap; |
Borislav Petkov | d2f7cbe | 2013-10-31 17:25:08 +0100 | [diff] [blame] | 64 | extern struct efi_scratch efi_scratch; |
Matthew Garrett | 9cd2b07 | 2011-05-05 15:19:43 -0400 | [diff] [blame] | 65 | extern void efi_set_executable(efi_memory_desc_t *md, bool executable); |
Olof Johansson | 1adbfa3 | 2012-02-12 13:24:29 -0800 | [diff] [blame] | 66 | extern int efi_memblock_x86_reserve_range(void); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 67 | extern void efi_call_phys_prelog(void); |
| 68 | extern void efi_call_phys_epilog(void); |
Olof Johansson | 5189c2a | 2012-10-24 10:00:44 -0700 | [diff] [blame] | 69 | extern void efi_unmap_memmap(void); |
Matt Fleming | 3e8fa26 | 2012-10-19 13:25:46 +0100 | [diff] [blame] | 70 | extern void efi_memory_uc(u64 addr, unsigned long size); |
Borislav Petkov | d2f7cbe | 2013-10-31 17:25:08 +0100 | [diff] [blame] | 71 | extern void __init efi_map_region(efi_memory_desc_t *md); |
Dave Young | 3b26649 | 2013-12-20 18:02:14 +0800 | [diff] [blame] | 72 | extern void __init efi_map_region_fixed(efi_memory_desc_t *md); |
Borislav Petkov | d2f7cbe | 2013-10-31 17:25:08 +0100 | [diff] [blame] | 73 | extern void efi_sync_low_kernel_mappings(void); |
Borislav Petkov | b7b898a | 2014-01-18 12:48:17 +0100 | [diff] [blame] | 74 | extern int efi_setup_page_tables(unsigned long pa_memmap, unsigned num_pages); |
| 75 | extern void efi_cleanup_page_tables(unsigned long pa_memmap, unsigned num_pages); |
Borislav Petkov | d2f7cbe | 2013-10-31 17:25:08 +0100 | [diff] [blame] | 76 | extern void __init old_map_region(efi_memory_desc_t *md); |
Borislav Petkov | c55d016 | 2014-02-14 08:24:24 +0100 | [diff] [blame] | 77 | extern void __init runtime_code_page_mkexec(void); |
| 78 | extern void __init efi_runtime_mkexec(void); |
Borislav Petkov | 11cc851 | 2014-01-18 12:48:15 +0100 | [diff] [blame] | 79 | extern void __init efi_dump_pagetable(void); |
Borislav Petkov | a5d90c9 | 2014-03-04 17:02:17 +0100 | [diff] [blame] | 80 | extern void __init efi_apply_memmap_quirks(void); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 81 | |
Dave Young | 1fec053 | 2013-12-20 18:02:19 +0800 | [diff] [blame] | 82 | struct efi_setup_data { |
| 83 | u64 fw_vendor; |
| 84 | u64 runtime; |
| 85 | u64 tables; |
| 86 | u64 smbios; |
| 87 | u64 reserved[8]; |
| 88 | }; |
| 89 | |
| 90 | extern u64 efi_setup; |
Dave Young | 1fec053 | 2013-12-20 18:02:19 +0800 | [diff] [blame] | 91 | |
Satoru Takeuchi | 6b59e36 | 2013-02-14 09:07:35 +0900 | [diff] [blame] | 92 | #ifdef CONFIG_EFI |
| 93 | |
| 94 | static inline bool efi_is_native(void) |
| 95 | { |
| 96 | return IS_ENABLED(CONFIG_X86_64) == efi_enabled(EFI_64BIT); |
| 97 | } |
| 98 | |
Matt Fleming | 7d453ee | 2014-01-10 18:52:06 +0000 | [diff] [blame] | 99 | static inline bool efi_runtime_supported(void) |
| 100 | { |
| 101 | if (efi_is_native()) |
| 102 | return true; |
| 103 | |
| 104 | if (IS_ENABLED(CONFIG_EFI_MIXED) && !efi_enabled(EFI_OLD_MEMMAP)) |
| 105 | return true; |
| 106 | |
| 107 | return false; |
| 108 | } |
| 109 | |
Matt Fleming | 72548e8 | 2013-10-04 09:36:56 +0100 | [diff] [blame] | 110 | extern struct console early_efi_console; |
Dave Young | 5c12af0 | 2014-01-03 11:56:49 +0800 | [diff] [blame] | 111 | extern void parse_efi_setup(u64 phys_addr, u32 data_len); |
Matt Fleming | 4f9dbcf | 2014-01-10 18:48:30 +0000 | [diff] [blame] | 112 | |
| 113 | #ifdef CONFIG_EFI_MIXED |
| 114 | extern void efi_thunk_runtime_setup(void); |
| 115 | extern efi_status_t efi_thunk_set_virtual_address_map( |
| 116 | void *phys_set_virtual_address_map, |
| 117 | unsigned long memory_map_size, |
| 118 | unsigned long descriptor_size, |
| 119 | u32 descriptor_version, |
| 120 | efi_memory_desc_t *virtual_map); |
| 121 | #else |
| 122 | static inline void efi_thunk_runtime_setup(void) {} |
| 123 | static inline efi_status_t efi_thunk_set_virtual_address_map( |
| 124 | void *phys_set_virtual_address_map, |
| 125 | unsigned long memory_map_size, |
| 126 | unsigned long descriptor_size, |
| 127 | u32 descriptor_version, |
| 128 | efi_memory_desc_t *virtual_map) |
| 129 | { |
| 130 | return EFI_SUCCESS; |
| 131 | } |
| 132 | #endif /* CONFIG_EFI_MIXED */ |
Satoru Takeuchi | 6b59e36 | 2013-02-14 09:07:35 +0900 | [diff] [blame] | 133 | #else |
Russ Anderson | 7f59423 | 2008-10-03 11:59:15 -0500 | [diff] [blame] | 134 | /* |
| 135 | * IF EFI is not configured, have the EFI calls return -ENOSYS. |
| 136 | */ |
| 137 | #define efi_call0(_f) (-ENOSYS) |
| 138 | #define efi_call1(_f, _a1) (-ENOSYS) |
| 139 | #define efi_call2(_f, _a1, _a2) (-ENOSYS) |
| 140 | #define efi_call3(_f, _a1, _a2, _a3) (-ENOSYS) |
| 141 | #define efi_call4(_f, _a1, _a2, _a3, _a4) (-ENOSYS) |
| 142 | #define efi_call5(_f, _a1, _a2, _a3, _a4, _a5) (-ENOSYS) |
| 143 | #define efi_call6(_f, _a1, _a2, _a3, _a4, _a5, _a6) (-ENOSYS) |
Dave Young | 5c12af0 | 2014-01-03 11:56:49 +0800 | [diff] [blame] | 144 | static inline void parse_efi_setup(u64 phys_addr, u32 data_len) {} |
Russ Anderson | 7f59423 | 2008-10-03 11:59:15 -0500 | [diff] [blame] | 145 | #endif /* CONFIG_EFI */ |
| 146 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 147 | #endif /* _ASM_X86_EFI_H */ |