2 * EFI application boot time services
4 * Copyright (c) 2016 Alexander Graf
6 * SPDX-License-Identifier: GPL-2.0+
11 #include <efi_loader.h>
12 #include <environment.h>
14 #include <asm/global_data.h>
15 #include <libfdt_env.h>
16 #include <u-boot/crc.h>
21 DECLARE_GLOBAL_DATA_PTR;
23 /* Task priority level */
24 static efi_uintn_t efi_tpl = TPL_APPLICATION;
26 /* This list contains all the EFI objects our payload has access to */
27 LIST_HEAD(efi_obj_list);
30 * If we're running on nasty systems (32bit ARM booting into non-EFI Linux)
31 * we need to do trickery with caches. Since we don't want to break the EFI
32 * aware boot path, only apply hacks when loading exiting directly (breaking
33 * direct Linux EFI booting along the way - oh well).
35 static bool efi_is_direct_boot = true;
38 * EFI can pass arbitrary additional "tables" containing vendor specific
39 * information to the payload. One such table is the FDT table which contains
40 * a pointer to a flattened device tree blob.
42 * In most cases we want to pass an FDT to the payload, so reserve one slot of
43 * config table space for it. The pointer gets populated by do_bootefi_exec().
45 static struct efi_configuration_table __efi_runtime_data efi_conf_table[2];
49 * The "gd" pointer lives in a register on ARM and AArch64 that we declare
50 * fixed when compiling U-Boot. However, the payload does not know about that
51 * restriction so we need to manually swap its and our view of that register on
52 * EFI callback entry/exit.
54 static volatile void *efi_gd, *app_gd;
57 static int entry_count;
58 static int nesting_level;
59 /* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
60 const efi_guid_t efi_guid_driver_binding_protocol =
61 EFI_DRIVER_BINDING_PROTOCOL_GUID;
63 static efi_status_t EFIAPI efi_disconnect_controller(
64 efi_handle_t controller_handle,
65 efi_handle_t driver_image_handle,
66 efi_handle_t child_handle);
68 /* Called on every callback entry */
69 int __efi_entry_check(void)
71 int ret = entry_count++ == 0;
80 /* Called on every callback exit */
81 int __efi_exit_check(void)
83 int ret = --entry_count == 0;
90 /* Called from do_bootefi_exec() */
91 void efi_save_gd(void)
99 * Special case handler for error/abort that just forces things back
100 * to u-boot world so we can dump out an abort msg, without any care
101 * about returning back to UEFI world.
103 void efi_restore_gd(void)
106 /* Only restore if we're already in EFI context */
114 * Two spaces per indent level, maxing out at 10.. which ought to be
115 * enough for anyone ;-)
117 static const char *indent_string(int level)
119 const char *indent = " ";
120 const int max = strlen(indent);
121 level = min(max, level * 2);
122 return &indent[max - level];
125 const char *__efi_nesting(void)
127 return indent_string(nesting_level);
130 const char *__efi_nesting_inc(void)
132 return indent_string(nesting_level++);
135 const char *__efi_nesting_dec(void)
137 return indent_string(--nesting_level);
141 * Queue an EFI event.
143 * This function queues the notification function of the event for future
146 * The notification function is called if the task priority level of the
147 * event is higher than the current task priority level.
149 * For the SignalEvent service see efi_signal_event_ext.
151 * @event event to signal
152 * @check_tpl check the TPL level
154 void efi_signal_event(struct efi_event *event, bool check_tpl)
156 if (event->notify_function) {
157 event->is_queued = true;
159 if (check_tpl && efi_tpl >= event->notify_tpl)
161 EFI_CALL_VOID(event->notify_function(event,
162 event->notify_context));
164 event->is_queued = false;
168 * Raise the task priority level.
170 * This function implements the RaiseTpl service.
171 * See the Unified Extensible Firmware Interface (UEFI) specification
174 * @new_tpl new value of the task priority level
175 * @return old value of the task priority level
177 static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
179 efi_uintn_t old_tpl = efi_tpl;
181 EFI_ENTRY("0x%zx", new_tpl);
183 if (new_tpl < efi_tpl)
184 debug("WARNING: new_tpl < current_tpl in %s\n", __func__);
186 if (efi_tpl > TPL_HIGH_LEVEL)
187 efi_tpl = TPL_HIGH_LEVEL;
189 EFI_EXIT(EFI_SUCCESS);
194 * Lower the task priority level.
196 * This function implements the RestoreTpl service.
197 * See the Unified Extensible Firmware Interface (UEFI) specification
200 * @old_tpl value of the task priority level to be restored
202 static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
204 EFI_ENTRY("0x%zx", old_tpl);
206 if (old_tpl > efi_tpl)
207 debug("WARNING: old_tpl > current_tpl in %s\n", __func__);
209 if (efi_tpl > TPL_HIGH_LEVEL)
210 efi_tpl = TPL_HIGH_LEVEL;
212 EFI_EXIT(EFI_SUCCESS);
216 * Allocate memory pages.
218 * This function implements the AllocatePages service.
219 * See the Unified Extensible Firmware Interface (UEFI) specification
222 * @type type of allocation to be performed
223 * @memory_type usage type of the allocated memory
224 * @pages number of pages to be allocated
225 * @memory allocated memory
226 * @return status code
228 static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
234 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
235 r = efi_allocate_pages(type, memory_type, pages, memory);
242 * This function implements the FreePages service.
243 * See the Unified Extensible Firmware Interface (UEFI) specification
246 * @memory start of the memory area to be freed
247 * @pages number of pages to be freed
248 * @return status code
250 static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
255 EFI_ENTRY("%"PRIx64", 0x%zx", memory, pages);
256 r = efi_free_pages(memory, pages);
261 * Get map describing memory usage.
263 * This function implements the GetMemoryMap service.
264 * See the Unified Extensible Firmware Interface (UEFI) specification
267 * @memory_map_size on entry the size, in bytes, of the memory map buffer,
268 * on exit the size of the copied memory map
269 * @memory_map buffer to which the memory map is written
270 * @map_key key for the memory map
271 * @descriptor_size size of an individual memory descriptor
272 * @descriptor_version version number of the memory descriptor structure
273 * @return status code
275 static efi_status_t EFIAPI efi_get_memory_map_ext(
276 efi_uintn_t *memory_map_size,
277 struct efi_mem_desc *memory_map,
278 efi_uintn_t *map_key,
279 efi_uintn_t *descriptor_size,
280 uint32_t *descriptor_version)
284 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
285 map_key, descriptor_size, descriptor_version);
286 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
287 descriptor_size, descriptor_version);
292 * Allocate memory from pool.
294 * This function implements the AllocatePool service.
295 * See the Unified Extensible Firmware Interface (UEFI) specification
298 * @pool_type type of the pool from which memory is to be allocated
299 * @size number of bytes to be allocated
300 * @buffer allocated memory
301 * @return status code
303 static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
309 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
310 r = efi_allocate_pool(pool_type, size, buffer);
315 * Free memory from pool.
317 * This function implements the FreePool service.
318 * See the Unified Extensible Firmware Interface (UEFI) specification
321 * @buffer start of memory to be freed
322 * @return status code
324 static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
328 EFI_ENTRY("%p", buffer);
329 r = efi_free_pool(buffer);
334 * Add a new object to the object list.
336 * The protocols list is initialized.
337 * The object handle is set.
339 * @obj object to be added
341 void efi_add_handle(struct efi_object *obj)
345 INIT_LIST_HEAD(&obj->protocols);
347 list_add_tail(&obj->link, &efi_obj_list);
354 * @return status code
356 efi_status_t efi_create_handle(efi_handle_t *handle)
358 struct efi_object *obj;
361 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES,
362 sizeof(struct efi_object),
364 if (r != EFI_SUCCESS)
367 *handle = obj->handle;
372 * Find a protocol on a handle.
375 * @protocol_guid GUID of the protocol
376 * @handler reference to the protocol
377 * @return status code
379 efi_status_t efi_search_protocol(const efi_handle_t handle,
380 const efi_guid_t *protocol_guid,
381 struct efi_handler **handler)
383 struct efi_object *efiobj;
384 struct list_head *lhandle;
386 if (!handle || !protocol_guid)
387 return EFI_INVALID_PARAMETER;
388 efiobj = efi_search_obj(handle);
390 return EFI_INVALID_PARAMETER;
391 list_for_each(lhandle, &efiobj->protocols) {
392 struct efi_handler *protocol;
394 protocol = list_entry(lhandle, struct efi_handler, link);
395 if (!guidcmp(protocol->guid, protocol_guid)) {
401 return EFI_NOT_FOUND;
405 * Delete protocol from a handle.
407 * @handle handle from which the protocol shall be deleted
408 * @protocol GUID of the protocol to be deleted
409 * @protocol_interface interface of the protocol implementation
410 * @return status code
412 efi_status_t efi_remove_protocol(const efi_handle_t handle,
413 const efi_guid_t *protocol,
414 void *protocol_interface)
416 struct efi_handler *handler;
419 ret = efi_search_protocol(handle, protocol, &handler);
420 if (ret != EFI_SUCCESS)
422 if (guidcmp(handler->guid, protocol))
423 return EFI_INVALID_PARAMETER;
424 list_del(&handler->link);
430 * Delete all protocols from a handle.
432 * @handle handle from which the protocols shall be deleted
433 * @return status code
435 efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
437 struct efi_object *efiobj;
438 struct efi_handler *protocol;
439 struct efi_handler *pos;
441 efiobj = efi_search_obj(handle);
443 return EFI_INVALID_PARAMETER;
444 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
447 ret = efi_remove_protocol(handle, protocol->guid,
448 protocol->protocol_interface);
449 if (ret != EFI_SUCCESS)
458 * @handle handle to delete
460 void efi_delete_handle(struct efi_object *obj)
464 efi_remove_all_protocols(obj->handle);
465 list_del(&obj->link);
470 * Our event capabilities are very limited. Only a small limited
471 * number of events is allowed to coexist.
473 static struct efi_event efi_events[16];
478 * This function is used inside U-Boot code to create an event.
480 * For the API function implementing the CreateEvent service see
481 * efi_create_event_ext.
483 * @type type of the event to create
484 * @notify_tpl task priority level of the event
485 * @notify_function notification function of the event
486 * @notify_context pointer passed to the notification function
487 * @event created event
488 * @return status code
490 efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
491 void (EFIAPI *notify_function) (
492 struct efi_event *event,
494 void *notify_context, struct efi_event **event)
499 return EFI_INVALID_PARAMETER;
501 if ((type & EVT_NOTIFY_SIGNAL) && (type & EVT_NOTIFY_WAIT))
502 return EFI_INVALID_PARAMETER;
504 if ((type & (EVT_NOTIFY_SIGNAL|EVT_NOTIFY_WAIT)) &&
505 notify_function == NULL)
506 return EFI_INVALID_PARAMETER;
508 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
509 if (efi_events[i].type)
511 efi_events[i].type = type;
512 efi_events[i].notify_tpl = notify_tpl;
513 efi_events[i].notify_function = notify_function;
514 efi_events[i].notify_context = notify_context;
515 /* Disable timers on bootup */
516 efi_events[i].trigger_next = -1ULL;
517 efi_events[i].is_queued = false;
518 efi_events[i].is_signaled = false;
519 *event = &efi_events[i];
522 return EFI_OUT_OF_RESOURCES;
528 * This function implements the CreateEvent service.
529 * See the Unified Extensible Firmware Interface (UEFI) specification
532 * @type type of the event to create
533 * @notify_tpl task priority level of the event
534 * @notify_function notification function of the event
535 * @notify_context pointer passed to the notification function
536 * @event created event
537 * @return status code
539 static efi_status_t EFIAPI efi_create_event_ext(
540 uint32_t type, efi_uintn_t notify_tpl,
541 void (EFIAPI *notify_function) (
542 struct efi_event *event,
544 void *notify_context, struct efi_event **event)
546 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
548 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
549 notify_context, event));
554 * Check if a timer event has occurred or a queued notification function should
557 * Our timers have to work without interrupts, so we check whenever keyboard
558 * input or disk accesses happen if enough time elapsed for them to fire.
560 void efi_timer_check(void)
563 u64 now = timer_get_us();
565 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
566 if (!efi_events[i].type)
568 if (efi_events[i].is_queued)
569 efi_signal_event(&efi_events[i], true);
570 if (!(efi_events[i].type & EVT_TIMER) ||
571 now < efi_events[i].trigger_next)
573 switch (efi_events[i].trigger_type) {
574 case EFI_TIMER_RELATIVE:
575 efi_events[i].trigger_type = EFI_TIMER_STOP;
577 case EFI_TIMER_PERIODIC:
578 efi_events[i].trigger_next +=
579 efi_events[i].trigger_time;
584 efi_events[i].is_signaled = true;
585 efi_signal_event(&efi_events[i], true);
591 * Set the trigger time for a timer event or stop the event.
593 * This is the function for internal usage in U-Boot. For the API function
594 * implementing the SetTimer service see efi_set_timer_ext.
596 * @event event for which the timer is set
597 * @type type of the timer
598 * @trigger_time trigger period in multiples of 100ns
599 * @return status code
601 efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
602 uint64_t trigger_time)
607 * The parameter defines a multiple of 100ns.
608 * We use multiples of 1000ns. So divide by 10.
610 do_div(trigger_time, 10);
612 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
613 if (event != &efi_events[i])
616 if (!(event->type & EVT_TIMER))
620 event->trigger_next = -1ULL;
622 case EFI_TIMER_PERIODIC:
623 case EFI_TIMER_RELATIVE:
624 event->trigger_next =
625 timer_get_us() + trigger_time;
628 return EFI_INVALID_PARAMETER;
630 event->trigger_type = type;
631 event->trigger_time = trigger_time;
632 event->is_signaled = false;
635 return EFI_INVALID_PARAMETER;
639 * Set the trigger time for a timer event or stop the event.
641 * This function implements the SetTimer service.
642 * See the Unified Extensible Firmware Interface (UEFI) specification
645 * @event event for which the timer is set
646 * @type type of the timer
647 * @trigger_time trigger period in multiples of 100ns
648 * @return status code
650 static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
651 enum efi_timer_delay type,
652 uint64_t trigger_time)
654 EFI_ENTRY("%p, %d, %"PRIx64, event, type, trigger_time);
655 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
659 * Wait for events to be signaled.
661 * This function implements the WaitForEvent service.
662 * See the Unified Extensible Firmware Interface (UEFI) specification
665 * @num_events number of events to be waited for
666 * @events events to be waited for
667 * @index index of the event that was signaled
668 * @return status code
670 static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
671 struct efi_event **event,
676 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
678 /* Check parameters */
679 if (!num_events || !event)
680 return EFI_EXIT(EFI_INVALID_PARAMETER);
682 if (efi_tpl != TPL_APPLICATION)
683 return EFI_EXIT(EFI_UNSUPPORTED);
684 for (i = 0; i < num_events; ++i) {
685 for (j = 0; j < ARRAY_SIZE(efi_events); ++j) {
686 if (event[i] == &efi_events[j])
689 return EFI_EXIT(EFI_INVALID_PARAMETER);
691 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
692 return EFI_EXIT(EFI_INVALID_PARAMETER);
693 if (!event[i]->is_signaled)
694 efi_signal_event(event[i], true);
697 /* Wait for signal */
699 for (i = 0; i < num_events; ++i) {
700 if (event[i]->is_signaled)
703 /* Allow events to occur. */
709 * Reset the signal which is passed to the caller to allow periodic
712 event[i]->is_signaled = false;
716 return EFI_EXIT(EFI_SUCCESS);
720 * Signal an EFI event.
722 * This function implements the SignalEvent service.
723 * See the Unified Extensible Firmware Interface (UEFI) specification
726 * This functions sets the signaled state of the event and queues the
727 * notification function for execution.
729 * @event event to signal
730 * @return status code
732 static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
736 EFI_ENTRY("%p", event);
737 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
738 if (event != &efi_events[i])
740 if (event->is_signaled)
742 event->is_signaled = true;
743 if (event->type & EVT_NOTIFY_SIGNAL)
744 efi_signal_event(event, true);
747 return EFI_EXIT(EFI_SUCCESS);
751 * Close an EFI event.
753 * This function implements the CloseEvent service.
754 * See the Unified Extensible Firmware Interface (UEFI) specification
757 * @event event to close
758 * @return status code
760 static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
764 EFI_ENTRY("%p", event);
765 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
766 if (event == &efi_events[i]) {
768 event->trigger_next = -1ULL;
769 event->is_queued = false;
770 event->is_signaled = false;
771 return EFI_EXIT(EFI_SUCCESS);
774 return EFI_EXIT(EFI_INVALID_PARAMETER);
778 * Check if an event is signaled.
780 * This function implements the CheckEvent service.
781 * See the Unified Extensible Firmware Interface (UEFI) specification
784 * If an event is not signaled yet the notification function is queued.
786 * @event event to check
787 * @return status code
789 static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
793 EFI_ENTRY("%p", event);
795 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
796 if (event != &efi_events[i])
798 if (!event->type || event->type & EVT_NOTIFY_SIGNAL)
800 if (!event->is_signaled)
801 efi_signal_event(event, true);
802 if (event->is_signaled)
803 return EFI_EXIT(EFI_SUCCESS);
804 return EFI_EXIT(EFI_NOT_READY);
806 return EFI_EXIT(EFI_INVALID_PARAMETER);
810 * Find the internal EFI object for a handle.
812 * @handle handle to find
815 struct efi_object *efi_search_obj(const efi_handle_t handle)
817 struct efi_object *efiobj;
819 list_for_each_entry(efiobj, &efi_obj_list, link) {
820 if (efiobj->handle == handle)
828 * Create open protocol info entry and add it to a protocol.
830 * @handler handler of a protocol
831 * @return open protocol info entry
833 static struct efi_open_protocol_info_entry *efi_create_open_info(
834 struct efi_handler *handler)
836 struct efi_open_protocol_info_item *item;
838 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
841 /* Append the item to the open protocol info list. */
842 list_add_tail(&item->link, &handler->open_infos);
848 * Remove an open protocol info entry from a protocol.
850 * @handler handler of a protocol
851 * @return status code
853 static efi_status_t efi_delete_open_info(
854 struct efi_open_protocol_info_item *item)
856 list_del(&item->link);
862 * Install new protocol on a handle.
864 * @handle handle on which the protocol shall be installed
865 * @protocol GUID of the protocol to be installed
866 * @protocol_interface interface of the protocol implementation
867 * @return status code
869 efi_status_t efi_add_protocol(const efi_handle_t handle,
870 const efi_guid_t *protocol,
871 void *protocol_interface)
873 struct efi_object *efiobj;
874 struct efi_handler *handler;
877 efiobj = efi_search_obj(handle);
879 return EFI_INVALID_PARAMETER;
880 ret = efi_search_protocol(handle, protocol, NULL);
881 if (ret != EFI_NOT_FOUND)
882 return EFI_INVALID_PARAMETER;
883 handler = calloc(1, sizeof(struct efi_handler));
885 return EFI_OUT_OF_RESOURCES;
886 handler->guid = protocol;
887 handler->protocol_interface = protocol_interface;
888 INIT_LIST_HEAD(&handler->open_infos);
889 list_add_tail(&handler->link, &efiobj->protocols);
890 if (!guidcmp(&efi_guid_device_path, protocol))
891 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
896 * Install protocol interface.
898 * This function implements the InstallProtocolInterface service.
899 * See the Unified Extensible Firmware Interface (UEFI) specification
902 * @handle handle on which the protocol shall be installed
903 * @protocol GUID of the protocol to be installed
904 * @protocol_interface_type type of the interface to be installed,
905 * always EFI_NATIVE_INTERFACE
906 * @protocol_interface interface of the protocol implementation
907 * @return status code
909 static efi_status_t EFIAPI efi_install_protocol_interface(
910 void **handle, const efi_guid_t *protocol,
911 int protocol_interface_type, void *protocol_interface)
915 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
918 if (!handle || !protocol ||
919 protocol_interface_type != EFI_NATIVE_INTERFACE) {
920 r = EFI_INVALID_PARAMETER;
924 /* Create new handle if requested. */
926 r = efi_create_handle(handle);
927 if (r != EFI_SUCCESS)
929 debug("%sEFI: new handle %p\n", indent_string(nesting_level),
932 debug("%sEFI: handle %p\n", indent_string(nesting_level),
935 /* Add new protocol */
936 r = efi_add_protocol(*handle, protocol, protocol_interface);
942 * Reinstall protocol interface.
944 * This function implements the ReinstallProtocolInterface service.
945 * See the Unified Extensible Firmware Interface (UEFI) specification
948 * @handle handle on which the protocol shall be
950 * @protocol GUID of the protocol to be installed
951 * @old_interface interface to be removed
952 * @new_interface interface to be installed
953 * @return status code
955 static efi_status_t EFIAPI efi_reinstall_protocol_interface(
956 efi_handle_t handle, const efi_guid_t *protocol,
957 void *old_interface, void *new_interface)
959 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
961 return EFI_EXIT(EFI_ACCESS_DENIED);
965 * Get all drivers associated to a controller.
966 * The allocated buffer has to be freed with free().
968 * @efiobj handle of the controller
969 * @protocol protocol guid (optional)
970 * @number_of_drivers number of child controllers
971 * @driver_handle_buffer handles of the the drivers
972 * @return status code
974 static efi_status_t efi_get_drivers(struct efi_object *efiobj,
975 const efi_guid_t *protocol,
976 efi_uintn_t *number_of_drivers,
977 efi_handle_t **driver_handle_buffer)
979 struct efi_handler *handler;
980 struct efi_open_protocol_info_item *item;
981 efi_uintn_t count = 0, i;
984 /* Count all driver associations */
985 list_for_each_entry(handler, &efiobj->protocols, link) {
986 if (protocol && guidcmp(handler->guid, protocol))
988 list_for_each_entry(item, &handler->open_infos, link) {
989 if (item->info.attributes &
990 EFI_OPEN_PROTOCOL_BY_DRIVER)
995 * Create buffer. In case of duplicate driver assignments the buffer
996 * will be too large. But that does not harm.
998 *number_of_drivers = 0;
999 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1000 if (!*driver_handle_buffer)
1001 return EFI_OUT_OF_RESOURCES;
1002 /* Collect unique driver handles */
1003 list_for_each_entry(handler, &efiobj->protocols, link) {
1004 if (protocol && guidcmp(handler->guid, protocol))
1006 list_for_each_entry(item, &handler->open_infos, link) {
1007 if (item->info.attributes &
1008 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1009 /* Check this is a new driver */
1011 for (i = 0; i < *number_of_drivers; ++i) {
1012 if ((*driver_handle_buffer)[i] ==
1013 item->info.agent_handle)
1016 /* Copy handle to buffer */
1018 i = (*number_of_drivers)++;
1019 (*driver_handle_buffer)[i] =
1020 item->info.agent_handle;
1029 * Disconnect all drivers from a controller.
1031 * This function implements the DisconnectController service.
1032 * See the Unified Extensible Firmware Interface (UEFI) specification
1035 * @efiobj handle of the controller
1036 * @protocol protocol guid (optional)
1037 * @child_handle handle of the child to destroy
1038 * @return status code
1040 static efi_status_t efi_disconnect_all_drivers(
1041 struct efi_object *efiobj,
1042 const efi_guid_t *protocol,
1043 efi_handle_t child_handle)
1045 efi_uintn_t number_of_drivers;
1046 efi_handle_t *driver_handle_buffer;
1047 efi_status_t r, ret;
1049 ret = efi_get_drivers(efiobj, protocol, &number_of_drivers,
1050 &driver_handle_buffer);
1051 if (ret != EFI_SUCCESS)
1054 ret = EFI_NOT_FOUND;
1055 while (number_of_drivers) {
1056 r = EFI_CALL(efi_disconnect_controller(
1058 driver_handle_buffer[--number_of_drivers],
1060 if (r == EFI_SUCCESS)
1063 free(driver_handle_buffer);
1068 * Uninstall protocol interface.
1070 * This function implements the UninstallProtocolInterface service.
1071 * See the Unified Extensible Firmware Interface (UEFI) specification
1074 * @handle handle from which the protocol shall be removed
1075 * @protocol GUID of the protocol to be removed
1076 * @protocol_interface interface to be removed
1077 * @return status code
1079 static efi_status_t EFIAPI efi_uninstall_protocol_interface(
1080 efi_handle_t handle, const efi_guid_t *protocol,
1081 void *protocol_interface)
1083 struct efi_object *efiobj;
1084 struct efi_handler *handler;
1085 struct efi_open_protocol_info_item *item;
1086 struct efi_open_protocol_info_item *pos;
1089 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1092 efiobj = efi_search_obj(handle);
1094 r = EFI_INVALID_PARAMETER;
1097 /* Find the protocol on the handle */
1098 r = efi_search_protocol(handle, protocol, &handler);
1099 if (r != EFI_SUCCESS)
1101 /* Disconnect controllers */
1102 efi_disconnect_all_drivers(efiobj, protocol, NULL);
1103 if (!list_empty(&handler->open_infos)) {
1104 r = EFI_ACCESS_DENIED;
1107 /* Close protocol */
1108 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1109 if (item->info.attributes ==
1110 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1111 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1112 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1113 list_del(&item->link);
1115 if (!list_empty(&handler->open_infos)) {
1116 r = EFI_ACCESS_DENIED;
1119 r = efi_remove_protocol(handle, protocol, protocol_interface);
1125 * Register an event for notification when a protocol is installed.
1127 * This function implements the RegisterProtocolNotify service.
1128 * See the Unified Extensible Firmware Interface (UEFI) specification
1131 * @protocol GUID of the protocol whose installation shall be
1133 * @event event to be signaled upon installation of the protocol
1134 * @registration key for retrieving the registration information
1135 * @return status code
1137 static efi_status_t EFIAPI efi_register_protocol_notify(
1138 const efi_guid_t *protocol,
1139 struct efi_event *event,
1140 void **registration)
1142 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
1143 return EFI_EXIT(EFI_OUT_OF_RESOURCES);
1147 * Determine if an EFI handle implements a protocol.
1149 * See the documentation of the LocateHandle service in the UEFI specification.
1151 * @search_type selection criterion
1152 * @protocol GUID of the protocol
1153 * @search_key registration key
1155 * @return 0 if the handle implements the protocol
1157 static int efi_search(enum efi_locate_search_type search_type,
1158 const efi_guid_t *protocol, void *search_key,
1159 struct efi_object *efiobj)
1163 switch (search_type) {
1166 case BY_REGISTER_NOTIFY:
1167 /* TODO: RegisterProtocolNotify is not implemented yet */
1170 ret = efi_search_protocol(efiobj->handle, protocol, NULL);
1171 return (ret != EFI_SUCCESS);
1173 /* Invalid search type */
1179 * Locate handles implementing a protocol.
1181 * This function is meant for U-Boot internal calls. For the API implementation
1182 * of the LocateHandle service see efi_locate_handle_ext.
1184 * @search_type selection criterion
1185 * @protocol GUID of the protocol
1186 * @search_key registration key
1187 * @buffer_size size of the buffer to receive the handles in bytes
1188 * @buffer buffer to receive the relevant handles
1189 * @return status code
1191 static efi_status_t efi_locate_handle(
1192 enum efi_locate_search_type search_type,
1193 const efi_guid_t *protocol, void *search_key,
1194 efi_uintn_t *buffer_size, efi_handle_t *buffer)
1196 struct efi_object *efiobj;
1197 efi_uintn_t size = 0;
1199 /* Check parameters */
1200 switch (search_type) {
1203 case BY_REGISTER_NOTIFY:
1205 return EFI_INVALID_PARAMETER;
1206 /* RegisterProtocolNotify is not implemented yet */
1207 return EFI_UNSUPPORTED;
1210 return EFI_INVALID_PARAMETER;
1213 return EFI_INVALID_PARAMETER;
1217 * efi_locate_handle_buffer uses this function for
1218 * the calculation of the necessary buffer size.
1219 * So do not require a buffer for buffersize == 0.
1221 if (!buffer_size || (*buffer_size && !buffer))
1222 return EFI_INVALID_PARAMETER;
1224 /* Count how much space we need */
1225 list_for_each_entry(efiobj, &efi_obj_list, link) {
1226 if (!efi_search(search_type, protocol, search_key, efiobj))
1227 size += sizeof(void*);
1230 if (*buffer_size < size) {
1231 *buffer_size = size;
1232 return EFI_BUFFER_TOO_SMALL;
1235 *buffer_size = size;
1237 return EFI_NOT_FOUND;
1239 /* Then fill the array */
1240 list_for_each_entry(efiobj, &efi_obj_list, link) {
1241 if (!efi_search(search_type, protocol, search_key, efiobj))
1242 *buffer++ = efiobj->handle;
1249 * Locate handles implementing a protocol.
1251 * This function implements the LocateHandle service.
1252 * See the Unified Extensible Firmware Interface (UEFI) specification
1255 * @search_type selection criterion
1256 * @protocol GUID of the protocol
1257 * @search_key registration key
1258 * @buffer_size size of the buffer to receive the handles in bytes
1259 * @buffer buffer to receive the relevant handles
1260 * @return 0 if the handle implements the protocol
1262 static efi_status_t EFIAPI efi_locate_handle_ext(
1263 enum efi_locate_search_type search_type,
1264 const efi_guid_t *protocol, void *search_key,
1265 efi_uintn_t *buffer_size, efi_handle_t *buffer)
1267 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
1268 buffer_size, buffer);
1270 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1271 buffer_size, buffer));
1274 /* Collapses configuration table entries, removing index i */
1275 static void efi_remove_configuration_table(int i)
1277 struct efi_configuration_table *this = &efi_conf_table[i];
1278 struct efi_configuration_table *next = &efi_conf_table[i+1];
1279 struct efi_configuration_table *end = &efi_conf_table[systab.nr_tables];
1281 memmove(this, next, (ulong)end - (ulong)next);
1286 * Adds, updates, or removes a configuration table.
1288 * This function is used for internal calls. For the API implementation of the
1289 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1291 * @guid GUID of the installed table
1292 * @table table to be installed
1293 * @return status code
1295 efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table)
1299 /* Check for guid override */
1300 for (i = 0; i < systab.nr_tables; i++) {
1301 if (!guidcmp(guid, &efi_conf_table[i].guid)) {
1303 efi_conf_table[i].table = table;
1305 efi_remove_configuration_table(i);
1311 return EFI_NOT_FOUND;
1313 /* No override, check for overflow */
1314 if (i >= ARRAY_SIZE(efi_conf_table))
1315 return EFI_OUT_OF_RESOURCES;
1317 /* Add a new entry */
1318 memcpy(&efi_conf_table[i].guid, guid, sizeof(*guid));
1319 efi_conf_table[i].table = table;
1320 systab.nr_tables = i + 1;
1326 * Adds, updates, or removes a configuration table.
1328 * This function implements the InstallConfigurationTable service.
1329 * See the Unified Extensible Firmware Interface (UEFI) specification
1332 * @guid GUID of the installed table
1333 * @table table to be installed
1334 * @return status code
1336 static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1339 EFI_ENTRY("%pUl, %p", guid, table);
1340 return EFI_EXIT(efi_install_configuration_table(guid, table));
1344 * Initialize a loaded_image_info + loaded_image_info object with correct
1345 * protocols, boot-device, etc.
1347 * @info loaded image info to be passed to the entry point of the
1349 * @obj internal object associated with the loaded image
1350 * @device_path device path of the loaded image
1351 * @file_path file path of the loaded image
1352 * @return status code
1354 efi_status_t efi_setup_loaded_image(
1355 struct efi_loaded_image *info, struct efi_object *obj,
1356 struct efi_device_path *device_path,
1357 struct efi_device_path *file_path)
1361 /* Add internal object to object list */
1362 efi_add_handle(obj);
1363 /* efi_exit() assumes that the handle points to the info */
1366 info->file_path = file_path;
1368 info->device_handle = efi_dp_find_obj(device_path, NULL);
1371 * When asking for the device path interface, return
1372 * bootefi_device_path
1374 ret = efi_add_protocol(obj->handle, &efi_guid_device_path, device_path);
1375 if (ret != EFI_SUCCESS)
1379 * When asking for the loaded_image interface, just
1380 * return handle which points to loaded_image_info
1382 ret = efi_add_protocol(obj->handle, &efi_guid_loaded_image, info);
1383 if (ret != EFI_SUCCESS)
1386 ret = efi_add_protocol(obj->handle, &efi_guid_console_control,
1387 (void *)&efi_console_control);
1388 if (ret != EFI_SUCCESS)
1391 ret = efi_add_protocol(obj->handle,
1392 &efi_guid_device_path_to_text_protocol,
1393 (void *)&efi_device_path_to_text);
1394 if (ret != EFI_SUCCESS)
1399 printf("ERROR: Failure to install protocols for loaded image\n");
1404 * Load an image using a file path.
1406 * @file_path the path of the image to load
1407 * @buffer buffer containing the loaded image
1408 * @return status code
1410 efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
1413 struct efi_file_info *info = NULL;
1414 struct efi_file_handle *f;
1415 static efi_status_t ret;
1418 f = efi_file_from_path(file_path);
1420 return EFI_DEVICE_ERROR;
1423 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1425 if (ret == EFI_BUFFER_TOO_SMALL) {
1427 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1430 if (ret != EFI_SUCCESS)
1433 ret = efi_allocate_pool(EFI_LOADER_DATA, info->file_size, buffer);
1437 EFI_CALL(ret = f->read(f, &info->file_size, *buffer));
1441 EFI_CALL(f->close(f));
1443 if (ret != EFI_SUCCESS) {
1444 efi_free_pool(*buffer);
1452 * Load an EFI image into memory.
1454 * This function implements the LoadImage service.
1455 * See the Unified Extensible Firmware Interface (UEFI) specification
1458 * @boot_policy true for request originating from the boot manager
1459 * @parent_image the calles's image handle
1460 * @file_path the path of the image to load
1461 * @source_buffer memory location from which the image is installed
1462 * @source_size size of the memory area from which the image is
1464 * @image_handle handle for the newly installed image
1465 * @return status code
1467 static efi_status_t EFIAPI efi_load_image(bool boot_policy,
1468 efi_handle_t parent_image,
1469 struct efi_device_path *file_path,
1470 void *source_buffer,
1471 unsigned long source_size,
1472 efi_handle_t *image_handle)
1474 struct efi_loaded_image *info;
1475 struct efi_object *obj;
1478 EFI_ENTRY("%d, %p, %pD, %p, %ld, %p", boot_policy, parent_image,
1479 file_path, source_buffer, source_size, image_handle);
1481 info = calloc(1, sizeof(*info));
1482 obj = calloc(1, sizeof(*obj));
1484 if (!source_buffer) {
1485 struct efi_device_path *dp, *fp;
1487 ret = efi_load_image_from_path(file_path, &source_buffer);
1488 if (ret != EFI_SUCCESS)
1491 * split file_path which contains both the device and
1494 efi_dp_split_file_path(file_path, &dp, &fp);
1495 ret = efi_setup_loaded_image(info, obj, dp, fp);
1496 if (ret != EFI_SUCCESS)
1499 /* In this case, file_path is the "device" path, ie.
1500 * something like a HARDWARE_DEVICE:MEMORY_MAPPED
1502 ret = efi_setup_loaded_image(info, obj, file_path, NULL);
1503 if (ret != EFI_SUCCESS)
1506 info->reserved = efi_load_pe(source_buffer, info);
1507 if (!info->reserved) {
1508 ret = EFI_UNSUPPORTED;
1511 info->system_table = &systab;
1512 info->parent_handle = parent_image;
1513 *image_handle = obj->handle;
1514 return EFI_EXIT(EFI_SUCCESS);
1517 efi_delete_handle(obj);
1518 return EFI_EXIT(ret);
1522 * Call the entry point of an image.
1524 * This function implements the StartImage service.
1525 * See the Unified Extensible Firmware Interface (UEFI) specification
1528 * @image_handle handle of the image
1529 * @exit_data_size size of the buffer
1530 * @exit_data buffer to receive the exit data of the called image
1531 * @return status code
1533 static efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
1534 unsigned long *exit_data_size,
1537 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
1538 struct efi_system_table *st);
1539 struct efi_loaded_image *info = image_handle;
1542 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
1543 entry = info->reserved;
1545 efi_is_direct_boot = false;
1547 /* call the image! */
1548 if (setjmp(&info->exit_jmp)) {
1550 * We called the entry point of the child image with EFI_CALL
1551 * in the lines below. The child image called the Exit() boot
1552 * service efi_exit() which executed the long jump that brought
1553 * us to the current line. This implies that the second half
1554 * of the EFI_CALL macro has not been executed.
1558 * efi_exit() called efi_restore_gd(). We have to undo this
1559 * otherwise __efi_entry_check() will put the wrong value into
1565 * To get ready to call EFI_EXIT below we have to execute the
1566 * missed out steps of EFI_CALL.
1568 assert(__efi_entry_check());
1569 debug("%sEFI: %lu returned by started image\n",
1570 __efi_nesting_dec(),
1571 (unsigned long)((uintptr_t)info->exit_status &
1573 return EFI_EXIT(info->exit_status);
1576 ret = EFI_CALL(entry(image_handle, &systab));
1578 /* Should usually never get here */
1579 return EFI_EXIT(ret);
1583 * Leave an EFI application or driver.
1585 * This function implements the Exit service.
1586 * See the Unified Extensible Firmware Interface (UEFI) specification
1589 * @image_handle handle of the application or driver that is exiting
1590 * @exit_status status code
1591 * @exit_data_size size of the buffer in bytes
1592 * @exit_data buffer with data describing an error
1593 * @return status code
1595 static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
1596 efi_status_t exit_status, unsigned long exit_data_size,
1600 * We require that the handle points to the original loaded
1601 * image protocol interface.
1603 * For getting the longjmp address this is safer than locating
1604 * the protocol because the protocol may have been reinstalled
1605 * pointing to another memory location.
1607 * TODO: We should call the unload procedure of the loaded
1610 struct efi_loaded_image *loaded_image_info = (void*)image_handle;
1612 EFI_ENTRY("%p, %ld, %ld, %p", image_handle, exit_status,
1613 exit_data_size, exit_data);
1615 /* Make sure entry/exit counts for EFI world cross-overs match */
1616 EFI_EXIT(exit_status);
1619 * But longjmp out with the U-Boot gd, not the application's, as
1620 * the other end is a setjmp call inside EFI context.
1624 loaded_image_info->exit_status = exit_status;
1625 longjmp(&loaded_image_info->exit_jmp, 1);
1627 panic("EFI application exited");
1631 * Unload an EFI image.
1633 * This function implements the UnloadImage service.
1634 * See the Unified Extensible Firmware Interface (UEFI) specification
1637 * @image_handle handle of the image to be unloaded
1638 * @return status code
1640 static efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
1642 struct efi_object *efiobj;
1644 EFI_ENTRY("%p", image_handle);
1645 efiobj = efi_search_obj(image_handle);
1647 list_del(&efiobj->link);
1649 return EFI_EXIT(EFI_SUCCESS);
1653 * Fix up caches for EFI payloads if necessary.
1655 static void efi_exit_caches(void)
1657 #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1659 * Grub on 32bit ARM needs to have caches disabled before jumping into
1660 * a zImage, but does not know of all cache layers. Give it a hand.
1662 if (efi_is_direct_boot)
1663 cleanup_before_linux();
1668 * Stop all boot services.
1670 * This function implements the ExitBootServices service.
1671 * See the Unified Extensible Firmware Interface (UEFI) specification
1674 * All timer events are disabled.
1675 * For exit boot services events the notification function is called.
1676 * The boot services are disabled in the system table.
1678 * @image_handle handle of the loaded image
1679 * @map_key key of the memory map
1680 * @return status code
1682 static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
1683 unsigned long map_key)
1687 EFI_ENTRY("%p, %ld", image_handle, map_key);
1689 /* Make sure that notification functions are not called anymore */
1690 efi_tpl = TPL_HIGH_LEVEL;
1692 /* Check if ExitBootServices has already been called */
1693 if (!systab.boottime)
1694 return EFI_EXIT(EFI_SUCCESS);
1696 /* Notify that ExitBootServices is invoked. */
1697 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
1698 if (efi_events[i].type != EVT_SIGNAL_EXIT_BOOT_SERVICES)
1700 efi_events[i].is_signaled = true;
1701 efi_signal_event(&efi_events[i], false);
1704 /* TODO Should persist EFI variables here */
1706 board_quiesce_devices();
1708 /* Fix up caches for EFI payloads if necessary */
1711 /* This stops all lingering devices */
1712 bootm_disable_interrupts();
1714 /* Disable boottime services */
1715 systab.con_in_handle = NULL;
1716 systab.con_in = NULL;
1717 systab.con_out_handle = NULL;
1718 systab.con_out = NULL;
1719 systab.stderr_handle = NULL;
1720 systab.std_err = NULL;
1721 systab.boottime = NULL;
1723 /* Recalculate CRC32 */
1724 systab.hdr.crc32 = 0;
1725 systab.hdr.crc32 = crc32(0, (const unsigned char *)&systab,
1726 sizeof(struct efi_system_table));
1728 /* Give the payload some time to boot */
1729 efi_set_watchdog(0);
1732 return EFI_EXIT(EFI_SUCCESS);
1736 * Get next value of the counter.
1738 * This function implements the NextMonotonicCount service.
1739 * See the Unified Extensible Firmware Interface (UEFI) specification
1742 * @count returned value of the counter
1743 * @return status code
1745 static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1747 static uint64_t mono = 0;
1748 EFI_ENTRY("%p", count);
1750 return EFI_EXIT(EFI_SUCCESS);
1756 * This function implements the Stall sercive.
1757 * See the Unified Extensible Firmware Interface (UEFI) specification
1760 * @microseconds period to sleep in microseconds
1761 * @return status code
1763 static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1765 EFI_ENTRY("%ld", microseconds);
1766 udelay(microseconds);
1767 return EFI_EXIT(EFI_SUCCESS);
1771 * Reset the watchdog timer.
1773 * This function implements the SetWatchdogTimer service.
1774 * See the Unified Extensible Firmware Interface (UEFI) specification
1777 * @timeout seconds before reset by watchdog
1778 * @watchdog_code code to be logged when resetting
1779 * @data_size size of buffer in bytes
1780 * @watchdog_data buffer with data describing the reset reason
1781 * @return status code
1783 static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
1784 uint64_t watchdog_code,
1785 unsigned long data_size,
1786 uint16_t *watchdog_data)
1788 EFI_ENTRY("%ld, 0x%"PRIx64", %ld, %p", timeout, watchdog_code,
1789 data_size, watchdog_data);
1790 return EFI_EXIT(efi_set_watchdog(timeout));
1796 * This function implements the CloseProtocol service.
1797 * See the Unified Extensible Firmware Interface (UEFI) specification
1800 * @handle handle on which the protocol shall be closed
1801 * @protocol GUID of the protocol to close
1802 * @agent_handle handle of the driver
1803 * @controller_handle handle of the controller
1804 * @return status code
1806 static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
1807 const efi_guid_t *protocol,
1808 efi_handle_t agent_handle,
1809 efi_handle_t controller_handle)
1811 struct efi_handler *handler;
1812 struct efi_open_protocol_info_item *item;
1813 struct efi_open_protocol_info_item *pos;
1816 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
1819 if (!agent_handle) {
1820 r = EFI_INVALID_PARAMETER;
1823 r = efi_search_protocol(handle, protocol, &handler);
1824 if (r != EFI_SUCCESS)
1828 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1829 if (item->info.agent_handle == agent_handle &&
1830 item->info.controller_handle == controller_handle) {
1831 efi_delete_open_info(item);
1841 * Provide information about then open status of a protocol on a handle
1843 * This function implements the OpenProtocolInformation service.
1844 * See the Unified Extensible Firmware Interface (UEFI) specification
1847 * @handle handle for which the information shall be retrieved
1848 * @protocol GUID of the protocol
1849 * @entry_buffer buffer to receive the open protocol information
1850 * @entry_count number of entries available in the buffer
1851 * @return status code
1853 static efi_status_t EFIAPI efi_open_protocol_information(efi_handle_t handle,
1854 const efi_guid_t *protocol,
1855 struct efi_open_protocol_info_entry **entry_buffer,
1856 efi_uintn_t *entry_count)
1858 unsigned long buffer_size;
1859 unsigned long count;
1860 struct efi_handler *handler;
1861 struct efi_open_protocol_info_item *item;
1864 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
1867 /* Check parameters */
1868 if (!entry_buffer) {
1869 r = EFI_INVALID_PARAMETER;
1872 r = efi_search_protocol(handle, protocol, &handler);
1873 if (r != EFI_SUCCESS)
1878 list_for_each_entry(item, &handler->open_infos, link) {
1879 if (item->info.open_count)
1882 *entry_count = count;
1883 *entry_buffer = NULL;
1890 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
1891 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
1892 (void **)entry_buffer);
1893 if (r != EFI_SUCCESS)
1895 list_for_each_entry_reverse(item, &handler->open_infos, link) {
1896 if (item->info.open_count)
1897 (*entry_buffer)[--count] = item->info;
1904 * Get protocols installed on a handle.
1906 * This function implements the ProtocolsPerHandleService.
1907 * See the Unified Extensible Firmware Interface (UEFI) specification
1910 * @handle handle for which the information is retrieved
1911 * @protocol_buffer buffer with protocol GUIDs
1912 * @protocol_buffer_count number of entries in the buffer
1913 * @return status code
1915 static efi_status_t EFIAPI efi_protocols_per_handle(
1916 efi_handle_t handle, efi_guid_t ***protocol_buffer,
1917 efi_uintn_t *protocol_buffer_count)
1919 unsigned long buffer_size;
1920 struct efi_object *efiobj;
1921 struct list_head *protocol_handle;
1924 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
1925 protocol_buffer_count);
1927 if (!handle || !protocol_buffer || !protocol_buffer_count)
1928 return EFI_EXIT(EFI_INVALID_PARAMETER);
1930 *protocol_buffer = NULL;
1931 *protocol_buffer_count = 0;
1933 efiobj = efi_search_obj(handle);
1935 return EFI_EXIT(EFI_INVALID_PARAMETER);
1937 /* Count protocols */
1938 list_for_each(protocol_handle, &efiobj->protocols) {
1939 ++*protocol_buffer_count;
1943 if (*protocol_buffer_count) {
1946 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
1947 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
1948 (void **)protocol_buffer);
1949 if (r != EFI_SUCCESS)
1951 list_for_each(protocol_handle, &efiobj->protocols) {
1952 struct efi_handler *protocol;
1954 protocol = list_entry(protocol_handle,
1955 struct efi_handler, link);
1956 (*protocol_buffer)[j] = (void *)protocol->guid;
1961 return EFI_EXIT(EFI_SUCCESS);
1965 * Locate handles implementing a protocol.
1967 * This function implements the LocateHandleBuffer service.
1968 * See the Unified Extensible Firmware Interface (UEFI) specification
1971 * @search_type selection criterion
1972 * @protocol GUID of the protocol
1973 * @search_key registration key
1974 * @no_handles number of returned handles
1975 * @buffer buffer with the returned handles
1976 * @return status code
1978 static efi_status_t EFIAPI efi_locate_handle_buffer(
1979 enum efi_locate_search_type search_type,
1980 const efi_guid_t *protocol, void *search_key,
1981 efi_uintn_t *no_handles, efi_handle_t **buffer)
1984 efi_uintn_t buffer_size = 0;
1986 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
1987 no_handles, buffer);
1989 if (!no_handles || !buffer) {
1990 r = EFI_INVALID_PARAMETER;
1995 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
1997 if (r != EFI_BUFFER_TOO_SMALL)
1999 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
2001 if (r != EFI_SUCCESS)
2003 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2005 if (r == EFI_SUCCESS)
2006 *no_handles = buffer_size / sizeof(efi_handle_t);
2012 * Find an interface implementing a protocol.
2014 * This function implements the LocateProtocol service.
2015 * See the Unified Extensible Firmware Interface (UEFI) specification
2018 * @protocol GUID of the protocol
2019 * @registration registration key passed to the notification function
2020 * @protocol_interface interface implementing the protocol
2021 * @return status code
2023 static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
2025 void **protocol_interface)
2027 struct list_head *lhandle;
2030 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
2032 if (!protocol || !protocol_interface)
2033 return EFI_EXIT(EFI_INVALID_PARAMETER);
2035 list_for_each(lhandle, &efi_obj_list) {
2036 struct efi_object *efiobj;
2037 struct efi_handler *handler;
2039 efiobj = list_entry(lhandle, struct efi_object, link);
2041 ret = efi_search_protocol(efiobj->handle, protocol, &handler);
2042 if (ret == EFI_SUCCESS) {
2043 *protocol_interface = handler->protocol_interface;
2044 return EFI_EXIT(EFI_SUCCESS);
2047 *protocol_interface = NULL;
2049 return EFI_EXIT(EFI_NOT_FOUND);
2053 * Get the device path and handle of an device implementing a protocol.
2055 * This function implements the LocateDevicePath service.
2056 * See the Unified Extensible Firmware Interface (UEFI) specification
2059 * @protocol GUID of the protocol
2060 * @device_path device path
2061 * @device handle of the device
2062 * @return status code
2064 static efi_status_t EFIAPI efi_locate_device_path(
2065 const efi_guid_t *protocol,
2066 struct efi_device_path **device_path,
2067 efi_handle_t *device)
2069 struct efi_device_path *dp;
2071 struct efi_handler *handler;
2072 efi_handle_t *handles;
2074 size_t len_best = 0;
2075 efi_uintn_t no_handles;
2079 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2081 if (!protocol || !device_path || !*device_path || !device) {
2082 ret = EFI_INVALID_PARAMETER;
2086 /* Find end of device path */
2087 len = efi_dp_size(*device_path);
2089 /* Get all handles implementing the protocol */
2090 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2091 &no_handles, &handles));
2092 if (ret != EFI_SUCCESS)
2095 for (i = 0; i < no_handles; ++i) {
2096 /* Find the device path protocol */
2097 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2099 if (ret != EFI_SUCCESS)
2101 dp = (struct efi_device_path *)handler->protocol_interface;
2102 len_dp = efi_dp_size(dp);
2104 * This handle can only be a better fit
2105 * if its device path length is longer than the best fit and
2106 * if its device path length is shorter of equal the searched
2109 if (len_dp <= len_best || len_dp > len)
2111 /* Check if dp is a subpath of device_path */
2112 if (memcmp(*device_path, dp, len_dp))
2114 *device = handles[i];
2118 remainder = (u8 *)*device_path + len_best;
2119 *device_path = (struct efi_device_path *)remainder;
2122 ret = EFI_NOT_FOUND;
2125 return EFI_EXIT(ret);
2129 * Install multiple protocol interfaces.
2131 * This function implements the MultipleProtocolInterfaces service.
2132 * See the Unified Extensible Firmware Interface (UEFI) specification
2135 * @handle handle on which the protocol interfaces shall be installed
2136 * @... NULL terminated argument list with pairs of protocol GUIDS and
2138 * @return status code
2140 static efi_status_t EFIAPI efi_install_multiple_protocol_interfaces(
2143 EFI_ENTRY("%p", handle);
2146 const efi_guid_t *protocol;
2147 void *protocol_interface;
2148 efi_status_t r = EFI_SUCCESS;
2152 return EFI_EXIT(EFI_INVALID_PARAMETER);
2154 va_start(argptr, handle);
2156 protocol = va_arg(argptr, efi_guid_t*);
2159 protocol_interface = va_arg(argptr, void*);
2160 r = EFI_CALL(efi_install_protocol_interface(
2162 EFI_NATIVE_INTERFACE,
2163 protocol_interface));
2164 if (r != EFI_SUCCESS)
2169 if (r == EFI_SUCCESS)
2172 /* If an error occurred undo all changes. */
2173 va_start(argptr, handle);
2175 protocol = va_arg(argptr, efi_guid_t*);
2176 protocol_interface = va_arg(argptr, void*);
2177 EFI_CALL(efi_uninstall_protocol_interface(handle, protocol,
2178 protocol_interface));
2186 * Uninstall multiple protocol interfaces.
2188 * This function implements the UninstallMultipleProtocolInterfaces service.
2189 * See the Unified Extensible Firmware Interface (UEFI) specification
2192 * @handle handle from which the protocol interfaces shall be removed
2193 * @... NULL terminated argument list with pairs of protocol GUIDS and
2195 * @return status code
2197 static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
2200 EFI_ENTRY("%p", handle);
2203 const efi_guid_t *protocol;
2204 void *protocol_interface;
2205 efi_status_t r = EFI_SUCCESS;
2209 return EFI_EXIT(EFI_INVALID_PARAMETER);
2211 va_start(argptr, handle);
2213 protocol = va_arg(argptr, efi_guid_t*);
2216 protocol_interface = va_arg(argptr, void*);
2217 r = EFI_CALL(efi_uninstall_protocol_interface(
2219 protocol_interface));
2220 if (r != EFI_SUCCESS)
2225 if (r == EFI_SUCCESS)
2228 /* If an error occurred undo all changes. */
2229 va_start(argptr, handle);
2231 protocol = va_arg(argptr, efi_guid_t*);
2232 protocol_interface = va_arg(argptr, void*);
2233 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2234 EFI_NATIVE_INTERFACE,
2235 protocol_interface));
2243 * Calculate cyclic redundancy code.
2245 * This function implements the CalculateCrc32 service.
2246 * See the Unified Extensible Firmware Interface (UEFI) specification
2249 * @data buffer with data
2250 * @data_size size of buffer in bytes
2251 * @crc32_p cyclic redundancy code
2252 * @return status code
2254 static efi_status_t EFIAPI efi_calculate_crc32(void *data,
2255 unsigned long data_size,
2258 EFI_ENTRY("%p, %ld", data, data_size);
2259 *crc32_p = crc32(0, data, data_size);
2260 return EFI_EXIT(EFI_SUCCESS);
2266 * This function implements the CopyMem service.
2267 * See the Unified Extensible Firmware Interface (UEFI) specification
2270 * @destination destination of the copy operation
2271 * @source source of the copy operation
2272 * @length number of bytes to copy
2274 static void EFIAPI efi_copy_mem(void *destination, const void *source,
2277 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
2278 memcpy(destination, source, length);
2279 EFI_EXIT(EFI_SUCCESS);
2283 * Fill memory with a byte value.
2285 * This function implements the SetMem service.
2286 * See the Unified Extensible Firmware Interface (UEFI) specification
2289 * @buffer buffer to fill
2290 * @size size of buffer in bytes
2291 * @value byte to copy to the buffer
2293 static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
2295 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
2296 memset(buffer, value, size);
2297 EFI_EXIT(EFI_SUCCESS);
2301 * Open protocol interface on a handle.
2303 * @handler handler of a protocol
2304 * @protocol_interface interface implementing the protocol
2305 * @agent_handle handle of the driver
2306 * @controller_handle handle of the controller
2307 * @attributes attributes indicating how to open the protocol
2308 * @return status code
2310 static efi_status_t efi_protocol_open(
2311 struct efi_handler *handler,
2312 void **protocol_interface, void *agent_handle,
2313 void *controller_handle, uint32_t attributes)
2315 struct efi_open_protocol_info_item *item;
2316 struct efi_open_protocol_info_entry *match = NULL;
2317 bool opened_by_driver = false;
2318 bool opened_exclusive = false;
2320 /* If there is no agent, only return the interface */
2324 /* For TEST_PROTOCOL ignore interface attribute */
2325 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2326 *protocol_interface = NULL;
2329 * Check if the protocol is already opened by a driver with the same
2330 * attributes or opened exclusively
2332 list_for_each_entry(item, &handler->open_infos, link) {
2333 if (item->info.agent_handle == agent_handle) {
2334 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2335 (item->info.attributes == attributes))
2336 return EFI_ALREADY_STARTED;
2338 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2339 opened_exclusive = true;
2342 /* Only one controller can open the protocol exclusively */
2343 if (opened_exclusive && attributes &
2344 (EFI_OPEN_PROTOCOL_EXCLUSIVE | EFI_OPEN_PROTOCOL_BY_DRIVER))
2345 return EFI_ACCESS_DENIED;
2347 /* Prepare exclusive opening */
2348 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2349 /* Try to disconnect controllers */
2350 list_for_each_entry(item, &handler->open_infos, link) {
2351 if (item->info.attributes ==
2352 EFI_OPEN_PROTOCOL_BY_DRIVER)
2353 EFI_CALL(efi_disconnect_controller(
2354 item->info.controller_handle,
2355 item->info.agent_handle,
2358 opened_by_driver = false;
2359 /* Check if all controllers are disconnected */
2360 list_for_each_entry(item, &handler->open_infos, link) {
2361 if (item->info.attributes & EFI_OPEN_PROTOCOL_BY_DRIVER)
2362 opened_by_driver = true;
2364 /* Only one controller can be conncected */
2365 if (opened_by_driver)
2366 return EFI_ACCESS_DENIED;
2369 /* Find existing entry */
2370 list_for_each_entry(item, &handler->open_infos, link) {
2371 if (item->info.agent_handle == agent_handle &&
2372 item->info.controller_handle == controller_handle)
2373 match = &item->info;
2375 /* None found, create one */
2377 match = efi_create_open_info(handler);
2379 return EFI_OUT_OF_RESOURCES;
2382 match->agent_handle = agent_handle;
2383 match->controller_handle = controller_handle;
2384 match->attributes = attributes;
2385 match->open_count++;
2388 /* For TEST_PROTOCOL ignore interface attribute. */
2389 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2390 *protocol_interface = handler->protocol_interface;
2396 * Open protocol interface on a handle.
2398 * This function implements the OpenProtocol interface.
2399 * See the Unified Extensible Firmware Interface (UEFI) specification
2402 * @handle handle on which the protocol shall be opened
2403 * @protocol GUID of the protocol
2404 * @protocol_interface interface implementing the protocol
2405 * @agent_handle handle of the driver
2406 * @controller_handle handle of the controller
2407 * @attributes attributes indicating how to open the protocol
2408 * @return status code
2410 static efi_status_t EFIAPI efi_open_protocol(
2411 void *handle, const efi_guid_t *protocol,
2412 void **protocol_interface, void *agent_handle,
2413 void *controller_handle, uint32_t attributes)
2415 struct efi_handler *handler;
2416 efi_status_t r = EFI_INVALID_PARAMETER;
2418 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
2419 protocol_interface, agent_handle, controller_handle,
2422 if (!handle || !protocol ||
2423 (!protocol_interface && attributes !=
2424 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2428 switch (attributes) {
2429 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2430 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2431 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2433 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2434 if (controller_handle == handle)
2437 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2438 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
2439 /* Check that the controller handle is valid */
2440 if (!efi_search_obj(controller_handle))
2443 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
2444 /* Check that the agent handle is valid */
2445 if (!efi_search_obj(agent_handle))
2452 r = efi_search_protocol(handle, protocol, &handler);
2453 if (r != EFI_SUCCESS)
2456 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2457 controller_handle, attributes);
2463 * Get interface of a protocol on a handle.
2465 * This function implements the HandleProtocol service.
2466 * See the Unified Extensible Firmware Interface (UEFI) specification
2469 * @handle handle on which the protocol shall be opened
2470 * @protocol GUID of the protocol
2471 * @protocol_interface interface implementing the protocol
2472 * @return status code
2474 static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
2475 const efi_guid_t *protocol,
2476 void **protocol_interface)
2478 return efi_open_protocol(handle, protocol, protocol_interface, NULL,
2479 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
2482 static efi_status_t efi_bind_controller(
2483 efi_handle_t controller_handle,
2484 efi_handle_t driver_image_handle,
2485 struct efi_device_path *remain_device_path)
2487 struct efi_driver_binding_protocol *binding_protocol;
2490 r = EFI_CALL(efi_open_protocol(driver_image_handle,
2491 &efi_guid_driver_binding_protocol,
2492 (void **)&binding_protocol,
2493 driver_image_handle, NULL,
2494 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2495 if (r != EFI_SUCCESS)
2497 r = EFI_CALL(binding_protocol->supported(binding_protocol,
2499 remain_device_path));
2500 if (r == EFI_SUCCESS)
2501 r = EFI_CALL(binding_protocol->start(binding_protocol,
2503 remain_device_path));
2504 EFI_CALL(efi_close_protocol(driver_image_handle,
2505 &efi_guid_driver_binding_protocol,
2506 driver_image_handle, NULL));
2510 static efi_status_t efi_connect_single_controller(
2511 efi_handle_t controller_handle,
2512 efi_handle_t *driver_image_handle,
2513 struct efi_device_path *remain_device_path)
2515 efi_handle_t *buffer;
2519 size_t connected = 0;
2521 /* Get buffer with all handles with driver binding protocol */
2522 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
2523 &efi_guid_driver_binding_protocol,
2524 NULL, &count, &buffer));
2525 if (r != EFI_SUCCESS)
2528 /* Context Override */
2529 if (driver_image_handle) {
2530 for (; *driver_image_handle; ++driver_image_handle) {
2531 for (i = 0; i < count; ++i) {
2532 if (buffer[i] == *driver_image_handle) {
2534 r = efi_bind_controller(
2536 *driver_image_handle,
2537 remain_device_path);
2539 * For drivers that do not support the
2540 * controller or are already connected
2541 * we receive an error code here.
2543 if (r == EFI_SUCCESS)
2551 * TODO: Some overrides are not yet implemented:
2552 * - Platform Driver Override
2553 * - Driver Family Override Search
2554 * - Bus Specific Driver Override
2557 /* Driver Binding Search */
2558 for (i = 0; i < count; ++i) {
2560 r = efi_bind_controller(controller_handle,
2562 remain_device_path);
2563 if (r == EFI_SUCCESS)
2568 efi_free_pool(buffer);
2570 return EFI_NOT_FOUND;
2575 * Connect a controller to a driver.
2577 * This function implements the ConnectController service.
2578 * See the Unified Extensible Firmware Interface (UEFI) specification
2581 * First all driver binding protocol handles are tried for binding drivers.
2582 * Afterwards all handles that have openened a protocol of the controller
2583 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
2585 * @controller_handle handle of the controller
2586 * @driver_image_handle handle of the driver
2587 * @remain_device_path device path of a child controller
2588 * @recursive true to connect all child controllers
2589 * @return status code
2591 static efi_status_t EFIAPI efi_connect_controller(
2592 efi_handle_t controller_handle,
2593 efi_handle_t *driver_image_handle,
2594 struct efi_device_path *remain_device_path,
2598 efi_status_t ret = EFI_NOT_FOUND;
2599 struct efi_object *efiobj;
2601 EFI_ENTRY("%p, %p, %p, %d", controller_handle, driver_image_handle,
2602 remain_device_path, recursive);
2604 efiobj = efi_search_obj(controller_handle);
2606 ret = EFI_INVALID_PARAMETER;
2610 r = efi_connect_single_controller(controller_handle,
2611 driver_image_handle,
2612 remain_device_path);
2613 if (r == EFI_SUCCESS)
2616 struct efi_handler *handler;
2617 struct efi_open_protocol_info_item *item;
2619 list_for_each_entry(handler, &efiobj->protocols, link) {
2620 list_for_each_entry(item, &handler->open_infos, link) {
2621 if (item->info.attributes &
2622 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
2623 r = EFI_CALL(efi_connect_controller(
2624 item->info.controller_handle,
2625 driver_image_handle,
2628 if (r == EFI_SUCCESS)
2634 /* Check for child controller specified by end node */
2635 if (ret != EFI_SUCCESS && remain_device_path &&
2636 remain_device_path->type == DEVICE_PATH_TYPE_END)
2639 return EFI_EXIT(ret);
2643 * Get all child controllers associated to a driver.
2644 * The allocated buffer has to be freed with free().
2646 * @efiobj handle of the controller
2647 * @driver_handle handle of the driver
2648 * @number_of_children number of child controllers
2649 * @child_handle_buffer handles of the the child controllers
2651 static efi_status_t efi_get_child_controllers(
2652 struct efi_object *efiobj,
2653 efi_handle_t driver_handle,
2654 efi_uintn_t *number_of_children,
2655 efi_handle_t **child_handle_buffer)
2657 struct efi_handler *handler;
2658 struct efi_open_protocol_info_item *item;
2659 efi_uintn_t count = 0, i;
2662 /* Count all child controller associations */
2663 list_for_each_entry(handler, &efiobj->protocols, link) {
2664 list_for_each_entry(item, &handler->open_infos, link) {
2665 if (item->info.agent_handle == driver_handle &&
2666 item->info.attributes &
2667 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
2672 * Create buffer. In case of duplicate child controller assignments
2673 * the buffer will be too large. But that does not harm.
2675 *number_of_children = 0;
2676 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
2677 if (!*child_handle_buffer)
2678 return EFI_OUT_OF_RESOURCES;
2679 /* Copy unique child handles */
2680 list_for_each_entry(handler, &efiobj->protocols, link) {
2681 list_for_each_entry(item, &handler->open_infos, link) {
2682 if (item->info.agent_handle == driver_handle &&
2683 item->info.attributes &
2684 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
2685 /* Check this is a new child controller */
2687 for (i = 0; i < *number_of_children; ++i) {
2688 if ((*child_handle_buffer)[i] ==
2689 item->info.controller_handle)
2692 /* Copy handle to buffer */
2694 i = (*number_of_children)++;
2695 (*child_handle_buffer)[i] =
2696 item->info.controller_handle;
2705 * Disconnect a controller from a driver.
2707 * This function implements the DisconnectController service.
2708 * See the Unified Extensible Firmware Interface (UEFI) specification
2711 * @controller_handle handle of the controller
2712 * @driver_image_handle handle of the driver
2713 * @child_handle handle of the child to destroy
2714 * @return status code
2716 static efi_status_t EFIAPI efi_disconnect_controller(
2717 efi_handle_t controller_handle,
2718 efi_handle_t driver_image_handle,
2719 efi_handle_t child_handle)
2721 struct efi_driver_binding_protocol *binding_protocol;
2722 efi_handle_t *child_handle_buffer = NULL;
2723 size_t number_of_children = 0;
2725 size_t stop_count = 0;
2726 struct efi_object *efiobj;
2728 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
2731 efiobj = efi_search_obj(controller_handle);
2733 r = EFI_INVALID_PARAMETER;
2737 if (child_handle && !efi_search_obj(child_handle)) {
2738 r = EFI_INVALID_PARAMETER;
2742 /* If no driver handle is supplied, disconnect all drivers */
2743 if (!driver_image_handle) {
2744 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
2748 /* Create list of child handles */
2750 number_of_children = 1;
2751 child_handle_buffer = &child_handle;
2753 efi_get_child_controllers(efiobj,
2754 driver_image_handle,
2755 &number_of_children,
2756 &child_handle_buffer);
2759 /* Get the driver binding protocol */
2760 r = EFI_CALL(efi_open_protocol(driver_image_handle,
2761 &efi_guid_driver_binding_protocol,
2762 (void **)&binding_protocol,
2763 driver_image_handle, NULL,
2764 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2765 if (r != EFI_SUCCESS)
2767 /* Remove the children */
2768 if (number_of_children) {
2769 r = EFI_CALL(binding_protocol->stop(binding_protocol,
2772 child_handle_buffer));
2773 if (r == EFI_SUCCESS)
2776 /* Remove the driver */
2778 r = EFI_CALL(binding_protocol->stop(binding_protocol,
2781 if (r == EFI_SUCCESS)
2783 EFI_CALL(efi_close_protocol(driver_image_handle,
2784 &efi_guid_driver_binding_protocol,
2785 driver_image_handle, NULL));
2793 free(child_handle_buffer);
2797 static const struct efi_boot_services efi_boot_services = {
2799 .headersize = sizeof(struct efi_table_hdr),
2801 .raise_tpl = efi_raise_tpl,
2802 .restore_tpl = efi_restore_tpl,
2803 .allocate_pages = efi_allocate_pages_ext,
2804 .free_pages = efi_free_pages_ext,
2805 .get_memory_map = efi_get_memory_map_ext,
2806 .allocate_pool = efi_allocate_pool_ext,
2807 .free_pool = efi_free_pool_ext,
2808 .create_event = efi_create_event_ext,
2809 .set_timer = efi_set_timer_ext,
2810 .wait_for_event = efi_wait_for_event,
2811 .signal_event = efi_signal_event_ext,
2812 .close_event = efi_close_event,
2813 .check_event = efi_check_event,
2814 .install_protocol_interface = efi_install_protocol_interface,
2815 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
2816 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
2817 .handle_protocol = efi_handle_protocol,
2819 .register_protocol_notify = efi_register_protocol_notify,
2820 .locate_handle = efi_locate_handle_ext,
2821 .locate_device_path = efi_locate_device_path,
2822 .install_configuration_table = efi_install_configuration_table_ext,
2823 .load_image = efi_load_image,
2824 .start_image = efi_start_image,
2826 .unload_image = efi_unload_image,
2827 .exit_boot_services = efi_exit_boot_services,
2828 .get_next_monotonic_count = efi_get_next_monotonic_count,
2830 .set_watchdog_timer = efi_set_watchdog_timer,
2831 .connect_controller = efi_connect_controller,
2832 .disconnect_controller = efi_disconnect_controller,
2833 .open_protocol = efi_open_protocol,
2834 .close_protocol = efi_close_protocol,
2835 .open_protocol_information = efi_open_protocol_information,
2836 .protocols_per_handle = efi_protocols_per_handle,
2837 .locate_handle_buffer = efi_locate_handle_buffer,
2838 .locate_protocol = efi_locate_protocol,
2839 .install_multiple_protocol_interfaces = efi_install_multiple_protocol_interfaces,
2840 .uninstall_multiple_protocol_interfaces = efi_uninstall_multiple_protocol_interfaces,
2841 .calculate_crc32 = efi_calculate_crc32,
2842 .copy_mem = efi_copy_mem,
2843 .set_mem = efi_set_mem,
2847 static uint16_t __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
2849 struct efi_system_table __efi_runtime_data systab = {
2851 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
2852 .revision = 0x20005, /* 2.5 */
2853 .headersize = sizeof(struct efi_table_hdr),
2855 .fw_vendor = (long)firmware_vendor,
2856 .con_in = (void*)&efi_con_in,
2857 .con_out = (void*)&efi_con_out,
2858 .std_err = (void*)&efi_con_out,
2859 .runtime = (void*)&efi_runtime_services,
2860 .boottime = (void*)&efi_boot_services,
2862 .tables = (void*)efi_conf_table,