blob: 037cc7c543414682ebe05f11da5df17764a80a81 [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);
Rob Clarkaf65db82017-07-27 08:04:19 -040020const char *__efi_nesting_inc(void);
21const char *__efi_nesting_dec(void);
Rob Clarkc160d2f2017-07-27 08:04:18 -040022
Rob Clarka095aad2017-07-27 08:04:17 -040023/*
24 * Enter the u-boot world from UEFI:
25 */
Alexander Grafbee91162016-03-04 01:09:59 +010026#define EFI_ENTRY(format, ...) do { \
Rob Clarkc160d2f2017-07-27 08:04:18 -040027 assert(__efi_entry_check()); \
Rob Clarkaf65db82017-07-27 08:04:19 -040028 debug("%sEFI: Entry %s(" format ")\n", __efi_nesting_inc(), \
29 __func__, ##__VA_ARGS__); \
Alexander Grafbee91162016-03-04 01:09:59 +010030 } while(0)
Alexander Grafbee91162016-03-04 01:09:59 +010031
Rob Clarka095aad2017-07-27 08:04:17 -040032/*
33 * Exit the u-boot world back to UEFI:
34 */
Rob Clark804b1d72017-07-24 10:31:52 -040035#define EFI_EXIT(ret) ({ \
Rob Clark3f1aa972017-07-27 08:04:16 -040036 efi_status_t _r = ret; \
Rob Clarkaf65db82017-07-27 08:04:19 -040037 debug("%sEFI: Exit: %s: %u\n", __efi_nesting_dec(), \
38 __func__, (u32)(_r & ~EFI_ERROR_MASK)); \
Rob Clarkc160d2f2017-07-27 08:04:18 -040039 assert(__efi_exit_check()); \
40 _r; \
Rob Clark804b1d72017-07-24 10:31:52 -040041 })
Alexander Grafbee91162016-03-04 01:09:59 +010042
Rob Clarka095aad2017-07-27 08:04:17 -040043/*
44 * Callback into UEFI world from u-boot:
45 */
46#define EFI_CALL(exp) do { \
Rob Clarkaf65db82017-07-27 08:04:19 -040047 debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
Rob Clarkc160d2f2017-07-27 08:04:18 -040048 assert(__efi_exit_check()); \
Rob Clarka095aad2017-07-27 08:04:17 -040049 exp; \
Rob Clarkc160d2f2017-07-27 08:04:18 -040050 assert(__efi_entry_check()); \
Rob Clarkaf65db82017-07-27 08:04:19 -040051 debug("%sEFI: Return From: %s\n", __efi_nesting_dec(), #exp); \
Rob Clarka095aad2017-07-27 08:04:17 -040052 } while(0)
53
Alexander Graf50149ea2016-03-04 01:10:01 +010054extern struct efi_runtime_services efi_runtime_services;
Alexander Grafbee91162016-03-04 01:09:59 +010055extern struct efi_system_table systab;
56
Alexander Grafc1311ad2016-03-04 01:10:00 +010057extern const struct efi_simple_text_output_protocol efi_con_out;
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +020058extern struct efi_simple_input_interface efi_con_in;
Alexander Grafc1311ad2016-03-04 01:10:00 +010059extern const struct efi_console_control_protocol efi_console_control;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020060extern const struct efi_device_path_to_text_protocol efi_device_path_to_text;
Alexander Grafc1311ad2016-03-04 01:10:00 +010061
62extern const efi_guid_t efi_guid_console_control;
Alexander Grafcb149c62016-03-04 01:09:58 +010063extern const efi_guid_t efi_guid_device_path;
64extern const efi_guid_t efi_guid_loaded_image;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020065extern const efi_guid_t efi_guid_device_path_to_text_protocol;
Alexander Grafcb149c62016-03-04 01:09:58 +010066
Alexander Graf50149ea2016-03-04 01:10:01 +010067extern unsigned int __efi_runtime_start, __efi_runtime_stop;
68extern unsigned int __efi_runtime_rel_start, __efi_runtime_rel_stop;
69
Alexander Grafbee91162016-03-04 01:09:59 +010070/*
Alexander Grafbee91162016-03-04 01:09:59 +010071 * When the UEFI payload wants to open a protocol on an object to get its
72 * interface (usually a struct with callback functions), this struct maps the
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020073 * protocol GUID to the respective protocol interface */
Alexander Grafbee91162016-03-04 01:09:59 +010074struct efi_handler {
75 const efi_guid_t *guid;
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020076 void *protocol_interface;
Alexander Grafbee91162016-03-04 01:09:59 +010077};
78
79/*
80 * UEFI has a poor man's OO model where one "object" can be polymorphic and have
81 * multiple different protocols (classes) attached to it.
82 *
83 * This struct is the parent struct for all of our actual implementation objects
84 * that can include it to make themselves an EFI object
85 */
86struct efi_object {
87 /* Every UEFI object is part of a global object list */
88 struct list_head link;
xypron.glpk@gmx.de011f4322017-07-11 22:06:23 +020089 /* We support up to 8 "protocols" an object can be accessed through */
90 struct efi_handler protocols[8];
Alexander Grafbee91162016-03-04 01:09:59 +010091 /* The object spawner can either use this for data or as identifier */
92 void *handle;
93};
94
Rob Clark641833d2017-07-24 10:39:00 -040095#define EFI_PROTOCOL_OBJECT(_guid, _protocol) (struct efi_object){ \
96 .protocols = {{ \
97 .guid = &(_guid), \
98 .protocol_interface = (void *)(_protocol), \
99 }}, \
100 .handle = (void *)(_protocol), \
101}
102
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200103/**
104 * struct efi_event
105 *
106 * @type: Type of event, see efi_create_event
107 * @notify_tpl: Task priority level of notifications
108 * @trigger_time: Period of the timer
109 * @trigger_next: Next time to trigger the timer
110 * @nofify_function: Function to call when the event is triggered
111 * @notify_context: Data to be passed to the notify function
112 * @trigger_type: Type of timer, see efi_set_timer
113 * @signaled: The notify function was already called
114 */
115struct efi_event {
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200116 uint32_t type;
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200117 UINTN notify_tpl;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200118 void (EFIAPI *notify_function)(struct efi_event *event, void *context);
119 void *notify_context;
120 u64 trigger_next;
121 u64 trigger_time;
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200122 enum efi_timer_delay trigger_type;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200123 int signaled;
124};
125
126
Alexander Grafbee91162016-03-04 01:09:59 +0100127/* This list contains all UEFI objects we know of */
128extern struct list_head efi_obj_list;
129
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200130/* Called by bootefi to make console interface available */
131int efi_console_register(void);
Alexander Graf2a22d052016-03-04 01:10:02 +0100132/* Called by bootefi to make all disk storage accessible as EFI objects */
133int efi_disk_register(void);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100134/* Called by bootefi to make GOP (graphical) interface available */
135int efi_gop_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200136/* Called by bootefi to make the network interface available */
137int efi_net_register(void **handle);
Alexander Grafe663b352016-08-19 01:23:29 +0200138/* Called by bootefi to make SMBIOS tables available */
139void efi_smbios_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200140
141/* Called by networking code to memorize the dhcp ack package */
142void efi_net_set_dhcp_ack(void *pkt, int len);
143
Alexander Grafbee91162016-03-04 01:09:59 +0100144/* Called from places to check whether a timer expired */
145void efi_timer_check(void);
146/* PE loader implementation */
Alexander Grafcb149c62016-03-04 01:09:58 +0100147void *efi_load_pe(void *efi, struct efi_loaded_image *loaded_image_info);
Alexander Grafbee91162016-03-04 01:09:59 +0100148/* Called once to store the pristine gd pointer */
149void efi_save_gd(void);
Rob Clarkc160d2f2017-07-27 08:04:18 -0400150/* Special case handler for error/abort that just tries to dtrt to get
151 * back to u-boot world */
Alexander Grafbee91162016-03-04 01:09:59 +0100152void efi_restore_gd(void);
Alexander Graf50149ea2016-03-04 01:10:01 +0100153/* Call this to relocate the runtime section to an address space */
154void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100155/* Call this to set the current device name */
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200156void efi_set_bootdev(const char *dev, const char *devnr, const char *path);
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200157/* Call this to create an event */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200158efi_status_t efi_create_event(uint32_t type, UINTN notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200159 void (EFIAPI *notify_function) (
160 struct efi_event *event,
161 void *context),
162 void *notify_context, struct efi_event **event);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200163/* Call this to set a timer */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200164efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200165 uint64_t trigger_time);
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200166/* Call this to signal an event */
167void efi_signal_event(struct efi_event *event);
Alexander Graf50149ea2016-03-04 01:10:01 +0100168
Alexander Graf5d009952016-03-04 01:10:04 +0100169/* Generic EFI memory allocator, call this to get memory */
170void *efi_alloc(uint64_t len, int memory_type);
171/* More specific EFI memory allocator, called by EFI payloads */
172efi_status_t efi_allocate_pages(int type, int memory_type, unsigned long pages,
173 uint64_t *memory);
Stefan Brünsb61d8572016-10-01 23:32:27 +0200174/* EFI memory free function. */
Alexander Graf5d009952016-03-04 01:10:04 +0100175efi_status_t efi_free_pages(uint64_t memory, unsigned long pages);
Stefan Brünsead12742016-10-09 22:17:18 +0200176/* EFI memory allocator for small allocations */
177efi_status_t efi_allocate_pool(int pool_type, unsigned long size,
178 void **buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200179/* EFI pool memory free function. */
180efi_status_t efi_free_pool(void *buffer);
Alexander Graf5d009952016-03-04 01:10:04 +0100181/* Returns the EFI memory map */
182efi_status_t efi_get_memory_map(unsigned long *memory_map_size,
183 struct efi_mem_desc *memory_map,
184 unsigned long *map_key,
185 unsigned long *descriptor_size,
186 uint32_t *descriptor_version);
187/* Adds a range into the EFI memory map */
188uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
189 bool overlap_only_ram);
190/* Called by board init to initialize the EFI memory map */
191int efi_memory_init(void);
Alexander Graf488bf122016-08-19 01:23:24 +0200192/* Adds new or overrides configuration table entry to the system table */
193efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table);
Alexander Graf5d009952016-03-04 01:10:04 +0100194
Alexander Graf51735ae2016-05-11 18:25:48 +0200195#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
196extern void *efi_bounce_buffer;
197#define EFI_LOADER_BOUNCE_BUFFER_SIZE (64 * 1024 * 1024)
198#endif
199
Alexander Graf0f4060e2016-03-04 01:10:14 +0100200/* Convert strings from normal C strings to uEFI strings */
Simon Glass487d7562016-05-14 14:03:05 -0600201static inline void ascii2unicode(u16 *unicode, const char *ascii)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100202{
203 while (*ascii)
204 *(unicode++) = *(ascii++);
205}
206
Rob Clark3e094c52017-07-24 07:59:11 -0400207static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
208{
209 return memcmp(g1, g2, sizeof(efi_guid_t));
210}
211
Alexander Graf50149ea2016-03-04 01:10:01 +0100212/*
213 * Use these to indicate that your code / data should go into the EFI runtime
214 * section and thus still be available when the OS is running
215 */
Alexander Graf3c63db92016-10-14 13:45:30 +0200216#define __efi_runtime_data __attribute__ ((section ("efi_runtime_data")))
217#define __efi_runtime __attribute__ ((section ("efi_runtime_text")))
Alexander Grafbee91162016-03-04 01:09:59 +0100218
Alexander Graf80a48002016-08-16 21:08:45 +0200219/* Call this with mmio_ptr as the _pointer_ to a pointer to an MMIO region
220 * to make it available at runtime */
221void efi_add_runtime_mmio(void *mmio_ptr, u64 len);
222
223/* Boards may provide the functions below to implement RTS functionality */
224
Alexander Graf3c63db92016-10-14 13:45:30 +0200225void __efi_runtime EFIAPI efi_reset_system(
Alexander Graf80a48002016-08-16 21:08:45 +0200226 enum efi_reset_type reset_type,
227 efi_status_t reset_status,
228 unsigned long data_size, void *reset_data);
229void efi_reset_system_init(void);
230
Alexander Graf3c63db92016-10-14 13:45:30 +0200231efi_status_t __efi_runtime EFIAPI efi_get_time(
Alexander Graf80a48002016-08-16 21:08:45 +0200232 struct efi_time *time,
233 struct efi_time_cap *capabilities);
234void efi_get_time_init(void);
235
Alexander Grafbee91162016-03-04 01:09:59 +0100236#else /* defined(EFI_LOADER) && !defined(CONFIG_SPL_BUILD) */
237
Alexander Graf50149ea2016-03-04 01:10:01 +0100238/* Without CONFIG_EFI_LOADER we don't have a runtime section, stub it out */
Alexander Graf3c63db92016-10-14 13:45:30 +0200239#define __efi_runtime_data
240#define __efi_runtime
Alexander Graf97d01442016-11-17 01:02:56 +0100241static inline void efi_add_runtime_mmio(void *mmio_ptr, u64 len) { }
Alexander Graf50149ea2016-03-04 01:10:01 +0100242
Alexander Grafbee91162016-03-04 01:09:59 +0100243/* No loader configured, stub out EFI_ENTRY */
244static inline void efi_restore_gd(void) { }
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200245static inline void efi_set_bootdev(const char *dev, const char *devnr,
246 const char *path) { }
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200247static inline void efi_net_set_dhcp_ack(void *pkt, int len) { }
Alexander Grafbee91162016-03-04 01:09:59 +0100248
249#endif