1 // SPDX-License-Identifier: GPL-2.0+
3 * EFI application boot time services
5 * Copyright (c) 2016 Alexander Graf
10 #include <efi_loader.h>
15 #include <linux/libfdt_env.h>
16 #include <u-boot/crc.h>
19 #include <u-boot/crc.h>
22 DECLARE_GLOBAL_DATA_PTR;
24 /* Task priority level */
25 static efi_uintn_t efi_tpl = TPL_APPLICATION;
27 /* This list contains all the EFI objects our payload has access to */
28 LIST_HEAD(efi_obj_list);
30 /* List of all events */
31 __efi_runtime_data LIST_HEAD(efi_events);
33 /* List of queued events */
34 LIST_HEAD(efi_event_queue);
36 /* Flag to disable timer activity in ExitBootServices() */
37 static bool timers_enabled = true;
39 /* List of all events registered by RegisterProtocolNotify() */
40 LIST_HEAD(efi_register_notify_events);
42 /* Handle of the currently executing image */
43 static efi_handle_t current_image;
47 * The "gd" pointer lives in a register on ARM and AArch64 that we declare
48 * fixed when compiling U-Boot. However, the payload does not know about that
49 * restriction so we need to manually swap its and our view of that register on
50 * EFI callback entry/exit.
52 static volatile gd_t *efi_gd, *app_gd;
55 /* 1 if inside U-Boot code, 0 if inside EFI payload code */
56 static int entry_count = 1;
57 static int nesting_level;
58 /* GUID of the device tree table */
59 const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
60 /* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
61 const efi_guid_t efi_guid_driver_binding_protocol =
62 EFI_DRIVER_BINDING_PROTOCOL_GUID;
64 /* event group ExitBootServices() invoked */
65 const efi_guid_t efi_guid_event_group_exit_boot_services =
66 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
67 /* event group SetVirtualAddressMap() invoked */
68 const efi_guid_t efi_guid_event_group_virtual_address_change =
69 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
70 /* event group memory map changed */
71 const efi_guid_t efi_guid_event_group_memory_map_change =
72 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
73 /* event group boot manager about to boot */
74 const efi_guid_t efi_guid_event_group_ready_to_boot =
75 EFI_EVENT_GROUP_READY_TO_BOOT;
76 /* event group ResetSystem() invoked (before ExitBootServices) */
77 const efi_guid_t efi_guid_event_group_reset_system =
78 EFI_EVENT_GROUP_RESET_SYSTEM;
80 static efi_status_t EFIAPI efi_disconnect_controller(
81 efi_handle_t controller_handle,
82 efi_handle_t driver_image_handle,
83 efi_handle_t child_handle);
85 /* Called on every callback entry */
86 int __efi_entry_check(void)
88 int ret = entry_count++ == 0;
97 /* Called on every callback exit */
98 int __efi_exit_check(void)
100 int ret = --entry_count == 0;
107 /* Called from do_bootefi_exec() */
108 void efi_save_gd(void)
116 * Special case handler for error/abort that just forces things back to u-boot
117 * world so we can dump out an abort message, without any care about returning
118 * back to UEFI world.
120 void efi_restore_gd(void)
123 /* Only restore if we're already in EFI context */
131 * indent_string() - returns a string for indenting with two spaces per level
132 * @level: indent level
134 * A maximum of ten indent levels is supported. Higher indent levels will be
137 * Return: A string for indenting with two spaces per level is
140 static const char *indent_string(int level)
142 const char *indent = " ";
143 const int max = strlen(indent);
145 level = min(max, level * 2);
146 return &indent[max - level];
149 const char *__efi_nesting(void)
151 return indent_string(nesting_level);
154 const char *__efi_nesting_inc(void)
156 return indent_string(nesting_level++);
159 const char *__efi_nesting_dec(void)
161 return indent_string(--nesting_level);
165 * efi_event_is_queued() - check if an event is queued
168 * Return: true if event is queued
170 static bool efi_event_is_queued(struct efi_event *event)
172 return !!event->queue_link.next;
176 * efi_process_event_queue() - process event queue
178 static void efi_process_event_queue(void)
180 while (!list_empty(&efi_event_queue)) {
181 struct efi_event *event;
184 event = list_first_entry(&efi_event_queue, struct efi_event,
186 if (efi_tpl >= event->notify_tpl)
188 list_del(&event->queue_link);
189 event->queue_link.next = NULL;
190 event->queue_link.prev = NULL;
191 /* Events must be executed at the event's TPL */
193 efi_tpl = event->notify_tpl;
194 EFI_CALL_VOID(event->notify_function(event,
195 event->notify_context));
197 if (event->type == EVT_NOTIFY_SIGNAL)
198 event->is_signaled = 0;
203 * efi_queue_event() - queue an EFI event
204 * @event: event to signal
206 * This function queues the notification function of the event for future
210 static void efi_queue_event(struct efi_event *event)
212 struct efi_event *item;
214 if (!event->notify_function)
217 if (!efi_event_is_queued(event)) {
219 * Events must be notified in order of decreasing task priority
220 * level. Insert the new event accordingly.
222 list_for_each_entry(item, &efi_event_queue, queue_link) {
223 if (item->notify_tpl < event->notify_tpl) {
224 list_add_tail(&event->queue_link,
231 list_add_tail(&event->queue_link, &efi_event_queue);
233 efi_process_event_queue();
237 * is_valid_tpl() - check if the task priority level is valid
239 * @tpl: TPL level to check
240 * Return: status code
242 efi_status_t is_valid_tpl(efi_uintn_t tpl)
245 case TPL_APPLICATION:
251 return EFI_INVALID_PARAMETER;
256 * efi_signal_event() - signal an EFI event
257 * @event: event to signal
259 * This function signals an event. If the event belongs to an event group all
260 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL
261 * their notification function is queued.
263 * For the SignalEvent service see efi_signal_event_ext.
265 void efi_signal_event(struct efi_event *event)
267 if (event->is_signaled)
270 struct efi_event *evt;
273 * The signaled state has to set before executing any
274 * notification function
276 list_for_each_entry(evt, &efi_events, link) {
277 if (!evt->group || guidcmp(evt->group, event->group))
279 if (evt->is_signaled)
281 evt->is_signaled = true;
283 list_for_each_entry(evt, &efi_events, link) {
284 if (!evt->group || guidcmp(evt->group, event->group))
286 efi_queue_event(evt);
289 event->is_signaled = true;
290 efi_queue_event(event);
295 * efi_raise_tpl() - raise the task priority level
296 * @new_tpl: new value of the task priority level
298 * This function implements the RaiseTpl service.
300 * See the Unified Extensible Firmware Interface (UEFI) specification for
303 * Return: old value of the task priority level
305 static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
307 efi_uintn_t old_tpl = efi_tpl;
309 EFI_ENTRY("0x%zx", new_tpl);
311 if (new_tpl < efi_tpl)
312 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
314 if (efi_tpl > TPL_HIGH_LEVEL)
315 efi_tpl = TPL_HIGH_LEVEL;
317 EFI_EXIT(EFI_SUCCESS);
322 * efi_restore_tpl() - lower the task priority level
323 * @old_tpl: value of the task priority level to be restored
325 * This function implements the RestoreTpl service.
327 * See the Unified Extensible Firmware Interface (UEFI) specification for
330 static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
332 EFI_ENTRY("0x%zx", old_tpl);
334 if (old_tpl > efi_tpl)
335 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
337 if (efi_tpl > TPL_HIGH_LEVEL)
338 efi_tpl = TPL_HIGH_LEVEL;
341 * Lowering the TPL may have made queued events eligible for execution.
345 EFI_EXIT(EFI_SUCCESS);
349 * efi_allocate_pages_ext() - allocate memory pages
350 * @type: type of allocation to be performed
351 * @memory_type: usage type of the allocated memory
352 * @pages: number of pages to be allocated
353 * @memory: allocated memory
355 * This function implements the AllocatePages service.
357 * See the Unified Extensible Firmware Interface (UEFI) specification for
360 * Return: status code
362 static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
368 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
369 r = efi_allocate_pages(type, memory_type, pages, memory);
374 * efi_free_pages_ext() - Free memory pages.
375 * @memory: start of the memory area to be freed
376 * @pages: number of pages to be freed
378 * This function implements the FreePages service.
380 * See the Unified Extensible Firmware Interface (UEFI) specification for
383 * Return: status code
385 static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
390 EFI_ENTRY("%llx, 0x%zx", memory, pages);
391 r = efi_free_pages(memory, pages);
396 * efi_get_memory_map_ext() - get map describing memory usage
397 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
398 * on exit the size of the copied memory map
399 * @memory_map: buffer to which the memory map is written
400 * @map_key: key for the memory map
401 * @descriptor_size: size of an individual memory descriptor
402 * @descriptor_version: version number of the memory descriptor structure
404 * This function implements the GetMemoryMap service.
406 * See the Unified Extensible Firmware Interface (UEFI) specification for
409 * Return: status code
411 static efi_status_t EFIAPI efi_get_memory_map_ext(
412 efi_uintn_t *memory_map_size,
413 struct efi_mem_desc *memory_map,
414 efi_uintn_t *map_key,
415 efi_uintn_t *descriptor_size,
416 uint32_t *descriptor_version)
420 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
421 map_key, descriptor_size, descriptor_version);
422 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
423 descriptor_size, descriptor_version);
428 * efi_allocate_pool_ext() - allocate memory from pool
429 * @pool_type: type of the pool from which memory is to be allocated
430 * @size: number of bytes to be allocated
431 * @buffer: allocated memory
433 * This function implements the AllocatePool service.
435 * See the Unified Extensible Firmware Interface (UEFI) specification for
438 * Return: status code
440 static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
446 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
447 r = efi_allocate_pool(pool_type, size, buffer);
452 * efi_free_pool_ext() - free memory from pool
453 * @buffer: start of memory to be freed
455 * This function implements the FreePool service.
457 * See the Unified Extensible Firmware Interface (UEFI) specification for
460 * Return: status code
462 static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
466 EFI_ENTRY("%p", buffer);
467 r = efi_free_pool(buffer);
472 * efi_add_handle() - add a new handle to the object list
474 * @handle: handle to be added
476 * The protocols list is initialized. The handle is added to the list of known
479 void efi_add_handle(efi_handle_t handle)
483 INIT_LIST_HEAD(&handle->protocols);
484 list_add_tail(&handle->link, &efi_obj_list);
488 * efi_create_handle() - create handle
489 * @handle: new handle
491 * Return: status code
493 efi_status_t efi_create_handle(efi_handle_t *handle)
495 struct efi_object *obj;
497 obj = calloc(1, sizeof(struct efi_object));
499 return EFI_OUT_OF_RESOURCES;
508 * efi_search_protocol() - find a protocol on a handle.
510 * @protocol_guid: GUID of the protocol
511 * @handler: reference to the protocol
513 * Return: status code
515 efi_status_t efi_search_protocol(const efi_handle_t handle,
516 const efi_guid_t *protocol_guid,
517 struct efi_handler **handler)
519 struct efi_object *efiobj;
520 struct list_head *lhandle;
522 if (!handle || !protocol_guid)
523 return EFI_INVALID_PARAMETER;
524 efiobj = efi_search_obj(handle);
526 return EFI_INVALID_PARAMETER;
527 list_for_each(lhandle, &efiobj->protocols) {
528 struct efi_handler *protocol;
530 protocol = list_entry(lhandle, struct efi_handler, link);
531 if (!guidcmp(protocol->guid, protocol_guid)) {
537 return EFI_NOT_FOUND;
541 * efi_remove_protocol() - delete protocol from a handle
542 * @handle: handle from which the protocol shall be deleted
543 * @protocol: GUID of the protocol to be deleted
544 * @protocol_interface: interface of the protocol implementation
546 * Return: status code
548 efi_status_t efi_remove_protocol(const efi_handle_t handle,
549 const efi_guid_t *protocol,
550 void *protocol_interface)
552 struct efi_handler *handler;
555 ret = efi_search_protocol(handle, protocol, &handler);
556 if (ret != EFI_SUCCESS)
558 if (handler->protocol_interface != protocol_interface)
559 return EFI_NOT_FOUND;
560 list_del(&handler->link);
566 * efi_remove_all_protocols() - delete all protocols from a handle
567 * @handle: handle from which the protocols shall be deleted
569 * Return: status code
571 efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
573 struct efi_object *efiobj;
574 struct efi_handler *protocol;
575 struct efi_handler *pos;
577 efiobj = efi_search_obj(handle);
579 return EFI_INVALID_PARAMETER;
580 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
583 ret = efi_remove_protocol(handle, protocol->guid,
584 protocol->protocol_interface);
585 if (ret != EFI_SUCCESS)
592 * efi_delete_handle() - delete handle
594 * @handle: handle to delete
596 void efi_delete_handle(efi_handle_t handle)
600 efi_remove_all_protocols(handle);
601 list_del(&handle->link);
606 * efi_is_event() - check if a pointer is a valid event
607 * @event: pointer to check
609 * Return: status code
611 static efi_status_t efi_is_event(const struct efi_event *event)
613 const struct efi_event *evt;
616 return EFI_INVALID_PARAMETER;
617 list_for_each_entry(evt, &efi_events, link) {
621 return EFI_INVALID_PARAMETER;
625 * efi_create_event() - create an event
627 * @type: type of the event to create
628 * @notify_tpl: task priority level of the event
629 * @notify_function: notification function of the event
630 * @notify_context: pointer passed to the notification function
631 * @group: event group
632 * @event: created event
634 * This function is used inside U-Boot code to create an event.
636 * For the API function implementing the CreateEvent service see
637 * efi_create_event_ext.
639 * Return: status code
641 efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
642 void (EFIAPI *notify_function) (
643 struct efi_event *event,
645 void *notify_context, efi_guid_t *group,
646 struct efi_event **event)
648 struct efi_event *evt;
653 return EFI_INVALID_PARAMETER;
658 case EVT_NOTIFY_SIGNAL:
659 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
660 case EVT_NOTIFY_WAIT:
661 case EVT_TIMER | EVT_NOTIFY_WAIT:
662 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
663 pool_type = EFI_BOOT_SERVICES_DATA;
665 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
666 pool_type = EFI_RUNTIME_SERVICES_DATA;
669 return EFI_INVALID_PARAMETER;
672 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
673 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS))
674 return EFI_INVALID_PARAMETER;
676 ret = efi_allocate_pool(pool_type, sizeof(struct efi_event),
678 if (ret != EFI_SUCCESS)
680 memset(evt, 0, sizeof(struct efi_event));
682 evt->notify_tpl = notify_tpl;
683 evt->notify_function = notify_function;
684 evt->notify_context = notify_context;
686 /* Disable timers on boot up */
687 evt->trigger_next = -1ULL;
688 list_add_tail(&evt->link, &efi_events);
694 * efi_create_event_ex() - create an event in a group
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
700 * @event_group: event group
702 * This function implements the CreateEventEx service.
704 * See the Unified Extensible Firmware Interface (UEFI) specification for
707 * Return: status code
709 efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
710 void (EFIAPI *notify_function) (
711 struct efi_event *event,
713 void *notify_context,
714 efi_guid_t *event_group,
715 struct efi_event **event)
719 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
720 notify_context, event_group);
723 * The allowable input parameters are the same as in CreateEvent()
724 * except for the following two disallowed event types.
727 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
728 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
729 ret = EFI_INVALID_PARAMETER;
733 ret = efi_create_event(type, notify_tpl, notify_function,
734 notify_context, event_group, event);
736 return EFI_EXIT(ret);
740 * efi_create_event_ext() - create an event
741 * @type: type of the event to create
742 * @notify_tpl: task priority level of the event
743 * @notify_function: notification function of the event
744 * @notify_context: pointer passed to the notification function
745 * @event: created event
747 * This function implements the CreateEvent service.
749 * See the Unified Extensible Firmware Interface (UEFI) specification for
752 * Return: status code
754 static efi_status_t EFIAPI efi_create_event_ext(
755 uint32_t type, efi_uintn_t notify_tpl,
756 void (EFIAPI *notify_function) (
757 struct efi_event *event,
759 void *notify_context, struct efi_event **event)
761 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
763 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
764 notify_context, NULL, event));
768 * efi_timer_check() - check if a timer event has occurred
770 * Check if a timer event has occurred or a queued notification function should
773 * Our timers have to work without interrupts, so we check whenever keyboard
774 * input or disk accesses happen if enough time elapsed for them to fire.
776 void efi_timer_check(void)
778 struct efi_event *evt;
779 u64 now = timer_get_us();
781 list_for_each_entry(evt, &efi_events, link) {
784 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
786 switch (evt->trigger_type) {
787 case EFI_TIMER_RELATIVE:
788 evt->trigger_type = EFI_TIMER_STOP;
790 case EFI_TIMER_PERIODIC:
791 evt->trigger_next += evt->trigger_time;
796 evt->is_signaled = false;
797 efi_signal_event(evt);
799 efi_process_event_queue();
804 * efi_set_timer() - set the trigger time for a timer event or stop the event
805 * @event: event for which the timer is set
806 * @type: type of the timer
807 * @trigger_time: trigger period in multiples of 100 ns
809 * This is the function for internal usage in U-Boot. For the API function
810 * implementing the SetTimer service see efi_set_timer_ext.
812 * Return: status code
814 efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
815 uint64_t trigger_time)
817 /* Check that the event is valid */
818 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
819 return EFI_INVALID_PARAMETER;
822 * The parameter defines a multiple of 100 ns.
823 * We use multiples of 1000 ns. So divide by 10.
825 do_div(trigger_time, 10);
829 event->trigger_next = -1ULL;
831 case EFI_TIMER_PERIODIC:
832 case EFI_TIMER_RELATIVE:
833 event->trigger_next = timer_get_us() + trigger_time;
836 return EFI_INVALID_PARAMETER;
838 event->trigger_type = type;
839 event->trigger_time = trigger_time;
840 event->is_signaled = false;
845 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
847 * @event: event for which the timer is set
848 * @type: type of the timer
849 * @trigger_time: trigger period in multiples of 100 ns
851 * This function implements the SetTimer service.
853 * See the Unified Extensible Firmware Interface (UEFI) specification for
857 * Return: status code
859 static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
860 enum efi_timer_delay type,
861 uint64_t trigger_time)
863 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
864 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
868 * efi_wait_for_event() - wait for events to be signaled
869 * @num_events: number of events to be waited for
870 * @event: events to be waited for
871 * @index: index of the event that was signaled
873 * This function implements the WaitForEvent service.
875 * See the Unified Extensible Firmware Interface (UEFI) specification for
878 * Return: status code
880 static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
881 struct efi_event **event,
886 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
888 /* Check parameters */
889 if (!num_events || !event)
890 return EFI_EXIT(EFI_INVALID_PARAMETER);
892 if (efi_tpl != TPL_APPLICATION)
893 return EFI_EXIT(EFI_UNSUPPORTED);
894 for (i = 0; i < num_events; ++i) {
895 if (efi_is_event(event[i]) != EFI_SUCCESS)
896 return EFI_EXIT(EFI_INVALID_PARAMETER);
897 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
898 return EFI_EXIT(EFI_INVALID_PARAMETER);
899 if (!event[i]->is_signaled)
900 efi_queue_event(event[i]);
903 /* Wait for signal */
905 for (i = 0; i < num_events; ++i) {
906 if (event[i]->is_signaled)
909 /* Allow events to occur. */
915 * Reset the signal which is passed to the caller to allow periodic
918 event[i]->is_signaled = false;
922 return EFI_EXIT(EFI_SUCCESS);
926 * efi_signal_event_ext() - signal an EFI event
927 * @event: event to signal
929 * This function implements the SignalEvent service.
931 * See the Unified Extensible Firmware Interface (UEFI) specification for
934 * This functions sets the signaled state of the event and queues the
935 * notification function for execution.
937 * Return: status code
939 static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
941 EFI_ENTRY("%p", event);
942 if (efi_is_event(event) != EFI_SUCCESS)
943 return EFI_EXIT(EFI_INVALID_PARAMETER);
944 efi_signal_event(event);
945 return EFI_EXIT(EFI_SUCCESS);
949 * efi_close_event() - close an EFI event
950 * @event: event to close
952 * This function implements the CloseEvent service.
954 * See the Unified Extensible Firmware Interface (UEFI) specification for
957 * Return: status code
959 static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
961 struct efi_register_notify_event *item, *next;
963 EFI_ENTRY("%p", event);
964 if (efi_is_event(event) != EFI_SUCCESS)
965 return EFI_EXIT(EFI_INVALID_PARAMETER);
967 /* Remove protocol notify registrations for the event */
968 list_for_each_entry_safe(item, next, &efi_register_notify_events,
970 if (event == item->event) {
971 struct efi_protocol_notification *hitem, *hnext;
973 /* Remove signaled handles */
974 list_for_each_entry_safe(hitem, hnext, &item->handles,
976 list_del(&hitem->link);
979 list_del(&item->link);
983 /* Remove event from queue */
984 if (efi_event_is_queued(event))
985 list_del(&event->queue_link);
987 list_del(&event->link);
988 efi_free_pool(event);
989 return EFI_EXIT(EFI_SUCCESS);
993 * efi_check_event() - check if an event is signaled
994 * @event: event to check
996 * This function implements the CheckEvent service.
998 * See the Unified Extensible Firmware Interface (UEFI) specification for
1001 * If an event is not signaled yet, the notification function is queued. The
1002 * signaled state is cleared.
1004 * Return: status code
1006 static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
1008 EFI_ENTRY("%p", event);
1010 if (efi_is_event(event) != EFI_SUCCESS ||
1011 event->type & EVT_NOTIFY_SIGNAL)
1012 return EFI_EXIT(EFI_INVALID_PARAMETER);
1013 if (!event->is_signaled)
1014 efi_queue_event(event);
1015 if (event->is_signaled) {
1016 event->is_signaled = false;
1017 return EFI_EXIT(EFI_SUCCESS);
1019 return EFI_EXIT(EFI_NOT_READY);
1023 * efi_search_obj() - find the internal EFI object for a handle
1024 * @handle: handle to find
1026 * Return: EFI object
1028 struct efi_object *efi_search_obj(const efi_handle_t handle)
1030 struct efi_object *efiobj;
1035 list_for_each_entry(efiobj, &efi_obj_list, link) {
1036 if (efiobj == handle)
1043 * efi_open_protocol_info_entry() - create open protocol info entry and add it
1045 * @handler: handler of a protocol
1047 * Return: open protocol info entry
1049 static struct efi_open_protocol_info_entry *efi_create_open_info(
1050 struct efi_handler *handler)
1052 struct efi_open_protocol_info_item *item;
1054 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1057 /* Append the item to the open protocol info list. */
1058 list_add_tail(&item->link, &handler->open_infos);
1064 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1065 * @item: open protocol info entry to delete
1067 * Return: status code
1069 static efi_status_t efi_delete_open_info(
1070 struct efi_open_protocol_info_item *item)
1072 list_del(&item->link);
1078 * efi_add_protocol() - install new protocol on a handle
1079 * @handle: handle on which the protocol shall be installed
1080 * @protocol: GUID of the protocol to be installed
1081 * @protocol_interface: interface of the protocol implementation
1083 * Return: status code
1085 efi_status_t efi_add_protocol(const efi_handle_t handle,
1086 const efi_guid_t *protocol,
1087 void *protocol_interface)
1089 struct efi_object *efiobj;
1090 struct efi_handler *handler;
1092 struct efi_register_notify_event *event;
1094 efiobj = efi_search_obj(handle);
1096 return EFI_INVALID_PARAMETER;
1097 ret = efi_search_protocol(handle, protocol, NULL);
1098 if (ret != EFI_NOT_FOUND)
1099 return EFI_INVALID_PARAMETER;
1100 handler = calloc(1, sizeof(struct efi_handler));
1102 return EFI_OUT_OF_RESOURCES;
1103 handler->guid = protocol;
1104 handler->protocol_interface = protocol_interface;
1105 INIT_LIST_HEAD(&handler->open_infos);
1106 list_add_tail(&handler->link, &efiobj->protocols);
1108 /* Notify registered events */
1109 list_for_each_entry(event, &efi_register_notify_events, link) {
1110 if (!guidcmp(protocol, &event->protocol)) {
1111 struct efi_protocol_notification *notif;
1113 notif = calloc(1, sizeof(*notif));
1115 list_del(&handler->link);
1117 return EFI_OUT_OF_RESOURCES;
1119 notif->handle = handle;
1120 list_add_tail(¬if->link, &event->handles);
1121 event->event->is_signaled = false;
1122 efi_signal_event(event->event);
1126 if (!guidcmp(&efi_guid_device_path, protocol))
1127 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
1132 * efi_install_protocol_interface() - install protocol interface
1133 * @handle: handle on which the protocol shall be installed
1134 * @protocol: GUID of the protocol to be installed
1135 * @protocol_interface_type: type of the interface to be installed,
1136 * always EFI_NATIVE_INTERFACE
1137 * @protocol_interface: interface of the protocol implementation
1139 * This function implements the InstallProtocolInterface service.
1141 * See the Unified Extensible Firmware Interface (UEFI) specification for
1144 * Return: status code
1146 static efi_status_t EFIAPI efi_install_protocol_interface(
1147 efi_handle_t *handle, const efi_guid_t *protocol,
1148 int protocol_interface_type, void *protocol_interface)
1152 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1153 protocol_interface);
1155 if (!handle || !protocol ||
1156 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1157 r = EFI_INVALID_PARAMETER;
1161 /* Create new handle if requested. */
1163 r = efi_create_handle(handle);
1164 if (r != EFI_SUCCESS)
1166 EFI_PRINT("new handle %p\n", *handle);
1168 EFI_PRINT("handle %p\n", *handle);
1170 /* Add new protocol */
1171 r = efi_add_protocol(*handle, protocol, protocol_interface);
1177 * efi_get_drivers() - get all drivers associated to a controller
1178 * @handle: handle of the controller
1179 * @protocol: protocol GUID (optional)
1180 * @number_of_drivers: number of child controllers
1181 * @driver_handle_buffer: handles of the the drivers
1183 * The allocated buffer has to be freed with free().
1185 * Return: status code
1187 static efi_status_t efi_get_drivers(efi_handle_t handle,
1188 const efi_guid_t *protocol,
1189 efi_uintn_t *number_of_drivers,
1190 efi_handle_t **driver_handle_buffer)
1192 struct efi_handler *handler;
1193 struct efi_open_protocol_info_item *item;
1194 efi_uintn_t count = 0, i;
1197 /* Count all driver associations */
1198 list_for_each_entry(handler, &handle->protocols, link) {
1199 if (protocol && guidcmp(handler->guid, protocol))
1201 list_for_each_entry(item, &handler->open_infos, link) {
1202 if (item->info.attributes &
1203 EFI_OPEN_PROTOCOL_BY_DRIVER)
1207 *number_of_drivers = 0;
1209 *driver_handle_buffer = NULL;
1213 * Create buffer. In case of duplicate driver assignments the buffer
1214 * will be too large. But that does not harm.
1216 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1217 if (!*driver_handle_buffer)
1218 return EFI_OUT_OF_RESOURCES;
1219 /* Collect unique driver handles */
1220 list_for_each_entry(handler, &handle->protocols, link) {
1221 if (protocol && guidcmp(handler->guid, protocol))
1223 list_for_each_entry(item, &handler->open_infos, link) {
1224 if (item->info.attributes &
1225 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1226 /* Check this is a new driver */
1228 for (i = 0; i < *number_of_drivers; ++i) {
1229 if ((*driver_handle_buffer)[i] ==
1230 item->info.agent_handle)
1233 /* Copy handle to buffer */
1235 i = (*number_of_drivers)++;
1236 (*driver_handle_buffer)[i] =
1237 item->info.agent_handle;
1246 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
1247 * @handle: handle of the controller
1248 * @protocol: protocol GUID (optional)
1249 * @child_handle: handle of the child to destroy
1251 * This function implements the DisconnectController service.
1253 * See the Unified Extensible Firmware Interface (UEFI) specification for
1256 * Return: status code
1258 static efi_status_t efi_disconnect_all_drivers
1259 (efi_handle_t handle,
1260 const efi_guid_t *protocol,
1261 efi_handle_t child_handle)
1263 efi_uintn_t number_of_drivers;
1264 efi_handle_t *driver_handle_buffer;
1265 efi_status_t r, ret;
1267 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
1268 &driver_handle_buffer);
1269 if (ret != EFI_SUCCESS)
1271 if (!number_of_drivers)
1273 ret = EFI_NOT_FOUND;
1274 while (number_of_drivers) {
1275 r = EFI_CALL(efi_disconnect_controller(
1277 driver_handle_buffer[--number_of_drivers],
1279 if (r == EFI_SUCCESS)
1282 free(driver_handle_buffer);
1287 * efi_uninstall_protocol() - uninstall protocol interface
1289 * @handle: handle from which the protocol shall be removed
1290 * @protocol: GUID of the protocol to be removed
1291 * @protocol_interface: interface to be removed
1293 * This function DOES NOT delete a handle without installed protocol.
1295 * Return: status code
1297 static efi_status_t efi_uninstall_protocol
1298 (efi_handle_t handle, const efi_guid_t *protocol,
1299 void *protocol_interface)
1301 struct efi_object *efiobj;
1302 struct efi_handler *handler;
1303 struct efi_open_protocol_info_item *item;
1304 struct efi_open_protocol_info_item *pos;
1308 efiobj = efi_search_obj(handle);
1310 r = EFI_INVALID_PARAMETER;
1313 /* Find the protocol on the handle */
1314 r = efi_search_protocol(handle, protocol, &handler);
1315 if (r != EFI_SUCCESS)
1317 /* Disconnect controllers */
1318 efi_disconnect_all_drivers(efiobj, protocol, NULL);
1319 /* Close protocol */
1320 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1321 if (item->info.attributes ==
1322 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1323 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1324 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1325 list_del(&item->link);
1327 if (!list_empty(&handler->open_infos)) {
1328 r = EFI_ACCESS_DENIED;
1331 r = efi_remove_protocol(handle, protocol, protocol_interface);
1337 * efi_uninstall_protocol_interface() - uninstall protocol interface
1338 * @handle: handle from which the protocol shall be removed
1339 * @protocol: GUID of the protocol to be removed
1340 * @protocol_interface: interface to be removed
1342 * This function implements the UninstallProtocolInterface service.
1344 * See the Unified Extensible Firmware Interface (UEFI) specification for
1347 * Return: status code
1349 static efi_status_t EFIAPI efi_uninstall_protocol_interface
1350 (efi_handle_t handle, const efi_guid_t *protocol,
1351 void *protocol_interface)
1355 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1357 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1358 if (ret != EFI_SUCCESS)
1361 /* If the last protocol has been removed, delete the handle. */
1362 if (list_empty(&handle->protocols)) {
1363 list_del(&handle->link);
1367 return EFI_EXIT(ret);
1371 * efi_register_protocol_notify() - register an event for notification when a
1372 * protocol is installed.
1373 * @protocol: GUID of the protocol whose installation shall be notified
1374 * @event: event to be signaled upon installation of the protocol
1375 * @registration: key for retrieving the registration information
1377 * This function implements the RegisterProtocolNotify service.
1378 * See the Unified Extensible Firmware Interface (UEFI) specification
1381 * Return: status code
1383 static efi_status_t EFIAPI efi_register_protocol_notify(
1384 const efi_guid_t *protocol,
1385 struct efi_event *event,
1386 void **registration)
1388 struct efi_register_notify_event *item;
1389 efi_status_t ret = EFI_SUCCESS;
1391 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
1393 if (!protocol || !event || !registration) {
1394 ret = EFI_INVALID_PARAMETER;
1398 item = calloc(1, sizeof(struct efi_register_notify_event));
1400 ret = EFI_OUT_OF_RESOURCES;
1404 item->event = event;
1405 guidcpy(&item->protocol, protocol);
1406 INIT_LIST_HEAD(&item->handles);
1408 list_add_tail(&item->link, &efi_register_notify_events);
1410 *registration = item;
1412 return EFI_EXIT(ret);
1416 * efi_search() - determine if an EFI handle implements a protocol
1418 * @search_type: selection criterion
1419 * @protocol: GUID of the protocol
1422 * See the documentation of the LocateHandle service in the UEFI specification.
1424 * Return: 0 if the handle implements the protocol
1426 static int efi_search(enum efi_locate_search_type search_type,
1427 const efi_guid_t *protocol, efi_handle_t handle)
1431 switch (search_type) {
1435 ret = efi_search_protocol(handle, protocol, NULL);
1436 return (ret != EFI_SUCCESS);
1438 /* Invalid search type */
1444 * efi_check_register_notify_event() - check if registration key is valid
1446 * Check that a pointer is a valid registration key as returned by
1447 * RegisterProtocolNotify().
1449 * @key: registration key
1450 * Return: valid registration key or NULL
1452 static struct efi_register_notify_event *efi_check_register_notify_event
1455 struct efi_register_notify_event *event;
1457 list_for_each_entry(event, &efi_register_notify_events, link) {
1458 if (event == (struct efi_register_notify_event *)key)
1465 * efi_locate_handle() - locate handles implementing a protocol
1467 * @search_type: selection criterion
1468 * @protocol: GUID of the protocol
1469 * @search_key: registration key
1470 * @buffer_size: size of the buffer to receive the handles in bytes
1471 * @buffer: buffer to receive the relevant handles
1473 * This function is meant for U-Boot internal calls. For the API implementation
1474 * of the LocateHandle service see efi_locate_handle_ext.
1476 * Return: status code
1478 static efi_status_t efi_locate_handle(
1479 enum efi_locate_search_type search_type,
1480 const efi_guid_t *protocol, void *search_key,
1481 efi_uintn_t *buffer_size, efi_handle_t *buffer)
1483 struct efi_object *efiobj;
1484 efi_uintn_t size = 0;
1485 struct efi_register_notify_event *event;
1486 struct efi_protocol_notification *handle = NULL;
1488 /* Check parameters */
1489 switch (search_type) {
1492 case BY_REGISTER_NOTIFY:
1494 return EFI_INVALID_PARAMETER;
1495 /* Check that the registration key is valid */
1496 event = efi_check_register_notify_event(search_key);
1498 return EFI_INVALID_PARAMETER;
1502 return EFI_INVALID_PARAMETER;
1505 return EFI_INVALID_PARAMETER;
1508 /* Count how much space we need */
1509 if (search_type == BY_REGISTER_NOTIFY) {
1510 if (list_empty(&event->handles))
1511 return EFI_NOT_FOUND;
1512 handle = list_first_entry(&event->handles,
1513 struct efi_protocol_notification,
1515 efiobj = handle->handle;
1516 size += sizeof(void *);
1518 list_for_each_entry(efiobj, &efi_obj_list, link) {
1519 if (!efi_search(search_type, protocol, efiobj))
1520 size += sizeof(void *);
1523 return EFI_NOT_FOUND;
1527 return EFI_INVALID_PARAMETER;
1529 if (*buffer_size < size) {
1530 *buffer_size = size;
1531 return EFI_BUFFER_TOO_SMALL;
1534 *buffer_size = size;
1536 /* The buffer size is sufficient but there is no buffer */
1538 return EFI_INVALID_PARAMETER;
1540 /* Then fill the array */
1541 if (search_type == BY_REGISTER_NOTIFY) {
1543 list_del(&handle->link);
1545 list_for_each_entry(efiobj, &efi_obj_list, link) {
1546 if (!efi_search(search_type, protocol, efiobj))
1555 * efi_locate_handle_ext() - locate handles implementing a protocol.
1556 * @search_type: selection criterion
1557 * @protocol: GUID of the protocol
1558 * @search_key: registration key
1559 * @buffer_size: size of the buffer to receive the handles in bytes
1560 * @buffer: buffer to receive the relevant handles
1562 * This function implements the LocateHandle service.
1564 * See the Unified Extensible Firmware Interface (UEFI) specification for
1567 * Return: 0 if the handle implements the protocol
1569 static efi_status_t EFIAPI efi_locate_handle_ext(
1570 enum efi_locate_search_type search_type,
1571 const efi_guid_t *protocol, void *search_key,
1572 efi_uintn_t *buffer_size, efi_handle_t *buffer)
1574 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
1575 buffer_size, buffer);
1577 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1578 buffer_size, buffer));
1582 * efi_remove_configuration_table() - collapses configuration table entries,
1585 * @i: index of the table entry to be removed
1587 static void efi_remove_configuration_table(int i)
1589 struct efi_configuration_table *this = &systab.tables[i];
1590 struct efi_configuration_table *next = &systab.tables[i + 1];
1591 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
1593 memmove(this, next, (ulong)end - (ulong)next);
1598 * efi_install_configuration_table() - adds, updates, or removes a
1599 * configuration table
1600 * @guid: GUID of the installed table
1601 * @table: table to be installed
1603 * This function is used for internal calls. For the API implementation of the
1604 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1606 * Return: status code
1608 efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1611 struct efi_event *evt;
1615 return EFI_INVALID_PARAMETER;
1617 /* Check for GUID override */
1618 for (i = 0; i < systab.nr_tables; i++) {
1619 if (!guidcmp(guid, &systab.tables[i].guid)) {
1621 systab.tables[i].table = table;
1623 efi_remove_configuration_table(i);
1629 return EFI_NOT_FOUND;
1631 /* No override, check for overflow */
1632 if (i >= EFI_MAX_CONFIGURATION_TABLES)
1633 return EFI_OUT_OF_RESOURCES;
1635 /* Add a new entry */
1636 guidcpy(&systab.tables[i].guid, guid);
1637 systab.tables[i].table = table;
1638 systab.nr_tables = i + 1;
1641 /* systab.nr_tables may have changed. So we need to update the CRC32 */
1642 efi_update_table_header_crc32(&systab.hdr);
1644 /* Notify that the configuration table was changed */
1645 list_for_each_entry(evt, &efi_events, link) {
1646 if (evt->group && !guidcmp(evt->group, guid)) {
1647 efi_signal_event(evt);
1656 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1657 * configuration table.
1658 * @guid: GUID of the installed table
1659 * @table: table to be installed
1661 * This function implements the InstallConfigurationTable service.
1663 * See the Unified Extensible Firmware Interface (UEFI) specification for
1666 * Return: status code
1668 static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1671 EFI_ENTRY("%pUl, %p", guid, table);
1672 return EFI_EXIT(efi_install_configuration_table(guid, table));
1676 * efi_setup_loaded_image() - initialize a loaded image
1678 * Initialize a loaded_image_info and loaded_image_info object with correct
1679 * protocols, boot-device, etc.
1681 * In case of an error \*handle_ptr and \*info_ptr are set to NULL and an error
1684 * @device_path: device path of the loaded image
1685 * @file_path: file path of the loaded image
1686 * @handle_ptr: handle of the loaded image
1687 * @info_ptr: loaded image protocol
1688 * Return: status code
1690 efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1691 struct efi_device_path *file_path,
1692 struct efi_loaded_image_obj **handle_ptr,
1693 struct efi_loaded_image **info_ptr)
1696 struct efi_loaded_image *info = NULL;
1697 struct efi_loaded_image_obj *obj = NULL;
1698 struct efi_device_path *dp;
1700 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1704 info = calloc(1, sizeof(*info));
1706 return EFI_OUT_OF_RESOURCES;
1707 obj = calloc(1, sizeof(*obj));
1710 return EFI_OUT_OF_RESOURCES;
1712 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
1714 /* Add internal object to object list */
1715 efi_add_handle(&obj->header);
1717 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
1718 info->file_path = file_path;
1719 info->system_table = &systab;
1722 info->device_handle = efi_dp_find_obj(device_path, NULL);
1724 dp = efi_dp_append(device_path, file_path);
1726 ret = EFI_OUT_OF_RESOURCES;
1732 ret = efi_add_protocol(&obj->header,
1733 &efi_guid_loaded_image_device_path, dp);
1734 if (ret != EFI_SUCCESS)
1738 * When asking for the loaded_image interface, just
1739 * return handle which points to loaded_image_info
1741 ret = efi_add_protocol(&obj->header,
1742 &efi_guid_loaded_image, info);
1743 if (ret != EFI_SUCCESS)
1751 printf("ERROR: Failure to install protocols for loaded image\n");
1752 efi_delete_handle(&obj->header);
1758 * efi_load_image_from_path() - load an image using a file path
1760 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1761 * callers obligation to update the memory type as needed.
1763 * @file_path: the path of the image to load
1764 * @buffer: buffer containing the loaded image
1765 * @size: size of the loaded image
1766 * Return: status code
1769 efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
1770 void **buffer, efi_uintn_t *size)
1772 struct efi_file_info *info = NULL;
1773 struct efi_file_handle *f;
1774 static efi_status_t ret;
1778 /* In case of failure nothing is returned */
1783 f = efi_file_from_path(file_path);
1785 return EFI_NOT_FOUND;
1789 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1791 if (ret != EFI_BUFFER_TOO_SMALL) {
1792 ret = EFI_DEVICE_ERROR;
1797 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1799 if (ret != EFI_SUCCESS)
1803 * When reading the file we do not yet know if it contains an
1804 * application, a boottime driver, or a runtime driver. So here we
1805 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1806 * update the reservation according to the image type.
1808 bs = info->file_size;
1809 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1810 EFI_BOOT_SERVICES_DATA,
1811 efi_size_in_pages(bs), &addr);
1812 if (ret != EFI_SUCCESS) {
1813 ret = EFI_OUT_OF_RESOURCES;
1818 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1819 if (ret != EFI_SUCCESS)
1820 efi_free_pages(addr, efi_size_in_pages(bs));
1821 *buffer = (void *)(uintptr_t)addr;
1824 EFI_CALL(f->close(f));
1830 * efi_load_image() - load an EFI image into memory
1831 * @boot_policy: true for request originating from the boot manager
1832 * @parent_image: the caller's image handle
1833 * @file_path: the path of the image to load
1834 * @source_buffer: memory location from which the image is installed
1835 * @source_size: size of the memory area from which the image is installed
1836 * @image_handle: handle for the newly installed image
1838 * This function implements the LoadImage service.
1840 * See the Unified Extensible Firmware Interface (UEFI) specification
1843 * Return: status code
1845 efi_status_t EFIAPI efi_load_image(bool boot_policy,
1846 efi_handle_t parent_image,
1847 struct efi_device_path *file_path,
1848 void *source_buffer,
1849 efi_uintn_t source_size,
1850 efi_handle_t *image_handle)
1852 struct efi_device_path *dp, *fp;
1853 struct efi_loaded_image *info = NULL;
1854 struct efi_loaded_image_obj **image_obj =
1855 (struct efi_loaded_image_obj **)image_handle;
1859 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
1860 file_path, source_buffer, source_size, image_handle);
1862 if (!image_handle || (!source_buffer && !file_path) ||
1863 !efi_search_obj(parent_image) ||
1864 /* The parent image handle must refer to a loaded image */
1865 !parent_image->type) {
1866 ret = EFI_INVALID_PARAMETER;
1870 if (!source_buffer) {
1871 ret = efi_load_image_from_path(file_path, &dest_buffer,
1873 if (ret != EFI_SUCCESS)
1877 ret = EFI_LOAD_ERROR;
1880 dest_buffer = source_buffer;
1882 /* split file_path which contains both the device and file parts */
1883 efi_dp_split_file_path(file_path, &dp, &fp);
1884 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
1885 if (ret == EFI_SUCCESS)
1886 ret = efi_load_pe(*image_obj, dest_buffer, source_size, info);
1888 /* Release buffer to which file was loaded */
1889 efi_free_pages((uintptr_t)dest_buffer,
1890 efi_size_in_pages(source_size));
1891 if (ret == EFI_SUCCESS || ret == EFI_SECURITY_VIOLATION) {
1892 info->system_table = &systab;
1893 info->parent_handle = parent_image;
1895 /* The image is invalid. Release all associated resources. */
1896 efi_delete_handle(*image_handle);
1897 *image_handle = NULL;
1901 return EFI_EXIT(ret);
1905 * efi_exit_caches() - fix up caches for EFI payloads if necessary
1907 static void efi_exit_caches(void)
1909 #if defined(CONFIG_EFI_GRUB_ARM32_WORKAROUND)
1911 * Boooting Linux via GRUB prior to version 2.04 fails on 32bit ARM if
1912 * caches are enabled.
1915 * According to the UEFI spec caches that can be managed via CP15
1916 * operations should be enabled. Caches requiring platform information
1917 * to manage should be disabled. This should not happen in
1918 * ExitBootServices() but before invoking any UEFI binary is invoked.
1920 * We want to keep the current workaround while GRUB prior to version
1921 * 2.04 is still in use.
1923 cleanup_before_linux();
1928 * efi_exit_boot_services() - stop all boot services
1929 * @image_handle: handle of the loaded image
1930 * @map_key: key of the memory map
1932 * This function implements the ExitBootServices service.
1934 * See the Unified Extensible Firmware Interface (UEFI) specification
1937 * All timer events are disabled. For exit boot services events the
1938 * notification function is called. The boot services are disabled in the
1941 * Return: status code
1943 static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
1944 efi_uintn_t map_key)
1946 struct efi_event *evt, *next_event;
1947 efi_status_t ret = EFI_SUCCESS;
1949 EFI_ENTRY("%p, %zx", image_handle, map_key);
1951 /* Check that the caller has read the current memory map */
1952 if (map_key != efi_memory_map_key) {
1953 ret = EFI_INVALID_PARAMETER;
1957 /* Check if ExitBootServices has already been called */
1958 if (!systab.boottime)
1961 /* Stop all timer related activities */
1962 timers_enabled = false;
1964 /* Add related events to the event group */
1965 list_for_each_entry(evt, &efi_events, link) {
1966 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1967 evt->group = &efi_guid_event_group_exit_boot_services;
1969 /* Notify that ExitBootServices is invoked. */
1970 list_for_each_entry(evt, &efi_events, link) {
1972 !guidcmp(evt->group,
1973 &efi_guid_event_group_exit_boot_services)) {
1974 efi_signal_event(evt);
1979 /* Make sure that notification functions are not called anymore */
1980 efi_tpl = TPL_HIGH_LEVEL;
1982 /* Notify variable services */
1983 efi_variables_boot_exit_notify();
1985 /* Remove all events except EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
1986 list_for_each_entry_safe(evt, next_event, &efi_events, link) {
1987 if (evt->type != EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE)
1988 list_del(&evt->link);
1991 board_quiesce_devices();
1993 /* Patch out unsupported runtime function */
1994 efi_runtime_detach();
1996 /* Fix up caches for EFI payloads if necessary */
1999 /* This stops all lingering devices */
2000 bootm_disable_interrupts();
2002 /* Disable boot time services */
2003 systab.con_in_handle = NULL;
2004 systab.con_in = NULL;
2005 systab.con_out_handle = NULL;
2006 systab.con_out = NULL;
2007 systab.stderr_handle = NULL;
2008 systab.std_err = NULL;
2009 systab.boottime = NULL;
2011 /* Recalculate CRC32 */
2012 efi_update_table_header_crc32(&systab.hdr);
2014 /* Give the payload some time to boot */
2015 efi_set_watchdog(0);
2018 return EFI_EXIT(ret);
2022 * efi_get_next_monotonic_count() - get next value of the counter
2023 * @count: returned value of the counter
2025 * This function implements the NextMonotonicCount service.
2027 * See the Unified Extensible Firmware Interface (UEFI) specification for
2030 * Return: status code
2032 static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
2034 static uint64_t mono;
2037 EFI_ENTRY("%p", count);
2039 ret = EFI_INVALID_PARAMETER;
2045 return EFI_EXIT(ret);
2049 * efi_stall() - sleep
2050 * @microseconds: period to sleep in microseconds
2052 * This function implements the Stall service.
2054 * See the Unified Extensible Firmware Interface (UEFI) specification for
2057 * Return: status code
2059 static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
2063 EFI_ENTRY("%ld", microseconds);
2065 end_tick = get_ticks() + usec_to_tick(microseconds);
2066 while (get_ticks() < end_tick)
2069 return EFI_EXIT(EFI_SUCCESS);
2073 * efi_set_watchdog_timer() - reset the watchdog timer
2074 * @timeout: seconds before reset by watchdog
2075 * @watchdog_code: code to be logged when resetting
2076 * @data_size: size of buffer in bytes
2077 * @watchdog_data: buffer with data describing the reset reason
2079 * This function implements the SetWatchdogTimer service.
2081 * See the Unified Extensible Firmware Interface (UEFI) specification for
2084 * Return: status code
2086 static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2087 uint64_t watchdog_code,
2088 unsigned long data_size,
2089 uint16_t *watchdog_data)
2091 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
2092 data_size, watchdog_data);
2093 return EFI_EXIT(efi_set_watchdog(timeout));
2097 * efi_close_protocol() - close a protocol
2098 * @handle: handle on which the protocol shall be closed
2099 * @protocol: GUID of the protocol to close
2100 * @agent_handle: handle of the driver
2101 * @controller_handle: handle of the controller
2103 * This function implements the CloseProtocol service.
2105 * See the Unified Extensible Firmware Interface (UEFI) specification for
2108 * Return: status code
2110 efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
2111 const efi_guid_t *protocol,
2112 efi_handle_t agent_handle,
2113 efi_handle_t controller_handle)
2115 struct efi_handler *handler;
2116 struct efi_open_protocol_info_item *item;
2117 struct efi_open_protocol_info_item *pos;
2120 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
2123 if (!efi_search_obj(agent_handle) ||
2124 (controller_handle && !efi_search_obj(controller_handle))) {
2125 r = EFI_INVALID_PARAMETER;
2128 r = efi_search_protocol(handle, protocol, &handler);
2129 if (r != EFI_SUCCESS)
2133 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2134 if (item->info.agent_handle == agent_handle &&
2135 item->info.controller_handle == controller_handle) {
2136 efi_delete_open_info(item);
2145 * efi_open_protocol_information() - provide information about then open status
2146 * of a protocol on a handle
2147 * @handle: handle for which the information shall be retrieved
2148 * @protocol: GUID of the protocol
2149 * @entry_buffer: buffer to receive the open protocol information
2150 * @entry_count: number of entries available in the buffer
2152 * This function implements the OpenProtocolInformation service.
2154 * See the Unified Extensible Firmware Interface (UEFI) specification for
2157 * Return: status code
2159 static efi_status_t EFIAPI efi_open_protocol_information(
2160 efi_handle_t handle, const efi_guid_t *protocol,
2161 struct efi_open_protocol_info_entry **entry_buffer,
2162 efi_uintn_t *entry_count)
2164 unsigned long buffer_size;
2165 unsigned long count;
2166 struct efi_handler *handler;
2167 struct efi_open_protocol_info_item *item;
2170 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
2173 /* Check parameters */
2174 if (!entry_buffer) {
2175 r = EFI_INVALID_PARAMETER;
2178 r = efi_search_protocol(handle, protocol, &handler);
2179 if (r != EFI_SUCCESS)
2184 list_for_each_entry(item, &handler->open_infos, link) {
2185 if (item->info.open_count)
2188 *entry_count = count;
2189 *entry_buffer = NULL;
2196 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
2197 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2198 (void **)entry_buffer);
2199 if (r != EFI_SUCCESS)
2201 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2202 if (item->info.open_count)
2203 (*entry_buffer)[--count] = item->info;
2210 * efi_protocols_per_handle() - get protocols installed on a handle
2211 * @handle: handle for which the information is retrieved
2212 * @protocol_buffer: buffer with protocol GUIDs
2213 * @protocol_buffer_count: number of entries in the buffer
2215 * This function implements the ProtocolsPerHandleService.
2217 * See the Unified Extensible Firmware Interface (UEFI) specification for
2220 * Return: status code
2222 static efi_status_t EFIAPI efi_protocols_per_handle(
2223 efi_handle_t handle, efi_guid_t ***protocol_buffer,
2224 efi_uintn_t *protocol_buffer_count)
2226 unsigned long buffer_size;
2227 struct efi_object *efiobj;
2228 struct list_head *protocol_handle;
2231 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2232 protocol_buffer_count);
2234 if (!handle || !protocol_buffer || !protocol_buffer_count)
2235 return EFI_EXIT(EFI_INVALID_PARAMETER);
2237 *protocol_buffer = NULL;
2238 *protocol_buffer_count = 0;
2240 efiobj = efi_search_obj(handle);
2242 return EFI_EXIT(EFI_INVALID_PARAMETER);
2244 /* Count protocols */
2245 list_for_each(protocol_handle, &efiobj->protocols) {
2246 ++*protocol_buffer_count;
2250 if (*protocol_buffer_count) {
2253 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
2254 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2255 (void **)protocol_buffer);
2256 if (r != EFI_SUCCESS)
2258 list_for_each(protocol_handle, &efiobj->protocols) {
2259 struct efi_handler *protocol;
2261 protocol = list_entry(protocol_handle,
2262 struct efi_handler, link);
2263 (*protocol_buffer)[j] = (void *)protocol->guid;
2268 return EFI_EXIT(EFI_SUCCESS);
2272 * efi_locate_handle_buffer() - locate handles implementing a protocol
2273 * @search_type: selection criterion
2274 * @protocol: GUID of the protocol
2275 * @search_key: registration key
2276 * @no_handles: number of returned handles
2277 * @buffer: buffer with the returned handles
2279 * This function implements the LocateHandleBuffer service.
2281 * See the Unified Extensible Firmware Interface (UEFI) specification for
2284 * Return: status code
2286 efi_status_t EFIAPI efi_locate_handle_buffer(
2287 enum efi_locate_search_type search_type,
2288 const efi_guid_t *protocol, void *search_key,
2289 efi_uintn_t *no_handles, efi_handle_t **buffer)
2292 efi_uintn_t buffer_size = 0;
2294 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
2295 no_handles, buffer);
2297 if (!no_handles || !buffer) {
2298 r = EFI_INVALID_PARAMETER;
2303 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2305 if (r != EFI_BUFFER_TOO_SMALL)
2307 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2309 if (r != EFI_SUCCESS)
2311 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2313 if (r == EFI_SUCCESS)
2314 *no_handles = buffer_size / sizeof(efi_handle_t);
2320 * efi_locate_protocol() - find an interface implementing a protocol
2321 * @protocol: GUID of the protocol
2322 * @registration: registration key passed to the notification function
2323 * @protocol_interface: interface implementing the protocol
2325 * This function implements the LocateProtocol service.
2327 * See the Unified Extensible Firmware Interface (UEFI) specification for
2330 * Return: status code
2332 static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
2334 void **protocol_interface)
2336 struct efi_handler *handler;
2338 struct efi_object *efiobj;
2340 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
2343 * The UEFI spec explicitly requires a protocol even if a registration
2344 * key is provided. This differs from the logic in LocateHandle().
2346 if (!protocol || !protocol_interface)
2347 return EFI_EXIT(EFI_INVALID_PARAMETER);
2350 struct efi_register_notify_event *event;
2351 struct efi_protocol_notification *handle;
2353 event = efi_check_register_notify_event(registration);
2355 return EFI_EXIT(EFI_INVALID_PARAMETER);
2357 * The UEFI spec requires to return EFI_NOT_FOUND if no
2358 * protocol instance matches protocol and registration.
2359 * So let's do the same for a mismatch between protocol and
2362 if (guidcmp(&event->protocol, protocol))
2364 if (list_empty(&event->handles))
2366 handle = list_first_entry(&event->handles,
2367 struct efi_protocol_notification,
2369 efiobj = handle->handle;
2370 list_del(&handle->link);
2372 ret = efi_search_protocol(efiobj, protocol, &handler);
2373 if (ret == EFI_SUCCESS)
2376 list_for_each_entry(efiobj, &efi_obj_list, link) {
2377 ret = efi_search_protocol(efiobj, protocol, &handler);
2378 if (ret == EFI_SUCCESS)
2383 *protocol_interface = NULL;
2384 return EFI_EXIT(EFI_NOT_FOUND);
2386 *protocol_interface = handler->protocol_interface;
2387 return EFI_EXIT(EFI_SUCCESS);
2391 * efi_locate_device_path() - Get the device path and handle of an device
2392 * implementing a protocol
2393 * @protocol: GUID of the protocol
2394 * @device_path: device path
2395 * @device: handle of the device
2397 * This function implements the LocateDevicePath service.
2399 * See the Unified Extensible Firmware Interface (UEFI) specification for
2402 * Return: status code
2404 static efi_status_t EFIAPI efi_locate_device_path(
2405 const efi_guid_t *protocol,
2406 struct efi_device_path **device_path,
2407 efi_handle_t *device)
2409 struct efi_device_path *dp;
2411 struct efi_handler *handler;
2412 efi_handle_t *handles;
2414 size_t len_best = 0;
2415 efi_uintn_t no_handles;
2419 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2421 if (!protocol || !device_path || !*device_path) {
2422 ret = EFI_INVALID_PARAMETER;
2426 /* Find end of device path */
2427 len = efi_dp_instance_size(*device_path);
2429 /* Get all handles implementing the protocol */
2430 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2431 &no_handles, &handles));
2432 if (ret != EFI_SUCCESS)
2435 for (i = 0; i < no_handles; ++i) {
2436 /* Find the device path protocol */
2437 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2439 if (ret != EFI_SUCCESS)
2441 dp = (struct efi_device_path *)handler->protocol_interface;
2442 len_dp = efi_dp_instance_size(dp);
2444 * This handle can only be a better fit
2445 * if its device path length is longer than the best fit and
2446 * if its device path length is shorter of equal the searched
2449 if (len_dp <= len_best || len_dp > len)
2451 /* Check if dp is a subpath of device_path */
2452 if (memcmp(*device_path, dp, len_dp))
2455 ret = EFI_INVALID_PARAMETER;
2458 *device = handles[i];
2462 remainder = (u8 *)*device_path + len_best;
2463 *device_path = (struct efi_device_path *)remainder;
2466 ret = EFI_NOT_FOUND;
2469 return EFI_EXIT(ret);
2473 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2475 * @handle: handle on which the protocol interfaces shall be installed
2476 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2479 * This function implements the MultipleProtocolInterfaces service.
2481 * See the Unified Extensible Firmware Interface (UEFI) specification for
2484 * Return: status code
2486 efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
2487 (efi_handle_t *handle, ...)
2489 EFI_ENTRY("%p", handle);
2492 const efi_guid_t *protocol;
2493 void *protocol_interface;
2494 efi_handle_t old_handle;
2495 efi_status_t r = EFI_SUCCESS;
2499 return EFI_EXIT(EFI_INVALID_PARAMETER);
2501 efi_va_start(argptr, handle);
2503 protocol = efi_va_arg(argptr, efi_guid_t*);
2506 protocol_interface = efi_va_arg(argptr, void*);
2507 /* Check that a device path has not been installed before */
2508 if (!guidcmp(protocol, &efi_guid_device_path)) {
2509 struct efi_device_path *dp = protocol_interface;
2511 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2513 if (r == EFI_SUCCESS &&
2514 dp->type == DEVICE_PATH_TYPE_END) {
2515 EFI_PRINT("Path %pD already installed\n",
2516 protocol_interface);
2517 r = EFI_ALREADY_STARTED;
2521 r = EFI_CALL(efi_install_protocol_interface(
2523 EFI_NATIVE_INTERFACE,
2524 protocol_interface));
2525 if (r != EFI_SUCCESS)
2530 if (r == EFI_SUCCESS)
2533 /* If an error occurred undo all changes. */
2534 efi_va_start(argptr, handle);
2536 protocol = efi_va_arg(argptr, efi_guid_t*);
2537 protocol_interface = efi_va_arg(argptr, void*);
2538 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
2539 protocol_interface));
2547 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2549 * @handle: handle from which the protocol interfaces shall be removed
2550 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2553 * This function implements the UninstallMultipleProtocolInterfaces service.
2555 * See the Unified Extensible Firmware Interface (UEFI) specification for
2558 * Return: status code
2560 static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
2561 efi_handle_t handle, ...)
2563 EFI_ENTRY("%p", handle);
2566 const efi_guid_t *protocol;
2567 void *protocol_interface;
2568 efi_status_t r = EFI_SUCCESS;
2572 return EFI_EXIT(EFI_INVALID_PARAMETER);
2574 efi_va_start(argptr, handle);
2576 protocol = efi_va_arg(argptr, efi_guid_t*);
2579 protocol_interface = efi_va_arg(argptr, void*);
2580 r = efi_uninstall_protocol(handle, protocol,
2581 protocol_interface);
2582 if (r != EFI_SUCCESS)
2587 if (r == EFI_SUCCESS) {
2588 /* If the last protocol has been removed, delete the handle. */
2589 if (list_empty(&handle->protocols)) {
2590 list_del(&handle->link);
2596 /* If an error occurred undo all changes. */
2597 efi_va_start(argptr, handle);
2599 protocol = efi_va_arg(argptr, efi_guid_t*);
2600 protocol_interface = efi_va_arg(argptr, void*);
2601 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2602 EFI_NATIVE_INTERFACE,
2603 protocol_interface));
2607 /* In case of an error always return EFI_INVALID_PARAMETER */
2608 return EFI_EXIT(EFI_INVALID_PARAMETER);
2612 * efi_calculate_crc32() - calculate cyclic redundancy code
2613 * @data: buffer with data
2614 * @data_size: size of buffer in bytes
2615 * @crc32_p: cyclic redundancy code
2617 * This function implements the CalculateCrc32 service.
2619 * See the Unified Extensible Firmware Interface (UEFI) specification for
2622 * Return: status code
2624 static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2625 efi_uintn_t data_size,
2628 efi_status_t ret = EFI_SUCCESS;
2630 EFI_ENTRY("%p, %zu", data, data_size);
2631 if (!data || !data_size || !crc32_p) {
2632 ret = EFI_INVALID_PARAMETER;
2635 *crc32_p = crc32(0, data, data_size);
2637 return EFI_EXIT(ret);
2641 * efi_copy_mem() - copy memory
2642 * @destination: destination of the copy operation
2643 * @source: source of the copy operation
2644 * @length: number of bytes to copy
2646 * This function implements the CopyMem service.
2648 * See the Unified Extensible Firmware Interface (UEFI) specification for
2651 static void EFIAPI efi_copy_mem(void *destination, const void *source,
2654 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
2655 memmove(destination, source, length);
2656 EFI_EXIT(EFI_SUCCESS);
2660 * efi_set_mem() - Fill memory with a byte value.
2661 * @buffer: buffer to fill
2662 * @size: size of buffer in bytes
2663 * @value: byte to copy to the buffer
2665 * This function implements the SetMem service.
2667 * See the Unified Extensible Firmware Interface (UEFI) specification for
2670 static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
2672 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
2673 memset(buffer, value, size);
2674 EFI_EXIT(EFI_SUCCESS);
2678 * efi_protocol_open() - open protocol interface on a handle
2679 * @handler: handler of a protocol
2680 * @protocol_interface: interface implementing the protocol
2681 * @agent_handle: handle of the driver
2682 * @controller_handle: handle of the controller
2683 * @attributes: attributes indicating how to open the protocol
2685 * Return: status code
2687 static efi_status_t efi_protocol_open(
2688 struct efi_handler *handler,
2689 void **protocol_interface, void *agent_handle,
2690 void *controller_handle, uint32_t attributes)
2692 struct efi_open_protocol_info_item *item;
2693 struct efi_open_protocol_info_entry *match = NULL;
2694 bool opened_by_driver = false;
2695 bool opened_exclusive = false;
2697 /* If there is no agent, only return the interface */
2701 /* For TEST_PROTOCOL ignore interface attribute */
2702 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2703 *protocol_interface = NULL;
2706 * Check if the protocol is already opened by a driver with the same
2707 * attributes or opened exclusively
2709 list_for_each_entry(item, &handler->open_infos, link) {
2710 if (item->info.agent_handle == agent_handle) {
2711 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2712 (item->info.attributes == attributes))
2713 return EFI_ALREADY_STARTED;
2715 if (item->info.attributes &
2716 EFI_OPEN_PROTOCOL_BY_DRIVER)
2717 opened_by_driver = true;
2719 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2720 opened_exclusive = true;
2723 /* Only one controller can open the protocol exclusively */
2724 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2725 if (opened_exclusive)
2726 return EFI_ACCESS_DENIED;
2727 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2728 if (opened_exclusive || opened_by_driver)
2729 return EFI_ACCESS_DENIED;
2732 /* Prepare exclusive opening */
2733 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2734 /* Try to disconnect controllers */
2736 opened_by_driver = false;
2737 list_for_each_entry(item, &handler->open_infos, link) {
2740 if (item->info.attributes ==
2741 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2742 ret = EFI_CALL(efi_disconnect_controller(
2743 item->info.controller_handle,
2744 item->info.agent_handle,
2746 if (ret == EFI_SUCCESS)
2748 * Child controllers may have been
2749 * removed from the open_infos list. So
2750 * let's restart the loop.
2752 goto disconnect_next;
2754 opened_by_driver = true;
2757 /* Only one driver can be connected */
2758 if (opened_by_driver)
2759 return EFI_ACCESS_DENIED;
2762 /* Find existing entry */
2763 list_for_each_entry(item, &handler->open_infos, link) {
2764 if (item->info.agent_handle == agent_handle &&
2765 item->info.controller_handle == controller_handle &&
2766 item->info.attributes == attributes)
2767 match = &item->info;
2769 /* None found, create one */
2771 match = efi_create_open_info(handler);
2773 return EFI_OUT_OF_RESOURCES;
2776 match->agent_handle = agent_handle;
2777 match->controller_handle = controller_handle;
2778 match->attributes = attributes;
2779 match->open_count++;
2782 /* For TEST_PROTOCOL ignore interface attribute. */
2783 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2784 *protocol_interface = handler->protocol_interface;
2790 * efi_open_protocol() - open protocol interface on a handle
2791 * @handle: handle on which the protocol shall be opened
2792 * @protocol: GUID of the protocol
2793 * @protocol_interface: interface implementing the protocol
2794 * @agent_handle: handle of the driver
2795 * @controller_handle: handle of the controller
2796 * @attributes: attributes indicating how to open the protocol
2798 * This function implements the OpenProtocol interface.
2800 * See the Unified Extensible Firmware Interface (UEFI) specification for
2803 * Return: status code
2805 static efi_status_t EFIAPI efi_open_protocol
2806 (efi_handle_t handle, const efi_guid_t *protocol,
2807 void **protocol_interface, efi_handle_t agent_handle,
2808 efi_handle_t controller_handle, uint32_t attributes)
2810 struct efi_handler *handler;
2811 efi_status_t r = EFI_INVALID_PARAMETER;
2813 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
2814 protocol_interface, agent_handle, controller_handle,
2817 if (!handle || !protocol ||
2818 (!protocol_interface && attributes !=
2819 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2823 switch (attributes) {
2824 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2825 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2826 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2828 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2829 if (controller_handle == handle)
2832 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2833 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
2834 /* Check that the controller handle is valid */
2835 if (!efi_search_obj(controller_handle))
2838 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
2839 /* Check that the agent handle is valid */
2840 if (!efi_search_obj(agent_handle))
2847 r = efi_search_protocol(handle, protocol, &handler);
2852 r = EFI_UNSUPPORTED;
2858 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2859 controller_handle, attributes);
2865 * efi_start_image() - call the entry point of an image
2866 * @image_handle: handle of the image
2867 * @exit_data_size: size of the buffer
2868 * @exit_data: buffer to receive the exit data of the called image
2870 * This function implements the StartImage service.
2872 * See the Unified Extensible Firmware Interface (UEFI) specification for
2875 * Return: status code
2877 efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2878 efi_uintn_t *exit_data_size,
2881 struct efi_loaded_image_obj *image_obj =
2882 (struct efi_loaded_image_obj *)image_handle;
2885 efi_handle_t parent_image = current_image;
2887 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2889 if (!efi_search_obj(image_handle))
2890 return EFI_EXIT(EFI_INVALID_PARAMETER);
2892 /* Check parameters */
2893 if (image_obj->header.type != EFI_OBJECT_TYPE_LOADED_IMAGE)
2894 return EFI_EXIT(EFI_INVALID_PARAMETER);
2896 if (image_obj->auth_status != EFI_IMAGE_AUTH_PASSED)
2897 return EFI_EXIT(EFI_SECURITY_VIOLATION);
2899 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2901 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2902 if (ret != EFI_SUCCESS)
2903 return EFI_EXIT(EFI_INVALID_PARAMETER);
2905 image_obj->exit_data_size = exit_data_size;
2906 image_obj->exit_data = exit_data;
2908 /* call the image! */
2909 if (setjmp(&image_obj->exit_jmp)) {
2911 * We called the entry point of the child image with EFI_CALL
2912 * in the lines below. The child image called the Exit() boot
2913 * service efi_exit() which executed the long jump that brought
2914 * us to the current line. This implies that the second half
2915 * of the EFI_CALL macro has not been executed.
2919 * efi_exit() called efi_restore_gd(). We have to undo this
2920 * otherwise __efi_entry_check() will put the wrong value into
2926 * To get ready to call EFI_EXIT below we have to execute the
2927 * missed out steps of EFI_CALL.
2929 assert(__efi_entry_check());
2930 EFI_PRINT("%lu returned by started image\n",
2931 (unsigned long)((uintptr_t)image_obj->exit_status &
2933 current_image = parent_image;
2934 return EFI_EXIT(image_obj->exit_status);
2937 current_image = image_handle;
2938 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
2939 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
2940 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2943 * Control is returned from a started UEFI image either by calling
2944 * Exit() (where exit data can be provided) or by simply returning from
2945 * the entry point. In the latter case call Exit() on behalf of the
2948 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2952 * efi_delete_image() - delete loaded image from memory)
2954 * @image_obj: handle of the loaded image
2955 * @loaded_image_protocol: loaded image protocol
2957 static efi_status_t efi_delete_image
2958 (struct efi_loaded_image_obj *image_obj,
2959 struct efi_loaded_image *loaded_image_protocol)
2961 struct efi_object *efiobj;
2962 efi_status_t r, ret = EFI_SUCCESS;
2965 list_for_each_entry(efiobj, &efi_obj_list, link) {
2966 struct efi_handler *protocol;
2968 list_for_each_entry(protocol, &efiobj->protocols, link) {
2969 struct efi_open_protocol_info_item *info;
2971 list_for_each_entry(info, &protocol->open_infos, link) {
2972 if (info->info.agent_handle !=
2973 (efi_handle_t)image_obj)
2975 r = EFI_CALL(efi_close_protocol
2976 (efiobj, protocol->guid,
2977 info->info.agent_handle,
2978 info->info.controller_handle
2980 if (r != EFI_SUCCESS)
2983 * Closing protocols may results in further
2984 * items being deleted. To play it safe loop
2985 * over all elements again.
2992 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2993 efi_size_in_pages(loaded_image_protocol->image_size));
2994 efi_delete_handle(&image_obj->header);
3000 * efi_unload_image() - unload an EFI image
3001 * @image_handle: handle of the image to be unloaded
3003 * This function implements the UnloadImage service.
3005 * See the Unified Extensible Firmware Interface (UEFI) specification for
3008 * Return: status code
3010 efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
3012 efi_status_t ret = EFI_SUCCESS;
3013 struct efi_object *efiobj;
3014 struct efi_loaded_image *loaded_image_protocol;
3016 EFI_ENTRY("%p", image_handle);
3018 efiobj = efi_search_obj(image_handle);
3020 ret = EFI_INVALID_PARAMETER;
3023 /* Find the loaded image protocol */
3024 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3025 (void **)&loaded_image_protocol,
3027 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3028 if (ret != EFI_SUCCESS) {
3029 ret = EFI_INVALID_PARAMETER;
3032 switch (efiobj->type) {
3033 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3034 /* Call the unload function */
3035 if (!loaded_image_protocol->unload) {
3036 ret = EFI_UNSUPPORTED;
3039 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
3040 if (ret != EFI_SUCCESS)
3043 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3046 ret = EFI_INVALID_PARAMETER;
3049 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
3050 loaded_image_protocol);
3052 return EFI_EXIT(ret);
3056 * efi_update_exit_data() - fill exit data parameters of StartImage()
3058 * @image_obj: image handle
3059 * @exit_data_size: size of the exit data buffer
3060 * @exit_data: buffer with data returned by UEFI payload
3061 * Return: status code
3063 static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
3064 efi_uintn_t exit_data_size,
3070 * If exit_data is not provided to StartImage(), exit_data_size must be
3073 if (!image_obj->exit_data)
3075 if (image_obj->exit_data_size)
3076 *image_obj->exit_data_size = exit_data_size;
3077 if (exit_data_size && exit_data) {
3078 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3080 (void **)image_obj->exit_data);
3081 if (ret != EFI_SUCCESS)
3083 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3085 image_obj->exit_data = NULL;
3091 * efi_exit() - leave an EFI application or driver
3092 * @image_handle: handle of the application or driver that is exiting
3093 * @exit_status: status code
3094 * @exit_data_size: size of the buffer in bytes
3095 * @exit_data: buffer with data describing an error
3097 * This function implements the Exit service.
3099 * See the Unified Extensible Firmware Interface (UEFI) specification for
3102 * Return: status code
3104 static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3105 efi_status_t exit_status,
3106 efi_uintn_t exit_data_size,
3110 * TODO: We should call the unload procedure of the loaded
3114 struct efi_loaded_image *loaded_image_protocol;
3115 struct efi_loaded_image_obj *image_obj =
3116 (struct efi_loaded_image_obj *)image_handle;
3118 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3119 exit_data_size, exit_data);
3121 /* Check parameters */
3122 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3123 (void **)&loaded_image_protocol,
3125 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3126 if (ret != EFI_SUCCESS) {
3127 ret = EFI_INVALID_PARAMETER;
3131 /* Unloading of unstarted images */
3132 switch (image_obj->header.type) {
3133 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3135 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3136 efi_delete_image(image_obj, loaded_image_protocol);
3140 /* Handle does not refer to loaded image */
3141 ret = EFI_INVALID_PARAMETER;
3144 /* A started image can only be unloaded it is the last one started. */
3145 if (image_handle != current_image) {
3146 ret = EFI_INVALID_PARAMETER;
3150 /* Exit data is only foreseen in case of failure. */
3151 if (exit_status != EFI_SUCCESS) {
3152 ret = efi_update_exit_data(image_obj, exit_data_size,
3154 /* Exiting has priority. Don't return error to caller. */
3155 if (ret != EFI_SUCCESS)
3156 EFI_PRINT("%s: out of memory\n", __func__);
3158 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3159 exit_status != EFI_SUCCESS)
3160 efi_delete_image(image_obj, loaded_image_protocol);
3162 /* Make sure entry/exit counts for EFI world cross-overs match */
3163 EFI_EXIT(exit_status);
3166 * But longjmp out with the U-Boot gd, not the application's, as
3167 * the other end is a setjmp call inside EFI context.
3171 image_obj->exit_status = exit_status;
3172 longjmp(&image_obj->exit_jmp, 1);
3174 panic("EFI application exited");
3176 return EFI_EXIT(ret);
3180 * efi_handle_protocol() - get interface of a protocol on a handle
3181 * @handle: handle on which the protocol shall be opened
3182 * @protocol: GUID of the protocol
3183 * @protocol_interface: interface implementing the protocol
3185 * This function implements the HandleProtocol service.
3187 * See the Unified Extensible Firmware Interface (UEFI) specification for
3190 * Return: status code
3192 efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3193 const efi_guid_t *protocol,
3194 void **protocol_interface)
3196 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
3197 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
3201 * efi_bind_controller() - bind a single driver to a controller
3202 * @controller_handle: controller handle
3203 * @driver_image_handle: driver handle
3204 * @remain_device_path: remaining path
3206 * Return: status code
3208 static efi_status_t efi_bind_controller(
3209 efi_handle_t controller_handle,
3210 efi_handle_t driver_image_handle,
3211 struct efi_device_path *remain_device_path)
3213 struct efi_driver_binding_protocol *binding_protocol;
3216 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3217 &efi_guid_driver_binding_protocol,
3218 (void **)&binding_protocol,
3219 driver_image_handle, NULL,
3220 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3221 if (r != EFI_SUCCESS)
3223 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3225 remain_device_path));
3226 if (r == EFI_SUCCESS)
3227 r = EFI_CALL(binding_protocol->start(binding_protocol,
3229 remain_device_path));
3230 EFI_CALL(efi_close_protocol(driver_image_handle,
3231 &efi_guid_driver_binding_protocol,
3232 driver_image_handle, NULL));
3237 * efi_connect_single_controller() - connect a single driver to a controller
3238 * @controller_handle: controller
3239 * @driver_image_handle: driver
3240 * @remain_device_path: remaining path
3242 * Return: status code
3244 static efi_status_t efi_connect_single_controller(
3245 efi_handle_t controller_handle,
3246 efi_handle_t *driver_image_handle,
3247 struct efi_device_path *remain_device_path)
3249 efi_handle_t *buffer;
3253 size_t connected = 0;
3255 /* Get buffer with all handles with driver binding protocol */
3256 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3257 &efi_guid_driver_binding_protocol,
3258 NULL, &count, &buffer));
3259 if (r != EFI_SUCCESS)
3262 /* Context Override */
3263 if (driver_image_handle) {
3264 for (; *driver_image_handle; ++driver_image_handle) {
3265 for (i = 0; i < count; ++i) {
3266 if (buffer[i] == *driver_image_handle) {
3268 r = efi_bind_controller(
3270 *driver_image_handle,
3271 remain_device_path);
3273 * For drivers that do not support the
3274 * controller or are already connected
3275 * we receive an error code here.
3277 if (r == EFI_SUCCESS)
3285 * TODO: Some overrides are not yet implemented:
3286 * - Platform Driver Override
3287 * - Driver Family Override Search
3288 * - Bus Specific Driver Override
3291 /* Driver Binding Search */
3292 for (i = 0; i < count; ++i) {
3294 r = efi_bind_controller(controller_handle,
3296 remain_device_path);
3297 if (r == EFI_SUCCESS)
3302 efi_free_pool(buffer);
3304 return EFI_NOT_FOUND;
3309 * efi_connect_controller() - connect a controller to a driver
3310 * @controller_handle: handle of the controller
3311 * @driver_image_handle: handle of the driver
3312 * @remain_device_path: device path of a child controller
3313 * @recursive: true to connect all child controllers
3315 * This function implements the ConnectController service.
3317 * See the Unified Extensible Firmware Interface (UEFI) specification for
3320 * First all driver binding protocol handles are tried for binding drivers.
3321 * Afterwards all handles that have opened a protocol of the controller
3322 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3324 * Return: status code
3326 static efi_status_t EFIAPI efi_connect_controller(
3327 efi_handle_t controller_handle,
3328 efi_handle_t *driver_image_handle,
3329 struct efi_device_path *remain_device_path,
3333 efi_status_t ret = EFI_NOT_FOUND;
3334 struct efi_object *efiobj;
3336 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
3337 remain_device_path, recursive);
3339 efiobj = efi_search_obj(controller_handle);
3341 ret = EFI_INVALID_PARAMETER;
3345 r = efi_connect_single_controller(controller_handle,
3346 driver_image_handle,
3347 remain_device_path);
3348 if (r == EFI_SUCCESS)
3351 struct efi_handler *handler;
3352 struct efi_open_protocol_info_item *item;
3354 list_for_each_entry(handler, &efiobj->protocols, link) {
3355 list_for_each_entry(item, &handler->open_infos, link) {
3356 if (item->info.attributes &
3357 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3358 r = EFI_CALL(efi_connect_controller(
3359 item->info.controller_handle,
3360 driver_image_handle,
3363 if (r == EFI_SUCCESS)
3369 /* Check for child controller specified by end node */
3370 if (ret != EFI_SUCCESS && remain_device_path &&
3371 remain_device_path->type == DEVICE_PATH_TYPE_END)
3374 return EFI_EXIT(ret);
3378 * efi_reinstall_protocol_interface() - reinstall protocol interface
3379 * @handle: handle on which the protocol shall be reinstalled
3380 * @protocol: GUID of the protocol to be installed
3381 * @old_interface: interface to be removed
3382 * @new_interface: interface to be installed
3384 * This function implements the ReinstallProtocolInterface service.
3386 * See the Unified Extensible Firmware Interface (UEFI) specification for
3389 * The old interface is uninstalled. The new interface is installed.
3390 * Drivers are connected.
3392 * Return: status code
3394 static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3395 efi_handle_t handle, const efi_guid_t *protocol,
3396 void *old_interface, void *new_interface)
3400 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3403 /* Uninstall protocol but do not delete handle */
3404 ret = efi_uninstall_protocol(handle, protocol, old_interface);
3405 if (ret != EFI_SUCCESS)
3408 /* Install the new protocol */
3409 ret = efi_add_protocol(handle, protocol, new_interface);
3411 * The UEFI spec does not specify what should happen to the handle
3412 * if in case of an error no protocol interface remains on the handle.
3413 * So let's do nothing here.
3415 if (ret != EFI_SUCCESS)
3418 * The returned status code has to be ignored.
3419 * Do not create an error if no suitable driver for the handle exists.
3421 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3423 return EFI_EXIT(ret);
3427 * efi_get_child_controllers() - get all child controllers associated to a driver
3428 * @efiobj: handle of the controller
3429 * @driver_handle: handle of the driver
3430 * @number_of_children: number of child controllers
3431 * @child_handle_buffer: handles of the the child controllers
3433 * The allocated buffer has to be freed with free().
3435 * Return: status code
3437 static efi_status_t efi_get_child_controllers(
3438 struct efi_object *efiobj,
3439 efi_handle_t driver_handle,
3440 efi_uintn_t *number_of_children,
3441 efi_handle_t **child_handle_buffer)
3443 struct efi_handler *handler;
3444 struct efi_open_protocol_info_item *item;
3445 efi_uintn_t count = 0, i;
3448 /* Count all child controller associations */
3449 list_for_each_entry(handler, &efiobj->protocols, link) {
3450 list_for_each_entry(item, &handler->open_infos, link) {
3451 if (item->info.agent_handle == driver_handle &&
3452 item->info.attributes &
3453 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3458 * Create buffer. In case of duplicate child controller assignments
3459 * the buffer will be too large. But that does not harm.
3461 *number_of_children = 0;
3464 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3465 if (!*child_handle_buffer)
3466 return EFI_OUT_OF_RESOURCES;
3467 /* Copy unique child handles */
3468 list_for_each_entry(handler, &efiobj->protocols, link) {
3469 list_for_each_entry(item, &handler->open_infos, link) {
3470 if (item->info.agent_handle == driver_handle &&
3471 item->info.attributes &
3472 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3473 /* Check this is a new child controller */
3475 for (i = 0; i < *number_of_children; ++i) {
3476 if ((*child_handle_buffer)[i] ==
3477 item->info.controller_handle)
3480 /* Copy handle to buffer */
3482 i = (*number_of_children)++;
3483 (*child_handle_buffer)[i] =
3484 item->info.controller_handle;
3493 * efi_disconnect_controller() - disconnect a controller from a driver
3494 * @controller_handle: handle of the controller
3495 * @driver_image_handle: handle of the driver
3496 * @child_handle: handle of the child to destroy
3498 * This function implements the DisconnectController service.
3500 * See the Unified Extensible Firmware Interface (UEFI) specification for
3503 * Return: status code
3505 static efi_status_t EFIAPI efi_disconnect_controller(
3506 efi_handle_t controller_handle,
3507 efi_handle_t driver_image_handle,
3508 efi_handle_t child_handle)
3510 struct efi_driver_binding_protocol *binding_protocol;
3511 efi_handle_t *child_handle_buffer = NULL;
3512 size_t number_of_children = 0;
3514 struct efi_object *efiobj;
3516 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3519 efiobj = efi_search_obj(controller_handle);
3521 r = EFI_INVALID_PARAMETER;
3525 if (child_handle && !efi_search_obj(child_handle)) {
3526 r = EFI_INVALID_PARAMETER;
3530 /* If no driver handle is supplied, disconnect all drivers */
3531 if (!driver_image_handle) {
3532 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3536 /* Create list of child handles */
3538 number_of_children = 1;
3539 child_handle_buffer = &child_handle;
3541 r = efi_get_child_controllers(efiobj,
3542 driver_image_handle,
3543 &number_of_children,
3544 &child_handle_buffer);
3545 if (r != EFI_SUCCESS)
3549 /* Get the driver binding protocol */
3550 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3551 &efi_guid_driver_binding_protocol,
3552 (void **)&binding_protocol,
3553 driver_image_handle, NULL,
3554 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3555 if (r != EFI_SUCCESS) {
3556 r = EFI_INVALID_PARAMETER;
3559 /* Remove the children */
3560 if (number_of_children) {
3561 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3564 child_handle_buffer));
3565 if (r != EFI_SUCCESS) {
3566 r = EFI_DEVICE_ERROR;
3570 /* Remove the driver */
3571 if (!child_handle) {
3572 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3575 if (r != EFI_SUCCESS) {
3576 r = EFI_DEVICE_ERROR;
3580 EFI_CALL(efi_close_protocol(driver_image_handle,
3581 &efi_guid_driver_binding_protocol,
3582 driver_image_handle, NULL));
3586 free(child_handle_buffer);
3590 static struct efi_boot_services efi_boot_services = {
3592 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3593 .revision = EFI_SPECIFICATION_VERSION,
3594 .headersize = sizeof(struct efi_boot_services),
3596 .raise_tpl = efi_raise_tpl,
3597 .restore_tpl = efi_restore_tpl,
3598 .allocate_pages = efi_allocate_pages_ext,
3599 .free_pages = efi_free_pages_ext,
3600 .get_memory_map = efi_get_memory_map_ext,
3601 .allocate_pool = efi_allocate_pool_ext,
3602 .free_pool = efi_free_pool_ext,
3603 .create_event = efi_create_event_ext,
3604 .set_timer = efi_set_timer_ext,
3605 .wait_for_event = efi_wait_for_event,
3606 .signal_event = efi_signal_event_ext,
3607 .close_event = efi_close_event,
3608 .check_event = efi_check_event,
3609 .install_protocol_interface = efi_install_protocol_interface,
3610 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
3611 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
3612 .handle_protocol = efi_handle_protocol,
3614 .register_protocol_notify = efi_register_protocol_notify,
3615 .locate_handle = efi_locate_handle_ext,
3616 .locate_device_path = efi_locate_device_path,
3617 .install_configuration_table = efi_install_configuration_table_ext,
3618 .load_image = efi_load_image,
3619 .start_image = efi_start_image,
3621 .unload_image = efi_unload_image,
3622 .exit_boot_services = efi_exit_boot_services,
3623 .get_next_monotonic_count = efi_get_next_monotonic_count,
3625 .set_watchdog_timer = efi_set_watchdog_timer,
3626 .connect_controller = efi_connect_controller,
3627 .disconnect_controller = efi_disconnect_controller,
3628 .open_protocol = efi_open_protocol,
3629 .close_protocol = efi_close_protocol,
3630 .open_protocol_information = efi_open_protocol_information,
3631 .protocols_per_handle = efi_protocols_per_handle,
3632 .locate_handle_buffer = efi_locate_handle_buffer,
3633 .locate_protocol = efi_locate_protocol,
3634 .install_multiple_protocol_interfaces =
3635 efi_install_multiple_protocol_interfaces,
3636 .uninstall_multiple_protocol_interfaces =
3637 efi_uninstall_multiple_protocol_interfaces,
3638 .calculate_crc32 = efi_calculate_crc32,
3639 .copy_mem = efi_copy_mem,
3640 .set_mem = efi_set_mem,
3641 .create_event_ex = efi_create_event_ex,
3644 static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
3646 struct efi_system_table __efi_runtime_data systab = {
3648 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
3649 .revision = EFI_SPECIFICATION_VERSION,
3650 .headersize = sizeof(struct efi_system_table),
3652 .fw_vendor = firmware_vendor,
3653 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
3654 .runtime = &efi_runtime_services,
3660 * efi_initialize_system_table() - Initialize system table
3662 * Return: status code
3664 efi_status_t efi_initialize_system_table(void)
3668 /* Allocate configuration table array */
3669 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3670 EFI_MAX_CONFIGURATION_TABLES *
3671 sizeof(struct efi_configuration_table),
3672 (void **)&systab.tables);
3675 * These entries will be set to NULL in ExitBootServices(). To avoid
3676 * relocation in SetVirtualAddressMap(), set them dynamically.
3678 systab.con_in = &efi_con_in;
3679 systab.con_out = &efi_con_out;
3680 systab.std_err = &efi_con_out;
3681 systab.boottime = &efi_boot_services;
3683 /* Set CRC32 field in table headers */
3684 efi_update_table_header_crc32(&systab.hdr);
3685 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3686 efi_update_table_header_crc32(&efi_boot_services.hdr);