blob: 4262d0ac6b9c72dec45b6ed7629f1a6ad7ae172c [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);
20
Rob Clarka095aad2017-07-27 08:04:17 -040021/*
22 * Enter the u-boot world from UEFI:
23 */
Alexander Grafbee91162016-03-04 01:09:59 +010024#define EFI_ENTRY(format, ...) do { \
Rob Clarkc160d2f2017-07-27 08:04:18 -040025 assert(__efi_entry_check()); \
Alexander Grafedcef3b2016-06-02 11:38:27 +020026 debug("EFI: Entry %s(" format ")\n", __func__, ##__VA_ARGS__); \
Alexander Grafbee91162016-03-04 01:09:59 +010027 } while(0)
Alexander Grafbee91162016-03-04 01:09:59 +010028
Rob Clarka095aad2017-07-27 08:04:17 -040029/*
30 * Exit the u-boot world back to UEFI:
31 */
Rob Clark804b1d72017-07-24 10:31:52 -040032#define EFI_EXIT(ret) ({ \
Rob Clark3f1aa972017-07-27 08:04:16 -040033 efi_status_t _r = ret; \
34 debug("EFI: Exit: %s: %u\n", __func__, (u32)(_r & ~EFI_ERROR_MASK)); \
Rob Clarkc160d2f2017-07-27 08:04:18 -040035 assert(__efi_exit_check()); \
36 _r; \
Rob Clark804b1d72017-07-24 10:31:52 -040037 })
Alexander Grafbee91162016-03-04 01:09:59 +010038
Rob Clarka095aad2017-07-27 08:04:17 -040039/*
40 * Callback into UEFI world from u-boot:
41 */
42#define EFI_CALL(exp) do { \
43 debug("EFI: Call: %s\n", #exp); \
Rob Clarkc160d2f2017-07-27 08:04:18 -040044 assert(__efi_exit_check()); \
Rob Clarka095aad2017-07-27 08:04:17 -040045 exp; \
Rob Clarkc160d2f2017-07-27 08:04:18 -040046 assert(__efi_entry_check()); \
Rob Clarka095aad2017-07-27 08:04:17 -040047 debug("EFI: Return From: %s\n", #exp); \
48 } while(0)
49
Alexander Graf50149ea2016-03-04 01:10:01 +010050extern struct efi_runtime_services efi_runtime_services;
Alexander Grafbee91162016-03-04 01:09:59 +010051extern struct efi_system_table systab;
52
Alexander Grafc1311ad2016-03-04 01:10:00 +010053extern const struct efi_simple_text_output_protocol efi_con_out;
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +020054extern struct efi_simple_input_interface efi_con_in;
Alexander Grafc1311ad2016-03-04 01:10:00 +010055extern const struct efi_console_control_protocol efi_console_control;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020056extern const struct efi_device_path_to_text_protocol efi_device_path_to_text;
Alexander Grafc1311ad2016-03-04 01:10:00 +010057
58extern const efi_guid_t efi_guid_console_control;
Alexander Grafcb149c62016-03-04 01:09:58 +010059extern const efi_guid_t efi_guid_device_path;
60extern const efi_guid_t efi_guid_loaded_image;
xypron.glpk@gmx.decc5b7082017-07-11 22:06:25 +020061extern const efi_guid_t efi_guid_device_path_to_text_protocol;
Alexander Grafcb149c62016-03-04 01:09:58 +010062
Alexander Graf50149ea2016-03-04 01:10:01 +010063extern unsigned int __efi_runtime_start, __efi_runtime_stop;
64extern unsigned int __efi_runtime_rel_start, __efi_runtime_rel_stop;
65
Alexander Grafbee91162016-03-04 01:09:59 +010066/*
Alexander Grafbee91162016-03-04 01:09:59 +010067 * When the UEFI payload wants to open a protocol on an object to get its
68 * interface (usually a struct with callback functions), this struct maps the
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020069 * protocol GUID to the respective protocol interface */
Alexander Grafbee91162016-03-04 01:09:59 +010070struct efi_handler {
71 const efi_guid_t *guid;
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020072 void *protocol_interface;
Alexander Grafbee91162016-03-04 01:09:59 +010073};
74
75/*
76 * UEFI has a poor man's OO model where one "object" can be polymorphic and have
77 * multiple different protocols (classes) attached to it.
78 *
79 * This struct is the parent struct for all of our actual implementation objects
80 * that can include it to make themselves an EFI object
81 */
82struct efi_object {
83 /* Every UEFI object is part of a global object list */
84 struct list_head link;
xypron.glpk@gmx.de011f4322017-07-11 22:06:23 +020085 /* We support up to 8 "protocols" an object can be accessed through */
86 struct efi_handler protocols[8];
Alexander Grafbee91162016-03-04 01:09:59 +010087 /* The object spawner can either use this for data or as identifier */
88 void *handle;
89};
90
Rob Clark641833d2017-07-24 10:39:00 -040091#define EFI_PROTOCOL_OBJECT(_guid, _protocol) (struct efi_object){ \
92 .protocols = {{ \
93 .guid = &(_guid), \
94 .protocol_interface = (void *)(_protocol), \
95 }}, \
96 .handle = (void *)(_protocol), \
97}
98
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +020099/**
100 * struct efi_event
101 *
102 * @type: Type of event, see efi_create_event
103 * @notify_tpl: Task priority level of notifications
104 * @trigger_time: Period of the timer
105 * @trigger_next: Next time to trigger the timer
106 * @nofify_function: Function to call when the event is triggered
107 * @notify_context: Data to be passed to the notify function
108 * @trigger_type: Type of timer, see efi_set_timer
109 * @signaled: The notify function was already called
110 */
111struct efi_event {
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200112 uint32_t type;
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200113 UINTN notify_tpl;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200114 void (EFIAPI *notify_function)(struct efi_event *event, void *context);
115 void *notify_context;
116 u64 trigger_next;
117 u64 trigger_time;
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200118 enum efi_timer_delay trigger_type;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200119 int signaled;
120};
121
122
Alexander Grafbee91162016-03-04 01:09:59 +0100123/* This list contains all UEFI objects we know of */
124extern struct list_head efi_obj_list;
125
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200126/* Called by bootefi to make console interface available */
127int efi_console_register(void);
Alexander Graf2a22d052016-03-04 01:10:02 +0100128/* Called by bootefi to make all disk storage accessible as EFI objects */
129int efi_disk_register(void);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100130/* Called by bootefi to make GOP (graphical) interface available */
131int efi_gop_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200132/* Called by bootefi to make the network interface available */
133int efi_net_register(void **handle);
Alexander Grafe663b352016-08-19 01:23:29 +0200134/* Called by bootefi to make SMBIOS tables available */
135void efi_smbios_register(void);
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200136
137/* Called by networking code to memorize the dhcp ack package */
138void efi_net_set_dhcp_ack(void *pkt, int len);
139
Alexander Grafbee91162016-03-04 01:09:59 +0100140/* Called from places to check whether a timer expired */
141void efi_timer_check(void);
142/* PE loader implementation */
Alexander Grafcb149c62016-03-04 01:09:58 +0100143void *efi_load_pe(void *efi, struct efi_loaded_image *loaded_image_info);
Alexander Grafbee91162016-03-04 01:09:59 +0100144/* Called once to store the pristine gd pointer */
145void efi_save_gd(void);
Rob Clarkc160d2f2017-07-27 08:04:18 -0400146/* Special case handler for error/abort that just tries to dtrt to get
147 * back to u-boot world */
Alexander Grafbee91162016-03-04 01:09:59 +0100148void efi_restore_gd(void);
Alexander Graf50149ea2016-03-04 01:10:01 +0100149/* Call this to relocate the runtime section to an address space */
150void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100151/* Call this to set the current device name */
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200152void efi_set_bootdev(const char *dev, const char *devnr, const char *path);
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200153/* Call this to create an event */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200154efi_status_t efi_create_event(uint32_t type, UINTN notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200155 void (EFIAPI *notify_function) (
156 struct efi_event *event,
157 void *context),
158 void *notify_context, struct efi_event **event);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200159/* Call this to set a timer */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200160efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200161 uint64_t trigger_time);
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200162/* Call this to signal an event */
163void efi_signal_event(struct efi_event *event);
Alexander Graf50149ea2016-03-04 01:10:01 +0100164
Alexander Graf5d009952016-03-04 01:10:04 +0100165/* Generic EFI memory allocator, call this to get memory */
166void *efi_alloc(uint64_t len, int memory_type);
167/* More specific EFI memory allocator, called by EFI payloads */
168efi_status_t efi_allocate_pages(int type, int memory_type, unsigned long pages,
169 uint64_t *memory);
Stefan Brünsb61d8572016-10-01 23:32:27 +0200170/* EFI memory free function. */
Alexander Graf5d009952016-03-04 01:10:04 +0100171efi_status_t efi_free_pages(uint64_t memory, unsigned long pages);
Stefan Brünsead12742016-10-09 22:17:18 +0200172/* EFI memory allocator for small allocations */
173efi_status_t efi_allocate_pool(int pool_type, unsigned long size,
174 void **buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200175/* EFI pool memory free function. */
176efi_status_t efi_free_pool(void *buffer);
Alexander Graf5d009952016-03-04 01:10:04 +0100177/* Returns the EFI memory map */
178efi_status_t efi_get_memory_map(unsigned long *memory_map_size,
179 struct efi_mem_desc *memory_map,
180 unsigned long *map_key,
181 unsigned long *descriptor_size,
182 uint32_t *descriptor_version);
183/* Adds a range into the EFI memory map */
184uint64_t efi_add_memory_map(uint64_t start, uint64_t pages, int memory_type,
185 bool overlap_only_ram);
186/* Called by board init to initialize the EFI memory map */
187int efi_memory_init(void);
Alexander Graf488bf122016-08-19 01:23:24 +0200188/* Adds new or overrides configuration table entry to the system table */
189efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table);
Alexander Graf5d009952016-03-04 01:10:04 +0100190
Alexander Graf51735ae2016-05-11 18:25:48 +0200191#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
192extern void *efi_bounce_buffer;
193#define EFI_LOADER_BOUNCE_BUFFER_SIZE (64 * 1024 * 1024)
194#endif
195
Alexander Graf0f4060e2016-03-04 01:10:14 +0100196/* Convert strings from normal C strings to uEFI strings */
Simon Glass487d7562016-05-14 14:03:05 -0600197static inline void ascii2unicode(u16 *unicode, const char *ascii)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100198{
199 while (*ascii)
200 *(unicode++) = *(ascii++);
201}
202
Rob Clark3e094c52017-07-24 07:59:11 -0400203static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2)
204{
205 return memcmp(g1, g2, sizeof(efi_guid_t));
206}
207
Alexander Graf50149ea2016-03-04 01:10:01 +0100208/*
209 * Use these to indicate that your code / data should go into the EFI runtime
210 * section and thus still be available when the OS is running
211 */
Alexander Graf3c63db92016-10-14 13:45:30 +0200212#define __efi_runtime_data __attribute__ ((section ("efi_runtime_data")))
213#define __efi_runtime __attribute__ ((section ("efi_runtime_text")))
Alexander Grafbee91162016-03-04 01:09:59 +0100214
Alexander Graf80a48002016-08-16 21:08:45 +0200215/* Call this with mmio_ptr as the _pointer_ to a pointer to an MMIO region
216 * to make it available at runtime */
217void efi_add_runtime_mmio(void *mmio_ptr, u64 len);
218
219/* Boards may provide the functions below to implement RTS functionality */
220
Alexander Graf3c63db92016-10-14 13:45:30 +0200221void __efi_runtime EFIAPI efi_reset_system(
Alexander Graf80a48002016-08-16 21:08:45 +0200222 enum efi_reset_type reset_type,
223 efi_status_t reset_status,
224 unsigned long data_size, void *reset_data);
225void efi_reset_system_init(void);
226
Alexander Graf3c63db92016-10-14 13:45:30 +0200227efi_status_t __efi_runtime EFIAPI efi_get_time(
Alexander Graf80a48002016-08-16 21:08:45 +0200228 struct efi_time *time,
229 struct efi_time_cap *capabilities);
230void efi_get_time_init(void);
231
Alexander Grafbee91162016-03-04 01:09:59 +0100232#else /* defined(EFI_LOADER) && !defined(CONFIG_SPL_BUILD) */
233
Alexander Graf50149ea2016-03-04 01:10:01 +0100234/* Without CONFIG_EFI_LOADER we don't have a runtime section, stub it out */
Alexander Graf3c63db92016-10-14 13:45:30 +0200235#define __efi_runtime_data
236#define __efi_runtime
Alexander Graf97d01442016-11-17 01:02:56 +0100237static inline void efi_add_runtime_mmio(void *mmio_ptr, u64 len) { }
Alexander Graf50149ea2016-03-04 01:10:01 +0100238
Alexander Grafbee91162016-03-04 01:09:59 +0100239/* No loader configured, stub out EFI_ENTRY */
240static inline void efi_restore_gd(void) { }
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200241static inline void efi_set_bootdev(const char *dev, const char *devnr,
242 const char *path) { }
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200243static inline void efi_net_set_dhcp_ack(void *pkt, int len) { }
Alexander Grafbee91162016-03-04 01:09:59 +0100244
245#endif