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 | |
| 4 | #ifdef CONFIG_X86_32 |
Huang, Ying | e429795 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 5 | |
Matt Fleming | f7d7d01 | 2011-11-15 12:56:14 +0000 | [diff] [blame] | 6 | #define EFI_LOADER_SIGNATURE "EL32" |
| 7 | |
Huang, Ying | e429795 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 8 | extern unsigned long asmlinkage efi_call_phys(void *, ...); |
| 9 | |
| 10 | #define efi_call_phys0(f) efi_call_phys(f) |
| 11 | #define efi_call_phys1(f, a1) efi_call_phys(f, a1) |
| 12 | #define efi_call_phys2(f, a1, a2) efi_call_phys(f, a1, a2) |
| 13 | #define efi_call_phys3(f, a1, a2, a3) efi_call_phys(f, a1, a2, a3) |
| 14 | #define efi_call_phys4(f, a1, a2, a3, a4) \ |
| 15 | efi_call_phys(f, a1, a2, a3, a4) |
| 16 | #define efi_call_phys5(f, a1, a2, a3, a4, a5) \ |
| 17 | efi_call_phys(f, a1, a2, a3, a4, a5) |
| 18 | #define efi_call_phys6(f, a1, a2, a3, a4, a5, a6) \ |
| 19 | efi_call_phys(f, a1, a2, a3, a4, a5, a6) |
| 20 | /* |
| 21 | * Wrap all the virtual calls in a way that forces the parameters on the stack. |
| 22 | */ |
| 23 | |
| 24 | #define efi_call_virt(f, args...) \ |
Joe Perches | 0c6f6ab | 2008-03-23 01:02:07 -0700 | [diff] [blame] | 25 | ((efi_##f##_t __attribute__((regparm(0)))*)efi.systab->runtime->f)(args) |
Huang, Ying | e429795 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 26 | |
| 27 | #define efi_call_virt0(f) efi_call_virt(f) |
| 28 | #define efi_call_virt1(f, a1) efi_call_virt(f, a1) |
| 29 | #define efi_call_virt2(f, a1, a2) efi_call_virt(f, a1, a2) |
| 30 | #define efi_call_virt3(f, a1, a2, a3) efi_call_virt(f, a1, a2, a3) |
| 31 | #define efi_call_virt4(f, a1, a2, a3, a4) \ |
| 32 | efi_call_virt(f, a1, a2, a3, a4) |
| 33 | #define efi_call_virt5(f, a1, a2, a3, a4, a5) \ |
| 34 | efi_call_virt(f, a1, a2, a3, a4, a5) |
| 35 | #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ |
| 36 | efi_call_virt(f, a1, a2, a3, a4, a5, a6) |
Huang, Ying | e429795 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 37 | |
Matt Fleming | 3e8fa26 | 2012-10-19 13:25:46 +0100 | [diff] [blame] | 38 | #define efi_ioremap(addr, size, type, attr) ioremap_cache(addr, size) |
Keith Packard | e1ad783 | 2011-12-11 16:12:42 -0800 | [diff] [blame] | 39 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 40 | #else /* !CONFIG_X86_32 */ |
| 41 | |
Matt Fleming | f7d7d01 | 2011-11-15 12:56:14 +0000 | [diff] [blame] | 42 | #define EFI_LOADER_SIGNATURE "EL64" |
| 43 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 44 | extern u64 efi_call0(void *fp); |
| 45 | extern u64 efi_call1(void *fp, u64 arg1); |
| 46 | extern u64 efi_call2(void *fp, u64 arg1, u64 arg2); |
| 47 | extern u64 efi_call3(void *fp, u64 arg1, u64 arg2, u64 arg3); |
| 48 | extern u64 efi_call4(void *fp, u64 arg1, u64 arg2, u64 arg3, u64 arg4); |
| 49 | extern u64 efi_call5(void *fp, u64 arg1, u64 arg2, u64 arg3, |
| 50 | u64 arg4, u64 arg5); |
| 51 | extern u64 efi_call6(void *fp, u64 arg1, u64 arg2, u64 arg3, |
| 52 | u64 arg4, u64 arg5, u64 arg6); |
| 53 | |
| 54 | #define efi_call_phys0(f) \ |
| 55 | efi_call0((void *)(f)) |
| 56 | #define efi_call_phys1(f, a1) \ |
| 57 | efi_call1((void *)(f), (u64)(a1)) |
| 58 | #define efi_call_phys2(f, a1, a2) \ |
| 59 | efi_call2((void *)(f), (u64)(a1), (u64)(a2)) |
| 60 | #define efi_call_phys3(f, a1, a2, a3) \ |
| 61 | efi_call3((void *)(f), (u64)(a1), (u64)(a2), (u64)(a3)) |
| 62 | #define efi_call_phys4(f, a1, a2, a3, a4) \ |
| 63 | efi_call4((void *)(f), (u64)(a1), (u64)(a2), (u64)(a3), \ |
| 64 | (u64)(a4)) |
| 65 | #define efi_call_phys5(f, a1, a2, a3, a4, a5) \ |
| 66 | efi_call5((void *)(f), (u64)(a1), (u64)(a2), (u64)(a3), \ |
| 67 | (u64)(a4), (u64)(a5)) |
| 68 | #define efi_call_phys6(f, a1, a2, a3, a4, a5, a6) \ |
| 69 | efi_call6((void *)(f), (u64)(a1), (u64)(a2), (u64)(a3), \ |
| 70 | (u64)(a4), (u64)(a5), (u64)(a6)) |
| 71 | |
| 72 | #define efi_call_virt0(f) \ |
Linus Torvalds | 11520e5 | 2012-12-15 15:15:24 -0800 | [diff] [blame] | 73 | efi_call0((void *)(efi.systab->runtime->f)) |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 74 | #define efi_call_virt1(f, a1) \ |
Linus Torvalds | 11520e5 | 2012-12-15 15:15:24 -0800 | [diff] [blame] | 75 | efi_call1((void *)(efi.systab->runtime->f), (u64)(a1)) |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 76 | #define efi_call_virt2(f, a1, a2) \ |
Linus Torvalds | 11520e5 | 2012-12-15 15:15:24 -0800 | [diff] [blame] | 77 | efi_call2((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2)) |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 78 | #define efi_call_virt3(f, a1, a2, a3) \ |
Linus Torvalds | 11520e5 | 2012-12-15 15:15:24 -0800 | [diff] [blame] | 79 | efi_call3((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 80 | (u64)(a3)) |
| 81 | #define efi_call_virt4(f, a1, a2, a3, a4) \ |
Linus Torvalds | 11520e5 | 2012-12-15 15:15:24 -0800 | [diff] [blame] | 82 | efi_call4((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 83 | (u64)(a3), (u64)(a4)) |
| 84 | #define efi_call_virt5(f, a1, a2, a3, a4, a5) \ |
Linus Torvalds | 11520e5 | 2012-12-15 15:15:24 -0800 | [diff] [blame] | 85 | efi_call5((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 86 | (u64)(a3), (u64)(a4), (u64)(a5)) |
| 87 | #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ |
Linus Torvalds | 11520e5 | 2012-12-15 15:15:24 -0800 | [diff] [blame] | 88 | efi_call6((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 89 | (u64)(a3), (u64)(a4), (u64)(a5), (u64)(a6)) |
| 90 | |
Keith Packard | e1ad783 | 2011-12-11 16:12:42 -0800 | [diff] [blame] | 91 | extern void __iomem *efi_ioremap(unsigned long addr, unsigned long size, |
Matt Fleming | 3e8fa26 | 2012-10-19 13:25:46 +0100 | [diff] [blame] | 92 | u32 type, u64 attribute); |
Keith Packard | e1ad783 | 2011-12-11 16:12:42 -0800 | [diff] [blame] | 93 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 94 | #endif /* CONFIG_X86_32 */ |
| 95 | |
Jaswinder Singh Rajput | cbafbc8 | 2008-12-29 20:36:40 +0530 | [diff] [blame] | 96 | extern int add_efi_memmap; |
Matt Fleming | 83e6818 | 2012-11-14 09:42:35 +0000 | [diff] [blame] | 97 | extern unsigned long x86_efi_facility; |
Matthew Garrett | 9cd2b07 | 2011-05-05 15:19:43 -0400 | [diff] [blame] | 98 | extern void efi_set_executable(efi_memory_desc_t *md, bool executable); |
Olof Johansson | 1adbfa3 | 2012-02-12 13:24:29 -0800 | [diff] [blame] | 99 | extern int efi_memblock_x86_reserve_range(void); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 100 | extern void efi_call_phys_prelog(void); |
| 101 | extern void efi_call_phys_epilog(void); |
Olof Johansson | 5189c2a | 2012-10-24 10:00:44 -0700 | [diff] [blame] | 102 | extern void efi_unmap_memmap(void); |
Matt Fleming | 3e8fa26 | 2012-10-19 13:25:46 +0100 | [diff] [blame] | 103 | extern void efi_memory_uc(u64 addr, unsigned long size); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 104 | |
Matthew Garrett | cc5a080 | 2013-04-15 13:09:46 -0700 | [diff] [blame^] | 105 | struct efi_var_bootdata { |
| 106 | struct setup_data data; |
| 107 | u64 store_size; |
| 108 | u64 remaining_size; |
| 109 | u64 max_var_size; |
| 110 | }; |
| 111 | |
Satoru Takeuchi | 6b59e36 | 2013-02-14 09:07:35 +0900 | [diff] [blame] | 112 | #ifdef CONFIG_EFI |
| 113 | |
| 114 | static inline bool efi_is_native(void) |
| 115 | { |
| 116 | return IS_ENABLED(CONFIG_X86_64) == efi_enabled(EFI_64BIT); |
| 117 | } |
| 118 | |
| 119 | #else |
Russ Anderson | 7f59423 | 2008-10-03 11:59:15 -0500 | [diff] [blame] | 120 | /* |
| 121 | * IF EFI is not configured, have the EFI calls return -ENOSYS. |
| 122 | */ |
| 123 | #define efi_call0(_f) (-ENOSYS) |
| 124 | #define efi_call1(_f, _a1) (-ENOSYS) |
| 125 | #define efi_call2(_f, _a1, _a2) (-ENOSYS) |
| 126 | #define efi_call3(_f, _a1, _a2, _a3) (-ENOSYS) |
| 127 | #define efi_call4(_f, _a1, _a2, _a3, _a4) (-ENOSYS) |
| 128 | #define efi_call5(_f, _a1, _a2, _a3, _a4, _a5) (-ENOSYS) |
| 129 | #define efi_call6(_f, _a1, _a2, _a3, _a4, _a5, _a6) (-ENOSYS) |
| 130 | #endif /* CONFIG_EFI */ |
| 131 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 132 | #endif /* _ASM_X86_EFI_H */ |