blob: 25398ba40ca678ff913766de03f88a7497c29df4 [file] [log] [blame]
Alexander Grafcb149c62016-03-04 01:09:58 +01001/*
2 * EFI application loader
3 *
4 * Copyright (c) 2016 Alexander Graf
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
Alexander Grafbee91162016-03-04 01:09:59 +01009#include <common.h>
Alexander Grafcb149c62016-03-04 01:09:58 +010010#include <part_efi.h>
11#include <efi_api.h>
Alexander Grafbee91162016-03-04 01:09:59 +010012
13/* No need for efi loader support in SPL */
14#if defined(CONFIG_EFI_LOADER) && !defined(CONFIG_SPL_BUILD)
15
Alexander Grafcb149c62016-03-04 01:09:58 +010016#include <linux/list.h>
17
Rob Clarkc160d2f2017-07-27 08:04:18 -040018int __efi_entry_check(void);
19int __efi_exit_check(void);
Heinrich Schuchardtae0bd3a2017-08-18 17:45:16 +020020const char *__efi_nesting(void);
Rob Clarkaf65db82017-07-27 08:04:19 -040021const char *__efi_nesting_inc(void);
22const char *__efi_nesting_dec(void);
Rob Clarkc160d2f2017-07-27 08:04:18 -040023
Rob Clarka095aad2017-07-27 08:04:17 -040024/*
25 * Enter the u-boot world from UEFI:
26 */
Alexander Grafbee91162016-03-04 01:09:59 +010027#define EFI_ENTRY(format, ...) do { \
Rob Clarkc160d2f2017-07-27 08:04:18 -040028 assert(__efi_entry_check()); \
Rob Clarkaf65db82017-07-27 08:04:19 -040029 debug("%sEFI: Entry %s(" format ")\n", __efi_nesting_inc(), \
30 __func__, ##__VA_ARGS__); \
Alexander Grafbee91162016-03-04 01:09:59 +010031 } while(0)
Alexander Grafbee91162016-03-04 01:09:59 +010032
Rob Clarka095aad2017-07-27 08:04:17 -040033/*
34 * Exit the u-boot world back to UEFI:
35 */
Rob Clark804b1d72017-07-24 10:31:52 -040036#define EFI_EXIT(ret) ({ \
xypron.glpk@gmx.dec81883d2017-08-17 18:57:36 +020037 typeof(ret) _r = ret; \
Rob Clarkaf65db82017-07-27 08:04:19 -040038 debug("%sEFI: Exit: %s: %u\n", __efi_nesting_dec(), \
xypron.glpk@gmx.dec81883d2017-08-17 18:57:36 +020039 __func__, (u32)((uintptr_t) _r & ~EFI_ERROR_MASK)); \
Rob Clarkc160d2f2017-07-27 08:04:18 -040040 assert(__efi_exit_check()); \
41 _r; \
Rob Clark804b1d72017-07-24 10:31:52 -040042 })
Alexander Grafbee91162016-03-04 01:09:59 +010043
Rob Clarka095aad2017-07-27 08:04:17 -040044/*
Heinrich Schuchardtea630ce2017-09-15 10:06:10 +020045 * Call non-void UEFI function from u-boot and retrieve return value:
Rob Clarka095aad2017-07-27 08:04:17 -040046 */
Heinrich Schuchardtea630ce2017-09-15 10:06:10 +020047#define EFI_CALL(exp) ({ \
48 debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
49 assert(__efi_exit_check()); \
50 typeof(exp) _r = exp; \
51 assert(__efi_entry_check()); \
52 debug("%sEFI: %lu returned by %s\n", __efi_nesting_dec(), \
53 (unsigned long)((uintptr_t)_r & ~EFI_ERROR_MASK), #exp); \
54 _r; \
55})
56
57/*
58 * Call void UEFI function from u-boot:
59 */
60#define EFI_CALL_VOID(exp) do { \
Rob Clarkaf65db82017-07-27 08:04:19 -040061 debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
Rob Clarkc160d2f2017-07-27 08:04:18 -040062 assert(__efi_exit_check()); \
Rob Clarka095aad2017-07-27 08:04:17 -040063 exp; \
Rob Clarkc160d2f2017-07-27 08:04:18 -040064 assert(__efi_entry_check()); \
Rob Clarkaf65db82017-07-27 08:04:19 -040065 debug("%sEFI: Return From: %s\n", __efi_nesting_dec(), #exp); \
Rob Clarka095aad2017-07-27 08:04:17 -040066 } while(0)
67
Heinrich Schuchardtae0bd3a2017-08-18 17:45:16 +020068/*
69 * Write GUID
70 */
71#define EFI_PRINT_GUID(txt, guid) ({ \
72 debug("%sEFI: %s %pUl\n", __efi_nesting(), txt, guid); \
73 })
74
Alexander Graf50149ea2016-03-04 01:10:01 +010075extern struct efi_runtime_services efi_runtime_services;
Alexander Grafbee91162016-03-04 01:09:59 +010076extern struct efi_system_table systab;
77
Alexander Grafc1311ad2016-03-04 01:10:00 +010078extern const struct efi_simple_text_output_protocol efi_con_out;
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +020079extern struct efi_simple_input_interface efi_con_in;
Alexander Grafc1311ad2016-03-04 01:10:00 +010080extern const struct efi_console_control_protocol efi_console_control;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020081extern const struct efi_device_path_to_text_protocol efi_device_path_to_text;
Alexander Grafc1311ad2016-03-04 01:10:00 +010082
83extern const efi_guid_t efi_guid_console_control;
Alexander Grafcb149c62016-03-04 01:09:58 +010084extern const efi_guid_t efi_guid_device_path;
85extern const efi_guid_t efi_guid_loaded_image;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020086extern const efi_guid_t efi_guid_device_path_to_text_protocol;
Alexander Grafcb149c62016-03-04 01:09:58 +010087
Alexander Graf50149ea2016-03-04 01:10:01 +010088extern unsigned int __efi_runtime_start, __efi_runtime_stop;
89extern unsigned int __efi_runtime_rel_start, __efi_runtime_rel_stop;
90
Alexander Grafbee91162016-03-04 01:09:59 +010091/*
Alexander Grafbee91162016-03-04 01:09:59 +010092 * When the UEFI payload wants to open a protocol on an object to get its
93 * interface (usually a struct with callback functions), this struct maps the
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020094 * protocol GUID to the respective protocol interface */
Alexander Grafbee91162016-03-04 01:09:59 +010095struct efi_handler {
96 const efi_guid_t *guid;
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020097 void *protocol_interface;
Alexander Grafbee91162016-03-04 01:09:59 +010098};
99
100/*
101 * UEFI has a poor man's OO model where one "object" can be polymorphic and have
102 * multiple different protocols (classes) attached to it.
103 *
104 * This struct is the parent struct for all of our actual implementation objects
105 * that can include it to make themselves an EFI object
106 */
107struct efi_object {
108 /* Every UEFI object is part of a global object list */
109 struct list_head link;
xypron.glpk@gmx.de011f4322017-07-11 22:06:23 +0200110 /* We support up to 8 "protocols" an object can be accessed through */
111 struct efi_handler protocols[8];
Alexander Grafbee91162016-03-04 01:09:59 +0100112 /* The object spawner can either use this for data or as identifier */
113 void *handle;
114};
115
Rob Clark641833d2017-07-24 10:39:00 -0400116#define EFI_PROTOCOL_OBJECT(_guid, _protocol) (struct efi_object){ \
117 .protocols = {{ \
118 .guid = &(_guid), \
119 .protocol_interface = (void *)(_protocol), \
120 }}, \
121 .handle = (void *)(_protocol), \
122}
123
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200124/**
125 * struct efi_event
126 *
127 * @type: Type of event, see efi_create_event
128 * @notify_tpl: Task priority level of notifications
129 * @trigger_time: Period of the timer
130 * @trigger_next: Next time to trigger the timer
131 * @nofify_function: Function to call when the event is triggered
132 * @notify_context: Data to be passed to the notify function
133 * @trigger_type: Type of timer, see efi_set_timer
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200134 * @queued: The notification functionis queued
135 * @signaled: The event occured
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200136 */
137struct efi_event {
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200138 uint32_t type;
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200139 UINTN notify_tpl;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200140 void (EFIAPI *notify_function)(struct efi_event *event, void *context);
141 void *notify_context;
142 u64 trigger_next;
143 u64 trigger_time;
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200144 enum efi_timer_delay trigger_type;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200145 int queued;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200146 int signaled;
147};
148
149
Alexander Grafbee91162016-03-04 01:09:59 +0100150/* This list contains all UEFI objects we know of */
151extern struct list_head efi_obj_list;
152
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200153/* Called by bootefi to make console interface available */
154int efi_console_register(void);
Alexander Graf2a22d052016-03-04 01:10:02 +0100155/* Called by bootefi to make all disk storage accessible as EFI objects */
156int efi_disk_register(void);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100157/* Called by bootefi to make GOP (graphical) interface available */
158int efi_gop_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200159/* Called by bootefi to make the network interface available */
160int efi_net_register(void **handle);
Alexander Grafe663b352016-08-19 01:23:29 +0200161/* Called by bootefi to make SMBIOS tables available */
162void efi_smbios_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200163
164/* Called by networking code to memorize the dhcp ack package */
165void efi_net_set_dhcp_ack(void *pkt, int len);
166
Alexander Grafbee91162016-03-04 01:09:59 +0100167/* Called from places to check whether a timer expired */
168void efi_timer_check(void);
169/* PE loader implementation */
Alexander Grafcb149c62016-03-04 01:09:58 +0100170void *efi_load_pe(void *efi, struct efi_loaded_image *loaded_image_info);
Alexander Grafbee91162016-03-04 01:09:59 +0100171/* Called once to store the pristine gd pointer */
172void efi_save_gd(void);
Rob Clarkc160d2f2017-07-27 08:04:18 -0400173/* Special case handler for error/abort that just tries to dtrt to get
174 * back to u-boot world */
Alexander Grafbee91162016-03-04 01:09:59 +0100175void efi_restore_gd(void);
Alexander Graf50149ea2016-03-04 01:10:01 +0100176/* Call this to relocate the runtime section to an address space */
177void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100178/* Call this to set the current device name */
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200179void efi_set_bootdev(const char *dev, const char *devnr, const char *path);
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200180/* Call this to create an event */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200181efi_status_t efi_create_event(uint32_t type, UINTN notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200182 void (EFIAPI *notify_function) (
183 struct efi_event *event,
184 void *context),
185 void *notify_context, struct efi_event **event);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200186/* Call this to set a timer */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200187efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200188 uint64_t trigger_time);
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200189/* Call this to signal an event */
190void efi_signal_event(struct efi_event *event);
Alexander Graf50149ea2016-03-04 01:10:01 +0100191
Alexander Graf5d009952016-03-04 01:10:04 +0100192/* Generic EFI memory allocator, call this to get memory */
193void *efi_alloc(uint64_t len, int memory_type);
194/* More specific EFI memory allocator, called by EFI payloads */
195efi_status_t efi_allocate_pages(int type, int memory_type, unsigned long pages,
196 uint64_t *memory);
Stefan Brünsb61d8572016-10-01 23:32:27 +0200197/* EFI memory free function. */
Alexander Graf5d009952016-03-04 01:10:04 +0100198efi_status_t efi_free_pages(uint64_t memory, unsigned long pages);
Stefan Brünsead12742016-10-09 22:17:18 +0200199/* EFI memory allocator for small allocations */
200efi_status_t efi_allocate_pool(int pool_type, unsigned long size,
201 void **buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200202/* EFI pool memory free function. */
203efi_status_t efi_free_pool(void *buffer);
Alexander Graf5d009952016-03-04 01:10:04 +0100204/* Returns the EFI memory map */
205efi_status_t efi_get_memory_map(unsigned long *memory_map_size,
206 struct efi_mem_desc *memory_map,
207 unsigned long *map_key,
208 unsigned long *descriptor_size,
209 uint32_t *descriptor_version);
210/* Adds a range into the EFI memory map */
211uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
212 bool overlap_only_ram);
213/* Called by board init to initialize the EFI memory map */
214int efi_memory_init(void);
Alexander Graf488bf122016-08-19 01:23:24 +0200215/* Adds new or overrides configuration table entry to the system table */
216efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table);
Alexander Graf5d009952016-03-04 01:10:04 +0100217
Alexander Graf51735ae2016-05-11 18:25:48 +0200218#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
219extern void *efi_bounce_buffer;
220#define EFI_LOADER_BOUNCE_BUFFER_SIZE (64 * 1024 * 1024)
221#endif
222
Alexander Graf0f4060e2016-03-04 01:10:14 +0100223/* Convert strings from normal C strings to uEFI strings */
Simon Glass487d7562016-05-14 14:03:05 -0600224static inline void ascii2unicode(u16 *unicode, const char *ascii)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100225{
226 while (*ascii)
227 *(unicode++) = *(ascii++);
228}
229
Rob Clark3e094c52017-07-24 07:59:11 -0400230static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
231{
232 return memcmp(g1, g2, sizeof(efi_guid_t));
233}
234
Alexander Graf50149ea2016-03-04 01:10:01 +0100235/*
236 * Use these to indicate that your code / data should go into the EFI runtime
237 * section and thus still be available when the OS is running
238 */
Alexander Graf3c63db92016-10-14 13:45:30 +0200239#define __efi_runtime_data __attribute__ ((section ("efi_runtime_data")))
240#define __efi_runtime __attribute__ ((section ("efi_runtime_text")))
Alexander Grafbee91162016-03-04 01:09:59 +0100241
Alexander Graf80a48002016-08-16 21:08:45 +0200242/* Call this with mmio_ptr as the _pointer_ to a pointer to an MMIO region
243 * to make it available at runtime */
244void efi_add_runtime_mmio(void *mmio_ptr, u64 len);
245
246/* Boards may provide the functions below to implement RTS functionality */
247
Alexander Graf3c63db92016-10-14 13:45:30 +0200248void __efi_runtime EFIAPI efi_reset_system(
Alexander Graf80a48002016-08-16 21:08:45 +0200249 enum efi_reset_type reset_type,
250 efi_status_t reset_status,
251 unsigned long data_size, void *reset_data);
252void efi_reset_system_init(void);
253
Alexander Graf3c63db92016-10-14 13:45:30 +0200254efi_status_t __efi_runtime EFIAPI efi_get_time(
Alexander Graf80a48002016-08-16 21:08:45 +0200255 struct efi_time *time,
256 struct efi_time_cap *capabilities);
257void efi_get_time_init(void);
258
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200259#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
260/*
261 * Entry point for the tests of the EFI API.
262 * It is called by 'bootefi selftest'
263 */
264efi_status_t EFIAPI efi_selftest(efi_handle_t image_handle,
265 struct efi_system_table *systab);
266#endif
267
Alexander Grafbee91162016-03-04 01:09:59 +0100268#else /* defined(EFI_LOADER) && !defined(CONFIG_SPL_BUILD) */
269
Alexander Graf50149ea2016-03-04 01:10:01 +0100270/* Without CONFIG_EFI_LOADER we don't have a runtime section, stub it out */
Alexander Graf3c63db92016-10-14 13:45:30 +0200271#define __efi_runtime_data
272#define __efi_runtime
Alexander Graf97d01442016-11-17 01:02:56 +0100273static inline void efi_add_runtime_mmio(void *mmio_ptr, u64 len) { }
Alexander Graf50149ea2016-03-04 01:10:01 +0100274
Alexander Grafbee91162016-03-04 01:09:59 +0100275/* No loader configured, stub out EFI_ENTRY */
276static inline void efi_restore_gd(void) { }
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200277static inline void efi_set_bootdev(const char *dev, const char *devnr,
278 const char *path) { }
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200279static inline void efi_net_set_dhcp_ack(void *pkt, int len) { }
Alexander Grafbee91162016-03-04 01:09:59 +0100280
281#endif