efi_loader: close protocols in UnloadImage()
[platform/kernel/u-boot.git] / lib / efi_loader / efi_boottime.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  EFI application boot time services
4  *
5  *  Copyright (c) 2016 Alexander Graf
6  */
7
8 #include <common.h>
9 #include <div64.h>
10 #include <efi_loader.h>
11 #include <environment.h>
12 #include <malloc.h>
13 #include <linux/libfdt_env.h>
14 #include <u-boot/crc.h>
15 #include <bootm.h>
16 #include <pe.h>
17 #include <watchdog.h>
18
19 DECLARE_GLOBAL_DATA_PTR;
20
21 /* Task priority level */
22 static efi_uintn_t efi_tpl = TPL_APPLICATION;
23
24 /* This list contains all the EFI objects our payload has access to */
25 LIST_HEAD(efi_obj_list);
26
27 /* List of all events */
28 LIST_HEAD(efi_events);
29
30 /* List of all events registered by RegisterProtocolNotify() */
31 LIST_HEAD(efi_register_notify_events);
32
33 /* Handle of the currently executing image */
34 static efi_handle_t current_image;
35
36 /*
37  * If we're running on nasty systems (32bit ARM booting into non-EFI Linux)
38  * we need to do trickery with caches. Since we don't want to break the EFI
39  * aware boot path, only apply hacks when loading exiting directly (breaking
40  * direct Linux EFI booting along the way - oh well).
41  */
42 static bool efi_is_direct_boot = true;
43
44 #ifdef CONFIG_ARM
45 /*
46  * The "gd" pointer lives in a register on ARM and AArch64 that we declare
47  * fixed when compiling U-Boot. However, the payload does not know about that
48  * restriction so we need to manually swap its and our view of that register on
49  * EFI callback entry/exit.
50  */
51 static volatile void *efi_gd, *app_gd;
52 #endif
53
54 /* 1 if inside U-Boot code, 0 if inside EFI payload code */
55 static int entry_count = 1;
56 static int nesting_level;
57 /* GUID of the device tree table */
58 const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
59 /* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
60 const efi_guid_t efi_guid_driver_binding_protocol =
61                         EFI_DRIVER_BINDING_PROTOCOL_GUID;
62
63 /* event group ExitBootServices() invoked */
64 const efi_guid_t efi_guid_event_group_exit_boot_services =
65                         EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
66 /* event group SetVirtualAddressMap() invoked */
67 const efi_guid_t efi_guid_event_group_virtual_address_change =
68                         EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
69 /* event group memory map changed */
70 const efi_guid_t efi_guid_event_group_memory_map_change =
71                         EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
72 /* event group boot manager about to boot */
73 const efi_guid_t efi_guid_event_group_ready_to_boot =
74                         EFI_EVENT_GROUP_READY_TO_BOOT;
75 /* event group ResetSystem() invoked (before ExitBootServices) */
76 const efi_guid_t efi_guid_event_group_reset_system =
77                         EFI_EVENT_GROUP_RESET_SYSTEM;
78
79 static efi_status_t EFIAPI efi_disconnect_controller(
80                                         efi_handle_t controller_handle,
81                                         efi_handle_t driver_image_handle,
82                                         efi_handle_t child_handle);
83
84 /* Called on every callback entry */
85 int __efi_entry_check(void)
86 {
87         int ret = entry_count++ == 0;
88 #ifdef CONFIG_ARM
89         assert(efi_gd);
90         app_gd = gd;
91         gd = efi_gd;
92 #endif
93         return ret;
94 }
95
96 /* Called on every callback exit */
97 int __efi_exit_check(void)
98 {
99         int ret = --entry_count == 0;
100 #ifdef CONFIG_ARM
101         gd = app_gd;
102 #endif
103         return ret;
104 }
105
106 /* Called from do_bootefi_exec() */
107 void efi_save_gd(void)
108 {
109 #ifdef CONFIG_ARM
110         efi_gd = gd;
111 #endif
112 }
113
114 /*
115  * Special case handler for error/abort that just forces things back to u-boot
116  * world so we can dump out an abort message, without any care about returning
117  * back to UEFI world.
118  */
119 void efi_restore_gd(void)
120 {
121 #ifdef CONFIG_ARM
122         /* Only restore if we're already in EFI context */
123         if (!efi_gd)
124                 return;
125         gd = efi_gd;
126 #endif
127 }
128
129 /**
130  * indent_string() - returns a string for indenting with two spaces per level
131  * @level: indent level
132  *
133  * A maximum of ten indent levels is supported. Higher indent levels will be
134  * truncated.
135  *
136  * Return: A string for indenting with two spaces per level is
137  *         returned.
138  */
139 static const char *indent_string(int level)
140 {
141         const char *indent = "                    ";
142         const int max = strlen(indent);
143
144         level = min(max, level * 2);
145         return &indent[max - level];
146 }
147
148 const char *__efi_nesting(void)
149 {
150         return indent_string(nesting_level);
151 }
152
153 const char *__efi_nesting_inc(void)
154 {
155         return indent_string(nesting_level++);
156 }
157
158 const char *__efi_nesting_dec(void)
159 {
160         return indent_string(--nesting_level);
161 }
162
163 /**
164  * efi_queue_event() - queue an EFI event
165  * @event:     event to signal
166  * @check_tpl: check the TPL level
167  *
168  * This function queues the notification function of the event for future
169  * execution.
170  *
171  * The notification function is called if the task priority level of the event
172  * is higher than the current task priority level.
173  *
174  * For the SignalEvent service see efi_signal_event_ext.
175  *
176  */
177 static void efi_queue_event(struct efi_event *event, bool check_tpl)
178 {
179         if (event->notify_function) {
180                 event->is_queued = true;
181                 /* Check TPL */
182                 if (check_tpl && efi_tpl >= event->notify_tpl)
183                         return;
184                 event->is_queued = false;
185                 EFI_CALL_VOID(event->notify_function(event,
186                                                      event->notify_context));
187         } else {
188                 event->is_queued = false;
189         }
190 }
191
192 /**
193  * is_valid_tpl() - check if the task priority level is valid
194  *
195  * @tpl:                TPL level to check
196  * Return:              status code
197  */
198 efi_status_t is_valid_tpl(efi_uintn_t tpl)
199 {
200         switch (tpl) {
201         case TPL_APPLICATION:
202         case TPL_CALLBACK:
203         case TPL_NOTIFY:
204         case TPL_HIGH_LEVEL:
205                 return EFI_SUCCESS;
206         default:
207                 return EFI_INVALID_PARAMETER;
208         }
209 }
210
211 /**
212  * efi_signal_event() - signal an EFI event
213  * @event:     event to signal
214  * @check_tpl: check the TPL level
215  *
216  * This function signals an event. If the event belongs to an event group all
217  * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL
218  * their notification function is queued.
219  *
220  * For the SignalEvent service see efi_signal_event_ext.
221  */
222 void efi_signal_event(struct efi_event *event, bool check_tpl)
223 {
224         if (event->group) {
225                 struct efi_event *evt;
226
227                 /*
228                  * The signaled state has to set before executing any
229                  * notification function
230                  */
231                 list_for_each_entry(evt, &efi_events, link) {
232                         if (!evt->group || guidcmp(evt->group, event->group))
233                                 continue;
234                         if (evt->is_signaled)
235                                 continue;
236                         evt->is_signaled = true;
237                         if (evt->type & EVT_NOTIFY_SIGNAL &&
238                             evt->notify_function)
239                                 evt->is_queued = true;
240                 }
241                 list_for_each_entry(evt, &efi_events, link) {
242                         if (!evt->group || guidcmp(evt->group, event->group))
243                                 continue;
244                         if (evt->is_queued)
245                                 efi_queue_event(evt, check_tpl);
246                 }
247         } else {
248                 event->is_signaled = true;
249                 if (event->type & EVT_NOTIFY_SIGNAL)
250                         efi_queue_event(event, check_tpl);
251         }
252 }
253
254 /**
255  * efi_raise_tpl() - raise the task priority level
256  * @new_tpl: new value of the task priority level
257  *
258  * This function implements the RaiseTpl service.
259  *
260  * See the Unified Extensible Firmware Interface (UEFI) specification for
261  * details.
262  *
263  * Return: old value of the task priority level
264  */
265 static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
266 {
267         efi_uintn_t old_tpl = efi_tpl;
268
269         EFI_ENTRY("0x%zx", new_tpl);
270
271         if (new_tpl < efi_tpl)
272                 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
273         efi_tpl = new_tpl;
274         if (efi_tpl > TPL_HIGH_LEVEL)
275                 efi_tpl = TPL_HIGH_LEVEL;
276
277         EFI_EXIT(EFI_SUCCESS);
278         return old_tpl;
279 }
280
281 /**
282  * efi_restore_tpl() - lower the task priority level
283  * @old_tpl: value of the task priority level to be restored
284  *
285  * This function implements the RestoreTpl service.
286  *
287  * See the Unified Extensible Firmware Interface (UEFI) specification for
288  * details.
289  */
290 static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
291 {
292         EFI_ENTRY("0x%zx", old_tpl);
293
294         if (old_tpl > efi_tpl)
295                 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
296         efi_tpl = old_tpl;
297         if (efi_tpl > TPL_HIGH_LEVEL)
298                 efi_tpl = TPL_HIGH_LEVEL;
299
300         /*
301          * Lowering the TPL may have made queued events eligible for execution.
302          */
303         efi_timer_check();
304
305         EFI_EXIT(EFI_SUCCESS);
306 }
307
308 /**
309  * efi_allocate_pages_ext() - allocate memory pages
310  * @type:        type of allocation to be performed
311  * @memory_type: usage type of the allocated memory
312  * @pages:       number of pages to be allocated
313  * @memory:      allocated memory
314  *
315  * This function implements the AllocatePages service.
316  *
317  * See the Unified Extensible Firmware Interface (UEFI) specification for
318  * details.
319  *
320  * Return: status code
321  */
322 static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
323                                                   efi_uintn_t pages,
324                                                   uint64_t *memory)
325 {
326         efi_status_t r;
327
328         EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
329         r = efi_allocate_pages(type, memory_type, pages, memory);
330         return EFI_EXIT(r);
331 }
332
333 /**
334  * efi_free_pages_ext() - Free memory pages.
335  * @memory: start of the memory area to be freed
336  * @pages:  number of pages to be freed
337  *
338  * This function implements the FreePages service.
339  *
340  * See the Unified Extensible Firmware Interface (UEFI) specification for
341  * details.
342  *
343  * Return: status code
344  */
345 static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
346                                               efi_uintn_t pages)
347 {
348         efi_status_t r;
349
350         EFI_ENTRY("%llx, 0x%zx", memory, pages);
351         r = efi_free_pages(memory, pages);
352         return EFI_EXIT(r);
353 }
354
355 /**
356  * efi_get_memory_map_ext() - get map describing memory usage
357  * @memory_map_size:    on entry the size, in bytes, of the memory map buffer,
358  *                      on exit the size of the copied memory map
359  * @memory_map:         buffer to which the memory map is written
360  * @map_key:            key for the memory map
361  * @descriptor_size:    size of an individual memory descriptor
362  * @descriptor_version: version number of the memory descriptor structure
363  *
364  * This function implements the GetMemoryMap service.
365  *
366  * See the Unified Extensible Firmware Interface (UEFI) specification for
367  * details.
368  *
369  * Return: status code
370  */
371 static efi_status_t EFIAPI efi_get_memory_map_ext(
372                                         efi_uintn_t *memory_map_size,
373                                         struct efi_mem_desc *memory_map,
374                                         efi_uintn_t *map_key,
375                                         efi_uintn_t *descriptor_size,
376                                         uint32_t *descriptor_version)
377 {
378         efi_status_t r;
379
380         EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
381                   map_key, descriptor_size, descriptor_version);
382         r = efi_get_memory_map(memory_map_size, memory_map, map_key,
383                                descriptor_size, descriptor_version);
384         return EFI_EXIT(r);
385 }
386
387 /**
388  * efi_allocate_pool_ext() - allocate memory from pool
389  * @pool_type: type of the pool from which memory is to be allocated
390  * @size:      number of bytes to be allocated
391  * @buffer:    allocated memory
392  *
393  * This function implements the AllocatePool service.
394  *
395  * See the Unified Extensible Firmware Interface (UEFI) specification for
396  * details.
397  *
398  * Return: status code
399  */
400 static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
401                                                  efi_uintn_t size,
402                                                  void **buffer)
403 {
404         efi_status_t r;
405
406         EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
407         r = efi_allocate_pool(pool_type, size, buffer);
408         return EFI_EXIT(r);
409 }
410
411 /**
412  * efi_free_pool_ext() - free memory from pool
413  * @buffer: start of memory to be freed
414  *
415  * This function implements the FreePool service.
416  *
417  * See the Unified Extensible Firmware Interface (UEFI) specification for
418  * details.
419  *
420  * Return: status code
421  */
422 static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
423 {
424         efi_status_t r;
425
426         EFI_ENTRY("%p", buffer);
427         r = efi_free_pool(buffer);
428         return EFI_EXIT(r);
429 }
430
431 /**
432  * efi_add_handle() - add a new handle to the object list
433  *
434  * @handle:     handle to be added
435  *
436  * The protocols list is initialized. The handle is added to the list of known
437  * UEFI objects.
438  */
439 void efi_add_handle(efi_handle_t handle)
440 {
441         if (!handle)
442                 return;
443         INIT_LIST_HEAD(&handle->protocols);
444         list_add_tail(&handle->link, &efi_obj_list);
445 }
446
447 /**
448  * efi_create_handle() - create handle
449  * @handle: new handle
450  *
451  * Return: status code
452  */
453 efi_status_t efi_create_handle(efi_handle_t *handle)
454 {
455         struct efi_object *obj;
456
457         obj = calloc(1, sizeof(struct efi_object));
458         if (!obj)
459                 return EFI_OUT_OF_RESOURCES;
460
461         efi_add_handle(obj);
462         *handle = obj;
463
464         return EFI_SUCCESS;
465 }
466
467 /**
468  * efi_search_protocol() - find a protocol on a handle.
469  * @handle:        handle
470  * @protocol_guid: GUID of the protocol
471  * @handler:       reference to the protocol
472  *
473  * Return: status code
474  */
475 efi_status_t efi_search_protocol(const efi_handle_t handle,
476                                  const efi_guid_t *protocol_guid,
477                                  struct efi_handler **handler)
478 {
479         struct efi_object *efiobj;
480         struct list_head *lhandle;
481
482         if (!handle || !protocol_guid)
483                 return EFI_INVALID_PARAMETER;
484         efiobj = efi_search_obj(handle);
485         if (!efiobj)
486                 return EFI_INVALID_PARAMETER;
487         list_for_each(lhandle, &efiobj->protocols) {
488                 struct efi_handler *protocol;
489
490                 protocol = list_entry(lhandle, struct efi_handler, link);
491                 if (!guidcmp(protocol->guid, protocol_guid)) {
492                         if (handler)
493                                 *handler = protocol;
494                         return EFI_SUCCESS;
495                 }
496         }
497         return EFI_NOT_FOUND;
498 }
499
500 /**
501  * efi_remove_protocol() - delete protocol from a handle
502  * @handle:             handle from which the protocol shall be deleted
503  * @protocol:           GUID of the protocol to be deleted
504  * @protocol_interface: interface of the protocol implementation
505  *
506  * Return: status code
507  */
508 efi_status_t efi_remove_protocol(const efi_handle_t handle,
509                                  const efi_guid_t *protocol,
510                                  void *protocol_interface)
511 {
512         struct efi_handler *handler;
513         efi_status_t ret;
514
515         ret = efi_search_protocol(handle, protocol, &handler);
516         if (ret != EFI_SUCCESS)
517                 return ret;
518         if (handler->protocol_interface != protocol_interface)
519                 return EFI_NOT_FOUND;
520         list_del(&handler->link);
521         free(handler);
522         return EFI_SUCCESS;
523 }
524
525 /**
526  * efi_remove_all_protocols() - delete all protocols from a handle
527  * @handle: handle from which the protocols shall be deleted
528  *
529  * Return: status code
530  */
531 efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
532 {
533         struct efi_object *efiobj;
534         struct efi_handler *protocol;
535         struct efi_handler *pos;
536
537         efiobj = efi_search_obj(handle);
538         if (!efiobj)
539                 return EFI_INVALID_PARAMETER;
540         list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
541                 efi_status_t ret;
542
543                 ret = efi_remove_protocol(handle, protocol->guid,
544                                           protocol->protocol_interface);
545                 if (ret != EFI_SUCCESS)
546                         return ret;
547         }
548         return EFI_SUCCESS;
549 }
550
551 /**
552  * efi_delete_handle() - delete handle
553  *
554  * @obj: handle to delete
555  */
556 void efi_delete_handle(efi_handle_t handle)
557 {
558         if (!handle)
559                 return;
560         efi_remove_all_protocols(handle);
561         list_del(&handle->link);
562         free(handle);
563 }
564
565 /**
566  * efi_is_event() - check if a pointer is a valid event
567  * @event: pointer to check
568  *
569  * Return: status code
570  */
571 static efi_status_t efi_is_event(const struct efi_event *event)
572 {
573         const struct efi_event *evt;
574
575         if (!event)
576                 return EFI_INVALID_PARAMETER;
577         list_for_each_entry(evt, &efi_events, link) {
578                 if (evt == event)
579                         return EFI_SUCCESS;
580         }
581         return EFI_INVALID_PARAMETER;
582 }
583
584 /**
585  * efi_create_event() - create an event
586  * @type:            type of the event to create
587  * @notify_tpl:      task priority level of the event
588  * @notify_function: notification function of the event
589  * @notify_context:  pointer passed to the notification function
590  * @group:           event group
591  * @event:           created event
592  *
593  * This function is used inside U-Boot code to create an event.
594  *
595  * For the API function implementing the CreateEvent service see
596  * efi_create_event_ext.
597  *
598  * Return: status code
599  */
600 efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
601                               void (EFIAPI *notify_function) (
602                                         struct efi_event *event,
603                                         void *context),
604                               void *notify_context, efi_guid_t *group,
605                               struct efi_event **event)
606 {
607         struct efi_event *evt;
608
609         if (event == NULL)
610                 return EFI_INVALID_PARAMETER;
611
612         switch (type) {
613         case 0:
614         case EVT_TIMER:
615         case EVT_NOTIFY_SIGNAL:
616         case EVT_TIMER | EVT_NOTIFY_SIGNAL:
617         case EVT_NOTIFY_WAIT:
618         case EVT_TIMER | EVT_NOTIFY_WAIT:
619         case EVT_SIGNAL_EXIT_BOOT_SERVICES:
620         case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
621                 break;
622         default:
623                 return EFI_INVALID_PARAMETER;
624         }
625
626         if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
627             (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS))
628                 return EFI_INVALID_PARAMETER;
629
630         evt = calloc(1, sizeof(struct efi_event));
631         if (!evt)
632                 return EFI_OUT_OF_RESOURCES;
633         evt->type = type;
634         evt->notify_tpl = notify_tpl;
635         evt->notify_function = notify_function;
636         evt->notify_context = notify_context;
637         evt->group = group;
638         /* Disable timers on boot up */
639         evt->trigger_next = -1ULL;
640         evt->is_queued = false;
641         evt->is_signaled = false;
642         list_add_tail(&evt->link, &efi_events);
643         *event = evt;
644         return EFI_SUCCESS;
645 }
646
647 /*
648  * efi_create_event_ex() - create an event in a group
649  * @type:            type of the event to create
650  * @notify_tpl:      task priority level of the event
651  * @notify_function: notification function of the event
652  * @notify_context:  pointer passed to the notification function
653  * @event:           created event
654  * @event_group:     event group
655  *
656  * This function implements the CreateEventEx service.
657  *
658  * See the Unified Extensible Firmware Interface (UEFI) specification for
659  * details.
660  *
661  * Return: status code
662  */
663 efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
664                                         void (EFIAPI *notify_function) (
665                                                         struct efi_event *event,
666                                                         void *context),
667                                         void *notify_context,
668                                         efi_guid_t *event_group,
669                                         struct efi_event **event)
670 {
671         efi_status_t ret;
672
673         EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
674                   notify_context, event_group);
675
676         /*
677          * The allowable input parameters are the same as in CreateEvent()
678          * except for the following two disallowed event types.
679          */
680         switch (type) {
681         case EVT_SIGNAL_EXIT_BOOT_SERVICES:
682         case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
683                 ret = EFI_INVALID_PARAMETER;
684                 goto out;
685         }
686
687         ret = efi_create_event(type, notify_tpl, notify_function,
688                                notify_context, event_group, event);
689 out:
690         return EFI_EXIT(ret);
691 }
692
693 /**
694  * efi_create_event_ext() - create an event
695  * @type:            type of the event to create
696  * @notify_tpl:      task priority level of the event
697  * @notify_function: notification function of the event
698  * @notify_context:  pointer passed to the notification function
699  * @event:           created event
700  *
701  * This function implements the CreateEvent service.
702  *
703  * See the Unified Extensible Firmware Interface (UEFI) specification for
704  * details.
705  *
706  * Return: status code
707  */
708 static efi_status_t EFIAPI efi_create_event_ext(
709                         uint32_t type, efi_uintn_t notify_tpl,
710                         void (EFIAPI *notify_function) (
711                                         struct efi_event *event,
712                                         void *context),
713                         void *notify_context, struct efi_event **event)
714 {
715         EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
716                   notify_context);
717         return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
718                                          notify_context, NULL, event));
719 }
720
721 /**
722  * efi_timer_check() - check if a timer event has occurred
723  *
724  * Check if a timer event has occurred or a queued notification function should
725  * be called.
726  *
727  * Our timers have to work without interrupts, so we check whenever keyboard
728  * input or disk accesses happen if enough time elapsed for them to fire.
729  */
730 void efi_timer_check(void)
731 {
732         struct efi_event *evt;
733         u64 now = timer_get_us();
734
735         list_for_each_entry(evt, &efi_events, link) {
736                 if (evt->is_queued)
737                         efi_queue_event(evt, true);
738                 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
739                         continue;
740                 switch (evt->trigger_type) {
741                 case EFI_TIMER_RELATIVE:
742                         evt->trigger_type = EFI_TIMER_STOP;
743                         break;
744                 case EFI_TIMER_PERIODIC:
745                         evt->trigger_next += evt->trigger_time;
746                         break;
747                 default:
748                         continue;
749                 }
750                 evt->is_signaled = false;
751                 efi_signal_event(evt, true);
752         }
753         WATCHDOG_RESET();
754 }
755
756 /**
757  * efi_set_timer() - set the trigger time for a timer event or stop the event
758  * @event:        event for which the timer is set
759  * @type:         type of the timer
760  * @trigger_time: trigger period in multiples of 100 ns
761  *
762  * This is the function for internal usage in U-Boot. For the API function
763  * implementing the SetTimer service see efi_set_timer_ext.
764  *
765  * Return: status code
766  */
767 efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
768                            uint64_t trigger_time)
769 {
770         /* Check that the event is valid */
771         if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
772                 return EFI_INVALID_PARAMETER;
773
774         /*
775          * The parameter defines a multiple of 100 ns.
776          * We use multiples of 1000 ns. So divide by 10.
777          */
778         do_div(trigger_time, 10);
779
780         switch (type) {
781         case EFI_TIMER_STOP:
782                 event->trigger_next = -1ULL;
783                 break;
784         case EFI_TIMER_PERIODIC:
785         case EFI_TIMER_RELATIVE:
786                 event->trigger_next = timer_get_us() + trigger_time;
787                 break;
788         default:
789                 return EFI_INVALID_PARAMETER;
790         }
791         event->trigger_type = type;
792         event->trigger_time = trigger_time;
793         event->is_signaled = false;
794         return EFI_SUCCESS;
795 }
796
797 /**
798  * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
799  *                       event
800  * @event:        event for which the timer is set
801  * @type:         type of the timer
802  * @trigger_time: trigger period in multiples of 100 ns
803  *
804  * This function implements the SetTimer service.
805  *
806  * See the Unified Extensible Firmware Interface (UEFI) specification for
807  * details.
808  *
809  *
810  * Return: status code
811  */
812 static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
813                                              enum efi_timer_delay type,
814                                              uint64_t trigger_time)
815 {
816         EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
817         return EFI_EXIT(efi_set_timer(event, type, trigger_time));
818 }
819
820 /**
821  * efi_wait_for_event() - wait for events to be signaled
822  * @num_events: number of events to be waited for
823  * @event:      events to be waited for
824  * @index:      index of the event that was signaled
825  *
826  * This function implements the WaitForEvent service.
827  *
828  * See the Unified Extensible Firmware Interface (UEFI) specification for
829  * details.
830  *
831  * Return: status code
832  */
833 static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
834                                               struct efi_event **event,
835                                               efi_uintn_t *index)
836 {
837         int i;
838
839         EFI_ENTRY("%zd, %p, %p", num_events, event, index);
840
841         /* Check parameters */
842         if (!num_events || !event)
843                 return EFI_EXIT(EFI_INVALID_PARAMETER);
844         /* Check TPL */
845         if (efi_tpl != TPL_APPLICATION)
846                 return EFI_EXIT(EFI_UNSUPPORTED);
847         for (i = 0; i < num_events; ++i) {
848                 if (efi_is_event(event[i]) != EFI_SUCCESS)
849                         return EFI_EXIT(EFI_INVALID_PARAMETER);
850                 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
851                         return EFI_EXIT(EFI_INVALID_PARAMETER);
852                 if (!event[i]->is_signaled)
853                         efi_queue_event(event[i], true);
854         }
855
856         /* Wait for signal */
857         for (;;) {
858                 for (i = 0; i < num_events; ++i) {
859                         if (event[i]->is_signaled)
860                                 goto out;
861                 }
862                 /* Allow events to occur. */
863                 efi_timer_check();
864         }
865
866 out:
867         /*
868          * Reset the signal which is passed to the caller to allow periodic
869          * events to occur.
870          */
871         event[i]->is_signaled = false;
872         if (index)
873                 *index = i;
874
875         return EFI_EXIT(EFI_SUCCESS);
876 }
877
878 /**
879  * efi_signal_event_ext() - signal an EFI event
880  * @event: event to signal
881  *
882  * This function implements the SignalEvent service.
883  *
884  * See the Unified Extensible Firmware Interface (UEFI) specification for
885  * details.
886  *
887  * This functions sets the signaled state of the event and queues the
888  * notification function for execution.
889  *
890  * Return: status code
891  */
892 static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
893 {
894         EFI_ENTRY("%p", event);
895         if (efi_is_event(event) != EFI_SUCCESS)
896                 return EFI_EXIT(EFI_INVALID_PARAMETER);
897         efi_signal_event(event, true);
898         return EFI_EXIT(EFI_SUCCESS);
899 }
900
901 /**
902  * efi_close_event() - close an EFI event
903  * @event: event to close
904  *
905  * This function implements the CloseEvent service.
906  *
907  * See the Unified Extensible Firmware Interface (UEFI) specification for
908  * details.
909  *
910  * Return: status code
911  */
912 static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
913 {
914         struct efi_register_notify_event *item, *next;
915
916         EFI_ENTRY("%p", event);
917         if (efi_is_event(event) != EFI_SUCCESS)
918                 return EFI_EXIT(EFI_INVALID_PARAMETER);
919
920         /* Remove protocol notify registrations for the event */
921         list_for_each_entry_safe(item, next, &efi_register_notify_events,
922                                  link) {
923                 if (event == item->event) {
924                         list_del(&item->link);
925                         free(item);
926                 }
927         }
928
929         list_del(&event->link);
930         free(event);
931         return EFI_EXIT(EFI_SUCCESS);
932 }
933
934 /**
935  * efi_check_event() - check if an event is signaled
936  * @event: event to check
937  *
938  * This function implements the CheckEvent service.
939  *
940  * See the Unified Extensible Firmware Interface (UEFI) specification for
941  * details.
942  *
943  * If an event is not signaled yet, the notification function is queued. The
944  * signaled state is cleared.
945  *
946  * Return: status code
947  */
948 static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
949 {
950         EFI_ENTRY("%p", event);
951         efi_timer_check();
952         if (efi_is_event(event) != EFI_SUCCESS ||
953             event->type & EVT_NOTIFY_SIGNAL)
954                 return EFI_EXIT(EFI_INVALID_PARAMETER);
955         if (!event->is_signaled)
956                 efi_queue_event(event, true);
957         if (event->is_signaled) {
958                 event->is_signaled = false;
959                 return EFI_EXIT(EFI_SUCCESS);
960         }
961         return EFI_EXIT(EFI_NOT_READY);
962 }
963
964 /**
965  * efi_search_obj() - find the internal EFI object for a handle
966  * @handle: handle to find
967  *
968  * Return: EFI object
969  */
970 struct efi_object *efi_search_obj(const efi_handle_t handle)
971 {
972         struct efi_object *efiobj;
973
974         if (!handle)
975                 return NULL;
976
977         list_for_each_entry(efiobj, &efi_obj_list, link) {
978                 if (efiobj == handle)
979                         return efiobj;
980         }
981         return NULL;
982 }
983
984 /**
985  * efi_open_protocol_info_entry() - create open protocol info entry and add it
986  *                                  to a protocol
987  * @handler: handler of a protocol
988  *
989  * Return: open protocol info entry
990  */
991 static struct efi_open_protocol_info_entry *efi_create_open_info(
992                         struct efi_handler *handler)
993 {
994         struct efi_open_protocol_info_item *item;
995
996         item = calloc(1, sizeof(struct efi_open_protocol_info_item));
997         if (!item)
998                 return NULL;
999         /* Append the item to the open protocol info list. */
1000         list_add_tail(&item->link, &handler->open_infos);
1001
1002         return &item->info;
1003 }
1004
1005 /**
1006  * efi_delete_open_info() - remove an open protocol info entry from a protocol
1007  * @item: open protocol info entry to delete
1008  *
1009  * Return: status code
1010  */
1011 static efi_status_t efi_delete_open_info(
1012                         struct efi_open_protocol_info_item *item)
1013 {
1014         list_del(&item->link);
1015         free(item);
1016         return EFI_SUCCESS;
1017 }
1018
1019 /**
1020  * efi_add_protocol() - install new protocol on a handle
1021  * @handle:             handle on which the protocol shall be installed
1022  * @protocol:           GUID of the protocol to be installed
1023  * @protocol_interface: interface of the protocol implementation
1024  *
1025  * Return: status code
1026  */
1027 efi_status_t efi_add_protocol(const efi_handle_t handle,
1028                               const efi_guid_t *protocol,
1029                               void *protocol_interface)
1030 {
1031         struct efi_object *efiobj;
1032         struct efi_handler *handler;
1033         efi_status_t ret;
1034         struct efi_register_notify_event *event;
1035
1036         efiobj = efi_search_obj(handle);
1037         if (!efiobj)
1038                 return EFI_INVALID_PARAMETER;
1039         ret = efi_search_protocol(handle, protocol, NULL);
1040         if (ret != EFI_NOT_FOUND)
1041                 return EFI_INVALID_PARAMETER;
1042         handler = calloc(1, sizeof(struct efi_handler));
1043         if (!handler)
1044                 return EFI_OUT_OF_RESOURCES;
1045         handler->guid = protocol;
1046         handler->protocol_interface = protocol_interface;
1047         INIT_LIST_HEAD(&handler->open_infos);
1048         list_add_tail(&handler->link, &efiobj->protocols);
1049
1050         /* Notify registered events */
1051         list_for_each_entry(event, &efi_register_notify_events, link) {
1052                 if (!guidcmp(protocol, &event->protocol))
1053                         efi_signal_event(event->event, true);
1054         }
1055
1056         if (!guidcmp(&efi_guid_device_path, protocol))
1057                 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
1058         return EFI_SUCCESS;
1059 }
1060
1061 /**
1062  * efi_install_protocol_interface() - install protocol interface
1063  * @handle:                  handle on which the protocol shall be installed
1064  * @protocol:                GUID of the protocol to be installed
1065  * @protocol_interface_type: type of the interface to be installed,
1066  *                           always EFI_NATIVE_INTERFACE
1067  * @protocol_interface:      interface of the protocol implementation
1068  *
1069  * This function implements the InstallProtocolInterface service.
1070  *
1071  * See the Unified Extensible Firmware Interface (UEFI) specification for
1072  * details.
1073  *
1074  * Return: status code
1075  */
1076 static efi_status_t EFIAPI efi_install_protocol_interface(
1077                         efi_handle_t *handle, const efi_guid_t *protocol,
1078                         int protocol_interface_type, void *protocol_interface)
1079 {
1080         efi_status_t r;
1081
1082         EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1083                   protocol_interface);
1084
1085         if (!handle || !protocol ||
1086             protocol_interface_type != EFI_NATIVE_INTERFACE) {
1087                 r = EFI_INVALID_PARAMETER;
1088                 goto out;
1089         }
1090
1091         /* Create new handle if requested. */
1092         if (!*handle) {
1093                 r = efi_create_handle(handle);
1094                 if (r != EFI_SUCCESS)
1095                         goto out;
1096                 EFI_PRINT("new handle %p\n", *handle);
1097         } else {
1098                 EFI_PRINT("handle %p\n", *handle);
1099         }
1100         /* Add new protocol */
1101         r = efi_add_protocol(*handle, protocol, protocol_interface);
1102 out:
1103         return EFI_EXIT(r);
1104 }
1105
1106 /**
1107  * efi_get_drivers() - get all drivers associated to a controller
1108  * @handle:               handle of the controller
1109  * @protocol:             protocol GUID (optional)
1110  * @number_of_drivers:    number of child controllers
1111  * @driver_handle_buffer: handles of the the drivers
1112  *
1113  * The allocated buffer has to be freed with free().
1114  *
1115  * Return: status code
1116  */
1117 static efi_status_t efi_get_drivers(efi_handle_t handle,
1118                                     const efi_guid_t *protocol,
1119                                     efi_uintn_t *number_of_drivers,
1120                                     efi_handle_t **driver_handle_buffer)
1121 {
1122         struct efi_handler *handler;
1123         struct efi_open_protocol_info_item *item;
1124         efi_uintn_t count = 0, i;
1125         bool duplicate;
1126
1127         /* Count all driver associations */
1128         list_for_each_entry(handler, &handle->protocols, link) {
1129                 if (protocol && guidcmp(handler->guid, protocol))
1130                         continue;
1131                 list_for_each_entry(item, &handler->open_infos, link) {
1132                         if (item->info.attributes &
1133                             EFI_OPEN_PROTOCOL_BY_DRIVER)
1134                                 ++count;
1135                 }
1136         }
1137         *number_of_drivers = 0;
1138         if (!count) {
1139                 *driver_handle_buffer = NULL;
1140                 return EFI_SUCCESS;
1141         }
1142         /*
1143          * Create buffer. In case of duplicate driver assignments the buffer
1144          * will be too large. But that does not harm.
1145          */
1146         *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1147         if (!*driver_handle_buffer)
1148                 return EFI_OUT_OF_RESOURCES;
1149         /* Collect unique driver handles */
1150         list_for_each_entry(handler, &handle->protocols, link) {
1151                 if (protocol && guidcmp(handler->guid, protocol))
1152                         continue;
1153                 list_for_each_entry(item, &handler->open_infos, link) {
1154                         if (item->info.attributes &
1155                             EFI_OPEN_PROTOCOL_BY_DRIVER) {
1156                                 /* Check this is a new driver */
1157                                 duplicate = false;
1158                                 for (i = 0; i < *number_of_drivers; ++i) {
1159                                         if ((*driver_handle_buffer)[i] ==
1160                                             item->info.agent_handle)
1161                                                 duplicate = true;
1162                                 }
1163                                 /* Copy handle to buffer */
1164                                 if (!duplicate) {
1165                                         i = (*number_of_drivers)++;
1166                                         (*driver_handle_buffer)[i] =
1167                                                 item->info.agent_handle;
1168                                 }
1169                         }
1170                 }
1171         }
1172         return EFI_SUCCESS;
1173 }
1174
1175 /**
1176  * efi_disconnect_all_drivers() - disconnect all drivers from a controller
1177  * @handle:       handle of the controller
1178  * @protocol:     protocol GUID (optional)
1179  * @child_handle: handle of the child to destroy
1180  *
1181  * This function implements the DisconnectController service.
1182  *
1183  * See the Unified Extensible Firmware Interface (UEFI) specification for
1184  * details.
1185  *
1186  * Return: status code
1187  */
1188 static efi_status_t efi_disconnect_all_drivers
1189                                 (efi_handle_t handle,
1190                                  const efi_guid_t *protocol,
1191                                  efi_handle_t child_handle)
1192 {
1193         efi_uintn_t number_of_drivers;
1194         efi_handle_t *driver_handle_buffer;
1195         efi_status_t r, ret;
1196
1197         ret = efi_get_drivers(handle, protocol, &number_of_drivers,
1198                               &driver_handle_buffer);
1199         if (ret != EFI_SUCCESS)
1200                 return ret;
1201         if (!number_of_drivers)
1202                 return EFI_SUCCESS;
1203         ret = EFI_NOT_FOUND;
1204         while (number_of_drivers) {
1205                 r = EFI_CALL(efi_disconnect_controller(
1206                                 handle,
1207                                 driver_handle_buffer[--number_of_drivers],
1208                                 child_handle));
1209                 if (r == EFI_SUCCESS)
1210                         ret = r;
1211         }
1212         free(driver_handle_buffer);
1213         return ret;
1214 }
1215
1216 /**
1217  * efi_uninstall_protocol() - uninstall protocol interface
1218  *
1219  * @handle:             handle from which the protocol shall be removed
1220  * @protocol:           GUID of the protocol to be removed
1221  * @protocol_interface: interface to be removed
1222  *
1223  * This function DOES NOT delete a handle without installed protocol.
1224  *
1225  * Return: status code
1226  */
1227 static efi_status_t efi_uninstall_protocol
1228                         (efi_handle_t handle, const efi_guid_t *protocol,
1229                          void *protocol_interface)
1230 {
1231         struct efi_object *efiobj;
1232         struct efi_handler *handler;
1233         struct efi_open_protocol_info_item *item;
1234         struct efi_open_protocol_info_item *pos;
1235         efi_status_t r;
1236
1237         /* Check handle */
1238         efiobj = efi_search_obj(handle);
1239         if (!efiobj) {
1240                 r = EFI_INVALID_PARAMETER;
1241                 goto out;
1242         }
1243         /* Find the protocol on the handle */
1244         r = efi_search_protocol(handle, protocol, &handler);
1245         if (r != EFI_SUCCESS)
1246                 goto out;
1247         /* Disconnect controllers */
1248         efi_disconnect_all_drivers(efiobj, protocol, NULL);
1249         if (!list_empty(&handler->open_infos)) {
1250                 r =  EFI_ACCESS_DENIED;
1251                 goto out;
1252         }
1253         /* Close protocol */
1254         list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1255                 if (item->info.attributes ==
1256                         EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1257                     item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1258                     item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1259                         list_del(&item->link);
1260         }
1261         if (!list_empty(&handler->open_infos)) {
1262                 r =  EFI_ACCESS_DENIED;
1263                 goto out;
1264         }
1265         r = efi_remove_protocol(handle, protocol, protocol_interface);
1266 out:
1267         return r;
1268 }
1269
1270 /**
1271  * efi_uninstall_protocol_interface() - uninstall protocol interface
1272  * @handle:             handle from which the protocol shall be removed
1273  * @protocol:           GUID of the protocol to be removed
1274  * @protocol_interface: interface to be removed
1275  *
1276  * This function implements the UninstallProtocolInterface service.
1277  *
1278  * See the Unified Extensible Firmware Interface (UEFI) specification for
1279  * details.
1280  *
1281  * Return: status code
1282  */
1283 static efi_status_t EFIAPI efi_uninstall_protocol_interface
1284                         (efi_handle_t handle, const efi_guid_t *protocol,
1285                          void *protocol_interface)
1286 {
1287         efi_status_t ret;
1288
1289         EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1290
1291         ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1292         if (ret != EFI_SUCCESS)
1293                 goto out;
1294
1295         /* If the last protocol has been removed, delete the handle. */
1296         if (list_empty(&handle->protocols)) {
1297                 list_del(&handle->link);
1298                 free(handle);
1299         }
1300 out:
1301         return EFI_EXIT(ret);
1302 }
1303
1304 /**
1305  * efi_register_protocol_notify() - register an event for notification when a
1306  *                                  protocol is installed.
1307  * @protocol:     GUID of the protocol whose installation shall be notified
1308  * @event:        event to be signaled upon installation of the protocol
1309  * @registration: key for retrieving the registration information
1310  *
1311  * This function implements the RegisterProtocolNotify service.
1312  * See the Unified Extensible Firmware Interface (UEFI) specification
1313  * for details.
1314  *
1315  * Return: status code
1316  */
1317 static efi_status_t EFIAPI efi_register_protocol_notify(
1318                                                 const efi_guid_t *protocol,
1319                                                 struct efi_event *event,
1320                                                 void **registration)
1321 {
1322         struct efi_register_notify_event *item;
1323         efi_status_t ret = EFI_SUCCESS;
1324
1325         EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
1326
1327         if (!protocol || !event || !registration) {
1328                 ret = EFI_INVALID_PARAMETER;
1329                 goto out;
1330         }
1331
1332         item = calloc(1, sizeof(struct efi_register_notify_event));
1333         if (!item) {
1334                 ret = EFI_OUT_OF_RESOURCES;
1335                 goto out;
1336         }
1337
1338         item->event = event;
1339         memcpy(&item->protocol, protocol, sizeof(efi_guid_t));
1340
1341         list_add_tail(&item->link, &efi_register_notify_events);
1342
1343         *registration = item;
1344 out:
1345         return EFI_EXIT(ret);
1346 }
1347
1348 /**
1349  * efi_search() - determine if an EFI handle implements a protocol
1350  * @search_type: selection criterion
1351  * @protocol:    GUID of the protocol
1352  * @search_key:  registration key
1353  * @handle:      handle
1354  *
1355  * See the documentation of the LocateHandle service in the UEFI specification.
1356  *
1357  * Return: 0 if the handle implements the protocol
1358  */
1359 static int efi_search(enum efi_locate_search_type search_type,
1360                       const efi_guid_t *protocol, efi_handle_t handle)
1361 {
1362         efi_status_t ret;
1363
1364         switch (search_type) {
1365         case ALL_HANDLES:
1366                 return 0;
1367         case BY_REGISTER_NOTIFY:
1368         case BY_PROTOCOL:
1369                 ret = efi_search_protocol(handle, protocol, NULL);
1370                 return (ret != EFI_SUCCESS);
1371         default:
1372                 /* Invalid search type */
1373                 return -1;
1374         }
1375 }
1376
1377 /**
1378  * efi_locate_handle() - locate handles implementing a protocol
1379  *
1380  * @search_type:        selection criterion
1381  * @protocol:           GUID of the protocol
1382  * @search_key:         registration key
1383  * @buffer_size:        size of the buffer to receive the handles in bytes
1384  * @buffer:             buffer to receive the relevant handles
1385  *
1386  * This function is meant for U-Boot internal calls. For the API implementation
1387  * of the LocateHandle service see efi_locate_handle_ext.
1388  *
1389  * Return: status code
1390  */
1391 static efi_status_t efi_locate_handle(
1392                         enum efi_locate_search_type search_type,
1393                         const efi_guid_t *protocol, void *search_key,
1394                         efi_uintn_t *buffer_size, efi_handle_t *buffer)
1395 {
1396         struct efi_object *efiobj;
1397         efi_uintn_t size = 0;
1398         struct efi_register_notify_event *item, *event = NULL;
1399
1400         /* Check parameters */
1401         switch (search_type) {
1402         case ALL_HANDLES:
1403                 break;
1404         case BY_REGISTER_NOTIFY:
1405                 if (!search_key)
1406                         return EFI_INVALID_PARAMETER;
1407                 /* Check that the registration key is valid */
1408                 list_for_each_entry(item, &efi_register_notify_events, link) {
1409                         if (item ==
1410                             (struct efi_register_notify_event *)search_key) {
1411                                 event = item;
1412                                 break;
1413                         }
1414                 }
1415                 if (!event)
1416                         return EFI_INVALID_PARAMETER;
1417
1418                 protocol = &event->protocol;
1419                 break;
1420         case BY_PROTOCOL:
1421                 if (!protocol)
1422                         return EFI_INVALID_PARAMETER;
1423                 break;
1424         default:
1425                 return EFI_INVALID_PARAMETER;
1426         }
1427
1428         /* Count how much space we need */
1429         list_for_each_entry(efiobj, &efi_obj_list, link) {
1430                 if (!efi_search(search_type, protocol, efiobj))
1431                         size += sizeof(void *);
1432         }
1433
1434         if (size == 0)
1435                 return EFI_NOT_FOUND;
1436
1437         if (!buffer_size)
1438                 return EFI_INVALID_PARAMETER;
1439
1440         if (*buffer_size < size) {
1441                 *buffer_size = size;
1442                 return EFI_BUFFER_TOO_SMALL;
1443         }
1444
1445         *buffer_size = size;
1446
1447         /* The buffer size is sufficient but there is no buffer */
1448         if (!buffer)
1449                 return EFI_INVALID_PARAMETER;
1450
1451         /* Then fill the array */
1452         list_for_each_entry(efiobj, &efi_obj_list, link) {
1453                 if (!efi_search(search_type, protocol, efiobj))
1454                         *buffer++ = efiobj;
1455         }
1456
1457         return EFI_SUCCESS;
1458 }
1459
1460 /**
1461  * efi_locate_handle_ext() - locate handles implementing a protocol.
1462  * @search_type: selection criterion
1463  * @protocol:    GUID of the protocol
1464  * @search_key:  registration key
1465  * @buffer_size: size of the buffer to receive the handles in bytes
1466  * @buffer:      buffer to receive the relevant handles
1467  *
1468  * This function implements the LocateHandle service.
1469  *
1470  * See the Unified Extensible Firmware Interface (UEFI) specification for
1471  * details.
1472  *
1473  * Return: 0 if the handle implements the protocol
1474  */
1475 static efi_status_t EFIAPI efi_locate_handle_ext(
1476                         enum efi_locate_search_type search_type,
1477                         const efi_guid_t *protocol, void *search_key,
1478                         efi_uintn_t *buffer_size, efi_handle_t *buffer)
1479 {
1480         EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
1481                   buffer_size, buffer);
1482
1483         return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1484                         buffer_size, buffer));
1485 }
1486
1487 /**
1488  * efi_remove_configuration_table() - collapses configuration table entries,
1489  *                                    removing index i
1490  *
1491  * @i: index of the table entry to be removed
1492  */
1493 static void efi_remove_configuration_table(int i)
1494 {
1495         struct efi_configuration_table *this = &systab.tables[i];
1496         struct efi_configuration_table *next = &systab.tables[i + 1];
1497         struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
1498
1499         memmove(this, next, (ulong)end - (ulong)next);
1500         systab.nr_tables--;
1501 }
1502
1503 /**
1504  * efi_install_configuration_table() - adds, updates, or removes a
1505  *                                     configuration table
1506  * @guid:  GUID of the installed table
1507  * @table: table to be installed
1508  *
1509  * This function is used for internal calls. For the API implementation of the
1510  * InstallConfigurationTable service see efi_install_configuration_table_ext.
1511  *
1512  * Return: status code
1513  */
1514 efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1515                                              void *table)
1516 {
1517         struct efi_event *evt;
1518         int i;
1519
1520         if (!guid)
1521                 return EFI_INVALID_PARAMETER;
1522
1523         /* Check for GUID override */
1524         for (i = 0; i < systab.nr_tables; i++) {
1525                 if (!guidcmp(guid, &systab.tables[i].guid)) {
1526                         if (table)
1527                                 systab.tables[i].table = table;
1528                         else
1529                                 efi_remove_configuration_table(i);
1530                         goto out;
1531                 }
1532         }
1533
1534         if (!table)
1535                 return EFI_NOT_FOUND;
1536
1537         /* No override, check for overflow */
1538         if (i >= EFI_MAX_CONFIGURATION_TABLES)
1539                 return EFI_OUT_OF_RESOURCES;
1540
1541         /* Add a new entry */
1542         memcpy(&systab.tables[i].guid, guid, sizeof(*guid));
1543         systab.tables[i].table = table;
1544         systab.nr_tables = i + 1;
1545
1546 out:
1547         /* systab.nr_tables may have changed. So we need to update the CRC32 */
1548         efi_update_table_header_crc32(&systab.hdr);
1549
1550         /* Notify that the configuration table was changed */
1551         list_for_each_entry(evt, &efi_events, link) {
1552                 if (evt->group && !guidcmp(evt->group, guid)) {
1553                         efi_signal_event(evt, false);
1554                         break;
1555                 }
1556         }
1557
1558         return EFI_SUCCESS;
1559 }
1560
1561 /**
1562  * efi_install_configuration_table_ex() - Adds, updates, or removes a
1563  *                                        configuration table.
1564  * @guid:  GUID of the installed table
1565  * @table: table to be installed
1566  *
1567  * This function implements the InstallConfigurationTable service.
1568  *
1569  * See the Unified Extensible Firmware Interface (UEFI) specification for
1570  * details.
1571  *
1572  * Return: status code
1573  */
1574 static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1575                                                                void *table)
1576 {
1577         EFI_ENTRY("%pUl, %p", guid, table);
1578         return EFI_EXIT(efi_install_configuration_table(guid, table));
1579 }
1580
1581 /**
1582  * efi_setup_loaded_image() - initialize a loaded image
1583  *
1584  * Initialize a loaded_image_info and loaded_image_info object with correct
1585  * protocols, boot-device, etc.
1586  *
1587  * In case of an error *handle_ptr and *info_ptr are set to NULL and an error
1588  * code is returned.
1589  *
1590  * @device_path:        device path of the loaded image
1591  * @file_path:          file path of the loaded image
1592  * @handle_ptr:         handle of the loaded image
1593  * @info_ptr:           loaded image protocol
1594  * Return:              status code
1595  */
1596 efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1597                                     struct efi_device_path *file_path,
1598                                     struct efi_loaded_image_obj **handle_ptr,
1599                                     struct efi_loaded_image **info_ptr)
1600 {
1601         efi_status_t ret;
1602         struct efi_loaded_image *info = NULL;
1603         struct efi_loaded_image_obj *obj = NULL;
1604         struct efi_device_path *dp;
1605
1606         /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1607         *handle_ptr = NULL;
1608         *info_ptr = NULL;
1609
1610         info = calloc(1, sizeof(*info));
1611         if (!info)
1612                 return EFI_OUT_OF_RESOURCES;
1613         obj = calloc(1, sizeof(*obj));
1614         if (!obj) {
1615                 free(info);
1616                 return EFI_OUT_OF_RESOURCES;
1617         }
1618         obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
1619
1620         /* Add internal object to object list */
1621         efi_add_handle(&obj->header);
1622
1623         info->revision =  EFI_LOADED_IMAGE_PROTOCOL_REVISION;
1624         info->file_path = file_path;
1625         info->system_table = &systab;
1626
1627         if (device_path) {
1628                 info->device_handle = efi_dp_find_obj(device_path, NULL);
1629
1630                 dp = efi_dp_append(device_path, file_path);
1631                 if (!dp) {
1632                         ret = EFI_OUT_OF_RESOURCES;
1633                         goto failure;
1634                 }
1635         } else {
1636                 dp = NULL;
1637         }
1638         ret = efi_add_protocol(&obj->header,
1639                                &efi_guid_loaded_image_device_path, dp);
1640         if (ret != EFI_SUCCESS)
1641                 goto failure;
1642
1643         /*
1644          * When asking for the loaded_image interface, just
1645          * return handle which points to loaded_image_info
1646          */
1647         ret = efi_add_protocol(&obj->header,
1648                                &efi_guid_loaded_image, info);
1649         if (ret != EFI_SUCCESS)
1650                 goto failure;
1651
1652         *info_ptr = info;
1653         *handle_ptr = obj;
1654
1655         return ret;
1656 failure:
1657         printf("ERROR: Failure to install protocols for loaded image\n");
1658         efi_delete_handle(&obj->header);
1659         free(info);
1660         return ret;
1661 }
1662
1663 /**
1664  * efi_load_image_from_path() - load an image using a file path
1665  *
1666  * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1667  * callers obligation to update the memory type as needed.
1668  *
1669  * @file_path:  the path of the image to load
1670  * @buffer:     buffer containing the loaded image
1671  * @size:       size of the loaded image
1672  * Return:      status code
1673  */
1674 static
1675 efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
1676                                       void **buffer, efi_uintn_t *size)
1677 {
1678         struct efi_file_info *info = NULL;
1679         struct efi_file_handle *f;
1680         static efi_status_t ret;
1681         u64 addr;
1682         efi_uintn_t bs;
1683
1684         /* In case of failure nothing is returned */
1685         *buffer = NULL;
1686         *size = 0;
1687
1688         /* Open file */
1689         f = efi_file_from_path(file_path);
1690         if (!f)
1691                 return EFI_DEVICE_ERROR;
1692
1693         /* Get file size */
1694         bs = 0;
1695         EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1696                                   &bs, info));
1697         if (ret != EFI_BUFFER_TOO_SMALL) {
1698                 ret =  EFI_DEVICE_ERROR;
1699                 goto error;
1700         }
1701
1702         info = malloc(bs);
1703         EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1704                                   info));
1705         if (ret != EFI_SUCCESS)
1706                 goto error;
1707
1708         /*
1709          * When reading the file we do not yet know if it contains an
1710          * application, a boottime driver, or a runtime driver. So here we
1711          * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1712          * update the reservation according to the image type.
1713          */
1714         bs = info->file_size;
1715         ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1716                                  EFI_BOOT_SERVICES_DATA,
1717                                  efi_size_in_pages(bs), &addr);
1718         if (ret != EFI_SUCCESS) {
1719                 ret = EFI_OUT_OF_RESOURCES;
1720                 goto error;
1721         }
1722
1723         /* Read file */
1724         EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1725         if (ret != EFI_SUCCESS)
1726                 efi_free_pages(addr, efi_size_in_pages(bs));
1727         *buffer = (void *)(uintptr_t)addr;
1728         *size = bs;
1729 error:
1730         EFI_CALL(f->close(f));
1731         free(info);
1732         return ret;
1733 }
1734
1735 /**
1736  * efi_load_image() - load an EFI image into memory
1737  * @boot_policy:   true for request originating from the boot manager
1738  * @parent_image:  the caller's image handle
1739  * @file_path:     the path of the image to load
1740  * @source_buffer: memory location from which the image is installed
1741  * @source_size:   size of the memory area from which the image is installed
1742  * @image_handle:  handle for the newly installed image
1743  *
1744  * This function implements the LoadImage service.
1745  *
1746  * See the Unified Extensible Firmware Interface (UEFI) specification
1747  * for details.
1748  *
1749  * Return: status code
1750  */
1751 efi_status_t EFIAPI efi_load_image(bool boot_policy,
1752                                    efi_handle_t parent_image,
1753                                    struct efi_device_path *file_path,
1754                                    void *source_buffer,
1755                                    efi_uintn_t source_size,
1756                                    efi_handle_t *image_handle)
1757 {
1758         struct efi_device_path *dp, *fp;
1759         struct efi_loaded_image *info = NULL;
1760         struct efi_loaded_image_obj **image_obj =
1761                 (struct efi_loaded_image_obj **)image_handle;
1762         efi_status_t ret;
1763         void *dest_buffer;
1764
1765         EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
1766                   file_path, source_buffer, source_size, image_handle);
1767
1768         if (!image_handle || !efi_search_obj(parent_image)) {
1769                 ret = EFI_INVALID_PARAMETER;
1770                 goto error;
1771         }
1772
1773         if (!source_buffer && !file_path) {
1774                 ret = EFI_NOT_FOUND;
1775                 goto error;
1776         }
1777         /* The parent image handle must refer to a loaded image */
1778         if (!parent_image->type) {
1779                 ret = EFI_INVALID_PARAMETER;
1780                 goto error;
1781         }
1782
1783         if (!source_buffer) {
1784                 ret = efi_load_image_from_path(file_path, &dest_buffer,
1785                                                &source_size);
1786                 if (ret != EFI_SUCCESS)
1787                         goto error;
1788         } else {
1789                 if (!source_size) {
1790                         ret = EFI_LOAD_ERROR;
1791                         goto error;
1792                 }
1793                 dest_buffer = source_buffer;
1794         }
1795         /* split file_path which contains both the device and file parts */
1796         efi_dp_split_file_path(file_path, &dp, &fp);
1797         ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
1798         if (ret == EFI_SUCCESS)
1799                 ret = efi_load_pe(*image_obj, dest_buffer, info);
1800         if (!source_buffer)
1801                 /* Release buffer to which file was loaded */
1802                 efi_free_pages((uintptr_t)dest_buffer,
1803                                efi_size_in_pages(source_size));
1804         if (ret == EFI_SUCCESS) {
1805                 info->system_table = &systab;
1806                 info->parent_handle = parent_image;
1807         } else {
1808                 /* The image is invalid. Release all associated resources. */
1809                 efi_delete_handle(*image_handle);
1810                 *image_handle = NULL;
1811                 free(info);
1812         }
1813 error:
1814         return EFI_EXIT(ret);
1815 }
1816
1817 /**
1818  * efi_exit_caches() - fix up caches for EFI payloads if necessary
1819  */
1820 static void efi_exit_caches(void)
1821 {
1822 #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1823         /*
1824          * Grub on 32bit ARM needs to have caches disabled before jumping into
1825          * a zImage, but does not know of all cache layers. Give it a hand.
1826          */
1827         if (efi_is_direct_boot)
1828                 cleanup_before_linux();
1829 #endif
1830 }
1831
1832 /**
1833  * efi_exit_boot_services() - stop all boot services
1834  * @image_handle: handle of the loaded image
1835  * @map_key:      key of the memory map
1836  *
1837  * This function implements the ExitBootServices service.
1838  *
1839  * See the Unified Extensible Firmware Interface (UEFI) specification
1840  * for details.
1841  *
1842  * All timer events are disabled. For exit boot services events the
1843  * notification function is called. The boot services are disabled in the
1844  * system table.
1845  *
1846  * Return: status code
1847  */
1848 static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
1849                                                   efi_uintn_t map_key)
1850 {
1851         struct efi_event *evt;
1852
1853         EFI_ENTRY("%p, %zx", image_handle, map_key);
1854
1855         /* Check that the caller has read the current memory map */
1856         if (map_key != efi_memory_map_key)
1857                 return EFI_INVALID_PARAMETER;
1858
1859         /* Make sure that notification functions are not called anymore */
1860         efi_tpl = TPL_HIGH_LEVEL;
1861
1862         /* Check if ExitBootServices has already been called */
1863         if (!systab.boottime)
1864                 return EFI_EXIT(EFI_SUCCESS);
1865
1866         /* Add related events to the event group */
1867         list_for_each_entry(evt, &efi_events, link) {
1868                 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1869                         evt->group = &efi_guid_event_group_exit_boot_services;
1870         }
1871         /* Notify that ExitBootServices is invoked. */
1872         list_for_each_entry(evt, &efi_events, link) {
1873                 if (evt->group &&
1874                     !guidcmp(evt->group,
1875                              &efi_guid_event_group_exit_boot_services)) {
1876                         efi_signal_event(evt, false);
1877                         break;
1878                 }
1879         }
1880
1881         /* TODO: Should persist EFI variables here */
1882
1883         board_quiesce_devices();
1884
1885         /* Fix up caches for EFI payloads if necessary */
1886         efi_exit_caches();
1887
1888         /* This stops all lingering devices */
1889         bootm_disable_interrupts();
1890
1891         /* Disable boot time services */
1892         systab.con_in_handle = NULL;
1893         systab.con_in = NULL;
1894         systab.con_out_handle = NULL;
1895         systab.con_out = NULL;
1896         systab.stderr_handle = NULL;
1897         systab.std_err = NULL;
1898         systab.boottime = NULL;
1899
1900         /* Recalculate CRC32 */
1901         efi_update_table_header_crc32(&systab.hdr);
1902
1903         /* Give the payload some time to boot */
1904         efi_set_watchdog(0);
1905         WATCHDOG_RESET();
1906
1907         return EFI_EXIT(EFI_SUCCESS);
1908 }
1909
1910 /**
1911  * efi_get_next_monotonic_count() - get next value of the counter
1912  * @count: returned value of the counter
1913  *
1914  * This function implements the NextMonotonicCount service.
1915  *
1916  * See the Unified Extensible Firmware Interface (UEFI) specification for
1917  * details.
1918  *
1919  * Return: status code
1920  */
1921 static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1922 {
1923         static uint64_t mono;
1924         efi_status_t ret;
1925
1926         EFI_ENTRY("%p", count);
1927         if (!count) {
1928                 ret = EFI_INVALID_PARAMETER;
1929                 goto out;
1930         }
1931         *count = mono++;
1932         ret = EFI_SUCCESS;
1933 out:
1934         return EFI_EXIT(ret);
1935 }
1936
1937 /**
1938  * efi_stall() - sleep
1939  * @microseconds: period to sleep in microseconds
1940  *
1941  * This function implements the Stall service.
1942  *
1943  * See the Unified Extensible Firmware Interface (UEFI) specification for
1944  * details.
1945  *
1946  * Return:  status code
1947  */
1948 static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1949 {
1950         u64 end_tick;
1951
1952         EFI_ENTRY("%ld", microseconds);
1953
1954         end_tick = get_ticks() + usec_to_tick(microseconds);
1955         while (get_ticks() < end_tick)
1956                 efi_timer_check();
1957
1958         return EFI_EXIT(EFI_SUCCESS);
1959 }
1960
1961 /**
1962  * efi_set_watchdog_timer() - reset the watchdog timer
1963  * @timeout:       seconds before reset by watchdog
1964  * @watchdog_code: code to be logged when resetting
1965  * @data_size:     size of buffer in bytes
1966  * @watchdog_data: buffer with data describing the reset reason
1967  *
1968  * This function implements the SetWatchdogTimer service.
1969  *
1970  * See the Unified Extensible Firmware Interface (UEFI) specification for
1971  * details.
1972  *
1973  * Return: status code
1974  */
1975 static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
1976                                                   uint64_t watchdog_code,
1977                                                   unsigned long data_size,
1978                                                   uint16_t *watchdog_data)
1979 {
1980         EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
1981                   data_size, watchdog_data);
1982         return EFI_EXIT(efi_set_watchdog(timeout));
1983 }
1984
1985 /**
1986  * efi_close_protocol() - close a protocol
1987  * @handle:            handle on which the protocol shall be closed
1988  * @protocol:          GUID of the protocol to close
1989  * @agent_handle:      handle of the driver
1990  * @controller_handle: handle of the controller
1991  *
1992  * This function implements the CloseProtocol service.
1993  *
1994  * See the Unified Extensible Firmware Interface (UEFI) specification for
1995  * details.
1996  *
1997  * Return: status code
1998  */
1999 static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
2000                                               const efi_guid_t *protocol,
2001                                               efi_handle_t agent_handle,
2002                                               efi_handle_t controller_handle)
2003 {
2004         struct efi_handler *handler;
2005         struct efi_open_protocol_info_item *item;
2006         struct efi_open_protocol_info_item *pos;
2007         efi_status_t r;
2008
2009         EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
2010                   controller_handle);
2011
2012         if (!efi_search_obj(agent_handle) ||
2013             (controller_handle && !efi_search_obj(controller_handle))) {
2014                 r = EFI_INVALID_PARAMETER;
2015                 goto out;
2016         }
2017         r = efi_search_protocol(handle, protocol, &handler);
2018         if (r != EFI_SUCCESS)
2019                 goto out;
2020
2021         r = EFI_NOT_FOUND;
2022         list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2023                 if (item->info.agent_handle == agent_handle &&
2024                     item->info.controller_handle == controller_handle) {
2025                         efi_delete_open_info(item);
2026                         r = EFI_SUCCESS;
2027                         break;
2028                 }
2029         }
2030 out:
2031         return EFI_EXIT(r);
2032 }
2033
2034 /**
2035  * efi_open_protocol_information() - provide information about then open status
2036  *                                   of a protocol on a handle
2037  * @handle:       handle for which the information shall be retrieved
2038  * @protocol:     GUID of the protocol
2039  * @entry_buffer: buffer to receive the open protocol information
2040  * @entry_count:  number of entries available in the buffer
2041  *
2042  * This function implements the OpenProtocolInformation service.
2043  *
2044  * See the Unified Extensible Firmware Interface (UEFI) specification for
2045  * details.
2046  *
2047  * Return: status code
2048  */
2049 static efi_status_t EFIAPI efi_open_protocol_information(
2050                         efi_handle_t handle, const efi_guid_t *protocol,
2051                         struct efi_open_protocol_info_entry **entry_buffer,
2052                         efi_uintn_t *entry_count)
2053 {
2054         unsigned long buffer_size;
2055         unsigned long count;
2056         struct efi_handler *handler;
2057         struct efi_open_protocol_info_item *item;
2058         efi_status_t r;
2059
2060         EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
2061                   entry_count);
2062
2063         /* Check parameters */
2064         if (!entry_buffer) {
2065                 r = EFI_INVALID_PARAMETER;
2066                 goto out;
2067         }
2068         r = efi_search_protocol(handle, protocol, &handler);
2069         if (r != EFI_SUCCESS)
2070                 goto out;
2071
2072         /* Count entries */
2073         count = 0;
2074         list_for_each_entry(item, &handler->open_infos, link) {
2075                 if (item->info.open_count)
2076                         ++count;
2077         }
2078         *entry_count = count;
2079         *entry_buffer = NULL;
2080         if (!count) {
2081                 r = EFI_SUCCESS;
2082                 goto out;
2083         }
2084
2085         /* Copy entries */
2086         buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
2087         r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2088                               (void **)entry_buffer);
2089         if (r != EFI_SUCCESS)
2090                 goto out;
2091         list_for_each_entry_reverse(item, &handler->open_infos, link) {
2092                 if (item->info.open_count)
2093                         (*entry_buffer)[--count] = item->info;
2094         }
2095 out:
2096         return EFI_EXIT(r);
2097 }
2098
2099 /**
2100  * efi_protocols_per_handle() - get protocols installed on a handle
2101  * @handle:                handle for which the information is retrieved
2102  * @protocol_buffer:       buffer with protocol GUIDs
2103  * @protocol_buffer_count: number of entries in the buffer
2104  *
2105  * This function implements the ProtocolsPerHandleService.
2106  *
2107  * See the Unified Extensible Firmware Interface (UEFI) specification for
2108  * details.
2109  *
2110  * Return: status code
2111  */
2112 static efi_status_t EFIAPI efi_protocols_per_handle(
2113                         efi_handle_t handle, efi_guid_t ***protocol_buffer,
2114                         efi_uintn_t *protocol_buffer_count)
2115 {
2116         unsigned long buffer_size;
2117         struct efi_object *efiobj;
2118         struct list_head *protocol_handle;
2119         efi_status_t r;
2120
2121         EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2122                   protocol_buffer_count);
2123
2124         if (!handle || !protocol_buffer || !protocol_buffer_count)
2125                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2126
2127         *protocol_buffer = NULL;
2128         *protocol_buffer_count = 0;
2129
2130         efiobj = efi_search_obj(handle);
2131         if (!efiobj)
2132                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2133
2134         /* Count protocols */
2135         list_for_each(protocol_handle, &efiobj->protocols) {
2136                 ++*protocol_buffer_count;
2137         }
2138
2139         /* Copy GUIDs */
2140         if (*protocol_buffer_count) {
2141                 size_t j = 0;
2142
2143                 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
2144                 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2145                                       (void **)protocol_buffer);
2146                 if (r != EFI_SUCCESS)
2147                         return EFI_EXIT(r);
2148                 list_for_each(protocol_handle, &efiobj->protocols) {
2149                         struct efi_handler *protocol;
2150
2151                         protocol = list_entry(protocol_handle,
2152                                               struct efi_handler, link);
2153                         (*protocol_buffer)[j] = (void *)protocol->guid;
2154                         ++j;
2155                 }
2156         }
2157
2158         return EFI_EXIT(EFI_SUCCESS);
2159 }
2160
2161 /**
2162  * efi_locate_handle_buffer() - locate handles implementing a protocol
2163  * @search_type: selection criterion
2164  * @protocol:    GUID of the protocol
2165  * @search_key:  registration key
2166  * @no_handles:  number of returned handles
2167  * @buffer:      buffer with the returned handles
2168  *
2169  * This function implements the LocateHandleBuffer service.
2170  *
2171  * See the Unified Extensible Firmware Interface (UEFI) specification for
2172  * details.
2173  *
2174  * Return: status code
2175  */
2176 static efi_status_t EFIAPI efi_locate_handle_buffer(
2177                         enum efi_locate_search_type search_type,
2178                         const efi_guid_t *protocol, void *search_key,
2179                         efi_uintn_t *no_handles, efi_handle_t **buffer)
2180 {
2181         efi_status_t r;
2182         efi_uintn_t buffer_size = 0;
2183
2184         EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
2185                   no_handles, buffer);
2186
2187         if (!no_handles || !buffer) {
2188                 r = EFI_INVALID_PARAMETER;
2189                 goto out;
2190         }
2191         *no_handles = 0;
2192         *buffer = NULL;
2193         r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2194                               *buffer);
2195         if (r != EFI_BUFFER_TOO_SMALL)
2196                 goto out;
2197         r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2198                               (void **)buffer);
2199         if (r != EFI_SUCCESS)
2200                 goto out;
2201         r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2202                               *buffer);
2203         if (r == EFI_SUCCESS)
2204                 *no_handles = buffer_size / sizeof(efi_handle_t);
2205 out:
2206         return EFI_EXIT(r);
2207 }
2208
2209 /**
2210  * efi_locate_protocol() - find an interface implementing a protocol
2211  * @protocol:           GUID of the protocol
2212  * @registration:       registration key passed to the notification function
2213  * @protocol_interface: interface implementing the protocol
2214  *
2215  * This function implements the LocateProtocol service.
2216  *
2217  * See the Unified Extensible Firmware Interface (UEFI) specification for
2218  * details.
2219  *
2220  * Return: status code
2221  */
2222 static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
2223                                                void *registration,
2224                                                void **protocol_interface)
2225 {
2226         struct list_head *lhandle;
2227         efi_status_t ret;
2228
2229         EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
2230
2231         if (!protocol || !protocol_interface)
2232                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2233
2234         list_for_each(lhandle, &efi_obj_list) {
2235                 struct efi_object *efiobj;
2236                 struct efi_handler *handler;
2237
2238                 efiobj = list_entry(lhandle, struct efi_object, link);
2239
2240                 ret = efi_search_protocol(efiobj, protocol, &handler);
2241                 if (ret == EFI_SUCCESS) {
2242                         *protocol_interface = handler->protocol_interface;
2243                         return EFI_EXIT(EFI_SUCCESS);
2244                 }
2245         }
2246         *protocol_interface = NULL;
2247
2248         return EFI_EXIT(EFI_NOT_FOUND);
2249 }
2250
2251 /**
2252  * efi_locate_device_path() - Get the device path and handle of an device
2253  *                            implementing a protocol
2254  * @protocol:    GUID of the protocol
2255  * @device_path: device path
2256  * @device:      handle of the device
2257  *
2258  * This function implements the LocateDevicePath service.
2259  *
2260  * See the Unified Extensible Firmware Interface (UEFI) specification for
2261  * details.
2262  *
2263  * Return: status code
2264  */
2265 static efi_status_t EFIAPI efi_locate_device_path(
2266                         const efi_guid_t *protocol,
2267                         struct efi_device_path **device_path,
2268                         efi_handle_t *device)
2269 {
2270         struct efi_device_path *dp;
2271         size_t i;
2272         struct efi_handler *handler;
2273         efi_handle_t *handles;
2274         size_t len, len_dp;
2275         size_t len_best = 0;
2276         efi_uintn_t no_handles;
2277         u8 *remainder;
2278         efi_status_t ret;
2279
2280         EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2281
2282         if (!protocol || !device_path || !*device_path) {
2283                 ret = EFI_INVALID_PARAMETER;
2284                 goto out;
2285         }
2286
2287         /* Find end of device path */
2288         len = efi_dp_instance_size(*device_path);
2289
2290         /* Get all handles implementing the protocol */
2291         ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2292                                                 &no_handles, &handles));
2293         if (ret != EFI_SUCCESS)
2294                 goto out;
2295
2296         for (i = 0; i < no_handles; ++i) {
2297                 /* Find the device path protocol */
2298                 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2299                                           &handler);
2300                 if (ret != EFI_SUCCESS)
2301                         continue;
2302                 dp = (struct efi_device_path *)handler->protocol_interface;
2303                 len_dp = efi_dp_instance_size(dp);
2304                 /*
2305                  * This handle can only be a better fit
2306                  * if its device path length is longer than the best fit and
2307                  * if its device path length is shorter of equal the searched
2308                  * device path.
2309                  */
2310                 if (len_dp <= len_best || len_dp > len)
2311                         continue;
2312                 /* Check if dp is a subpath of device_path */
2313                 if (memcmp(*device_path, dp, len_dp))
2314                         continue;
2315                 if (!device) {
2316                         ret = EFI_INVALID_PARAMETER;
2317                         goto out;
2318                 }
2319                 *device = handles[i];
2320                 len_best = len_dp;
2321         }
2322         if (len_best) {
2323                 remainder = (u8 *)*device_path + len_best;
2324                 *device_path = (struct efi_device_path *)remainder;
2325                 ret = EFI_SUCCESS;
2326         } else {
2327                 ret = EFI_NOT_FOUND;
2328         }
2329 out:
2330         return EFI_EXIT(ret);
2331 }
2332
2333 /**
2334  * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2335  *                                              interfaces
2336  * @handle: handle on which the protocol interfaces shall be installed
2337  * @...:    NULL terminated argument list with pairs of protocol GUIDS and
2338  *          interfaces
2339  *
2340  * This function implements the MultipleProtocolInterfaces service.
2341  *
2342  * See the Unified Extensible Firmware Interface (UEFI) specification for
2343  * details.
2344  *
2345  * Return: status code
2346  */
2347 efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
2348                                 (efi_handle_t *handle, ...)
2349 {
2350         EFI_ENTRY("%p", handle);
2351
2352         efi_va_list argptr;
2353         const efi_guid_t *protocol;
2354         void *protocol_interface;
2355         efi_handle_t old_handle;
2356         efi_status_t r = EFI_SUCCESS;
2357         int i = 0;
2358
2359         if (!handle)
2360                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2361
2362         efi_va_start(argptr, handle);
2363         for (;;) {
2364                 protocol = efi_va_arg(argptr, efi_guid_t*);
2365                 if (!protocol)
2366                         break;
2367                 protocol_interface = efi_va_arg(argptr, void*);
2368                 /* Check that a device path has not been installed before */
2369                 if (!guidcmp(protocol, &efi_guid_device_path)) {
2370                         struct efi_device_path *dp = protocol_interface;
2371
2372                         r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2373                                                             &old_handle));
2374                         if (r == EFI_SUCCESS &&
2375                             dp->type == DEVICE_PATH_TYPE_END) {
2376                                 EFI_PRINT("Path %pD already installed\n",
2377                                           protocol_interface);
2378                                 r = EFI_ALREADY_STARTED;
2379                                 break;
2380                         }
2381                 }
2382                 r = EFI_CALL(efi_install_protocol_interface(
2383                                                 handle, protocol,
2384                                                 EFI_NATIVE_INTERFACE,
2385                                                 protocol_interface));
2386                 if (r != EFI_SUCCESS)
2387                         break;
2388                 i++;
2389         }
2390         efi_va_end(argptr);
2391         if (r == EFI_SUCCESS)
2392                 return EFI_EXIT(r);
2393
2394         /* If an error occurred undo all changes. */
2395         efi_va_start(argptr, handle);
2396         for (; i; --i) {
2397                 protocol = efi_va_arg(argptr, efi_guid_t*);
2398                 protocol_interface = efi_va_arg(argptr, void*);
2399                 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
2400                                                           protocol_interface));
2401         }
2402         efi_va_end(argptr);
2403
2404         return EFI_EXIT(r);
2405 }
2406
2407 /**
2408  * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2409  *                                                interfaces
2410  * @handle: handle from which the protocol interfaces shall be removed
2411  * @...:    NULL terminated argument list with pairs of protocol GUIDS and
2412  *          interfaces
2413  *
2414  * This function implements the UninstallMultipleProtocolInterfaces service.
2415  *
2416  * See the Unified Extensible Firmware Interface (UEFI) specification for
2417  * details.
2418  *
2419  * Return: status code
2420  */
2421 static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
2422                         efi_handle_t handle, ...)
2423 {
2424         EFI_ENTRY("%p", handle);
2425
2426         efi_va_list argptr;
2427         const efi_guid_t *protocol;
2428         void *protocol_interface;
2429         efi_status_t r = EFI_SUCCESS;
2430         size_t i = 0;
2431
2432         if (!handle)
2433                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2434
2435         efi_va_start(argptr, handle);
2436         for (;;) {
2437                 protocol = efi_va_arg(argptr, efi_guid_t*);
2438                 if (!protocol)
2439                         break;
2440                 protocol_interface = efi_va_arg(argptr, void*);
2441                 r = efi_uninstall_protocol(handle, protocol,
2442                                            protocol_interface);
2443                 if (r != EFI_SUCCESS)
2444                         break;
2445                 i++;
2446         }
2447         efi_va_end(argptr);
2448         if (r == EFI_SUCCESS) {
2449                 /* If the last protocol has been removed, delete the handle. */
2450                 if (list_empty(&handle->protocols)) {
2451                         list_del(&handle->link);
2452                         free(handle);
2453                 }
2454                 return EFI_EXIT(r);
2455         }
2456
2457         /* If an error occurred undo all changes. */
2458         efi_va_start(argptr, handle);
2459         for (; i; --i) {
2460                 protocol = efi_va_arg(argptr, efi_guid_t*);
2461                 protocol_interface = efi_va_arg(argptr, void*);
2462                 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2463                                                         EFI_NATIVE_INTERFACE,
2464                                                         protocol_interface));
2465         }
2466         efi_va_end(argptr);
2467
2468         /* In case of an error always return EFI_INVALID_PARAMETER */
2469         return EFI_EXIT(EFI_INVALID_PARAMETER);
2470 }
2471
2472 /**
2473  * efi_calculate_crc32() - calculate cyclic redundancy code
2474  * @data:      buffer with data
2475  * @data_size: size of buffer in bytes
2476  * @crc32_p:   cyclic redundancy code
2477  *
2478  * This function implements the CalculateCrc32 service.
2479  *
2480  * See the Unified Extensible Firmware Interface (UEFI) specification for
2481  * details.
2482  *
2483  * Return: status code
2484  */
2485 static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2486                                                efi_uintn_t data_size,
2487                                                u32 *crc32_p)
2488 {
2489         efi_status_t ret = EFI_SUCCESS;
2490
2491         EFI_ENTRY("%p, %zu", data, data_size);
2492         if (!data || !data_size || !crc32_p) {
2493                 ret = EFI_INVALID_PARAMETER;
2494                 goto out;
2495         }
2496         *crc32_p = crc32(0, data, data_size);
2497 out:
2498         return EFI_EXIT(ret);
2499 }
2500
2501 /**
2502  * efi_copy_mem() - copy memory
2503  * @destination: destination of the copy operation
2504  * @source:      source of the copy operation
2505  * @length:      number of bytes to copy
2506  *
2507  * This function implements the CopyMem service.
2508  *
2509  * See the Unified Extensible Firmware Interface (UEFI) specification for
2510  * details.
2511  */
2512 static void EFIAPI efi_copy_mem(void *destination, const void *source,
2513                                 size_t length)
2514 {
2515         EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
2516         memmove(destination, source, length);
2517         EFI_EXIT(EFI_SUCCESS);
2518 }
2519
2520 /**
2521  * efi_set_mem() - Fill memory with a byte value.
2522  * @buffer: buffer to fill
2523  * @size:   size of buffer in bytes
2524  * @value:  byte to copy to the buffer
2525  *
2526  * This function implements the SetMem service.
2527  *
2528  * See the Unified Extensible Firmware Interface (UEFI) specification for
2529  * details.
2530  */
2531 static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
2532 {
2533         EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
2534         memset(buffer, value, size);
2535         EFI_EXIT(EFI_SUCCESS);
2536 }
2537
2538 /**
2539  * efi_protocol_open() - open protocol interface on a handle
2540  * @handler:            handler of a protocol
2541  * @protocol_interface: interface implementing the protocol
2542  * @agent_handle:       handle of the driver
2543  * @controller_handle:  handle of the controller
2544  * @attributes:         attributes indicating how to open the protocol
2545  *
2546  * Return: status code
2547  */
2548 static efi_status_t efi_protocol_open(
2549                         struct efi_handler *handler,
2550                         void **protocol_interface, void *agent_handle,
2551                         void *controller_handle, uint32_t attributes)
2552 {
2553         struct efi_open_protocol_info_item *item;
2554         struct efi_open_protocol_info_entry *match = NULL;
2555         bool opened_by_driver = false;
2556         bool opened_exclusive = false;
2557
2558         /* If there is no agent, only return the interface */
2559         if (!agent_handle)
2560                 goto out;
2561
2562         /* For TEST_PROTOCOL ignore interface attribute */
2563         if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2564                 *protocol_interface = NULL;
2565
2566         /*
2567          * Check if the protocol is already opened by a driver with the same
2568          * attributes or opened exclusively
2569          */
2570         list_for_each_entry(item, &handler->open_infos, link) {
2571                 if (item->info.agent_handle == agent_handle) {
2572                         if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2573                             (item->info.attributes == attributes))
2574                                 return EFI_ALREADY_STARTED;
2575                 }
2576                 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2577                         opened_exclusive = true;
2578         }
2579
2580         /* Only one controller can open the protocol exclusively */
2581         if (opened_exclusive && attributes &
2582             (EFI_OPEN_PROTOCOL_EXCLUSIVE | EFI_OPEN_PROTOCOL_BY_DRIVER))
2583                 return EFI_ACCESS_DENIED;
2584
2585         /* Prepare exclusive opening */
2586         if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2587                 /* Try to disconnect controllers */
2588                 list_for_each_entry(item, &handler->open_infos, link) {
2589                         if (item->info.attributes ==
2590                                         EFI_OPEN_PROTOCOL_BY_DRIVER)
2591                                 EFI_CALL(efi_disconnect_controller(
2592                                                 item->info.controller_handle,
2593                                                 item->info.agent_handle,
2594                                                 NULL));
2595                 }
2596                 opened_by_driver = false;
2597                 /* Check if all controllers are disconnected */
2598                 list_for_each_entry(item, &handler->open_infos, link) {
2599                         if (item->info.attributes & EFI_OPEN_PROTOCOL_BY_DRIVER)
2600                                 opened_by_driver = true;
2601                 }
2602                 /* Only one controller can be connected */
2603                 if (opened_by_driver)
2604                         return EFI_ACCESS_DENIED;
2605         }
2606
2607         /* Find existing entry */
2608         list_for_each_entry(item, &handler->open_infos, link) {
2609                 if (item->info.agent_handle == agent_handle &&
2610                     item->info.controller_handle == controller_handle)
2611                         match = &item->info;
2612         }
2613         /* None found, create one */
2614         if (!match) {
2615                 match = efi_create_open_info(handler);
2616                 if (!match)
2617                         return EFI_OUT_OF_RESOURCES;
2618         }
2619
2620         match->agent_handle = agent_handle;
2621         match->controller_handle = controller_handle;
2622         match->attributes = attributes;
2623         match->open_count++;
2624
2625 out:
2626         /* For TEST_PROTOCOL ignore interface attribute. */
2627         if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2628                 *protocol_interface = handler->protocol_interface;
2629
2630         return EFI_SUCCESS;
2631 }
2632
2633 /**
2634  * efi_open_protocol() - open protocol interface on a handle
2635  * @handle:             handle on which the protocol shall be opened
2636  * @protocol:           GUID of the protocol
2637  * @protocol_interface: interface implementing the protocol
2638  * @agent_handle:       handle of the driver
2639  * @controller_handle:  handle of the controller
2640  * @attributes:         attributes indicating how to open the protocol
2641  *
2642  * This function implements the OpenProtocol interface.
2643  *
2644  * See the Unified Extensible Firmware Interface (UEFI) specification for
2645  * details.
2646  *
2647  * Return: status code
2648  */
2649 static efi_status_t EFIAPI efi_open_protocol
2650                         (efi_handle_t handle, const efi_guid_t *protocol,
2651                          void **protocol_interface, efi_handle_t agent_handle,
2652                          efi_handle_t controller_handle, uint32_t attributes)
2653 {
2654         struct efi_handler *handler;
2655         efi_status_t r = EFI_INVALID_PARAMETER;
2656
2657         EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
2658                   protocol_interface, agent_handle, controller_handle,
2659                   attributes);
2660
2661         if (!handle || !protocol ||
2662             (!protocol_interface && attributes !=
2663              EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2664                 goto out;
2665         }
2666
2667         switch (attributes) {
2668         case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2669         case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2670         case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2671                 break;
2672         case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2673                 if (controller_handle == handle)
2674                         goto out;
2675                 /* fall-through */
2676         case EFI_OPEN_PROTOCOL_BY_DRIVER:
2677         case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
2678                 /* Check that the controller handle is valid */
2679                 if (!efi_search_obj(controller_handle))
2680                         goto out;
2681                 /* fall-through */
2682         case EFI_OPEN_PROTOCOL_EXCLUSIVE:
2683                 /* Check that the agent handle is valid */
2684                 if (!efi_search_obj(agent_handle))
2685                         goto out;
2686                 break;
2687         default:
2688                 goto out;
2689         }
2690
2691         r = efi_search_protocol(handle, protocol, &handler);
2692         switch (r) {
2693         case EFI_SUCCESS:
2694                 break;
2695         case EFI_NOT_FOUND:
2696                 r = EFI_UNSUPPORTED;
2697                 goto out;
2698         default:
2699                 goto out;
2700         }
2701
2702         r = efi_protocol_open(handler, protocol_interface, agent_handle,
2703                               controller_handle, attributes);
2704 out:
2705         return EFI_EXIT(r);
2706 }
2707
2708 /**
2709  * efi_start_image() - call the entry point of an image
2710  * @image_handle:   handle of the image
2711  * @exit_data_size: size of the buffer
2712  * @exit_data:      buffer to receive the exit data of the called image
2713  *
2714  * This function implements the StartImage service.
2715  *
2716  * See the Unified Extensible Firmware Interface (UEFI) specification for
2717  * details.
2718  *
2719  * Return: status code
2720  */
2721 efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2722                                     efi_uintn_t *exit_data_size,
2723                                     u16 **exit_data)
2724 {
2725         struct efi_loaded_image_obj *image_obj =
2726                 (struct efi_loaded_image_obj *)image_handle;
2727         efi_status_t ret;
2728         void *info;
2729         efi_handle_t parent_image = current_image;
2730
2731         EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2732
2733         /* Check parameters */
2734         ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2735                                          &info, NULL, NULL,
2736                                          EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2737         if (ret != EFI_SUCCESS)
2738                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2739
2740         efi_is_direct_boot = false;
2741
2742         image_obj->exit_data_size = exit_data_size;
2743         image_obj->exit_data = exit_data;
2744
2745         /* call the image! */
2746         if (setjmp(&image_obj->exit_jmp)) {
2747                 /*
2748                  * We called the entry point of the child image with EFI_CALL
2749                  * in the lines below. The child image called the Exit() boot
2750                  * service efi_exit() which executed the long jump that brought
2751                  * us to the current line. This implies that the second half
2752                  * of the EFI_CALL macro has not been executed.
2753                  */
2754 #ifdef CONFIG_ARM
2755                 /*
2756                  * efi_exit() called efi_restore_gd(). We have to undo this
2757                  * otherwise __efi_entry_check() will put the wrong value into
2758                  * app_gd.
2759                  */
2760                 gd = app_gd;
2761 #endif
2762                 /*
2763                  * To get ready to call EFI_EXIT below we have to execute the
2764                  * missed out steps of EFI_CALL.
2765                  */
2766                 assert(__efi_entry_check());
2767                 EFI_PRINT("%lu returned by started image\n",
2768                           (unsigned long)((uintptr_t)image_obj->exit_status &
2769                           ~EFI_ERROR_MASK));
2770                 current_image = parent_image;
2771                 return EFI_EXIT(image_obj->exit_status);
2772         }
2773
2774         current_image = image_handle;
2775         image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
2776         EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
2777         ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2778
2779         /*
2780          * Usually UEFI applications call Exit() instead of returning.
2781          * But because the world doesn't consist of ponies and unicorns,
2782          * we're happy to emulate that behavior on behalf of a payload
2783          * that forgot.
2784          */
2785         return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2786 }
2787
2788 /**
2789  * efi_delete_image() - delete loaded image from memory)
2790  *
2791  * @image_obj:                  handle of the loaded image
2792  * @loaded_image_protocol:      loaded image protocol
2793  */
2794 static efi_status_t efi_delete_image
2795                         (struct efi_loaded_image_obj *image_obj,
2796                          struct efi_loaded_image *loaded_image_protocol)
2797 {
2798         struct efi_object *efiobj;
2799         efi_status_t r, ret = EFI_SUCCESS;
2800
2801 close_next:
2802         list_for_each_entry(efiobj, &efi_obj_list, link) {
2803                 struct efi_handler *protocol;
2804
2805                 list_for_each_entry(protocol, &efiobj->protocols, link) {
2806                         struct efi_open_protocol_info_item *info;
2807
2808                         list_for_each_entry(info, &protocol->open_infos, link) {
2809                                 if (info->info.agent_handle !=
2810                                     (efi_handle_t)image_obj)
2811                                         continue;
2812                                 r = EFI_CALL(efi_close_protocol
2813                                                 (efiobj, protocol->guid,
2814                                                  info->info.agent_handle,
2815                                                  info->info.controller_handle
2816                                                 ));
2817                                 if (r !=  EFI_SUCCESS)
2818                                         ret = r;
2819                                 /*
2820                                  * Closing protocols may results in further
2821                                  * items being deleted. To play it safe loop
2822                                  * over all elements again.
2823                                  */
2824                                 goto close_next;
2825                         }
2826                 }
2827         }
2828
2829         efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2830                        efi_size_in_pages(loaded_image_protocol->image_size));
2831         efi_delete_handle(&image_obj->header);
2832
2833         return ret;
2834 }
2835
2836 /**
2837  * efi_unload_image() - unload an EFI image
2838  * @image_handle: handle of the image to be unloaded
2839  *
2840  * This function implements the UnloadImage service.
2841  *
2842  * See the Unified Extensible Firmware Interface (UEFI) specification for
2843  * details.
2844  *
2845  * Return: status code
2846  */
2847 efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
2848 {
2849         efi_status_t ret = EFI_SUCCESS;
2850         struct efi_object *efiobj;
2851         struct efi_loaded_image *loaded_image_protocol;
2852
2853         EFI_ENTRY("%p", image_handle);
2854
2855         efiobj = efi_search_obj(image_handle);
2856         if (!efiobj) {
2857                 ret = EFI_INVALID_PARAMETER;
2858                 goto out;
2859         }
2860         /* Find the loaded image protocol */
2861         ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2862                                          (void **)&loaded_image_protocol,
2863                                          NULL, NULL,
2864                                          EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2865         if (ret != EFI_SUCCESS) {
2866                 ret = EFI_INVALID_PARAMETER;
2867                 goto out;
2868         }
2869         switch (efiobj->type) {
2870         case EFI_OBJECT_TYPE_STARTED_IMAGE:
2871                 /* Call the unload function */
2872                 if (!loaded_image_protocol->unload) {
2873                         ret = EFI_UNSUPPORTED;
2874                         goto out;
2875                 }
2876                 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
2877                 if (ret != EFI_SUCCESS)
2878                         goto out;
2879                 break;
2880         case EFI_OBJECT_TYPE_LOADED_IMAGE:
2881                 break;
2882         default:
2883                 ret = EFI_INVALID_PARAMETER;
2884                 goto out;
2885         }
2886         efi_delete_image((struct efi_loaded_image_obj *)efiobj,
2887                          loaded_image_protocol);
2888 out:
2889         return EFI_EXIT(ret);
2890 }
2891
2892 /**
2893  * efi_update_exit_data() - fill exit data parameters of StartImage()
2894  *
2895  * @image_obj           image handle
2896  * @exit_data_size      size of the exit data buffer
2897  * @exit_data           buffer with data returned by UEFI payload
2898  * Return:              status code
2899  */
2900 static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
2901                                          efi_uintn_t exit_data_size,
2902                                          u16 *exit_data)
2903 {
2904         efi_status_t ret;
2905
2906         /*
2907          * If exit_data is not provided to StartImage(), exit_data_size must be
2908          * ignored.
2909          */
2910         if (!image_obj->exit_data)
2911                 return EFI_SUCCESS;
2912         if (image_obj->exit_data_size)
2913                 *image_obj->exit_data_size = exit_data_size;
2914         if (exit_data_size && exit_data) {
2915                 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
2916                                         exit_data_size,
2917                                         (void **)image_obj->exit_data);
2918                 if (ret != EFI_SUCCESS)
2919                         return ret;
2920                 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
2921         } else {
2922                 image_obj->exit_data = NULL;
2923         }
2924         return EFI_SUCCESS;
2925 }
2926
2927 /**
2928  * efi_exit() - leave an EFI application or driver
2929  * @image_handle:   handle of the application or driver that is exiting
2930  * @exit_status:    status code
2931  * @exit_data_size: size of the buffer in bytes
2932  * @exit_data:      buffer with data describing an error
2933  *
2934  * This function implements the Exit service.
2935  *
2936  * See the Unified Extensible Firmware Interface (UEFI) specification for
2937  * details.
2938  *
2939  * Return: status code
2940  */
2941 static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
2942                                     efi_status_t exit_status,
2943                                     efi_uintn_t exit_data_size,
2944                                     u16 *exit_data)
2945 {
2946         /*
2947          * TODO: We should call the unload procedure of the loaded
2948          *       image protocol.
2949          */
2950         efi_status_t ret;
2951         struct efi_loaded_image *loaded_image_protocol;
2952         struct efi_loaded_image_obj *image_obj =
2953                 (struct efi_loaded_image_obj *)image_handle;
2954
2955         EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
2956                   exit_data_size, exit_data);
2957
2958         /* Check parameters */
2959         ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2960                                          (void **)&loaded_image_protocol,
2961                                          NULL, NULL,
2962                                          EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2963         if (ret != EFI_SUCCESS) {
2964                 ret = EFI_INVALID_PARAMETER;
2965                 goto out;
2966         }
2967
2968         /* Unloading of unstarted images */
2969         switch (image_obj->header.type) {
2970         case EFI_OBJECT_TYPE_STARTED_IMAGE:
2971                 break;
2972         case EFI_OBJECT_TYPE_LOADED_IMAGE:
2973                 efi_delete_image(image_obj, loaded_image_protocol);
2974                 ret = EFI_SUCCESS;
2975                 goto out;
2976         default:
2977                 /* Handle does not refer to loaded image */
2978                 ret = EFI_INVALID_PARAMETER;
2979                 goto out;
2980         }
2981         /* A started image can only be unloaded it is the last one started. */
2982         if (image_handle != current_image) {
2983                 ret = EFI_INVALID_PARAMETER;
2984                 goto out;
2985         }
2986
2987         /* Exit data is only foreseen in case of failure. */
2988         if (exit_status != EFI_SUCCESS) {
2989                 ret = efi_update_exit_data(image_obj, exit_data_size,
2990                                            exit_data);
2991                 /* Exiting has priority. Don't return error to caller. */
2992                 if (ret != EFI_SUCCESS)
2993                         EFI_PRINT("%s: out of memory\n", __func__);
2994         }
2995         if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
2996             exit_status != EFI_SUCCESS)
2997                 efi_delete_image(image_obj, loaded_image_protocol);
2998
2999         /* Make sure entry/exit counts for EFI world cross-overs match */
3000         EFI_EXIT(exit_status);
3001
3002         /*
3003          * But longjmp out with the U-Boot gd, not the application's, as
3004          * the other end is a setjmp call inside EFI context.
3005          */
3006         efi_restore_gd();
3007
3008         image_obj->exit_status = exit_status;
3009         longjmp(&image_obj->exit_jmp, 1);
3010
3011         panic("EFI application exited");
3012 out:
3013         return EFI_EXIT(ret);
3014 }
3015
3016 /**
3017  * efi_handle_protocol() - get interface of a protocol on a handle
3018  * @handle:             handle on which the protocol shall be opened
3019  * @protocol:           GUID of the protocol
3020  * @protocol_interface: interface implementing the protocol
3021  *
3022  * This function implements the HandleProtocol service.
3023  *
3024  * See the Unified Extensible Firmware Interface (UEFI) specification for
3025  * details.
3026  *
3027  * Return: status code
3028  */
3029 static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3030                                                const efi_guid_t *protocol,
3031                                                void **protocol_interface)
3032 {
3033         return efi_open_protocol(handle, protocol, protocol_interface, NULL,
3034                                  NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
3035 }
3036
3037 /**
3038  * efi_bind_controller() - bind a single driver to a controller
3039  * @controller_handle:   controller handle
3040  * @driver_image_handle: driver handle
3041  * @remain_device_path:  remaining path
3042  *
3043  * Return: status code
3044  */
3045 static efi_status_t efi_bind_controller(
3046                         efi_handle_t controller_handle,
3047                         efi_handle_t driver_image_handle,
3048                         struct efi_device_path *remain_device_path)
3049 {
3050         struct efi_driver_binding_protocol *binding_protocol;
3051         efi_status_t r;
3052
3053         r = EFI_CALL(efi_open_protocol(driver_image_handle,
3054                                        &efi_guid_driver_binding_protocol,
3055                                        (void **)&binding_protocol,
3056                                        driver_image_handle, NULL,
3057                                        EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3058         if (r != EFI_SUCCESS)
3059                 return r;
3060         r = EFI_CALL(binding_protocol->supported(binding_protocol,
3061                                                  controller_handle,
3062                                                  remain_device_path));
3063         if (r == EFI_SUCCESS)
3064                 r = EFI_CALL(binding_protocol->start(binding_protocol,
3065                                                      controller_handle,
3066                                                      remain_device_path));
3067         EFI_CALL(efi_close_protocol(driver_image_handle,
3068                                     &efi_guid_driver_binding_protocol,
3069                                     driver_image_handle, NULL));
3070         return r;
3071 }
3072
3073 /**
3074  * efi_connect_single_controller() - connect a single driver to a controller
3075  * @controller_handle:   controller
3076  * @driver_image_handle: driver
3077  * @remain_device_path:  remaining path
3078  *
3079  * Return: status code
3080  */
3081 static efi_status_t efi_connect_single_controller(
3082                         efi_handle_t controller_handle,
3083                         efi_handle_t *driver_image_handle,
3084                         struct efi_device_path *remain_device_path)
3085 {
3086         efi_handle_t *buffer;
3087         size_t count;
3088         size_t i;
3089         efi_status_t r;
3090         size_t connected = 0;
3091
3092         /* Get buffer with all handles with driver binding protocol */
3093         r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3094                                               &efi_guid_driver_binding_protocol,
3095                                               NULL, &count, &buffer));
3096         if (r != EFI_SUCCESS)
3097                 return r;
3098
3099         /*  Context Override */
3100         if (driver_image_handle) {
3101                 for (; *driver_image_handle; ++driver_image_handle) {
3102                         for (i = 0; i < count; ++i) {
3103                                 if (buffer[i] == *driver_image_handle) {
3104                                         buffer[i] = NULL;
3105                                         r = efi_bind_controller(
3106                                                         controller_handle,
3107                                                         *driver_image_handle,
3108                                                         remain_device_path);
3109                                         /*
3110                                          * For drivers that do not support the
3111                                          * controller or are already connected
3112                                          * we receive an error code here.
3113                                          */
3114                                         if (r == EFI_SUCCESS)
3115                                                 ++connected;
3116                                 }
3117                         }
3118                 }
3119         }
3120
3121         /*
3122          * TODO: Some overrides are not yet implemented:
3123          * - Platform Driver Override
3124          * - Driver Family Override Search
3125          * - Bus Specific Driver Override
3126          */
3127
3128         /* Driver Binding Search */
3129         for (i = 0; i < count; ++i) {
3130                 if (buffer[i]) {
3131                         r = efi_bind_controller(controller_handle,
3132                                                 buffer[i],
3133                                                 remain_device_path);
3134                         if (r == EFI_SUCCESS)
3135                                 ++connected;
3136                 }
3137         }
3138
3139         efi_free_pool(buffer);
3140         if (!connected)
3141                 return EFI_NOT_FOUND;
3142         return EFI_SUCCESS;
3143 }
3144
3145 /**
3146  * efi_connect_controller() - connect a controller to a driver
3147  * @controller_handle:   handle of the controller
3148  * @driver_image_handle: handle of the driver
3149  * @remain_device_path:  device path of a child controller
3150  * @recursive:           true to connect all child controllers
3151  *
3152  * This function implements the ConnectController service.
3153  *
3154  * See the Unified Extensible Firmware Interface (UEFI) specification for
3155  * details.
3156  *
3157  * First all driver binding protocol handles are tried for binding drivers.
3158  * Afterwards all handles that have opened a protocol of the controller
3159  * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3160  *
3161  * Return: status code
3162  */
3163 static efi_status_t EFIAPI efi_connect_controller(
3164                         efi_handle_t controller_handle,
3165                         efi_handle_t *driver_image_handle,
3166                         struct efi_device_path *remain_device_path,
3167                         bool recursive)
3168 {
3169         efi_status_t r;
3170         efi_status_t ret = EFI_NOT_FOUND;
3171         struct efi_object *efiobj;
3172
3173         EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
3174                   remain_device_path, recursive);
3175
3176         efiobj = efi_search_obj(controller_handle);
3177         if (!efiobj) {
3178                 ret = EFI_INVALID_PARAMETER;
3179                 goto out;
3180         }
3181
3182         r = efi_connect_single_controller(controller_handle,
3183                                           driver_image_handle,
3184                                           remain_device_path);
3185         if (r == EFI_SUCCESS)
3186                 ret = EFI_SUCCESS;
3187         if (recursive) {
3188                 struct efi_handler *handler;
3189                 struct efi_open_protocol_info_item *item;
3190
3191                 list_for_each_entry(handler, &efiobj->protocols, link) {
3192                         list_for_each_entry(item, &handler->open_infos, link) {
3193                                 if (item->info.attributes &
3194                                     EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3195                                         r = EFI_CALL(efi_connect_controller(
3196                                                 item->info.controller_handle,
3197                                                 driver_image_handle,
3198                                                 remain_device_path,
3199                                                 recursive));
3200                                         if (r == EFI_SUCCESS)
3201                                                 ret = EFI_SUCCESS;
3202                                 }
3203                         }
3204                 }
3205         }
3206         /*  Check for child controller specified by end node */
3207         if (ret != EFI_SUCCESS && remain_device_path &&
3208             remain_device_path->type == DEVICE_PATH_TYPE_END)
3209                 ret = EFI_SUCCESS;
3210 out:
3211         return EFI_EXIT(ret);
3212 }
3213
3214 /**
3215  * efi_reinstall_protocol_interface() - reinstall protocol interface
3216  * @handle:        handle on which the protocol shall be reinstalled
3217  * @protocol:      GUID of the protocol to be installed
3218  * @old_interface: interface to be removed
3219  * @new_interface: interface to be installed
3220  *
3221  * This function implements the ReinstallProtocolInterface service.
3222  *
3223  * See the Unified Extensible Firmware Interface (UEFI) specification for
3224  * details.
3225  *
3226  * The old interface is uninstalled. The new interface is installed.
3227  * Drivers are connected.
3228  *
3229  * Return: status code
3230  */
3231 static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3232                         efi_handle_t handle, const efi_guid_t *protocol,
3233                         void *old_interface, void *new_interface)
3234 {
3235         efi_status_t ret;
3236
3237         EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3238                   new_interface);
3239
3240         /* Uninstall protocol but do not delete handle */
3241         ret = efi_uninstall_protocol(handle, protocol, old_interface);
3242         if (ret != EFI_SUCCESS)
3243                 goto out;
3244
3245         /* Install the new protocol */
3246         ret = efi_add_protocol(handle, protocol, new_interface);
3247         /*
3248          * The UEFI spec does not specify what should happen to the handle
3249          * if in case of an error no protocol interface remains on the handle.
3250          * So let's do nothing here.
3251          */
3252         if (ret != EFI_SUCCESS)
3253                 goto out;
3254         /*
3255          * The returned status code has to be ignored.
3256          * Do not create an error if no suitable driver for the handle exists.
3257          */
3258         EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3259 out:
3260         return EFI_EXIT(ret);
3261 }
3262
3263 /**
3264  * efi_get_child_controllers() - get all child controllers associated to a driver
3265  * @efiobj:              handle of the controller
3266  * @driver_handle:       handle of the driver
3267  * @number_of_children:  number of child controllers
3268  * @child_handle_buffer: handles of the the child controllers
3269  *
3270  * The allocated buffer has to be freed with free().
3271  *
3272  * Return: status code
3273  */
3274 static efi_status_t efi_get_child_controllers(
3275                                 struct efi_object *efiobj,
3276                                 efi_handle_t driver_handle,
3277                                 efi_uintn_t *number_of_children,
3278                                 efi_handle_t **child_handle_buffer)
3279 {
3280         struct efi_handler *handler;
3281         struct efi_open_protocol_info_item *item;
3282         efi_uintn_t count = 0, i;
3283         bool duplicate;
3284
3285         /* Count all child controller associations */
3286         list_for_each_entry(handler, &efiobj->protocols, link) {
3287                 list_for_each_entry(item, &handler->open_infos, link) {
3288                         if (item->info.agent_handle == driver_handle &&
3289                             item->info.attributes &
3290                             EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3291                                 ++count;
3292                 }
3293         }
3294         /*
3295          * Create buffer. In case of duplicate child controller assignments
3296          * the buffer will be too large. But that does not harm.
3297          */
3298         *number_of_children = 0;
3299         *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3300         if (!*child_handle_buffer)
3301                 return EFI_OUT_OF_RESOURCES;
3302         /* Copy unique child handles */
3303         list_for_each_entry(handler, &efiobj->protocols, link) {
3304                 list_for_each_entry(item, &handler->open_infos, link) {
3305                         if (item->info.agent_handle == driver_handle &&
3306                             item->info.attributes &
3307                             EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3308                                 /* Check this is a new child controller */
3309                                 duplicate = false;
3310                                 for (i = 0; i < *number_of_children; ++i) {
3311                                         if ((*child_handle_buffer)[i] ==
3312                                             item->info.controller_handle)
3313                                                 duplicate = true;
3314                                 }
3315                                 /* Copy handle to buffer */
3316                                 if (!duplicate) {
3317                                         i = (*number_of_children)++;
3318                                         (*child_handle_buffer)[i] =
3319                                                 item->info.controller_handle;
3320                                 }
3321                         }
3322                 }
3323         }
3324         return EFI_SUCCESS;
3325 }
3326
3327 /**
3328  * efi_disconnect_controller() - disconnect a controller from a driver
3329  * @controller_handle:   handle of the controller
3330  * @driver_image_handle: handle of the driver
3331  * @child_handle:        handle of the child to destroy
3332  *
3333  * This function implements the DisconnectController service.
3334  *
3335  * See the Unified Extensible Firmware Interface (UEFI) specification for
3336  * details.
3337  *
3338  * Return: status code
3339  */
3340 static efi_status_t EFIAPI efi_disconnect_controller(
3341                                 efi_handle_t controller_handle,
3342                                 efi_handle_t driver_image_handle,
3343                                 efi_handle_t child_handle)
3344 {
3345         struct efi_driver_binding_protocol *binding_protocol;
3346         efi_handle_t *child_handle_buffer = NULL;
3347         size_t number_of_children = 0;
3348         efi_status_t r;
3349         size_t stop_count = 0;
3350         struct efi_object *efiobj;
3351
3352         EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3353                   child_handle);
3354
3355         efiobj = efi_search_obj(controller_handle);
3356         if (!efiobj) {
3357                 r = EFI_INVALID_PARAMETER;
3358                 goto out;
3359         }
3360
3361         if (child_handle && !efi_search_obj(child_handle)) {
3362                 r = EFI_INVALID_PARAMETER;
3363                 goto out;
3364         }
3365
3366         /* If no driver handle is supplied, disconnect all drivers */
3367         if (!driver_image_handle) {
3368                 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3369                 goto out;
3370         }
3371
3372         /* Create list of child handles */
3373         if (child_handle) {
3374                 number_of_children = 1;
3375                 child_handle_buffer = &child_handle;
3376         } else {
3377                 efi_get_child_controllers(efiobj,
3378                                           driver_image_handle,
3379                                           &number_of_children,
3380                                           &child_handle_buffer);
3381         }
3382
3383         /* Get the driver binding protocol */
3384         r = EFI_CALL(efi_open_protocol(driver_image_handle,
3385                                        &efi_guid_driver_binding_protocol,
3386                                        (void **)&binding_protocol,
3387                                        driver_image_handle, NULL,
3388                                        EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3389         if (r != EFI_SUCCESS)
3390                 goto out;
3391         /* Remove the children */
3392         if (number_of_children) {
3393                 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3394                                                     controller_handle,
3395                                                     number_of_children,
3396                                                     child_handle_buffer));
3397                 if (r == EFI_SUCCESS)
3398                         ++stop_count;
3399         }
3400         /* Remove the driver */
3401         if (!child_handle)
3402                 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3403                                                     controller_handle,
3404                                                     0, NULL));
3405         if (r == EFI_SUCCESS)
3406                 ++stop_count;
3407         EFI_CALL(efi_close_protocol(driver_image_handle,
3408                                     &efi_guid_driver_binding_protocol,
3409                                     driver_image_handle, NULL));
3410
3411         if (stop_count)
3412                 r = EFI_SUCCESS;
3413         else
3414                 r = EFI_NOT_FOUND;
3415 out:
3416         if (!child_handle)
3417                 free(child_handle_buffer);
3418         return EFI_EXIT(r);
3419 }
3420
3421 static struct efi_boot_services efi_boot_services = {
3422         .hdr = {
3423                 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3424                 .revision = EFI_SPECIFICATION_VERSION,
3425                 .headersize = sizeof(struct efi_boot_services),
3426         },
3427         .raise_tpl = efi_raise_tpl,
3428         .restore_tpl = efi_restore_tpl,
3429         .allocate_pages = efi_allocate_pages_ext,
3430         .free_pages = efi_free_pages_ext,
3431         .get_memory_map = efi_get_memory_map_ext,
3432         .allocate_pool = efi_allocate_pool_ext,
3433         .free_pool = efi_free_pool_ext,
3434         .create_event = efi_create_event_ext,
3435         .set_timer = efi_set_timer_ext,
3436         .wait_for_event = efi_wait_for_event,
3437         .signal_event = efi_signal_event_ext,
3438         .close_event = efi_close_event,
3439         .check_event = efi_check_event,
3440         .install_protocol_interface = efi_install_protocol_interface,
3441         .reinstall_protocol_interface = efi_reinstall_protocol_interface,
3442         .uninstall_protocol_interface = efi_uninstall_protocol_interface,
3443         .handle_protocol = efi_handle_protocol,
3444         .reserved = NULL,
3445         .register_protocol_notify = efi_register_protocol_notify,
3446         .locate_handle = efi_locate_handle_ext,
3447         .locate_device_path = efi_locate_device_path,
3448         .install_configuration_table = efi_install_configuration_table_ext,
3449         .load_image = efi_load_image,
3450         .start_image = efi_start_image,
3451         .exit = efi_exit,
3452         .unload_image = efi_unload_image,
3453         .exit_boot_services = efi_exit_boot_services,
3454         .get_next_monotonic_count = efi_get_next_monotonic_count,
3455         .stall = efi_stall,
3456         .set_watchdog_timer = efi_set_watchdog_timer,
3457         .connect_controller = efi_connect_controller,
3458         .disconnect_controller = efi_disconnect_controller,
3459         .open_protocol = efi_open_protocol,
3460         .close_protocol = efi_close_protocol,
3461         .open_protocol_information = efi_open_protocol_information,
3462         .protocols_per_handle = efi_protocols_per_handle,
3463         .locate_handle_buffer = efi_locate_handle_buffer,
3464         .locate_protocol = efi_locate_protocol,
3465         .install_multiple_protocol_interfaces =
3466                         efi_install_multiple_protocol_interfaces,
3467         .uninstall_multiple_protocol_interfaces =
3468                         efi_uninstall_multiple_protocol_interfaces,
3469         .calculate_crc32 = efi_calculate_crc32,
3470         .copy_mem = efi_copy_mem,
3471         .set_mem = efi_set_mem,
3472         .create_event_ex = efi_create_event_ex,
3473 };
3474
3475 static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
3476
3477 struct efi_system_table __efi_runtime_data systab = {
3478         .hdr = {
3479                 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
3480                 .revision = EFI_SPECIFICATION_VERSION,
3481                 .headersize = sizeof(struct efi_system_table),
3482         },
3483         .fw_vendor = firmware_vendor,
3484         .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
3485         .con_in = (void *)&efi_con_in,
3486         .con_out = (void *)&efi_con_out,
3487         .std_err = (void *)&efi_con_out,
3488         .runtime = (void *)&efi_runtime_services,
3489         .boottime = (void *)&efi_boot_services,
3490         .nr_tables = 0,
3491         .tables = NULL,
3492 };
3493
3494 /**
3495  * efi_initialize_system_table() - Initialize system table
3496  *
3497  * Return:      status code
3498  */
3499 efi_status_t efi_initialize_system_table(void)
3500 {
3501         efi_status_t ret;
3502
3503         /* Allocate configuration table array */
3504         ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3505                                 EFI_MAX_CONFIGURATION_TABLES *
3506                                 sizeof(struct efi_configuration_table),
3507                                 (void **)&systab.tables);
3508
3509         /* Set CRC32 field in table headers */
3510         efi_update_table_header_crc32(&systab.hdr);
3511         efi_update_table_header_crc32(&efi_runtime_services.hdr);
3512         efi_update_table_header_crc32(&efi_boot_services.hdr);
3513
3514         return ret;
3515 }