blob: 3bf059b447d8860363dfc2f27ef906da14c3d162 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Alexander Graf4e0c1c12016-03-04 01:09:58 +01002/*
3 * EFI application loader
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Graf4e0c1c12016-03-04 01:09:58 +01006 */
7
Heinrich Schuchardtc2fd4772017-10-18 18:13:07 +02008#ifndef _EFI_LOADER_H
9#define _EFI_LOADER_H 1
10
Alexander Grafc15d9212016-03-04 01:09:59 +010011#include <common.h>
Alexander Graf4e0c1c12016-03-04 01:09:58 +010012#include <part_efi.h>
13#include <efi_api.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010014
15/* No need for efi loader support in SPL */
Stephen Warrend0de8062018-08-30 15:43:43 -060016#if CONFIG_IS_ENABLED(EFI_LOADER)
Alexander Grafc15d9212016-03-04 01:09:59 +010017
Alexander Graf4e0c1c12016-03-04 01:09:58 +010018#include <linux/list.h>
19
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +020020/* Maximum number of configuration tables */
21#define EFI_MAX_CONFIGURATION_TABLES 16
22
Rob Clark86789d52017-07-27 08:04:18 -040023int __efi_entry_check(void);
24int __efi_exit_check(void);
Heinrich Schuchardt4d664892017-08-18 17:45:16 +020025const char *__efi_nesting(void);
Rob Clarke7896c32017-07-27 08:04:19 -040026const char *__efi_nesting_inc(void);
27const char *__efi_nesting_dec(void);
Rob Clark86789d52017-07-27 08:04:18 -040028
Rob Clark63ea77a2017-07-27 08:04:17 -040029/*
30 * Enter the u-boot world from UEFI:
31 */
Alexander Grafc15d9212016-03-04 01:09:59 +010032#define EFI_ENTRY(format, ...) do { \
Rob Clark86789d52017-07-27 08:04:18 -040033 assert(__efi_entry_check()); \
Rob Clarke7896c32017-07-27 08:04:19 -040034 debug("%sEFI: Entry %s(" format ")\n", __efi_nesting_inc(), \
35 __func__, ##__VA_ARGS__); \
Alexander Grafc15d9212016-03-04 01:09:59 +010036 } while(0)
Alexander Grafc15d9212016-03-04 01:09:59 +010037
Rob Clark63ea77a2017-07-27 08:04:17 -040038/*
39 * Exit the u-boot world back to UEFI:
40 */
Rob Clark84a19a02017-07-24 10:31:52 -040041#define EFI_EXIT(ret) ({ \
xypron.glpk@gmx.de8f9dd922017-08-17 18:57:36 +020042 typeof(ret) _r = ret; \
Rob Clarke7896c32017-07-27 08:04:19 -040043 debug("%sEFI: Exit: %s: %u\n", __efi_nesting_dec(), \
xypron.glpk@gmx.de8f9dd922017-08-17 18:57:36 +020044 __func__, (u32)((uintptr_t) _r & ~EFI_ERROR_MASK)); \
Rob Clark86789d52017-07-27 08:04:18 -040045 assert(__efi_exit_check()); \
46 _r; \
Rob Clark84a19a02017-07-24 10:31:52 -040047 })
Alexander Grafc15d9212016-03-04 01:09:59 +010048
Rob Clark63ea77a2017-07-27 08:04:17 -040049/*
Heinrich Schuchardt91e5b8a2017-09-15 10:06:10 +020050 * Call non-void UEFI function from u-boot and retrieve return value:
51 */
52#define EFI_CALL(exp) ({ \
53 debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
54 assert(__efi_exit_check()); \
55 typeof(exp) _r = exp; \
56 assert(__efi_entry_check()); \
57 debug("%sEFI: %lu returned by %s\n", __efi_nesting_dec(), \
58 (unsigned long)((uintptr_t)_r & ~EFI_ERROR_MASK), #exp); \
59 _r; \
60})
61
62/*
63 * Call void UEFI function from u-boot:
Rob Clark63ea77a2017-07-27 08:04:17 -040064 */
Heinrich Schuchardt91e5b8a2017-09-15 10:06:10 +020065#define EFI_CALL_VOID(exp) do { \
Rob Clarke7896c32017-07-27 08:04:19 -040066 debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
Rob Clark86789d52017-07-27 08:04:18 -040067 assert(__efi_exit_check()); \
Rob Clark63ea77a2017-07-27 08:04:17 -040068 exp; \
Rob Clark86789d52017-07-27 08:04:18 -040069 assert(__efi_entry_check()); \
Rob Clarke7896c32017-07-27 08:04:19 -040070 debug("%sEFI: Return From: %s\n", __efi_nesting_dec(), #exp); \
Rob Clark63ea77a2017-07-27 08:04:17 -040071 } while(0)
72
Heinrich Schuchardt4d664892017-08-18 17:45:16 +020073/*
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +010074 * Write an indented message with EFI prefix
Heinrich Schuchardt4d664892017-08-18 17:45:16 +020075 */
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +010076#define EFI_PRINT(format, ...) ({ \
77 debug("%sEFI: " format, __efi_nesting(), \
78 ##__VA_ARGS__); \
Heinrich Schuchardt4d664892017-08-18 17:45:16 +020079 })
80
Alexander Graf59254d62018-04-23 07:59:47 +020081#ifdef CONFIG_SYS_CACHELINE_SIZE
82#define EFI_CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE
83#else
84/* Just use the greatest cache flush alignment requirement I'm aware of */
85#define EFI_CACHELINE_SIZE 128
86#endif
87
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +020088/* Key identifying current memory map */
89extern efi_uintn_t efi_memory_map_key;
90
Alexander Graf0bd425a2016-03-04 01:10:01 +010091extern struct efi_runtime_services efi_runtime_services;
Alexander Grafc15d9212016-03-04 01:09:59 +010092extern struct efi_system_table systab;
93
Heinrich Schuchardt580c13b2017-10-26 19:25:59 +020094extern struct efi_simple_text_output_protocol efi_con_out;
Heinrich Schuchardt3dabffd2018-09-08 10:20:10 +020095extern struct efi_simple_text_input_protocol efi_con_in;
Heinrich Schuchardt580c13b2017-10-26 19:25:59 +020096extern struct efi_console_control_protocol efi_console_control;
xypron.glpk@gmx.de3c042b22017-07-11 22:06:25 +020097extern const struct efi_device_path_to_text_protocol efi_device_path_to_text;
Leif Lindholmb6e6fdc2018-03-09 17:43:21 +010098/* implementation of the EFI_DEVICE_PATH_UTILITIES_PROTOCOL */
99extern const struct efi_device_path_utilities_protocol
100 efi_device_path_utilities;
Heinrich Schuchardte59072a2018-09-04 19:34:58 +0200101/* Implementation of the EFI_UNICODE_COLLATION_PROTOCOL */
102extern const struct efi_unicode_collation_protocol
103 efi_unicode_collation_protocol;
Alexander Graf4aacacc2016-03-04 01:10:00 +0100104
Rob Clark85dd7212017-09-13 18:05:30 -0400105uint16_t *efi_dp_str(struct efi_device_path *dp);
106
Heinrich Schuchardt405afb52018-01-19 20:24:45 +0100107/* GUID of the EFI_BLOCK_IO_PROTOCOL */
108extern const efi_guid_t efi_block_io_guid;
Rob Clarkc84c1102017-09-13 18:05:38 -0400109extern const efi_guid_t efi_global_variable_guid;
Alexander Graf4aacacc2016-03-04 01:10:00 +0100110extern const efi_guid_t efi_guid_console_control;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100111extern const efi_guid_t efi_guid_device_path;
Heinrich Schuchardt760255f2018-01-11 08:16:02 +0100112/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
113extern const efi_guid_t efi_guid_driver_binding_protocol;
Heinrich Schuchardt672d99e2018-02-18 15:17:51 +0100114/* event group ExitBootServices() invoked */
115extern const efi_guid_t efi_guid_event_group_exit_boot_services;
116/* event group SetVirtualAddressMap() invoked */
117extern const efi_guid_t efi_guid_event_group_virtual_address_change;
118/* event group memory map changed */
119extern const efi_guid_t efi_guid_event_group_memory_map_change;
120/* event group boot manager about to boot */
121extern const efi_guid_t efi_guid_event_group_ready_to_boot;
122/* event group ResetSystem() invoked (before ExitBootServices) */
123extern const efi_guid_t efi_guid_event_group_reset_system;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100124/* GUID of the device tree table */
125extern const efi_guid_t efi_guid_fdt;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100126extern const efi_guid_t efi_guid_loaded_image;
xypron.glpk@gmx.de3c042b22017-07-11 22:06:25 +0200127extern const efi_guid_t efi_guid_device_path_to_text_protocol;
Rob Clark53142032017-09-13 18:05:34 -0400128extern const efi_guid_t efi_simple_file_system_protocol_guid;
129extern const efi_guid_t efi_file_info_guid;
Heinrich Schuchardt37fb4b92018-04-04 15:42:11 +0200130/* GUID for file system information */
131extern const efi_guid_t efi_file_system_info_guid;
Leif Lindholmb6e6fdc2018-03-09 17:43:21 +0100132extern const efi_guid_t efi_guid_device_path_utilities_protocol;
Heinrich Schuchardte59072a2018-09-04 19:34:58 +0200133/* GUID of the Unicode collation protocol */
134extern const efi_guid_t efi_guid_unicode_collation_protocol;
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100135
Alexander Graf0bd425a2016-03-04 01:10:01 +0100136extern unsigned int __efi_runtime_start, __efi_runtime_stop;
137extern unsigned int __efi_runtime_rel_start, __efi_runtime_rel_stop;
138
Alexander Grafc15d9212016-03-04 01:09:59 +0100139/*
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100140 * When a protocol is opened a open protocol info entry is created.
141 * These are maintained in a list.
142 */
143struct efi_open_protocol_info_item {
144 /* Link to the list of open protocol info entries of a protocol */
145 struct list_head link;
146 struct efi_open_protocol_info_entry info;
147};
148
149/*
Alexander Grafc15d9212016-03-04 01:09:59 +0100150 * When the UEFI payload wants to open a protocol on an object to get its
151 * interface (usually a struct with callback functions), this struct maps the
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100152 * protocol GUID to the respective protocol interface
153 */
Alexander Grafc15d9212016-03-04 01:09:59 +0100154struct efi_handler {
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +0100155 /* Link to the list of protocols of a handle */
156 struct list_head link;
Alexander Grafc15d9212016-03-04 01:09:59 +0100157 const efi_guid_t *guid;
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +0200158 void *protocol_interface;
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100159 /* Link to the list of open protocol info items */
160 struct list_head open_infos;
Alexander Grafc15d9212016-03-04 01:09:59 +0100161};
162
163/*
164 * UEFI has a poor man's OO model where one "object" can be polymorphic and have
165 * multiple different protocols (classes) attached to it.
166 *
167 * This struct is the parent struct for all of our actual implementation objects
168 * that can include it to make themselves an EFI object
169 */
170struct efi_object {
171 /* Every UEFI object is part of a global object list */
172 struct list_head link;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +0100173 /* The list of protocols */
174 struct list_head protocols;
Alexander Grafc15d9212016-03-04 01:09:59 +0100175 /* The object spawner can either use this for data or as identifier */
176 void *handle;
177};
178
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200179/**
180 * struct efi_event
181 *
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100182 * @link: Link to list of all events
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200183 * @type: Type of event, see efi_create_event
184 * @notify_tpl: Task priority level of notifications
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200185 * @nofify_function: Function to call when the event is triggered
186 * @notify_context: Data to be passed to the notify function
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100187 * @group: Event group
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100188 * @trigger_time: Period of the timer
189 * @trigger_next: Next time to trigger the timer
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200190 * @trigger_type: Type of timer, see efi_set_timer
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100191 * @is_queued: The notification function is queued
192 * @is_signaled: The event occurred. The event is in the signaled state.
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200193 */
194struct efi_event {
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100195 struct list_head link;
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200196 uint32_t type;
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100197 efi_uintn_t notify_tpl;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200198 void (EFIAPI *notify_function)(struct efi_event *event, void *context);
199 void *notify_context;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100200 const efi_guid_t *group;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200201 u64 trigger_next;
202 u64 trigger_time;
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200203 enum efi_timer_delay trigger_type;
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200204 bool is_queued;
205 bool is_signaled;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200206};
207
Alexander Grafc15d9212016-03-04 01:09:59 +0100208/* This list contains all UEFI objects we know of */
209extern struct list_head efi_obj_list;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100210/* List of all events */
211extern struct list_head efi_events;
Alexander Grafc15d9212016-03-04 01:09:59 +0100212
Heinrich Schuchardt15070db2018-06-28 12:45:31 +0200213/* Called by bootefi to initialize runtime */
214efi_status_t efi_initialize_system_table(void);
xypron.glpk@gmx.de54c7a8e2017-07-18 20:17:22 +0200215/* Called by bootefi to make console interface available */
216int efi_console_register(void);
Alexander Grafe83be452016-03-04 01:10:02 +0100217/* Called by bootefi to make all disk storage accessible as EFI objects */
Heinrich Schuchardtcde7a362018-02-09 20:55:47 +0100218efi_status_t efi_disk_register(void);
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100219/* Create handles and protocols for the partitions of a block device */
220int efi_disk_create_partitions(efi_handle_t parent, struct blk_desc *desc,
221 const char *if_typename, int diskid,
222 const char *pdevname);
Alexander Grafd65783d2016-03-15 18:38:21 +0100223/* Called by bootefi to make GOP (graphical) interface available */
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100224efi_status_t efi_gop_register(void);
Alexander Graf94c4b992016-05-06 21:01:01 +0200225/* Called by bootefi to make the network interface available */
Heinrich Schuchardt6f5c73f2018-03-03 15:28:56 +0100226efi_status_t efi_net_register(void);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +0200227/* Called by bootefi to make the watchdog available */
Heinrich Schuchardtf2704cc2018-03-03 15:28:57 +0100228efi_status_t efi_watchdog_register(void);
Alexander Graf66f96e12016-08-19 01:23:29 +0200229/* Called by bootefi to make SMBIOS tables available */
Simon Glass2e2858f2018-05-16 09:42:19 -0600230/**
Bin Meng2cfbdae2018-06-27 20:38:03 -0700231 * efi_acpi_register() - write out ACPI tables
232 *
233 * Called by bootefi to make ACPI tables available
234 *
235 * @return 0 if OK, -ENOMEM if no memory is available for the tables
236 */
237efi_status_t efi_acpi_register(void);
238/**
Simon Glass2e2858f2018-05-16 09:42:19 -0600239 * efi_smbios_register() - write out SMBIOS tables
240 *
241 * Called by bootefi to make SMBIOS tables available
242 *
243 * @return 0 if OK, -ENOMEM if no memory is available for the tables
244 */
Heinrich Schuchardt7a369c42018-03-03 15:28:54 +0100245efi_status_t efi_smbios_register(void);
Alexander Graf94c4b992016-05-06 21:01:01 +0200246
Rob Clark53142032017-09-13 18:05:34 -0400247struct efi_simple_file_system_protocol *
248efi_fs_from_path(struct efi_device_path *fp);
249
Alexander Graf94c4b992016-05-06 21:01:01 +0200250/* Called by networking code to memorize the dhcp ack package */
251void efi_net_set_dhcp_ack(void *pkt, int len);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +0200252/* Called by efi_set_watchdog_timer to reset the timer */
253efi_status_t efi_set_watchdog(unsigned long timeout);
Alexander Graf94c4b992016-05-06 21:01:01 +0200254
Alexander Grafc15d9212016-03-04 01:09:59 +0100255/* Called from places to check whether a timer expired */
256void efi_timer_check(void);
257/* PE loader implementation */
Alexander Graf4e0c1c12016-03-04 01:09:58 +0100258void *efi_load_pe(void *efi, struct efi_loaded_image *loaded_image_info);
Alexander Grafc15d9212016-03-04 01:09:59 +0100259/* Called once to store the pristine gd pointer */
260void efi_save_gd(void);
Rob Clark86789d52017-07-27 08:04:18 -0400261/* Special case handler for error/abort that just tries to dtrt to get
262 * back to u-boot world */
Alexander Grafc15d9212016-03-04 01:09:59 +0100263void efi_restore_gd(void);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100264/* Call this to relocate the runtime section to an address space */
265void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map);
Alexander Graf8f19f262016-03-04 01:10:14 +0100266/* Call this to set the current device name */
Alexander Grafc49a1b82016-04-11 16:16:19 +0200267void efi_set_bootdev(const char *dev, const char *devnr, const char *path);
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100268/* Add a new object to the object list. */
269void efi_add_handle(struct efi_object *obj);
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200270/* Create handle */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100271efi_status_t efi_create_handle(efi_handle_t *handle);
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100272/* Delete handle */
273void efi_delete_handle(struct efi_object *obj);
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100274/* Call this to validate a handle and find the EFI object for it */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100275struct efi_object *efi_search_obj(const efi_handle_t handle);
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200276/* Find a protocol on a handle */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100277efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200278 const efi_guid_t *protocol_guid,
279 struct efi_handler **handler);
280/* Install new protocol on a handle */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100281efi_status_t efi_add_protocol(const efi_handle_t handle,
282 const efi_guid_t *protocol,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200283 void *protocol_interface);
284/* Delete protocol from a handle */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100285efi_status_t efi_remove_protocol(const efi_handle_t handle,
286 const efi_guid_t *protocol,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200287 void *protocol_interface);
288/* Delete all protocols from a handle */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100289efi_status_t efi_remove_all_protocols(const efi_handle_t handle);
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200290/* Call this to create an event */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100291efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200292 void (EFIAPI *notify_function) (
293 struct efi_event *event,
294 void *context),
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100295 void *notify_context, efi_guid_t *group,
296 struct efi_event **event);
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200297/* Call this to set a timer */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200298efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200299 uint64_t trigger_time);
xypron.glpk@gmx.de54c7a8e2017-07-18 20:17:22 +0200300/* Call this to signal an event */
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100301void efi_signal_event(struct efi_event *event, bool check_tpl);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100302
Rob Clark53142032017-09-13 18:05:34 -0400303/* open file system: */
304struct efi_simple_file_system_protocol *efi_simple_file_system(
305 struct blk_desc *desc, int part, struct efi_device_path *dp);
306
307/* open file from device-path: */
308struct efi_file_handle *efi_file_from_path(struct efi_device_path *fp);
309
310
Alexander Graf8623f922016-03-04 01:10:04 +0100311/* Generic EFI memory allocator, call this to get memory */
312void *efi_alloc(uint64_t len, int memory_type);
313/* More specific EFI memory allocator, called by EFI payloads */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100314efi_status_t efi_allocate_pages(int type, int memory_type, efi_uintn_t pages,
Alexander Graf8623f922016-03-04 01:10:04 +0100315 uint64_t *memory);
Stefan Brünsa4f43022016-10-01 23:32:27 +0200316/* EFI memory free function. */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100317efi_status_t efi_free_pages(uint64_t memory, efi_uintn_t pages);
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200318/* EFI memory allocator for small allocations */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100319efi_status_t efi_allocate_pool(int pool_type, efi_uintn_t size,
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200320 void **buffer);
Stefan Brüns67b67d92016-10-09 22:17:26 +0200321/* EFI pool memory free function. */
322efi_status_t efi_free_pool(void *buffer);
Alexander Graf8623f922016-03-04 01:10:04 +0100323/* Returns the EFI memory map */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100324efi_status_t efi_get_memory_map(efi_uintn_t *memory_map_size,
Alexander Graf8623f922016-03-04 01:10:04 +0100325 struct efi_mem_desc *memory_map,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100326 efi_uintn_t *map_key,
327 efi_uintn_t *descriptor_size,
Alexander Graf8623f922016-03-04 01:10:04 +0100328 uint32_t *descriptor_version);
329/* Adds a range into the EFI memory map */
330uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
331 bool overlap_only_ram);
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100332/* Called by board init to initialize the EFI drivers */
Heinrich Schuchardt8f3cc5b2018-02-01 12:53:32 +0100333efi_status_t efi_driver_init(void);
Alexander Graf8623f922016-03-04 01:10:04 +0100334/* Called by board init to initialize the EFI memory map */
335int efi_memory_init(void);
Alexander Grafc5c11632016-08-19 01:23:24 +0200336/* Adds new or overrides configuration table entry to the system table */
337efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table);
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +0100338/* Sets up a loaded image */
339efi_status_t efi_setup_loaded_image(
340 struct efi_loaded_image *info, struct efi_object *obj,
341 struct efi_device_path *device_path,
342 struct efi_device_path *file_path);
Rob Clarkc84c1102017-09-13 18:05:38 -0400343efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
344 void **buffer);
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +0200345/* Print information about a loaded image */
346efi_status_t efi_print_image_info(struct efi_loaded_image *image, void *pc);
347/* Print information about all loaded images */
348void efi_print_image_infos(void *pc);
Alexander Graf8623f922016-03-04 01:10:04 +0100349
Alexander Graf7c00a3c2016-05-11 18:25:48 +0200350#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
351extern void *efi_bounce_buffer;
352#define EFI_LOADER_BOUNCE_BUFFER_SIZE (64 * 1024 * 1024)
353#endif
354
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400355
356struct efi_device_path *efi_dp_next(const struct efi_device_path *dp);
Heinrich Schuchardt753e2482017-10-26 19:25:48 +0200357int efi_dp_match(const struct efi_device_path *a,
358 const struct efi_device_path *b);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400359struct efi_object *efi_dp_find_obj(struct efi_device_path *dp,
360 struct efi_device_path **rem);
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200361/* get size of the first device path instance excluding end node */
362efi_uintn_t efi_dp_instance_size(const struct efi_device_path *dp);
363/* size of multi-instance device path excluding end node */
364efi_uintn_t efi_dp_size(const struct efi_device_path *dp);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400365struct efi_device_path *efi_dp_dup(const struct efi_device_path *dp);
366struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1,
367 const struct efi_device_path *dp2);
368struct efi_device_path *efi_dp_append_node(const struct efi_device_path *dp,
369 const struct efi_device_path *node);
Heinrich Schuchardtb41c8e22018-04-16 07:59:05 +0200370/* Create a device path node of given type, sub-type, length */
371struct efi_device_path *efi_dp_create_device_node(const u8 type,
372 const u8 sub_type,
373 const u16 length);
Heinrich Schuchardtcb0f7ce2018-04-16 07:59:09 +0200374/* Append device path instance */
375struct efi_device_path *efi_dp_append_instance(
376 const struct efi_device_path *dp,
377 const struct efi_device_path *dpi);
378/* Get next device path instance */
379struct efi_device_path *efi_dp_get_next_instance(struct efi_device_path **dp,
380 efi_uintn_t *size);
381/* Check if a device path contains muliple instances */
382bool efi_dp_is_multi_instance(const struct efi_device_path *dp);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400383
384struct efi_device_path *efi_dp_from_dev(struct udevice *dev);
385struct efi_device_path *efi_dp_from_part(struct blk_desc *desc, int part);
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100386/* Create a device node for a block device partition. */
387struct efi_device_path *efi_dp_part_node(struct blk_desc *desc, int part);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400388struct efi_device_path *efi_dp_from_file(struct blk_desc *desc, int part,
389 const char *path);
390struct efi_device_path *efi_dp_from_eth(void);
Rob Clark18ceba72017-10-10 08:23:06 -0400391struct efi_device_path *efi_dp_from_mem(uint32_t mem_type,
392 uint64_t start_address,
393 uint64_t end_address);
Heinrich Schuchardt0976f8b2018-01-19 20:24:49 +0100394/* Determine the last device path node that is not the end node. */
395const struct efi_device_path *efi_dp_last_node(
396 const struct efi_device_path *dp);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100397efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path,
398 struct efi_device_path **device_path,
399 struct efi_device_path **file_path);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400400
401#define EFI_DP_TYPE(_dp, _type, _subtype) \
402 (((_dp)->type == DEVICE_PATH_TYPE_##_type) && \
403 ((_dp)->sub_type == DEVICE_PATH_SUB_TYPE_##_subtype))
404
Alexander Graf8f19f262016-03-04 01:10:14 +0100405/* Convert strings from normal C strings to uEFI strings */
Simon Glass302d4f82016-05-14 14:03:05 -0600406static inline void ascii2unicode(u16 *unicode, const char *ascii)
Alexander Graf8f19f262016-03-04 01:10:14 +0100407{
408 while (*ascii)
409 *(unicode++) = *(ascii++);
Heinrich Schuchardt164026c2018-04-04 15:42:10 +0200410 *unicode = 0;
Alexander Graf8f19f262016-03-04 01:10:14 +0100411}
412
Rob Clark544df3b2017-07-24 07:59:11 -0400413static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
414{
415 return memcmp(g1, g2, sizeof(efi_guid_t));
416}
417
Alexander Graf0bd425a2016-03-04 01:10:01 +0100418/*
419 * Use these to indicate that your code / data should go into the EFI runtime
420 * section and thus still be available when the OS is running
421 */
Alexander Graf94a10f22018-06-12 07:48:37 +0200422#define __efi_runtime_data __attribute__ ((section (".data.efi_runtime")))
423#define __efi_runtime __attribute__ ((section (".text.efi_runtime")))
Alexander Grafc15d9212016-03-04 01:09:59 +0100424
Heinrich Schuchardt69c15762018-07-29 09:49:04 +0200425/* Update CRC32 in table header */
426void __efi_runtime efi_update_table_header_crc32(struct efi_table_hdr *table);
427
Alexander Graf77256092016-08-16 21:08:45 +0200428/* Call this with mmio_ptr as the _pointer_ to a pointer to an MMIO region
429 * to make it available at runtime */
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100430efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len);
Alexander Graf77256092016-08-16 21:08:45 +0200431
432/* Boards may provide the functions below to implement RTS functionality */
433
Alexander Graf393dd912016-10-14 13:45:30 +0200434void __efi_runtime EFIAPI efi_reset_system(
Alexander Graf77256092016-08-16 21:08:45 +0200435 enum efi_reset_type reset_type,
436 efi_status_t reset_status,
437 unsigned long data_size, void *reset_data);
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100438
439/* Architecture specific initialization of the EFI subsystem */
440efi_status_t efi_reset_system_init(void);
Alexander Graf77256092016-08-16 21:08:45 +0200441
Alexander Graf393dd912016-10-14 13:45:30 +0200442efi_status_t __efi_runtime EFIAPI efi_get_time(
Alexander Graf77256092016-08-16 21:08:45 +0200443 struct efi_time *time,
444 struct efi_time_cap *capabilities);
Alexander Graf77256092016-08-16 21:08:45 +0200445
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200446#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
447/*
448 * Entry point for the tests of the EFI API.
449 * It is called by 'bootefi selftest'
450 */
451efi_status_t EFIAPI efi_selftest(efi_handle_t image_handle,
452 struct efi_system_table *systab);
453#endif
454
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200455efi_status_t EFIAPI efi_get_variable(u16 *variable_name, efi_guid_t *vendor,
456 u32 *attributes, efi_uintn_t *data_size,
457 void *data);
458efi_status_t EFIAPI efi_get_next_variable_name(efi_uintn_t *variable_name_size,
459 u16 *variable_name,
460 efi_guid_t *vendor);
461efi_status_t EFIAPI efi_set_variable(u16 *variable_name, efi_guid_t *vendor,
462 u32 attributes, efi_uintn_t data_size,
463 void *data);
Rob Clark15f3d742017-09-13 18:05:37 -0400464
Rob Clarkc84c1102017-09-13 18:05:38 -0400465void *efi_bootmgr_load(struct efi_device_path **device_path,
466 struct efi_device_path **file_path);
467
Stephen Warrend0de8062018-08-30 15:43:43 -0600468#else /* CONFIG_IS_ENABLED(EFI_LOADER) */
Alexander Grafc15d9212016-03-04 01:09:59 +0100469
Alexander Graf0bd425a2016-03-04 01:10:01 +0100470/* Without CONFIG_EFI_LOADER we don't have a runtime section, stub it out */
Alexander Graf393dd912016-10-14 13:45:30 +0200471#define __efi_runtime_data
472#define __efi_runtime
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100473static inline efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len)
474{
475 return EFI_SUCCESS;
476}
Alexander Graf0bd425a2016-03-04 01:10:01 +0100477
Alexander Grafc15d9212016-03-04 01:09:59 +0100478/* No loader configured, stub out EFI_ENTRY */
479static inline void efi_restore_gd(void) { }
Alexander Grafc49a1b82016-04-11 16:16:19 +0200480static inline void efi_set_bootdev(const char *dev, const char *devnr,
481 const char *path) { }
Alexander Graf94c4b992016-05-06 21:01:01 +0200482static inline void efi_net_set_dhcp_ack(void *pkt, int len) { }
Heinrich Schuchardt83d96b72018-04-05 11:56:21 +0200483static inline void efi_print_image_infos(void *pc) { }
Alexander Grafc15d9212016-03-04 01:09:59 +0100484
Stephen Warrend0de8062018-08-30 15:43:43 -0600485#endif /* CONFIG_IS_ENABLED(EFI_LOADER) */
Heinrich Schuchardtc2fd4772017-10-18 18:13:07 +0200486
487#endif /* _EFI_LOADER_H */