1 // SPDX-License-Identifier: GPL-2.0+
3 * EFI application boot time services
5 * Copyright (c) 2016 Alexander Graf
10 #include <efi_loader.h>
11 #include <environment.h>
13 #include <linux/libfdt_env.h>
14 #include <u-boot/crc.h>
19 DECLARE_GLOBAL_DATA_PTR;
21 /* Task priority level */
22 static efi_uintn_t efi_tpl = TPL_APPLICATION;
24 /* This list contains all the EFI objects our payload has access to */
25 LIST_HEAD(efi_obj_list);
27 /* List of all events */
28 LIST_HEAD(efi_events);
30 /* List of all events registered by RegisterProtocolNotify() */
31 LIST_HEAD(efi_register_notify_events);
33 /* Handle of the currently executing image */
34 static efi_handle_t current_image;
37 * If we're running on nasty systems (32bit ARM booting into non-EFI Linux)
38 * we need to do trickery with caches. Since we don't want to break the EFI
39 * aware boot path, only apply hacks when loading exiting directly (breaking
40 * direct Linux EFI booting along the way - oh well).
42 static bool efi_is_direct_boot = true;
46 * The "gd" pointer lives in a register on ARM and AArch64 that we declare
47 * fixed when compiling U-Boot. However, the payload does not know about that
48 * restriction so we need to manually swap its and our view of that register on
49 * EFI callback entry/exit.
51 static volatile void *efi_gd, *app_gd;
54 /* 1 if inside U-Boot code, 0 if inside EFI payload code */
55 static int entry_count = 1;
56 static int nesting_level;
57 /* GUID of the device tree table */
58 const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
59 /* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
60 const efi_guid_t efi_guid_driver_binding_protocol =
61 EFI_DRIVER_BINDING_PROTOCOL_GUID;
63 /* event group ExitBootServices() invoked */
64 const efi_guid_t efi_guid_event_group_exit_boot_services =
65 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
66 /* event group SetVirtualAddressMap() invoked */
67 const efi_guid_t efi_guid_event_group_virtual_address_change =
68 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
69 /* event group memory map changed */
70 const efi_guid_t efi_guid_event_group_memory_map_change =
71 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
72 /* event group boot manager about to boot */
73 const efi_guid_t efi_guid_event_group_ready_to_boot =
74 EFI_EVENT_GROUP_READY_TO_BOOT;
75 /* event group ResetSystem() invoked (before ExitBootServices) */
76 const efi_guid_t efi_guid_event_group_reset_system =
77 EFI_EVENT_GROUP_RESET_SYSTEM;
79 static efi_status_t EFIAPI efi_disconnect_controller(
80 efi_handle_t controller_handle,
81 efi_handle_t driver_image_handle,
82 efi_handle_t child_handle);
84 /* Called on every callback entry */
85 int __efi_entry_check(void)
87 int ret = entry_count++ == 0;
96 /* Called on every callback exit */
97 int __efi_exit_check(void)
99 int ret = --entry_count == 0;
106 /* Called from do_bootefi_exec() */
107 void efi_save_gd(void)
115 * Special case handler for error/abort that just forces things back to u-boot
116 * world so we can dump out an abort message, without any care about returning
117 * back to UEFI world.
119 void efi_restore_gd(void)
122 /* Only restore if we're already in EFI context */
130 * indent_string() - returns a string for indenting with two spaces per level
131 * @level: indent level
133 * A maximum of ten indent levels is supported. Higher indent levels will be
136 * Return: A string for indenting with two spaces per level is
139 static const char *indent_string(int level)
141 const char *indent = " ";
142 const int max = strlen(indent);
144 level = min(max, level * 2);
145 return &indent[max - level];
148 const char *__efi_nesting(void)
150 return indent_string(nesting_level);
153 const char *__efi_nesting_inc(void)
155 return indent_string(nesting_level++);
158 const char *__efi_nesting_dec(void)
160 return indent_string(--nesting_level);
164 * efi_queue_event() - queue an EFI event
165 * @event: event to signal
166 * @check_tpl: check the TPL level
168 * This function queues the notification function of the event for future
171 * The notification function is called if the task priority level of the event
172 * is higher than the current task priority level.
174 * For the SignalEvent service see efi_signal_event_ext.
177 static void efi_queue_event(struct efi_event *event, bool check_tpl)
179 if (event->notify_function) {
180 event->is_queued = true;
182 if (check_tpl && efi_tpl >= event->notify_tpl)
184 event->is_queued = false;
185 EFI_CALL_VOID(event->notify_function(event,
186 event->notify_context));
188 event->is_queued = false;
193 * is_valid_tpl() - check if the task priority level is valid
195 * @tpl: TPL level to check
196 * Return: status code
198 efi_status_t is_valid_tpl(efi_uintn_t tpl)
201 case TPL_APPLICATION:
207 return EFI_INVALID_PARAMETER;
212 * efi_signal_event() - signal an EFI event
213 * @event: event to signal
214 * @check_tpl: check the TPL level
216 * This function signals an event. If the event belongs to an event group all
217 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL
218 * their notification function is queued.
220 * For the SignalEvent service see efi_signal_event_ext.
222 void efi_signal_event(struct efi_event *event, bool check_tpl)
225 struct efi_event *evt;
228 * The signaled state has to set before executing any
229 * notification function
231 list_for_each_entry(evt, &efi_events, link) {
232 if (!evt->group || guidcmp(evt->group, event->group))
234 if (evt->is_signaled)
236 evt->is_signaled = true;
237 if (evt->type & EVT_NOTIFY_SIGNAL &&
238 evt->notify_function)
239 evt->is_queued = true;
241 list_for_each_entry(evt, &efi_events, link) {
242 if (!evt->group || guidcmp(evt->group, event->group))
245 efi_queue_event(evt, check_tpl);
248 event->is_signaled = true;
249 if (event->type & EVT_NOTIFY_SIGNAL)
250 efi_queue_event(event, check_tpl);
255 * efi_raise_tpl() - raise the task priority level
256 * @new_tpl: new value of the task priority level
258 * This function implements the RaiseTpl service.
260 * See the Unified Extensible Firmware Interface (UEFI) specification for
263 * Return: old value of the task priority level
265 static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
267 efi_uintn_t old_tpl = efi_tpl;
269 EFI_ENTRY("0x%zx", new_tpl);
271 if (new_tpl < efi_tpl)
272 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
274 if (efi_tpl > TPL_HIGH_LEVEL)
275 efi_tpl = TPL_HIGH_LEVEL;
277 EFI_EXIT(EFI_SUCCESS);
282 * efi_restore_tpl() - lower the task priority level
283 * @old_tpl: value of the task priority level to be restored
285 * This function implements the RestoreTpl service.
287 * See the Unified Extensible Firmware Interface (UEFI) specification for
290 static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
292 EFI_ENTRY("0x%zx", old_tpl);
294 if (old_tpl > efi_tpl)
295 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
297 if (efi_tpl > TPL_HIGH_LEVEL)
298 efi_tpl = TPL_HIGH_LEVEL;
301 * Lowering the TPL may have made queued events eligible for execution.
305 EFI_EXIT(EFI_SUCCESS);
309 * efi_allocate_pages_ext() - allocate memory pages
310 * @type: type of allocation to be performed
311 * @memory_type: usage type of the allocated memory
312 * @pages: number of pages to be allocated
313 * @memory: allocated memory
315 * This function implements the AllocatePages service.
317 * See the Unified Extensible Firmware Interface (UEFI) specification for
320 * Return: status code
322 static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
328 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
329 r = efi_allocate_pages(type, memory_type, pages, memory);
334 * efi_free_pages_ext() - Free memory pages.
335 * @memory: start of the memory area to be freed
336 * @pages: number of pages to be freed
338 * This function implements the FreePages service.
340 * See the Unified Extensible Firmware Interface (UEFI) specification for
343 * Return: status code
345 static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
350 EFI_ENTRY("%llx, 0x%zx", memory, pages);
351 r = efi_free_pages(memory, pages);
356 * efi_get_memory_map_ext() - get map describing memory usage
357 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
358 * on exit the size of the copied memory map
359 * @memory_map: buffer to which the memory map is written
360 * @map_key: key for the memory map
361 * @descriptor_size: size of an individual memory descriptor
362 * @descriptor_version: version number of the memory descriptor structure
364 * This function implements the GetMemoryMap service.
366 * See the Unified Extensible Firmware Interface (UEFI) specification for
369 * Return: status code
371 static efi_status_t EFIAPI efi_get_memory_map_ext(
372 efi_uintn_t *memory_map_size,
373 struct efi_mem_desc *memory_map,
374 efi_uintn_t *map_key,
375 efi_uintn_t *descriptor_size,
376 uint32_t *descriptor_version)
380 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
381 map_key, descriptor_size, descriptor_version);
382 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
383 descriptor_size, descriptor_version);
388 * efi_allocate_pool_ext() - allocate memory from pool
389 * @pool_type: type of the pool from which memory is to be allocated
390 * @size: number of bytes to be allocated
391 * @buffer: allocated memory
393 * This function implements the AllocatePool service.
395 * See the Unified Extensible Firmware Interface (UEFI) specification for
398 * Return: status code
400 static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
406 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
407 r = efi_allocate_pool(pool_type, size, buffer);
412 * efi_free_pool_ext() - free memory from pool
413 * @buffer: start of memory to be freed
415 * This function implements the FreePool service.
417 * See the Unified Extensible Firmware Interface (UEFI) specification for
420 * Return: status code
422 static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
426 EFI_ENTRY("%p", buffer);
427 r = efi_free_pool(buffer);
432 * efi_add_handle() - add a new handle to the object list
434 * @handle: handle to be added
436 * The protocols list is initialized. The handle is added to the list of known
439 void efi_add_handle(efi_handle_t handle)
443 INIT_LIST_HEAD(&handle->protocols);
444 list_add_tail(&handle->link, &efi_obj_list);
448 * efi_create_handle() - create handle
449 * @handle: new handle
451 * Return: status code
453 efi_status_t efi_create_handle(efi_handle_t *handle)
455 struct efi_object *obj;
457 obj = calloc(1, sizeof(struct efi_object));
459 return EFI_OUT_OF_RESOURCES;
468 * efi_search_protocol() - find a protocol on a handle.
470 * @protocol_guid: GUID of the protocol
471 * @handler: reference to the protocol
473 * Return: status code
475 efi_status_t efi_search_protocol(const efi_handle_t handle,
476 const efi_guid_t *protocol_guid,
477 struct efi_handler **handler)
479 struct efi_object *efiobj;
480 struct list_head *lhandle;
482 if (!handle || !protocol_guid)
483 return EFI_INVALID_PARAMETER;
484 efiobj = efi_search_obj(handle);
486 return EFI_INVALID_PARAMETER;
487 list_for_each(lhandle, &efiobj->protocols) {
488 struct efi_handler *protocol;
490 protocol = list_entry(lhandle, struct efi_handler, link);
491 if (!guidcmp(protocol->guid, protocol_guid)) {
497 return EFI_NOT_FOUND;
501 * efi_remove_protocol() - delete protocol from a handle
502 * @handle: handle from which the protocol shall be deleted
503 * @protocol: GUID of the protocol to be deleted
504 * @protocol_interface: interface of the protocol implementation
506 * Return: status code
508 efi_status_t efi_remove_protocol(const efi_handle_t handle,
509 const efi_guid_t *protocol,
510 void *protocol_interface)
512 struct efi_handler *handler;
515 ret = efi_search_protocol(handle, protocol, &handler);
516 if (ret != EFI_SUCCESS)
518 if (handler->protocol_interface != protocol_interface)
519 return EFI_NOT_FOUND;
520 list_del(&handler->link);
526 * efi_remove_all_protocols() - delete all protocols from a handle
527 * @handle: handle from which the protocols shall be deleted
529 * Return: status code
531 efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
533 struct efi_object *efiobj;
534 struct efi_handler *protocol;
535 struct efi_handler *pos;
537 efiobj = efi_search_obj(handle);
539 return EFI_INVALID_PARAMETER;
540 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
543 ret = efi_remove_protocol(handle, protocol->guid,
544 protocol->protocol_interface);
545 if (ret != EFI_SUCCESS)
552 * efi_delete_handle() - delete handle
554 * @obj: handle to delete
556 void efi_delete_handle(efi_handle_t handle)
560 efi_remove_all_protocols(handle);
561 list_del(&handle->link);
566 * efi_is_event() - check if a pointer is a valid event
567 * @event: pointer to check
569 * Return: status code
571 static efi_status_t efi_is_event(const struct efi_event *event)
573 const struct efi_event *evt;
576 return EFI_INVALID_PARAMETER;
577 list_for_each_entry(evt, &efi_events, link) {
581 return EFI_INVALID_PARAMETER;
585 * efi_create_event() - create an event
586 * @type: type of the event to create
587 * @notify_tpl: task priority level of the event
588 * @notify_function: notification function of the event
589 * @notify_context: pointer passed to the notification function
590 * @group: event group
591 * @event: created event
593 * This function is used inside U-Boot code to create an event.
595 * For the API function implementing the CreateEvent service see
596 * efi_create_event_ext.
598 * Return: status code
600 efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
601 void (EFIAPI *notify_function) (
602 struct efi_event *event,
604 void *notify_context, efi_guid_t *group,
605 struct efi_event **event)
607 struct efi_event *evt;
610 return EFI_INVALID_PARAMETER;
615 case EVT_NOTIFY_SIGNAL:
616 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
617 case EVT_NOTIFY_WAIT:
618 case EVT_TIMER | EVT_NOTIFY_WAIT:
619 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
620 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
623 return EFI_INVALID_PARAMETER;
626 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
627 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS))
628 return EFI_INVALID_PARAMETER;
630 evt = calloc(1, sizeof(struct efi_event));
632 return EFI_OUT_OF_RESOURCES;
634 evt->notify_tpl = notify_tpl;
635 evt->notify_function = notify_function;
636 evt->notify_context = notify_context;
638 /* Disable timers on boot up */
639 evt->trigger_next = -1ULL;
640 evt->is_queued = false;
641 evt->is_signaled = false;
642 list_add_tail(&evt->link, &efi_events);
648 * efi_create_event_ex() - create an event in a group
649 * @type: type of the event to create
650 * @notify_tpl: task priority level of the event
651 * @notify_function: notification function of the event
652 * @notify_context: pointer passed to the notification function
653 * @event: created event
654 * @event_group: event group
656 * This function implements the CreateEventEx service.
658 * See the Unified Extensible Firmware Interface (UEFI) specification for
661 * Return: status code
663 efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
664 void (EFIAPI *notify_function) (
665 struct efi_event *event,
667 void *notify_context,
668 efi_guid_t *event_group,
669 struct efi_event **event)
673 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
674 notify_context, event_group);
677 * The allowable input parameters are the same as in CreateEvent()
678 * except for the following two disallowed event types.
681 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
682 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
683 ret = EFI_INVALID_PARAMETER;
687 ret = efi_create_event(type, notify_tpl, notify_function,
688 notify_context, event_group, event);
690 return EFI_EXIT(ret);
694 * efi_create_event_ext() - create an event
695 * @type: type of the event to create
696 * @notify_tpl: task priority level of the event
697 * @notify_function: notification function of the event
698 * @notify_context: pointer passed to the notification function
699 * @event: created event
701 * This function implements the CreateEvent service.
703 * See the Unified Extensible Firmware Interface (UEFI) specification for
706 * Return: status code
708 static efi_status_t EFIAPI efi_create_event_ext(
709 uint32_t type, efi_uintn_t notify_tpl,
710 void (EFIAPI *notify_function) (
711 struct efi_event *event,
713 void *notify_context, struct efi_event **event)
715 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
717 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
718 notify_context, NULL, event));
722 * efi_timer_check() - check if a timer event has occurred
724 * Check if a timer event has occurred or a queued notification function should
727 * Our timers have to work without interrupts, so we check whenever keyboard
728 * input or disk accesses happen if enough time elapsed for them to fire.
730 void efi_timer_check(void)
732 struct efi_event *evt;
733 u64 now = timer_get_us();
735 list_for_each_entry(evt, &efi_events, link) {
737 efi_queue_event(evt, true);
738 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
740 switch (evt->trigger_type) {
741 case EFI_TIMER_RELATIVE:
742 evt->trigger_type = EFI_TIMER_STOP;
744 case EFI_TIMER_PERIODIC:
745 evt->trigger_next += evt->trigger_time;
750 evt->is_signaled = false;
751 efi_signal_event(evt, true);
757 * efi_set_timer() - set the trigger time for a timer event or stop the event
758 * @event: event for which the timer is set
759 * @type: type of the timer
760 * @trigger_time: trigger period in multiples of 100 ns
762 * This is the function for internal usage in U-Boot. For the API function
763 * implementing the SetTimer service see efi_set_timer_ext.
765 * Return: status code
767 efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
768 uint64_t trigger_time)
770 /* Check that the event is valid */
771 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
772 return EFI_INVALID_PARAMETER;
775 * The parameter defines a multiple of 100 ns.
776 * We use multiples of 1000 ns. So divide by 10.
778 do_div(trigger_time, 10);
782 event->trigger_next = -1ULL;
784 case EFI_TIMER_PERIODIC:
785 case EFI_TIMER_RELATIVE:
786 event->trigger_next = timer_get_us() + trigger_time;
789 return EFI_INVALID_PARAMETER;
791 event->trigger_type = type;
792 event->trigger_time = trigger_time;
793 event->is_signaled = false;
798 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
800 * @event: event for which the timer is set
801 * @type: type of the timer
802 * @trigger_time: trigger period in multiples of 100 ns
804 * This function implements the SetTimer service.
806 * See the Unified Extensible Firmware Interface (UEFI) specification for
810 * Return: status code
812 static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
813 enum efi_timer_delay type,
814 uint64_t trigger_time)
816 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
817 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
821 * efi_wait_for_event() - wait for events to be signaled
822 * @num_events: number of events to be waited for
823 * @event: events to be waited for
824 * @index: index of the event that was signaled
826 * This function implements the WaitForEvent service.
828 * See the Unified Extensible Firmware Interface (UEFI) specification for
831 * Return: status code
833 static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
834 struct efi_event **event,
839 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
841 /* Check parameters */
842 if (!num_events || !event)
843 return EFI_EXIT(EFI_INVALID_PARAMETER);
845 if (efi_tpl != TPL_APPLICATION)
846 return EFI_EXIT(EFI_UNSUPPORTED);
847 for (i = 0; i < num_events; ++i) {
848 if (efi_is_event(event[i]) != EFI_SUCCESS)
849 return EFI_EXIT(EFI_INVALID_PARAMETER);
850 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
851 return EFI_EXIT(EFI_INVALID_PARAMETER);
852 if (!event[i]->is_signaled)
853 efi_queue_event(event[i], true);
856 /* Wait for signal */
858 for (i = 0; i < num_events; ++i) {
859 if (event[i]->is_signaled)
862 /* Allow events to occur. */
868 * Reset the signal which is passed to the caller to allow periodic
871 event[i]->is_signaled = false;
875 return EFI_EXIT(EFI_SUCCESS);
879 * efi_signal_event_ext() - signal an EFI event
880 * @event: event to signal
882 * This function implements the SignalEvent service.
884 * See the Unified Extensible Firmware Interface (UEFI) specification for
887 * This functions sets the signaled state of the event and queues the
888 * notification function for execution.
890 * Return: status code
892 static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
894 EFI_ENTRY("%p", event);
895 if (efi_is_event(event) != EFI_SUCCESS)
896 return EFI_EXIT(EFI_INVALID_PARAMETER);
897 efi_signal_event(event, true);
898 return EFI_EXIT(EFI_SUCCESS);
902 * efi_close_event() - close an EFI event
903 * @event: event to close
905 * This function implements the CloseEvent service.
907 * See the Unified Extensible Firmware Interface (UEFI) specification for
910 * Return: status code
912 static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
914 struct efi_register_notify_event *item, *next;
916 EFI_ENTRY("%p", event);
917 if (efi_is_event(event) != EFI_SUCCESS)
918 return EFI_EXIT(EFI_INVALID_PARAMETER);
920 /* Remove protocol notify registrations for the event */
921 list_for_each_entry_safe(item, next, &efi_register_notify_events,
923 if (event == item->event) {
924 struct efi_protocol_notification *hitem, *hnext;
926 /* Remove signaled handles */
927 list_for_each_entry_safe(hitem, hnext, &item->handles,
929 list_del(&hitem->link);
932 list_del(&item->link);
937 list_del(&event->link);
939 return EFI_EXIT(EFI_SUCCESS);
943 * efi_check_event() - check if an event is signaled
944 * @event: event to check
946 * This function implements the CheckEvent service.
948 * See the Unified Extensible Firmware Interface (UEFI) specification for
951 * If an event is not signaled yet, the notification function is queued. The
952 * signaled state is cleared.
954 * Return: status code
956 static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
958 EFI_ENTRY("%p", event);
960 if (efi_is_event(event) != EFI_SUCCESS ||
961 event->type & EVT_NOTIFY_SIGNAL)
962 return EFI_EXIT(EFI_INVALID_PARAMETER);
963 if (!event->is_signaled)
964 efi_queue_event(event, true);
965 if (event->is_signaled) {
966 event->is_signaled = false;
967 return EFI_EXIT(EFI_SUCCESS);
969 return EFI_EXIT(EFI_NOT_READY);
973 * efi_search_obj() - find the internal EFI object for a handle
974 * @handle: handle to find
978 struct efi_object *efi_search_obj(const efi_handle_t handle)
980 struct efi_object *efiobj;
985 list_for_each_entry(efiobj, &efi_obj_list, link) {
986 if (efiobj == handle)
993 * efi_open_protocol_info_entry() - create open protocol info entry and add it
995 * @handler: handler of a protocol
997 * Return: open protocol info entry
999 static struct efi_open_protocol_info_entry *efi_create_open_info(
1000 struct efi_handler *handler)
1002 struct efi_open_protocol_info_item *item;
1004 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1007 /* Append the item to the open protocol info list. */
1008 list_add_tail(&item->link, &handler->open_infos);
1014 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1015 * @item: open protocol info entry to delete
1017 * Return: status code
1019 static efi_status_t efi_delete_open_info(
1020 struct efi_open_protocol_info_item *item)
1022 list_del(&item->link);
1028 * efi_add_protocol() - install new protocol on a handle
1029 * @handle: handle on which the protocol shall be installed
1030 * @protocol: GUID of the protocol to be installed
1031 * @protocol_interface: interface of the protocol implementation
1033 * Return: status code
1035 efi_status_t efi_add_protocol(const efi_handle_t handle,
1036 const efi_guid_t *protocol,
1037 void *protocol_interface)
1039 struct efi_object *efiobj;
1040 struct efi_handler *handler;
1042 struct efi_register_notify_event *event;
1044 efiobj = efi_search_obj(handle);
1046 return EFI_INVALID_PARAMETER;
1047 ret = efi_search_protocol(handle, protocol, NULL);
1048 if (ret != EFI_NOT_FOUND)
1049 return EFI_INVALID_PARAMETER;
1050 handler = calloc(1, sizeof(struct efi_handler));
1052 return EFI_OUT_OF_RESOURCES;
1053 handler->guid = protocol;
1054 handler->protocol_interface = protocol_interface;
1055 INIT_LIST_HEAD(&handler->open_infos);
1056 list_add_tail(&handler->link, &efiobj->protocols);
1058 /* Notify registered events */
1059 list_for_each_entry(event, &efi_register_notify_events, link) {
1060 if (!guidcmp(protocol, &event->protocol)) {
1061 struct efi_protocol_notification *notif;
1063 notif = calloc(1, sizeof(*notif));
1065 list_del(&handler->link);
1067 return EFI_OUT_OF_RESOURCES;
1069 notif->handle = handle;
1070 list_add_tail(¬if->link, &event->handles);
1071 efi_signal_event(event->event, true);
1075 if (!guidcmp(&efi_guid_device_path, protocol))
1076 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
1081 * efi_install_protocol_interface() - install protocol interface
1082 * @handle: handle on which the protocol shall be installed
1083 * @protocol: GUID of the protocol to be installed
1084 * @protocol_interface_type: type of the interface to be installed,
1085 * always EFI_NATIVE_INTERFACE
1086 * @protocol_interface: interface of the protocol implementation
1088 * This function implements the InstallProtocolInterface service.
1090 * See the Unified Extensible Firmware Interface (UEFI) specification for
1093 * Return: status code
1095 static efi_status_t EFIAPI efi_install_protocol_interface(
1096 efi_handle_t *handle, const efi_guid_t *protocol,
1097 int protocol_interface_type, void *protocol_interface)
1101 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1102 protocol_interface);
1104 if (!handle || !protocol ||
1105 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1106 r = EFI_INVALID_PARAMETER;
1110 /* Create new handle if requested. */
1112 r = efi_create_handle(handle);
1113 if (r != EFI_SUCCESS)
1115 EFI_PRINT("new handle %p\n", *handle);
1117 EFI_PRINT("handle %p\n", *handle);
1119 /* Add new protocol */
1120 r = efi_add_protocol(*handle, protocol, protocol_interface);
1126 * efi_get_drivers() - get all drivers associated to a controller
1127 * @handle: handle of the controller
1128 * @protocol: protocol GUID (optional)
1129 * @number_of_drivers: number of child controllers
1130 * @driver_handle_buffer: handles of the the drivers
1132 * The allocated buffer has to be freed with free().
1134 * Return: status code
1136 static efi_status_t efi_get_drivers(efi_handle_t handle,
1137 const efi_guid_t *protocol,
1138 efi_uintn_t *number_of_drivers,
1139 efi_handle_t **driver_handle_buffer)
1141 struct efi_handler *handler;
1142 struct efi_open_protocol_info_item *item;
1143 efi_uintn_t count = 0, i;
1146 /* Count all driver associations */
1147 list_for_each_entry(handler, &handle->protocols, link) {
1148 if (protocol && guidcmp(handler->guid, protocol))
1150 list_for_each_entry(item, &handler->open_infos, link) {
1151 if (item->info.attributes &
1152 EFI_OPEN_PROTOCOL_BY_DRIVER)
1157 * Create buffer. In case of duplicate driver assignments the buffer
1158 * will be too large. But that does not harm.
1160 *number_of_drivers = 0;
1161 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1162 if (!*driver_handle_buffer)
1163 return EFI_OUT_OF_RESOURCES;
1164 /* Collect unique driver handles */
1165 list_for_each_entry(handler, &handle->protocols, link) {
1166 if (protocol && guidcmp(handler->guid, protocol))
1168 list_for_each_entry(item, &handler->open_infos, link) {
1169 if (item->info.attributes &
1170 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1171 /* Check this is a new driver */
1173 for (i = 0; i < *number_of_drivers; ++i) {
1174 if ((*driver_handle_buffer)[i] ==
1175 item->info.agent_handle)
1178 /* Copy handle to buffer */
1180 i = (*number_of_drivers)++;
1181 (*driver_handle_buffer)[i] =
1182 item->info.agent_handle;
1191 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
1192 * @handle: handle of the controller
1193 * @protocol: protocol GUID (optional)
1194 * @child_handle: handle of the child to destroy
1196 * This function implements the DisconnectController service.
1198 * See the Unified Extensible Firmware Interface (UEFI) specification for
1201 * Return: status code
1203 static efi_status_t efi_disconnect_all_drivers
1204 (efi_handle_t handle,
1205 const efi_guid_t *protocol,
1206 efi_handle_t child_handle)
1208 efi_uintn_t number_of_drivers;
1209 efi_handle_t *driver_handle_buffer;
1210 efi_status_t r, ret;
1212 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
1213 &driver_handle_buffer);
1214 if (ret != EFI_SUCCESS)
1217 ret = EFI_NOT_FOUND;
1218 while (number_of_drivers) {
1219 r = EFI_CALL(efi_disconnect_controller(
1221 driver_handle_buffer[--number_of_drivers],
1223 if (r == EFI_SUCCESS)
1226 free(driver_handle_buffer);
1231 * efi_uninstall_protocol() - uninstall protocol interface
1233 * @handle: handle from which the protocol shall be removed
1234 * @protocol: GUID of the protocol to be removed
1235 * @protocol_interface: interface to be removed
1237 * This function DOES NOT delete a handle without installed protocol.
1239 * Return: status code
1241 static efi_status_t efi_uninstall_protocol
1242 (efi_handle_t handle, const efi_guid_t *protocol,
1243 void *protocol_interface)
1245 struct efi_object *efiobj;
1246 struct efi_handler *handler;
1247 struct efi_open_protocol_info_item *item;
1248 struct efi_open_protocol_info_item *pos;
1252 efiobj = efi_search_obj(handle);
1254 r = EFI_INVALID_PARAMETER;
1257 /* Find the protocol on the handle */
1258 r = efi_search_protocol(handle, protocol, &handler);
1259 if (r != EFI_SUCCESS)
1261 /* Disconnect controllers */
1262 efi_disconnect_all_drivers(efiobj, protocol, NULL);
1263 /* Close protocol */
1264 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1265 if (item->info.attributes ==
1266 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1267 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1268 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1269 list_del(&item->link);
1271 if (!list_empty(&handler->open_infos)) {
1272 r = EFI_ACCESS_DENIED;
1275 r = efi_remove_protocol(handle, protocol, protocol_interface);
1281 * efi_uninstall_protocol_interface() - uninstall protocol interface
1282 * @handle: handle from which the protocol shall be removed
1283 * @protocol: GUID of the protocol to be removed
1284 * @protocol_interface: interface to be removed
1286 * This function implements the UninstallProtocolInterface service.
1288 * See the Unified Extensible Firmware Interface (UEFI) specification for
1291 * Return: status code
1293 static efi_status_t EFIAPI efi_uninstall_protocol_interface
1294 (efi_handle_t handle, const efi_guid_t *protocol,
1295 void *protocol_interface)
1299 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1301 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1302 if (ret != EFI_SUCCESS)
1305 /* If the last protocol has been removed, delete the handle. */
1306 if (list_empty(&handle->protocols)) {
1307 list_del(&handle->link);
1311 return EFI_EXIT(ret);
1315 * efi_register_protocol_notify() - register an event for notification when a
1316 * protocol is installed.
1317 * @protocol: GUID of the protocol whose installation shall be notified
1318 * @event: event to be signaled upon installation of the protocol
1319 * @registration: key for retrieving the registration information
1321 * This function implements the RegisterProtocolNotify service.
1322 * See the Unified Extensible Firmware Interface (UEFI) specification
1325 * Return: status code
1327 static efi_status_t EFIAPI efi_register_protocol_notify(
1328 const efi_guid_t *protocol,
1329 struct efi_event *event,
1330 void **registration)
1332 struct efi_register_notify_event *item;
1333 efi_status_t ret = EFI_SUCCESS;
1335 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
1337 if (!protocol || !event || !registration) {
1338 ret = EFI_INVALID_PARAMETER;
1342 item = calloc(1, sizeof(struct efi_register_notify_event));
1344 ret = EFI_OUT_OF_RESOURCES;
1348 item->event = event;
1349 memcpy(&item->protocol, protocol, sizeof(efi_guid_t));
1350 INIT_LIST_HEAD(&item->handles);
1352 list_add_tail(&item->link, &efi_register_notify_events);
1354 *registration = item;
1356 return EFI_EXIT(ret);
1360 * efi_search() - determine if an EFI handle implements a protocol
1361 * @search_type: selection criterion
1362 * @protocol: GUID of the protocol
1363 * @search_key: registration key
1366 * See the documentation of the LocateHandle service in the UEFI specification.
1368 * Return: 0 if the handle implements the protocol
1370 static int efi_search(enum efi_locate_search_type search_type,
1371 const efi_guid_t *protocol, efi_handle_t handle)
1375 switch (search_type) {
1379 ret = efi_search_protocol(handle, protocol, NULL);
1380 return (ret != EFI_SUCCESS);
1382 /* Invalid search type */
1388 * efi_check_register_notify_event() - check if registration key is valid
1390 * Check that a pointer is a valid registration key as returned by
1391 * RegisterProtocolNotify().
1393 * @key: registration key
1394 * Return: valid registration key or NULL
1396 static struct efi_register_notify_event *efi_check_register_notify_event
1399 struct efi_register_notify_event *event;
1401 list_for_each_entry(event, &efi_register_notify_events, link) {
1402 if (event == (struct efi_register_notify_event *)key)
1409 * efi_locate_handle() - locate handles implementing a protocol
1411 * @search_type: selection criterion
1412 * @protocol: GUID of the protocol
1413 * @search_key: registration key
1414 * @buffer_size: size of the buffer to receive the handles in bytes
1415 * @buffer: buffer to receive the relevant handles
1417 * This function is meant for U-Boot internal calls. For the API implementation
1418 * of the LocateHandle service see efi_locate_handle_ext.
1420 * Return: status code
1422 static efi_status_t efi_locate_handle(
1423 enum efi_locate_search_type search_type,
1424 const efi_guid_t *protocol, void *search_key,
1425 efi_uintn_t *buffer_size, efi_handle_t *buffer)
1427 struct efi_object *efiobj;
1428 efi_uintn_t size = 0;
1429 struct efi_register_notify_event *event;
1430 struct efi_protocol_notification *handle = NULL;
1432 /* Check parameters */
1433 switch (search_type) {
1436 case BY_REGISTER_NOTIFY:
1438 return EFI_INVALID_PARAMETER;
1439 /* Check that the registration key is valid */
1440 event = efi_check_register_notify_event(search_key);
1442 return EFI_INVALID_PARAMETER;
1446 return EFI_INVALID_PARAMETER;
1449 return EFI_INVALID_PARAMETER;
1452 /* Count how much space we need */
1453 if (search_type == BY_REGISTER_NOTIFY) {
1454 if (list_empty(&event->handles))
1455 return EFI_NOT_FOUND;
1456 handle = list_first_entry(&event->handles,
1457 struct efi_protocol_notification,
1459 efiobj = handle->handle;
1460 size += sizeof(void *);
1462 list_for_each_entry(efiobj, &efi_obj_list, link) {
1463 if (!efi_search(search_type, protocol, efiobj))
1464 size += sizeof(void *);
1467 return EFI_NOT_FOUND;
1471 return EFI_INVALID_PARAMETER;
1473 if (*buffer_size < size) {
1474 *buffer_size = size;
1475 return EFI_BUFFER_TOO_SMALL;
1478 *buffer_size = size;
1480 /* The buffer size is sufficient but there is no buffer */
1482 return EFI_INVALID_PARAMETER;
1484 /* Then fill the array */
1485 if (search_type == BY_REGISTER_NOTIFY) {
1487 list_del(&handle->link);
1489 list_for_each_entry(efiobj, &efi_obj_list, link) {
1490 if (!efi_search(search_type, protocol, efiobj))
1499 * efi_locate_handle_ext() - locate handles implementing a protocol.
1500 * @search_type: selection criterion
1501 * @protocol: GUID of the protocol
1502 * @search_key: registration key
1503 * @buffer_size: size of the buffer to receive the handles in bytes
1504 * @buffer: buffer to receive the relevant handles
1506 * This function implements the LocateHandle service.
1508 * See the Unified Extensible Firmware Interface (UEFI) specification for
1511 * Return: 0 if the handle implements the protocol
1513 static efi_status_t EFIAPI efi_locate_handle_ext(
1514 enum efi_locate_search_type search_type,
1515 const efi_guid_t *protocol, void *search_key,
1516 efi_uintn_t *buffer_size, efi_handle_t *buffer)
1518 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
1519 buffer_size, buffer);
1521 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1522 buffer_size, buffer));
1526 * efi_remove_configuration_table() - collapses configuration table entries,
1529 * @i: index of the table entry to be removed
1531 static void efi_remove_configuration_table(int i)
1533 struct efi_configuration_table *this = &systab.tables[i];
1534 struct efi_configuration_table *next = &systab.tables[i + 1];
1535 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
1537 memmove(this, next, (ulong)end - (ulong)next);
1542 * efi_install_configuration_table() - adds, updates, or removes a
1543 * configuration table
1544 * @guid: GUID of the installed table
1545 * @table: table to be installed
1547 * This function is used for internal calls. For the API implementation of the
1548 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1550 * Return: status code
1552 efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1555 struct efi_event *evt;
1559 return EFI_INVALID_PARAMETER;
1561 /* Check for GUID override */
1562 for (i = 0; i < systab.nr_tables; i++) {
1563 if (!guidcmp(guid, &systab.tables[i].guid)) {
1565 systab.tables[i].table = table;
1567 efi_remove_configuration_table(i);
1573 return EFI_NOT_FOUND;
1575 /* No override, check for overflow */
1576 if (i >= EFI_MAX_CONFIGURATION_TABLES)
1577 return EFI_OUT_OF_RESOURCES;
1579 /* Add a new entry */
1580 memcpy(&systab.tables[i].guid, guid, sizeof(*guid));
1581 systab.tables[i].table = table;
1582 systab.nr_tables = i + 1;
1585 /* systab.nr_tables may have changed. So we need to update the CRC32 */
1586 efi_update_table_header_crc32(&systab.hdr);
1588 /* Notify that the configuration table was changed */
1589 list_for_each_entry(evt, &efi_events, link) {
1590 if (evt->group && !guidcmp(evt->group, guid)) {
1591 efi_signal_event(evt, false);
1600 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1601 * configuration table.
1602 * @guid: GUID of the installed table
1603 * @table: table to be installed
1605 * This function implements the InstallConfigurationTable service.
1607 * See the Unified Extensible Firmware Interface (UEFI) specification for
1610 * Return: status code
1612 static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1615 EFI_ENTRY("%pUl, %p", guid, table);
1616 return EFI_EXIT(efi_install_configuration_table(guid, table));
1620 * efi_setup_loaded_image() - initialize a loaded image
1622 * Initialize a loaded_image_info and loaded_image_info object with correct
1623 * protocols, boot-device, etc.
1625 * In case of an error *handle_ptr and *info_ptr are set to NULL and an error
1628 * @device_path: device path of the loaded image
1629 * @file_path: file path of the loaded image
1630 * @handle_ptr: handle of the loaded image
1631 * @info_ptr: loaded image protocol
1632 * Return: status code
1634 efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1635 struct efi_device_path *file_path,
1636 struct efi_loaded_image_obj **handle_ptr,
1637 struct efi_loaded_image **info_ptr)
1640 struct efi_loaded_image *info = NULL;
1641 struct efi_loaded_image_obj *obj = NULL;
1642 struct efi_device_path *dp;
1644 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1648 info = calloc(1, sizeof(*info));
1650 return EFI_OUT_OF_RESOURCES;
1651 obj = calloc(1, sizeof(*obj));
1654 return EFI_OUT_OF_RESOURCES;
1656 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
1658 /* Add internal object to object list */
1659 efi_add_handle(&obj->header);
1661 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
1662 info->file_path = file_path;
1663 info->system_table = &systab;
1666 info->device_handle = efi_dp_find_obj(device_path, NULL);
1668 dp = efi_dp_append(device_path, file_path);
1670 ret = EFI_OUT_OF_RESOURCES;
1676 ret = efi_add_protocol(&obj->header,
1677 &efi_guid_loaded_image_device_path, dp);
1678 if (ret != EFI_SUCCESS)
1682 * When asking for the loaded_image interface, just
1683 * return handle which points to loaded_image_info
1685 ret = efi_add_protocol(&obj->header,
1686 &efi_guid_loaded_image, info);
1687 if (ret != EFI_SUCCESS)
1695 printf("ERROR: Failure to install protocols for loaded image\n");
1696 efi_delete_handle(&obj->header);
1702 * efi_load_image_from_path() - load an image using a file path
1704 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1705 * callers obligation to update the memory type as needed.
1707 * @file_path: the path of the image to load
1708 * @buffer: buffer containing the loaded image
1709 * @size: size of the loaded image
1710 * Return: status code
1713 efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
1714 void **buffer, efi_uintn_t *size)
1716 struct efi_file_info *info = NULL;
1717 struct efi_file_handle *f;
1718 static efi_status_t ret;
1722 /* In case of failure nothing is returned */
1727 f = efi_file_from_path(file_path);
1729 return EFI_DEVICE_ERROR;
1733 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1735 if (ret != EFI_BUFFER_TOO_SMALL) {
1736 ret = EFI_DEVICE_ERROR;
1741 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1743 if (ret != EFI_SUCCESS)
1747 * When reading the file we do not yet know if it contains an
1748 * application, a boottime driver, or a runtime driver. So here we
1749 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1750 * update the reservation according to the image type.
1752 bs = info->file_size;
1753 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1754 EFI_BOOT_SERVICES_DATA,
1755 efi_size_in_pages(bs), &addr);
1756 if (ret != EFI_SUCCESS) {
1757 ret = EFI_OUT_OF_RESOURCES;
1762 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1763 if (ret != EFI_SUCCESS)
1764 efi_free_pages(addr, efi_size_in_pages(bs));
1765 *buffer = (void *)(uintptr_t)addr;
1768 EFI_CALL(f->close(f));
1774 * efi_load_image() - load an EFI image into memory
1775 * @boot_policy: true for request originating from the boot manager
1776 * @parent_image: the caller's image handle
1777 * @file_path: the path of the image to load
1778 * @source_buffer: memory location from which the image is installed
1779 * @source_size: size of the memory area from which the image is installed
1780 * @image_handle: handle for the newly installed image
1782 * This function implements the LoadImage service.
1784 * See the Unified Extensible Firmware Interface (UEFI) specification
1787 * Return: status code
1789 efi_status_t EFIAPI efi_load_image(bool boot_policy,
1790 efi_handle_t parent_image,
1791 struct efi_device_path *file_path,
1792 void *source_buffer,
1793 efi_uintn_t source_size,
1794 efi_handle_t *image_handle)
1796 struct efi_device_path *dp, *fp;
1797 struct efi_loaded_image *info = NULL;
1798 struct efi_loaded_image_obj **image_obj =
1799 (struct efi_loaded_image_obj **)image_handle;
1803 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
1804 file_path, source_buffer, source_size, image_handle);
1806 if (!image_handle || !efi_search_obj(parent_image)) {
1807 ret = EFI_INVALID_PARAMETER;
1811 if (!source_buffer && !file_path) {
1812 ret = EFI_NOT_FOUND;
1815 /* The parent image handle must refer to a loaded image */
1816 if (!parent_image->type) {
1817 ret = EFI_INVALID_PARAMETER;
1821 if (!source_buffer) {
1822 ret = efi_load_image_from_path(file_path, &dest_buffer,
1824 if (ret != EFI_SUCCESS)
1828 ret = EFI_LOAD_ERROR;
1831 dest_buffer = source_buffer;
1833 /* split file_path which contains both the device and file parts */
1834 efi_dp_split_file_path(file_path, &dp, &fp);
1835 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
1836 if (ret == EFI_SUCCESS)
1837 ret = efi_load_pe(*image_obj, dest_buffer, info);
1839 /* Release buffer to which file was loaded */
1840 efi_free_pages((uintptr_t)dest_buffer,
1841 efi_size_in_pages(source_size));
1842 if (ret == EFI_SUCCESS) {
1843 info->system_table = &systab;
1844 info->parent_handle = parent_image;
1846 /* The image is invalid. Release all associated resources. */
1847 efi_delete_handle(*image_handle);
1848 *image_handle = NULL;
1852 return EFI_EXIT(ret);
1856 * efi_exit_caches() - fix up caches for EFI payloads if necessary
1858 static void efi_exit_caches(void)
1860 #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1862 * Grub on 32bit ARM needs to have caches disabled before jumping into
1863 * a zImage, but does not know of all cache layers. Give it a hand.
1865 if (efi_is_direct_boot)
1866 cleanup_before_linux();
1871 * efi_exit_boot_services() - stop all boot services
1872 * @image_handle: handle of the loaded image
1873 * @map_key: key of the memory map
1875 * This function implements the ExitBootServices service.
1877 * See the Unified Extensible Firmware Interface (UEFI) specification
1880 * All timer events are disabled. For exit boot services events the
1881 * notification function is called. The boot services are disabled in the
1884 * Return: status code
1886 static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
1887 efi_uintn_t map_key)
1889 struct efi_event *evt;
1891 EFI_ENTRY("%p, %zx", image_handle, map_key);
1893 /* Check that the caller has read the current memory map */
1894 if (map_key != efi_memory_map_key)
1895 return EFI_INVALID_PARAMETER;
1897 /* Make sure that notification functions are not called anymore */
1898 efi_tpl = TPL_HIGH_LEVEL;
1900 /* Check if ExitBootServices has already been called */
1901 if (!systab.boottime)
1902 return EFI_EXIT(EFI_SUCCESS);
1904 /* Add related events to the event group */
1905 list_for_each_entry(evt, &efi_events, link) {
1906 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1907 evt->group = &efi_guid_event_group_exit_boot_services;
1909 /* Notify that ExitBootServices is invoked. */
1910 list_for_each_entry(evt, &efi_events, link) {
1912 !guidcmp(evt->group,
1913 &efi_guid_event_group_exit_boot_services)) {
1914 efi_signal_event(evt, false);
1919 /* TODO: Should persist EFI variables here */
1921 board_quiesce_devices();
1923 /* Fix up caches for EFI payloads if necessary */
1926 /* This stops all lingering devices */
1927 bootm_disable_interrupts();
1929 /* Disable boot time services */
1930 systab.con_in_handle = NULL;
1931 systab.con_in = NULL;
1932 systab.con_out_handle = NULL;
1933 systab.con_out = NULL;
1934 systab.stderr_handle = NULL;
1935 systab.std_err = NULL;
1936 systab.boottime = NULL;
1938 /* Recalculate CRC32 */
1939 efi_update_table_header_crc32(&systab.hdr);
1941 /* Give the payload some time to boot */
1942 efi_set_watchdog(0);
1945 return EFI_EXIT(EFI_SUCCESS);
1949 * efi_get_next_monotonic_count() - get next value of the counter
1950 * @count: returned value of the counter
1952 * This function implements the NextMonotonicCount service.
1954 * See the Unified Extensible Firmware Interface (UEFI) specification for
1957 * Return: status code
1959 static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1961 static uint64_t mono;
1964 EFI_ENTRY("%p", count);
1966 ret = EFI_INVALID_PARAMETER;
1972 return EFI_EXIT(ret);
1976 * efi_stall() - sleep
1977 * @microseconds: period to sleep in microseconds
1979 * This function implements the Stall service.
1981 * See the Unified Extensible Firmware Interface (UEFI) specification for
1984 * Return: status code
1986 static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1988 EFI_ENTRY("%ld", microseconds);
1989 udelay(microseconds);
1990 return EFI_EXIT(EFI_SUCCESS);
1994 * efi_set_watchdog_timer() - reset the watchdog timer
1995 * @timeout: seconds before reset by watchdog
1996 * @watchdog_code: code to be logged when resetting
1997 * @data_size: size of buffer in bytes
1998 * @watchdog_data: buffer with data describing the reset reason
2000 * This function implements the SetWatchdogTimer service.
2002 * See the Unified Extensible Firmware Interface (UEFI) specification for
2005 * Return: status code
2007 static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2008 uint64_t watchdog_code,
2009 unsigned long data_size,
2010 uint16_t *watchdog_data)
2012 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
2013 data_size, watchdog_data);
2014 return EFI_EXIT(efi_set_watchdog(timeout));
2018 * efi_close_protocol() - close a protocol
2019 * @handle: handle on which the protocol shall be closed
2020 * @protocol: GUID of the protocol to close
2021 * @agent_handle: handle of the driver
2022 * @controller_handle: handle of the controller
2024 * This function implements the CloseProtocol service.
2026 * See the Unified Extensible Firmware Interface (UEFI) specification for
2029 * Return: status code
2031 static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
2032 const efi_guid_t *protocol,
2033 efi_handle_t agent_handle,
2034 efi_handle_t controller_handle)
2036 struct efi_handler *handler;
2037 struct efi_open_protocol_info_item *item;
2038 struct efi_open_protocol_info_item *pos;
2041 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
2044 if (!efi_search_obj(agent_handle) ||
2045 (controller_handle && !efi_search_obj(controller_handle))) {
2046 r = EFI_INVALID_PARAMETER;
2049 r = efi_search_protocol(handle, protocol, &handler);
2050 if (r != EFI_SUCCESS)
2054 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2055 if (item->info.agent_handle == agent_handle &&
2056 item->info.controller_handle == controller_handle) {
2057 efi_delete_open_info(item);
2066 * efi_open_protocol_information() - provide information about then open status
2067 * of a protocol on a handle
2068 * @handle: handle for which the information shall be retrieved
2069 * @protocol: GUID of the protocol
2070 * @entry_buffer: buffer to receive the open protocol information
2071 * @entry_count: number of entries available in the buffer
2073 * This function implements the OpenProtocolInformation service.
2075 * See the Unified Extensible Firmware Interface (UEFI) specification for
2078 * Return: status code
2080 static efi_status_t EFIAPI efi_open_protocol_information(
2081 efi_handle_t handle, const efi_guid_t *protocol,
2082 struct efi_open_protocol_info_entry **entry_buffer,
2083 efi_uintn_t *entry_count)
2085 unsigned long buffer_size;
2086 unsigned long count;
2087 struct efi_handler *handler;
2088 struct efi_open_protocol_info_item *item;
2091 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
2094 /* Check parameters */
2095 if (!entry_buffer) {
2096 r = EFI_INVALID_PARAMETER;
2099 r = efi_search_protocol(handle, protocol, &handler);
2100 if (r != EFI_SUCCESS)
2105 list_for_each_entry(item, &handler->open_infos, link) {
2106 if (item->info.open_count)
2109 *entry_count = count;
2110 *entry_buffer = NULL;
2117 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
2118 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2119 (void **)entry_buffer);
2120 if (r != EFI_SUCCESS)
2122 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2123 if (item->info.open_count)
2124 (*entry_buffer)[--count] = item->info;
2131 * efi_protocols_per_handle() - get protocols installed on a handle
2132 * @handle: handle for which the information is retrieved
2133 * @protocol_buffer: buffer with protocol GUIDs
2134 * @protocol_buffer_count: number of entries in the buffer
2136 * This function implements the ProtocolsPerHandleService.
2138 * See the Unified Extensible Firmware Interface (UEFI) specification for
2141 * Return: status code
2143 static efi_status_t EFIAPI efi_protocols_per_handle(
2144 efi_handle_t handle, efi_guid_t ***protocol_buffer,
2145 efi_uintn_t *protocol_buffer_count)
2147 unsigned long buffer_size;
2148 struct efi_object *efiobj;
2149 struct list_head *protocol_handle;
2152 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2153 protocol_buffer_count);
2155 if (!handle || !protocol_buffer || !protocol_buffer_count)
2156 return EFI_EXIT(EFI_INVALID_PARAMETER);
2158 *protocol_buffer = NULL;
2159 *protocol_buffer_count = 0;
2161 efiobj = efi_search_obj(handle);
2163 return EFI_EXIT(EFI_INVALID_PARAMETER);
2165 /* Count protocols */
2166 list_for_each(protocol_handle, &efiobj->protocols) {
2167 ++*protocol_buffer_count;
2171 if (*protocol_buffer_count) {
2174 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
2175 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2176 (void **)protocol_buffer);
2177 if (r != EFI_SUCCESS)
2179 list_for_each(protocol_handle, &efiobj->protocols) {
2180 struct efi_handler *protocol;
2182 protocol = list_entry(protocol_handle,
2183 struct efi_handler, link);
2184 (*protocol_buffer)[j] = (void *)protocol->guid;
2189 return EFI_EXIT(EFI_SUCCESS);
2193 * efi_locate_handle_buffer() - locate handles implementing a protocol
2194 * @search_type: selection criterion
2195 * @protocol: GUID of the protocol
2196 * @search_key: registration key
2197 * @no_handles: number of returned handles
2198 * @buffer: buffer with the returned handles
2200 * This function implements the LocateHandleBuffer service.
2202 * See the Unified Extensible Firmware Interface (UEFI) specification for
2205 * Return: status code
2207 static efi_status_t EFIAPI efi_locate_handle_buffer(
2208 enum efi_locate_search_type search_type,
2209 const efi_guid_t *protocol, void *search_key,
2210 efi_uintn_t *no_handles, efi_handle_t **buffer)
2213 efi_uintn_t buffer_size = 0;
2215 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
2216 no_handles, buffer);
2218 if (!no_handles || !buffer) {
2219 r = EFI_INVALID_PARAMETER;
2224 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2226 if (r != EFI_BUFFER_TOO_SMALL)
2228 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2230 if (r != EFI_SUCCESS)
2232 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2234 if (r == EFI_SUCCESS)
2235 *no_handles = buffer_size / sizeof(efi_handle_t);
2241 * efi_locate_protocol() - find an interface implementing a protocol
2242 * @protocol: GUID of the protocol
2243 * @registration: registration key passed to the notification function
2244 * @protocol_interface: interface implementing the protocol
2246 * This function implements the LocateProtocol service.
2248 * See the Unified Extensible Firmware Interface (UEFI) specification for
2251 * Return: status code
2253 static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
2255 void **protocol_interface)
2257 struct efi_handler *handler;
2259 struct efi_object *efiobj;
2261 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
2264 * The UEFI spec explicitly requires a protocol even if a registration
2265 * key is provided. This differs from the logic in LocateHandle().
2267 if (!protocol || !protocol_interface)
2268 return EFI_EXIT(EFI_INVALID_PARAMETER);
2271 struct efi_register_notify_event *event;
2272 struct efi_protocol_notification *handle;
2274 event = efi_check_register_notify_event(registration);
2276 return EFI_EXIT(EFI_INVALID_PARAMETER);
2278 * The UEFI spec requires to return EFI_NOT_FOUND if no
2279 * protocol instance matches protocol and registration.
2280 * So let's do the same for a mismatch between protocol and
2283 if (guidcmp(&event->protocol, protocol))
2285 if (list_empty(&event->handles))
2287 handle = list_first_entry(&event->handles,
2288 struct efi_protocol_notification,
2290 efiobj = handle->handle;
2291 list_del(&handle->link);
2293 ret = efi_search_protocol(efiobj, protocol, &handler);
2294 if (ret == EFI_SUCCESS)
2297 list_for_each_entry(efiobj, &efi_obj_list, link) {
2298 ret = efi_search_protocol(efiobj, protocol, &handler);
2299 if (ret == EFI_SUCCESS)
2304 *protocol_interface = NULL;
2305 return EFI_EXIT(EFI_NOT_FOUND);
2307 *protocol_interface = handler->protocol_interface;
2308 return EFI_EXIT(EFI_SUCCESS);
2312 * efi_locate_device_path() - Get the device path and handle of an device
2313 * implementing a protocol
2314 * @protocol: GUID of the protocol
2315 * @device_path: device path
2316 * @device: handle of the device
2318 * This function implements the LocateDevicePath service.
2320 * See the Unified Extensible Firmware Interface (UEFI) specification for
2323 * Return: status code
2325 static efi_status_t EFIAPI efi_locate_device_path(
2326 const efi_guid_t *protocol,
2327 struct efi_device_path **device_path,
2328 efi_handle_t *device)
2330 struct efi_device_path *dp;
2332 struct efi_handler *handler;
2333 efi_handle_t *handles;
2335 size_t len_best = 0;
2336 efi_uintn_t no_handles;
2340 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2342 if (!protocol || !device_path || !*device_path) {
2343 ret = EFI_INVALID_PARAMETER;
2347 /* Find end of device path */
2348 len = efi_dp_instance_size(*device_path);
2350 /* Get all handles implementing the protocol */
2351 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2352 &no_handles, &handles));
2353 if (ret != EFI_SUCCESS)
2356 for (i = 0; i < no_handles; ++i) {
2357 /* Find the device path protocol */
2358 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2360 if (ret != EFI_SUCCESS)
2362 dp = (struct efi_device_path *)handler->protocol_interface;
2363 len_dp = efi_dp_instance_size(dp);
2365 * This handle can only be a better fit
2366 * if its device path length is longer than the best fit and
2367 * if its device path length is shorter of equal the searched
2370 if (len_dp <= len_best || len_dp > len)
2372 /* Check if dp is a subpath of device_path */
2373 if (memcmp(*device_path, dp, len_dp))
2376 ret = EFI_INVALID_PARAMETER;
2379 *device = handles[i];
2383 remainder = (u8 *)*device_path + len_best;
2384 *device_path = (struct efi_device_path *)remainder;
2387 ret = EFI_NOT_FOUND;
2390 return EFI_EXIT(ret);
2394 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2396 * @handle: handle on which the protocol interfaces shall be installed
2397 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2400 * This function implements the MultipleProtocolInterfaces service.
2402 * See the Unified Extensible Firmware Interface (UEFI) specification for
2405 * Return: status code
2407 efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
2408 (efi_handle_t *handle, ...)
2410 EFI_ENTRY("%p", handle);
2413 const efi_guid_t *protocol;
2414 void *protocol_interface;
2415 efi_handle_t old_handle;
2416 efi_status_t r = EFI_SUCCESS;
2420 return EFI_EXIT(EFI_INVALID_PARAMETER);
2422 efi_va_start(argptr, handle);
2424 protocol = efi_va_arg(argptr, efi_guid_t*);
2427 protocol_interface = efi_va_arg(argptr, void*);
2428 /* Check that a device path has not been installed before */
2429 if (!guidcmp(protocol, &efi_guid_device_path)) {
2430 struct efi_device_path *dp = protocol_interface;
2432 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2434 if (r == EFI_SUCCESS &&
2435 dp->type == DEVICE_PATH_TYPE_END) {
2436 EFI_PRINT("Path %pD already installed\n",
2437 protocol_interface);
2438 r = EFI_ALREADY_STARTED;
2442 r = EFI_CALL(efi_install_protocol_interface(
2444 EFI_NATIVE_INTERFACE,
2445 protocol_interface));
2446 if (r != EFI_SUCCESS)
2451 if (r == EFI_SUCCESS)
2454 /* If an error occurred undo all changes. */
2455 efi_va_start(argptr, handle);
2457 protocol = efi_va_arg(argptr, efi_guid_t*);
2458 protocol_interface = efi_va_arg(argptr, void*);
2459 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
2460 protocol_interface));
2468 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2470 * @handle: handle from which the protocol interfaces shall be removed
2471 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2474 * This function implements the UninstallMultipleProtocolInterfaces service.
2476 * See the Unified Extensible Firmware Interface (UEFI) specification for
2479 * Return: status code
2481 static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
2482 efi_handle_t handle, ...)
2484 EFI_ENTRY("%p", handle);
2487 const efi_guid_t *protocol;
2488 void *protocol_interface;
2489 efi_status_t r = EFI_SUCCESS;
2493 return EFI_EXIT(EFI_INVALID_PARAMETER);
2495 efi_va_start(argptr, handle);
2497 protocol = efi_va_arg(argptr, efi_guid_t*);
2500 protocol_interface = efi_va_arg(argptr, void*);
2501 r = efi_uninstall_protocol(handle, protocol,
2502 protocol_interface);
2503 if (r != EFI_SUCCESS)
2508 if (r == EFI_SUCCESS) {
2509 /* If the last protocol has been removed, delete the handle. */
2510 if (list_empty(&handle->protocols)) {
2511 list_del(&handle->link);
2517 /* If an error occurred undo all changes. */
2518 efi_va_start(argptr, handle);
2520 protocol = efi_va_arg(argptr, efi_guid_t*);
2521 protocol_interface = efi_va_arg(argptr, void*);
2522 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2523 EFI_NATIVE_INTERFACE,
2524 protocol_interface));
2528 /* In case of an error always return EFI_INVALID_PARAMETER */
2529 return EFI_EXIT(EFI_INVALID_PARAMETER);
2533 * efi_calculate_crc32() - calculate cyclic redundancy code
2534 * @data: buffer with data
2535 * @data_size: size of buffer in bytes
2536 * @crc32_p: cyclic redundancy code
2538 * This function implements the CalculateCrc32 service.
2540 * See the Unified Extensible Firmware Interface (UEFI) specification for
2543 * Return: status code
2545 static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2546 efi_uintn_t data_size,
2549 efi_status_t ret = EFI_SUCCESS;
2551 EFI_ENTRY("%p, %zu", data, data_size);
2552 if (!data || !data_size || !crc32_p) {
2553 ret = EFI_INVALID_PARAMETER;
2556 *crc32_p = crc32(0, data, data_size);
2558 return EFI_EXIT(ret);
2562 * efi_copy_mem() - copy memory
2563 * @destination: destination of the copy operation
2564 * @source: source of the copy operation
2565 * @length: number of bytes to copy
2567 * This function implements the CopyMem service.
2569 * See the Unified Extensible Firmware Interface (UEFI) specification for
2572 static void EFIAPI efi_copy_mem(void *destination, const void *source,
2575 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
2576 memmove(destination, source, length);
2577 EFI_EXIT(EFI_SUCCESS);
2581 * efi_set_mem() - Fill memory with a byte value.
2582 * @buffer: buffer to fill
2583 * @size: size of buffer in bytes
2584 * @value: byte to copy to the buffer
2586 * This function implements the SetMem service.
2588 * See the Unified Extensible Firmware Interface (UEFI) specification for
2591 static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
2593 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
2594 memset(buffer, value, size);
2595 EFI_EXIT(EFI_SUCCESS);
2599 * efi_protocol_open() - open protocol interface on a handle
2600 * @handler: handler of a protocol
2601 * @protocol_interface: interface implementing the protocol
2602 * @agent_handle: handle of the driver
2603 * @controller_handle: handle of the controller
2604 * @attributes: attributes indicating how to open the protocol
2606 * Return: status code
2608 static efi_status_t efi_protocol_open(
2609 struct efi_handler *handler,
2610 void **protocol_interface, void *agent_handle,
2611 void *controller_handle, uint32_t attributes)
2613 struct efi_open_protocol_info_item *item;
2614 struct efi_open_protocol_info_entry *match = NULL;
2615 bool opened_by_driver = false;
2616 bool opened_exclusive = false;
2618 /* If there is no agent, only return the interface */
2622 /* For TEST_PROTOCOL ignore interface attribute */
2623 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2624 *protocol_interface = NULL;
2627 * Check if the protocol is already opened by a driver with the same
2628 * attributes or opened exclusively
2630 list_for_each_entry(item, &handler->open_infos, link) {
2631 if (item->info.agent_handle == agent_handle) {
2632 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2633 (item->info.attributes == attributes))
2634 return EFI_ALREADY_STARTED;
2636 if (item->info.attributes &
2637 EFI_OPEN_PROTOCOL_BY_DRIVER)
2638 opened_by_driver = true;
2640 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2641 opened_exclusive = true;
2644 /* Only one controller can open the protocol exclusively */
2645 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2646 if (opened_exclusive)
2647 return EFI_ACCESS_DENIED;
2648 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2649 if (opened_exclusive || opened_by_driver)
2650 return EFI_ACCESS_DENIED;
2653 /* Prepare exclusive opening */
2654 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2655 /* Try to disconnect controllers */
2657 opened_by_driver = false;
2658 list_for_each_entry(item, &handler->open_infos, link) {
2661 if (item->info.attributes ==
2662 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2663 ret = EFI_CALL(efi_disconnect_controller(
2664 item->info.controller_handle,
2665 item->info.agent_handle,
2667 if (ret == EFI_SUCCESS)
2669 * Child controllers may have been
2670 * removed from the open_infos list. So
2671 * let's restart the loop.
2673 goto disconnect_next;
2675 opened_by_driver = true;
2678 /* Only one driver can be connected */
2679 if (opened_by_driver)
2680 return EFI_ACCESS_DENIED;
2683 /* Find existing entry */
2684 list_for_each_entry(item, &handler->open_infos, link) {
2685 if (item->info.agent_handle == agent_handle &&
2686 item->info.controller_handle == controller_handle &&
2687 item->info.attributes == attributes)
2688 match = &item->info;
2690 /* None found, create one */
2692 match = efi_create_open_info(handler);
2694 return EFI_OUT_OF_RESOURCES;
2697 match->agent_handle = agent_handle;
2698 match->controller_handle = controller_handle;
2699 match->attributes = attributes;
2700 match->open_count++;
2703 /* For TEST_PROTOCOL ignore interface attribute. */
2704 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2705 *protocol_interface = handler->protocol_interface;
2711 * efi_open_protocol() - open protocol interface on a handle
2712 * @handle: handle on which the protocol shall be opened
2713 * @protocol: GUID of the protocol
2714 * @protocol_interface: interface implementing the protocol
2715 * @agent_handle: handle of the driver
2716 * @controller_handle: handle of the controller
2717 * @attributes: attributes indicating how to open the protocol
2719 * This function implements the OpenProtocol interface.
2721 * See the Unified Extensible Firmware Interface (UEFI) specification for
2724 * Return: status code
2726 static efi_status_t EFIAPI efi_open_protocol
2727 (efi_handle_t handle, const efi_guid_t *protocol,
2728 void **protocol_interface, efi_handle_t agent_handle,
2729 efi_handle_t controller_handle, uint32_t attributes)
2731 struct efi_handler *handler;
2732 efi_status_t r = EFI_INVALID_PARAMETER;
2734 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
2735 protocol_interface, agent_handle, controller_handle,
2738 if (!handle || !protocol ||
2739 (!protocol_interface && attributes !=
2740 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2744 switch (attributes) {
2745 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2746 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2747 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2749 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2750 if (controller_handle == handle)
2753 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2754 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
2755 /* Check that the controller handle is valid */
2756 if (!efi_search_obj(controller_handle))
2759 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
2760 /* Check that the agent handle is valid */
2761 if (!efi_search_obj(agent_handle))
2768 r = efi_search_protocol(handle, protocol, &handler);
2773 r = EFI_UNSUPPORTED;
2779 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2780 controller_handle, attributes);
2786 * efi_start_image() - call the entry point of an image
2787 * @image_handle: handle of the image
2788 * @exit_data_size: size of the buffer
2789 * @exit_data: buffer to receive the exit data of the called image
2791 * This function implements the StartImage service.
2793 * See the Unified Extensible Firmware Interface (UEFI) specification for
2796 * Return: status code
2798 efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2799 efi_uintn_t *exit_data_size,
2802 struct efi_loaded_image_obj *image_obj =
2803 (struct efi_loaded_image_obj *)image_handle;
2806 efi_handle_t parent_image = current_image;
2808 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2810 /* Check parameters */
2811 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2813 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2814 if (ret != EFI_SUCCESS)
2815 return EFI_EXIT(EFI_INVALID_PARAMETER);
2817 efi_is_direct_boot = false;
2819 image_obj->exit_data_size = exit_data_size;
2820 image_obj->exit_data = exit_data;
2822 /* call the image! */
2823 if (setjmp(&image_obj->exit_jmp)) {
2825 * We called the entry point of the child image with EFI_CALL
2826 * in the lines below. The child image called the Exit() boot
2827 * service efi_exit() which executed the long jump that brought
2828 * us to the current line. This implies that the second half
2829 * of the EFI_CALL macro has not been executed.
2833 * efi_exit() called efi_restore_gd(). We have to undo this
2834 * otherwise __efi_entry_check() will put the wrong value into
2840 * To get ready to call EFI_EXIT below we have to execute the
2841 * missed out steps of EFI_CALL.
2843 assert(__efi_entry_check());
2844 EFI_PRINT("%lu returned by started image\n",
2845 (unsigned long)((uintptr_t)image_obj->exit_status &
2847 current_image = parent_image;
2848 return EFI_EXIT(image_obj->exit_status);
2851 current_image = image_handle;
2852 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
2853 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
2854 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2857 * Usually UEFI applications call Exit() instead of returning.
2858 * But because the world doesn't consist of ponies and unicorns,
2859 * we're happy to emulate that behavior on behalf of a payload
2862 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2866 * efi_delete_image() - delete loaded image from memory)
2868 * @image_obj: handle of the loaded image
2869 * @loaded_image_protocol: loaded image protocol
2871 static void efi_delete_image(struct efi_loaded_image_obj *image_obj,
2872 struct efi_loaded_image *loaded_image_protocol)
2874 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2875 efi_size_in_pages(loaded_image_protocol->image_size));
2876 efi_delete_handle(&image_obj->header);
2880 * efi_unload_image() - unload an EFI image
2881 * @image_handle: handle of the image to be unloaded
2883 * This function implements the UnloadImage service.
2885 * See the Unified Extensible Firmware Interface (UEFI) specification for
2888 * Return: status code
2890 efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
2892 efi_status_t ret = EFI_SUCCESS;
2893 struct efi_object *efiobj;
2894 struct efi_loaded_image *loaded_image_protocol;
2896 EFI_ENTRY("%p", image_handle);
2898 efiobj = efi_search_obj(image_handle);
2900 ret = EFI_INVALID_PARAMETER;
2903 /* Find the loaded image protocol */
2904 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2905 (void **)&loaded_image_protocol,
2907 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2908 if (ret != EFI_SUCCESS) {
2909 ret = EFI_INVALID_PARAMETER;
2912 switch (efiobj->type) {
2913 case EFI_OBJECT_TYPE_STARTED_IMAGE:
2914 /* Call the unload function */
2915 if (!loaded_image_protocol->unload) {
2916 ret = EFI_UNSUPPORTED;
2919 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
2920 if (ret != EFI_SUCCESS)
2923 case EFI_OBJECT_TYPE_LOADED_IMAGE:
2926 ret = EFI_INVALID_PARAMETER;
2929 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
2930 loaded_image_protocol);
2932 return EFI_EXIT(ret);
2936 * efi_update_exit_data() - fill exit data parameters of StartImage()
2938 * @image_obj image handle
2939 * @exit_data_size size of the exit data buffer
2940 * @exit_data buffer with data returned by UEFI payload
2941 * Return: status code
2943 static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
2944 efi_uintn_t exit_data_size,
2950 * If exit_data is not provided to StartImage(), exit_data_size must be
2953 if (!image_obj->exit_data)
2955 if (image_obj->exit_data_size)
2956 *image_obj->exit_data_size = exit_data_size;
2957 if (exit_data_size && exit_data) {
2958 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
2960 (void **)image_obj->exit_data);
2961 if (ret != EFI_SUCCESS)
2963 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
2965 image_obj->exit_data = NULL;
2971 * efi_exit() - leave an EFI application or driver
2972 * @image_handle: handle of the application or driver that is exiting
2973 * @exit_status: status code
2974 * @exit_data_size: size of the buffer in bytes
2975 * @exit_data: buffer with data describing an error
2977 * This function implements the Exit service.
2979 * See the Unified Extensible Firmware Interface (UEFI) specification for
2982 * Return: status code
2984 static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
2985 efi_status_t exit_status,
2986 efi_uintn_t exit_data_size,
2990 * TODO: We should call the unload procedure of the loaded
2994 struct efi_loaded_image *loaded_image_protocol;
2995 struct efi_loaded_image_obj *image_obj =
2996 (struct efi_loaded_image_obj *)image_handle;
2998 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
2999 exit_data_size, exit_data);
3001 /* Check parameters */
3002 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3003 (void **)&loaded_image_protocol,
3005 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3006 if (ret != EFI_SUCCESS) {
3007 ret = EFI_INVALID_PARAMETER;
3011 /* Unloading of unstarted images */
3012 switch (image_obj->header.type) {
3013 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3015 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3016 efi_delete_image(image_obj, loaded_image_protocol);
3020 /* Handle does not refer to loaded image */
3021 ret = EFI_INVALID_PARAMETER;
3024 /* A started image can only be unloaded it is the last one started. */
3025 if (image_handle != current_image) {
3026 ret = EFI_INVALID_PARAMETER;
3030 /* Exit data is only foreseen in case of failure. */
3031 if (exit_status != EFI_SUCCESS) {
3032 ret = efi_update_exit_data(image_obj, exit_data_size,
3034 /* Exiting has priority. Don't return error to caller. */
3035 if (ret != EFI_SUCCESS)
3036 EFI_PRINT("%s: out of memory\n", __func__);
3038 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3039 exit_status != EFI_SUCCESS)
3040 efi_delete_image(image_obj, loaded_image_protocol);
3042 /* Make sure entry/exit counts for EFI world cross-overs match */
3043 EFI_EXIT(exit_status);
3046 * But longjmp out with the U-Boot gd, not the application's, as
3047 * the other end is a setjmp call inside EFI context.
3051 image_obj->exit_status = exit_status;
3052 longjmp(&image_obj->exit_jmp, 1);
3054 panic("EFI application exited");
3056 return EFI_EXIT(ret);
3060 * efi_handle_protocol() - get interface of a protocol on a handle
3061 * @handle: handle on which the protocol shall be opened
3062 * @protocol: GUID of the protocol
3063 * @protocol_interface: interface implementing the protocol
3065 * This function implements the HandleProtocol service.
3067 * See the Unified Extensible Firmware Interface (UEFI) specification for
3070 * Return: status code
3072 static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3073 const efi_guid_t *protocol,
3074 void **protocol_interface)
3076 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
3077 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
3081 * efi_bind_controller() - bind a single driver to a controller
3082 * @controller_handle: controller handle
3083 * @driver_image_handle: driver handle
3084 * @remain_device_path: remaining path
3086 * Return: status code
3088 static efi_status_t efi_bind_controller(
3089 efi_handle_t controller_handle,
3090 efi_handle_t driver_image_handle,
3091 struct efi_device_path *remain_device_path)
3093 struct efi_driver_binding_protocol *binding_protocol;
3096 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3097 &efi_guid_driver_binding_protocol,
3098 (void **)&binding_protocol,
3099 driver_image_handle, NULL,
3100 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3101 if (r != EFI_SUCCESS)
3103 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3105 remain_device_path));
3106 if (r == EFI_SUCCESS)
3107 r = EFI_CALL(binding_protocol->start(binding_protocol,
3109 remain_device_path));
3110 EFI_CALL(efi_close_protocol(driver_image_handle,
3111 &efi_guid_driver_binding_protocol,
3112 driver_image_handle, NULL));
3117 * efi_connect_single_controller() - connect a single driver to a controller
3118 * @controller_handle: controller
3119 * @driver_image_handle: driver
3120 * @remain_device_path: remaining path
3122 * Return: status code
3124 static efi_status_t efi_connect_single_controller(
3125 efi_handle_t controller_handle,
3126 efi_handle_t *driver_image_handle,
3127 struct efi_device_path *remain_device_path)
3129 efi_handle_t *buffer;
3133 size_t connected = 0;
3135 /* Get buffer with all handles with driver binding protocol */
3136 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3137 &efi_guid_driver_binding_protocol,
3138 NULL, &count, &buffer));
3139 if (r != EFI_SUCCESS)
3142 /* Context Override */
3143 if (driver_image_handle) {
3144 for (; *driver_image_handle; ++driver_image_handle) {
3145 for (i = 0; i < count; ++i) {
3146 if (buffer[i] == *driver_image_handle) {
3148 r = efi_bind_controller(
3150 *driver_image_handle,
3151 remain_device_path);
3153 * For drivers that do not support the
3154 * controller or are already connected
3155 * we receive an error code here.
3157 if (r == EFI_SUCCESS)
3165 * TODO: Some overrides are not yet implemented:
3166 * - Platform Driver Override
3167 * - Driver Family Override Search
3168 * - Bus Specific Driver Override
3171 /* Driver Binding Search */
3172 for (i = 0; i < count; ++i) {
3174 r = efi_bind_controller(controller_handle,
3176 remain_device_path);
3177 if (r == EFI_SUCCESS)
3182 efi_free_pool(buffer);
3184 return EFI_NOT_FOUND;
3189 * efi_connect_controller() - connect a controller to a driver
3190 * @controller_handle: handle of the controller
3191 * @driver_image_handle: handle of the driver
3192 * @remain_device_path: device path of a child controller
3193 * @recursive: true to connect all child controllers
3195 * This function implements the ConnectController service.
3197 * See the Unified Extensible Firmware Interface (UEFI) specification for
3200 * First all driver binding protocol handles are tried for binding drivers.
3201 * Afterwards all handles that have opened a protocol of the controller
3202 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3204 * Return: status code
3206 static efi_status_t EFIAPI efi_connect_controller(
3207 efi_handle_t controller_handle,
3208 efi_handle_t *driver_image_handle,
3209 struct efi_device_path *remain_device_path,
3213 efi_status_t ret = EFI_NOT_FOUND;
3214 struct efi_object *efiobj;
3216 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
3217 remain_device_path, recursive);
3219 efiobj = efi_search_obj(controller_handle);
3221 ret = EFI_INVALID_PARAMETER;
3225 r = efi_connect_single_controller(controller_handle,
3226 driver_image_handle,
3227 remain_device_path);
3228 if (r == EFI_SUCCESS)
3231 struct efi_handler *handler;
3232 struct efi_open_protocol_info_item *item;
3234 list_for_each_entry(handler, &efiobj->protocols, link) {
3235 list_for_each_entry(item, &handler->open_infos, link) {
3236 if (item->info.attributes &
3237 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3238 r = EFI_CALL(efi_connect_controller(
3239 item->info.controller_handle,
3240 driver_image_handle,
3243 if (r == EFI_SUCCESS)
3249 /* Check for child controller specified by end node */
3250 if (ret != EFI_SUCCESS && remain_device_path &&
3251 remain_device_path->type == DEVICE_PATH_TYPE_END)
3254 return EFI_EXIT(ret);
3258 * efi_reinstall_protocol_interface() - reinstall protocol interface
3259 * @handle: handle on which the protocol shall be reinstalled
3260 * @protocol: GUID of the protocol to be installed
3261 * @old_interface: interface to be removed
3262 * @new_interface: interface to be installed
3264 * This function implements the ReinstallProtocolInterface service.
3266 * See the Unified Extensible Firmware Interface (UEFI) specification for
3269 * The old interface is uninstalled. The new interface is installed.
3270 * Drivers are connected.
3272 * Return: status code
3274 static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3275 efi_handle_t handle, const efi_guid_t *protocol,
3276 void *old_interface, void *new_interface)
3280 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3283 /* Uninstall protocol but do not delete handle */
3284 ret = efi_uninstall_protocol(handle, protocol, old_interface);
3285 if (ret != EFI_SUCCESS)
3288 /* Install the new protocol */
3289 ret = efi_add_protocol(handle, protocol, new_interface);
3291 * The UEFI spec does not specify what should happen to the handle
3292 * if in case of an error no protocol interface remains on the handle.
3293 * So let's do nothing here.
3295 if (ret != EFI_SUCCESS)
3298 * The returned status code has to be ignored.
3299 * Do not create an error if no suitable driver for the handle exists.
3301 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3303 return EFI_EXIT(ret);
3307 * efi_get_child_controllers() - get all child controllers associated to a driver
3308 * @efiobj: handle of the controller
3309 * @driver_handle: handle of the driver
3310 * @number_of_children: number of child controllers
3311 * @child_handle_buffer: handles of the the child controllers
3313 * The allocated buffer has to be freed with free().
3315 * Return: status code
3317 static efi_status_t efi_get_child_controllers(
3318 struct efi_object *efiobj,
3319 efi_handle_t driver_handle,
3320 efi_uintn_t *number_of_children,
3321 efi_handle_t **child_handle_buffer)
3323 struct efi_handler *handler;
3324 struct efi_open_protocol_info_item *item;
3325 efi_uintn_t count = 0, i;
3328 /* Count all child controller associations */
3329 list_for_each_entry(handler, &efiobj->protocols, link) {
3330 list_for_each_entry(item, &handler->open_infos, link) {
3331 if (item->info.agent_handle == driver_handle &&
3332 item->info.attributes &
3333 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3338 * Create buffer. In case of duplicate child controller assignments
3339 * the buffer will be too large. But that does not harm.
3341 *number_of_children = 0;
3342 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3343 if (!*child_handle_buffer)
3344 return EFI_OUT_OF_RESOURCES;
3345 /* Copy unique child handles */
3346 list_for_each_entry(handler, &efiobj->protocols, link) {
3347 list_for_each_entry(item, &handler->open_infos, link) {
3348 if (item->info.agent_handle == driver_handle &&
3349 item->info.attributes &
3350 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3351 /* Check this is a new child controller */
3353 for (i = 0; i < *number_of_children; ++i) {
3354 if ((*child_handle_buffer)[i] ==
3355 item->info.controller_handle)
3358 /* Copy handle to buffer */
3360 i = (*number_of_children)++;
3361 (*child_handle_buffer)[i] =
3362 item->info.controller_handle;
3371 * efi_disconnect_controller() - disconnect a controller from a driver
3372 * @controller_handle: handle of the controller
3373 * @driver_image_handle: handle of the driver
3374 * @child_handle: handle of the child to destroy
3376 * This function implements the DisconnectController service.
3378 * See the Unified Extensible Firmware Interface (UEFI) specification for
3381 * Return: status code
3383 static efi_status_t EFIAPI efi_disconnect_controller(
3384 efi_handle_t controller_handle,
3385 efi_handle_t driver_image_handle,
3386 efi_handle_t child_handle)
3388 struct efi_driver_binding_protocol *binding_protocol;
3389 efi_handle_t *child_handle_buffer = NULL;
3390 size_t number_of_children = 0;
3392 size_t stop_count = 0;
3393 struct efi_object *efiobj;
3395 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3398 efiobj = efi_search_obj(controller_handle);
3400 r = EFI_INVALID_PARAMETER;
3404 if (child_handle && !efi_search_obj(child_handle)) {
3405 r = EFI_INVALID_PARAMETER;
3409 /* If no driver handle is supplied, disconnect all drivers */
3410 if (!driver_image_handle) {
3411 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3415 /* Create list of child handles */
3417 number_of_children = 1;
3418 child_handle_buffer = &child_handle;
3420 efi_get_child_controllers(efiobj,
3421 driver_image_handle,
3422 &number_of_children,
3423 &child_handle_buffer);
3426 /* Get the driver binding protocol */
3427 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3428 &efi_guid_driver_binding_protocol,
3429 (void **)&binding_protocol,
3430 driver_image_handle, NULL,
3431 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3432 if (r != EFI_SUCCESS)
3434 /* Remove the children */
3435 if (number_of_children) {
3436 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3439 child_handle_buffer));
3440 if (r == EFI_SUCCESS)
3443 /* Remove the driver */
3445 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3448 if (r == EFI_SUCCESS)
3450 EFI_CALL(efi_close_protocol(driver_image_handle,
3451 &efi_guid_driver_binding_protocol,
3452 driver_image_handle, NULL));
3460 free(child_handle_buffer);
3464 static struct efi_boot_services efi_boot_services = {
3466 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3467 .revision = EFI_SPECIFICATION_VERSION,
3468 .headersize = sizeof(struct efi_boot_services),
3470 .raise_tpl = efi_raise_tpl,
3471 .restore_tpl = efi_restore_tpl,
3472 .allocate_pages = efi_allocate_pages_ext,
3473 .free_pages = efi_free_pages_ext,
3474 .get_memory_map = efi_get_memory_map_ext,
3475 .allocate_pool = efi_allocate_pool_ext,
3476 .free_pool = efi_free_pool_ext,
3477 .create_event = efi_create_event_ext,
3478 .set_timer = efi_set_timer_ext,
3479 .wait_for_event = efi_wait_for_event,
3480 .signal_event = efi_signal_event_ext,
3481 .close_event = efi_close_event,
3482 .check_event = efi_check_event,
3483 .install_protocol_interface = efi_install_protocol_interface,
3484 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
3485 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
3486 .handle_protocol = efi_handle_protocol,
3488 .register_protocol_notify = efi_register_protocol_notify,
3489 .locate_handle = efi_locate_handle_ext,
3490 .locate_device_path = efi_locate_device_path,
3491 .install_configuration_table = efi_install_configuration_table_ext,
3492 .load_image = efi_load_image,
3493 .start_image = efi_start_image,
3495 .unload_image = efi_unload_image,
3496 .exit_boot_services = efi_exit_boot_services,
3497 .get_next_monotonic_count = efi_get_next_monotonic_count,
3499 .set_watchdog_timer = efi_set_watchdog_timer,
3500 .connect_controller = efi_connect_controller,
3501 .disconnect_controller = efi_disconnect_controller,
3502 .open_protocol = efi_open_protocol,
3503 .close_protocol = efi_close_protocol,
3504 .open_protocol_information = efi_open_protocol_information,
3505 .protocols_per_handle = efi_protocols_per_handle,
3506 .locate_handle_buffer = efi_locate_handle_buffer,
3507 .locate_protocol = efi_locate_protocol,
3508 .install_multiple_protocol_interfaces =
3509 efi_install_multiple_protocol_interfaces,
3510 .uninstall_multiple_protocol_interfaces =
3511 efi_uninstall_multiple_protocol_interfaces,
3512 .calculate_crc32 = efi_calculate_crc32,
3513 .copy_mem = efi_copy_mem,
3514 .set_mem = efi_set_mem,
3515 .create_event_ex = efi_create_event_ex,
3518 static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
3520 struct efi_system_table __efi_runtime_data systab = {
3522 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
3523 .revision = EFI_SPECIFICATION_VERSION,
3524 .headersize = sizeof(struct efi_system_table),
3526 .fw_vendor = firmware_vendor,
3527 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
3528 .con_in = (void *)&efi_con_in,
3529 .con_out = (void *)&efi_con_out,
3530 .std_err = (void *)&efi_con_out,
3531 .runtime = (void *)&efi_runtime_services,
3532 .boottime = (void *)&efi_boot_services,
3538 * efi_initialize_system_table() - Initialize system table
3540 * Return: status code
3542 efi_status_t efi_initialize_system_table(void)
3546 /* Allocate configuration table array */
3547 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3548 EFI_MAX_CONFIGURATION_TABLES *
3549 sizeof(struct efi_configuration_table),
3550 (void **)&systab.tables);
3552 /* Set CRC32 field in table headers */
3553 efi_update_table_header_crc32(&systab.hdr);
3554 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3555 efi_update_table_header_crc32(&efi_boot_services.hdr);