2 * Extensible Firmware Interface
3 * Based on 'Extensible Firmware Interface Specification' version 0.9,
6 * Copyright (C) 1999 VA Linux Systems
7 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
8 * Copyright (C) 1999, 2002-2003 Hewlett-Packard Co.
9 * David Mosberger-Tang <davidm@hpl.hp.com>
10 * Stephane Eranian <eranian@hpl.hp.com>
12 * From include/linux/efi.h in kernel 4.1 with some additions/subtractions
18 #include <linux/linkage.h>
19 #include <linux/string.h>
20 #include <linux/types.h>
22 #ifdef CONFIG_EFI_STUB_64BIT
23 /* EFI uses the Microsoft ABI which is not the default for GCC */
24 #define EFIAPI __attribute__((ms_abi))
26 #define EFIAPI asmlinkage
29 struct efi_device_path;
31 #define EFI_BITS_PER_LONG BITS_PER_LONG
34 * With 64-bit EFI stub, EFI_BITS_PER_LONG has to be 64. EFI_STUB is set
35 * in lib/efi/Makefile, when building the stub.
37 #if defined(CONFIG_EFI_STUB_64BIT) && defined(EFI_STUB)
38 #undef EFI_BITS_PER_LONG
39 #define EFI_BITS_PER_LONG 64
43 #define EFI_LOAD_ERROR (1 | (1UL << (EFI_BITS_PER_LONG - 1)))
44 #define EFI_INVALID_PARAMETER (2 | (1UL << (EFI_BITS_PER_LONG - 1)))
45 #define EFI_UNSUPPORTED (3 | (1UL << (EFI_BITS_PER_LONG - 1)))
46 #define EFI_BAD_BUFFER_SIZE (4 | (1UL << (EFI_BITS_PER_LONG - 1)))
47 #define EFI_BUFFER_TOO_SMALL (5 | (1UL << (EFI_BITS_PER_LONG - 1)))
48 #define EFI_NOT_READY (6 | (1UL << (EFI_BITS_PER_LONG - 1)))
49 #define EFI_DEVICE_ERROR (7 | (1UL << (EFI_BITS_PER_LONG - 1)))
50 #define EFI_WRITE_PROTECTED (8 | (1UL << (EFI_BITS_PER_LONG - 1)))
51 #define EFI_OUT_OF_RESOURCES (9 | (1UL << (EFI_BITS_PER_LONG - 1)))
52 #define EFI_NOT_FOUND (14 | (1UL << (EFI_BITS_PER_LONG - 1)))
53 #define EFI_ACCESS_DENIED (15 | (1UL << (EFI_BITS_PER_LONG - 1)))
54 #define EFI_SECURITY_VIOLATION (26 | (1UL << (EFI_BITS_PER_LONG - 1)))
56 typedef unsigned long efi_status_t;
57 typedef u64 efi_physical_addr_t;
58 typedef u64 efi_virtual_addr_t;
59 typedef void *efi_handle_t;
61 #define EFI_GUID(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \
63 {{ (a) & 0xff, ((a) >> 8) & 0xff, ((a) >> 16) & 0xff, \
65 (b) & 0xff, ((b) >> 8) & 0xff, \
66 (c) & 0xff, ((c) >> 8) & 0xff, \
67 (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) } })
69 /* Generic EFI table header */
70 struct efi_table_hdr {
78 /* Enumeration of memory types introduced in UEFI */
80 EFI_RESERVED_MEMORY_TYPE,
82 * The code portions of a loaded application.
83 * (Note that UEFI OS loaders are UEFI applications.)
87 * The data portions of a loaded application and
88 * the default data allocation type used by an application
89 * to allocate pool memory.
92 /* The code portions of a loaded Boot Services Driver */
93 EFI_BOOT_SERVICES_CODE,
95 * The data portions of a loaded Boot Serves Driver and
96 * the default data allocation type used by a Boot Services
97 * Driver to allocate pool memory.
99 EFI_BOOT_SERVICES_DATA,
100 /* The code portions of a loaded Runtime Services Driver */
101 EFI_RUNTIME_SERVICES_CODE,
103 * The data portions of a loaded Runtime Services Driver and
104 * the default data allocation type used by a Runtime Services
105 * Driver to allocate pool memory.
107 EFI_RUNTIME_SERVICES_DATA,
108 /* Free (unallocated) memory */
109 EFI_CONVENTIONAL_MEMORY,
110 /* Memory in which errors have been detected */
112 /* Memory that holds the ACPI tables */
113 EFI_ACPI_RECLAIM_MEMORY,
114 /* Address space reserved for use by the firmware */
117 * Used by system firmware to request that a memory-mapped IO region
118 * be mapped by the OS to a virtual address so it can be accessed by
119 * EFI runtime services.
123 * System memory-mapped IO region that is used to translate
124 * memory cycles to IO cycles by the processor.
128 * Address space reserved by the firmware for code that is
129 * part of the processor.
134 EFI_TABLE_END, /* For efi_build_mem_table() */
137 /* Attribute values */
139 EFI_MEMORY_UC_SHIFT = 0, /* uncached */
140 EFI_MEMORY_WC_SHIFT = 1, /* write-coalescing */
141 EFI_MEMORY_WT_SHIFT = 2, /* write-through */
142 EFI_MEMORY_WB_SHIFT = 3, /* write-back */
143 EFI_MEMORY_UCE_SHIFT = 4, /* uncached, exported */
144 EFI_MEMORY_WP_SHIFT = 12, /* write-protect */
145 EFI_MEMORY_RP_SHIFT = 13, /* read-protect */
146 EFI_MEMORY_XP_SHIFT = 14, /* execute-protect */
147 EFI_MEMORY_RUNTIME_SHIFT = 63, /* range requires runtime mapping */
149 EFI_MEMORY_RUNTIME = 1ULL << EFI_MEMORY_RUNTIME_SHIFT,
150 EFI_MEM_DESC_VERSION = 1,
153 #define EFI_PAGE_SHIFT 12
154 #define EFI_PAGE_SIZE (1UL << EFI_PAGE_SHIFT)
155 #define EFI_PAGE_MASK (EFI_PAGE_SIZE - 1)
157 struct efi_mem_desc {
160 efi_physical_addr_t physical_start;
161 efi_virtual_addr_t virtual_start;
166 #define EFI_MEMORY_DESCRIPTOR_VERSION 1
168 /* Allocation types for calls to boottime->allocate_pages*/
169 #define EFI_ALLOCATE_ANY_PAGES 0
170 #define EFI_ALLOCATE_MAX_ADDRESS 1
171 #define EFI_ALLOCATE_ADDRESS 2
172 #define EFI_MAX_ALLOCATE_TYPE 3
174 /* Types and defines for Time Services */
175 #define EFI_TIME_ADJUST_DAYLIGHT 0x1
176 #define EFI_TIME_IN_DAYLIGHT 0x2
177 #define EFI_UNSPECIFIED_TIMEZONE 0x07ff
193 struct efi_time_cap {
199 enum efi_locate_search_type {
205 struct efi_open_protocol_info_entry {
206 efi_handle_t agent_handle;
207 efi_handle_t controller_handle;
213 EFIET_END, /* Signals this is the last (empty) entry */
216 /* Number of entries */
220 #define EFI_TABLE_VERSION 1
223 * struct efi_info_hdr - Header for the EFI info table
225 * @version: EFI_TABLE_VERSION
226 * @hdr_size: Size of this struct in bytes
227 * @total_size: Total size of this header plus following data
228 * @spare: Spare space for expansion
230 struct efi_info_hdr {
238 * struct efi_entry_hdr - Header for a table entry
240 * @type: enum eft_entry_t
241 * @size size of entry bytes excluding header and padding
242 * @addr: address of this entry (0 if it follows the header )
243 * @link: size of entry including header and padding
244 * @spare1: Spare space for expansion
245 * @spare2: Spare space for expansion
247 struct efi_entry_hdr {
257 * struct efi_entry_memmap - a memory map table passed to U-Boot
259 * @version: EFI's memory map table version
260 * @desc_size: EFI's size of each memory descriptor
261 * @spare: Spare space for expansion
262 * @desc: An array of descriptors, each @desc_size bytes apart
264 struct efi_entry_memmap {
268 struct efi_mem_desc desc[];
271 static inline struct efi_mem_desc *efi_get_next_mem_desc(
272 struct efi_entry_memmap *map, struct efi_mem_desc *desc)
274 return (struct efi_mem_desc *)((ulong)desc + map->desc_size);
278 efi_handle_t parent_image;
279 struct efi_device_path *device_path;
280 struct efi_system_table *sys_table;
281 struct efi_boot_services *boot;
282 struct efi_runtime_services *run;
283 bool use_pool_for_malloc;
284 unsigned long ram_base;
285 unsigned int image_data_type;
286 struct efi_info_hdr *info;
287 unsigned int info_size;
291 /* Base address of the EFI image */
292 extern char image_base[];
294 /* Start and end of U-Boot image (for payload) */
295 extern char _binary_u_boot_bin_start[], _binary_u_boot_bin_end[];
298 * efi_get_sys_table() - Get access to the main EFI system table
300 * @return pointer to EFI system table
303 struct efi_system_table *efi_get_sys_table(void);
306 * efi_get_ram_base() - Find the base of RAM
308 * This is used when U-Boot is built as an EFI application.
310 * @return the base of RAM as known to U-Boot
312 unsigned long efi_get_ram_base(void);
315 * efi_init() - Set up ready for use of EFI boot services
317 * @priv: Pointer to our private EFI structure to fill in
318 * @banner: Banner to display when starting
319 * @image: The image handle passed to efi_main()
320 * @sys_table: The EFI system table pointer passed to efi_main()
322 int efi_init(struct efi_priv *priv, const char *banner, efi_handle_t image,
323 struct efi_system_table *sys_table);
326 * efi_malloc() - Allocate some memory from EFI
328 * @priv: Pointer to private EFI structure
329 * @size: Number of bytes to allocate
330 * @retp: Return EFI status result
331 * @return pointer to memory allocated, or NULL on error
333 void *efi_malloc(struct efi_priv *priv, int size, efi_status_t *retp);
336 * efi_free() - Free memory allocated from EFI
338 * @priv: Pointer to private EFI structure
339 * @ptr: Pointer to memory to free
341 void efi_free(struct efi_priv *priv, void *ptr);
344 * efi_puts() - Write out a string to the EFI console
346 * @priv: Pointer to private EFI structure
347 * @str: String to write (note this is a ASCII, not unicode)
349 void efi_puts(struct efi_priv *priv, const char *str);
352 * efi_putc() - Write out a character to the EFI console
354 * @priv: Pointer to private EFI structure
355 * @ch: Character to write (note this is not unicode)
357 void efi_putc(struct efi_priv *priv, const char ch);
360 * efi_info_get() - get an entry from an EFI table
362 * @type: Entry type to search for
363 * @datap: Returns pointer to entry data
364 * @sizep: Returns pointer to entry size
365 * @return 0 if OK, -ENODATA if there is no table, -ENOENT if there is no entry
366 * of the requested type, -EPROTONOSUPPORT if the table has the wrong version
368 int efi_info_get(enum efi_entry_t type, void **datap, int *sizep);
371 * efi_build_mem_table() - make a sorted copy of the memory table
373 * @map: Pointer to EFI memory map table
374 * @size: Size of table in bytes
375 * @skip_bs: True to skip boot-time memory and merge it with conventional
376 * memory. This will significantly reduce the number of table
378 * @return pointer to the new table. It should be freed with free() by the
381 void *efi_build_mem_table(struct efi_entry_memmap *map, int size, bool skip_bs);
383 #endif /* _LINUX_EFI_H */