efi_loader: correct notification of protocol installation
[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                         struct efi_protocol_notification *hitem, *hnext;
925
926                         /* Remove signaled handles */
927                         list_for_each_entry_safe(hitem, hnext, &item->handles,
928                                                  link) {
929                                 list_del(&hitem->link);
930                                 free(hitem);
931                         }
932                         list_del(&item->link);
933                         free(item);
934                 }
935         }
936
937         list_del(&event->link);
938         free(event);
939         return EFI_EXIT(EFI_SUCCESS);
940 }
941
942 /**
943  * efi_check_event() - check if an event is signaled
944  * @event: event to check
945  *
946  * This function implements the CheckEvent service.
947  *
948  * See the Unified Extensible Firmware Interface (UEFI) specification for
949  * details.
950  *
951  * If an event is not signaled yet, the notification function is queued. The
952  * signaled state is cleared.
953  *
954  * Return: status code
955  */
956 static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
957 {
958         EFI_ENTRY("%p", event);
959         efi_timer_check();
960         if (efi_is_event(event) != EFI_SUCCESS ||
961             event->type & EVT_NOTIFY_SIGNAL)
962                 return EFI_EXIT(EFI_INVALID_PARAMETER);
963         if (!event->is_signaled)
964                 efi_queue_event(event, true);
965         if (event->is_signaled) {
966                 event->is_signaled = false;
967                 return EFI_EXIT(EFI_SUCCESS);
968         }
969         return EFI_EXIT(EFI_NOT_READY);
970 }
971
972 /**
973  * efi_search_obj() - find the internal EFI object for a handle
974  * @handle: handle to find
975  *
976  * Return: EFI object
977  */
978 struct efi_object *efi_search_obj(const efi_handle_t handle)
979 {
980         struct efi_object *efiobj;
981
982         if (!handle)
983                 return NULL;
984
985         list_for_each_entry(efiobj, &efi_obj_list, link) {
986                 if (efiobj == handle)
987                         return efiobj;
988         }
989         return NULL;
990 }
991
992 /**
993  * efi_open_protocol_info_entry() - create open protocol info entry and add it
994  *                                  to a protocol
995  * @handler: handler of a protocol
996  *
997  * Return: open protocol info entry
998  */
999 static struct efi_open_protocol_info_entry *efi_create_open_info(
1000                         struct efi_handler *handler)
1001 {
1002         struct efi_open_protocol_info_item *item;
1003
1004         item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1005         if (!item)
1006                 return NULL;
1007         /* Append the item to the open protocol info list. */
1008         list_add_tail(&item->link, &handler->open_infos);
1009
1010         return &item->info;
1011 }
1012
1013 /**
1014  * efi_delete_open_info() - remove an open protocol info entry from a protocol
1015  * @item: open protocol info entry to delete
1016  *
1017  * Return: status code
1018  */
1019 static efi_status_t efi_delete_open_info(
1020                         struct efi_open_protocol_info_item *item)
1021 {
1022         list_del(&item->link);
1023         free(item);
1024         return EFI_SUCCESS;
1025 }
1026
1027 /**
1028  * efi_add_protocol() - install new protocol on a handle
1029  * @handle:             handle on which the protocol shall be installed
1030  * @protocol:           GUID of the protocol to be installed
1031  * @protocol_interface: interface of the protocol implementation
1032  *
1033  * Return: status code
1034  */
1035 efi_status_t efi_add_protocol(const efi_handle_t handle,
1036                               const efi_guid_t *protocol,
1037                               void *protocol_interface)
1038 {
1039         struct efi_object *efiobj;
1040         struct efi_handler *handler;
1041         efi_status_t ret;
1042         struct efi_register_notify_event *event;
1043
1044         efiobj = efi_search_obj(handle);
1045         if (!efiobj)
1046                 return EFI_INVALID_PARAMETER;
1047         ret = efi_search_protocol(handle, protocol, NULL);
1048         if (ret != EFI_NOT_FOUND)
1049                 return EFI_INVALID_PARAMETER;
1050         handler = calloc(1, sizeof(struct efi_handler));
1051         if (!handler)
1052                 return EFI_OUT_OF_RESOURCES;
1053         handler->guid = protocol;
1054         handler->protocol_interface = protocol_interface;
1055         INIT_LIST_HEAD(&handler->open_infos);
1056         list_add_tail(&handler->link, &efiobj->protocols);
1057
1058         /* Notify registered events */
1059         list_for_each_entry(event, &efi_register_notify_events, link) {
1060                 if (!guidcmp(protocol, &event->protocol)) {
1061                         struct efi_protocol_notification *notif;
1062
1063                         notif = calloc(1, sizeof(*notif));
1064                         if (!notif) {
1065                                 list_del(&handler->link);
1066                                 free(handler);
1067                                 return EFI_OUT_OF_RESOURCES;
1068                         }
1069                         notif->handle = handle;
1070                         list_add_tail(&notif->link, &event->handles);
1071                         efi_signal_event(event->event, true);
1072                 }
1073         }
1074
1075         if (!guidcmp(&efi_guid_device_path, protocol))
1076                 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
1077         return EFI_SUCCESS;
1078 }
1079
1080 /**
1081  * efi_install_protocol_interface() - install protocol interface
1082  * @handle:                  handle on which the protocol shall be installed
1083  * @protocol:                GUID of the protocol to be installed
1084  * @protocol_interface_type: type of the interface to be installed,
1085  *                           always EFI_NATIVE_INTERFACE
1086  * @protocol_interface:      interface of the protocol implementation
1087  *
1088  * This function implements the InstallProtocolInterface service.
1089  *
1090  * See the Unified Extensible Firmware Interface (UEFI) specification for
1091  * details.
1092  *
1093  * Return: status code
1094  */
1095 static efi_status_t EFIAPI efi_install_protocol_interface(
1096                         efi_handle_t *handle, const efi_guid_t *protocol,
1097                         int protocol_interface_type, void *protocol_interface)
1098 {
1099         efi_status_t r;
1100
1101         EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1102                   protocol_interface);
1103
1104         if (!handle || !protocol ||
1105             protocol_interface_type != EFI_NATIVE_INTERFACE) {
1106                 r = EFI_INVALID_PARAMETER;
1107                 goto out;
1108         }
1109
1110         /* Create new handle if requested. */
1111         if (!*handle) {
1112                 r = efi_create_handle(handle);
1113                 if (r != EFI_SUCCESS)
1114                         goto out;
1115                 EFI_PRINT("new handle %p\n", *handle);
1116         } else {
1117                 EFI_PRINT("handle %p\n", *handle);
1118         }
1119         /* Add new protocol */
1120         r = efi_add_protocol(*handle, protocol, protocol_interface);
1121 out:
1122         return EFI_EXIT(r);
1123 }
1124
1125 /**
1126  * efi_get_drivers() - get all drivers associated to a controller
1127  * @handle:               handle of the controller
1128  * @protocol:             protocol GUID (optional)
1129  * @number_of_drivers:    number of child controllers
1130  * @driver_handle_buffer: handles of the the drivers
1131  *
1132  * The allocated buffer has to be freed with free().
1133  *
1134  * Return: status code
1135  */
1136 static efi_status_t efi_get_drivers(efi_handle_t handle,
1137                                     const efi_guid_t *protocol,
1138                                     efi_uintn_t *number_of_drivers,
1139                                     efi_handle_t **driver_handle_buffer)
1140 {
1141         struct efi_handler *handler;
1142         struct efi_open_protocol_info_item *item;
1143         efi_uintn_t count = 0, i;
1144         bool duplicate;
1145
1146         /* Count all driver associations */
1147         list_for_each_entry(handler, &handle->protocols, link) {
1148                 if (protocol && guidcmp(handler->guid, protocol))
1149                         continue;
1150                 list_for_each_entry(item, &handler->open_infos, link) {
1151                         if (item->info.attributes &
1152                             EFI_OPEN_PROTOCOL_BY_DRIVER)
1153                                 ++count;
1154                 }
1155         }
1156         /*
1157          * Create buffer. In case of duplicate driver assignments the buffer
1158          * will be too large. But that does not harm.
1159          */
1160         *number_of_drivers = 0;
1161         *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1162         if (!*driver_handle_buffer)
1163                 return EFI_OUT_OF_RESOURCES;
1164         /* Collect unique driver handles */
1165         list_for_each_entry(handler, &handle->protocols, link) {
1166                 if (protocol && guidcmp(handler->guid, protocol))
1167                         continue;
1168                 list_for_each_entry(item, &handler->open_infos, link) {
1169                         if (item->info.attributes &
1170                             EFI_OPEN_PROTOCOL_BY_DRIVER) {
1171                                 /* Check this is a new driver */
1172                                 duplicate = false;
1173                                 for (i = 0; i < *number_of_drivers; ++i) {
1174                                         if ((*driver_handle_buffer)[i] ==
1175                                             item->info.agent_handle)
1176                                                 duplicate = true;
1177                                 }
1178                                 /* Copy handle to buffer */
1179                                 if (!duplicate) {
1180                                         i = (*number_of_drivers)++;
1181                                         (*driver_handle_buffer)[i] =
1182                                                 item->info.agent_handle;
1183                                 }
1184                         }
1185                 }
1186         }
1187         return EFI_SUCCESS;
1188 }
1189
1190 /**
1191  * efi_disconnect_all_drivers() - disconnect all drivers from a controller
1192  * @handle:       handle of the controller
1193  * @protocol:     protocol GUID (optional)
1194  * @child_handle: handle of the child to destroy
1195  *
1196  * This function implements the DisconnectController service.
1197  *
1198  * See the Unified Extensible Firmware Interface (UEFI) specification for
1199  * details.
1200  *
1201  * Return: status code
1202  */
1203 static efi_status_t efi_disconnect_all_drivers
1204                                 (efi_handle_t handle,
1205                                  const efi_guid_t *protocol,
1206                                  efi_handle_t child_handle)
1207 {
1208         efi_uintn_t number_of_drivers;
1209         efi_handle_t *driver_handle_buffer;
1210         efi_status_t r, ret;
1211
1212         ret = efi_get_drivers(handle, protocol, &number_of_drivers,
1213                               &driver_handle_buffer);
1214         if (ret != EFI_SUCCESS)
1215                 return ret;
1216
1217         ret = EFI_NOT_FOUND;
1218         while (number_of_drivers) {
1219                 r = EFI_CALL(efi_disconnect_controller(
1220                                 handle,
1221                                 driver_handle_buffer[--number_of_drivers],
1222                                 child_handle));
1223                 if (r == EFI_SUCCESS)
1224                         ret = r;
1225         }
1226         free(driver_handle_buffer);
1227         return ret;
1228 }
1229
1230 /**
1231  * efi_uninstall_protocol() - uninstall protocol interface
1232  *
1233  * @handle:             handle from which the protocol shall be removed
1234  * @protocol:           GUID of the protocol to be removed
1235  * @protocol_interface: interface to be removed
1236  *
1237  * This function DOES NOT delete a handle without installed protocol.
1238  *
1239  * Return: status code
1240  */
1241 static efi_status_t efi_uninstall_protocol
1242                         (efi_handle_t handle, const efi_guid_t *protocol,
1243                          void *protocol_interface)
1244 {
1245         struct efi_object *efiobj;
1246         struct efi_handler *handler;
1247         struct efi_open_protocol_info_item *item;
1248         struct efi_open_protocol_info_item *pos;
1249         efi_status_t r;
1250
1251         /* Check handle */
1252         efiobj = efi_search_obj(handle);
1253         if (!efiobj) {
1254                 r = EFI_INVALID_PARAMETER;
1255                 goto out;
1256         }
1257         /* Find the protocol on the handle */
1258         r = efi_search_protocol(handle, protocol, &handler);
1259         if (r != EFI_SUCCESS)
1260                 goto out;
1261         /* Disconnect controllers */
1262         efi_disconnect_all_drivers(efiobj, protocol, NULL);
1263         if (!list_empty(&handler->open_infos)) {
1264                 r =  EFI_ACCESS_DENIED;
1265                 goto out;
1266         }
1267         /* Close protocol */
1268         list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1269                 if (item->info.attributes ==
1270                         EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1271                     item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1272                     item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1273                         list_del(&item->link);
1274         }
1275         if (!list_empty(&handler->open_infos)) {
1276                 r =  EFI_ACCESS_DENIED;
1277                 goto out;
1278         }
1279         r = efi_remove_protocol(handle, protocol, protocol_interface);
1280 out:
1281         return r;
1282 }
1283
1284 /**
1285  * efi_uninstall_protocol_interface() - uninstall protocol interface
1286  * @handle:             handle from which the protocol shall be removed
1287  * @protocol:           GUID of the protocol to be removed
1288  * @protocol_interface: interface to be removed
1289  *
1290  * This function implements the UninstallProtocolInterface service.
1291  *
1292  * See the Unified Extensible Firmware Interface (UEFI) specification for
1293  * details.
1294  *
1295  * Return: status code
1296  */
1297 static efi_status_t EFIAPI efi_uninstall_protocol_interface
1298                         (efi_handle_t handle, const efi_guid_t *protocol,
1299                          void *protocol_interface)
1300 {
1301         efi_status_t ret;
1302
1303         EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1304
1305         ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1306         if (ret != EFI_SUCCESS)
1307                 goto out;
1308
1309         /* If the last protocol has been removed, delete the handle. */
1310         if (list_empty(&handle->protocols)) {
1311                 list_del(&handle->link);
1312                 free(handle);
1313         }
1314 out:
1315         return EFI_EXIT(ret);
1316 }
1317
1318 /**
1319  * efi_register_protocol_notify() - register an event for notification when a
1320  *                                  protocol is installed.
1321  * @protocol:     GUID of the protocol whose installation shall be notified
1322  * @event:        event to be signaled upon installation of the protocol
1323  * @registration: key for retrieving the registration information
1324  *
1325  * This function implements the RegisterProtocolNotify service.
1326  * See the Unified Extensible Firmware Interface (UEFI) specification
1327  * for details.
1328  *
1329  * Return: status code
1330  */
1331 static efi_status_t EFIAPI efi_register_protocol_notify(
1332                                                 const efi_guid_t *protocol,
1333                                                 struct efi_event *event,
1334                                                 void **registration)
1335 {
1336         struct efi_register_notify_event *item;
1337         efi_status_t ret = EFI_SUCCESS;
1338
1339         EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
1340
1341         if (!protocol || !event || !registration) {
1342                 ret = EFI_INVALID_PARAMETER;
1343                 goto out;
1344         }
1345
1346         item = calloc(1, sizeof(struct efi_register_notify_event));
1347         if (!item) {
1348                 ret = EFI_OUT_OF_RESOURCES;
1349                 goto out;
1350         }
1351
1352         item->event = event;
1353         memcpy(&item->protocol, protocol, sizeof(efi_guid_t));
1354         INIT_LIST_HEAD(&item->handles);
1355
1356         list_add_tail(&item->link, &efi_register_notify_events);
1357
1358         *registration = item;
1359 out:
1360         return EFI_EXIT(ret);
1361 }
1362
1363 /**
1364  * efi_search() - determine if an EFI handle implements a protocol
1365  * @search_type: selection criterion
1366  * @protocol:    GUID of the protocol
1367  * @search_key:  registration key
1368  * @handle:      handle
1369  *
1370  * See the documentation of the LocateHandle service in the UEFI specification.
1371  *
1372  * Return: 0 if the handle implements the protocol
1373  */
1374 static int efi_search(enum efi_locate_search_type search_type,
1375                       const efi_guid_t *protocol, efi_handle_t handle)
1376 {
1377         efi_status_t ret;
1378
1379         switch (search_type) {
1380         case ALL_HANDLES:
1381                 return 0;
1382         case BY_PROTOCOL:
1383                 ret = efi_search_protocol(handle, protocol, NULL);
1384                 return (ret != EFI_SUCCESS);
1385         default:
1386                 /* Invalid search type */
1387                 return -1;
1388         }
1389 }
1390
1391 /**
1392  * efi_locate_handle() - locate handles implementing a protocol
1393  *
1394  * @search_type:        selection criterion
1395  * @protocol:           GUID of the protocol
1396  * @search_key:         registration key
1397  * @buffer_size:        size of the buffer to receive the handles in bytes
1398  * @buffer:             buffer to receive the relevant handles
1399  *
1400  * This function is meant for U-Boot internal calls. For the API implementation
1401  * of the LocateHandle service see efi_locate_handle_ext.
1402  *
1403  * Return: status code
1404  */
1405 static efi_status_t efi_locate_handle(
1406                         enum efi_locate_search_type search_type,
1407                         const efi_guid_t *protocol, void *search_key,
1408                         efi_uintn_t *buffer_size, efi_handle_t *buffer)
1409 {
1410         struct efi_object *efiobj;
1411         efi_uintn_t size = 0;
1412         struct efi_register_notify_event *item, *event = NULL;
1413         struct efi_protocol_notification *handle = NULL;
1414
1415         /* Check parameters */
1416         switch (search_type) {
1417         case ALL_HANDLES:
1418                 break;
1419         case BY_REGISTER_NOTIFY:
1420                 if (!search_key)
1421                         return EFI_INVALID_PARAMETER;
1422                 /* Check that the registration key is valid */
1423                 list_for_each_entry(item, &efi_register_notify_events, link) {
1424                         if (item ==
1425                             (struct efi_register_notify_event *)search_key) {
1426                                 event = item;
1427                                 break;
1428                         }
1429                 }
1430                 if (!event)
1431                         return EFI_INVALID_PARAMETER;
1432                 break;
1433         case BY_PROTOCOL:
1434                 if (!protocol)
1435                         return EFI_INVALID_PARAMETER;
1436                 break;
1437         default:
1438                 return EFI_INVALID_PARAMETER;
1439         }
1440
1441         /* Count how much space we need */
1442         if (search_type == BY_REGISTER_NOTIFY) {
1443                 if (list_empty(&event->handles))
1444                         return EFI_NOT_FOUND;
1445                 handle = list_first_entry(&event->handles,
1446                                           struct efi_protocol_notification,
1447                                           link);
1448                 efiobj = handle->handle;
1449                 size += sizeof(void *);
1450         } else {
1451                 list_for_each_entry(efiobj, &efi_obj_list, link) {
1452                         if (!efi_search(search_type, protocol, efiobj))
1453                                 size += sizeof(void *);
1454                 }
1455                 if (size == 0)
1456                         return EFI_NOT_FOUND;
1457         }
1458
1459         if (!buffer_size)
1460                 return EFI_INVALID_PARAMETER;
1461
1462         if (*buffer_size < size) {
1463                 *buffer_size = size;
1464                 return EFI_BUFFER_TOO_SMALL;
1465         }
1466
1467         *buffer_size = size;
1468
1469         /* The buffer size is sufficient but there is no buffer */
1470         if (!buffer)
1471                 return EFI_INVALID_PARAMETER;
1472
1473         /* Then fill the array */
1474         if (search_type == BY_REGISTER_NOTIFY) {
1475                 *buffer = efiobj;
1476                 list_del(&handle->link);
1477         } else {
1478                 list_for_each_entry(efiobj, &efi_obj_list, link) {
1479                         if (!efi_search(search_type, protocol, efiobj))
1480                                 *buffer++ = efiobj;
1481                 }
1482         }
1483
1484         return EFI_SUCCESS;
1485 }
1486
1487 /**
1488  * efi_locate_handle_ext() - locate handles implementing a protocol.
1489  * @search_type: selection criterion
1490  * @protocol:    GUID of the protocol
1491  * @search_key:  registration key
1492  * @buffer_size: size of the buffer to receive the handles in bytes
1493  * @buffer:      buffer to receive the relevant handles
1494  *
1495  * This function implements the LocateHandle service.
1496  *
1497  * See the Unified Extensible Firmware Interface (UEFI) specification for
1498  * details.
1499  *
1500  * Return: 0 if the handle implements the protocol
1501  */
1502 static efi_status_t EFIAPI efi_locate_handle_ext(
1503                         enum efi_locate_search_type search_type,
1504                         const efi_guid_t *protocol, void *search_key,
1505                         efi_uintn_t *buffer_size, efi_handle_t *buffer)
1506 {
1507         EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
1508                   buffer_size, buffer);
1509
1510         return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1511                         buffer_size, buffer));
1512 }
1513
1514 /**
1515  * efi_remove_configuration_table() - collapses configuration table entries,
1516  *                                    removing index i
1517  *
1518  * @i: index of the table entry to be removed
1519  */
1520 static void efi_remove_configuration_table(int i)
1521 {
1522         struct efi_configuration_table *this = &systab.tables[i];
1523         struct efi_configuration_table *next = &systab.tables[i + 1];
1524         struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
1525
1526         memmove(this, next, (ulong)end - (ulong)next);
1527         systab.nr_tables--;
1528 }
1529
1530 /**
1531  * efi_install_configuration_table() - adds, updates, or removes a
1532  *                                     configuration table
1533  * @guid:  GUID of the installed table
1534  * @table: table to be installed
1535  *
1536  * This function is used for internal calls. For the API implementation of the
1537  * InstallConfigurationTable service see efi_install_configuration_table_ext.
1538  *
1539  * Return: status code
1540  */
1541 efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1542                                              void *table)
1543 {
1544         struct efi_event *evt;
1545         int i;
1546
1547         if (!guid)
1548                 return EFI_INVALID_PARAMETER;
1549
1550         /* Check for GUID override */
1551         for (i = 0; i < systab.nr_tables; i++) {
1552                 if (!guidcmp(guid, &systab.tables[i].guid)) {
1553                         if (table)
1554                                 systab.tables[i].table = table;
1555                         else
1556                                 efi_remove_configuration_table(i);
1557                         goto out;
1558                 }
1559         }
1560
1561         if (!table)
1562                 return EFI_NOT_FOUND;
1563
1564         /* No override, check for overflow */
1565         if (i >= EFI_MAX_CONFIGURATION_TABLES)
1566                 return EFI_OUT_OF_RESOURCES;
1567
1568         /* Add a new entry */
1569         memcpy(&systab.tables[i].guid, guid, sizeof(*guid));
1570         systab.tables[i].table = table;
1571         systab.nr_tables = i + 1;
1572
1573 out:
1574         /* systab.nr_tables may have changed. So we need to update the CRC32 */
1575         efi_update_table_header_crc32(&systab.hdr);
1576
1577         /* Notify that the configuration table was changed */
1578         list_for_each_entry(evt, &efi_events, link) {
1579                 if (evt->group && !guidcmp(evt->group, guid)) {
1580                         efi_signal_event(evt, false);
1581                         break;
1582                 }
1583         }
1584
1585         return EFI_SUCCESS;
1586 }
1587
1588 /**
1589  * efi_install_configuration_table_ex() - Adds, updates, or removes a
1590  *                                        configuration table.
1591  * @guid:  GUID of the installed table
1592  * @table: table to be installed
1593  *
1594  * This function implements the InstallConfigurationTable service.
1595  *
1596  * See the Unified Extensible Firmware Interface (UEFI) specification for
1597  * details.
1598  *
1599  * Return: status code
1600  */
1601 static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1602                                                                void *table)
1603 {
1604         EFI_ENTRY("%pUl, %p", guid, table);
1605         return EFI_EXIT(efi_install_configuration_table(guid, table));
1606 }
1607
1608 /**
1609  * efi_setup_loaded_image() - initialize a loaded image
1610  *
1611  * Initialize a loaded_image_info and loaded_image_info object with correct
1612  * protocols, boot-device, etc.
1613  *
1614  * In case of an error *handle_ptr and *info_ptr are set to NULL and an error
1615  * code is returned.
1616  *
1617  * @device_path:        device path of the loaded image
1618  * @file_path:          file path of the loaded image
1619  * @handle_ptr:         handle of the loaded image
1620  * @info_ptr:           loaded image protocol
1621  * Return:              status code
1622  */
1623 efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1624                                     struct efi_device_path *file_path,
1625                                     struct efi_loaded_image_obj **handle_ptr,
1626                                     struct efi_loaded_image **info_ptr)
1627 {
1628         efi_status_t ret;
1629         struct efi_loaded_image *info = NULL;
1630         struct efi_loaded_image_obj *obj = NULL;
1631         struct efi_device_path *dp;
1632
1633         /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1634         *handle_ptr = NULL;
1635         *info_ptr = NULL;
1636
1637         info = calloc(1, sizeof(*info));
1638         if (!info)
1639                 return EFI_OUT_OF_RESOURCES;
1640         obj = calloc(1, sizeof(*obj));
1641         if (!obj) {
1642                 free(info);
1643                 return EFI_OUT_OF_RESOURCES;
1644         }
1645         obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
1646
1647         /* Add internal object to object list */
1648         efi_add_handle(&obj->header);
1649
1650         info->revision =  EFI_LOADED_IMAGE_PROTOCOL_REVISION;
1651         info->file_path = file_path;
1652         info->system_table = &systab;
1653
1654         if (device_path) {
1655                 info->device_handle = efi_dp_find_obj(device_path, NULL);
1656
1657                 dp = efi_dp_append(device_path, file_path);
1658                 if (!dp) {
1659                         ret = EFI_OUT_OF_RESOURCES;
1660                         goto failure;
1661                 }
1662         } else {
1663                 dp = NULL;
1664         }
1665         ret = efi_add_protocol(&obj->header,
1666                                &efi_guid_loaded_image_device_path, dp);
1667         if (ret != EFI_SUCCESS)
1668                 goto failure;
1669
1670         /*
1671          * When asking for the loaded_image interface, just
1672          * return handle which points to loaded_image_info
1673          */
1674         ret = efi_add_protocol(&obj->header,
1675                                &efi_guid_loaded_image, info);
1676         if (ret != EFI_SUCCESS)
1677                 goto failure;
1678
1679         *info_ptr = info;
1680         *handle_ptr = obj;
1681
1682         return ret;
1683 failure:
1684         printf("ERROR: Failure to install protocols for loaded image\n");
1685         efi_delete_handle(&obj->header);
1686         free(info);
1687         return ret;
1688 }
1689
1690 /**
1691  * efi_load_image_from_path() - load an image using a file path
1692  *
1693  * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1694  * callers obligation to update the memory type as needed.
1695  *
1696  * @file_path:  the path of the image to load
1697  * @buffer:     buffer containing the loaded image
1698  * @size:       size of the loaded image
1699  * Return:      status code
1700  */
1701 static
1702 efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
1703                                       void **buffer, efi_uintn_t *size)
1704 {
1705         struct efi_file_info *info = NULL;
1706         struct efi_file_handle *f;
1707         static efi_status_t ret;
1708         u64 addr;
1709         efi_uintn_t bs;
1710
1711         /* In case of failure nothing is returned */
1712         *buffer = NULL;
1713         *size = 0;
1714
1715         /* Open file */
1716         f = efi_file_from_path(file_path);
1717         if (!f)
1718                 return EFI_DEVICE_ERROR;
1719
1720         /* Get file size */
1721         bs = 0;
1722         EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1723                                   &bs, info));
1724         if (ret != EFI_BUFFER_TOO_SMALL) {
1725                 ret =  EFI_DEVICE_ERROR;
1726                 goto error;
1727         }
1728
1729         info = malloc(bs);
1730         EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1731                                   info));
1732         if (ret != EFI_SUCCESS)
1733                 goto error;
1734
1735         /*
1736          * When reading the file we do not yet know if it contains an
1737          * application, a boottime driver, or a runtime driver. So here we
1738          * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1739          * update the reservation according to the image type.
1740          */
1741         bs = info->file_size;
1742         ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1743                                  EFI_BOOT_SERVICES_DATA,
1744                                  efi_size_in_pages(bs), &addr);
1745         if (ret != EFI_SUCCESS) {
1746                 ret = EFI_OUT_OF_RESOURCES;
1747                 goto error;
1748         }
1749
1750         /* Read file */
1751         EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1752         if (ret != EFI_SUCCESS)
1753                 efi_free_pages(addr, efi_size_in_pages(bs));
1754         *buffer = (void *)(uintptr_t)addr;
1755         *size = bs;
1756 error:
1757         EFI_CALL(f->close(f));
1758         free(info);
1759         return ret;
1760 }
1761
1762 /**
1763  * efi_load_image() - load an EFI image into memory
1764  * @boot_policy:   true for request originating from the boot manager
1765  * @parent_image:  the caller's image handle
1766  * @file_path:     the path of the image to load
1767  * @source_buffer: memory location from which the image is installed
1768  * @source_size:   size of the memory area from which the image is installed
1769  * @image_handle:  handle for the newly installed image
1770  *
1771  * This function implements the LoadImage service.
1772  *
1773  * See the Unified Extensible Firmware Interface (UEFI) specification
1774  * for details.
1775  *
1776  * Return: status code
1777  */
1778 efi_status_t EFIAPI efi_load_image(bool boot_policy,
1779                                    efi_handle_t parent_image,
1780                                    struct efi_device_path *file_path,
1781                                    void *source_buffer,
1782                                    efi_uintn_t source_size,
1783                                    efi_handle_t *image_handle)
1784 {
1785         struct efi_device_path *dp, *fp;
1786         struct efi_loaded_image *info = NULL;
1787         struct efi_loaded_image_obj **image_obj =
1788                 (struct efi_loaded_image_obj **)image_handle;
1789         efi_status_t ret;
1790         void *dest_buffer;
1791
1792         EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
1793                   file_path, source_buffer, source_size, image_handle);
1794
1795         if (!image_handle || !efi_search_obj(parent_image)) {
1796                 ret = EFI_INVALID_PARAMETER;
1797                 goto error;
1798         }
1799
1800         if (!source_buffer && !file_path) {
1801                 ret = EFI_NOT_FOUND;
1802                 goto error;
1803         }
1804         /* The parent image handle must refer to a loaded image */
1805         if (!parent_image->type) {
1806                 ret = EFI_INVALID_PARAMETER;
1807                 goto error;
1808         }
1809
1810         if (!source_buffer) {
1811                 ret = efi_load_image_from_path(file_path, &dest_buffer,
1812                                                &source_size);
1813                 if (ret != EFI_SUCCESS)
1814                         goto error;
1815         } else {
1816                 if (!source_size) {
1817                         ret = EFI_LOAD_ERROR;
1818                         goto error;
1819                 }
1820                 dest_buffer = source_buffer;
1821         }
1822         /* split file_path which contains both the device and file parts */
1823         efi_dp_split_file_path(file_path, &dp, &fp);
1824         ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
1825         if (ret == EFI_SUCCESS)
1826                 ret = efi_load_pe(*image_obj, dest_buffer, info);
1827         if (!source_buffer)
1828                 /* Release buffer to which file was loaded */
1829                 efi_free_pages((uintptr_t)dest_buffer,
1830                                efi_size_in_pages(source_size));
1831         if (ret == EFI_SUCCESS) {
1832                 info->system_table = &systab;
1833                 info->parent_handle = parent_image;
1834         } else {
1835                 /* The image is invalid. Release all associated resources. */
1836                 efi_delete_handle(*image_handle);
1837                 *image_handle = NULL;
1838                 free(info);
1839         }
1840 error:
1841         return EFI_EXIT(ret);
1842 }
1843
1844 /**
1845  * efi_exit_caches() - fix up caches for EFI payloads if necessary
1846  */
1847 static void efi_exit_caches(void)
1848 {
1849 #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1850         /*
1851          * Grub on 32bit ARM needs to have caches disabled before jumping into
1852          * a zImage, but does not know of all cache layers. Give it a hand.
1853          */
1854         if (efi_is_direct_boot)
1855                 cleanup_before_linux();
1856 #endif
1857 }
1858
1859 /**
1860  * efi_exit_boot_services() - stop all boot services
1861  * @image_handle: handle of the loaded image
1862  * @map_key:      key of the memory map
1863  *
1864  * This function implements the ExitBootServices service.
1865  *
1866  * See the Unified Extensible Firmware Interface (UEFI) specification
1867  * for details.
1868  *
1869  * All timer events are disabled. For exit boot services events the
1870  * notification function is called. The boot services are disabled in the
1871  * system table.
1872  *
1873  * Return: status code
1874  */
1875 static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
1876                                                   efi_uintn_t map_key)
1877 {
1878         struct efi_event *evt;
1879
1880         EFI_ENTRY("%p, %zx", image_handle, map_key);
1881
1882         /* Check that the caller has read the current memory map */
1883         if (map_key != efi_memory_map_key)
1884                 return EFI_INVALID_PARAMETER;
1885
1886         /* Make sure that notification functions are not called anymore */
1887         efi_tpl = TPL_HIGH_LEVEL;
1888
1889         /* Check if ExitBootServices has already been called */
1890         if (!systab.boottime)
1891                 return EFI_EXIT(EFI_SUCCESS);
1892
1893         /* Add related events to the event group */
1894         list_for_each_entry(evt, &efi_events, link) {
1895                 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1896                         evt->group = &efi_guid_event_group_exit_boot_services;
1897         }
1898         /* Notify that ExitBootServices is invoked. */
1899         list_for_each_entry(evt, &efi_events, link) {
1900                 if (evt->group &&
1901                     !guidcmp(evt->group,
1902                              &efi_guid_event_group_exit_boot_services)) {
1903                         efi_signal_event(evt, false);
1904                         break;
1905                 }
1906         }
1907
1908         /* TODO: Should persist EFI variables here */
1909
1910         board_quiesce_devices();
1911
1912         /* Fix up caches for EFI payloads if necessary */
1913         efi_exit_caches();
1914
1915         /* This stops all lingering devices */
1916         bootm_disable_interrupts();
1917
1918         /* Disable boot time services */
1919         systab.con_in_handle = NULL;
1920         systab.con_in = NULL;
1921         systab.con_out_handle = NULL;
1922         systab.con_out = NULL;
1923         systab.stderr_handle = NULL;
1924         systab.std_err = NULL;
1925         systab.boottime = NULL;
1926
1927         /* Recalculate CRC32 */
1928         efi_update_table_header_crc32(&systab.hdr);
1929
1930         /* Give the payload some time to boot */
1931         efi_set_watchdog(0);
1932         WATCHDOG_RESET();
1933
1934         return EFI_EXIT(EFI_SUCCESS);
1935 }
1936
1937 /**
1938  * efi_get_next_monotonic_count() - get next value of the counter
1939  * @count: returned value of the counter
1940  *
1941  * This function implements the NextMonotonicCount 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_get_next_monotonic_count(uint64_t *count)
1949 {
1950         static uint64_t mono;
1951         efi_status_t ret;
1952
1953         EFI_ENTRY("%p", count);
1954         if (!count) {
1955                 ret = EFI_INVALID_PARAMETER;
1956                 goto out;
1957         }
1958         *count = mono++;
1959         ret = EFI_SUCCESS;
1960 out:
1961         return EFI_EXIT(ret);
1962 }
1963
1964 /**
1965  * efi_stall() - sleep
1966  * @microseconds: period to sleep in microseconds
1967  *
1968  * This function implements the Stall 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_stall(unsigned long microseconds)
1976 {
1977         EFI_ENTRY("%ld", microseconds);
1978         udelay(microseconds);
1979         return EFI_EXIT(EFI_SUCCESS);
1980 }
1981
1982 /**
1983  * efi_set_watchdog_timer() - reset the watchdog timer
1984  * @timeout:       seconds before reset by watchdog
1985  * @watchdog_code: code to be logged when resetting
1986  * @data_size:     size of buffer in bytes
1987  * @watchdog_data: buffer with data describing the reset reason
1988  *
1989  * This function implements the SetWatchdogTimer service.
1990  *
1991  * See the Unified Extensible Firmware Interface (UEFI) specification for
1992  * details.
1993  *
1994  * Return: status code
1995  */
1996 static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
1997                                                   uint64_t watchdog_code,
1998                                                   unsigned long data_size,
1999                                                   uint16_t *watchdog_data)
2000 {
2001         EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
2002                   data_size, watchdog_data);
2003         return EFI_EXIT(efi_set_watchdog(timeout));
2004 }
2005
2006 /**
2007  * efi_close_protocol() - close a protocol
2008  * @handle:            handle on which the protocol shall be closed
2009  * @protocol:          GUID of the protocol to close
2010  * @agent_handle:      handle of the driver
2011  * @controller_handle: handle of the controller
2012  *
2013  * This function implements the CloseProtocol service.
2014  *
2015  * See the Unified Extensible Firmware Interface (UEFI) specification for
2016  * details.
2017  *
2018  * Return: status code
2019  */
2020 static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
2021                                               const efi_guid_t *protocol,
2022                                               efi_handle_t agent_handle,
2023                                               efi_handle_t controller_handle)
2024 {
2025         struct efi_handler *handler;
2026         struct efi_open_protocol_info_item *item;
2027         struct efi_open_protocol_info_item *pos;
2028         efi_status_t r;
2029
2030         EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
2031                   controller_handle);
2032
2033         if (!efi_search_obj(agent_handle) ||
2034             (controller_handle && !efi_search_obj(controller_handle))) {
2035                 r = EFI_INVALID_PARAMETER;
2036                 goto out;
2037         }
2038         r = efi_search_protocol(handle, protocol, &handler);
2039         if (r != EFI_SUCCESS)
2040                 goto out;
2041
2042         r = EFI_NOT_FOUND;
2043         list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2044                 if (item->info.agent_handle == agent_handle &&
2045                     item->info.controller_handle == controller_handle) {
2046                         efi_delete_open_info(item);
2047                         r = EFI_SUCCESS;
2048                         break;
2049                 }
2050         }
2051 out:
2052         return EFI_EXIT(r);
2053 }
2054
2055 /**
2056  * efi_open_protocol_information() - provide information about then open status
2057  *                                   of a protocol on a handle
2058  * @handle:       handle for which the information shall be retrieved
2059  * @protocol:     GUID of the protocol
2060  * @entry_buffer: buffer to receive the open protocol information
2061  * @entry_count:  number of entries available in the buffer
2062  *
2063  * This function implements the OpenProtocolInformation service.
2064  *
2065  * See the Unified Extensible Firmware Interface (UEFI) specification for
2066  * details.
2067  *
2068  * Return: status code
2069  */
2070 static efi_status_t EFIAPI efi_open_protocol_information(
2071                         efi_handle_t handle, const efi_guid_t *protocol,
2072                         struct efi_open_protocol_info_entry **entry_buffer,
2073                         efi_uintn_t *entry_count)
2074 {
2075         unsigned long buffer_size;
2076         unsigned long count;
2077         struct efi_handler *handler;
2078         struct efi_open_protocol_info_item *item;
2079         efi_status_t r;
2080
2081         EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
2082                   entry_count);
2083
2084         /* Check parameters */
2085         if (!entry_buffer) {
2086                 r = EFI_INVALID_PARAMETER;
2087                 goto out;
2088         }
2089         r = efi_search_protocol(handle, protocol, &handler);
2090         if (r != EFI_SUCCESS)
2091                 goto out;
2092
2093         /* Count entries */
2094         count = 0;
2095         list_for_each_entry(item, &handler->open_infos, link) {
2096                 if (item->info.open_count)
2097                         ++count;
2098         }
2099         *entry_count = count;
2100         *entry_buffer = NULL;
2101         if (!count) {
2102                 r = EFI_SUCCESS;
2103                 goto out;
2104         }
2105
2106         /* Copy entries */
2107         buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
2108         r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2109                               (void **)entry_buffer);
2110         if (r != EFI_SUCCESS)
2111                 goto out;
2112         list_for_each_entry_reverse(item, &handler->open_infos, link) {
2113                 if (item->info.open_count)
2114                         (*entry_buffer)[--count] = item->info;
2115         }
2116 out:
2117         return EFI_EXIT(r);
2118 }
2119
2120 /**
2121  * efi_protocols_per_handle() - get protocols installed on a handle
2122  * @handle:                handle for which the information is retrieved
2123  * @protocol_buffer:       buffer with protocol GUIDs
2124  * @protocol_buffer_count: number of entries in the buffer
2125  *
2126  * This function implements the ProtocolsPerHandleService.
2127  *
2128  * See the Unified Extensible Firmware Interface (UEFI) specification for
2129  * details.
2130  *
2131  * Return: status code
2132  */
2133 static efi_status_t EFIAPI efi_protocols_per_handle(
2134                         efi_handle_t handle, efi_guid_t ***protocol_buffer,
2135                         efi_uintn_t *protocol_buffer_count)
2136 {
2137         unsigned long buffer_size;
2138         struct efi_object *efiobj;
2139         struct list_head *protocol_handle;
2140         efi_status_t r;
2141
2142         EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2143                   protocol_buffer_count);
2144
2145         if (!handle || !protocol_buffer || !protocol_buffer_count)
2146                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2147
2148         *protocol_buffer = NULL;
2149         *protocol_buffer_count = 0;
2150
2151         efiobj = efi_search_obj(handle);
2152         if (!efiobj)
2153                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2154
2155         /* Count protocols */
2156         list_for_each(protocol_handle, &efiobj->protocols) {
2157                 ++*protocol_buffer_count;
2158         }
2159
2160         /* Copy GUIDs */
2161         if (*protocol_buffer_count) {
2162                 size_t j = 0;
2163
2164                 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
2165                 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2166                                       (void **)protocol_buffer);
2167                 if (r != EFI_SUCCESS)
2168                         return EFI_EXIT(r);
2169                 list_for_each(protocol_handle, &efiobj->protocols) {
2170                         struct efi_handler *protocol;
2171
2172                         protocol = list_entry(protocol_handle,
2173                                               struct efi_handler, link);
2174                         (*protocol_buffer)[j] = (void *)protocol->guid;
2175                         ++j;
2176                 }
2177         }
2178
2179         return EFI_EXIT(EFI_SUCCESS);
2180 }
2181
2182 /**
2183  * efi_locate_handle_buffer() - locate handles implementing a protocol
2184  * @search_type: selection criterion
2185  * @protocol:    GUID of the protocol
2186  * @search_key:  registration key
2187  * @no_handles:  number of returned handles
2188  * @buffer:      buffer with the returned handles
2189  *
2190  * This function implements the LocateHandleBuffer service.
2191  *
2192  * See the Unified Extensible Firmware Interface (UEFI) specification for
2193  * details.
2194  *
2195  * Return: status code
2196  */
2197 static efi_status_t EFIAPI efi_locate_handle_buffer(
2198                         enum efi_locate_search_type search_type,
2199                         const efi_guid_t *protocol, void *search_key,
2200                         efi_uintn_t *no_handles, efi_handle_t **buffer)
2201 {
2202         efi_status_t r;
2203         efi_uintn_t buffer_size = 0;
2204
2205         EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
2206                   no_handles, buffer);
2207
2208         if (!no_handles || !buffer) {
2209                 r = EFI_INVALID_PARAMETER;
2210                 goto out;
2211         }
2212         *no_handles = 0;
2213         *buffer = NULL;
2214         r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2215                               *buffer);
2216         if (r != EFI_BUFFER_TOO_SMALL)
2217                 goto out;
2218         r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2219                               (void **)buffer);
2220         if (r != EFI_SUCCESS)
2221                 goto out;
2222         r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2223                               *buffer);
2224         if (r == EFI_SUCCESS)
2225                 *no_handles = buffer_size / sizeof(efi_handle_t);
2226 out:
2227         return EFI_EXIT(r);
2228 }
2229
2230 /**
2231  * efi_locate_protocol() - find an interface implementing a protocol
2232  * @protocol:           GUID of the protocol
2233  * @registration:       registration key passed to the notification function
2234  * @protocol_interface: interface implementing the protocol
2235  *
2236  * This function implements the LocateProtocol service.
2237  *
2238  * See the Unified Extensible Firmware Interface (UEFI) specification for
2239  * details.
2240  *
2241  * Return: status code
2242  */
2243 static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
2244                                                void *registration,
2245                                                void **protocol_interface)
2246 {
2247         struct list_head *lhandle;
2248         efi_status_t ret;
2249
2250         EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
2251
2252         if (!protocol || !protocol_interface)
2253                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2254
2255         list_for_each(lhandle, &efi_obj_list) {
2256                 struct efi_object *efiobj;
2257                 struct efi_handler *handler;
2258
2259                 efiobj = list_entry(lhandle, struct efi_object, link);
2260
2261                 ret = efi_search_protocol(efiobj, protocol, &handler);
2262                 if (ret == EFI_SUCCESS) {
2263                         *protocol_interface = handler->protocol_interface;
2264                         return EFI_EXIT(EFI_SUCCESS);
2265                 }
2266         }
2267         *protocol_interface = NULL;
2268
2269         return EFI_EXIT(EFI_NOT_FOUND);
2270 }
2271
2272 /**
2273  * efi_locate_device_path() - Get the device path and handle of an device
2274  *                            implementing a protocol
2275  * @protocol:    GUID of the protocol
2276  * @device_path: device path
2277  * @device:      handle of the device
2278  *
2279  * This function implements the LocateDevicePath service.
2280  *
2281  * See the Unified Extensible Firmware Interface (UEFI) specification for
2282  * details.
2283  *
2284  * Return: status code
2285  */
2286 static efi_status_t EFIAPI efi_locate_device_path(
2287                         const efi_guid_t *protocol,
2288                         struct efi_device_path **device_path,
2289                         efi_handle_t *device)
2290 {
2291         struct efi_device_path *dp;
2292         size_t i;
2293         struct efi_handler *handler;
2294         efi_handle_t *handles;
2295         size_t len, len_dp;
2296         size_t len_best = 0;
2297         efi_uintn_t no_handles;
2298         u8 *remainder;
2299         efi_status_t ret;
2300
2301         EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2302
2303         if (!protocol || !device_path || !*device_path) {
2304                 ret = EFI_INVALID_PARAMETER;
2305                 goto out;
2306         }
2307
2308         /* Find end of device path */
2309         len = efi_dp_instance_size(*device_path);
2310
2311         /* Get all handles implementing the protocol */
2312         ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2313                                                 &no_handles, &handles));
2314         if (ret != EFI_SUCCESS)
2315                 goto out;
2316
2317         for (i = 0; i < no_handles; ++i) {
2318                 /* Find the device path protocol */
2319                 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2320                                           &handler);
2321                 if (ret != EFI_SUCCESS)
2322                         continue;
2323                 dp = (struct efi_device_path *)handler->protocol_interface;
2324                 len_dp = efi_dp_instance_size(dp);
2325                 /*
2326                  * This handle can only be a better fit
2327                  * if its device path length is longer than the best fit and
2328                  * if its device path length is shorter of equal the searched
2329                  * device path.
2330                  */
2331                 if (len_dp <= len_best || len_dp > len)
2332                         continue;
2333                 /* Check if dp is a subpath of device_path */
2334                 if (memcmp(*device_path, dp, len_dp))
2335                         continue;
2336                 if (!device) {
2337                         ret = EFI_INVALID_PARAMETER;
2338                         goto out;
2339                 }
2340                 *device = handles[i];
2341                 len_best = len_dp;
2342         }
2343         if (len_best) {
2344                 remainder = (u8 *)*device_path + len_best;
2345                 *device_path = (struct efi_device_path *)remainder;
2346                 ret = EFI_SUCCESS;
2347         } else {
2348                 ret = EFI_NOT_FOUND;
2349         }
2350 out:
2351         return EFI_EXIT(ret);
2352 }
2353
2354 /**
2355  * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2356  *                                              interfaces
2357  * @handle: handle on which the protocol interfaces shall be installed
2358  * @...:    NULL terminated argument list with pairs of protocol GUIDS and
2359  *          interfaces
2360  *
2361  * This function implements the MultipleProtocolInterfaces service.
2362  *
2363  * See the Unified Extensible Firmware Interface (UEFI) specification for
2364  * details.
2365  *
2366  * Return: status code
2367  */
2368 efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
2369                                 (efi_handle_t *handle, ...)
2370 {
2371         EFI_ENTRY("%p", handle);
2372
2373         efi_va_list argptr;
2374         const efi_guid_t *protocol;
2375         void *protocol_interface;
2376         efi_handle_t old_handle;
2377         efi_status_t r = EFI_SUCCESS;
2378         int i = 0;
2379
2380         if (!handle)
2381                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2382
2383         efi_va_start(argptr, handle);
2384         for (;;) {
2385                 protocol = efi_va_arg(argptr, efi_guid_t*);
2386                 if (!protocol)
2387                         break;
2388                 protocol_interface = efi_va_arg(argptr, void*);
2389                 /* Check that a device path has not been installed before */
2390                 if (!guidcmp(protocol, &efi_guid_device_path)) {
2391                         struct efi_device_path *dp = protocol_interface;
2392
2393                         r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2394                                                             &old_handle));
2395                         if (r == EFI_SUCCESS &&
2396                             dp->type == DEVICE_PATH_TYPE_END) {
2397                                 EFI_PRINT("Path %pD already installed\n",
2398                                           protocol_interface);
2399                                 r = EFI_ALREADY_STARTED;
2400                                 break;
2401                         }
2402                 }
2403                 r = EFI_CALL(efi_install_protocol_interface(
2404                                                 handle, protocol,
2405                                                 EFI_NATIVE_INTERFACE,
2406                                                 protocol_interface));
2407                 if (r != EFI_SUCCESS)
2408                         break;
2409                 i++;
2410         }
2411         efi_va_end(argptr);
2412         if (r == EFI_SUCCESS)
2413                 return EFI_EXIT(r);
2414
2415         /* If an error occurred undo all changes. */
2416         efi_va_start(argptr, handle);
2417         for (; i; --i) {
2418                 protocol = efi_va_arg(argptr, efi_guid_t*);
2419                 protocol_interface = efi_va_arg(argptr, void*);
2420                 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
2421                                                           protocol_interface));
2422         }
2423         efi_va_end(argptr);
2424
2425         return EFI_EXIT(r);
2426 }
2427
2428 /**
2429  * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2430  *                                                interfaces
2431  * @handle: handle from which the protocol interfaces shall be removed
2432  * @...:    NULL terminated argument list with pairs of protocol GUIDS and
2433  *          interfaces
2434  *
2435  * This function implements the UninstallMultipleProtocolInterfaces service.
2436  *
2437  * See the Unified Extensible Firmware Interface (UEFI) specification for
2438  * details.
2439  *
2440  * Return: status code
2441  */
2442 static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
2443                         efi_handle_t handle, ...)
2444 {
2445         EFI_ENTRY("%p", handle);
2446
2447         efi_va_list argptr;
2448         const efi_guid_t *protocol;
2449         void *protocol_interface;
2450         efi_status_t r = EFI_SUCCESS;
2451         size_t i = 0;
2452
2453         if (!handle)
2454                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2455
2456         efi_va_start(argptr, handle);
2457         for (;;) {
2458                 protocol = efi_va_arg(argptr, efi_guid_t*);
2459                 if (!protocol)
2460                         break;
2461                 protocol_interface = efi_va_arg(argptr, void*);
2462                 r = efi_uninstall_protocol(handle, protocol,
2463                                            protocol_interface);
2464                 if (r != EFI_SUCCESS)
2465                         break;
2466                 i++;
2467         }
2468         efi_va_end(argptr);
2469         if (r == EFI_SUCCESS) {
2470                 /* If the last protocol has been removed, delete the handle. */
2471                 if (list_empty(&handle->protocols)) {
2472                         list_del(&handle->link);
2473                         free(handle);
2474                 }
2475                 return EFI_EXIT(r);
2476         }
2477
2478         /* If an error occurred undo all changes. */
2479         efi_va_start(argptr, handle);
2480         for (; i; --i) {
2481                 protocol = efi_va_arg(argptr, efi_guid_t*);
2482                 protocol_interface = efi_va_arg(argptr, void*);
2483                 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2484                                                         EFI_NATIVE_INTERFACE,
2485                                                         protocol_interface));
2486         }
2487         efi_va_end(argptr);
2488
2489         /* In case of an error always return EFI_INVALID_PARAMETER */
2490         return EFI_EXIT(EFI_INVALID_PARAMETER);
2491 }
2492
2493 /**
2494  * efi_calculate_crc32() - calculate cyclic redundancy code
2495  * @data:      buffer with data
2496  * @data_size: size of buffer in bytes
2497  * @crc32_p:   cyclic redundancy code
2498  *
2499  * This function implements the CalculateCrc32 service.
2500  *
2501  * See the Unified Extensible Firmware Interface (UEFI) specification for
2502  * details.
2503  *
2504  * Return: status code
2505  */
2506 static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2507                                                efi_uintn_t data_size,
2508                                                u32 *crc32_p)
2509 {
2510         efi_status_t ret = EFI_SUCCESS;
2511
2512         EFI_ENTRY("%p, %zu", data, data_size);
2513         if (!data || !data_size || !crc32_p) {
2514                 ret = EFI_INVALID_PARAMETER;
2515                 goto out;
2516         }
2517         *crc32_p = crc32(0, data, data_size);
2518 out:
2519         return EFI_EXIT(ret);
2520 }
2521
2522 /**
2523  * efi_copy_mem() - copy memory
2524  * @destination: destination of the copy operation
2525  * @source:      source of the copy operation
2526  * @length:      number of bytes to copy
2527  *
2528  * This function implements the CopyMem service.
2529  *
2530  * See the Unified Extensible Firmware Interface (UEFI) specification for
2531  * details.
2532  */
2533 static void EFIAPI efi_copy_mem(void *destination, const void *source,
2534                                 size_t length)
2535 {
2536         EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
2537         memmove(destination, source, length);
2538         EFI_EXIT(EFI_SUCCESS);
2539 }
2540
2541 /**
2542  * efi_set_mem() - Fill memory with a byte value.
2543  * @buffer: buffer to fill
2544  * @size:   size of buffer in bytes
2545  * @value:  byte to copy to the buffer
2546  *
2547  * This function implements the SetMem service.
2548  *
2549  * See the Unified Extensible Firmware Interface (UEFI) specification for
2550  * details.
2551  */
2552 static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
2553 {
2554         EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
2555         memset(buffer, value, size);
2556         EFI_EXIT(EFI_SUCCESS);
2557 }
2558
2559 /**
2560  * efi_protocol_open() - open protocol interface on a handle
2561  * @handler:            handler of a protocol
2562  * @protocol_interface: interface implementing the protocol
2563  * @agent_handle:       handle of the driver
2564  * @controller_handle:  handle of the controller
2565  * @attributes:         attributes indicating how to open the protocol
2566  *
2567  * Return: status code
2568  */
2569 static efi_status_t efi_protocol_open(
2570                         struct efi_handler *handler,
2571                         void **protocol_interface, void *agent_handle,
2572                         void *controller_handle, uint32_t attributes)
2573 {
2574         struct efi_open_protocol_info_item *item;
2575         struct efi_open_protocol_info_entry *match = NULL;
2576         bool opened_by_driver = false;
2577         bool opened_exclusive = false;
2578
2579         /* If there is no agent, only return the interface */
2580         if (!agent_handle)
2581                 goto out;
2582
2583         /* For TEST_PROTOCOL ignore interface attribute */
2584         if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2585                 *protocol_interface = NULL;
2586
2587         /*
2588          * Check if the protocol is already opened by a driver with the same
2589          * attributes or opened exclusively
2590          */
2591         list_for_each_entry(item, &handler->open_infos, link) {
2592                 if (item->info.agent_handle == agent_handle) {
2593                         if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2594                             (item->info.attributes == attributes))
2595                                 return EFI_ALREADY_STARTED;
2596                 }
2597                 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2598                         opened_exclusive = true;
2599         }
2600
2601         /* Only one controller can open the protocol exclusively */
2602         if (opened_exclusive && attributes &
2603             (EFI_OPEN_PROTOCOL_EXCLUSIVE | EFI_OPEN_PROTOCOL_BY_DRIVER))
2604                 return EFI_ACCESS_DENIED;
2605
2606         /* Prepare exclusive opening */
2607         if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2608                 /* Try to disconnect controllers */
2609                 list_for_each_entry(item, &handler->open_infos, link) {
2610                         if (item->info.attributes ==
2611                                         EFI_OPEN_PROTOCOL_BY_DRIVER)
2612                                 EFI_CALL(efi_disconnect_controller(
2613                                                 item->info.controller_handle,
2614                                                 item->info.agent_handle,
2615                                                 NULL));
2616                 }
2617                 opened_by_driver = false;
2618                 /* Check if all controllers are disconnected */
2619                 list_for_each_entry(item, &handler->open_infos, link) {
2620                         if (item->info.attributes & EFI_OPEN_PROTOCOL_BY_DRIVER)
2621                                 opened_by_driver = true;
2622                 }
2623                 /* Only one controller can be connected */
2624                 if (opened_by_driver)
2625                         return EFI_ACCESS_DENIED;
2626         }
2627
2628         /* Find existing entry */
2629         list_for_each_entry(item, &handler->open_infos, link) {
2630                 if (item->info.agent_handle == agent_handle &&
2631                     item->info.controller_handle == controller_handle)
2632                         match = &item->info;
2633         }
2634         /* None found, create one */
2635         if (!match) {
2636                 match = efi_create_open_info(handler);
2637                 if (!match)
2638                         return EFI_OUT_OF_RESOURCES;
2639         }
2640
2641         match->agent_handle = agent_handle;
2642         match->controller_handle = controller_handle;
2643         match->attributes = attributes;
2644         match->open_count++;
2645
2646 out:
2647         /* For TEST_PROTOCOL ignore interface attribute. */
2648         if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2649                 *protocol_interface = handler->protocol_interface;
2650
2651         return EFI_SUCCESS;
2652 }
2653
2654 /**
2655  * efi_open_protocol() - open protocol interface on a handle
2656  * @handle:             handle on which the protocol shall be opened
2657  * @protocol:           GUID of the protocol
2658  * @protocol_interface: interface implementing the protocol
2659  * @agent_handle:       handle of the driver
2660  * @controller_handle:  handle of the controller
2661  * @attributes:         attributes indicating how to open the protocol
2662  *
2663  * This function implements the OpenProtocol interface.
2664  *
2665  * See the Unified Extensible Firmware Interface (UEFI) specification for
2666  * details.
2667  *
2668  * Return: status code
2669  */
2670 static efi_status_t EFIAPI efi_open_protocol
2671                         (efi_handle_t handle, const efi_guid_t *protocol,
2672                          void **protocol_interface, efi_handle_t agent_handle,
2673                          efi_handle_t controller_handle, uint32_t attributes)
2674 {
2675         struct efi_handler *handler;
2676         efi_status_t r = EFI_INVALID_PARAMETER;
2677
2678         EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
2679                   protocol_interface, agent_handle, controller_handle,
2680                   attributes);
2681
2682         if (!handle || !protocol ||
2683             (!protocol_interface && attributes !=
2684              EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2685                 goto out;
2686         }
2687
2688         switch (attributes) {
2689         case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2690         case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2691         case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2692                 break;
2693         case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2694                 if (controller_handle == handle)
2695                         goto out;
2696                 /* fall-through */
2697         case EFI_OPEN_PROTOCOL_BY_DRIVER:
2698         case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
2699                 /* Check that the controller handle is valid */
2700                 if (!efi_search_obj(controller_handle))
2701                         goto out;
2702                 /* fall-through */
2703         case EFI_OPEN_PROTOCOL_EXCLUSIVE:
2704                 /* Check that the agent handle is valid */
2705                 if (!efi_search_obj(agent_handle))
2706                         goto out;
2707                 break;
2708         default:
2709                 goto out;
2710         }
2711
2712         r = efi_search_protocol(handle, protocol, &handler);
2713         switch (r) {
2714         case EFI_SUCCESS:
2715                 break;
2716         case EFI_NOT_FOUND:
2717                 r = EFI_UNSUPPORTED;
2718                 goto out;
2719         default:
2720                 goto out;
2721         }
2722
2723         r = efi_protocol_open(handler, protocol_interface, agent_handle,
2724                               controller_handle, attributes);
2725 out:
2726         return EFI_EXIT(r);
2727 }
2728
2729 /**
2730  * efi_start_image() - call the entry point of an image
2731  * @image_handle:   handle of the image
2732  * @exit_data_size: size of the buffer
2733  * @exit_data:      buffer to receive the exit data of the called image
2734  *
2735  * This function implements the StartImage service.
2736  *
2737  * See the Unified Extensible Firmware Interface (UEFI) specification for
2738  * details.
2739  *
2740  * Return: status code
2741  */
2742 efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2743                                     efi_uintn_t *exit_data_size,
2744                                     u16 **exit_data)
2745 {
2746         struct efi_loaded_image_obj *image_obj =
2747                 (struct efi_loaded_image_obj *)image_handle;
2748         efi_status_t ret;
2749         void *info;
2750         efi_handle_t parent_image = current_image;
2751
2752         EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2753
2754         /* Check parameters */
2755         ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2756                                          &info, NULL, NULL,
2757                                          EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2758         if (ret != EFI_SUCCESS)
2759                 return EFI_EXIT(EFI_INVALID_PARAMETER);
2760
2761         efi_is_direct_boot = false;
2762
2763         image_obj->exit_data_size = exit_data_size;
2764         image_obj->exit_data = exit_data;
2765
2766         /* call the image! */
2767         if (setjmp(&image_obj->exit_jmp)) {
2768                 /*
2769                  * We called the entry point of the child image with EFI_CALL
2770                  * in the lines below. The child image called the Exit() boot
2771                  * service efi_exit() which executed the long jump that brought
2772                  * us to the current line. This implies that the second half
2773                  * of the EFI_CALL macro has not been executed.
2774                  */
2775 #ifdef CONFIG_ARM
2776                 /*
2777                  * efi_exit() called efi_restore_gd(). We have to undo this
2778                  * otherwise __efi_entry_check() will put the wrong value into
2779                  * app_gd.
2780                  */
2781                 gd = app_gd;
2782 #endif
2783                 /*
2784                  * To get ready to call EFI_EXIT below we have to execute the
2785                  * missed out steps of EFI_CALL.
2786                  */
2787                 assert(__efi_entry_check());
2788                 EFI_PRINT("%lu returned by started image\n",
2789                           (unsigned long)((uintptr_t)image_obj->exit_status &
2790                           ~EFI_ERROR_MASK));
2791                 current_image = parent_image;
2792                 return EFI_EXIT(image_obj->exit_status);
2793         }
2794
2795         current_image = image_handle;
2796         image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
2797         EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
2798         ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2799
2800         /*
2801          * Usually UEFI applications call Exit() instead of returning.
2802          * But because the world doesn't consist of ponies and unicorns,
2803          * we're happy to emulate that behavior on behalf of a payload
2804          * that forgot.
2805          */
2806         return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2807 }
2808
2809 /**
2810  * efi_delete_image() - delete loaded image from memory)
2811  *
2812  * @image_obj:                  handle of the loaded image
2813  * @loaded_image_protocol:      loaded image protocol
2814  */
2815 static void efi_delete_image(struct efi_loaded_image_obj *image_obj,
2816                              struct efi_loaded_image *loaded_image_protocol)
2817 {
2818         efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2819                        efi_size_in_pages(loaded_image_protocol->image_size));
2820         efi_delete_handle(&image_obj->header);
2821 }
2822
2823 /**
2824  * efi_unload_image() - unload an EFI image
2825  * @image_handle: handle of the image to be unloaded
2826  *
2827  * This function implements the UnloadImage service.
2828  *
2829  * See the Unified Extensible Firmware Interface (UEFI) specification for
2830  * details.
2831  *
2832  * Return: status code
2833  */
2834 efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
2835 {
2836         efi_status_t ret = EFI_SUCCESS;
2837         struct efi_object *efiobj;
2838         struct efi_loaded_image *loaded_image_protocol;
2839
2840         EFI_ENTRY("%p", image_handle);
2841
2842         efiobj = efi_search_obj(image_handle);
2843         if (!efiobj) {
2844                 ret = EFI_INVALID_PARAMETER;
2845                 goto out;
2846         }
2847         /* Find the loaded image protocol */
2848         ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2849                                          (void **)&loaded_image_protocol,
2850                                          NULL, NULL,
2851                                          EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2852         if (ret != EFI_SUCCESS) {
2853                 ret = EFI_INVALID_PARAMETER;
2854                 goto out;
2855         }
2856         switch (efiobj->type) {
2857         case EFI_OBJECT_TYPE_STARTED_IMAGE:
2858                 /* Call the unload function */
2859                 if (!loaded_image_protocol->unload) {
2860                         ret = EFI_UNSUPPORTED;
2861                         goto out;
2862                 }
2863                 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
2864                 if (ret != EFI_SUCCESS)
2865                         goto out;
2866                 break;
2867         case EFI_OBJECT_TYPE_LOADED_IMAGE:
2868                 break;
2869         default:
2870                 ret = EFI_INVALID_PARAMETER;
2871                 goto out;
2872         }
2873         efi_delete_image((struct efi_loaded_image_obj *)efiobj,
2874                          loaded_image_protocol);
2875 out:
2876         return EFI_EXIT(ret);
2877 }
2878
2879 /**
2880  * efi_update_exit_data() - fill exit data parameters of StartImage()
2881  *
2882  * @image_obj           image handle
2883  * @exit_data_size      size of the exit data buffer
2884  * @exit_data           buffer with data returned by UEFI payload
2885  * Return:              status code
2886  */
2887 static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
2888                                          efi_uintn_t exit_data_size,
2889                                          u16 *exit_data)
2890 {
2891         efi_status_t ret;
2892
2893         /*
2894          * If exit_data is not provided to StartImage(), exit_data_size must be
2895          * ignored.
2896          */
2897         if (!image_obj->exit_data)
2898                 return EFI_SUCCESS;
2899         if (image_obj->exit_data_size)
2900                 *image_obj->exit_data_size = exit_data_size;
2901         if (exit_data_size && exit_data) {
2902                 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
2903                                         exit_data_size,
2904                                         (void **)image_obj->exit_data);
2905                 if (ret != EFI_SUCCESS)
2906                         return ret;
2907                 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
2908         } else {
2909                 image_obj->exit_data = NULL;
2910         }
2911         return EFI_SUCCESS;
2912 }
2913
2914 /**
2915  * efi_exit() - leave an EFI application or driver
2916  * @image_handle:   handle of the application or driver that is exiting
2917  * @exit_status:    status code
2918  * @exit_data_size: size of the buffer in bytes
2919  * @exit_data:      buffer with data describing an error
2920  *
2921  * This function implements the Exit service.
2922  *
2923  * See the Unified Extensible Firmware Interface (UEFI) specification for
2924  * details.
2925  *
2926  * Return: status code
2927  */
2928 static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
2929                                     efi_status_t exit_status,
2930                                     efi_uintn_t exit_data_size,
2931                                     u16 *exit_data)
2932 {
2933         /*
2934          * TODO: We should call the unload procedure of the loaded
2935          *       image protocol.
2936          */
2937         efi_status_t ret;
2938         struct efi_loaded_image *loaded_image_protocol;
2939         struct efi_loaded_image_obj *image_obj =
2940                 (struct efi_loaded_image_obj *)image_handle;
2941
2942         EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
2943                   exit_data_size, exit_data);
2944
2945         /* Check parameters */
2946         ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2947                                          (void **)&loaded_image_protocol,
2948                                          NULL, NULL,
2949                                          EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2950         if (ret != EFI_SUCCESS) {
2951                 ret = EFI_INVALID_PARAMETER;
2952                 goto out;
2953         }
2954
2955         /* Unloading of unstarted images */
2956         switch (image_obj->header.type) {
2957         case EFI_OBJECT_TYPE_STARTED_IMAGE:
2958                 break;
2959         case EFI_OBJECT_TYPE_LOADED_IMAGE:
2960                 efi_delete_image(image_obj, loaded_image_protocol);
2961                 ret = EFI_SUCCESS;
2962                 goto out;
2963         default:
2964                 /* Handle does not refer to loaded image */
2965                 ret = EFI_INVALID_PARAMETER;
2966                 goto out;
2967         }
2968         /* A started image can only be unloaded it is the last one started. */
2969         if (image_handle != current_image) {
2970                 ret = EFI_INVALID_PARAMETER;
2971                 goto out;
2972         }
2973
2974         /* Exit data is only foreseen in case of failure. */
2975         if (exit_status != EFI_SUCCESS) {
2976                 ret = efi_update_exit_data(image_obj, exit_data_size,
2977                                            exit_data);
2978                 /* Exiting has priority. Don't return error to caller. */
2979                 if (ret != EFI_SUCCESS)
2980                         EFI_PRINT("%s: out of memory\n", __func__);
2981         }
2982         if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
2983             exit_status != EFI_SUCCESS)
2984                 efi_delete_image(image_obj, loaded_image_protocol);
2985
2986         /* Make sure entry/exit counts for EFI world cross-overs match */
2987         EFI_EXIT(exit_status);
2988
2989         /*
2990          * But longjmp out with the U-Boot gd, not the application's, as
2991          * the other end is a setjmp call inside EFI context.
2992          */
2993         efi_restore_gd();
2994
2995         image_obj->exit_status = exit_status;
2996         longjmp(&image_obj->exit_jmp, 1);
2997
2998         panic("EFI application exited");
2999 out:
3000         return EFI_EXIT(ret);
3001 }
3002
3003 /**
3004  * efi_handle_protocol() - get interface of a protocol on a handle
3005  * @handle:             handle on which the protocol shall be opened
3006  * @protocol:           GUID of the protocol
3007  * @protocol_interface: interface implementing the protocol
3008  *
3009  * This function implements the HandleProtocol service.
3010  *
3011  * See the Unified Extensible Firmware Interface (UEFI) specification for
3012  * details.
3013  *
3014  * Return: status code
3015  */
3016 static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3017                                                const efi_guid_t *protocol,
3018                                                void **protocol_interface)
3019 {
3020         return efi_open_protocol(handle, protocol, protocol_interface, NULL,
3021                                  NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
3022 }
3023
3024 /**
3025  * efi_bind_controller() - bind a single driver to a controller
3026  * @controller_handle:   controller handle
3027  * @driver_image_handle: driver handle
3028  * @remain_device_path:  remaining path
3029  *
3030  * Return: status code
3031  */
3032 static efi_status_t efi_bind_controller(
3033                         efi_handle_t controller_handle,
3034                         efi_handle_t driver_image_handle,
3035                         struct efi_device_path *remain_device_path)
3036 {
3037         struct efi_driver_binding_protocol *binding_protocol;
3038         efi_status_t r;
3039
3040         r = EFI_CALL(efi_open_protocol(driver_image_handle,
3041                                        &efi_guid_driver_binding_protocol,
3042                                        (void **)&binding_protocol,
3043                                        driver_image_handle, NULL,
3044                                        EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3045         if (r != EFI_SUCCESS)
3046                 return r;
3047         r = EFI_CALL(binding_protocol->supported(binding_protocol,
3048                                                  controller_handle,
3049                                                  remain_device_path));
3050         if (r == EFI_SUCCESS)
3051                 r = EFI_CALL(binding_protocol->start(binding_protocol,
3052                                                      controller_handle,
3053                                                      remain_device_path));
3054         EFI_CALL(efi_close_protocol(driver_image_handle,
3055                                     &efi_guid_driver_binding_protocol,
3056                                     driver_image_handle, NULL));
3057         return r;
3058 }
3059
3060 /**
3061  * efi_connect_single_controller() - connect a single driver to a controller
3062  * @controller_handle:   controller
3063  * @driver_image_handle: driver
3064  * @remain_device_path:  remaining path
3065  *
3066  * Return: status code
3067  */
3068 static efi_status_t efi_connect_single_controller(
3069                         efi_handle_t controller_handle,
3070                         efi_handle_t *driver_image_handle,
3071                         struct efi_device_path *remain_device_path)
3072 {
3073         efi_handle_t *buffer;
3074         size_t count;
3075         size_t i;
3076         efi_status_t r;
3077         size_t connected = 0;
3078
3079         /* Get buffer with all handles with driver binding protocol */
3080         r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3081                                               &efi_guid_driver_binding_protocol,
3082                                               NULL, &count, &buffer));
3083         if (r != EFI_SUCCESS)
3084                 return r;
3085
3086         /*  Context Override */
3087         if (driver_image_handle) {
3088                 for (; *driver_image_handle; ++driver_image_handle) {
3089                         for (i = 0; i < count; ++i) {
3090                                 if (buffer[i] == *driver_image_handle) {
3091                                         buffer[i] = NULL;
3092                                         r = efi_bind_controller(
3093                                                         controller_handle,
3094                                                         *driver_image_handle,
3095                                                         remain_device_path);
3096                                         /*
3097                                          * For drivers that do not support the
3098                                          * controller or are already connected
3099                                          * we receive an error code here.
3100                                          */
3101                                         if (r == EFI_SUCCESS)
3102                                                 ++connected;
3103                                 }
3104                         }
3105                 }
3106         }
3107
3108         /*
3109          * TODO: Some overrides are not yet implemented:
3110          * - Platform Driver Override
3111          * - Driver Family Override Search
3112          * - Bus Specific Driver Override
3113          */
3114
3115         /* Driver Binding Search */
3116         for (i = 0; i < count; ++i) {
3117                 if (buffer[i]) {
3118                         r = efi_bind_controller(controller_handle,
3119                                                 buffer[i],
3120                                                 remain_device_path);
3121                         if (r == EFI_SUCCESS)
3122                                 ++connected;
3123                 }
3124         }
3125
3126         efi_free_pool(buffer);
3127         if (!connected)
3128                 return EFI_NOT_FOUND;
3129         return EFI_SUCCESS;
3130 }
3131
3132 /**
3133  * efi_connect_controller() - connect a controller to a driver
3134  * @controller_handle:   handle of the controller
3135  * @driver_image_handle: handle of the driver
3136  * @remain_device_path:  device path of a child controller
3137  * @recursive:           true to connect all child controllers
3138  *
3139  * This function implements the ConnectController service.
3140  *
3141  * See the Unified Extensible Firmware Interface (UEFI) specification for
3142  * details.
3143  *
3144  * First all driver binding protocol handles are tried for binding drivers.
3145  * Afterwards all handles that have opened a protocol of the controller
3146  * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3147  *
3148  * Return: status code
3149  */
3150 static efi_status_t EFIAPI efi_connect_controller(
3151                         efi_handle_t controller_handle,
3152                         efi_handle_t *driver_image_handle,
3153                         struct efi_device_path *remain_device_path,
3154                         bool recursive)
3155 {
3156         efi_status_t r;
3157         efi_status_t ret = EFI_NOT_FOUND;
3158         struct efi_object *efiobj;
3159
3160         EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
3161                   remain_device_path, recursive);
3162
3163         efiobj = efi_search_obj(controller_handle);
3164         if (!efiobj) {
3165                 ret = EFI_INVALID_PARAMETER;
3166                 goto out;
3167         }
3168
3169         r = efi_connect_single_controller(controller_handle,
3170                                           driver_image_handle,
3171                                           remain_device_path);
3172         if (r == EFI_SUCCESS)
3173                 ret = EFI_SUCCESS;
3174         if (recursive) {
3175                 struct efi_handler *handler;
3176                 struct efi_open_protocol_info_item *item;
3177
3178                 list_for_each_entry(handler, &efiobj->protocols, link) {
3179                         list_for_each_entry(item, &handler->open_infos, link) {
3180                                 if (item->info.attributes &
3181                                     EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3182                                         r = EFI_CALL(efi_connect_controller(
3183                                                 item->info.controller_handle,
3184                                                 driver_image_handle,
3185                                                 remain_device_path,
3186                                                 recursive));
3187                                         if (r == EFI_SUCCESS)
3188                                                 ret = EFI_SUCCESS;
3189                                 }
3190                         }
3191                 }
3192         }
3193         /*  Check for child controller specified by end node */
3194         if (ret != EFI_SUCCESS && remain_device_path &&
3195             remain_device_path->type == DEVICE_PATH_TYPE_END)
3196                 ret = EFI_SUCCESS;
3197 out:
3198         return EFI_EXIT(ret);
3199 }
3200
3201 /**
3202  * efi_reinstall_protocol_interface() - reinstall protocol interface
3203  * @handle:        handle on which the protocol shall be reinstalled
3204  * @protocol:      GUID of the protocol to be installed
3205  * @old_interface: interface to be removed
3206  * @new_interface: interface to be installed
3207  *
3208  * This function implements the ReinstallProtocolInterface service.
3209  *
3210  * See the Unified Extensible Firmware Interface (UEFI) specification for
3211  * details.
3212  *
3213  * The old interface is uninstalled. The new interface is installed.
3214  * Drivers are connected.
3215  *
3216  * Return: status code
3217  */
3218 static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3219                         efi_handle_t handle, const efi_guid_t *protocol,
3220                         void *old_interface, void *new_interface)
3221 {
3222         efi_status_t ret;
3223
3224         EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3225                   new_interface);
3226
3227         /* Uninstall protocol but do not delete handle */
3228         ret = efi_uninstall_protocol(handle, protocol, old_interface);
3229         if (ret != EFI_SUCCESS)
3230                 goto out;
3231
3232         /* Install the new protocol */
3233         ret = efi_add_protocol(handle, protocol, new_interface);
3234         /*
3235          * The UEFI spec does not specify what should happen to the handle
3236          * if in case of an error no protocol interface remains on the handle.
3237          * So let's do nothing here.
3238          */
3239         if (ret != EFI_SUCCESS)
3240                 goto out;
3241         /*
3242          * The returned status code has to be ignored.
3243          * Do not create an error if no suitable driver for the handle exists.
3244          */
3245         EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3246 out:
3247         return EFI_EXIT(ret);
3248 }
3249
3250 /**
3251  * efi_get_child_controllers() - get all child controllers associated to a driver
3252  * @efiobj:              handle of the controller
3253  * @driver_handle:       handle of the driver
3254  * @number_of_children:  number of child controllers
3255  * @child_handle_buffer: handles of the the child controllers
3256  *
3257  * The allocated buffer has to be freed with free().
3258  *
3259  * Return: status code
3260  */
3261 static efi_status_t efi_get_child_controllers(
3262                                 struct efi_object *efiobj,
3263                                 efi_handle_t driver_handle,
3264                                 efi_uintn_t *number_of_children,
3265                                 efi_handle_t **child_handle_buffer)
3266 {
3267         struct efi_handler *handler;
3268         struct efi_open_protocol_info_item *item;
3269         efi_uintn_t count = 0, i;
3270         bool duplicate;
3271
3272         /* Count all child controller associations */
3273         list_for_each_entry(handler, &efiobj->protocols, link) {
3274                 list_for_each_entry(item, &handler->open_infos, link) {
3275                         if (item->info.agent_handle == driver_handle &&
3276                             item->info.attributes &
3277                             EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3278                                 ++count;
3279                 }
3280         }
3281         /*
3282          * Create buffer. In case of duplicate child controller assignments
3283          * the buffer will be too large. But that does not harm.
3284          */
3285         *number_of_children = 0;
3286         *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3287         if (!*child_handle_buffer)
3288                 return EFI_OUT_OF_RESOURCES;
3289         /* Copy unique child handles */
3290         list_for_each_entry(handler, &efiobj->protocols, link) {
3291                 list_for_each_entry(item, &handler->open_infos, link) {
3292                         if (item->info.agent_handle == driver_handle &&
3293                             item->info.attributes &
3294                             EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3295                                 /* Check this is a new child controller */
3296                                 duplicate = false;
3297                                 for (i = 0; i < *number_of_children; ++i) {
3298                                         if ((*child_handle_buffer)[i] ==
3299                                             item->info.controller_handle)
3300                                                 duplicate = true;
3301                                 }
3302                                 /* Copy handle to buffer */
3303                                 if (!duplicate) {
3304                                         i = (*number_of_children)++;
3305                                         (*child_handle_buffer)[i] =
3306                                                 item->info.controller_handle;
3307                                 }
3308                         }
3309                 }
3310         }
3311         return EFI_SUCCESS;
3312 }
3313
3314 /**
3315  * efi_disconnect_controller() - disconnect a controller from a driver
3316  * @controller_handle:   handle of the controller
3317  * @driver_image_handle: handle of the driver
3318  * @child_handle:        handle of the child to destroy
3319  *
3320  * This function implements the DisconnectController service.
3321  *
3322  * See the Unified Extensible Firmware Interface (UEFI) specification for
3323  * details.
3324  *
3325  * Return: status code
3326  */
3327 static efi_status_t EFIAPI efi_disconnect_controller(
3328                                 efi_handle_t controller_handle,
3329                                 efi_handle_t driver_image_handle,
3330                                 efi_handle_t child_handle)
3331 {
3332         struct efi_driver_binding_protocol *binding_protocol;
3333         efi_handle_t *child_handle_buffer = NULL;
3334         size_t number_of_children = 0;
3335         efi_status_t r;
3336         size_t stop_count = 0;
3337         struct efi_object *efiobj;
3338
3339         EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3340                   child_handle);
3341
3342         efiobj = efi_search_obj(controller_handle);
3343         if (!efiobj) {
3344                 r = EFI_INVALID_PARAMETER;
3345                 goto out;
3346         }
3347
3348         if (child_handle && !efi_search_obj(child_handle)) {
3349                 r = EFI_INVALID_PARAMETER;
3350                 goto out;
3351         }
3352
3353         /* If no driver handle is supplied, disconnect all drivers */
3354         if (!driver_image_handle) {
3355                 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3356                 goto out;
3357         }
3358
3359         /* Create list of child handles */
3360         if (child_handle) {
3361                 number_of_children = 1;
3362                 child_handle_buffer = &child_handle;
3363         } else {
3364                 efi_get_child_controllers(efiobj,
3365                                           driver_image_handle,
3366                                           &number_of_children,
3367                                           &child_handle_buffer);
3368         }
3369
3370         /* Get the driver binding protocol */
3371         r = EFI_CALL(efi_open_protocol(driver_image_handle,
3372                                        &efi_guid_driver_binding_protocol,
3373                                        (void **)&binding_protocol,
3374                                        driver_image_handle, NULL,
3375                                        EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3376         if (r != EFI_SUCCESS)
3377                 goto out;
3378         /* Remove the children */
3379         if (number_of_children) {
3380                 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3381                                                     controller_handle,
3382                                                     number_of_children,
3383                                                     child_handle_buffer));
3384                 if (r == EFI_SUCCESS)
3385                         ++stop_count;
3386         }
3387         /* Remove the driver */
3388         if (!child_handle)
3389                 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3390                                                     controller_handle,
3391                                                     0, NULL));
3392         if (r == EFI_SUCCESS)
3393                 ++stop_count;
3394         EFI_CALL(efi_close_protocol(driver_image_handle,
3395                                     &efi_guid_driver_binding_protocol,
3396                                     driver_image_handle, NULL));
3397
3398         if (stop_count)
3399                 r = EFI_SUCCESS;
3400         else
3401                 r = EFI_NOT_FOUND;
3402 out:
3403         if (!child_handle)
3404                 free(child_handle_buffer);
3405         return EFI_EXIT(r);
3406 }
3407
3408 static struct efi_boot_services efi_boot_services = {
3409         .hdr = {
3410                 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3411                 .revision = EFI_SPECIFICATION_VERSION,
3412                 .headersize = sizeof(struct efi_boot_services),
3413         },
3414         .raise_tpl = efi_raise_tpl,
3415         .restore_tpl = efi_restore_tpl,
3416         .allocate_pages = efi_allocate_pages_ext,
3417         .free_pages = efi_free_pages_ext,
3418         .get_memory_map = efi_get_memory_map_ext,
3419         .allocate_pool = efi_allocate_pool_ext,
3420         .free_pool = efi_free_pool_ext,
3421         .create_event = efi_create_event_ext,
3422         .set_timer = efi_set_timer_ext,
3423         .wait_for_event = efi_wait_for_event,
3424         .signal_event = efi_signal_event_ext,
3425         .close_event = efi_close_event,
3426         .check_event = efi_check_event,
3427         .install_protocol_interface = efi_install_protocol_interface,
3428         .reinstall_protocol_interface = efi_reinstall_protocol_interface,
3429         .uninstall_protocol_interface = efi_uninstall_protocol_interface,
3430         .handle_protocol = efi_handle_protocol,
3431         .reserved = NULL,
3432         .register_protocol_notify = efi_register_protocol_notify,
3433         .locate_handle = efi_locate_handle_ext,
3434         .locate_device_path = efi_locate_device_path,
3435         .install_configuration_table = efi_install_configuration_table_ext,
3436         .load_image = efi_load_image,
3437         .start_image = efi_start_image,
3438         .exit = efi_exit,
3439         .unload_image = efi_unload_image,
3440         .exit_boot_services = efi_exit_boot_services,
3441         .get_next_monotonic_count = efi_get_next_monotonic_count,
3442         .stall = efi_stall,
3443         .set_watchdog_timer = efi_set_watchdog_timer,
3444         .connect_controller = efi_connect_controller,
3445         .disconnect_controller = efi_disconnect_controller,
3446         .open_protocol = efi_open_protocol,
3447         .close_protocol = efi_close_protocol,
3448         .open_protocol_information = efi_open_protocol_information,
3449         .protocols_per_handle = efi_protocols_per_handle,
3450         .locate_handle_buffer = efi_locate_handle_buffer,
3451         .locate_protocol = efi_locate_protocol,
3452         .install_multiple_protocol_interfaces =
3453                         efi_install_multiple_protocol_interfaces,
3454         .uninstall_multiple_protocol_interfaces =
3455                         efi_uninstall_multiple_protocol_interfaces,
3456         .calculate_crc32 = efi_calculate_crc32,
3457         .copy_mem = efi_copy_mem,
3458         .set_mem = efi_set_mem,
3459         .create_event_ex = efi_create_event_ex,
3460 };
3461
3462 static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
3463
3464 struct efi_system_table __efi_runtime_data systab = {
3465         .hdr = {
3466                 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
3467                 .revision = EFI_SPECIFICATION_VERSION,
3468                 .headersize = sizeof(struct efi_system_table),
3469         },
3470         .fw_vendor = firmware_vendor,
3471         .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
3472         .con_in = (void *)&efi_con_in,
3473         .con_out = (void *)&efi_con_out,
3474         .std_err = (void *)&efi_con_out,
3475         .runtime = (void *)&efi_runtime_services,
3476         .boottime = (void *)&efi_boot_services,
3477         .nr_tables = 0,
3478         .tables = NULL,
3479 };
3480
3481 /**
3482  * efi_initialize_system_table() - Initialize system table
3483  *
3484  * Return:      status code
3485  */
3486 efi_status_t efi_initialize_system_table(void)
3487 {
3488         efi_status_t ret;
3489
3490         /* Allocate configuration table array */
3491         ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3492                                 EFI_MAX_CONFIGURATION_TABLES *
3493                                 sizeof(struct efi_configuration_table),
3494                                 (void **)&systab.tables);
3495
3496         /* Set CRC32 field in table headers */
3497         efi_update_table_header_crc32(&systab.hdr);
3498         efi_update_table_header_crc32(&efi_runtime_services.hdr);
3499         efi_update_table_header_crc32(&efi_boot_services.hdr);
3500
3501         return ret;
3502 }