blob: 8892c86f41943f98d46f7547af21a04b62807c3d [file] [log] [blame]
Alexander Grafc15d9212016-03-04 01:09:59 +01001/*
2 * EFI application boot time services
3 *
4 * Copyright (c) 2016 Alexander Graf
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
Alexander Grafc15d9212016-03-04 01:09:59 +01009#include <common.h>
Heinrich Schuchardt368ca642017-10-05 16:14:14 +020010#include <div64.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010011#include <efi_loader.h>
Rob Clark15f3d742017-09-13 18:05:37 -040012#include <environment.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010013#include <malloc.h>
14#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090015#include <linux/libfdt_env.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010016#include <u-boot/crc.h>
17#include <bootm.h>
18#include <inttypes.h>
19#include <watchdog.h>
20
21DECLARE_GLOBAL_DATA_PTR;
22
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020023/* Task priority level */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +010024static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020025
Alexander Grafc15d9212016-03-04 01:09:59 +010026/* This list contains all the EFI objects our payload has access to */
27LIST_HEAD(efi_obj_list);
28
29/*
30 * If we're running on nasty systems (32bit ARM booting into non-EFI Linux)
31 * we need to do trickery with caches. Since we don't want to break the EFI
32 * aware boot path, only apply hacks when loading exiting directly (breaking
33 * direct Linux EFI booting along the way - oh well).
34 */
35static bool efi_is_direct_boot = true;
36
37/*
38 * EFI can pass arbitrary additional "tables" containing vendor specific
39 * information to the payload. One such table is the FDT table which contains
40 * a pointer to a flattened device tree blob.
41 *
42 * In most cases we want to pass an FDT to the payload, so reserve one slot of
43 * config table space for it. The pointer gets populated by do_bootefi_exec().
44 */
Alexander Graf393dd912016-10-14 13:45:30 +020045static struct efi_configuration_table __efi_runtime_data efi_conf_table[2];
Alexander Grafc15d9212016-03-04 01:09:59 +010046
Simon Glasscdfe6962016-09-25 15:27:35 -060047#ifdef CONFIG_ARM
Alexander Grafc15d9212016-03-04 01:09:59 +010048/*
49 * The "gd" pointer lives in a register on ARM and AArch64 that we declare
50 * fixed when compiling U-Boot. However, the payload does not know about that
51 * restriction so we need to manually swap its and our view of that register on
52 * EFI callback entry/exit.
53 */
54static volatile void *efi_gd, *app_gd;
Simon Glasscdfe6962016-09-25 15:27:35 -060055#endif
Alexander Grafc15d9212016-03-04 01:09:59 +010056
Rob Clark86789d52017-07-27 08:04:18 -040057static int entry_count;
Rob Clarke7896c32017-07-27 08:04:19 -040058static int nesting_level;
Heinrich Schuchardt760255f2018-01-11 08:16:02 +010059/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
60const efi_guid_t efi_guid_driver_binding_protocol =
61 EFI_DRIVER_BINDING_PROTOCOL_GUID;
Rob Clark86789d52017-07-27 08:04:18 -040062
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +010063static efi_status_t EFIAPI efi_disconnect_controller(
64 efi_handle_t controller_handle,
65 efi_handle_t driver_image_handle,
66 efi_handle_t child_handle);
Heinrich Schuchardte9943282018-01-11 08:16:04 +010067
Rob Clark86789d52017-07-27 08:04:18 -040068/* Called on every callback entry */
69int __efi_entry_check(void)
70{
71 int ret = entry_count++ == 0;
72#ifdef CONFIG_ARM
73 assert(efi_gd);
74 app_gd = gd;
75 gd = efi_gd;
76#endif
77 return ret;
78}
79
80/* Called on every callback exit */
81int __efi_exit_check(void)
82{
83 int ret = --entry_count == 0;
84#ifdef CONFIG_ARM
85 gd = app_gd;
86#endif
87 return ret;
88}
89
Alexander Grafc15d9212016-03-04 01:09:59 +010090/* Called from do_bootefi_exec() */
91void efi_save_gd(void)
92{
Simon Glasscdfe6962016-09-25 15:27:35 -060093#ifdef CONFIG_ARM
Alexander Grafc15d9212016-03-04 01:09:59 +010094 efi_gd = gd;
Simon Glasscdfe6962016-09-25 15:27:35 -060095#endif
Alexander Grafc15d9212016-03-04 01:09:59 +010096}
97
Rob Clark86789d52017-07-27 08:04:18 -040098/*
99 * Special case handler for error/abort that just forces things back
100 * to u-boot world so we can dump out an abort msg, without any care
101 * about returning back to UEFI world.
102 */
Alexander Grafc15d9212016-03-04 01:09:59 +0100103void efi_restore_gd(void)
104{
Simon Glasscdfe6962016-09-25 15:27:35 -0600105#ifdef CONFIG_ARM
Alexander Grafc15d9212016-03-04 01:09:59 +0100106 /* Only restore if we're already in EFI context */
107 if (!efi_gd)
108 return;
Alexander Grafc15d9212016-03-04 01:09:59 +0100109 gd = efi_gd;
Simon Glasscdfe6962016-09-25 15:27:35 -0600110#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100111}
112
Rob Clarke7896c32017-07-27 08:04:19 -0400113/*
Heinrich Schuchardt091cf432018-01-24 19:21:36 +0100114 * Return a string for indenting with two spaces per level. A maximum of ten
115 * indent levels is supported. Higher indent levels will be truncated.
116 *
117 * @level indent level
118 * @return indent string
Rob Clarke7896c32017-07-27 08:04:19 -0400119 */
120static const char *indent_string(int level)
121{
122 const char *indent = " ";
123 const int max = strlen(indent);
124 level = min(max, level * 2);
125 return &indent[max - level];
126}
127
Heinrich Schuchardt4d664892017-08-18 17:45:16 +0200128const char *__efi_nesting(void)
129{
130 return indent_string(nesting_level);
131}
132
Rob Clarke7896c32017-07-27 08:04:19 -0400133const char *__efi_nesting_inc(void)
134{
135 return indent_string(nesting_level++);
136}
137
138const char *__efi_nesting_dec(void)
139{
140 return indent_string(--nesting_level);
141}
142
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200143/*
144 * Queue an EFI event.
145 *
146 * This function queues the notification function of the event for future
147 * execution.
148 *
149 * The notification function is called if the task priority level of the
150 * event is higher than the current task priority level.
151 *
152 * For the SignalEvent service see efi_signal_event_ext.
153 *
154 * @event event to signal
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100155 * @check_tpl check the TPL level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200156 */
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100157void efi_signal_event(struct efi_event *event, bool check_tpl)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200158{
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200159 if (event->notify_function) {
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200160 event->is_queued = true;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200161 /* Check TPL */
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100162 if (check_tpl && efi_tpl >= event->notify_tpl)
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200163 return;
Heinrich Schuchardt91e5b8a2017-09-15 10:06:10 +0200164 EFI_CALL_VOID(event->notify_function(event,
165 event->notify_context));
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200166 }
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200167 event->is_queued = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200168}
169
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200170/*
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200171 * Raise the task priority level.
172 *
173 * This function implements the RaiseTpl service.
174 * See the Unified Extensible Firmware Interface (UEFI) specification
175 * for details.
176 *
177 * @new_tpl new value of the task priority level
178 * @return old value of the task priority level
179 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100180static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100181{
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100182 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200183
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200184 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200185
186 if (new_tpl < efi_tpl)
187 debug("WARNING: new_tpl < current_tpl in %s\n", __func__);
188 efi_tpl = new_tpl;
189 if (efi_tpl > TPL_HIGH_LEVEL)
190 efi_tpl = TPL_HIGH_LEVEL;
191
192 EFI_EXIT(EFI_SUCCESS);
193 return old_tpl;
Alexander Grafc15d9212016-03-04 01:09:59 +0100194}
195
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200196/*
197 * Lower the task priority level.
198 *
199 * This function implements the RestoreTpl service.
200 * See the Unified Extensible Firmware Interface (UEFI) specification
201 * for details.
202 *
203 * @old_tpl value of the task priority level to be restored
204 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100205static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100206{
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200207 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200208
209 if (old_tpl > efi_tpl)
210 debug("WARNING: old_tpl > current_tpl in %s\n", __func__);
211 efi_tpl = old_tpl;
212 if (efi_tpl > TPL_HIGH_LEVEL)
213 efi_tpl = TPL_HIGH_LEVEL;
214
215 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +0100216}
217
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200218/*
219 * Allocate memory pages.
220 *
221 * This function implements the AllocatePages service.
222 * See the Unified Extensible Firmware Interface (UEFI) specification
223 * for details.
224 *
225 * @type type of allocation to be performed
226 * @memory_type usage type of the allocated memory
227 * @pages number of pages to be allocated
228 * @memory allocated memory
229 * @return status code
230 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900231static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100232 efi_uintn_t pages,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900233 uint64_t *memory)
Alexander Grafc15d9212016-03-04 01:09:59 +0100234{
235 efi_status_t r;
236
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100237 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafc15d9212016-03-04 01:09:59 +0100238 r = efi_allocate_pages(type, memory_type, pages, memory);
239 return EFI_EXIT(r);
240}
241
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200242/*
243 * Free memory pages.
244 *
245 * This function implements the FreePages service.
246 * See the Unified Extensible Firmware Interface (UEFI) specification
247 * for details.
248 *
249 * @memory start of the memory area to be freed
250 * @pages number of pages to be freed
251 * @return status code
252 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900253static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100254 efi_uintn_t pages)
Alexander Grafc15d9212016-03-04 01:09:59 +0100255{
256 efi_status_t r;
257
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100258 EFI_ENTRY("%"PRIx64", 0x%zx", memory, pages);
Alexander Grafc15d9212016-03-04 01:09:59 +0100259 r = efi_free_pages(memory, pages);
260 return EFI_EXIT(r);
261}
262
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200263/*
264 * Get map describing memory usage.
265 *
266 * This function implements the GetMemoryMap service.
267 * See the Unified Extensible Firmware Interface (UEFI) specification
268 * for details.
269 *
270 * @memory_map_size on entry the size, in bytes, of the memory map buffer,
271 * on exit the size of the copied memory map
272 * @memory_map buffer to which the memory map is written
273 * @map_key key for the memory map
274 * @descriptor_size size of an individual memory descriptor
275 * @descriptor_version version number of the memory descriptor structure
276 * @return status code
277 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900278static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100279 efi_uintn_t *memory_map_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900280 struct efi_mem_desc *memory_map,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100281 efi_uintn_t *map_key,
282 efi_uintn_t *descriptor_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900283 uint32_t *descriptor_version)
Alexander Grafc15d9212016-03-04 01:09:59 +0100284{
285 efi_status_t r;
286
287 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
288 map_key, descriptor_size, descriptor_version);
289 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
290 descriptor_size, descriptor_version);
291 return EFI_EXIT(r);
292}
293
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200294/*
295 * Allocate memory from pool.
296 *
297 * This function implements the AllocatePool service.
298 * See the Unified Extensible Firmware Interface (UEFI) specification
299 * for details.
300 *
301 * @pool_type type of the pool from which memory is to be allocated
302 * @size number of bytes to be allocated
303 * @buffer allocated memory
304 * @return status code
305 */
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200306static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100307 efi_uintn_t size,
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200308 void **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100309{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100310 efi_status_t r;
311
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100312 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200313 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100314 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100315}
316
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200317/*
318 * Free memory from pool.
319 *
320 * This function implements the FreePool service.
321 * See the Unified Extensible Firmware Interface (UEFI) specification
322 * for details.
323 *
324 * @buffer start of memory to be freed
325 * @return status code
326 */
Stefan Brüns67b67d92016-10-09 22:17:26 +0200327static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100328{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100329 efi_status_t r;
330
331 EFI_ENTRY("%p", buffer);
Stefan Brüns67b67d92016-10-09 22:17:26 +0200332 r = efi_free_pool(buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100333 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100334}
335
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200336/*
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100337 * Add a new object to the object list.
338 *
339 * The protocols list is initialized.
340 * The object handle is set.
341 *
342 * @obj object to be added
343 */
344void efi_add_handle(struct efi_object *obj)
345{
346 if (!obj)
347 return;
348 INIT_LIST_HEAD(&obj->protocols);
349 obj->handle = obj;
350 list_add_tail(&obj->link, &efi_obj_list);
351}
352
353/*
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200354 * Create handle.
355 *
356 * @handle new handle
357 * @return status code
358 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100359efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200360{
361 struct efi_object *obj;
362 efi_status_t r;
363
364 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES,
365 sizeof(struct efi_object),
366 (void **)&obj);
367 if (r != EFI_SUCCESS)
368 return r;
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100369 efi_add_handle(obj);
370 *handle = obj->handle;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200371 return r;
372}
373
Alexander Grafc15d9212016-03-04 01:09:59 +0100374/*
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100375 * Find a protocol on a handle.
376 *
377 * @handle handle
378 * @protocol_guid GUID of the protocol
379 * @handler reference to the protocol
380 * @return status code
381 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100382efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100383 const efi_guid_t *protocol_guid,
384 struct efi_handler **handler)
385{
386 struct efi_object *efiobj;
387 struct list_head *lhandle;
388
389 if (!handle || !protocol_guid)
390 return EFI_INVALID_PARAMETER;
391 efiobj = efi_search_obj(handle);
392 if (!efiobj)
393 return EFI_INVALID_PARAMETER;
394 list_for_each(lhandle, &efiobj->protocols) {
395 struct efi_handler *protocol;
396
397 protocol = list_entry(lhandle, struct efi_handler, link);
398 if (!guidcmp(protocol->guid, protocol_guid)) {
399 if (handler)
400 *handler = protocol;
401 return EFI_SUCCESS;
402 }
403 }
404 return EFI_NOT_FOUND;
405}
406
407/*
408 * Delete protocol from a handle.
409 *
410 * @handle handle from which the protocol shall be deleted
411 * @protocol GUID of the protocol to be deleted
412 * @protocol_interface interface of the protocol implementation
413 * @return status code
414 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100415efi_status_t efi_remove_protocol(const efi_handle_t handle,
416 const efi_guid_t *protocol,
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100417 void *protocol_interface)
418{
419 struct efi_handler *handler;
420 efi_status_t ret;
421
422 ret = efi_search_protocol(handle, protocol, &handler);
423 if (ret != EFI_SUCCESS)
424 return ret;
425 if (guidcmp(handler->guid, protocol))
426 return EFI_INVALID_PARAMETER;
427 list_del(&handler->link);
428 free(handler);
429 return EFI_SUCCESS;
430}
431
432/*
433 * Delete all protocols from a handle.
434 *
435 * @handle handle from which the protocols shall be deleted
436 * @return status code
437 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100438efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100439{
440 struct efi_object *efiobj;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100441 struct efi_handler *protocol;
442 struct efi_handler *pos;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100443
444 efiobj = efi_search_obj(handle);
445 if (!efiobj)
446 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100447 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100448 efi_status_t ret;
449
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100450 ret = efi_remove_protocol(handle, protocol->guid,
451 protocol->protocol_interface);
452 if (ret != EFI_SUCCESS)
453 return ret;
454 }
455 return EFI_SUCCESS;
456}
457
458/*
459 * Delete handle.
460 *
461 * @handle handle to delete
462 */
463void efi_delete_handle(struct efi_object *obj)
464{
465 if (!obj)
466 return;
467 efi_remove_all_protocols(obj->handle);
468 list_del(&obj->link);
469 free(obj);
470}
471
472/*
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200473 * Our event capabilities are very limited. Only a small limited
474 * number of events is allowed to coexist.
Alexander Grafc15d9212016-03-04 01:09:59 +0100475 */
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200476static struct efi_event efi_events[16];
Alexander Grafc15d9212016-03-04 01:09:59 +0100477
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200478/*
479 * Create an event.
480 *
481 * This function is used inside U-Boot code to create an event.
482 *
483 * For the API function implementing the CreateEvent service see
484 * efi_create_event_ext.
485 *
486 * @type type of the event to create
487 * @notify_tpl task priority level of the event
488 * @notify_function notification function of the event
489 * @notify_context pointer passed to the notification function
490 * @event created event
491 * @return status code
492 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100493efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200494 void (EFIAPI *notify_function) (
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200495 struct efi_event *event,
496 void *context),
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200497 void *notify_context, struct efi_event **event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100498{
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200499 int i;
500
Jonathan Gray7758b212017-03-12 19:26:07 +1100501 if (event == NULL)
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200502 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100503
504 if ((type & EVT_NOTIFY_SIGNAL) && (type & EVT_NOTIFY_WAIT))
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200505 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100506
507 if ((type & (EVT_NOTIFY_SIGNAL|EVT_NOTIFY_WAIT)) &&
508 notify_function == NULL)
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200509 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100510
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200511 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
512 if (efi_events[i].type)
513 continue;
514 efi_events[i].type = type;
515 efi_events[i].notify_tpl = notify_tpl;
516 efi_events[i].notify_function = notify_function;
517 efi_events[i].notify_context = notify_context;
518 /* Disable timers on bootup */
519 efi_events[i].trigger_next = -1ULL;
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200520 efi_events[i].is_queued = false;
521 efi_events[i].is_signaled = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200522 *event = &efi_events[i];
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200523 return EFI_SUCCESS;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200524 }
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200525 return EFI_OUT_OF_RESOURCES;
Alexander Grafc15d9212016-03-04 01:09:59 +0100526}
527
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200528/*
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100529 * Create an event in a group.
530 *
531 * This function implements the CreateEventEx service.
532 * See the Unified Extensible Firmware Interface (UEFI) specification
533 * for details.
534 * TODO: Support event groups
535 *
536 * @type type of the event to create
537 * @notify_tpl task priority level of the event
538 * @notify_function notification function of the event
539 * @notify_context pointer passed to the notification function
540 * @event created event
541 * @event_group event group
542 * @return status code
543 */
544efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
545 void (EFIAPI *notify_function) (
546 struct efi_event *event,
547 void *context),
548 void *notify_context,
549 efi_guid_t *event_group,
550 struct efi_event **event)
551{
552 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
553 notify_context, event_group);
554 if (event_group)
555 return EFI_EXIT(EFI_UNSUPPORTED);
556 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
557 notify_context, event));
558}
559
560/*
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200561 * Create an event.
562 *
563 * This function implements the CreateEvent service.
564 * See the Unified Extensible Firmware Interface (UEFI) specification
565 * for details.
566 *
567 * @type type of the event to create
568 * @notify_tpl task priority level of the event
569 * @notify_function notification function of the event
570 * @notify_context pointer passed to the notification function
571 * @event created event
572 * @return status code
573 */
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200574static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100575 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200576 void (EFIAPI *notify_function) (
577 struct efi_event *event,
578 void *context),
579 void *notify_context, struct efi_event **event)
580{
581 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
582 notify_context);
583 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
584 notify_context, event));
585}
586
587
Alexander Grafc15d9212016-03-04 01:09:59 +0100588/*
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200589 * Check if a timer event has occurred or a queued notification function should
590 * be called.
591 *
Alexander Grafc15d9212016-03-04 01:09:59 +0100592 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200593 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafc15d9212016-03-04 01:09:59 +0100594 */
595void efi_timer_check(void)
596{
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200597 int i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100598 u64 now = timer_get_us();
599
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200600 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200601 if (!efi_events[i].type)
602 continue;
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200603 if (efi_events[i].is_queued)
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100604 efi_signal_event(&efi_events[i], true);
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200605 if (!(efi_events[i].type & EVT_TIMER) ||
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200606 now < efi_events[i].trigger_next)
607 continue;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200608 switch (efi_events[i].trigger_type) {
609 case EFI_TIMER_RELATIVE:
610 efi_events[i].trigger_type = EFI_TIMER_STOP;
611 break;
612 case EFI_TIMER_PERIODIC:
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200613 efi_events[i].trigger_next +=
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200614 efi_events[i].trigger_time;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200615 break;
616 default:
617 continue;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200618 }
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200619 efi_events[i].is_signaled = true;
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100620 efi_signal_event(&efi_events[i], true);
Alexander Grafc15d9212016-03-04 01:09:59 +0100621 }
Alexander Grafc15d9212016-03-04 01:09:59 +0100622 WATCHDOG_RESET();
623}
624
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200625/*
626 * Set the trigger time for a timer event or stop the event.
627 *
628 * This is the function for internal usage in U-Boot. For the API function
629 * implementing the SetTimer service see efi_set_timer_ext.
630 *
631 * @event event for which the timer is set
632 * @type type of the timer
633 * @trigger_time trigger period in multiples of 100ns
634 * @return status code
635 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200636efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200637 uint64_t trigger_time)
Alexander Grafc15d9212016-03-04 01:09:59 +0100638{
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200639 int i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100640
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200641 /*
642 * The parameter defines a multiple of 100ns.
643 * We use multiples of 1000ns. So divide by 10.
644 */
Heinrich Schuchardt368ca642017-10-05 16:14:14 +0200645 do_div(trigger_time, 10);
Alexander Grafc15d9212016-03-04 01:09:59 +0100646
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200647 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
648 if (event != &efi_events[i])
649 continue;
Alexander Grafc15d9212016-03-04 01:09:59 +0100650
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200651 if (!(event->type & EVT_TIMER))
652 break;
653 switch (type) {
654 case EFI_TIMER_STOP:
655 event->trigger_next = -1ULL;
656 break;
657 case EFI_TIMER_PERIODIC:
658 case EFI_TIMER_RELATIVE:
659 event->trigger_next =
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200660 timer_get_us() + trigger_time;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200661 break;
662 default:
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200663 return EFI_INVALID_PARAMETER;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200664 }
665 event->trigger_type = type;
666 event->trigger_time = trigger_time;
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200667 event->is_signaled = false;
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200668 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +0100669 }
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200670 return EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +0100671}
672
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200673/*
674 * Set the trigger time for a timer event or stop the event.
675 *
676 * This function implements the SetTimer service.
677 * See the Unified Extensible Firmware Interface (UEFI) specification
678 * for details.
679 *
680 * @event event for which the timer is set
681 * @type type of the timer
682 * @trigger_time trigger period in multiples of 100ns
683 * @return status code
684 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200685static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
686 enum efi_timer_delay type,
687 uint64_t trigger_time)
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200688{
689 EFI_ENTRY("%p, %d, %"PRIx64, event, type, trigger_time);
690 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
691}
692
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200693/*
694 * Wait for events to be signaled.
695 *
696 * This function implements the WaitForEvent service.
697 * See the Unified Extensible Firmware Interface (UEFI) specification
698 * for details.
699 *
700 * @num_events number of events to be waited for
701 * @events events to be waited for
702 * @index index of the event that was signaled
703 * @return status code
704 */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100705static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200706 struct efi_event **event,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100707 efi_uintn_t *index)
Alexander Grafc15d9212016-03-04 01:09:59 +0100708{
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200709 int i, j;
Alexander Grafc15d9212016-03-04 01:09:59 +0100710
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100711 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafc15d9212016-03-04 01:09:59 +0100712
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200713 /* Check parameters */
714 if (!num_events || !event)
715 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200716 /* Check TPL */
717 if (efi_tpl != TPL_APPLICATION)
718 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200719 for (i = 0; i < num_events; ++i) {
720 for (j = 0; j < ARRAY_SIZE(efi_events); ++j) {
721 if (event[i] == &efi_events[j])
722 goto known_event;
723 }
724 return EFI_EXIT(EFI_INVALID_PARAMETER);
725known_event:
726 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
727 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200728 if (!event[i]->is_signaled)
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100729 efi_signal_event(event[i], true);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200730 }
731
732 /* Wait for signal */
733 for (;;) {
734 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200735 if (event[i]->is_signaled)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200736 goto out;
737 }
738 /* Allow events to occur. */
739 efi_timer_check();
740 }
741
742out:
743 /*
744 * Reset the signal which is passed to the caller to allow periodic
745 * events to occur.
746 */
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200747 event[i]->is_signaled = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200748 if (index)
749 *index = i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100750
751 return EFI_EXIT(EFI_SUCCESS);
752}
753
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200754/*
755 * Signal an EFI event.
756 *
757 * This function implements the SignalEvent service.
758 * See the Unified Extensible Firmware Interface (UEFI) specification
759 * for details.
760 *
761 * This functions sets the signaled state of the event and queues the
762 * notification function for execution.
763 *
764 * @event event to signal
Heinrich Schuchardtf1066d62017-10-08 06:57:27 +0200765 * @return status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200766 */
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200767static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100768{
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200769 int i;
770
Alexander Grafc15d9212016-03-04 01:09:59 +0100771 EFI_ENTRY("%p", event);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200772 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
773 if (event != &efi_events[i])
774 continue;
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200775 if (event->is_signaled)
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200776 break;
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200777 event->is_signaled = true;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200778 if (event->type & EVT_NOTIFY_SIGNAL)
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100779 efi_signal_event(event, true);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200780 break;
781 }
Alexander Grafc15d9212016-03-04 01:09:59 +0100782 return EFI_EXIT(EFI_SUCCESS);
783}
784
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200785/*
786 * Close an EFI event.
787 *
788 * This function implements the CloseEvent service.
789 * See the Unified Extensible Firmware Interface (UEFI) specification
790 * for details.
791 *
792 * @event event to close
793 * @return status code
794 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200795static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100796{
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200797 int i;
798
Alexander Grafc15d9212016-03-04 01:09:59 +0100799 EFI_ENTRY("%p", event);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200800 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
801 if (event == &efi_events[i]) {
802 event->type = 0;
803 event->trigger_next = -1ULL;
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200804 event->is_queued = false;
805 event->is_signaled = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200806 return EFI_EXIT(EFI_SUCCESS);
807 }
808 }
809 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafc15d9212016-03-04 01:09:59 +0100810}
811
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200812/*
813 * Check if an event is signaled.
814 *
815 * This function implements the CheckEvent service.
816 * See the Unified Extensible Firmware Interface (UEFI) specification
817 * for details.
818 *
819 * If an event is not signaled yet the notification function is queued.
820 *
821 * @event event to check
822 * @return status code
823 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200824static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100825{
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200826 int i;
827
Alexander Grafc15d9212016-03-04 01:09:59 +0100828 EFI_ENTRY("%p", event);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200829 efi_timer_check();
830 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
831 if (event != &efi_events[i])
832 continue;
833 if (!event->type || event->type & EVT_NOTIFY_SIGNAL)
834 break;
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200835 if (!event->is_signaled)
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100836 efi_signal_event(event, true);
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200837 if (event->is_signaled)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200838 return EFI_EXIT(EFI_SUCCESS);
839 return EFI_EXIT(EFI_NOT_READY);
840 }
841 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafc15d9212016-03-04 01:09:59 +0100842}
843
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200844/*
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200845 * Find the internal EFI object for a handle.
846 *
847 * @handle handle to find
848 * @return EFI object
849 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100850struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200851{
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100852 struct efi_object *efiobj;
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200853
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100854 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200855 if (efiobj->handle == handle)
856 return efiobj;
857 }
858
859 return NULL;
860}
861
862/*
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100863 * Create open protocol info entry and add it to a protocol.
864 *
865 * @handler handler of a protocol
866 * @return open protocol info entry
867 */
868static struct efi_open_protocol_info_entry *efi_create_open_info(
869 struct efi_handler *handler)
870{
871 struct efi_open_protocol_info_item *item;
872
873 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
874 if (!item)
875 return NULL;
876 /* Append the item to the open protocol info list. */
877 list_add_tail(&item->link, &handler->open_infos);
878
879 return &item->info;
880}
881
882/*
883 * Remove an open protocol info entry from a protocol.
884 *
885 * @handler handler of a protocol
886 * @return status code
887 */
888static efi_status_t efi_delete_open_info(
889 struct efi_open_protocol_info_item *item)
890{
891 list_del(&item->link);
892 free(item);
893 return EFI_SUCCESS;
894}
895
896/*
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200897 * Install new protocol on a handle.
898 *
899 * @handle handle on which the protocol shall be installed
900 * @protocol GUID of the protocol to be installed
901 * @protocol_interface interface of the protocol implementation
902 * @return status code
903 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100904efi_status_t efi_add_protocol(const efi_handle_t handle,
905 const efi_guid_t *protocol,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200906 void *protocol_interface)
907{
908 struct efi_object *efiobj;
909 struct efi_handler *handler;
910 efi_status_t ret;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200911
912 efiobj = efi_search_obj(handle);
913 if (!efiobj)
914 return EFI_INVALID_PARAMETER;
915 ret = efi_search_protocol(handle, protocol, NULL);
916 if (ret != EFI_NOT_FOUND)
917 return EFI_INVALID_PARAMETER;
918 handler = calloc(1, sizeof(struct efi_handler));
919 if (!handler)
920 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +0100921 handler->guid = protocol;
922 handler->protocol_interface = protocol_interface;
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100923 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +0100924 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +0100925 if (!guidcmp(&efi_guid_device_path, protocol))
926 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +0100927 return EFI_SUCCESS;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200928}
929
930/*
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200931 * Install protocol interface.
932 *
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +0100933 * This function implements the InstallProtocolInterface service.
934 * See the Unified Extensible Firmware Interface (UEFI) specification
935 * for details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200936 *
937 * @handle handle on which the protocol shall be installed
938 * @protocol GUID of the protocol to be installed
939 * @protocol_interface_type type of the interface to be installed,
940 * always EFI_NATIVE_INTERFACE
941 * @protocol_interface interface of the protocol implementation
942 * @return status code
943 */
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +0100944static efi_status_t EFIAPI efi_install_protocol_interface(
945 void **handle, const efi_guid_t *protocol,
946 int protocol_interface_type, void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +0100947{
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +0200948 efi_status_t r;
949
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +0100950 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
951 protocol_interface);
952
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +0200953 if (!handle || !protocol ||
954 protocol_interface_type != EFI_NATIVE_INTERFACE) {
955 r = EFI_INVALID_PARAMETER;
956 goto out;
957 }
958
959 /* Create new handle if requested. */
960 if (!*handle) {
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200961 r = efi_create_handle(handle);
962 if (r != EFI_SUCCESS)
963 goto out;
Heinrich Schuchardt50f02102017-10-26 19:25:43 +0200964 debug("%sEFI: new handle %p\n", indent_string(nesting_level),
965 *handle);
966 } else {
967 debug("%sEFI: handle %p\n", indent_string(nesting_level),
968 *handle);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +0200969 }
Heinrich Schuchardt865d5f32017-10-26 19:25:54 +0200970 /* Add new protocol */
971 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +0200972out:
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +0100973 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100974}
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +0200975
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200976/*
977 * Reinstall protocol interface.
978 *
979 * This function implements the ReinstallProtocolInterface service.
980 * See the Unified Extensible Firmware Interface (UEFI) specification
981 * for details.
982 *
983 * @handle handle on which the protocol shall be
984 * reinstalled
985 * @protocol GUID of the protocol to be installed
986 * @old_interface interface to be removed
987 * @new_interface interface to be installed
988 * @return status code
989 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100990static efi_status_t EFIAPI efi_reinstall_protocol_interface(
991 efi_handle_t handle, const efi_guid_t *protocol,
992 void *old_interface, void *new_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +0100993{
Rob Clark238f88c2017-09-13 18:05:41 -0400994 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +0100995 new_interface);
996 return EFI_EXIT(EFI_ACCESS_DENIED);
997}
998
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200999/*
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001000 * Get all drivers associated to a controller.
1001 * The allocated buffer has to be freed with free().
1002 *
1003 * @efiobj handle of the controller
1004 * @protocol protocol guid (optional)
1005 * @number_of_drivers number of child controllers
1006 * @driver_handle_buffer handles of the the drivers
1007 * @return status code
1008 */
1009static efi_status_t efi_get_drivers(struct efi_object *efiobj,
1010 const efi_guid_t *protocol,
1011 efi_uintn_t *number_of_drivers,
1012 efi_handle_t **driver_handle_buffer)
1013{
1014 struct efi_handler *handler;
1015 struct efi_open_protocol_info_item *item;
1016 efi_uintn_t count = 0, i;
1017 bool duplicate;
1018
1019 /* Count all driver associations */
1020 list_for_each_entry(handler, &efiobj->protocols, link) {
1021 if (protocol && guidcmp(handler->guid, protocol))
1022 continue;
1023 list_for_each_entry(item, &handler->open_infos, link) {
1024 if (item->info.attributes &
1025 EFI_OPEN_PROTOCOL_BY_DRIVER)
1026 ++count;
1027 }
1028 }
1029 /*
1030 * Create buffer. In case of duplicate driver assignments the buffer
1031 * will be too large. But that does not harm.
1032 */
1033 *number_of_drivers = 0;
1034 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1035 if (!*driver_handle_buffer)
1036 return EFI_OUT_OF_RESOURCES;
1037 /* Collect unique driver handles */
1038 list_for_each_entry(handler, &efiobj->protocols, link) {
1039 if (protocol && guidcmp(handler->guid, protocol))
1040 continue;
1041 list_for_each_entry(item, &handler->open_infos, link) {
1042 if (item->info.attributes &
1043 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1044 /* Check this is a new driver */
1045 duplicate = false;
1046 for (i = 0; i < *number_of_drivers; ++i) {
1047 if ((*driver_handle_buffer)[i] ==
1048 item->info.agent_handle)
1049 duplicate = true;
1050 }
1051 /* Copy handle to buffer */
1052 if (!duplicate) {
1053 i = (*number_of_drivers)++;
1054 (*driver_handle_buffer)[i] =
1055 item->info.agent_handle;
1056 }
1057 }
1058 }
1059 }
1060 return EFI_SUCCESS;
1061}
1062
1063/*
1064 * Disconnect all drivers from a controller.
1065 *
1066 * This function implements the DisconnectController service.
1067 * See the Unified Extensible Firmware Interface (UEFI) specification
1068 * for details.
1069 *
1070 * @efiobj handle of the controller
1071 * @protocol protocol guid (optional)
1072 * @child_handle handle of the child to destroy
1073 * @return status code
1074 */
1075static efi_status_t efi_disconnect_all_drivers(
1076 struct efi_object *efiobj,
1077 const efi_guid_t *protocol,
1078 efi_handle_t child_handle)
1079{
1080 efi_uintn_t number_of_drivers;
1081 efi_handle_t *driver_handle_buffer;
1082 efi_status_t r, ret;
1083
1084 ret = efi_get_drivers(efiobj, protocol, &number_of_drivers,
1085 &driver_handle_buffer);
1086 if (ret != EFI_SUCCESS)
1087 return ret;
1088
1089 ret = EFI_NOT_FOUND;
1090 while (number_of_drivers) {
1091 r = EFI_CALL(efi_disconnect_controller(
1092 efiobj->handle,
1093 driver_handle_buffer[--number_of_drivers],
1094 child_handle));
1095 if (r == EFI_SUCCESS)
1096 ret = r;
1097 }
1098 free(driver_handle_buffer);
1099 return ret;
1100}
1101
1102/*
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001103 * Uninstall protocol interface.
1104 *
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01001105 * This function implements the UninstallProtocolInterface service.
1106 * See the Unified Extensible Firmware Interface (UEFI) specification
1107 * for details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001108 *
1109 * @handle handle from which the protocol shall be removed
1110 * @protocol GUID of the protocol to be removed
1111 * @protocol_interface interface to be removed
1112 * @return status code
1113 */
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01001114static efi_status_t EFIAPI efi_uninstall_protocol_interface(
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001115 efi_handle_t handle, const efi_guid_t *protocol,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01001116 void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001117{
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001118 struct efi_object *efiobj;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001119 struct efi_handler *handler;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001120 struct efi_open_protocol_info_item *item;
1121 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001122 efi_status_t r;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001123
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01001124 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1125
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001126 /* Check handle */
1127 efiobj = efi_search_obj(handle);
1128 if (!efiobj) {
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001129 r = EFI_INVALID_PARAMETER;
1130 goto out;
1131 }
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001132 /* Find the protocol on the handle */
1133 r = efi_search_protocol(handle, protocol, &handler);
1134 if (r != EFI_SUCCESS)
1135 goto out;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001136 /* Disconnect controllers */
1137 efi_disconnect_all_drivers(efiobj, protocol, NULL);
1138 if (!list_empty(&handler->open_infos)) {
1139 r = EFI_ACCESS_DENIED;
1140 goto out;
1141 }
1142 /* Close protocol */
1143 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1144 if (item->info.attributes ==
1145 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1146 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1147 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1148 list_del(&item->link);
1149 }
1150 if (!list_empty(&handler->open_infos)) {
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001151 r = EFI_ACCESS_DENIED;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001152 goto out;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001153 }
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001154 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001155out:
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01001156 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001157}
1158
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001159/*
1160 * Register an event for notification when a protocol is installed.
1161 *
1162 * This function implements the RegisterProtocolNotify service.
1163 * See the Unified Extensible Firmware Interface (UEFI) specification
1164 * for details.
1165 *
1166 * @protocol GUID of the protocol whose installation shall be
1167 * notified
1168 * @event event to be signaled upon installation of the protocol
1169 * @registration key for retrieving the registration information
1170 * @return status code
1171 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001172static efi_status_t EFIAPI efi_register_protocol_notify(
1173 const efi_guid_t *protocol,
1174 struct efi_event *event,
1175 void **registration)
Alexander Grafc15d9212016-03-04 01:09:59 +01001176{
Rob Clark238f88c2017-09-13 18:05:41 -04001177 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Alexander Grafc15d9212016-03-04 01:09:59 +01001178 return EFI_EXIT(EFI_OUT_OF_RESOURCES);
1179}
1180
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001181/*
1182 * Determine if an EFI handle implements a protocol.
1183 *
1184 * See the documentation of the LocateHandle service in the UEFI specification.
1185 *
1186 * @search_type selection criterion
1187 * @protocol GUID of the protocol
1188 * @search_key registration key
1189 * @efiobj handle
1190 * @return 0 if the handle implements the protocol
1191 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001192static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001193 const efi_guid_t *protocol, void *search_key,
Alexander Grafc15d9212016-03-04 01:09:59 +01001194 struct efi_object *efiobj)
1195{
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001196 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001197
1198 switch (search_type) {
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001199 case ALL_HANDLES:
Alexander Grafc15d9212016-03-04 01:09:59 +01001200 return 0;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001201 case BY_REGISTER_NOTIFY:
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001202 /* TODO: RegisterProtocolNotify is not implemented yet */
Alexander Grafc15d9212016-03-04 01:09:59 +01001203 return -1;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001204 case BY_PROTOCOL:
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001205 ret = efi_search_protocol(efiobj->handle, protocol, NULL);
1206 return (ret != EFI_SUCCESS);
1207 default:
1208 /* Invalid search type */
Alexander Grafc15d9212016-03-04 01:09:59 +01001209 return -1;
1210 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001211}
1212
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001213/*
1214 * Locate handles implementing a protocol.
1215 *
1216 * This function is meant for U-Boot internal calls. For the API implementation
1217 * of the LocateHandle service see efi_locate_handle_ext.
1218 *
1219 * @search_type selection criterion
1220 * @protocol GUID of the protocol
1221 * @search_key registration key
1222 * @buffer_size size of the buffer to receive the handles in bytes
1223 * @buffer buffer to receive the relevant handles
1224 * @return status code
1225 */
xypron.glpk@gmx.decab4dd52017-08-09 20:55:00 +02001226static efi_status_t efi_locate_handle(
Alexander Grafc15d9212016-03-04 01:09:59 +01001227 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001228 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001229 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01001230{
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001231 struct efi_object *efiobj;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001232 efi_uintn_t size = 0;
Alexander Grafc15d9212016-03-04 01:09:59 +01001233
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001234 /* Check parameters */
1235 switch (search_type) {
1236 case ALL_HANDLES:
1237 break;
1238 case BY_REGISTER_NOTIFY:
1239 if (!search_key)
1240 return EFI_INVALID_PARAMETER;
1241 /* RegisterProtocolNotify is not implemented yet */
1242 return EFI_UNSUPPORTED;
1243 case BY_PROTOCOL:
1244 if (!protocol)
1245 return EFI_INVALID_PARAMETER;
1246 break;
1247 default:
1248 return EFI_INVALID_PARAMETER;
1249 }
1250
1251 /*
1252 * efi_locate_handle_buffer uses this function for
1253 * the calculation of the necessary buffer size.
1254 * So do not require a buffer for buffersize == 0.
1255 */
1256 if (!buffer_size || (*buffer_size && !buffer))
1257 return EFI_INVALID_PARAMETER;
1258
Alexander Grafc15d9212016-03-04 01:09:59 +01001259 /* Count how much space we need */
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001260 list_for_each_entry(efiobj, &efi_obj_list, link) {
1261 if (!efi_search(search_type, protocol, search_key, efiobj))
Alexander Grafc15d9212016-03-04 01:09:59 +01001262 size += sizeof(void*);
Alexander Grafc15d9212016-03-04 01:09:59 +01001263 }
1264
1265 if (*buffer_size < size) {
1266 *buffer_size = size;
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001267 return EFI_BUFFER_TOO_SMALL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001268 }
1269
Rob Clarkcdee3372017-08-06 14:10:07 -04001270 *buffer_size = size;
1271 if (size == 0)
1272 return EFI_NOT_FOUND;
1273
Alexander Grafc15d9212016-03-04 01:09:59 +01001274 /* Then fill the array */
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001275 list_for_each_entry(efiobj, &efi_obj_list, link) {
1276 if (!efi_search(search_type, protocol, search_key, efiobj))
1277 *buffer++ = efiobj->handle;
Alexander Grafc15d9212016-03-04 01:09:59 +01001278 }
1279
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001280 return EFI_SUCCESS;
1281}
1282
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001283/*
1284 * Locate handles implementing a protocol.
1285 *
1286 * This function implements the LocateHandle service.
1287 * See the Unified Extensible Firmware Interface (UEFI) specification
1288 * for details.
1289 *
1290 * @search_type selection criterion
1291 * @protocol GUID of the protocol
1292 * @search_key registration key
1293 * @buffer_size size of the buffer to receive the handles in bytes
1294 * @buffer buffer to receive the relevant handles
1295 * @return 0 if the handle implements the protocol
1296 */
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001297static efi_status_t EFIAPI efi_locate_handle_ext(
1298 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001299 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001300 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001301{
Rob Clark238f88c2017-09-13 18:05:41 -04001302 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001303 buffer_size, buffer);
1304
1305 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1306 buffer_size, buffer));
Alexander Grafc15d9212016-03-04 01:09:59 +01001307}
1308
Alexander Graffe3366f2017-07-26 13:41:04 +02001309/* Collapses configuration table entries, removing index i */
1310static void efi_remove_configuration_table(int i)
1311{
1312 struct efi_configuration_table *this = &efi_conf_table[i];
1313 struct efi_configuration_table *next = &efi_conf_table[i+1];
1314 struct efi_configuration_table *end = &efi_conf_table[systab.nr_tables];
1315
1316 memmove(this, next, (ulong)end - (ulong)next);
1317 systab.nr_tables--;
1318}
1319
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001320/*
1321 * Adds, updates, or removes a configuration table.
1322 *
1323 * This function is used for internal calls. For the API implementation of the
1324 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1325 *
1326 * @guid GUID of the installed table
1327 * @table table to be installed
1328 * @return status code
1329 */
Alexander Grafc5c11632016-08-19 01:23:24 +02001330efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table)
Alexander Grafc15d9212016-03-04 01:09:59 +01001331{
1332 int i;
1333
Alexander Grafc15d9212016-03-04 01:09:59 +01001334 /* Check for guid override */
1335 for (i = 0; i < systab.nr_tables; i++) {
1336 if (!guidcmp(guid, &efi_conf_table[i].guid)) {
Alexander Graffe3366f2017-07-26 13:41:04 +02001337 if (table)
1338 efi_conf_table[i].table = table;
1339 else
1340 efi_remove_configuration_table(i);
Alexander Grafc5c11632016-08-19 01:23:24 +02001341 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +01001342 }
1343 }
1344
Alexander Graffe3366f2017-07-26 13:41:04 +02001345 if (!table)
1346 return EFI_NOT_FOUND;
1347
Alexander Grafc15d9212016-03-04 01:09:59 +01001348 /* No override, check for overflow */
1349 if (i >= ARRAY_SIZE(efi_conf_table))
Alexander Grafc5c11632016-08-19 01:23:24 +02001350 return EFI_OUT_OF_RESOURCES;
Alexander Grafc15d9212016-03-04 01:09:59 +01001351
1352 /* Add a new entry */
1353 memcpy(&efi_conf_table[i].guid, guid, sizeof(*guid));
1354 efi_conf_table[i].table = table;
Alexander Graf9982e672016-08-19 01:23:30 +02001355 systab.nr_tables = i + 1;
Alexander Grafc15d9212016-03-04 01:09:59 +01001356
Alexander Grafc5c11632016-08-19 01:23:24 +02001357 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +01001358}
1359
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001360/*
1361 * Adds, updates, or removes a configuration table.
1362 *
1363 * This function implements the InstallConfigurationTable service.
1364 * See the Unified Extensible Firmware Interface (UEFI) specification
1365 * for details.
1366 *
1367 * @guid GUID of the installed table
1368 * @table table to be installed
1369 * @return status code
1370 */
Alexander Grafc5c11632016-08-19 01:23:24 +02001371static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1372 void *table)
1373{
Rob Clark238f88c2017-09-13 18:05:41 -04001374 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Grafc5c11632016-08-19 01:23:24 +02001375 return EFI_EXIT(efi_install_configuration_table(guid, table));
1376}
1377
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001378/*
1379 * Initialize a loaded_image_info + loaded_image_info object with correct
Rob Clarkf8db9222017-09-13 18:05:33 -04001380 * protocols, boot-device, etc.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001381 *
Heinrich Schuchardtf1066d62017-10-08 06:57:27 +02001382 * @info loaded image info to be passed to the entry point of the
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001383 * image
1384 * @obj internal object associated with the loaded image
1385 * @device_path device path of the loaded image
1386 * @file_path file path of the loaded image
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001387 * @return status code
Rob Clarkf8db9222017-09-13 18:05:33 -04001388 */
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001389efi_status_t efi_setup_loaded_image(
1390 struct efi_loaded_image *info, struct efi_object *obj,
1391 struct efi_device_path *device_path,
1392 struct efi_device_path *file_path)
Rob Clarkf8db9222017-09-13 18:05:33 -04001393{
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001394 efi_status_t ret;
1395
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001396 /* Add internal object to object list */
1397 efi_add_handle(obj);
1398 /* efi_exit() assumes that the handle points to the info */
Rob Clarkf8db9222017-09-13 18:05:33 -04001399 obj->handle = info;
1400
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001401 info->file_path = file_path;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001402
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001403 if (device_path) {
1404 info->device_handle = efi_dp_find_obj(device_path, NULL);
1405 /*
1406 * When asking for the device path interface, return
1407 * bootefi_device_path
1408 */
1409 ret = efi_add_protocol(obj->handle, &efi_guid_device_path,
1410 device_path);
1411 if (ret != EFI_SUCCESS)
1412 goto failure;
1413 }
Rob Clarkf8db9222017-09-13 18:05:33 -04001414
1415 /*
1416 * When asking for the loaded_image interface, just
1417 * return handle which points to loaded_image_info
1418 */
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001419 ret = efi_add_protocol(obj->handle, &efi_guid_loaded_image, info);
1420 if (ret != EFI_SUCCESS)
1421 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001422
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001423 ret = efi_add_protocol(obj->handle, &efi_guid_console_control,
1424 (void *)&efi_console_control);
1425 if (ret != EFI_SUCCESS)
1426 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001427
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001428 ret = efi_add_protocol(obj->handle,
1429 &efi_guid_device_path_to_text_protocol,
1430 (void *)&efi_device_path_to_text);
1431 if (ret != EFI_SUCCESS)
1432 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001433
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001434 return ret;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001435failure:
1436 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001437 return ret;
Rob Clarkf8db9222017-09-13 18:05:33 -04001438}
1439
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001440/*
1441 * Load an image using a file path.
1442 *
1443 * @file_path the path of the image to load
1444 * @buffer buffer containing the loaded image
Heinrich Schuchardtf1066d62017-10-08 06:57:27 +02001445 * @return status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001446 */
Rob Clarkc84c1102017-09-13 18:05:38 -04001447efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
1448 void **buffer)
Rob Clark857a1222017-09-13 18:05:35 -04001449{
1450 struct efi_file_info *info = NULL;
1451 struct efi_file_handle *f;
1452 static efi_status_t ret;
1453 uint64_t bs;
1454
1455 f = efi_file_from_path(file_path);
1456 if (!f)
1457 return EFI_DEVICE_ERROR;
1458
1459 bs = 0;
1460 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1461 &bs, info));
1462 if (ret == EFI_BUFFER_TOO_SMALL) {
1463 info = malloc(bs);
1464 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1465 &bs, info));
1466 }
1467 if (ret != EFI_SUCCESS)
1468 goto error;
1469
1470 ret = efi_allocate_pool(EFI_LOADER_DATA, info->file_size, buffer);
1471 if (ret)
1472 goto error;
1473
1474 EFI_CALL(ret = f->read(f, &info->file_size, *buffer));
1475
1476error:
1477 free(info);
1478 EFI_CALL(f->close(f));
1479
1480 if (ret != EFI_SUCCESS) {
1481 efi_free_pool(*buffer);
1482 *buffer = NULL;
1483 }
1484
1485 return ret;
1486}
1487
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001488/*
1489 * Load an EFI image into memory.
1490 *
1491 * This function implements the LoadImage service.
1492 * See the Unified Extensible Firmware Interface (UEFI) specification
1493 * for details.
1494 *
1495 * @boot_policy true for request originating from the boot manager
Heinrich Schuchardt091cf432018-01-24 19:21:36 +01001496 * @parent_image the caller's image handle
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001497 * @file_path the path of the image to load
1498 * @source_buffer memory location from which the image is installed
1499 * @source_size size of the memory area from which the image is
1500 * installed
1501 * @image_handle handle for the newly installed image
1502 * @return status code
1503 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001504static efi_status_t EFIAPI efi_load_image(bool boot_policy,
1505 efi_handle_t parent_image,
1506 struct efi_device_path *file_path,
1507 void *source_buffer,
1508 unsigned long source_size,
1509 efi_handle_t *image_handle)
1510{
Alexander Grafc15d9212016-03-04 01:09:59 +01001511 struct efi_loaded_image *info;
1512 struct efi_object *obj;
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001513 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001514
Heinrich Schuchardtba784332018-01-19 20:24:40 +01001515 EFI_ENTRY("%d, %p, %pD, %p, %ld, %p", boot_policy, parent_image,
Alexander Grafc15d9212016-03-04 01:09:59 +01001516 file_path, source_buffer, source_size, image_handle);
Rob Clark857a1222017-09-13 18:05:35 -04001517
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001518 if (!image_handle || !parent_image) {
1519 ret = EFI_INVALID_PARAMETER;
1520 goto error;
1521 }
1522
1523 if (!source_buffer && !file_path) {
1524 ret = EFI_NOT_FOUND;
1525 goto error;
1526 }
1527
Rob Clark857a1222017-09-13 18:05:35 -04001528 info = calloc(1, sizeof(*info));
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001529 if (!info) {
1530 ret = EFI_OUT_OF_RESOURCES;
1531 goto error;
1532 }
Rob Clark857a1222017-09-13 18:05:35 -04001533 obj = calloc(1, sizeof(*obj));
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001534 if (!obj) {
1535 free(info);
1536 ret = EFI_OUT_OF_RESOURCES;
1537 goto error;
1538 }
Rob Clark857a1222017-09-13 18:05:35 -04001539
1540 if (!source_buffer) {
1541 struct efi_device_path *dp, *fp;
Rob Clark857a1222017-09-13 18:05:35 -04001542
Rob Clarkc84c1102017-09-13 18:05:38 -04001543 ret = efi_load_image_from_path(file_path, &source_buffer);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001544 if (ret != EFI_SUCCESS)
1545 goto failure;
Rob Clark857a1222017-09-13 18:05:35 -04001546 /*
1547 * split file_path which contains both the device and
1548 * file parts:
1549 */
1550 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001551 ret = efi_setup_loaded_image(info, obj, dp, fp);
1552 if (ret != EFI_SUCCESS)
1553 goto failure;
Rob Clark857a1222017-09-13 18:05:35 -04001554 } else {
1555 /* In this case, file_path is the "device" path, ie.
1556 * something like a HARDWARE_DEVICE:MEMORY_MAPPED
1557 */
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001558 ret = efi_setup_loaded_image(info, obj, file_path, NULL);
1559 if (ret != EFI_SUCCESS)
1560 goto failure;
Rob Clark857a1222017-09-13 18:05:35 -04001561 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001562 info->reserved = efi_load_pe(source_buffer, info);
1563 if (!info->reserved) {
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001564 ret = EFI_UNSUPPORTED;
1565 goto failure;
Alexander Grafc15d9212016-03-04 01:09:59 +01001566 }
Heinrich Schuchardt1c176932017-10-18 18:13:20 +02001567 info->system_table = &systab;
1568 info->parent_handle = parent_image;
Heinrich Schuchardt754d4972017-11-26 14:05:22 +01001569 *image_handle = obj->handle;
Alexander Grafc15d9212016-03-04 01:09:59 +01001570 return EFI_EXIT(EFI_SUCCESS);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001571failure:
1572 free(info);
1573 efi_delete_handle(obj);
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001574error:
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001575 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001576}
1577
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001578/*
1579 * Call the entry point of an image.
1580 *
1581 * This function implements the StartImage service.
1582 * See the Unified Extensible Firmware Interface (UEFI) specification
1583 * for details.
1584 *
1585 * @image_handle handle of the image
1586 * @exit_data_size size of the buffer
1587 * @exit_data buffer to receive the exit data of the called image
Heinrich Schuchardtf1066d62017-10-08 06:57:27 +02001588 * @return status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001589 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001590static efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
1591 unsigned long *exit_data_size,
1592 s16 **exit_data)
1593{
Alexander Graf54d8cdf2018-01-24 00:18:08 +01001594 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
1595 struct efi_system_table *st);
Alexander Grafc15d9212016-03-04 01:09:59 +01001596 struct efi_loaded_image *info = image_handle;
Heinrich Schuchardt6dcd4842018-01-18 20:28:43 +01001597 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001598
1599 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
1600 entry = info->reserved;
1601
1602 efi_is_direct_boot = false;
1603
1604 /* call the image! */
Alexander Graf988c0662016-05-20 23:28:23 +02001605 if (setjmp(&info->exit_jmp)) {
Heinrich Schuchardt6dcd4842018-01-18 20:28:43 +01001606 /*
1607 * We called the entry point of the child image with EFI_CALL
1608 * in the lines below. The child image called the Exit() boot
1609 * service efi_exit() which executed the long jump that brought
1610 * us to the current line. This implies that the second half
1611 * of the EFI_CALL macro has not been executed.
1612 */
1613#ifdef CONFIG_ARM
1614 /*
1615 * efi_exit() called efi_restore_gd(). We have to undo this
1616 * otherwise __efi_entry_check() will put the wrong value into
1617 * app_gd.
1618 */
1619 gd = app_gd;
1620#endif
1621 /*
1622 * To get ready to call EFI_EXIT below we have to execute the
1623 * missed out steps of EFI_CALL.
1624 */
1625 assert(__efi_entry_check());
1626 debug("%sEFI: %lu returned by started image\n",
1627 __efi_nesting_dec(),
1628 (unsigned long)((uintptr_t)info->exit_status &
1629 ~EFI_ERROR_MASK));
Alexander Graf988c0662016-05-20 23:28:23 +02001630 return EFI_EXIT(info->exit_status);
1631 }
1632
Heinrich Schuchardt6dcd4842018-01-18 20:28:43 +01001633 ret = EFI_CALL(entry(image_handle, &systab));
Alexander Grafc15d9212016-03-04 01:09:59 +01001634
Alexander Grafeff317c2018-01-26 00:47:53 +01001635 /*
1636 * Usually UEFI applications call Exit() instead of returning.
1637 * But because the world doesn not consist of ponies and unicorns,
1638 * we're happy to emulate that behavior on behalf of a payload
1639 * that forgot.
1640 */
1641 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
Alexander Grafc15d9212016-03-04 01:09:59 +01001642}
1643
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001644/*
1645 * Leave an EFI application or driver.
1646 *
1647 * This function implements the Exit service.
1648 * See the Unified Extensible Firmware Interface (UEFI) specification
1649 * for details.
1650 *
1651 * @image_handle handle of the application or driver that is exiting
1652 * @exit_status status code
1653 * @exit_data_size size of the buffer in bytes
1654 * @exit_data buffer with data describing an error
Heinrich Schuchardtf1066d62017-10-08 06:57:27 +02001655 * @return status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001656 */
Alexander Graf988c0662016-05-20 23:28:23 +02001657static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
1658 efi_status_t exit_status, unsigned long exit_data_size,
1659 int16_t *exit_data)
Alexander Grafc15d9212016-03-04 01:09:59 +01001660{
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001661 /*
1662 * We require that the handle points to the original loaded
1663 * image protocol interface.
1664 *
1665 * For getting the longjmp address this is safer than locating
1666 * the protocol because the protocol may have been reinstalled
1667 * pointing to another memory location.
1668 *
1669 * TODO: We should call the unload procedure of the loaded
1670 * image protocol.
1671 */
Alexander Graf988c0662016-05-20 23:28:23 +02001672 struct efi_loaded_image *loaded_image_info = (void*)image_handle;
1673
Alexander Grafc15d9212016-03-04 01:09:59 +01001674 EFI_ENTRY("%p, %ld, %ld, %p", image_handle, exit_status,
1675 exit_data_size, exit_data);
Alexander Graf988c0662016-05-20 23:28:23 +02001676
Alexander Graf87e787a2017-09-03 14:14:17 +02001677 /* Make sure entry/exit counts for EFI world cross-overs match */
Heinrich Schuchardt6dcd4842018-01-18 20:28:43 +01001678 EFI_EXIT(exit_status);
Heinrich Schuchardt4a4c6462017-08-25 19:53:14 +02001679
Alexander Graf87e787a2017-09-03 14:14:17 +02001680 /*
1681 * But longjmp out with the U-Boot gd, not the application's, as
1682 * the other end is a setjmp call inside EFI context.
1683 */
1684 efi_restore_gd();
1685
Alexander Graf988c0662016-05-20 23:28:23 +02001686 loaded_image_info->exit_status = exit_status;
Alexander Graf9d006b72016-09-27 09:30:32 +02001687 longjmp(&loaded_image_info->exit_jmp, 1);
Alexander Graf988c0662016-05-20 23:28:23 +02001688
1689 panic("EFI application exited");
Alexander Grafc15d9212016-03-04 01:09:59 +01001690}
1691
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001692/*
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001693 * Unload an EFI image.
1694 *
1695 * This function implements the UnloadImage service.
1696 * See the Unified Extensible Firmware Interface (UEFI) specification
1697 * for details.
1698 *
1699 * @image_handle handle of the image to be unloaded
1700 * @return status code
1701 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001702static efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001703{
1704 struct efi_object *efiobj;
1705
1706 EFI_ENTRY("%p", image_handle);
1707 efiobj = efi_search_obj(image_handle);
1708 if (efiobj)
1709 list_del(&efiobj->link);
1710
1711 return EFI_EXIT(EFI_SUCCESS);
1712}
1713
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001714/*
1715 * Fix up caches for EFI payloads if necessary.
1716 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001717static void efi_exit_caches(void)
1718{
1719#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1720 /*
1721 * Grub on 32bit ARM needs to have caches disabled before jumping into
1722 * a zImage, but does not know of all cache layers. Give it a hand.
1723 */
1724 if (efi_is_direct_boot)
1725 cleanup_before_linux();
1726#endif
1727}
1728
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001729/*
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001730 * Stop all boot services.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001731 *
1732 * This function implements the ExitBootServices service.
1733 * See the Unified Extensible Firmware Interface (UEFI) specification
1734 * for details.
1735 *
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001736 * All timer events are disabled.
1737 * For exit boot services events the notification function is called.
1738 * The boot services are disabled in the system table.
1739 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001740 * @image_handle handle of the loaded image
1741 * @map_key key of the memory map
1742 * @return status code
1743 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001744static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Alexander Grafc15d9212016-03-04 01:09:59 +01001745 unsigned long map_key)
1746{
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001747 int i;
1748
Alexander Grafc15d9212016-03-04 01:09:59 +01001749 EFI_ENTRY("%p, %ld", image_handle, map_key);
1750
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001751 /* Make sure that notification functions are not called anymore */
1752 efi_tpl = TPL_HIGH_LEVEL;
1753
1754 /* Check if ExitBootServices has already been called */
1755 if (!systab.boottime)
1756 return EFI_EXIT(EFI_SUCCESS);
1757
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001758 /* Notify that ExitBootServices is invoked. */
1759 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
1760 if (efi_events[i].type != EVT_SIGNAL_EXIT_BOOT_SERVICES)
1761 continue;
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001762 efi_events[i].is_signaled = true;
1763 efi_signal_event(&efi_events[i], false);
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001764 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001765
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001766 /* TODO Should persist EFI variables here */
Rob Clark15f3d742017-09-13 18:05:37 -04001767
Alexander Graf2ebeb442016-11-17 01:02:57 +01001768 board_quiesce_devices();
1769
Alexander Grafc15d9212016-03-04 01:09:59 +01001770 /* Fix up caches for EFI payloads if necessary */
1771 efi_exit_caches();
1772
1773 /* This stops all lingering devices */
1774 bootm_disable_interrupts();
1775
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001776 /* Disable boottime services */
1777 systab.con_in_handle = NULL;
1778 systab.con_in = NULL;
1779 systab.con_out_handle = NULL;
1780 systab.con_out = NULL;
1781 systab.stderr_handle = NULL;
1782 systab.std_err = NULL;
1783 systab.boottime = NULL;
1784
1785 /* Recalculate CRC32 */
1786 systab.hdr.crc32 = 0;
1787 systab.hdr.crc32 = crc32(0, (const unsigned char *)&systab,
1788 sizeof(struct efi_system_table));
1789
Alexander Grafc15d9212016-03-04 01:09:59 +01001790 /* Give the payload some time to boot */
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001791 efi_set_watchdog(0);
Alexander Grafc15d9212016-03-04 01:09:59 +01001792 WATCHDOG_RESET();
1793
1794 return EFI_EXIT(EFI_SUCCESS);
1795}
1796
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001797/*
1798 * Get next value of the counter.
1799 *
1800 * This function implements the NextMonotonicCount service.
1801 * See the Unified Extensible Firmware Interface (UEFI) specification
1802 * for details.
1803 *
1804 * @count returned value of the counter
1805 * @return status code
1806 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001807static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1808{
1809 static uint64_t mono = 0;
1810 EFI_ENTRY("%p", count);
1811 *count = mono++;
1812 return EFI_EXIT(EFI_SUCCESS);
1813}
1814
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001815/*
1816 * Sleep.
1817 *
1818 * This function implements the Stall sercive.
1819 * See the Unified Extensible Firmware Interface (UEFI) specification
1820 * for details.
1821 *
1822 * @microseconds period to sleep in microseconds
1823 * @return status code
1824 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001825static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1826{
1827 EFI_ENTRY("%ld", microseconds);
1828 udelay(microseconds);
1829 return EFI_EXIT(EFI_SUCCESS);
1830}
1831
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001832/*
1833 * Reset the watchdog timer.
1834 *
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001835 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001836 * See the Unified Extensible Firmware Interface (UEFI) specification
1837 * for details.
1838 *
1839 * @timeout seconds before reset by watchdog
1840 * @watchdog_code code to be logged when resetting
1841 * @data_size size of buffer in bytes
1842 * @watchdog_data buffer with data describing the reset reason
Heinrich Schuchardtf1066d62017-10-08 06:57:27 +02001843 * @return status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001844 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001845static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
1846 uint64_t watchdog_code,
1847 unsigned long data_size,
1848 uint16_t *watchdog_data)
1849{
1850 EFI_ENTRY("%ld, 0x%"PRIx64", %ld, %p", timeout, watchdog_code,
1851 data_size, watchdog_data);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001852 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafc15d9212016-03-04 01:09:59 +01001853}
1854
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001855/*
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001856 * Close a protocol.
1857 *
1858 * This function implements the CloseProtocol service.
1859 * See the Unified Extensible Firmware Interface (UEFI) specification
1860 * for details.
1861 *
1862 * @handle handle on which the protocol shall be closed
1863 * @protocol GUID of the protocol to close
1864 * @agent_handle handle of the driver
1865 * @controller_handle handle of the controller
1866 * @return status code
1867 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001868static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001869 const efi_guid_t *protocol,
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001870 efi_handle_t agent_handle,
1871 efi_handle_t controller_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001872{
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01001873 struct efi_handler *handler;
1874 struct efi_open_protocol_info_item *item;
1875 struct efi_open_protocol_info_item *pos;
1876 efi_status_t r;
1877
Rob Clark238f88c2017-09-13 18:05:41 -04001878 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafc15d9212016-03-04 01:09:59 +01001879 controller_handle);
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01001880
1881 if (!agent_handle) {
1882 r = EFI_INVALID_PARAMETER;
1883 goto out;
1884 }
1885 r = efi_search_protocol(handle, protocol, &handler);
1886 if (r != EFI_SUCCESS)
1887 goto out;
1888
1889 r = EFI_NOT_FOUND;
1890 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1891 if (item->info.agent_handle == agent_handle &&
1892 item->info.controller_handle == controller_handle) {
1893 efi_delete_open_info(item);
1894 r = EFI_SUCCESS;
1895 break;
1896 }
1897 }
1898out:
1899 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001900}
1901
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001902/*
1903 * Provide information about then open status of a protocol on a handle
1904 *
1905 * This function implements the OpenProtocolInformation service.
1906 * See the Unified Extensible Firmware Interface (UEFI) specification
1907 * for details.
1908 *
1909 * @handle handle for which the information shall be retrieved
1910 * @protocol GUID of the protocol
1911 * @entry_buffer buffer to receive the open protocol information
1912 * @entry_count number of entries available in the buffer
1913 * @return status code
1914 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001915static efi_status_t EFIAPI efi_open_protocol_information(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001916 const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01001917 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001918 efi_uintn_t *entry_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01001919{
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01001920 unsigned long buffer_size;
1921 unsigned long count;
1922 struct efi_handler *handler;
1923 struct efi_open_protocol_info_item *item;
1924 efi_status_t r;
1925
Rob Clark238f88c2017-09-13 18:05:41 -04001926 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafc15d9212016-03-04 01:09:59 +01001927 entry_count);
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01001928
1929 /* Check parameters */
1930 if (!entry_buffer) {
1931 r = EFI_INVALID_PARAMETER;
1932 goto out;
1933 }
1934 r = efi_search_protocol(handle, protocol, &handler);
1935 if (r != EFI_SUCCESS)
1936 goto out;
1937
1938 /* Count entries */
1939 count = 0;
1940 list_for_each_entry(item, &handler->open_infos, link) {
1941 if (item->info.open_count)
1942 ++count;
1943 }
1944 *entry_count = count;
1945 *entry_buffer = NULL;
1946 if (!count) {
1947 r = EFI_SUCCESS;
1948 goto out;
1949 }
1950
1951 /* Copy entries */
1952 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
1953 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
1954 (void **)entry_buffer);
1955 if (r != EFI_SUCCESS)
1956 goto out;
1957 list_for_each_entry_reverse(item, &handler->open_infos, link) {
1958 if (item->info.open_count)
1959 (*entry_buffer)[--count] = item->info;
1960 }
1961out:
1962 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001963}
1964
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001965/*
1966 * Get protocols installed on a handle.
1967 *
1968 * This function implements the ProtocolsPerHandleService.
1969 * See the Unified Extensible Firmware Interface (UEFI) specification
1970 * for details.
1971 *
1972 * @handle handle for which the information is retrieved
1973 * @protocol_buffer buffer with protocol GUIDs
1974 * @protocol_buffer_count number of entries in the buffer
Heinrich Schuchardtf1066d62017-10-08 06:57:27 +02001975 * @return status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001976 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001977static efi_status_t EFIAPI efi_protocols_per_handle(
1978 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001979 efi_uintn_t *protocol_buffer_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01001980{
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02001981 unsigned long buffer_size;
1982 struct efi_object *efiobj;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001983 struct list_head *protocol_handle;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02001984 efi_status_t r;
1985
Alexander Grafc15d9212016-03-04 01:09:59 +01001986 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
1987 protocol_buffer_count);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02001988
1989 if (!handle || !protocol_buffer || !protocol_buffer_count)
1990 return EFI_EXIT(EFI_INVALID_PARAMETER);
1991
1992 *protocol_buffer = NULL;
Rob Clarkd51b8ca2017-07-20 07:59:39 -04001993 *protocol_buffer_count = 0;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02001994
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001995 efiobj = efi_search_obj(handle);
1996 if (!efiobj)
1997 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02001998
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001999 /* Count protocols */
2000 list_for_each(protocol_handle, &efiobj->protocols) {
2001 ++*protocol_buffer_count;
2002 }
2003
2004 /* Copy guids */
2005 if (*protocol_buffer_count) {
2006 size_t j = 0;
2007
2008 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
2009 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
2010 (void **)protocol_buffer);
2011 if (r != EFI_SUCCESS)
2012 return EFI_EXIT(r);
2013 list_for_each(protocol_handle, &efiobj->protocols) {
2014 struct efi_handler *protocol;
2015
2016 protocol = list_entry(protocol_handle,
2017 struct efi_handler, link);
2018 (*protocol_buffer)[j] = (void *)protocol->guid;
2019 ++j;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002020 }
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002021 }
2022
2023 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002024}
2025
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002026/*
2027 * Locate handles implementing a protocol.
2028 *
2029 * This function implements the LocateHandleBuffer service.
2030 * See the Unified Extensible Firmware Interface (UEFI) specification
2031 * for details.
2032 *
2033 * @search_type selection criterion
2034 * @protocol GUID of the protocol
2035 * @search_key registration key
2036 * @no_handles number of returned handles
2037 * @buffer buffer with the returned handles
2038 * @return status code
2039 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002040static efi_status_t EFIAPI efi_locate_handle_buffer(
2041 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002042 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002043 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01002044{
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002045 efi_status_t r;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002046 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002047
Rob Clark238f88c2017-09-13 18:05:41 -04002048 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafc15d9212016-03-04 01:09:59 +01002049 no_handles, buffer);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002050
2051 if (!no_handles || !buffer) {
2052 r = EFI_INVALID_PARAMETER;
2053 goto out;
2054 }
2055 *no_handles = 0;
2056 *buffer = NULL;
2057 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2058 *buffer);
2059 if (r != EFI_BUFFER_TOO_SMALL)
2060 goto out;
2061 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
2062 (void **)buffer);
2063 if (r != EFI_SUCCESS)
2064 goto out;
2065 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2066 *buffer);
2067 if (r == EFI_SUCCESS)
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002068 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002069out:
2070 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002071}
2072
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002073/*
2074 * Find an interface implementing a protocol.
2075 *
2076 * This function implements the LocateProtocol service.
2077 * See the Unified Extensible Firmware Interface (UEFI) specification
2078 * for details.
2079 *
2080 * @protocol GUID of the protocol
2081 * @registration registration key passed to the notification function
2082 * @protocol_interface interface implementing the protocol
Heinrich Schuchardtf1066d62017-10-08 06:57:27 +02002083 * @return status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002084 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002085static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002086 void *registration,
2087 void **protocol_interface)
2088{
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002089 struct list_head *lhandle;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002090 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01002091
Rob Clark238f88c2017-09-13 18:05:41 -04002092 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002093
2094 if (!protocol || !protocol_interface)
2095 return EFI_EXIT(EFI_INVALID_PARAMETER);
2096
2097 list_for_each(lhandle, &efi_obj_list) {
2098 struct efi_object *efiobj;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002099 struct efi_handler *handler;
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002100
2101 efiobj = list_entry(lhandle, struct efi_object, link);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002102
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002103 ret = efi_search_protocol(efiobj->handle, protocol, &handler);
2104 if (ret == EFI_SUCCESS) {
2105 *protocol_interface = handler->protocol_interface;
2106 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002107 }
2108 }
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002109 *protocol_interface = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01002110
2111 return EFI_EXIT(EFI_NOT_FOUND);
2112}
2113
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002114/*
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002115 * Get the device path and handle of an device implementing a protocol.
2116 *
2117 * This function implements the LocateDevicePath service.
2118 * See the Unified Extensible Firmware Interface (UEFI) specification
2119 * for details.
2120 *
2121 * @protocol GUID of the protocol
2122 * @device_path device path
2123 * @device handle of the device
2124 * @return status code
2125 */
2126static efi_status_t EFIAPI efi_locate_device_path(
2127 const efi_guid_t *protocol,
2128 struct efi_device_path **device_path,
2129 efi_handle_t *device)
2130{
2131 struct efi_device_path *dp;
2132 size_t i;
2133 struct efi_handler *handler;
2134 efi_handle_t *handles;
2135 size_t len, len_dp;
2136 size_t len_best = 0;
2137 efi_uintn_t no_handles;
2138 u8 *remainder;
2139 efi_status_t ret;
2140
2141 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2142
2143 if (!protocol || !device_path || !*device_path || !device) {
2144 ret = EFI_INVALID_PARAMETER;
2145 goto out;
2146 }
2147
2148 /* Find end of device path */
2149 len = efi_dp_size(*device_path);
2150
2151 /* Get all handles implementing the protocol */
2152 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2153 &no_handles, &handles));
2154 if (ret != EFI_SUCCESS)
2155 goto out;
2156
2157 for (i = 0; i < no_handles; ++i) {
2158 /* Find the device path protocol */
2159 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2160 &handler);
2161 if (ret != EFI_SUCCESS)
2162 continue;
2163 dp = (struct efi_device_path *)handler->protocol_interface;
2164 len_dp = efi_dp_size(dp);
2165 /*
2166 * This handle can only be a better fit
2167 * if its device path length is longer than the best fit and
2168 * if its device path length is shorter of equal the searched
2169 * device path.
2170 */
2171 if (len_dp <= len_best || len_dp > len)
2172 continue;
2173 /* Check if dp is a subpath of device_path */
2174 if (memcmp(*device_path, dp, len_dp))
2175 continue;
2176 *device = handles[i];
2177 len_best = len_dp;
2178 }
2179 if (len_best) {
2180 remainder = (u8 *)*device_path + len_best;
2181 *device_path = (struct efi_device_path *)remainder;
2182 ret = EFI_SUCCESS;
2183 } else {
2184 ret = EFI_NOT_FOUND;
2185 }
2186out:
2187 return EFI_EXIT(ret);
2188}
2189
2190/*
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002191 * Install multiple protocol interfaces.
2192 *
2193 * This function implements the MultipleProtocolInterfaces service.
2194 * See the Unified Extensible Firmware Interface (UEFI) specification
2195 * for details.
2196 *
2197 * @handle handle on which the protocol interfaces shall be installed
2198 * @... NULL terminated argument list with pairs of protocol GUIDS and
2199 * interfaces
2200 * @return status code
2201 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002202static efi_status_t EFIAPI efi_install_multiple_protocol_interfaces(
2203 void **handle, ...)
2204{
2205 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002206
2207 va_list argptr;
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002208 const efi_guid_t *protocol;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002209 void *protocol_interface;
2210 efi_status_t r = EFI_SUCCESS;
2211 int i = 0;
2212
2213 if (!handle)
2214 return EFI_EXIT(EFI_INVALID_PARAMETER);
2215
2216 va_start(argptr, handle);
2217 for (;;) {
2218 protocol = va_arg(argptr, efi_guid_t*);
2219 if (!protocol)
2220 break;
2221 protocol_interface = va_arg(argptr, void*);
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01002222 r = EFI_CALL(efi_install_protocol_interface(
2223 handle, protocol,
2224 EFI_NATIVE_INTERFACE,
2225 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002226 if (r != EFI_SUCCESS)
2227 break;
2228 i++;
2229 }
2230 va_end(argptr);
2231 if (r == EFI_SUCCESS)
2232 return EFI_EXIT(r);
2233
Heinrich Schuchardtec47f3e2017-10-26 19:25:42 +02002234 /* If an error occurred undo all changes. */
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002235 va_start(argptr, handle);
2236 for (; i; --i) {
2237 protocol = va_arg(argptr, efi_guid_t*);
2238 protocol_interface = va_arg(argptr, void*);
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01002239 EFI_CALL(efi_uninstall_protocol_interface(handle, protocol,
2240 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002241 }
2242 va_end(argptr);
2243
2244 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002245}
2246
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002247/*
2248 * Uninstall multiple protocol interfaces.
2249 *
2250 * This function implements the UninstallMultipleProtocolInterfaces service.
2251 * See the Unified Extensible Firmware Interface (UEFI) specification
2252 * for details.
2253 *
2254 * @handle handle from which the protocol interfaces shall be removed
2255 * @... NULL terminated argument list with pairs of protocol GUIDS and
2256 * interfaces
2257 * @return status code
2258 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002259static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
2260 void *handle, ...)
2261{
2262 EFI_ENTRY("%p", handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002263
2264 va_list argptr;
2265 const efi_guid_t *protocol;
2266 void *protocol_interface;
2267 efi_status_t r = EFI_SUCCESS;
2268 size_t i = 0;
2269
2270 if (!handle)
2271 return EFI_EXIT(EFI_INVALID_PARAMETER);
2272
2273 va_start(argptr, handle);
2274 for (;;) {
2275 protocol = va_arg(argptr, efi_guid_t*);
2276 if (!protocol)
2277 break;
2278 protocol_interface = va_arg(argptr, void*);
2279 r = EFI_CALL(efi_uninstall_protocol_interface(
2280 handle, protocol,
2281 protocol_interface));
2282 if (r != EFI_SUCCESS)
2283 break;
2284 i++;
2285 }
2286 va_end(argptr);
2287 if (r == EFI_SUCCESS)
2288 return EFI_EXIT(r);
2289
2290 /* If an error occurred undo all changes. */
2291 va_start(argptr, handle);
2292 for (; i; --i) {
2293 protocol = va_arg(argptr, efi_guid_t*);
2294 protocol_interface = va_arg(argptr, void*);
2295 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2296 EFI_NATIVE_INTERFACE,
2297 protocol_interface));
2298 }
2299 va_end(argptr);
2300
2301 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002302}
2303
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002304/*
2305 * Calculate cyclic redundancy code.
2306 *
2307 * This function implements the CalculateCrc32 service.
2308 * See the Unified Extensible Firmware Interface (UEFI) specification
2309 * for details.
2310 *
2311 * @data buffer with data
2312 * @data_size size of buffer in bytes
2313 * @crc32_p cyclic redundancy code
2314 * @return status code
2315 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002316static efi_status_t EFIAPI efi_calculate_crc32(void *data,
2317 unsigned long data_size,
2318 uint32_t *crc32_p)
2319{
2320 EFI_ENTRY("%p, %ld", data, data_size);
2321 *crc32_p = crc32(0, data, data_size);
2322 return EFI_EXIT(EFI_SUCCESS);
2323}
2324
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002325/*
2326 * Copy memory.
2327 *
2328 * This function implements the CopyMem service.
2329 * See the Unified Extensible Firmware Interface (UEFI) specification
2330 * for details.
2331 *
2332 * @destination destination of the copy operation
2333 * @source source of the copy operation
2334 * @length number of bytes to copy
2335 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002336static void EFIAPI efi_copy_mem(void *destination, const void *source,
2337 size_t length)
Alexander Grafc15d9212016-03-04 01:09:59 +01002338{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002339 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Alexander Grafc15d9212016-03-04 01:09:59 +01002340 memcpy(destination, source, length);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002341 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002342}
2343
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002344/*
2345 * Fill memory with a byte value.
2346 *
2347 * This function implements the SetMem service.
2348 * See the Unified Extensible Firmware Interface (UEFI) specification
2349 * for details.
2350 *
2351 * @buffer buffer to fill
2352 * @size size of buffer in bytes
2353 * @value byte to copy to the buffer
2354 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002355static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafc15d9212016-03-04 01:09:59 +01002356{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002357 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafc15d9212016-03-04 01:09:59 +01002358 memset(buffer, value, size);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002359 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002360}
2361
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002362/*
2363 * Open protocol interface on a handle.
2364 *
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002365 * @handler handler of a protocol
2366 * @protocol_interface interface implementing the protocol
2367 * @agent_handle handle of the driver
2368 * @controller_handle handle of the controller
2369 * @attributes attributes indicating how to open the protocol
2370 * @return status code
2371 */
2372static efi_status_t efi_protocol_open(
2373 struct efi_handler *handler,
2374 void **protocol_interface, void *agent_handle,
2375 void *controller_handle, uint32_t attributes)
2376{
2377 struct efi_open_protocol_info_item *item;
2378 struct efi_open_protocol_info_entry *match = NULL;
2379 bool opened_by_driver = false;
2380 bool opened_exclusive = false;
2381
2382 /* If there is no agent, only return the interface */
2383 if (!agent_handle)
2384 goto out;
2385
2386 /* For TEST_PROTOCOL ignore interface attribute */
2387 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2388 *protocol_interface = NULL;
2389
2390 /*
2391 * Check if the protocol is already opened by a driver with the same
2392 * attributes or opened exclusively
2393 */
2394 list_for_each_entry(item, &handler->open_infos, link) {
2395 if (item->info.agent_handle == agent_handle) {
2396 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2397 (item->info.attributes == attributes))
2398 return EFI_ALREADY_STARTED;
2399 }
2400 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2401 opened_exclusive = true;
2402 }
2403
2404 /* Only one controller can open the protocol exclusively */
2405 if (opened_exclusive && attributes &
2406 (EFI_OPEN_PROTOCOL_EXCLUSIVE | EFI_OPEN_PROTOCOL_BY_DRIVER))
2407 return EFI_ACCESS_DENIED;
2408
2409 /* Prepare exclusive opening */
2410 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2411 /* Try to disconnect controllers */
2412 list_for_each_entry(item, &handler->open_infos, link) {
2413 if (item->info.attributes ==
2414 EFI_OPEN_PROTOCOL_BY_DRIVER)
2415 EFI_CALL(efi_disconnect_controller(
2416 item->info.controller_handle,
2417 item->info.agent_handle,
2418 NULL));
2419 }
2420 opened_by_driver = false;
2421 /* Check if all controllers are disconnected */
2422 list_for_each_entry(item, &handler->open_infos, link) {
2423 if (item->info.attributes & EFI_OPEN_PROTOCOL_BY_DRIVER)
2424 opened_by_driver = true;
2425 }
2426 /* Only one controller can be conncected */
2427 if (opened_by_driver)
2428 return EFI_ACCESS_DENIED;
2429 }
2430
2431 /* Find existing entry */
2432 list_for_each_entry(item, &handler->open_infos, link) {
2433 if (item->info.agent_handle == agent_handle &&
2434 item->info.controller_handle == controller_handle)
2435 match = &item->info;
2436 }
2437 /* None found, create one */
2438 if (!match) {
2439 match = efi_create_open_info(handler);
2440 if (!match)
2441 return EFI_OUT_OF_RESOURCES;
2442 }
2443
2444 match->agent_handle = agent_handle;
2445 match->controller_handle = controller_handle;
2446 match->attributes = attributes;
2447 match->open_count++;
2448
2449out:
2450 /* For TEST_PROTOCOL ignore interface attribute. */
2451 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2452 *protocol_interface = handler->protocol_interface;
2453
2454 return EFI_SUCCESS;
2455}
2456
2457/*
2458 * Open protocol interface on a handle.
2459 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002460 * This function implements the OpenProtocol interface.
2461 * See the Unified Extensible Firmware Interface (UEFI) specification
2462 * for details.
2463 *
2464 * @handle handle on which the protocol shall be opened
2465 * @protocol GUID of the protocol
2466 * @protocol_interface interface implementing the protocol
2467 * @agent_handle handle of the driver
2468 * @controller_handle handle of the controller
2469 * @attributes attributes indicating how to open the protocol
2470 * @return status code
2471 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002472static efi_status_t EFIAPI efi_open_protocol(
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002473 void *handle, const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002474 void **protocol_interface, void *agent_handle,
2475 void *controller_handle, uint32_t attributes)
2476{
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002477 struct efi_handler *handler;
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002478 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +01002479
Rob Clark238f88c2017-09-13 18:05:41 -04002480 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002481 protocol_interface, agent_handle, controller_handle,
2482 attributes);
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002483
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002484 if (!handle || !protocol ||
2485 (!protocol_interface && attributes !=
2486 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002487 goto out;
2488 }
2489
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002490 switch (attributes) {
2491 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2492 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2493 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2494 break;
2495 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2496 if (controller_handle == handle)
2497 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002498 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002499 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2500 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002501 /* Check that the controller handle is valid */
2502 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002503 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002504 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002505 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002506 /* Check that the agent handle is valid */
2507 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002508 goto out;
2509 break;
2510 default:
2511 goto out;
2512 }
2513
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002514 r = efi_search_protocol(handle, protocol, &handler);
2515 if (r != EFI_SUCCESS)
2516 goto out;
Alexander Grafc15d9212016-03-04 01:09:59 +01002517
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002518 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2519 controller_handle, attributes);
Alexander Grafc15d9212016-03-04 01:09:59 +01002520out:
2521 return EFI_EXIT(r);
2522}
2523
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002524/*
2525 * Get interface of a protocol on a handle.
2526 *
2527 * This function implements the HandleProtocol service.
2528 * See the Unified Extensible Firmware Interface (UEFI) specification
2529 * for details.
2530 *
2531 * @handle handle on which the protocol shall be opened
2532 * @protocol GUID of the protocol
2533 * @protocol_interface interface implementing the protocol
2534 * @return status code
2535 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002536static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002537 const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002538 void **protocol_interface)
2539{
xypron.glpk@gmx.de1bf5d872017-06-29 21:16:19 +02002540 return efi_open_protocol(handle, protocol, protocol_interface, NULL,
2541 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafc15d9212016-03-04 01:09:59 +01002542}
2543
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01002544static efi_status_t efi_bind_controller(
2545 efi_handle_t controller_handle,
2546 efi_handle_t driver_image_handle,
2547 struct efi_device_path *remain_device_path)
2548{
2549 struct efi_driver_binding_protocol *binding_protocol;
2550 efi_status_t r;
2551
2552 r = EFI_CALL(efi_open_protocol(driver_image_handle,
2553 &efi_guid_driver_binding_protocol,
2554 (void **)&binding_protocol,
2555 driver_image_handle, NULL,
2556 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2557 if (r != EFI_SUCCESS)
2558 return r;
2559 r = EFI_CALL(binding_protocol->supported(binding_protocol,
2560 controller_handle,
2561 remain_device_path));
2562 if (r == EFI_SUCCESS)
2563 r = EFI_CALL(binding_protocol->start(binding_protocol,
2564 controller_handle,
2565 remain_device_path));
2566 EFI_CALL(efi_close_protocol(driver_image_handle,
2567 &efi_guid_driver_binding_protocol,
2568 driver_image_handle, NULL));
2569 return r;
2570}
2571
2572static efi_status_t efi_connect_single_controller(
2573 efi_handle_t controller_handle,
2574 efi_handle_t *driver_image_handle,
2575 struct efi_device_path *remain_device_path)
2576{
2577 efi_handle_t *buffer;
2578 size_t count;
2579 size_t i;
2580 efi_status_t r;
2581 size_t connected = 0;
2582
2583 /* Get buffer with all handles with driver binding protocol */
2584 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
2585 &efi_guid_driver_binding_protocol,
2586 NULL, &count, &buffer));
2587 if (r != EFI_SUCCESS)
2588 return r;
2589
2590 /* Context Override */
2591 if (driver_image_handle) {
2592 for (; *driver_image_handle; ++driver_image_handle) {
2593 for (i = 0; i < count; ++i) {
2594 if (buffer[i] == *driver_image_handle) {
2595 buffer[i] = NULL;
2596 r = efi_bind_controller(
2597 controller_handle,
2598 *driver_image_handle,
2599 remain_device_path);
2600 /*
2601 * For drivers that do not support the
2602 * controller or are already connected
2603 * we receive an error code here.
2604 */
2605 if (r == EFI_SUCCESS)
2606 ++connected;
2607 }
2608 }
2609 }
2610 }
2611
2612 /*
2613 * TODO: Some overrides are not yet implemented:
2614 * - Platform Driver Override
2615 * - Driver Family Override Search
2616 * - Bus Specific Driver Override
2617 */
2618
2619 /* Driver Binding Search */
2620 for (i = 0; i < count; ++i) {
2621 if (buffer[i]) {
2622 r = efi_bind_controller(controller_handle,
2623 buffer[i],
2624 remain_device_path);
2625 if (r == EFI_SUCCESS)
2626 ++connected;
2627 }
2628 }
2629
2630 efi_free_pool(buffer);
2631 if (!connected)
2632 return EFI_NOT_FOUND;
2633 return EFI_SUCCESS;
2634}
2635
2636/*
2637 * Connect a controller to a driver.
2638 *
2639 * This function implements the ConnectController service.
2640 * See the Unified Extensible Firmware Interface (UEFI) specification
2641 * for details.
2642 *
2643 * First all driver binding protocol handles are tried for binding drivers.
2644 * Afterwards all handles that have openened a protocol of the controller
2645 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
2646 *
2647 * @controller_handle handle of the controller
2648 * @driver_image_handle handle of the driver
2649 * @remain_device_path device path of a child controller
2650 * @recursive true to connect all child controllers
2651 * @return status code
2652 */
2653static efi_status_t EFIAPI efi_connect_controller(
2654 efi_handle_t controller_handle,
2655 efi_handle_t *driver_image_handle,
2656 struct efi_device_path *remain_device_path,
2657 bool recursive)
2658{
2659 efi_status_t r;
2660 efi_status_t ret = EFI_NOT_FOUND;
2661 struct efi_object *efiobj;
2662
2663 EFI_ENTRY("%p, %p, %p, %d", controller_handle, driver_image_handle,
2664 remain_device_path, recursive);
2665
2666 efiobj = efi_search_obj(controller_handle);
2667 if (!efiobj) {
2668 ret = EFI_INVALID_PARAMETER;
2669 goto out;
2670 }
2671
2672 r = efi_connect_single_controller(controller_handle,
2673 driver_image_handle,
2674 remain_device_path);
2675 if (r == EFI_SUCCESS)
2676 ret = EFI_SUCCESS;
2677 if (recursive) {
2678 struct efi_handler *handler;
2679 struct efi_open_protocol_info_item *item;
2680
2681 list_for_each_entry(handler, &efiobj->protocols, link) {
2682 list_for_each_entry(item, &handler->open_infos, link) {
2683 if (item->info.attributes &
2684 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
2685 r = EFI_CALL(efi_connect_controller(
2686 item->info.controller_handle,
2687 driver_image_handle,
2688 remain_device_path,
2689 recursive));
2690 if (r == EFI_SUCCESS)
2691 ret = EFI_SUCCESS;
2692 }
2693 }
2694 }
2695 }
2696 /* Check for child controller specified by end node */
2697 if (ret != EFI_SUCCESS && remain_device_path &&
2698 remain_device_path->type == DEVICE_PATH_TYPE_END)
2699 ret = EFI_SUCCESS;
2700out:
2701 return EFI_EXIT(ret);
2702}
2703
Heinrich Schuchardte9943282018-01-11 08:16:04 +01002704/*
2705 * Get all child controllers associated to a driver.
2706 * The allocated buffer has to be freed with free().
2707 *
2708 * @efiobj handle of the controller
2709 * @driver_handle handle of the driver
2710 * @number_of_children number of child controllers
2711 * @child_handle_buffer handles of the the child controllers
2712 */
2713static efi_status_t efi_get_child_controllers(
2714 struct efi_object *efiobj,
2715 efi_handle_t driver_handle,
2716 efi_uintn_t *number_of_children,
2717 efi_handle_t **child_handle_buffer)
2718{
2719 struct efi_handler *handler;
2720 struct efi_open_protocol_info_item *item;
2721 efi_uintn_t count = 0, i;
2722 bool duplicate;
2723
2724 /* Count all child controller associations */
2725 list_for_each_entry(handler, &efiobj->protocols, link) {
2726 list_for_each_entry(item, &handler->open_infos, link) {
2727 if (item->info.agent_handle == driver_handle &&
2728 item->info.attributes &
2729 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
2730 ++count;
2731 }
2732 }
2733 /*
2734 * Create buffer. In case of duplicate child controller assignments
2735 * the buffer will be too large. But that does not harm.
2736 */
2737 *number_of_children = 0;
2738 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
2739 if (!*child_handle_buffer)
2740 return EFI_OUT_OF_RESOURCES;
2741 /* Copy unique child handles */
2742 list_for_each_entry(handler, &efiobj->protocols, link) {
2743 list_for_each_entry(item, &handler->open_infos, link) {
2744 if (item->info.agent_handle == driver_handle &&
2745 item->info.attributes &
2746 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
2747 /* Check this is a new child controller */
2748 duplicate = false;
2749 for (i = 0; i < *number_of_children; ++i) {
2750 if ((*child_handle_buffer)[i] ==
2751 item->info.controller_handle)
2752 duplicate = true;
2753 }
2754 /* Copy handle to buffer */
2755 if (!duplicate) {
2756 i = (*number_of_children)++;
2757 (*child_handle_buffer)[i] =
2758 item->info.controller_handle;
2759 }
2760 }
2761 }
2762 }
2763 return EFI_SUCCESS;
2764}
2765
2766/*
2767 * Disconnect a controller from a driver.
2768 *
2769 * This function implements the DisconnectController service.
2770 * See the Unified Extensible Firmware Interface (UEFI) specification
2771 * for details.
2772 *
2773 * @controller_handle handle of the controller
2774 * @driver_image_handle handle of the driver
2775 * @child_handle handle of the child to destroy
2776 * @return status code
2777 */
2778static efi_status_t EFIAPI efi_disconnect_controller(
2779 efi_handle_t controller_handle,
2780 efi_handle_t driver_image_handle,
2781 efi_handle_t child_handle)
2782{
2783 struct efi_driver_binding_protocol *binding_protocol;
2784 efi_handle_t *child_handle_buffer = NULL;
2785 size_t number_of_children = 0;
2786 efi_status_t r;
2787 size_t stop_count = 0;
2788 struct efi_object *efiobj;
2789
2790 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
2791 child_handle);
2792
2793 efiobj = efi_search_obj(controller_handle);
2794 if (!efiobj) {
2795 r = EFI_INVALID_PARAMETER;
2796 goto out;
2797 }
2798
2799 if (child_handle && !efi_search_obj(child_handle)) {
2800 r = EFI_INVALID_PARAMETER;
2801 goto out;
2802 }
2803
2804 /* If no driver handle is supplied, disconnect all drivers */
2805 if (!driver_image_handle) {
2806 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
2807 goto out;
2808 }
2809
2810 /* Create list of child handles */
2811 if (child_handle) {
2812 number_of_children = 1;
2813 child_handle_buffer = &child_handle;
2814 } else {
2815 efi_get_child_controllers(efiobj,
2816 driver_image_handle,
2817 &number_of_children,
2818 &child_handle_buffer);
2819 }
2820
2821 /* Get the driver binding protocol */
2822 r = EFI_CALL(efi_open_protocol(driver_image_handle,
2823 &efi_guid_driver_binding_protocol,
2824 (void **)&binding_protocol,
2825 driver_image_handle, NULL,
2826 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2827 if (r != EFI_SUCCESS)
2828 goto out;
2829 /* Remove the children */
2830 if (number_of_children) {
2831 r = EFI_CALL(binding_protocol->stop(binding_protocol,
2832 controller_handle,
2833 number_of_children,
2834 child_handle_buffer));
2835 if (r == EFI_SUCCESS)
2836 ++stop_count;
2837 }
2838 /* Remove the driver */
2839 if (!child_handle)
2840 r = EFI_CALL(binding_protocol->stop(binding_protocol,
2841 controller_handle,
2842 0, NULL));
2843 if (r == EFI_SUCCESS)
2844 ++stop_count;
2845 EFI_CALL(efi_close_protocol(driver_image_handle,
2846 &efi_guid_driver_binding_protocol,
2847 driver_image_handle, NULL));
2848
2849 if (stop_count)
2850 r = EFI_SUCCESS;
2851 else
2852 r = EFI_NOT_FOUND;
2853out:
2854 if (!child_handle)
2855 free(child_handle_buffer);
2856 return EFI_EXIT(r);
2857}
2858
Alexander Grafc15d9212016-03-04 01:09:59 +01002859static const struct efi_boot_services efi_boot_services = {
2860 .hdr = {
2861 .headersize = sizeof(struct efi_table_hdr),
2862 },
2863 .raise_tpl = efi_raise_tpl,
2864 .restore_tpl = efi_restore_tpl,
2865 .allocate_pages = efi_allocate_pages_ext,
2866 .free_pages = efi_free_pages_ext,
2867 .get_memory_map = efi_get_memory_map_ext,
Stefan Brüns5a09aef2016-10-09 22:17:18 +02002868 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns67b67d92016-10-09 22:17:26 +02002869 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +02002870 .create_event = efi_create_event_ext,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +02002871 .set_timer = efi_set_timer_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01002872 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02002873 .signal_event = efi_signal_event_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01002874 .close_event = efi_close_event,
2875 .check_event = efi_check_event,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01002876 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01002877 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01002878 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01002879 .handle_protocol = efi_handle_protocol,
2880 .reserved = NULL,
2881 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02002882 .locate_handle = efi_locate_handle_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01002883 .locate_device_path = efi_locate_device_path,
Alexander Grafc5c11632016-08-19 01:23:24 +02002884 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01002885 .load_image = efi_load_image,
2886 .start_image = efi_start_image,
Alexander Graf988c0662016-05-20 23:28:23 +02002887 .exit = efi_exit,
Alexander Grafc15d9212016-03-04 01:09:59 +01002888 .unload_image = efi_unload_image,
2889 .exit_boot_services = efi_exit_boot_services,
2890 .get_next_monotonic_count = efi_get_next_monotonic_count,
2891 .stall = efi_stall,
2892 .set_watchdog_timer = efi_set_watchdog_timer,
2893 .connect_controller = efi_connect_controller,
2894 .disconnect_controller = efi_disconnect_controller,
2895 .open_protocol = efi_open_protocol,
2896 .close_protocol = efi_close_protocol,
2897 .open_protocol_information = efi_open_protocol_information,
2898 .protocols_per_handle = efi_protocols_per_handle,
2899 .locate_handle_buffer = efi_locate_handle_buffer,
2900 .locate_protocol = efi_locate_protocol,
2901 .install_multiple_protocol_interfaces = efi_install_multiple_protocol_interfaces,
2902 .uninstall_multiple_protocol_interfaces = efi_uninstall_multiple_protocol_interfaces,
2903 .calculate_crc32 = efi_calculate_crc32,
2904 .copy_mem = efi_copy_mem,
2905 .set_mem = efi_set_mem,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +01002906 .create_event_ex = efi_create_event_ex,
Alexander Grafc15d9212016-03-04 01:09:59 +01002907};
2908
2909
Heinrich Schuchardt3579b692017-12-11 20:10:20 +01002910static uint16_t __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafc15d9212016-03-04 01:09:59 +01002911
Alexander Graf393dd912016-10-14 13:45:30 +02002912struct efi_system_table __efi_runtime_data systab = {
Alexander Grafc15d9212016-03-04 01:09:59 +01002913 .hdr = {
2914 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardt7d495df2018-02-05 18:04:21 +01002915 .revision = 2 << 16 | 70, /* 2.7 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002916 .headersize = sizeof(struct efi_table_hdr),
2917 },
2918 .fw_vendor = (long)firmware_vendor,
2919 .con_in = (void*)&efi_con_in,
2920 .con_out = (void*)&efi_con_out,
2921 .std_err = (void*)&efi_con_out,
2922 .runtime = (void*)&efi_runtime_services,
2923 .boottime = (void*)&efi_boot_services,
2924 .nr_tables = 0,
2925 .tables = (void*)efi_conf_table,
2926};