xref: /linux-6.15/include/linux/efi.h (revision bbc45785)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
21da177e4SLinus Torvalds #ifndef _LINUX_EFI_H
31da177e4SLinus Torvalds #define _LINUX_EFI_H
41da177e4SLinus Torvalds 
51da177e4SLinus Torvalds /*
61da177e4SLinus Torvalds  * Extensible Firmware Interface
71da177e4SLinus Torvalds  * Based on 'Extensible Firmware Interface Specification' version 0.9, April 30, 1999
81da177e4SLinus Torvalds  *
91da177e4SLinus Torvalds  * Copyright (C) 1999 VA Linux Systems
101da177e4SLinus Torvalds  * Copyright (C) 1999 Walt Drummond <[email protected]>
111da177e4SLinus Torvalds  * Copyright (C) 1999, 2002-2003 Hewlett-Packard Co.
121da177e4SLinus Torvalds  *	David Mosberger-Tang <[email protected]>
131da177e4SLinus Torvalds  *	Stephane Eranian <[email protected]>
141da177e4SLinus Torvalds  */
151da177e4SLinus Torvalds #include <linux/init.h>
161da177e4SLinus Torvalds #include <linux/string.h>
171da177e4SLinus Torvalds #include <linux/time.h>
181da177e4SLinus Torvalds #include <linux/types.h>
191da177e4SLinus Torvalds #include <linux/proc_fs.h>
201da177e4SLinus Torvalds #include <linux/rtc.h>
211da177e4SLinus Torvalds #include <linux/ioport.h>
224a3575fdSHuang, Ying #include <linux/pfn.h>
235ee9c198SMatthew Garrett #include <linux/pstore.h>
2460863c0dSMatt Fleming #include <linux/range.h>
258562c99cSMatt Fleming #include <linux/reboot.h>
26ba7e34b1SAndy Shevchenko #include <linux/uuid.h>
271da177e4SLinus Torvalds 
281da177e4SLinus Torvalds #include <asm/page.h>
291da177e4SLinus Torvalds 
308b0d1354SThomas Zimmermann struct screen_info;
318b0d1354SThomas Zimmermann 
321da177e4SLinus Torvalds #define EFI_SUCCESS		0
331da177e4SLinus Torvalds #define EFI_LOAD_ERROR		( 1 | (1UL << (BITS_PER_LONG-1)))
341da177e4SLinus Torvalds #define EFI_INVALID_PARAMETER	( 2 | (1UL << (BITS_PER_LONG-1)))
351da177e4SLinus Torvalds #define EFI_UNSUPPORTED		( 3 | (1UL << (BITS_PER_LONG-1)))
361da177e4SLinus Torvalds #define EFI_BAD_BUFFER_SIZE	( 4 | (1UL << (BITS_PER_LONG-1)))
371da177e4SLinus Torvalds #define EFI_BUFFER_TOO_SMALL	( 5 | (1UL << (BITS_PER_LONG-1)))
385d9db883SMatthew Garrett #define EFI_NOT_READY		( 6 | (1UL << (BITS_PER_LONG-1)))
395d9db883SMatthew Garrett #define EFI_DEVICE_ERROR	( 7 | (1UL << (BITS_PER_LONG-1)))
405d9db883SMatthew Garrett #define EFI_WRITE_PROTECTED	( 8 | (1UL << (BITS_PER_LONG-1)))
415d9db883SMatthew Garrett #define EFI_OUT_OF_RESOURCES	( 9 | (1UL << (BITS_PER_LONG-1)))
421da177e4SLinus Torvalds #define EFI_NOT_FOUND		(14 | (1UL << (BITS_PER_LONG-1)))
431f71f37fSMasahisa Kojima #define EFI_ACCESS_DENIED	(15 | (1UL << (BITS_PER_LONG-1)))
4414c574f3SArvind Sankar #define EFI_TIMEOUT		(18 | (1UL << (BITS_PER_LONG-1)))
45dce48e35SArd Biesheuvel #define EFI_ABORTED		(21 | (1UL << (BITS_PER_LONG-1)))
465d9db883SMatthew Garrett #define EFI_SECURITY_VIOLATION	(26 | (1UL << (BITS_PER_LONG-1)))
471da177e4SLinus Torvalds 
481da177e4SLinus Torvalds typedef unsigned long efi_status_t;
491da177e4SLinus Torvalds typedef u8 efi_bool_t;
501da177e4SLinus Torvalds typedef u16 efi_char16_t;		/* UNICODE character */
51ed37ddffSRoy Franz typedef u64 efi_physical_addr_t;
52ed37ddffSRoy Franz typedef void *efi_handle_t;
531da177e4SLinus Torvalds 
5489ed4865SArd Biesheuvel #if defined(CONFIG_X86_64)
558f24f8c2SArd Biesheuvel #define __efiapi __attribute__((ms_abi))
5689ed4865SArd Biesheuvel #elif defined(CONFIG_X86_32)
5789ed4865SArd Biesheuvel #define __efiapi __attribute__((regparm(0)))
588f24f8c2SArd Biesheuvel #else
598f24f8c2SArd Biesheuvel #define __efiapi
608f24f8c2SArd Biesheuvel #endif
618f24f8c2SArd Biesheuvel 
62494c704fSArd Biesheuvel /*
63494c704fSArd Biesheuvel  * The UEFI spec and EDK2 reference implementation both define EFI_GUID as
64494c704fSArd Biesheuvel  * struct { u32 a; u16; b; u16 c; u8 d[8]; }; and so the implied alignment
65494c704fSArd Biesheuvel  * is 32 bits not 8 bits like our guid_t. In some cases (i.e., on 32-bit ARM),
66494c704fSArd Biesheuvel  * this means that firmware services invoked by the kernel may assume that
67494c704fSArd Biesheuvel  * efi_guid_t* arguments are 32-bit aligned, and use memory accessors that
68494c704fSArd Biesheuvel  * do not tolerate misalignment. So let's set the minimum alignment to 32 bits.
69494c704fSArd Biesheuvel  *
70494c704fSArd Biesheuvel  * Note that the UEFI spec as well as some comments in the EDK2 code base
71494c704fSArd Biesheuvel  * suggest that EFI_GUID should be 64-bit aligned, but this appears to be
72494c704fSArd Biesheuvel  * a mistake, given that no code seems to exist that actually enforces that
73494c704fSArd Biesheuvel  * or relies on it.
74494c704fSArd Biesheuvel  */
75494c704fSArd Biesheuvel typedef guid_t efi_guid_t __aligned(__alignof__(u32));
761da177e4SLinus Torvalds 
77cd619387SArd Biesheuvel #define EFI_GUID(a, b, c, d...) ((efi_guid_t){ {				\
78fb98cc0bSArd Biesheuvel 	(a) & 0xff, ((a) >> 8) & 0xff, ((a) >> 16) & 0xff, ((a) >> 24) & 0xff,	\
79fb98cc0bSArd Biesheuvel 	(b) & 0xff, ((b) >> 8) & 0xff,						\
80cd619387SArd Biesheuvel 	(c) & 0xff, ((c) >> 8) & 0xff, d } })
811da177e4SLinus Torvalds 
821da177e4SLinus Torvalds /*
831da177e4SLinus Torvalds  * Generic EFI table header
841da177e4SLinus Torvalds  */
851da177e4SLinus Torvalds typedef	struct {
861da177e4SLinus Torvalds 	u64 signature;
871da177e4SLinus Torvalds 	u32 revision;
881da177e4SLinus Torvalds 	u32 headersize;
891da177e4SLinus Torvalds 	u32 crc32;
901da177e4SLinus Torvalds 	u32 reserved;
911da177e4SLinus Torvalds } efi_table_hdr_t;
921da177e4SLinus Torvalds 
931da177e4SLinus Torvalds /*
941da177e4SLinus Torvalds  * Memory map descriptor:
951da177e4SLinus Torvalds  */
961da177e4SLinus Torvalds 
971da177e4SLinus Torvalds /* Memory types: */
981da177e4SLinus Torvalds #define EFI_RESERVED_TYPE		 0
991da177e4SLinus Torvalds #define EFI_LOADER_CODE			 1
1001da177e4SLinus Torvalds #define EFI_LOADER_DATA			 2
1011da177e4SLinus Torvalds #define EFI_BOOT_SERVICES_CODE		 3
1021da177e4SLinus Torvalds #define EFI_BOOT_SERVICES_DATA		 4
1031da177e4SLinus Torvalds #define EFI_RUNTIME_SERVICES_CODE	 5
1041da177e4SLinus Torvalds #define EFI_RUNTIME_SERVICES_DATA	 6
1051da177e4SLinus Torvalds #define EFI_CONVENTIONAL_MEMORY		 7
1061da177e4SLinus Torvalds #define EFI_UNUSABLE_MEMORY		 8
1071da177e4SLinus Torvalds #define EFI_ACPI_RECLAIM_MEMORY		 9
1081da177e4SLinus Torvalds #define EFI_ACPI_MEMORY_NVS		10
1091da177e4SLinus Torvalds #define EFI_MEMORY_MAPPED_IO		11
1101da177e4SLinus Torvalds #define EFI_MEMORY_MAPPED_IO_PORT_SPACE	12
1111da177e4SLinus Torvalds #define EFI_PAL_CODE			13
112ad5fb870SDan Williams #define EFI_PERSISTENT_MEMORY		14
113745e3ed8SKirill A. Shutemov #define EFI_UNACCEPTED_MEMORY		15
114745e3ed8SKirill A. Shutemov #define EFI_MAX_MEMORY_TYPE		16
1151da177e4SLinus Torvalds 
1161da177e4SLinus Torvalds /* Attribute values: */
117*bbc45785SArd Biesheuvel #define EFI_MEMORY_UC			BIT_ULL(0)	/* uncached */
118*bbc45785SArd Biesheuvel #define EFI_MEMORY_WC			BIT_ULL(1)	/* write-coalescing */
119*bbc45785SArd Biesheuvel #define EFI_MEMORY_WT			BIT_ULL(2)	/* write-through */
120*bbc45785SArd Biesheuvel #define EFI_MEMORY_WB			BIT_ULL(3)	/* write-back */
121*bbc45785SArd Biesheuvel #define EFI_MEMORY_UCE			BIT_ULL(4)	/* uncached, exported */
122*bbc45785SArd Biesheuvel #define EFI_MEMORY_WP			BIT_ULL(12)	/* write-protect */
123*bbc45785SArd Biesheuvel #define EFI_MEMORY_RP			BIT_ULL(13)	/* read-protect */
124*bbc45785SArd Biesheuvel #define EFI_MEMORY_XP			BIT_ULL(14)	/* execute-protect */
125*bbc45785SArd Biesheuvel #define EFI_MEMORY_NV			BIT_ULL(15)	/* non-volatile */
126*bbc45785SArd Biesheuvel #define EFI_MEMORY_MORE_RELIABLE	BIT_ULL(16)	/* higher reliability */
127*bbc45785SArd Biesheuvel #define EFI_MEMORY_RO			BIT_ULL(17)	/* read-only */
128*bbc45785SArd Biesheuvel #define EFI_MEMORY_SP			BIT_ULL(18)	/* soft reserved */
129*bbc45785SArd Biesheuvel #define EFI_MEMORY_CPU_CRYPTO		BIT_ULL(19)	/* supports encryption */
130ba69e075SArd Biesheuvel #define EFI_MEMORY_HOT_PLUGGABLE	BIT_ULL(20)	/* supports unplugging at runtime */
131*bbc45785SArd Biesheuvel #define EFI_MEMORY_RUNTIME		BIT_ULL(63)	/* range requires runtime mapping */
132*bbc45785SArd Biesheuvel 
1331da177e4SLinus Torvalds #define EFI_MEMORY_DESCRIPTOR_VERSION	1
1341da177e4SLinus Torvalds 
1351da177e4SLinus Torvalds #define EFI_PAGE_SHIFT		12
136ed37ddffSRoy Franz #define EFI_PAGE_SIZE		(1UL << EFI_PAGE_SHIFT)
1370100a3e6SPeter Jones #define EFI_PAGES_MAX		(U64_MAX >> EFI_PAGE_SHIFT)
1381da177e4SLinus Torvalds 
1391da177e4SLinus Torvalds typedef struct {
1401da177e4SLinus Torvalds 	u32 type;
1411da177e4SLinus Torvalds 	u32 pad;
1421da177e4SLinus Torvalds 	u64 phys_addr;
1431da177e4SLinus Torvalds 	u64 virt_addr;
1441da177e4SLinus Torvalds 	u64 num_pages;
1451da177e4SLinus Torvalds 	u64 attribute;
1461da177e4SLinus Torvalds } efi_memory_desc_t;
1471da177e4SLinus Torvalds 
1483b370237SMatthew Garrett typedef struct {
1493b370237SMatthew Garrett 	efi_guid_t guid;
1503b370237SMatthew Garrett 	u32 headersize;
1513b370237SMatthew Garrett 	u32 flags;
1523b370237SMatthew Garrett 	u32 imagesize;
1533b370237SMatthew Garrett } efi_capsule_header_t;
1543b370237SMatthew Garrett 
1551882de7fSChen Yu /* EFI_FIRMWARE_MANAGEMENT_CAPSULE_HEADER */
1561882de7fSChen Yu struct efi_manage_capsule_header {
1571882de7fSChen Yu 	u32 ver;
1581882de7fSChen Yu 	u16 emb_drv_cnt;
1591882de7fSChen Yu 	u16 payload_cnt;
1601882de7fSChen Yu 	/*
1611882de7fSChen Yu 	 * Variable-size array of the size given by the sum of
1621882de7fSChen Yu 	 * emb_drv_cnt and payload_cnt.
1631882de7fSChen Yu 	 */
1641882de7fSChen Yu 	u64 offset_list[];
1651882de7fSChen Yu } __packed;
1661882de7fSChen Yu 
1671882de7fSChen Yu /* EFI_FIRMWARE_MANAGEMENT_CAPSULE_IMAGE_HEADER */
1681882de7fSChen Yu struct efi_manage_capsule_image_header {
1691882de7fSChen Yu 	u32 ver;
1701882de7fSChen Yu 	efi_guid_t image_type_id;
1711882de7fSChen Yu 	u8 image_index;
1721882de7fSChen Yu 	u8 reserved_bytes[3];
1731882de7fSChen Yu 	u32 image_size;
1741882de7fSChen Yu 	u32 vendor_code_size;
1751882de7fSChen Yu 	/* hw_ins was introduced in version 2 */
1761882de7fSChen Yu 	u64 hw_ins;
1771882de7fSChen Yu 	/* capsule_support was introduced in version 3 */
1781882de7fSChen Yu 	u64 capsule_support;
1791882de7fSChen Yu } __packed;
1801882de7fSChen Yu 
1811882de7fSChen Yu /* WIN_CERTIFICATE */
1821882de7fSChen Yu struct win_cert {
1831882de7fSChen Yu 	u32 len;
1841882de7fSChen Yu 	u16 rev;
1851882de7fSChen Yu 	u16 cert_type;
1861882de7fSChen Yu };
1871882de7fSChen Yu 
1881882de7fSChen Yu /* WIN_CERTIFICATE_UEFI_GUID */
1891882de7fSChen Yu struct win_cert_uefi_guid {
1901882de7fSChen Yu 	struct win_cert	hdr;
1911882de7fSChen Yu 	efi_guid_t cert_type;
1921882de7fSChen Yu 	u8 cert_data[];
1931882de7fSChen Yu };
1941882de7fSChen Yu 
1951882de7fSChen Yu /* EFI_FIRMWARE_IMAGE_AUTHENTICATION */
1961882de7fSChen Yu struct efi_image_auth {
1971882de7fSChen Yu 	u64 mon_count;
1981882de7fSChen Yu 	struct win_cert_uefi_guid auth_info;
1991882de7fSChen Yu };
2001882de7fSChen Yu 
201bb05e4baSMatt Fleming /*
202f0133f3cSMatt Fleming  * EFI capsule flags
203f0133f3cSMatt Fleming  */
204f0133f3cSMatt Fleming #define EFI_CAPSULE_PERSIST_ACROSS_RESET	0x00010000
205f0133f3cSMatt Fleming #define EFI_CAPSULE_POPULATE_SYSTEM_TABLE	0x00020000
206f0133f3cSMatt Fleming #define EFI_CAPSULE_INITIATE_RESET		0x00040000
207f0133f3cSMatt Fleming 
2083fabd628SArd Biesheuvel struct capsule_info {
2093fabd628SArd Biesheuvel 	efi_capsule_header_t	header;
210f24c4d47SArd Biesheuvel 	efi_capsule_header_t	*capsule;
2113fabd628SArd Biesheuvel 	int			reset_type;
2123fabd628SArd Biesheuvel 	long			index;
2133fabd628SArd Biesheuvel 	size_t			count;
2143fabd628SArd Biesheuvel 	size_t			total_size;
215f24c4d47SArd Biesheuvel 	struct page		**pages;
216f24c4d47SArd Biesheuvel 	phys_addr_t		*phys;
2173fabd628SArd Biesheuvel 	size_t			page_bytes_remain;
2183fabd628SArd Biesheuvel };
2193fabd628SArd Biesheuvel 
220aa480379SJan Kiszka int efi_capsule_setup_info(struct capsule_info *cap_info, void *kbuff,
221aa480379SJan Kiszka                            size_t hdr_bytes);
2223fabd628SArd Biesheuvel int __efi_capsule_setup_info(struct capsule_info *cap_info);
2233fabd628SArd Biesheuvel 
2241da177e4SLinus Torvalds /*
2251da177e4SLinus Torvalds  * Types and defines for Time Services
2261da177e4SLinus Torvalds  */
2271da177e4SLinus Torvalds #define EFI_TIME_ADJUST_DAYLIGHT 0x1
2281da177e4SLinus Torvalds #define EFI_TIME_IN_DAYLIGHT     0x2
2291da177e4SLinus Torvalds #define EFI_UNSPECIFIED_TIMEZONE 0x07ff
2301da177e4SLinus Torvalds 
2311da177e4SLinus Torvalds typedef struct {
2321da177e4SLinus Torvalds 	u16 year;
2331da177e4SLinus Torvalds 	u8 month;
2341da177e4SLinus Torvalds 	u8 day;
2351da177e4SLinus Torvalds 	u8 hour;
2361da177e4SLinus Torvalds 	u8 minute;
2371da177e4SLinus Torvalds 	u8 second;
2381da177e4SLinus Torvalds 	u8 pad1;
2391da177e4SLinus Torvalds 	u32 nanosecond;
2401da177e4SLinus Torvalds 	s16 timezone;
2411da177e4SLinus Torvalds 	u8 daylight;
2421da177e4SLinus Torvalds 	u8 pad2;
2431da177e4SLinus Torvalds } efi_time_t;
2441da177e4SLinus Torvalds 
2451da177e4SLinus Torvalds typedef struct {
2461da177e4SLinus Torvalds 	u32 resolution;
2471da177e4SLinus Torvalds 	u32 accuracy;
2481da177e4SLinus Torvalds 	u8 sets_to_zero;
2491da177e4SLinus Torvalds } efi_time_cap_t;
2501da177e4SLinus Torvalds 
2518166ec09SArd Biesheuvel typedef union efi_boot_services efi_boot_services_t;
25233b6d034SThiebaud Weksteen 
253f30ca6baSMatt Fleming /*
2541da177e4SLinus Torvalds  * Types and defines for EFI ResetSystem
2551da177e4SLinus Torvalds  */
2561da177e4SLinus Torvalds #define EFI_RESET_COLD 0
2571da177e4SLinus Torvalds #define EFI_RESET_WARM 1
2581da177e4SLinus Torvalds #define EFI_RESET_SHUTDOWN 2
2591da177e4SLinus Torvalds 
2601da177e4SLinus Torvalds /*
2611da177e4SLinus Torvalds  * EFI Runtime Services table
2621da177e4SLinus Torvalds  */
2631da177e4SLinus Torvalds #define EFI_RUNTIME_SERVICES_SIGNATURE ((u64)0x5652453544e5552ULL)
2641da177e4SLinus Torvalds #define EFI_RUNTIME_SERVICES_REVISION  0x00010000
2651da177e4SLinus Torvalds 
2661da177e4SLinus Torvalds typedef struct {
2671da177e4SLinus Torvalds 	efi_table_hdr_t hdr;
268677703ceSMatt Fleming 	u32 get_time;
269677703ceSMatt Fleming 	u32 set_time;
270677703ceSMatt Fleming 	u32 get_wakeup_time;
271677703ceSMatt Fleming 	u32 set_wakeup_time;
272677703ceSMatt Fleming 	u32 set_virtual_address_map;
273677703ceSMatt Fleming 	u32 convert_pointer;
274677703ceSMatt Fleming 	u32 get_variable;
275677703ceSMatt Fleming 	u32 get_next_variable;
276677703ceSMatt Fleming 	u32 set_variable;
277677703ceSMatt Fleming 	u32 get_next_high_mono_count;
278677703ceSMatt Fleming 	u32 reset_system;
279677703ceSMatt Fleming 	u32 update_capsule;
280677703ceSMatt Fleming 	u32 query_capsule_caps;
281677703ceSMatt Fleming 	u32 query_variable_info;
282677703ceSMatt Fleming } efi_runtime_services_32_t;
283677703ceSMatt Fleming 
2841da177e4SLinus Torvalds typedef efi_status_t efi_get_time_t (efi_time_t *tm, efi_time_cap_t *tc);
2851da177e4SLinus Torvalds typedef efi_status_t efi_set_time_t (efi_time_t *tm);
2861da177e4SLinus Torvalds typedef efi_status_t efi_get_wakeup_time_t (efi_bool_t *enabled, efi_bool_t *pending,
2871da177e4SLinus Torvalds 					    efi_time_t *tm);
2881da177e4SLinus Torvalds typedef efi_status_t efi_set_wakeup_time_t (efi_bool_t enabled, efi_time_t *tm);
2891da177e4SLinus Torvalds typedef efi_status_t efi_get_variable_t (efi_char16_t *name, efi_guid_t *vendor, u32 *attr,
2901da177e4SLinus Torvalds 					 unsigned long *data_size, void *data);
2911da177e4SLinus Torvalds typedef efi_status_t efi_get_next_variable_t (unsigned long *name_size, efi_char16_t *name,
2921da177e4SLinus Torvalds 					      efi_guid_t *vendor);
2931da177e4SLinus Torvalds typedef efi_status_t efi_set_variable_t (efi_char16_t *name, efi_guid_t *vendor,
294f7a2d73fSMatthew Garrett 					 u32 attr, unsigned long data_size,
2951da177e4SLinus Torvalds 					 void *data);
2961da177e4SLinus Torvalds typedef efi_status_t efi_get_next_high_mono_count_t (u32 *count);
2971da177e4SLinus Torvalds typedef void efi_reset_system_t (int reset_type, efi_status_t status,
2981da177e4SLinus Torvalds 				 unsigned long data_size, efi_char16_t *data);
2991da177e4SLinus Torvalds typedef efi_status_t efi_set_virtual_address_map_t (unsigned long memory_map_size,
3001da177e4SLinus Torvalds 						unsigned long descriptor_size,
3011da177e4SLinus Torvalds 						u32 descriptor_version,
3021da177e4SLinus Torvalds 						efi_memory_desc_t *virtual_map);
3033b370237SMatthew Garrett typedef efi_status_t efi_query_variable_info_t(u32 attr,
3043b370237SMatthew Garrett 					       u64 *storage_space,
3053b370237SMatthew Garrett 					       u64 *remaining_space,
3063b370237SMatthew Garrett 					       u64 *max_variable_size);
3073b370237SMatthew Garrett typedef efi_status_t efi_update_capsule_t(efi_capsule_header_t **capsules,
3083b370237SMatthew Garrett 					  unsigned long count,
3093b370237SMatthew Garrett 					  unsigned long sg_list);
3103b370237SMatthew Garrett typedef efi_status_t efi_query_capsule_caps_t(efi_capsule_header_t **capsules,
3113b370237SMatthew Garrett 					      unsigned long count,
3123b370237SMatthew Garrett 					      u64 *max_size,
3133b370237SMatthew Garrett 					      int *reset_type);
314ca0e30dcSArd Biesheuvel typedef efi_status_t efi_query_variable_store_t(u32 attributes,
315ca0e30dcSArd Biesheuvel 						unsigned long size,
316ca0e30dcSArd Biesheuvel 						bool nonblocking);
3171da177e4SLinus Torvalds 
3181786e830SArd Biesheuvel typedef union {
3191786e830SArd Biesheuvel 	struct {
320c4c39c70SArd Biesheuvel 		efi_table_hdr_t				hdr;
3218f24f8c2SArd Biesheuvel 		efi_get_time_t __efiapi			*get_time;
3228f24f8c2SArd Biesheuvel 		efi_set_time_t __efiapi			*set_time;
3238f24f8c2SArd Biesheuvel 		efi_get_wakeup_time_t __efiapi		*get_wakeup_time;
3248f24f8c2SArd Biesheuvel 		efi_set_wakeup_time_t __efiapi		*set_wakeup_time;
3258f24f8c2SArd Biesheuvel 		efi_set_virtual_address_map_t __efiapi	*set_virtual_address_map;
326c4c39c70SArd Biesheuvel 		void					*convert_pointer;
3278f24f8c2SArd Biesheuvel 		efi_get_variable_t __efiapi		*get_variable;
3288f24f8c2SArd Biesheuvel 		efi_get_next_variable_t __efiapi	*get_next_variable;
3298f24f8c2SArd Biesheuvel 		efi_set_variable_t __efiapi		*set_variable;
3308f24f8c2SArd Biesheuvel 		efi_get_next_high_mono_count_t __efiapi	*get_next_high_mono_count;
3318f24f8c2SArd Biesheuvel 		efi_reset_system_t __efiapi		*reset_system;
3328f24f8c2SArd Biesheuvel 		efi_update_capsule_t __efiapi		*update_capsule;
3338f24f8c2SArd Biesheuvel 		efi_query_capsule_caps_t __efiapi	*query_capsule_caps;
3348f24f8c2SArd Biesheuvel 		efi_query_variable_info_t __efiapi	*query_variable_info;
3351786e830SArd Biesheuvel 	};
3361786e830SArd Biesheuvel 	efi_runtime_services_32_t mixed_mode;
337c4c39c70SArd Biesheuvel } efi_runtime_services_t;
338c4c39c70SArd Biesheuvel 
339022ee6c5SArd Biesheuvel void efi_native_runtime_setup(void);
340022ee6c5SArd Biesheuvel 
3411da177e4SLinus Torvalds /*
3421da177e4SLinus Torvalds  * EFI Configuration Table and GUID definitions
34354fd11feSPeter Jones  *
3447fb2b43cSIngo Molnar  * These are all defined in a single line to make them easier to
3457fb2b43cSIngo Molnar  * grep for and to see them at a glance - while still having a
3467fb2b43cSIngo Molnar  * similar structure to the definitions in the spec.
3477fb2b43cSIngo Molnar  *
3487fb2b43cSIngo Molnar  * Here's how they are structured:
34954fd11feSPeter Jones  *
35054fd11feSPeter Jones  * GUID: 12345678-1234-1234-1234-123456789012
35154fd11feSPeter Jones  * Spec:
35254fd11feSPeter Jones  *      #define EFI_SOME_PROTOCOL_GUID \
35354fd11feSPeter Jones  *        {0x12345678,0x1234,0x1234,\
35454fd11feSPeter Jones  *          {0x12,0x34,0x12,0x34,0x56,0x78,0x90,0x12}}
35554fd11feSPeter Jones  * Here:
3567fb2b43cSIngo Molnar  *	#define SOME_PROTOCOL_GUID		EFI_GUID(0x12345678, 0x1234, 0x1234,  0x12, 0x34, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12)
3577fb2b43cSIngo Molnar  *					^ tabs					    ^extra space
3587fb2b43cSIngo Molnar  *
3597fb2b43cSIngo Molnar  * Note that the 'extra space' separates the values at the same place
3607fb2b43cSIngo Molnar  * where the UEFI SPEC breaks the line.
3611da177e4SLinus Torvalds  */
3627fb2b43cSIngo Molnar #define NULL_GUID				EFI_GUID(0x00000000, 0x0000, 0x0000,  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
3637fb2b43cSIngo Molnar #define ACPI_TABLE_GUID				EFI_GUID(0xeb9d2d30, 0x2d88, 0x11d3,  0x9a, 0x16, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d)
3647fb2b43cSIngo Molnar #define ACPI_20_TABLE_GUID			EFI_GUID(0x8868e871, 0xe4f1, 0x11d3,  0xbc, 0x22, 0x00, 0x80, 0xc7, 0x3c, 0x88, 0x81)
3657fb2b43cSIngo Molnar #define SMBIOS_TABLE_GUID			EFI_GUID(0xeb9d2d31, 0x2d88, 0x11d3,  0x9a, 0x16, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d)
3667fb2b43cSIngo Molnar #define SMBIOS3_TABLE_GUID			EFI_GUID(0xf2fd1544, 0x9794, 0x4a2c,  0x99, 0x2e, 0xe5, 0xbb, 0xcf, 0x20, 0xe3, 0x94)
3677fb2b43cSIngo Molnar #define EFI_GLOBAL_VARIABLE_GUID		EFI_GUID(0x8be4df61, 0x93ca, 0x11d2,  0xaa, 0x0d, 0x00, 0xe0, 0x98, 0x03, 0x2b, 0x8c)
3687fb2b43cSIngo Molnar #define UV_SYSTEM_TABLE_GUID			EFI_GUID(0x3b13a7d4, 0x633e, 0x11dd,  0x93, 0xec, 0xda, 0x25, 0x56, 0xd8, 0x95, 0x93)
3697fb2b43cSIngo Molnar #define LINUX_EFI_CRASH_GUID			EFI_GUID(0xcfc8fc79, 0xbe2e, 0x4ddc,  0x97, 0xf0, 0x9f, 0x98, 0xbf, 0xe2, 0x98, 0xa0)
3707fb2b43cSIngo Molnar #define LOADED_IMAGE_PROTOCOL_GUID		EFI_GUID(0x5b1b31a1, 0x9562, 0x11d2,  0x8e, 0x3f, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
371c7007d9fSArd Biesheuvel #define LOADED_IMAGE_DEVICE_PATH_PROTOCOL_GUID	EFI_GUID(0xbc62157e, 0x3e33, 0x4fec,  0x99, 0x20, 0x2d, 0x3b, 0x36, 0xd7, 0x50, 0xdf)
372c7007d9fSArd Biesheuvel #define EFI_DEVICE_PATH_PROTOCOL_GUID		EFI_GUID(0x09576e91, 0x6d3f, 0x11d2,  0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
373c7007d9fSArd Biesheuvel #define EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID	EFI_GUID(0x8b843e20, 0x8132, 0x4852,  0x90, 0xcc, 0x55, 0x1a, 0x4e, 0x4a, 0x7f, 0x1c)
37470912985SArd Biesheuvel #define EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL_GUID	EFI_GUID(0x05c99a21, 0xc70f, 0x4ad2,  0x8a, 0x5f, 0x35, 0xdf, 0x33, 0x43, 0xf5, 0x1e)
3757fb2b43cSIngo Molnar #define EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID	EFI_GUID(0x9042a9de, 0x23dc, 0x4a38,  0x96, 0xfb, 0x7a, 0xde, 0xd0, 0x80, 0x51, 0x6a)
3767fb2b43cSIngo Molnar #define EFI_PCI_IO_PROTOCOL_GUID		EFI_GUID(0x4cf5b200, 0x68b8, 0x4ca5,  0x9e, 0xec, 0xb2, 0x3e, 0x3f, 0x50, 0x02, 0x9a)
3777fb2b43cSIngo Molnar #define EFI_FILE_INFO_ID			EFI_GUID(0x09576e92, 0x6d3f, 0x11d2,  0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
3787fb2b43cSIngo Molnar #define EFI_SYSTEM_RESOURCE_TABLE_GUID		EFI_GUID(0xb122a263, 0x3661, 0x4f68,  0x99, 0x29, 0x78, 0xf8, 0xb0, 0xd6, 0x21, 0x80)
3797fb2b43cSIngo Molnar #define EFI_FILE_SYSTEM_GUID			EFI_GUID(0x964e5b22, 0x6459, 0x11d2,  0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
3807fb2b43cSIngo Molnar #define DEVICE_TREE_GUID			EFI_GUID(0xb1b621d5, 0xf19c, 0x41a5,  0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0)
3817fb2b43cSIngo Molnar #define EFI_RNG_PROTOCOL_GUID			EFI_GUID(0x3152bca5, 0xeade, 0x433d,  0x86, 0x2e, 0xc0, 0x1c, 0xdc, 0x29, 0x1f, 0x44)
382568bc4e8SArd Biesheuvel #define EFI_RNG_ALGORITHM_RAW			EFI_GUID(0xe43176d7, 0xb6e8, 0x4827,  0xb7, 0x84, 0x7f, 0xfd, 0xc4, 0xb6, 0x85, 0x61)
3837fb2b43cSIngo Molnar #define EFI_MEMORY_ATTRIBUTES_TABLE_GUID	EFI_GUID(0xdcfa911d, 0x26eb, 0x469f,  0xa2, 0x20, 0x38, 0xb7, 0xdc, 0x46, 0x12, 0x20)
3847fb2b43cSIngo Molnar #define EFI_CONSOLE_OUT_DEVICE_GUID		EFI_GUID(0xd3b36f2c, 0xd551, 0x11d4,  0x9a, 0x46, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d)
38558c5475aSLukas Wunner #define APPLE_PROPERTIES_PROTOCOL_GUID		EFI_GUID(0x91bd12fe, 0xf6c3, 0x44fb,  0xa5, 0xb7, 0x51, 0x22, 0xab, 0x30, 0x3a, 0xe0)
38671e49eccSAditya Garg #define APPLE_SET_OS_PROTOCOL_GUID		EFI_GUID(0xc5c5da95, 0x7d5c, 0x45e6,  0xb2, 0xf1, 0x3f, 0xd5, 0x2b, 0xb1, 0x00, 0x77)
38733b6d034SThiebaud Weksteen #define EFI_TCG2_PROTOCOL_GUID			EFI_GUID(0x607f766c, 0x7455, 0x42be,  0x93, 0x0b, 0xe4, 0xd7, 0x6d, 0xb2, 0x72, 0x0f)
3887a1381e8SArd Biesheuvel #define EFI_TCG2_FINAL_EVENTS_TABLE_GUID	EFI_GUID(0x1e2ed096, 0x30e2, 0x4254,  0xbd, 0x89, 0x86, 0x3b, 0xbe, 0xf8, 0x23, 0x25)
3892931d526SArd Biesheuvel #define EFI_LOAD_FILE_PROTOCOL_GUID		EFI_GUID(0x56ec3091, 0x954c, 0x11d2,  0x8e, 0x3f, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
3902931d526SArd Biesheuvel #define EFI_LOAD_FILE2_PROTOCOL_GUID		EFI_GUID(0x4006c0c1, 0xfcb3, 0x403e,  0x99, 0x6d, 0x4a, 0x6c, 0x87, 0x24, 0xe0, 0x6d)
391fe4db90aSArd Biesheuvel #define EFI_RT_PROPERTIES_TABLE_GUID		EFI_GUID(0xeb66918a, 0x7eef, 0x402a,  0x84, 0x2e, 0x93, 0x1d, 0x21, 0xc3, 0x8a, 0xe9)
3923ba75c13SBaskov Evgeniy #define EFI_DXE_SERVICES_TABLE_GUID		EFI_GUID(0x05ad34ba, 0x6f02, 0x4214,  0x95, 0x2e, 0x4d, 0xa0, 0x39, 0x8e, 0x2b, 0xb9)
393550b33cfSArd Biesheuvel #define EFI_SMBIOS_PROTOCOL_GUID		EFI_GUID(0x03583ff6, 0xcb36, 0x4940,  0x94, 0x7e, 0xb9, 0xb3, 0x9f, 0x4a, 0xfa, 0xf7)
39479729f26SEvgeniy Baskov #define EFI_MEMORY_ATTRIBUTE_PROTOCOL_GUID	EFI_GUID(0xf4560cf6, 0x40ec, 0x4b4a,  0xa1, 0x92, 0xbf, 0x1d, 0x57, 0xd0, 0xb1, 0x89)
395fc372064SArd Biesheuvel 
396e58910cdSJosh Boyer #define EFI_IMAGE_SECURITY_DATABASE_GUID	EFI_GUID(0xd719b2cb, 0x3d3a, 0x4596,  0xa3, 0xbc, 0xda, 0xd0, 0x0e, 0x67, 0x65, 0x6f)
397e58910cdSJosh Boyer #define EFI_SHIM_LOCK_GUID			EFI_GUID(0x605dab50, 0xe046, 0x4300,  0xab, 0xb6, 0x3d, 0xd8, 0x10, 0xdd, 0x8b, 0x23)
398e58910cdSJosh Boyer 
3995c126ba2SDave Howells #define EFI_CERT_SHA256_GUID			EFI_GUID(0xc1c41626, 0x504c, 0x4092, 0xac, 0xa9, 0x41, 0xf9, 0x36, 0x93, 0x43, 0x28)
4005c126ba2SDave Howells #define EFI_CERT_X509_GUID			EFI_GUID(0xa5c059a1, 0x94e4, 0x4aa7, 0x87, 0xb5, 0xab, 0x15, 0x5c, 0x2b, 0xf0, 0x72)
4015c126ba2SDave Howells #define EFI_CERT_X509_SHA256_GUID		EFI_GUID(0x3bd2a492, 0x96c0, 0x4079, 0xb4, 0x20, 0xfc, 0xf9, 0x8e, 0xf1, 0x03, 0xed)
4025ea98e01SBrijesh Singh #define EFI_CC_BLOB_GUID			EFI_GUID(0x067b1f5f, 0xcf26, 0x44c5, 0x85, 0x54, 0x93, 0xd7, 0x77, 0x91, 0x2d, 0x42)
4030bbe5b0eSKuppuswamy Sathyanarayanan #define EFI_CC_MEASUREMENT_PROTOCOL_GUID	EFI_GUID(0x96751a3d, 0x72f4, 0x41a6, 0xa7, 0x94, 0xed, 0x5d, 0x0e, 0x67, 0xae, 0x6b)
404d228814bSKuppuswamy Sathyanarayanan #define EFI_CC_FINAL_EVENTS_TABLE_GUID		EFI_GUID(0xdd4a4648, 0x2de7, 0x4665, 0x96, 0x4d, 0x21, 0xd9, 0xef, 0x5f, 0xb4, 0x46)
4055c126ba2SDave Howells 
406801820beSArd Biesheuvel /*
407801820beSArd Biesheuvel  * This GUID is used to pass to the kernel proper the struct screen_info
408801820beSArd Biesheuvel  * structure that was populated by the stub based on the GOP protocol instance
409801820beSArd Biesheuvel  * associated with ConOut
410801820beSArd Biesheuvel  */
411732ea9dbSArd Biesheuvel #define LINUX_EFI_SCREEN_INFO_TABLE_GUID	EFI_GUID(0xe03fc20a, 0x85dc, 0x406e,  0xb9, 0x0e, 0x4a, 0xb5, 0x02, 0x37, 0x1d, 0x95)
4122a55280aSArd Biesheuvel #define LINUX_EFI_ARM_CPU_STATE_TABLE_GUID	EFI_GUID(0xef79e4aa, 0x3c3d, 0x4989,  0xb9, 0x02, 0x07, 0xa9, 0x43, 0xe5, 0x50, 0xd2)
4137fb2b43cSIngo Molnar #define LINUX_EFI_LOADER_ENTRY_GUID		EFI_GUID(0x4a67b082, 0x0a4c, 0x41cf,  0xb6, 0xc7, 0x44, 0x0b, 0x29, 0xbb, 0x8c, 0x4f)
41463625988SArd Biesheuvel #define LINUX_EFI_RANDOM_SEED_TABLE_GUID	EFI_GUID(0x1ce1e5bc, 0x7ceb, 0x42f2,  0x81, 0xe5, 0x8a, 0xad, 0xf1, 0x80, 0xf5, 0x7b)
41533b6d034SThiebaud Weksteen #define LINUX_EFI_TPM_EVENT_LOG_GUID		EFI_GUID(0xb7799cb0, 0xeca2, 0x4943,  0x96, 0x67, 0x1f, 0xae, 0x07, 0xb7, 0x47, 0xfa)
41671e0940dSArd Biesheuvel #define LINUX_EFI_MEMRESERVE_TABLE_GUID		EFI_GUID(0x888eb0c6, 0x8ede, 0x4ff5,  0xa8, 0xf0, 0x9a, 0xee, 0x5c, 0xb9, 0x77, 0xc2)
417ec93fc37SArd Biesheuvel #define LINUX_EFI_INITRD_MEDIA_GUID		EFI_GUID(0x5568e427, 0x68fc, 0x4f3d,  0xac, 0x74, 0xca, 0x55, 0x52, 0x31, 0xcc, 0x68)
41858c90902SLenny Szubowicz #define LINUX_EFI_MOK_VARIABLE_TABLE_GUID	EFI_GUID(0xc451ed2b, 0x9694, 0x45d3,  0xba, 0xba, 0xed, 0x9f, 0x89, 0x88, 0xa3, 0x89)
41912274189SDov Murik #define LINUX_EFI_COCO_SECRET_AREA_GUID		EFI_GUID(0xadf956ad, 0xe98c, 0x484c,  0xae, 0x11, 0xb5, 0x1c, 0x7d, 0x33, 0x64, 0x47)
420171539f5SArd Biesheuvel #define LINUX_EFI_BOOT_MEMMAP_GUID		EFI_GUID(0x800f683f, 0xd08b, 0x423a,  0xa2, 0x93, 0x96, 0x5c, 0x3c, 0x6f, 0xe2, 0xb4)
421745e3ed8SKirill A. Shutemov #define LINUX_EFI_UNACCEPTED_MEM_TABLE_GUID	EFI_GUID(0xd5d1de3c, 0x105c, 0x44f9,  0x9e, 0xa9, 0xbc, 0xef, 0x98, 0x12, 0x00, 0x31)
42206f7d4a1SCompostella, Jeremy 
4233f68e695SSunil V L #define RISCV_EFI_BOOT_PROTOCOL_GUID		EFI_GUID(0xccd15fec, 0x6f73, 0x4eec,  0x83, 0x95, 0x3e, 0x69, 0xe4, 0xb9, 0x40, 0xbf)
4243f68e695SSunil V L 
42507768c55SArd Biesheuvel /*
42607768c55SArd Biesheuvel  * This GUID may be installed onto the kernel image's handle as a NULL protocol
42707768c55SArd Biesheuvel  * to signal to the stub that the placement of the image should be respected,
42807768c55SArd Biesheuvel  * and moving the image in physical memory is undesirable. To ensure
42907768c55SArd Biesheuvel  * compatibility with 64k pages kernels with virtually mapped stacks, and to
43007768c55SArd Biesheuvel  * avoid defeating physical randomization, this protocol should only be
43107768c55SArd Biesheuvel  * installed if the image was placed at a randomized 128k aligned address in
43207768c55SArd Biesheuvel  * memory.
43307768c55SArd Biesheuvel  */
43407768c55SArd Biesheuvel #define LINUX_EFI_LOADED_IMAGE_FIXED_GUID	EFI_GUID(0xf5a37b6d, 0x3344, 0x42a5,  0xb6, 0xbb, 0x97, 0x86, 0x48, 0xc1, 0x89, 0x0a)
43507768c55SArd Biesheuvel 
4361c5fecb6SNarendra K /* OEM GUIDs */
4371c5fecb6SNarendra K #define DELLEMC_EFI_RCI2_TABLE_GUID		EFI_GUID(0x2d9f28a2, 0xa886, 0x456a,  0x97, 0xa8, 0xf1, 0x1e, 0xf2, 0x4f, 0xf4, 0x55)
4382f70ddb1SAshish Kalra #define AMD_SEV_MEM_ENCRYPT_GUID		EFI_GUID(0x0cf29b71, 0x9e51, 0x433a,  0xa3, 0xb7, 0x81, 0xf3, 0xab, 0x16, 0xb8, 0x75)
4391c5fecb6SNarendra K 
440c0461bd1SDionna Glaze /* OVMF protocol GUIDs */
441c0461bd1SDionna Glaze #define OVMF_SEV_MEMORY_ACCEPTANCE_PROTOCOL_GUID	EFI_GUID(0xc5a010fe, 0x38a7, 0x4531,  0x8a, 0x4a, 0x05, 0x00, 0xd2, 0xfd, 0x16, 0x49)
442c0461bd1SDionna Glaze 
4431da177e4SLinus Torvalds typedef struct {
4441da177e4SLinus Torvalds 	efi_guid_t guid;
4451adbfa35SOlof Johansson 	u64 table;
4461adbfa35SOlof Johansson } efi_config_table_64_t;
4471adbfa35SOlof Johansson 
4481adbfa35SOlof Johansson typedef struct {
4491adbfa35SOlof Johansson 	efi_guid_t guid;
4501adbfa35SOlof Johansson 	u32 table;
4511adbfa35SOlof Johansson } efi_config_table_32_t;
4521adbfa35SOlof Johansson 
4531786e830SArd Biesheuvel typedef union {
4541786e830SArd Biesheuvel 	struct {
4551adbfa35SOlof Johansson 		efi_guid_t guid;
456f958efe9SArd Biesheuvel 		void *table;
4571786e830SArd Biesheuvel 	};
4581786e830SArd Biesheuvel 	efi_config_table_32_t mixed_mode;
4591da177e4SLinus Torvalds } efi_config_table_t;
4601da177e4SLinus Torvalds 
461272686bfSLeif Lindholm typedef struct {
462272686bfSLeif Lindholm 	efi_guid_t guid;
463272686bfSLeif Lindholm 	unsigned long *ptr;
4644e9a0f73SArd Biesheuvel 	const char name[16];
465272686bfSLeif Lindholm } efi_config_table_type_t;
466272686bfSLeif Lindholm 
4671da177e4SLinus Torvalds #define EFI_SYSTEM_TABLE_SIGNATURE ((u64)0x5453595320494249ULL)
4683ba75c13SBaskov Evgeniy #define EFI_DXE_SERVICES_TABLE_SIGNATURE ((u64)0x565245535f455844ULL)
4691da177e4SLinus Torvalds 
4703b370237SMatthew Garrett #define EFI_2_30_SYSTEM_TABLE_REVISION  ((2 << 16) | (30))
4713b370237SMatthew Garrett #define EFI_2_20_SYSTEM_TABLE_REVISION  ((2 << 16) | (20))
4723b370237SMatthew Garrett #define EFI_2_10_SYSTEM_TABLE_REVISION  ((2 << 16) | (10))
4733b370237SMatthew Garrett #define EFI_2_00_SYSTEM_TABLE_REVISION  ((2 << 16) | (00))
4743b370237SMatthew Garrett #define EFI_1_10_SYSTEM_TABLE_REVISION  ((1 << 16) | (10))
4753b370237SMatthew Garrett #define EFI_1_02_SYSTEM_TABLE_REVISION  ((1 << 16) | (02))
4763b370237SMatthew Garrett 
4771da177e4SLinus Torvalds typedef struct {
4781da177e4SLinus Torvalds 	efi_table_hdr_t hdr;
4791adbfa35SOlof Johansson 	u64 fw_vendor;	/* physical addr of CHAR16 vendor string */
4801adbfa35SOlof Johansson 	u32 fw_revision;
4811adbfa35SOlof Johansson 	u32 __pad1;
4821adbfa35SOlof Johansson 	u64 con_in_handle;
4831adbfa35SOlof Johansson 	u64 con_in;
4841adbfa35SOlof Johansson 	u64 con_out_handle;
4851adbfa35SOlof Johansson 	u64 con_out;
4861adbfa35SOlof Johansson 	u64 stderr_handle;
4871adbfa35SOlof Johansson 	u64 stderr;
4881adbfa35SOlof Johansson 	u64 runtime;
4891adbfa35SOlof Johansson 	u64 boottime;
4901adbfa35SOlof Johansson 	u32 nr_tables;
4911adbfa35SOlof Johansson 	u32 __pad2;
4921adbfa35SOlof Johansson 	u64 tables;
4931adbfa35SOlof Johansson } efi_system_table_64_t;
4941adbfa35SOlof Johansson 
4951adbfa35SOlof Johansson typedef struct {
4961adbfa35SOlof Johansson 	efi_table_hdr_t hdr;
4971adbfa35SOlof Johansson 	u32 fw_vendor;	/* physical addr of CHAR16 vendor string */
4981adbfa35SOlof Johansson 	u32 fw_revision;
4991adbfa35SOlof Johansson 	u32 con_in_handle;
5001adbfa35SOlof Johansson 	u32 con_in;
5011adbfa35SOlof Johansson 	u32 con_out_handle;
5021adbfa35SOlof Johansson 	u32 con_out;
5031adbfa35SOlof Johansson 	u32 stderr_handle;
5041adbfa35SOlof Johansson 	u32 stderr;
5051adbfa35SOlof Johansson 	u32 runtime;
5061adbfa35SOlof Johansson 	u32 boottime;
5071adbfa35SOlof Johansson 	u32 nr_tables;
5081adbfa35SOlof Johansson 	u32 tables;
5091adbfa35SOlof Johansson } efi_system_table_32_t;
5101adbfa35SOlof Johansson 
5119b47c527SArvind Sankar typedef union efi_simple_text_input_protocol efi_simple_text_input_protocol_t;
512960a8d01SArd Biesheuvel typedef union efi_simple_text_output_protocol efi_simple_text_output_protocol_t;
513960a8d01SArd Biesheuvel 
5141786e830SArd Biesheuvel typedef union {
5151786e830SArd Biesheuvel 	struct {
5161adbfa35SOlof Johansson 		efi_table_hdr_t hdr;
5171da177e4SLinus Torvalds 		unsigned long fw_vendor;	/* physical addr of CHAR16 vendor string */
5181da177e4SLinus Torvalds 		u32 fw_revision;
5191da177e4SLinus Torvalds 		unsigned long con_in_handle;
5209b47c527SArvind Sankar 		efi_simple_text_input_protocol_t *con_in;
5211da177e4SLinus Torvalds 		unsigned long con_out_handle;
522960a8d01SArd Biesheuvel 		efi_simple_text_output_protocol_t *con_out;
5231da177e4SLinus Torvalds 		unsigned long stderr_handle;
5241da177e4SLinus Torvalds 		unsigned long stderr;
5251da177e4SLinus Torvalds 		efi_runtime_services_t *runtime;
526f30ca6baSMatt Fleming 		efi_boot_services_t *boottime;
5271da177e4SLinus Torvalds 		unsigned long nr_tables;
5281da177e4SLinus Torvalds 		unsigned long tables;
5291786e830SArd Biesheuvel 	};
5301786e830SArd Biesheuvel 	efi_system_table_32_t mixed_mode;
5311da177e4SLinus Torvalds } efi_system_table_t;
5321da177e4SLinus Torvalds 
533eab31265SArd Biesheuvel struct efi_boot_memmap {
534eab31265SArd Biesheuvel 	unsigned long		map_size;
535eab31265SArd Biesheuvel 	unsigned long		desc_size;
536eab31265SArd Biesheuvel 	u32			desc_ver;
537eab31265SArd Biesheuvel 	unsigned long		map_key;
538eab31265SArd Biesheuvel 	unsigned long		buff_size;
539eab31265SArd Biesheuvel 	efi_memory_desc_t	map[];
540eab31265SArd Biesheuvel };
541eab31265SArd Biesheuvel 
542745e3ed8SKirill A. Shutemov struct efi_unaccepted_memory {
543745e3ed8SKirill A. Shutemov 	u32 version;
544745e3ed8SKirill A. Shutemov 	u32 unit_size;
545745e3ed8SKirill A. Shutemov 	u64 phys_base;
546745e3ed8SKirill A. Shutemov 	u64 size;
547745e3ed8SKirill A. Shutemov 	unsigned long bitmap[];
548745e3ed8SKirill A. Shutemov };
549745e3ed8SKirill A. Shutemov 
5509479c7ceSMatt Fleming /*
5519479c7ceSMatt Fleming  * Architecture independent structure for describing a memory map for the
5521db91035SDan Williams  * benefit of efi_memmap_init_early(), and for passing context between
5531db91035SDan Williams  * efi_memmap_alloc() and efi_memmap_install().
5549479c7ceSMatt Fleming  */
5559479c7ceSMatt Fleming struct efi_memory_map_data {
5569479c7ceSMatt Fleming 	phys_addr_t phys_map;
5579479c7ceSMatt Fleming 	unsigned long size;
5589479c7ceSMatt Fleming 	unsigned long desc_version;
5599479c7ceSMatt Fleming 	unsigned long desc_size;
56026c0e44aSDan Williams 	unsigned long flags;
5619479c7ceSMatt Fleming };
5629479c7ceSMatt Fleming 
5631da177e4SLinus Torvalds struct efi_memory_map {
56444511fb9SArd Biesheuvel 	phys_addr_t phys_map;
5657ae65fd3SMatt Tolentino 	void *map;
5667ae65fd3SMatt Tolentino 	void *map_end;
5671da177e4SLinus Torvalds 	int nr_map;
5681da177e4SLinus Torvalds 	unsigned long desc_version;
5697ae65fd3SMatt Tolentino 	unsigned long desc_size;
57026c0e44aSDan Williams #define EFI_MEMMAP_LATE (1UL << 0)
5711db91035SDan Williams #define EFI_MEMMAP_MEMBLOCK (1UL << 1)
5721db91035SDan Williams #define EFI_MEMMAP_SLAB (1UL << 2)
57326c0e44aSDan Williams 	unsigned long flags;
5741da177e4SLinus Torvalds };
5751da177e4SLinus Torvalds 
57660863c0dSMatt Fleming struct efi_mem_range {
57760863c0dSMatt Fleming 	struct range range;
57860863c0dSMatt Fleming 	u64 attribute;
5791da177e4SLinus Torvalds };
5801da177e4SLinus Torvalds 
581bf924863SArd Biesheuvel typedef struct {
582fe4db90aSArd Biesheuvel 	u16 version;
583fe4db90aSArd Biesheuvel 	u16 length;
584fe4db90aSArd Biesheuvel 	u32 runtime_services_supported;
585fe4db90aSArd Biesheuvel } efi_rt_properties_table_t;
586fe4db90aSArd Biesheuvel 
587fe4db90aSArd Biesheuvel #define EFI_RT_PROPERTIES_TABLE_VERSION	0x1
588fe4db90aSArd Biesheuvel 
589b2c99e3cSBjorn Helgaas #define EFI_INVALID_TABLE_ADDR		(~0UL)
590b2c99e3cSBjorn Helgaas 
591cf1d2ffcSArd Biesheuvel // BIT0 implies that Runtime code includes the forward control flow guard
592cf1d2ffcSArd Biesheuvel // instruction, such as X86 CET-IBT or ARM BTI.
593cf1d2ffcSArd Biesheuvel #define EFI_MEMORY_ATTRIBUTES_FLAGS_RT_FORWARD_CONTROL_FLOW_GUARD	0x1
594cf1d2ffcSArd Biesheuvel 
595a604af07SArd Biesheuvel typedef struct {
596a604af07SArd Biesheuvel 	u32 version;
597a604af07SArd Biesheuvel 	u32 num_entries;
598a604af07SArd Biesheuvel 	u32 desc_size;
599cf1d2ffcSArd Biesheuvel 	u32 flags;
6004a2ebb08SKees Cook 	/*
6014a2ebb08SKees Cook 	 * There are @num_entries following, each of size @desc_size bytes,
6024a2ebb08SKees Cook 	 * including an efi_memory_desc_t header. See efi_memdesc_ptr().
6034a2ebb08SKees Cook 	 */
6044a2ebb08SKees Cook 	efi_memory_desc_t entry[];
605a604af07SArd Biesheuvel } efi_memory_attributes_table_t;
606a604af07SArd Biesheuvel 
6075c126ba2SDave Howells typedef struct {
6085c126ba2SDave Howells 	efi_guid_t signature_owner;
6095c126ba2SDave Howells 	u8 signature_data[];
6105c126ba2SDave Howells } efi_signature_data_t;
6115c126ba2SDave Howells 
6125c126ba2SDave Howells typedef struct {
6135c126ba2SDave Howells 	efi_guid_t signature_type;
6145c126ba2SDave Howells 	u32 signature_list_size;
6155c126ba2SDave Howells 	u32 signature_header_size;
6165c126ba2SDave Howells 	u32 signature_size;
6175c126ba2SDave Howells 	u8 signature_header[];
6185c126ba2SDave Howells 	/* efi_signature_data_t signatures[][] */
6195c126ba2SDave Howells } efi_signature_list_t;
6205c126ba2SDave Howells 
6215c126ba2SDave Howells typedef u8 efi_sha256_hash_t[32];
6225c126ba2SDave Howells 
6235c126ba2SDave Howells typedef struct {
6245c126ba2SDave Howells 	efi_sha256_hash_t to_be_signed_hash;
6255c126ba2SDave Howells 	efi_time_t time_of_revocation;
6265c126ba2SDave Howells } efi_cert_x509_sha256_t;
6275c126ba2SDave Howells 
628badc6198STom Lendacky extern unsigned long __ro_after_init efi_rng_seed;		/* RNG Seed table */
629badc6198STom Lendacky 
6301da177e4SLinus Torvalds /*
6311da177e4SLinus Torvalds  * All runtime access to EFI goes through this structure:
6321da177e4SLinus Torvalds  */
6331da177e4SLinus Torvalds extern struct efi {
63459f2a619SArd Biesheuvel 	const efi_runtime_services_t	*runtime;		/* EFI runtime services table */
6353b370237SMatthew Garrett 	unsigned int			runtime_version;	/* Runtime services version */
63696a3dd3dSArd Biesheuvel 	unsigned int			runtime_supported_mask;
637fd268304SArd Biesheuvel 
638b2c99e3cSBjorn Helgaas 	unsigned long			acpi;			/* ACPI table  (IA64 ext 0.71) */
639b2c99e3cSBjorn Helgaas 	unsigned long			acpi20;			/* ACPI table  (ACPI 2.0) */
640e1ccbbc9SArd Biesheuvel 	unsigned long			smbios;			/* SMBIOS table (32 bit entry point) */
641e1ccbbc9SArd Biesheuvel 	unsigned long			smbios3;		/* SMBIOS table (64 bit entry point) */
6420bb54905SPeter Jones 	unsigned long			esrt;			/* ESRT table */
64333b6d034SThiebaud Weksteen 	unsigned long			tpm_log;		/* TPM2 Event Log table */
644c46f3405SMatthew Garrett 	unsigned long			tpm_final_log;		/* TPM2 Final Events Log table */
64558c90902SLenny Szubowicz 	unsigned long			mokvar_table;		/* MOK variable config table */
64612274189SDov Murik 	unsigned long			coco_secret;		/* Confidential computing secret table */
6472053bc57SKirill A. Shutemov 	unsigned long			unaccepted;		/* Unaccepted memory table */
648fd268304SArd Biesheuvel 
6491da177e4SLinus Torvalds 	efi_get_time_t			*get_time;
6501da177e4SLinus Torvalds 	efi_set_time_t			*set_time;
6511da177e4SLinus Torvalds 	efi_get_wakeup_time_t		*get_wakeup_time;
6521da177e4SLinus Torvalds 	efi_set_wakeup_time_t		*set_wakeup_time;
6531da177e4SLinus Torvalds 	efi_get_variable_t		*get_variable;
6541da177e4SLinus Torvalds 	efi_get_next_variable_t		*get_next_variable;
6551da177e4SLinus Torvalds 	efi_set_variable_t		*set_variable;
65670d2a3cfSArd Biesheuvel 	efi_set_variable_t		*set_variable_nonblocking;
6573b370237SMatthew Garrett 	efi_query_variable_info_t	*query_variable_info;
658d3cac1f8SArd Biesheuvel 	efi_query_variable_info_t	*query_variable_info_nonblocking;
6593b370237SMatthew Garrett 	efi_update_capsule_t		*update_capsule;
6603b370237SMatthew Garrett 	efi_query_capsule_caps_t	*query_capsule_caps;
6611da177e4SLinus Torvalds 	efi_get_next_high_mono_count_t	*get_next_high_mono_count;
6621da177e4SLinus Torvalds 	efi_reset_system_t		*reset_system;
663fd268304SArd Biesheuvel 
664884f4f66SMatt Fleming 	struct efi_memory_map		memmap;
6653e909599SMatt Fleming 	unsigned long			flags;
6661da177e4SLinus Torvalds } efi;
6671da177e4SLinus Torvalds 
66896a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_GET_TIME				0x0001
66996a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_SET_TIME				0x0002
67096a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_GET_WAKEUP_TIME			0x0004
67196a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_SET_WAKEUP_TIME			0x0008
67296a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_GET_VARIABLE				0x0010
67396a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_GET_NEXT_VARIABLE_NAME			0x0020
67496a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_SET_VARIABLE				0x0040
67596a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP		0x0080
67696a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_CONVERT_POINTER			0x0100
67796a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_GET_NEXT_HIGH_MONOTONIC_COUNT		0x0200
67896a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_RESET_SYSTEM				0x0400
67996a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_UPDATE_CAPSULE				0x0800
68096a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_QUERY_CAPSULE_CAPABILITIES		0x1000
68196a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_QUERY_VARIABLE_INFO			0x2000
68296a3dd3dSArd Biesheuvel 
68396a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_ALL					0x3fff
68496a3dd3dSArd Biesheuvel 
685101ca8d0SShanker Donthineni #define EFI_RT_SUPPORTED_TIME_SERVICES				0x0003
686101ca8d0SShanker Donthineni #define EFI_RT_SUPPORTED_WAKEUP_SERVICES			0x000c
68796a3dd3dSArd Biesheuvel #define EFI_RT_SUPPORTED_VARIABLE_SERVICES			0x0070
68896a3dd3dSArd Biesheuvel 
6897e904a91SSai Praneeth extern struct mm_struct efi_mm;
6907e904a91SSai Praneeth 
mm_is_efi(struct mm_struct * mm)6914602e575SRyan Roberts static inline bool mm_is_efi(struct mm_struct *mm)
6924602e575SRyan Roberts {
6934602e575SRyan Roberts 	return IS_ENABLED(CONFIG_EFI) && mm == &efi_mm;
6944602e575SRyan Roberts }
6954602e575SRyan Roberts 
6961da177e4SLinus Torvalds static inline int
efi_guidcmp(efi_guid_t left,efi_guid_t right)6971da177e4SLinus Torvalds efi_guidcmp (efi_guid_t left, efi_guid_t right)
6981da177e4SLinus Torvalds {
6991da177e4SLinus Torvalds 	return memcmp(&left, &right, sizeof (efi_guid_t));
7001da177e4SLinus Torvalds }
7011da177e4SLinus Torvalds 
7021da177e4SLinus Torvalds static inline char *
efi_guid_to_str(efi_guid_t * guid,char * out)70326e02272SBorislav Petkov efi_guid_to_str(efi_guid_t *guid, char *out)
7041da177e4SLinus Torvalds {
705925ede0bSJoe Perches 	sprintf(out, "%pUl", guid->b);
7061da177e4SLinus Torvalds         return out;
7071da177e4SLinus Torvalds }
7081da177e4SLinus Torvalds 
7091da177e4SLinus Torvalds extern void efi_init (void);
7108b3a149dSArd Biesheuvel extern void efi_earlycon_reprobe(void);
7112c547f9dSAndrey Konovalov #ifdef CONFIG_EFI
7121da177e4SLinus Torvalds extern void efi_enter_virtual_mode (void);	/* switch EFI to virtual mode, if possible */
7132c547f9dSAndrey Konovalov #else
efi_enter_virtual_mode(void)7142c547f9dSAndrey Konovalov static inline void efi_enter_virtual_mode (void) {}
7152c547f9dSAndrey Konovalov #endif
71678510792SJosh Triplett #ifdef CONFIG_X86
717ca0e30dcSArd Biesheuvel extern efi_status_t efi_query_variable_store(u32 attributes,
718ca0e30dcSArd Biesheuvel 					     unsigned long size,
719ca0e30dcSArd Biesheuvel 					     bool nonblocking);
72078510792SJosh Triplett #else
721a6e4d5a0SMatt Fleming 
efi_query_variable_store(u32 attributes,unsigned long size,bool nonblocking)722ca0e30dcSArd Biesheuvel static inline efi_status_t efi_query_variable_store(u32 attributes,
723ca0e30dcSArd Biesheuvel 						    unsigned long size,
724ca0e30dcSArd Biesheuvel 						    bool nonblocking)
725a6e4d5a0SMatt Fleming {
726a6e4d5a0SMatt Fleming 	return EFI_SUCCESS;
727a6e4d5a0SMatt Fleming }
72878510792SJosh Triplett #endif
7299479c7ceSMatt Fleming 
730fdc6d38dSArd Biesheuvel extern int __init __efi_memmap_init(struct efi_memory_map_data *data);
7319479c7ceSMatt Fleming extern int __init efi_memmap_init_early(struct efi_memory_map_data *data);
732dca0f971SMatt Fleming extern int __init efi_memmap_init_late(phys_addr_t addr, unsigned long size);
7339479c7ceSMatt Fleming extern void __init efi_memmap_unmap(void);
7349479c7ceSMatt Fleming 
7353846c158SPeter Jones #ifdef CONFIG_EFI_ESRT
7360bb54905SPeter Jones extern void __init efi_esrt_init(void);
7373846c158SPeter Jones #else
efi_esrt_init(void)7383846c158SPeter Jones static inline void efi_esrt_init(void) { }
7393846c158SPeter Jones #endif
74006c0bd93SArd Biesheuvel extern int efi_config_parse_tables(const efi_config_table_t *config_tables,
74106c0bd93SArd Biesheuvel 				   int count,
74206c0bd93SArd Biesheuvel 				   const efi_config_table_type_t *arch_tables);
743234fa51dSArd Biesheuvel extern int efi_systab_check_header(const efi_table_hdr_t *systab_hdr);
74414fb4209SArd Biesheuvel extern void efi_systab_report_header(const efi_table_hdr_t *systab_hdr,
74514fb4209SArd Biesheuvel 				     unsigned long fw_vendor);
7461da177e4SLinus Torvalds extern u64 efi_get_iobase (void);
747f99afd08STom Lendacky extern int efi_mem_type(unsigned long phys_addr);
7481da177e4SLinus Torvalds extern u64 efi_mem_attributes (unsigned long phys_addr);
74932e62c63SBjorn Helgaas extern u64 efi_mem_attribute (unsigned long phys_addr, unsigned long size);
7501da177e4SLinus Torvalds extern int __init efi_uart_console_only (void);
7510bb54905SPeter Jones extern u64 efi_mem_desc_end(efi_memory_desc_t *md);
7520bb54905SPeter Jones extern int efi_mem_desc_lookup(u64 phys_addr, efi_memory_desc_t *out_md);
753aca1d27aSDemi Marie Obenour extern int __efi_mem_desc_lookup(u64 phys_addr, efi_memory_desc_t *out_md);
754816e7612SMatt Fleming extern void efi_mem_reserve(phys_addr_t addr, u64 size);
755a23d3bb0SArd Biesheuvel extern int efi_mem_reserve_persistent(phys_addr_t addr, u64 size);
7563b2e4b4cSArd Biesheuvel extern u64 efi_get_fdt_params(struct efi_memory_map_data *data);
7570bb54905SPeter Jones extern struct kobject *efi_kobj;
7581da177e4SLinus Torvalds 
75944be28e9SMatt Fleming extern int efi_reboot_quirk_mode;
7600c5ed61aSMatt Fleming extern bool efi_poweroff_required(void);
7610c5ed61aSMatt Fleming 
762a17e809eSArd Biesheuvel extern unsigned long efi_mem_attr_table;
763a17e809eSArd Biesheuvel 
76410f0d2f5SArd Biesheuvel /*
76510f0d2f5SArd Biesheuvel  * efi_memattr_perm_setter - arch specific callback function passed into
76610f0d2f5SArd Biesheuvel  *                           efi_memattr_apply_permissions() that updates the
76710f0d2f5SArd Biesheuvel  *                           mapping permissions described by the second
76810f0d2f5SArd Biesheuvel  *                           argument in the page tables referred to by the
76910f0d2f5SArd Biesheuvel  *                           first argument.
77010f0d2f5SArd Biesheuvel  */
771cf1d2ffcSArd Biesheuvel typedef int (*efi_memattr_perm_setter)(struct mm_struct *, efi_memory_desc_t *, bool);
77210f0d2f5SArd Biesheuvel 
77310f0d2f5SArd Biesheuvel extern int efi_memattr_init(void);
77410f0d2f5SArd Biesheuvel extern int efi_memattr_apply_permissions(struct mm_struct *mm,
77510f0d2f5SArd Biesheuvel 					 efi_memattr_perm_setter fn);
77610f0d2f5SArd Biesheuvel 
77702e43c2dSBaoquan He /*
778887c4cf5SKees Cook  * efi_memdesc_ptr - get the n-th EFI memmap descriptor
77902e43c2dSBaoquan He  * @map: the start of efi memmap
78002e43c2dSBaoquan He  * @desc_size: the size of space for each EFI memmap descriptor
78102e43c2dSBaoquan He  * @n: the index of efi memmap descriptor
78202e43c2dSBaoquan He  *
78302e43c2dSBaoquan He  * EFI boot service provides the GetMemoryMap() function to get a copy of the
78402e43c2dSBaoquan He  * current memory map which is an array of memory descriptors, each of
78502e43c2dSBaoquan He  * which describes a contiguous block of memory. It also gets the size of the
78602e43c2dSBaoquan He  * map, and the size of each descriptor, etc.
78702e43c2dSBaoquan He  *
78802e43c2dSBaoquan He  * Note that per section 6.2 of UEFI Spec 2.6 Errata A, the returned size of
78902e43c2dSBaoquan He  * each descriptor might not be equal to sizeof(efi_memory_memdesc_t),
79002e43c2dSBaoquan He  * since efi_memory_memdesc_t may be extended in the future. Thus the OS
79102e43c2dSBaoquan He  * MUST use the returned size of the descriptor to find the start of each
79202e43c2dSBaoquan He  * efi_memory_memdesc_t in the memory map array. This should only be used
79302e43c2dSBaoquan He  * during bootup since for_each_efi_memory_desc_xxx() is available after the
79402e43c2dSBaoquan He  * kernel initializes the EFI subsystem to set up struct efi_memory_map.
79502e43c2dSBaoquan He  */
796887c4cf5SKees Cook #define efi_memdesc_ptr(map, desc_size, n)			\
79702e43c2dSBaoquan He 	(efi_memory_desc_t *)((void *)(map) + ((n) * (desc_size)))
79802e43c2dSBaoquan He 
799e885cd80SMark Salter /* Iterate through an efi_memory_map */
80078ce248fSMatt Fleming #define for_each_efi_memory_desc_in_map(m, md)				   \
801e885cd80SMark Salter 	for ((md) = (m)->map;						   \
802d4c4fed0SJan Beulich 	     (md) && ((void *)(md) + (m)->desc_size) <= (m)->map_end;	   \
803e885cd80SMark Salter 	     (md) = (void *)(md) + (m)->desc_size)
804e885cd80SMark Salter 
80578ce248fSMatt Fleming /**
80678ce248fSMatt Fleming  * for_each_efi_memory_desc - iterate over descriptors in efi.memmap
80778ce248fSMatt Fleming  * @md: the efi_memory_desc_t * iterator
80878ce248fSMatt Fleming  *
80978ce248fSMatt Fleming  * Once the loop finishes @md must not be accessed.
81078ce248fSMatt Fleming  */
81178ce248fSMatt Fleming #define for_each_efi_memory_desc(md) \
812884f4f66SMatt Fleming 	for_each_efi_memory_desc_in_map(&efi.memmap, md)
81378ce248fSMatt Fleming 
81498d2a6caSLaszlo Ersek /*
81598d2a6caSLaszlo Ersek  * Format an EFI memory descriptor's type and attributes to a user-provided
81698d2a6caSLaszlo Ersek  * character buffer, as per snprintf(), and return the buffer.
81798d2a6caSLaszlo Ersek  */
81898d2a6caSLaszlo Ersek char * __init efi_md_typeattr_format(char *buf, size_t size,
81998d2a6caSLaszlo Ersek 				     const efi_memory_desc_t *md);
82098d2a6caSLaszlo Ersek 
8210bc9ae39SDave Howells 
8220bc9ae39SDave Howells typedef void (*efi_element_handler_t)(const char *source,
8230bc9ae39SDave Howells 				      const void *element_data,
8240bc9ae39SDave Howells 				      size_t element_size);
8250bc9ae39SDave Howells extern int __init parse_efi_signature_list(
8260bc9ae39SDave Howells 	const char *source,
8270bc9ae39SDave Howells 	const void *data, size_t size,
8280bc9ae39SDave Howells 	efi_element_handler_t (*get_handler_for_guid)(const efi_guid_t *));
8290bc9ae39SDave Howells 
8301da177e4SLinus Torvalds /**
8311da177e4SLinus Torvalds  * efi_range_is_wc - check the WC bit on an address range
8321da177e4SLinus Torvalds  * @start: starting kvirt address
8331da177e4SLinus Torvalds  * @len: length of range
8341da177e4SLinus Torvalds  *
8351da177e4SLinus Torvalds  * Consult the EFI memory map and make sure it's ok to set this range WC.
8361da177e4SLinus Torvalds  * Returns true or false.
8371da177e4SLinus Torvalds  */
efi_range_is_wc(unsigned long start,unsigned long len)8381da177e4SLinus Torvalds static inline int efi_range_is_wc(unsigned long start, unsigned long len)
8391da177e4SLinus Torvalds {
840986a80d5SJesper Juhl 	unsigned long i;
8411da177e4SLinus Torvalds 
8421da177e4SLinus Torvalds 	for (i = 0; i < len; i += (1UL << EFI_PAGE_SHIFT)) {
8431da177e4SLinus Torvalds 		unsigned long paddr = __pa(start + i);
8441da177e4SLinus Torvalds 		if (!(efi_mem_attributes(paddr) & EFI_MEMORY_WC))
8451da177e4SLinus Torvalds 			return 0;
8461da177e4SLinus Torvalds 	}
8471da177e4SLinus Torvalds 	/* The range checked out */
8481da177e4SLinus Torvalds 	return 1;
8491da177e4SLinus Torvalds }
8501da177e4SLinus Torvalds 
8511da177e4SLinus Torvalds /*
85283e68189SMatt Fleming  * We play games with efi_enabled so that the compiler will, if
85383e68189SMatt Fleming  * possible, remove EFI-related code altogether.
8541da177e4SLinus Torvalds  */
85583e68189SMatt Fleming #define EFI_BOOT		0	/* Were we booted from EFI? */
85683e68189SMatt Fleming #define EFI_CONFIG_TABLES	2	/* Can we use EFI config tables? */
85783e68189SMatt Fleming #define EFI_RUNTIME_SERVICES	3	/* Can we use runtime services? */
85883e68189SMatt Fleming #define EFI_MEMMAP		4	/* Can we use EFI memory map? */
85983e68189SMatt Fleming #define EFI_64BIT		5	/* Is the firmware 64-bit? */
8609f27bc54SDaniel Kiper #define EFI_PARAVIRT		6	/* Access is via a paravirt interface */
8619f27bc54SDaniel Kiper #define EFI_ARCH_1		7	/* First arch-specific bit */
862fed6cefeSBorislav Petkov #define EFI_DBG			8	/* Print additional debug info at runtime */
8637eb4e1ddSNicolas Saenz Julienne #define EFI_MEM_ATTR		9	/* Did firmware publish an EFI_MEMORY_ATTRIBUTES table? */
8647eb4e1ddSNicolas Saenz Julienne #define EFI_MEM_NO_SOFT_RESERVE	10	/* Is the kernel configured to ignore soft reservations? */
8657eb4e1ddSNicolas Saenz Julienne #define EFI_PRESERVE_BS_REGIONS	11	/* Are EFI boot-services memory segments available? */
86683e68189SMatt Fleming 
8671da177e4SLinus Torvalds #ifdef CONFIG_EFI
8683e909599SMatt Fleming /*
8693e909599SMatt Fleming  * Test whether the above EFI_* bits are enabled.
8703e909599SMatt Fleming  */
efi_enabled(int feature)8713e909599SMatt Fleming static inline bool efi_enabled(int feature)
87283e68189SMatt Fleming {
8733e909599SMatt Fleming 	return test_bit(feature, &efi.flags) != 0;
8743e909599SMatt Fleming }
8758562c99cSMatt Fleming extern void efi_reboot(enum reboot_mode reboot_mode, const char *__unused);
876b617c526SDan Williams 
877b617c526SDan Williams bool __pure __efi_soft_reserve_enabled(void);
878b617c526SDan Williams 
efi_soft_reserve_enabled(void)879b617c526SDan Williams static inline bool __pure efi_soft_reserve_enabled(void)
880b617c526SDan Williams {
881b617c526SDan Williams 	return IS_ENABLED(CONFIG_EFI_SOFT_RESERVE)
882b617c526SDan Williams 		&& __efi_soft_reserve_enabled();
883b617c526SDan Williams }
88496a3dd3dSArd Biesheuvel 
efi_rt_services_supported(unsigned int mask)88596a3dd3dSArd Biesheuvel static inline bool efi_rt_services_supported(unsigned int mask)
88696a3dd3dSArd Biesheuvel {
88796a3dd3dSArd Biesheuvel 	return (efi.runtime_supported_mask & mask) == mask;
88896a3dd3dSArd Biesheuvel }
8896365a193SMa Wupeng extern void efi_find_mirror(void);
8903e909599SMatt Fleming #else
efi_enabled(int feature)8913e909599SMatt Fleming static inline bool efi_enabled(int feature)
8923e909599SMatt Fleming {
8933e909599SMatt Fleming 	return false;
89483e68189SMatt Fleming }
8958562c99cSMatt Fleming static inline void
efi_reboot(enum reboot_mode reboot_mode,const char * __unused)8968562c99cSMatt Fleming efi_reboot(enum reboot_mode reboot_mode, const char *__unused) {}
89787615a34SMatt Fleming 
efi_soft_reserve_enabled(void)898b617c526SDan Williams static inline bool efi_soft_reserve_enabled(void)
899b617c526SDan Williams {
900b617c526SDan Williams 	return false;
901b617c526SDan Williams }
90296a3dd3dSArd Biesheuvel 
efi_rt_services_supported(unsigned int mask)90396a3dd3dSArd Biesheuvel static inline bool efi_rt_services_supported(unsigned int mask)
90496a3dd3dSArd Biesheuvel {
90596a3dd3dSArd Biesheuvel 	return false;
90696a3dd3dSArd Biesheuvel }
9076365a193SMa Wupeng 
efi_find_mirror(void)9086365a193SMa Wupeng static inline void efi_find_mirror(void) {}
9091da177e4SLinus Torvalds #endif
9101da177e4SLinus Torvalds 
911806b0351SMatt Fleming extern int efi_status_to_err(efi_status_t status);
912806b0351SMatt Fleming 
9131da177e4SLinus Torvalds /*
9141da177e4SLinus Torvalds  * Variable Attributes
9151da177e4SLinus Torvalds  */
9161da177e4SLinus Torvalds #define EFI_VARIABLE_NON_VOLATILE       0x0000000000000001
9171da177e4SLinus Torvalds #define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x0000000000000002
9181da177e4SLinus Torvalds #define EFI_VARIABLE_RUNTIME_ACCESS     0x0000000000000004
91941b3254cSMatthew Garrett #define EFI_VARIABLE_HARDWARE_ERROR_RECORD 0x0000000000000008
92041b3254cSMatthew Garrett #define EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS 0x0000000000000010
92141b3254cSMatthew Garrett #define EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS 0x0000000000000020
92241b3254cSMatthew Garrett #define EFI_VARIABLE_APPEND_WRITE	0x0000000000000040
9231da177e4SLinus Torvalds 
92441b3254cSMatthew Garrett #define EFI_VARIABLE_MASK	(EFI_VARIABLE_NON_VOLATILE | \
92541b3254cSMatthew Garrett 				EFI_VARIABLE_BOOTSERVICE_ACCESS | \
92641b3254cSMatthew Garrett 				EFI_VARIABLE_RUNTIME_ACCESS | \
92741b3254cSMatthew Garrett 				EFI_VARIABLE_HARDWARE_ERROR_RECORD | \
92841b3254cSMatthew Garrett 				EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS | \
92941b3254cSMatthew Garrett 				EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS | \
93041b3254cSMatthew Garrett 				EFI_VARIABLE_APPEND_WRITE)
9311da177e4SLinus Torvalds /*
932e14ab23dSMatt Fleming  * Length of a GUID string (strlen("aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"))
933e14ab23dSMatt Fleming  * not including trailing NUL
934e14ab23dSMatt Fleming  */
935ba7e34b1SAndy Shevchenko #define EFI_VARIABLE_GUID_LEN	UUID_STRING_LEN
936e14ab23dSMatt Fleming 
937e14ab23dSMatt Fleming /*
9381da177e4SLinus Torvalds  * EFI Device Path information
9391da177e4SLinus Torvalds  */
9401da177e4SLinus Torvalds #define EFI_DEV_HW			0x01
9411da177e4SLinus Torvalds #define  EFI_DEV_PCI				 1
9421da177e4SLinus Torvalds #define  EFI_DEV_PCCARD				 2
9431da177e4SLinus Torvalds #define  EFI_DEV_MEM_MAPPED			 3
9441da177e4SLinus Torvalds #define  EFI_DEV_VENDOR				 4
9451da177e4SLinus Torvalds #define  EFI_DEV_CONTROLLER			 5
9461da177e4SLinus Torvalds #define EFI_DEV_ACPI			0x02
9471da177e4SLinus Torvalds #define   EFI_DEV_BASIC_ACPI			 1
9481da177e4SLinus Torvalds #define   EFI_DEV_EXPANDED_ACPI			 2
9491da177e4SLinus Torvalds #define EFI_DEV_MSG			0x03
9501da177e4SLinus Torvalds #define   EFI_DEV_MSG_ATAPI			 1
9511da177e4SLinus Torvalds #define   EFI_DEV_MSG_SCSI			 2
9521da177e4SLinus Torvalds #define   EFI_DEV_MSG_FC			 3
9531da177e4SLinus Torvalds #define   EFI_DEV_MSG_1394			 4
9541da177e4SLinus Torvalds #define   EFI_DEV_MSG_USB			 5
9551da177e4SLinus Torvalds #define   EFI_DEV_MSG_USB_CLASS			15
9561da177e4SLinus Torvalds #define   EFI_DEV_MSG_I20			 6
9571da177e4SLinus Torvalds #define   EFI_DEV_MSG_MAC			11
9581da177e4SLinus Torvalds #define   EFI_DEV_MSG_IPV4			12
9591da177e4SLinus Torvalds #define   EFI_DEV_MSG_IPV6			13
9601da177e4SLinus Torvalds #define   EFI_DEV_MSG_INFINIBAND		 9
9611da177e4SLinus Torvalds #define   EFI_DEV_MSG_UART			14
9621da177e4SLinus Torvalds #define   EFI_DEV_MSG_VENDOR			10
9631da177e4SLinus Torvalds #define EFI_DEV_MEDIA			0x04
9641da177e4SLinus Torvalds #define   EFI_DEV_MEDIA_HARD_DRIVE		 1
9651da177e4SLinus Torvalds #define   EFI_DEV_MEDIA_CDROM			 2
9661da177e4SLinus Torvalds #define   EFI_DEV_MEDIA_VENDOR			 3
9671da177e4SLinus Torvalds #define   EFI_DEV_MEDIA_FILE			 4
9681da177e4SLinus Torvalds #define   EFI_DEV_MEDIA_PROTOCOL		 5
969c7007d9fSArd Biesheuvel #define   EFI_DEV_MEDIA_REL_OFFSET		 8
9701da177e4SLinus Torvalds #define EFI_DEV_BIOS_BOOT		0x05
9711da177e4SLinus Torvalds #define EFI_DEV_END_PATH		0x7F
9721da177e4SLinus Torvalds #define EFI_DEV_END_PATH2		0xFF
9731da177e4SLinus Torvalds #define   EFI_DEV_END_INSTANCE			0x01
9741da177e4SLinus Torvalds #define   EFI_DEV_END_ENTIRE			0xFF
9751da177e4SLinus Torvalds 
9761da177e4SLinus Torvalds struct efi_generic_dev_path {
9771da177e4SLinus Torvalds 	u8				type;
9781da177e4SLinus Torvalds 	u8				sub_type;
9791da177e4SLinus Torvalds 	u16				length;
980db8952e7SArd Biesheuvel } __packed;
9811da177e4SLinus Torvalds 
982db8952e7SArd Biesheuvel struct efi_acpi_dev_path {
983db8952e7SArd Biesheuvel 	struct efi_generic_dev_path	header;
98446cd4b75SLukas Wunner 	u32				hid;
98546cd4b75SLukas Wunner 	u32				uid;
986db8952e7SArd Biesheuvel } __packed;
987db8952e7SArd Biesheuvel 
988db8952e7SArd Biesheuvel struct efi_pci_dev_path {
989db8952e7SArd Biesheuvel 	struct efi_generic_dev_path	header;
99046cd4b75SLukas Wunner 	u8				fn;
99146cd4b75SLukas Wunner 	u8				dev;
992db8952e7SArd Biesheuvel } __packed;
99346cd4b75SLukas Wunner 
994db8952e7SArd Biesheuvel struct efi_vendor_dev_path {
995db8952e7SArd Biesheuvel 	struct efi_generic_dev_path	header;
996db8952e7SArd Biesheuvel 	efi_guid_t			vendorguid;
997db8952e7SArd Biesheuvel 	u8				vendordata[];
998db8952e7SArd Biesheuvel } __packed;
999db8952e7SArd Biesheuvel 
1000c7007d9fSArd Biesheuvel struct efi_rel_offset_dev_path {
1001c7007d9fSArd Biesheuvel 	struct efi_generic_dev_path	header;
1002c7007d9fSArd Biesheuvel 	u32				reserved;
1003c7007d9fSArd Biesheuvel 	u64				starting_offset;
1004c7007d9fSArd Biesheuvel 	u64				ending_offset;
1005c7007d9fSArd Biesheuvel } __packed;
1006c7007d9fSArd Biesheuvel 
10073c6edd90SArd Biesheuvel struct efi_mem_mapped_dev_path {
10083c6edd90SArd Biesheuvel 	struct efi_generic_dev_path	header;
10093c6edd90SArd Biesheuvel 	u32				memory_type;
10103c6edd90SArd Biesheuvel 	u64				starting_addr;
10113c6edd90SArd Biesheuvel 	u64				ending_addr;
10123c6edd90SArd Biesheuvel } __packed;
10133c6edd90SArd Biesheuvel 
101470912985SArd Biesheuvel struct efi_file_path_dev_path {
101570912985SArd Biesheuvel 	struct efi_generic_dev_path	header;
101670912985SArd Biesheuvel 	efi_char16_t			filename[];
101770912985SArd Biesheuvel } __packed;
101870912985SArd Biesheuvel 
1019db8952e7SArd Biesheuvel struct efi_dev_path {
1020db8952e7SArd Biesheuvel 	union {
1021db8952e7SArd Biesheuvel 		struct efi_generic_dev_path	header;
1022db8952e7SArd Biesheuvel 		struct efi_acpi_dev_path	acpi;
1023db8952e7SArd Biesheuvel 		struct efi_pci_dev_path		pci;
1024db8952e7SArd Biesheuvel 		struct efi_vendor_dev_path	vendor;
1025c7007d9fSArd Biesheuvel 		struct efi_rel_offset_dev_path	rel_offset;
1026db8952e7SArd Biesheuvel 	};
1027db8952e7SArd Biesheuvel } __packed;
1028db8952e7SArd Biesheuvel 
1029db8952e7SArd Biesheuvel struct device *efi_get_device_by_path(const struct efi_dev_path **node,
1030db8952e7SArd Biesheuvel 				      size_t *len);
103146cd4b75SLukas Wunner 
memrange_efi_to_native(u64 * addr,u64 * npages)10324a3575fdSHuang, Ying static inline void memrange_efi_to_native(u64 *addr, u64 *npages)
10334a3575fdSHuang, Ying {
10344a3575fdSHuang, Ying 	*npages = PFN_UP(*addr + (*npages<<EFI_PAGE_SHIFT)) - PFN_DOWN(*addr);
10354a3575fdSHuang, Ying 	*addr &= PAGE_MASK;
10364a3575fdSHuang, Ying }
10374a3575fdSHuang, Ying 
103804851772SMatt Fleming /*
10394fc756bdSMike Waychison  * EFI Variable support.
10404fc756bdSMike Waychison  *
10414fc756bdSMike Waychison  * Different firmware drivers can expose their EFI-like variables using
10424fc756bdSMike Waychison  * the following.
10434fc756bdSMike Waychison  */
10444fc756bdSMike Waychison 
10454fc756bdSMike Waychison struct efivar_operations {
10464fc756bdSMike Waychison 	efi_get_variable_t *get_variable;
10474fc756bdSMike Waychison 	efi_get_next_variable_t *get_next_variable;
10484fc756bdSMike Waychison 	efi_set_variable_t *set_variable;
104970d2a3cfSArd Biesheuvel 	efi_set_variable_t *set_variable_nonblocking;
1050a6e4d5a0SMatt Fleming 	efi_query_variable_store_t *query_variable_store;
1051d86ff333SAnisse Astier 	efi_query_variable_info_t *query_variable_info;
10524fc756bdSMike Waychison };
10534fc756bdSMike Waychison 
10544fc756bdSMike Waychison struct efivars {
10554fc756bdSMike Waychison 	struct kset *kset;
10564fc756bdSMike Waychison 	const struct efivar_operations *ops;
10574fc756bdSMike Waychison };
10584fc756bdSMike Waychison 
1059d86ff333SAnisse Astier #ifdef CONFIG_X86
1060d86ff333SAnisse Astier u64 __attribute_const__ efivar_reserved_space(void);
1061d86ff333SAnisse Astier #else
efivar_reserved_space(void)1062d86ff333SAnisse Astier static inline u64 efivar_reserved_space(void) { return 0; }
1063d86ff333SAnisse Astier #endif
1064d86ff333SAnisse Astier 
1065e14ab23dSMatt Fleming /*
1066cda30c65STim Schumacher  * There is no actual upper limit specified for the variable name size.
1067cda30c65STim Schumacher  *
1068cda30c65STim Schumacher  * This limit exists only for practical purposes, since name conversions
1069cda30c65STim Schumacher  * are bounds-checked and name data is occasionally stored in-line.
1070e14ab23dSMatt Fleming  */
1071a5d92ad3SMatt Fleming #define EFI_VAR_NAME_LEN	1024
1072a5d92ad3SMatt Fleming 
1073e14ab23dSMatt Fleming int efivars_register(struct efivars *efivars,
1074ade7fd90SJohan Hovold 		     const struct efivar_operations *ops);
1075e14ab23dSMatt Fleming int efivars_unregister(struct efivars *efivars);
1076e14ab23dSMatt Fleming 
1077ade7fd90SJohan Hovold #ifdef CONFIG_EFI
1078ade7fd90SJohan Hovold bool efivar_is_available(void);
1079ade7fd90SJohan Hovold #else
efivar_is_available(void)1080ade7fd90SJohan Hovold static inline bool efivar_is_available(void) { return false; }
1081ade7fd90SJohan Hovold #endif
1082e14ab23dSMatt Fleming 
10832cf9e278SJohan Hovold bool efivar_supports_writes(void);
1084e14ab23dSMatt Fleming 
1085472831d4SArd Biesheuvel int efivar_lock(void);
1086472831d4SArd Biesheuvel int efivar_trylock(void);
1087472831d4SArd Biesheuvel void efivar_unlock(void);
1088472831d4SArd Biesheuvel 
1089472831d4SArd Biesheuvel efi_status_t efivar_get_variable(efi_char16_t *name, efi_guid_t *vendor,
1090472831d4SArd Biesheuvel 				 u32 *attr, unsigned long *size, void *data);
1091472831d4SArd Biesheuvel 
1092472831d4SArd Biesheuvel efi_status_t efivar_get_next_variable(unsigned long *name_size,
1093472831d4SArd Biesheuvel 				      efi_char16_t *name, efi_guid_t *vendor);
1094472831d4SArd Biesheuvel 
1095472831d4SArd Biesheuvel efi_status_t efivar_set_variable_locked(efi_char16_t *name, efi_guid_t *vendor,
1096472831d4SArd Biesheuvel 					u32 attr, unsigned long data_size,
1097472831d4SArd Biesheuvel 					void *data, bool nonblocking);
1098472831d4SArd Biesheuvel 
1099472831d4SArd Biesheuvel efi_status_t efivar_set_variable(efi_char16_t *name, efi_guid_t *vendor,
1100472831d4SArd Biesheuvel 				 u32 attr, unsigned long data_size, void *data);
1101472831d4SArd Biesheuvel 
1102d86ff333SAnisse Astier efi_status_t efivar_query_variable_info(u32 attr, u64 *storage_space,
1103d86ff333SAnisse Astier 					u64 *remaining_space,
1104d86ff333SAnisse Astier 					u64 *max_variable_size);
1105d86ff333SAnisse Astier 
1106e0a6aa30SArd Biesheuvel #if IS_ENABLED(CONFIG_EFI_CAPSULE_LOADER)
1107f0133f3cSMatt Fleming extern bool efi_capsule_pending(int *reset_type);
1108f0133f3cSMatt Fleming 
1109f0133f3cSMatt Fleming extern int efi_capsule_supported(efi_guid_t guid, u32 flags,
1110f0133f3cSMatt Fleming 				 size_t size, int *reset);
1111f0133f3cSMatt Fleming 
1112f0133f3cSMatt Fleming extern int efi_capsule_update(efi_capsule_header_t *capsule,
11132a457fb3SArd Biesheuvel 			      phys_addr_t *pages);
1114e0a6aa30SArd Biesheuvel #else
efi_capsule_pending(int * reset_type)1115e0a6aa30SArd Biesheuvel static inline bool efi_capsule_pending(int *reset_type) { return false; }
1116e0a6aa30SArd Biesheuvel #endif
11174fc756bdSMike Waychison 
11180082517fSJian-Hong Pan #ifdef CONFIG_EFI
11190082517fSJian-Hong Pan extern bool efi_runtime_disabled(void);
11200082517fSJian-Hong Pan #else
efi_runtime_disabled(void)11210082517fSJian-Hong Pan static inline bool efi_runtime_disabled(void) { return true; }
11220082517fSJian-Hong Pan #endif
11230082517fSJian-Hong Pan 
11243c17ae41SArd Biesheuvel extern void efi_call_virt_check_flags(unsigned long flags, const void *caller);
112513b210ddSJulien Thierry extern unsigned long efi_call_virt_save_flags(void);
112680e75596SAlex Thorlton 
1127de8cb458SDavid Howells enum efi_secureboot_mode {
1128de8cb458SDavid Howells 	efi_secureboot_mode_unset,
1129de8cb458SDavid Howells 	efi_secureboot_mode_unknown,
1130de8cb458SDavid Howells 	efi_secureboot_mode_disabled,
1131de8cb458SDavid Howells 	efi_secureboot_mode_enabled,
1132de8cb458SDavid Howells };
1133e1ac4b24SChester Lin 
1134e1ac4b24SChester Lin static inline
efi_get_secureboot_mode(efi_get_variable_t * get_var)1135e1ac4b24SChester Lin enum efi_secureboot_mode efi_get_secureboot_mode(efi_get_variable_t *get_var)
1136e1ac4b24SChester Lin {
1137e1ac4b24SChester Lin 	u8 secboot, setupmode = 0;
1138e1ac4b24SChester Lin 	efi_status_t status;
1139e1ac4b24SChester Lin 	unsigned long size;
1140e1ac4b24SChester Lin 
1141e1ac4b24SChester Lin 	size = sizeof(secboot);
1142e1ac4b24SChester Lin 	status = get_var(L"SecureBoot", &EFI_GLOBAL_VARIABLE_GUID, NULL, &size,
1143e1ac4b24SChester Lin 			 &secboot);
1144e1ac4b24SChester Lin 	if (status == EFI_NOT_FOUND)
1145e1ac4b24SChester Lin 		return efi_secureboot_mode_disabled;
1146e1ac4b24SChester Lin 	if (status != EFI_SUCCESS)
1147e1ac4b24SChester Lin 		return efi_secureboot_mode_unknown;
1148e1ac4b24SChester Lin 
1149e1ac4b24SChester Lin 	size = sizeof(setupmode);
1150e1ac4b24SChester Lin 	get_var(L"SetupMode", &EFI_GLOBAL_VARIABLE_GUID, NULL, &size, &setupmode);
1151e1ac4b24SChester Lin 	if (secboot == 0 || setupmode == 1)
1152e1ac4b24SChester Lin 		return efi_secureboot_mode_disabled;
1153e1ac4b24SChester Lin 	return efi_secureboot_mode_enabled;
1154e1ac4b24SChester Lin }
1155de8cb458SDavid Howells 
1156f0df68d5SHans de Goede #ifdef CONFIG_EFI_EMBEDDED_FIRMWARE
1157f0df68d5SHans de Goede void efi_check_for_embedded_firmwares(void);
1158f0df68d5SHans de Goede #else
efi_check_for_embedded_firmwares(void)1159f0df68d5SHans de Goede static inline void efi_check_for_embedded_firmwares(void) { }
1160f0df68d5SHans de Goede #endif
1161f0df68d5SHans de Goede 
11628add9a3aSSudeep Holla #define arch_efi_call_virt(p, f, args...)	((p)->f(args))
11638add9a3aSSudeep Holla 
116480e75596SAlex Thorlton /*
1165e38abdabSArd Biesheuvel  * Arch code must implement the following three routines:
116680e75596SAlex Thorlton  *
116780e75596SAlex Thorlton  *  * arch_efi_call_virt_setup()
116880e75596SAlex Thorlton  *
116980e75596SAlex Thorlton  *    Sets up the environment for the call (e.g. switching page tables,
117080e75596SAlex Thorlton  *    allowing kernel-mode use of floating point, if required).
117180e75596SAlex Thorlton  *
117280e75596SAlex Thorlton  *  * arch_efi_call_virt()
117380e75596SAlex Thorlton  *
1174e38abdabSArd Biesheuvel  *    Performs the call. This routine takes a variable number of arguments so
1175e38abdabSArd Biesheuvel  *    it must be implemented as a variadic preprocessor macro.
117680e75596SAlex Thorlton  *
117780e75596SAlex Thorlton  *  * arch_efi_call_virt_teardown()
117880e75596SAlex Thorlton  *
117980e75596SAlex Thorlton  *    Restores the usual kernel environment once the call has returned.
118080e75596SAlex Thorlton  */
118180e75596SAlex Thorlton 
118280e75596SAlex Thorlton #define efi_call_virt_pointer(p, f, args...)				\
118380e75596SAlex Thorlton ({									\
1184e38abdabSArd Biesheuvel 	typeof((p)->f(args)) __s;					\
118580e75596SAlex Thorlton 	unsigned long __flags;						\
118680e75596SAlex Thorlton 									\
118780e75596SAlex Thorlton 	arch_efi_call_virt_setup();					\
118880e75596SAlex Thorlton 									\
118913b210ddSJulien Thierry 	__flags = efi_call_virt_save_flags();				\
119080e75596SAlex Thorlton 	__s = arch_efi_call_virt(p, f, args);				\
11913c17ae41SArd Biesheuvel 	efi_call_virt_check_flags(__flags, NULL);			\
119280e75596SAlex Thorlton 									\
119380e75596SAlex Thorlton 	arch_efi_call_virt_teardown();					\
119480e75596SAlex Thorlton 									\
119580e75596SAlex Thorlton 	__s;								\
119680e75596SAlex Thorlton })
119780e75596SAlex Thorlton 
1198161a438dSArd Biesheuvel #define EFI_RANDOM_SEED_SIZE		32U // BLAKE2S_HASH_SIZE
1199c2ceb5fdSArd Biesheuvel 
120063625988SArd Biesheuvel struct linux_efi_random_seed {
120163625988SArd Biesheuvel 	u32	size;
120263625988SArd Biesheuvel 	u8	bits[];
120363625988SArd Biesheuvel };
120463625988SArd Biesheuvel 
120533b6d034SThiebaud Weksteen struct linux_efi_tpm_eventlog {
120633b6d034SThiebaud Weksteen 	u32	size;
1207166a2809SMatthew Garrett 	u32	final_events_preboot_size;
120833b6d034SThiebaud Weksteen 	u8	version;
120933b6d034SThiebaud Weksteen 	u8	log[];
121033b6d034SThiebaud Weksteen };
121133b6d034SThiebaud Weksteen 
121233b6d034SThiebaud Weksteen extern int efi_tpm_eventlog_init(void);
121333b6d034SThiebaud Weksteen 
1214c46f3405SMatthew Garrett struct efi_tcg2_final_events_table {
1215c46f3405SMatthew Garrett 	u64 version;
1216c46f3405SMatthew Garrett 	u64 nr_events;
1217c46f3405SMatthew Garrett 	u8 events[];
1218c46f3405SMatthew Garrett };
1219c46f3405SMatthew Garrett extern int efi_tpm_final_log_size;
1220c46f3405SMatthew Garrett 
12211c5fecb6SNarendra K extern unsigned long rci2_table_phys;
12221c5fecb6SNarendra K 
12235894cf57SArd Biesheuvel efi_status_t
12245894cf57SArd Biesheuvel efi_call_acpi_prm_handler(efi_status_t (__efiapi *handler_addr)(u64, void *),
12255894cf57SArd Biesheuvel 			  u64 param_buffer_addr, void *context);
12265894cf57SArd Biesheuvel 
12273425d934SSai Praneeth /*
12283425d934SSai Praneeth  * efi_runtime_service() function identifiers.
12293425d934SSai Praneeth  * "NONE" is used by efi_recover_from_page_fault() to check if the page
12303425d934SSai Praneeth  * fault happened while executing an efi runtime service.
12313425d934SSai Praneeth  */
12329dbbedaaSSai Praneeth enum efi_rts_ids {
12335c418dc7SAnders Roxell 	EFI_NONE,
12345c418dc7SAnders Roxell 	EFI_GET_TIME,
12355c418dc7SAnders Roxell 	EFI_SET_TIME,
12365c418dc7SAnders Roxell 	EFI_GET_WAKEUP_TIME,
12375c418dc7SAnders Roxell 	EFI_SET_WAKEUP_TIME,
12385c418dc7SAnders Roxell 	EFI_GET_VARIABLE,
12395c418dc7SAnders Roxell 	EFI_GET_NEXT_VARIABLE,
12405c418dc7SAnders Roxell 	EFI_SET_VARIABLE,
12415c418dc7SAnders Roxell 	EFI_QUERY_VARIABLE_INFO,
12425c418dc7SAnders Roxell 	EFI_GET_NEXT_HIGH_MONO_COUNT,
12435c418dc7SAnders Roxell 	EFI_RESET_SYSTEM,
12445c418dc7SAnders Roxell 	EFI_UPDATE_CAPSULE,
12455c418dc7SAnders Roxell 	EFI_QUERY_CAPSULE_CAPS,
12465894cf57SArd Biesheuvel 	EFI_ACPI_PRM_HANDLER,
12479dbbedaaSSai Praneeth };
12489dbbedaaSSai Praneeth 
1249c7c7bce0SArd Biesheuvel union efi_rts_args;
1250c7c7bce0SArd Biesheuvel 
12519dbbedaaSSai Praneeth /*
12529dbbedaaSSai Praneeth  * efi_runtime_work:	Details of EFI Runtime Service work
1253c7c7bce0SArd Biesheuvel  * @args:		Pointer to union describing the arguments
12549dbbedaaSSai Praneeth  * @status:		Status of executing EFI Runtime Service
12559dbbedaaSSai Praneeth  * @efi_rts_id:		EFI Runtime Service function identifier
12569dbbedaaSSai Praneeth  * @efi_rts_comp:	Struct used for handling completions
12573c17ae41SArd Biesheuvel  * @caller:		The caller of the runtime service
12589dbbedaaSSai Praneeth  */
12599dbbedaaSSai Praneeth struct efi_runtime_work {
1260c7c7bce0SArd Biesheuvel 	union efi_rts_args	*args;
12619dbbedaaSSai Praneeth 	efi_status_t		status;
12629dbbedaaSSai Praneeth 	struct work_struct	work;
12639dbbedaaSSai Praneeth 	enum efi_rts_ids	efi_rts_id;
12649dbbedaaSSai Praneeth 	struct completion	efi_rts_comp;
12653c17ae41SArd Biesheuvel 	const void		*caller;
12669dbbedaaSSai Praneeth };
12679dbbedaaSSai Praneeth 
12689dbbedaaSSai Praneeth extern struct efi_runtime_work efi_rts_work;
12699dbbedaaSSai Praneeth 
12703eb420e7SSai Praneeth /* Workqueue to queue EFI Runtime Services */
12713eb420e7SSai Praneeth extern struct workqueue_struct *efi_rts_wq;
12723eb420e7SSai Praneeth 
127371e0940dSArd Biesheuvel struct linux_efi_memreserve {
12745f0b0ecfSArd Biesheuvel 	int		size;			// allocated size of the array
12755f0b0ecfSArd Biesheuvel 	atomic_t	count;			// number of entries used
12765f0b0ecfSArd Biesheuvel 	phys_addr_t	next;			// pa of next struct instance
12775f0b0ecfSArd Biesheuvel 	struct {
127871e0940dSArd Biesheuvel 		phys_addr_t	base;
127971e0940dSArd Biesheuvel 		phys_addr_t	size;
128029637951SGustavo A. R. Silva 	} entry[];
128171e0940dSArd Biesheuvel };
128271e0940dSArd Biesheuvel 
128380424b02SArd Biesheuvel #define EFI_MEMRESERVE_COUNT(size) (((size) - sizeof(struct linux_efi_memreserve)) \
128429637951SGustavo A. R. Silva 	/ sizeof_field(struct linux_efi_memreserve, entry[0]))
128580424b02SArd Biesheuvel 
1286860f89e6SBenjamin Thiel void __init efi_arch_mem_reserve(phys_addr_t addr, u64 size);
1287860f89e6SBenjamin Thiel 
128858c90902SLenny Szubowicz /*
128958c90902SLenny Szubowicz  * The LINUX_EFI_MOK_VARIABLE_TABLE_GUID config table can be provided
129058c90902SLenny Szubowicz  * to the kernel by an EFI boot loader. The table contains a packed
129158c90902SLenny Szubowicz  * sequence of these entries, one for each named MOK variable.
129258c90902SLenny Szubowicz  * The sequence is terminated by an entry with a completely NULL
129358c90902SLenny Szubowicz  * name and 0 data size.
129458c90902SLenny Szubowicz  */
129558c90902SLenny Szubowicz struct efi_mokvar_table_entry {
129658c90902SLenny Szubowicz 	char name[256];
129758c90902SLenny Szubowicz 	u64 data_size;
129858c90902SLenny Szubowicz 	u8 data[];
129958c90902SLenny Szubowicz } __attribute((packed));
130058c90902SLenny Szubowicz 
130158c90902SLenny Szubowicz #ifdef CONFIG_LOAD_UEFI_KEYS
130258c90902SLenny Szubowicz extern void __init efi_mokvar_table_init(void);
130358c90902SLenny Szubowicz extern struct efi_mokvar_table_entry *efi_mokvar_entry_next(
130458c90902SLenny Szubowicz 			struct efi_mokvar_table_entry **mokvar_entry);
130558c90902SLenny Szubowicz extern struct efi_mokvar_table_entry *efi_mokvar_entry_find(const char *name);
130658c90902SLenny Szubowicz #else
efi_mokvar_table_init(void)130758c90902SLenny Szubowicz static inline void efi_mokvar_table_init(void) { }
efi_mokvar_entry_next(struct efi_mokvar_table_entry ** mokvar_entry)130858c90902SLenny Szubowicz static inline struct efi_mokvar_table_entry *efi_mokvar_entry_next(
130958c90902SLenny Szubowicz 			struct efi_mokvar_table_entry **mokvar_entry)
131058c90902SLenny Szubowicz {
131158c90902SLenny Szubowicz 	return NULL;
131258c90902SLenny Szubowicz }
efi_mokvar_entry_find(const char * name)131358c90902SLenny Szubowicz static inline struct efi_mokvar_table_entry *efi_mokvar_entry_find(
131458c90902SLenny Szubowicz 			const char *name)
131558c90902SLenny Szubowicz {
131658c90902SLenny Szubowicz 	return NULL;
131758c90902SLenny Szubowicz }
131858c90902SLenny Szubowicz #endif
131958c90902SLenny Szubowicz 
13204bc5e64eSJavier Martinez Canillas extern void efifb_setup_from_dmi(struct screen_info *si, const char *opt);
13214bc5e64eSJavier Martinez Canillas 
132212274189SDov Murik struct linux_efi_coco_secret_area {
132312274189SDov Murik 	u64	base_pa;
132412274189SDov Murik 	u64	size;
132512274189SDov Murik };
132612274189SDov Murik 
1327f4dc7fffSArd Biesheuvel struct linux_efi_initrd {
1328f4dc7fffSArd Biesheuvel 	unsigned long	base;
1329f4dc7fffSArd Biesheuvel 	unsigned long	size;
1330f4dc7fffSArd Biesheuvel };
1331f4dc7fffSArd Biesheuvel 
133212274189SDov Murik /* Header of a populated EFI secret area */
133312274189SDov Murik #define EFI_SECRET_TABLE_HEADER_GUID	EFI_GUID(0x1e74f542, 0x71dd, 0x4d66,  0x96, 0x3e, 0xef, 0x42, 0x87, 0xff, 0x17, 0x3b)
133412274189SDov Murik 
1335c0fecaa4SDemi Marie Obenour bool xen_efi_config_table_is_usable(const efi_guid_t *guid, unsigned long table);
1336c0fecaa4SDemi Marie Obenour 
1337c0fecaa4SDemi Marie Obenour static inline
efi_config_table_is_usable(const efi_guid_t * guid,unsigned long table)1338c0fecaa4SDemi Marie Obenour bool efi_config_table_is_usable(const efi_guid_t *guid, unsigned long table)
1339c0fecaa4SDemi Marie Obenour {
1340c0fecaa4SDemi Marie Obenour 	if (!IS_ENABLED(CONFIG_XEN_EFI))
1341c0fecaa4SDemi Marie Obenour 		return true;
1342c0fecaa4SDemi Marie Obenour 	return xen_efi_config_table_is_usable(guid, table);
1343c0fecaa4SDemi Marie Obenour }
1344c0fecaa4SDemi Marie Obenour 
1345fd936fd8SArnd Bergmann umode_t efi_attr_is_visible(struct kobject *kobj, struct attribute *attr, int n);
1346fd936fd8SArnd Bergmann 
134794f7f618SMasahisa Kojima /*
134894f7f618SMasahisa Kojima  * efivar ops event type
134994f7f618SMasahisa Kojima  */
135094f7f618SMasahisa Kojima #define EFIVAR_OPS_RDONLY 0
135194f7f618SMasahisa Kojima #define EFIVAR_OPS_RDWR 1
135294f7f618SMasahisa Kojima 
135394f7f618SMasahisa Kojima extern struct blocking_notifier_head efivar_ops_nh;
135494f7f618SMasahisa Kojima 
13556bb3703aSMasahisa Kojima void efivars_generic_ops_register(void);
13566bb3703aSMasahisa Kojima void efivars_generic_ops_unregister(void);
13576bb3703aSMasahisa Kojima 
13581da177e4SLinus Torvalds #endif /* _LINUX_EFI_H */
1359