]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/efi_loader/efi_boottime.c
efi_loader: simplify efi_locate_protocol
[people/ms/u-boot.git] / lib / efi_loader / efi_boottime.c
CommitLineData
bee91169
AG
1/*
2 * EFI application boot time services
3 *
4 * Copyright (c) 2016 Alexander Graf
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
bee91169 9#include <common.h>
7d963323 10#include <div64.h>
bee91169 11#include <efi_loader.h>
ad644e7c 12#include <environment.h>
bee91169
AG
13#include <malloc.h>
14#include <asm/global_data.h>
15#include <libfdt_env.h>
16#include <u-boot/crc.h>
17#include <bootm.h>
18#include <inttypes.h>
19#include <watchdog.h>
20
21DECLARE_GLOBAL_DATA_PTR;
22
32f4b2f8 23/* Task priority level */
152cade3 24static efi_uintn_t efi_tpl = TPL_APPLICATION;
32f4b2f8 25
bee91169
AG
26/* This list contains all the EFI objects our payload has access to */
27LIST_HEAD(efi_obj_list);
28
29/*
30 * If we're running on nasty systems (32bit ARM booting into non-EFI Linux)
31 * we need to do trickery with caches. Since we don't want to break the EFI
32 * aware boot path, only apply hacks when loading exiting directly (breaking
33 * direct Linux EFI booting along the way - oh well).
34 */
35static bool efi_is_direct_boot = true;
36
37/*
38 * EFI can pass arbitrary additional "tables" containing vendor specific
39 * information to the payload. One such table is the FDT table which contains
40 * a pointer to a flattened device tree blob.
41 *
42 * In most cases we want to pass an FDT to the payload, so reserve one slot of
43 * config table space for it. The pointer gets populated by do_bootefi_exec().
44 */
3c63db9c 45static struct efi_configuration_table __efi_runtime_data efi_conf_table[2];
bee91169 46
65e4c0b1 47#ifdef CONFIG_ARM
bee91169
AG
48/*
49 * The "gd" pointer lives in a register on ARM and AArch64 that we declare
50 * fixed when compiling U-Boot. However, the payload does not know about that
51 * restriction so we need to manually swap its and our view of that register on
52 * EFI callback entry/exit.
53 */
54static volatile void *efi_gd, *app_gd;
65e4c0b1 55#endif
bee91169 56
c160d2f5 57static int entry_count;
af65db85 58static int nesting_level;
c160d2f5
RC
59
60/* Called on every callback entry */
61int __efi_entry_check(void)
62{
63 int ret = entry_count++ == 0;
64#ifdef CONFIG_ARM
65 assert(efi_gd);
66 app_gd = gd;
67 gd = efi_gd;
68#endif
69 return ret;
70}
71
72/* Called on every callback exit */
73int __efi_exit_check(void)
74{
75 int ret = --entry_count == 0;
76#ifdef CONFIG_ARM
77 gd = app_gd;
78#endif
79 return ret;
80}
81
bee91169
AG
82/* Called from do_bootefi_exec() */
83void efi_save_gd(void)
84{
65e4c0b1 85#ifdef CONFIG_ARM
bee91169 86 efi_gd = gd;
65e4c0b1 87#endif
bee91169
AG
88}
89
c160d2f5
RC
90/*
91 * Special case handler for error/abort that just forces things back
92 * to u-boot world so we can dump out an abort msg, without any care
93 * about returning back to UEFI world.
94 */
bee91169
AG
95void efi_restore_gd(void)
96{
65e4c0b1 97#ifdef CONFIG_ARM
bee91169
AG
98 /* Only restore if we're already in EFI context */
99 if (!efi_gd)
100 return;
bee91169 101 gd = efi_gd;
65e4c0b1 102#endif
bee91169
AG
103}
104
af65db85
RC
105/*
106 * Two spaces per indent level, maxing out at 10.. which ought to be
107 * enough for anyone ;-)
108 */
109static const char *indent_string(int level)
110{
111 const char *indent = " ";
112 const int max = strlen(indent);
113 level = min(max, level * 2);
114 return &indent[max - level];
115}
116
ae0bd3a9
HS
117const char *__efi_nesting(void)
118{
119 return indent_string(nesting_level);
120}
121
af65db85
RC
122const char *__efi_nesting_inc(void)
123{
124 return indent_string(nesting_level++);
125}
126
127const char *__efi_nesting_dec(void)
128{
129 return indent_string(--nesting_level);
130}
131
332468f7
HS
132/*
133 * Queue an EFI event.
134 *
135 * This function queues the notification function of the event for future
136 * execution.
137 *
138 * The notification function is called if the task priority level of the
139 * event is higher than the current task priority level.
140 *
141 * For the SignalEvent service see efi_signal_event_ext.
142 *
143 * @event event to signal
144 */
91be9a77 145void efi_signal_event(struct efi_event *event)
c6841592 146{
ca62a4f5 147 if (event->notify_function) {
e190e897 148 event->is_queued = true;
32f4b2f8
HS
149 /* Check TPL */
150 if (efi_tpl >= event->notify_tpl)
151 return;
ea630ce9
HS
152 EFI_CALL_VOID(event->notify_function(event,
153 event->notify_context));
c6841592 154 }
e190e897 155 event->is_queued = false;
c6841592 156}
157
332468f7
HS
158/*
159 * Raise the task priority level.
160 *
161 * This function implements the RaiseTpl service.
162 * See the Unified Extensible Firmware Interface (UEFI) specification
163 * for details.
164 *
165 * @new_tpl new value of the task priority level
166 * @return old value of the task priority level
167 */
152cade3 168static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
bee91169 169{
152cade3 170 efi_uintn_t old_tpl = efi_tpl;
32f4b2f8 171
503f2695 172 EFI_ENTRY("0x%zx", new_tpl);
32f4b2f8
HS
173
174 if (new_tpl < efi_tpl)
175 debug("WARNING: new_tpl < current_tpl in %s\n", __func__);
176 efi_tpl = new_tpl;
177 if (efi_tpl > TPL_HIGH_LEVEL)
178 efi_tpl = TPL_HIGH_LEVEL;
179
180 EFI_EXIT(EFI_SUCCESS);
181 return old_tpl;
bee91169
AG
182}
183
332468f7
HS
184/*
185 * Lower the task priority level.
186 *
187 * This function implements the RestoreTpl service.
188 * See the Unified Extensible Firmware Interface (UEFI) specification
189 * for details.
190 *
191 * @old_tpl value of the task priority level to be restored
192 */
152cade3 193static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
bee91169 194{
503f2695 195 EFI_ENTRY("0x%zx", old_tpl);
32f4b2f8
HS
196
197 if (old_tpl > efi_tpl)
198 debug("WARNING: old_tpl > current_tpl in %s\n", __func__);
199 efi_tpl = old_tpl;
200 if (efi_tpl > TPL_HIGH_LEVEL)
201 efi_tpl = TPL_HIGH_LEVEL;
202
203 EFI_EXIT(EFI_SUCCESS);
bee91169
AG
204}
205
332468f7
HS
206/*
207 * Allocate memory pages.
208 *
209 * This function implements the AllocatePages service.
210 * See the Unified Extensible Firmware Interface (UEFI) specification
211 * for details.
212 *
213 * @type type of allocation to be performed
214 * @memory_type usage type of the allocated memory
215 * @pages number of pages to be allocated
216 * @memory allocated memory
217 * @return status code
218 */
6e0bf8d8 219static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
f5a2a938 220 efi_uintn_t pages,
6e0bf8d8 221 uint64_t *memory)
bee91169
AG
222{
223 efi_status_t r;
224
f5a2a938 225 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
bee91169
AG
226 r = efi_allocate_pages(type, memory_type, pages, memory);
227 return EFI_EXIT(r);
228}
229
332468f7
HS
230/*
231 * Free memory pages.
232 *
233 * This function implements the FreePages service.
234 * See the Unified Extensible Firmware Interface (UEFI) specification
235 * for details.
236 *
237 * @memory start of the memory area to be freed
238 * @pages number of pages to be freed
239 * @return status code
240 */
6e0bf8d8 241static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
f5a2a938 242 efi_uintn_t pages)
bee91169
AG
243{
244 efi_status_t r;
245
f5a2a938 246 EFI_ENTRY("%"PRIx64", 0x%zx", memory, pages);
bee91169
AG
247 r = efi_free_pages(memory, pages);
248 return EFI_EXIT(r);
249}
250
332468f7
HS
251/*
252 * Get map describing memory usage.
253 *
254 * This function implements the GetMemoryMap service.
255 * See the Unified Extensible Firmware Interface (UEFI) specification
256 * for details.
257 *
258 * @memory_map_size on entry the size, in bytes, of the memory map buffer,
259 * on exit the size of the copied memory map
260 * @memory_map buffer to which the memory map is written
261 * @map_key key for the memory map
262 * @descriptor_size size of an individual memory descriptor
263 * @descriptor_version version number of the memory descriptor structure
264 * @return status code
265 */
6e0bf8d8 266static efi_status_t EFIAPI efi_get_memory_map_ext(
f5a2a938 267 efi_uintn_t *memory_map_size,
6e0bf8d8 268 struct efi_mem_desc *memory_map,
f5a2a938
HS
269 efi_uintn_t *map_key,
270 efi_uintn_t *descriptor_size,
6e0bf8d8 271 uint32_t *descriptor_version)
bee91169
AG
272{
273 efi_status_t r;
274
275 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
276 map_key, descriptor_size, descriptor_version);
277 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
278 descriptor_size, descriptor_version);
279 return EFI_EXIT(r);
280}
281
332468f7
HS
282/*
283 * Allocate memory from pool.
284 *
285 * This function implements the AllocatePool service.
286 * See the Unified Extensible Firmware Interface (UEFI) specification
287 * for details.
288 *
289 * @pool_type type of the pool from which memory is to be allocated
290 * @size number of bytes to be allocated
291 * @buffer allocated memory
292 * @return status code
293 */
ead1274b 294static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
f5a2a938 295 efi_uintn_t size,
ead1274b 296 void **buffer)
bee91169 297{
1cd29f0a
AG
298 efi_status_t r;
299
f5a2a938 300 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
ead1274b 301 r = efi_allocate_pool(pool_type, size, buffer);
1cd29f0a 302 return EFI_EXIT(r);
bee91169
AG
303}
304
332468f7
HS
305/*
306 * Free memory from pool.
307 *
308 * This function implements the FreePool service.
309 * See the Unified Extensible Firmware Interface (UEFI) specification
310 * for details.
311 *
312 * @buffer start of memory to be freed
313 * @return status code
314 */
42417bc8 315static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
bee91169 316{
1cd29f0a
AG
317 efi_status_t r;
318
319 EFI_ENTRY("%p", buffer);
42417bc8 320 r = efi_free_pool(buffer);
1cd29f0a 321 return EFI_EXIT(r);
bee91169
AG
322}
323
2edab5e2
HS
324/*
325 * Create handle.
326 *
327 * @handle new handle
328 * @return status code
329 */
330efi_status_t efi_create_handle(void **handle)
3cc6e3fe
HS
331{
332 struct efi_object *obj;
333 efi_status_t r;
334
335 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES,
336 sizeof(struct efi_object),
337 (void **)&obj);
338 if (r != EFI_SUCCESS)
339 return r;
340 memset(obj, 0, sizeof(struct efi_object));
341 obj->handle = obj;
342 list_add_tail(&obj->link, &efi_obj_list);
343 *handle = obj;
344 return r;
345}
346
bee91169 347/*
c6841592 348 * Our event capabilities are very limited. Only a small limited
349 * number of events is allowed to coexist.
bee91169 350 */
c6841592 351static struct efi_event efi_events[16];
bee91169 352
332468f7
HS
353/*
354 * Create an event.
355 *
356 * This function is used inside U-Boot code to create an event.
357 *
358 * For the API function implementing the CreateEvent service see
359 * efi_create_event_ext.
360 *
361 * @type type of the event to create
362 * @notify_tpl task priority level of the event
363 * @notify_function notification function of the event
364 * @notify_context pointer passed to the notification function
365 * @event created event
366 * @return status code
367 */
152cade3 368efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
49deb455 369 void (EFIAPI *notify_function) (
2fd945fe 370 struct efi_event *event,
371 void *context),
49deb455 372 void *notify_context, struct efi_event **event)
bee91169 373{
c6841592 374 int i;
375
a95343b8 376 if (event == NULL)
49deb455 377 return EFI_INVALID_PARAMETER;
a95343b8
JG
378
379 if ((type & EVT_NOTIFY_SIGNAL) && (type & EVT_NOTIFY_WAIT))
49deb455 380 return EFI_INVALID_PARAMETER;
a95343b8
JG
381
382 if ((type & (EVT_NOTIFY_SIGNAL|EVT_NOTIFY_WAIT)) &&
383 notify_function == NULL)
49deb455 384 return EFI_INVALID_PARAMETER;
a95343b8 385
c6841592 386 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
387 if (efi_events[i].type)
388 continue;
389 efi_events[i].type = type;
390 efi_events[i].notify_tpl = notify_tpl;
391 efi_events[i].notify_function = notify_function;
392 efi_events[i].notify_context = notify_context;
393 /* Disable timers on bootup */
394 efi_events[i].trigger_next = -1ULL;
e190e897
HS
395 efi_events[i].is_queued = false;
396 efi_events[i].is_signaled = false;
c6841592 397 *event = &efi_events[i];
49deb455 398 return EFI_SUCCESS;
c6841592 399 }
49deb455 400 return EFI_OUT_OF_RESOURCES;
bee91169
AG
401}
402
332468f7
HS
403/*
404 * Create an event.
405 *
406 * This function implements the CreateEvent service.
407 * See the Unified Extensible Firmware Interface (UEFI) specification
408 * for details.
409 *
410 * @type type of the event to create
411 * @notify_tpl task priority level of the event
412 * @notify_function notification function of the event
413 * @notify_context pointer passed to the notification function
414 * @event created event
415 * @return status code
416 */
49deb455 417static efi_status_t EFIAPI efi_create_event_ext(
152cade3 418 uint32_t type, efi_uintn_t notify_tpl,
49deb455 419 void (EFIAPI *notify_function) (
420 struct efi_event *event,
421 void *context),
422 void *notify_context, struct efi_event **event)
423{
424 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
425 notify_context);
426 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
427 notify_context, event));
428}
429
430
bee91169 431/*
332468f7
HS
432 * Check if a timer event has occurred or a queued notification function should
433 * be called.
434 *
bee91169 435 * Our timers have to work without interrupts, so we check whenever keyboard
332468f7 436 * input or disk accesses happen if enough time elapsed for them to fire.
bee91169
AG
437 */
438void efi_timer_check(void)
439{
c6841592 440 int i;
bee91169
AG
441 u64 now = timer_get_us();
442
c6841592 443 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
ca62a4f5
HS
444 if (!efi_events[i].type)
445 continue;
e190e897 446 if (efi_events[i].is_queued)
ca62a4f5
HS
447 efi_signal_event(&efi_events[i]);
448 if (!(efi_events[i].type & EVT_TIMER) ||
c6841592 449 now < efi_events[i].trigger_next)
450 continue;
ca62a4f5
HS
451 switch (efi_events[i].trigger_type) {
452 case EFI_TIMER_RELATIVE:
453 efi_events[i].trigger_type = EFI_TIMER_STOP;
454 break;
455 case EFI_TIMER_PERIODIC:
c6841592 456 efi_events[i].trigger_next +=
8787b02e 457 efi_events[i].trigger_time;
ca62a4f5
HS
458 break;
459 default:
460 continue;
c6841592 461 }
e190e897 462 efi_events[i].is_signaled = true;
c6841592 463 efi_signal_event(&efi_events[i]);
bee91169 464 }
bee91169
AG
465 WATCHDOG_RESET();
466}
467
332468f7
HS
468/*
469 * Set the trigger time for a timer event or stop the event.
470 *
471 * This is the function for internal usage in U-Boot. For the API function
472 * implementing the SetTimer service see efi_set_timer_ext.
473 *
474 * @event event for which the timer is set
475 * @type type of the timer
476 * @trigger_time trigger period in multiples of 100ns
477 * @return status code
478 */
b521d29e 479efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
bfc72462 480 uint64_t trigger_time)
bee91169 481{
c6841592 482 int i;
bee91169 483
8787b02e 484 /*
485 * The parameter defines a multiple of 100ns.
486 * We use multiples of 1000ns. So divide by 10.
487 */
7d963323 488 do_div(trigger_time, 10);
bee91169 489
c6841592 490 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
491 if (event != &efi_events[i])
492 continue;
bee91169 493
c6841592 494 if (!(event->type & EVT_TIMER))
495 break;
496 switch (type) {
497 case EFI_TIMER_STOP:
498 event->trigger_next = -1ULL;
499 break;
500 case EFI_TIMER_PERIODIC:
501 case EFI_TIMER_RELATIVE:
502 event->trigger_next =
8787b02e 503 timer_get_us() + trigger_time;
c6841592 504 break;
505 default:
bfc72462 506 return EFI_INVALID_PARAMETER;
c6841592 507 }
508 event->trigger_type = type;
509 event->trigger_time = trigger_time;
e190e897 510 event->is_signaled = false;
bfc72462 511 return EFI_SUCCESS;
bee91169 512 }
bfc72462 513 return EFI_INVALID_PARAMETER;
514}
515
332468f7
HS
516/*
517 * Set the trigger time for a timer event or stop the event.
518 *
519 * This function implements the SetTimer service.
520 * See the Unified Extensible Firmware Interface (UEFI) specification
521 * for details.
522 *
523 * @event event for which the timer is set
524 * @type type of the timer
525 * @trigger_time trigger period in multiples of 100ns
526 * @return status code
527 */
b521d29e 528static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
529 enum efi_timer_delay type,
530 uint64_t trigger_time)
bfc72462 531{
532 EFI_ENTRY("%p, %d, %"PRIx64, event, type, trigger_time);
533 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
bee91169
AG
534}
535
332468f7
HS
536/*
537 * Wait for events to be signaled.
538 *
539 * This function implements the WaitForEvent service.
540 * See the Unified Extensible Firmware Interface (UEFI) specification
541 * for details.
542 *
543 * @num_events number of events to be waited for
544 * @events events to be waited for
545 * @index index of the event that was signaled
546 * @return status code
547 */
f5a2a938 548static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
2fd945fe 549 struct efi_event **event,
f5a2a938 550 efi_uintn_t *index)
bee91169 551{
c6841592 552 int i, j;
bee91169 553
f5a2a938 554 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
bee91169 555
c6841592 556 /* Check parameters */
557 if (!num_events || !event)
558 return EFI_EXIT(EFI_INVALID_PARAMETER);
32f4b2f8
HS
559 /* Check TPL */
560 if (efi_tpl != TPL_APPLICATION)
561 return EFI_EXIT(EFI_UNSUPPORTED);
c6841592 562 for (i = 0; i < num_events; ++i) {
563 for (j = 0; j < ARRAY_SIZE(efi_events); ++j) {
564 if (event[i] == &efi_events[j])
565 goto known_event;
566 }
567 return EFI_EXIT(EFI_INVALID_PARAMETER);
568known_event:
569 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
570 return EFI_EXIT(EFI_INVALID_PARAMETER);
e190e897 571 if (!event[i]->is_signaled)
ca62a4f5 572 efi_signal_event(event[i]);
c6841592 573 }
574
575 /* Wait for signal */
576 for (;;) {
577 for (i = 0; i < num_events; ++i) {
e190e897 578 if (event[i]->is_signaled)
c6841592 579 goto out;
580 }
581 /* Allow events to occur. */
582 efi_timer_check();
583 }
584
585out:
586 /*
587 * Reset the signal which is passed to the caller to allow periodic
588 * events to occur.
589 */
e190e897 590 event[i]->is_signaled = false;
c6841592 591 if (index)
592 *index = i;
bee91169
AG
593
594 return EFI_EXIT(EFI_SUCCESS);
595}
596
332468f7
HS
597/*
598 * Signal an EFI event.
599 *
600 * This function implements the SignalEvent service.
601 * See the Unified Extensible Firmware Interface (UEFI) specification
602 * for details.
603 *
604 * This functions sets the signaled state of the event and queues the
605 * notification function for execution.
606 *
607 * @event event to signal
10a08c4e 608 * @return status code
332468f7 609 */
c6841592 610static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
bee91169 611{
c6841592 612 int i;
613
bee91169 614 EFI_ENTRY("%p", event);
c6841592 615 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
616 if (event != &efi_events[i])
617 continue;
e190e897 618 if (event->is_signaled)
ca62a4f5 619 break;
e190e897 620 event->is_signaled = true;
ca62a4f5
HS
621 if (event->type & EVT_NOTIFY_SIGNAL)
622 efi_signal_event(event);
c6841592 623 break;
624 }
bee91169
AG
625 return EFI_EXIT(EFI_SUCCESS);
626}
627
332468f7
HS
628/*
629 * Close an EFI event.
630 *
631 * This function implements the CloseEvent service.
632 * See the Unified Extensible Firmware Interface (UEFI) specification
633 * for details.
634 *
635 * @event event to close
636 * @return status code
637 */
2fd945fe 638static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
bee91169 639{
c6841592 640 int i;
641
bee91169 642 EFI_ENTRY("%p", event);
c6841592 643 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
644 if (event == &efi_events[i]) {
645 event->type = 0;
646 event->trigger_next = -1ULL;
e190e897
HS
647 event->is_queued = false;
648 event->is_signaled = false;
c6841592 649 return EFI_EXIT(EFI_SUCCESS);
650 }
651 }
652 return EFI_EXIT(EFI_INVALID_PARAMETER);
bee91169
AG
653}
654
332468f7
HS
655/*
656 * Check if an event is signaled.
657 *
658 * This function implements the CheckEvent service.
659 * See the Unified Extensible Firmware Interface (UEFI) specification
660 * for details.
661 *
662 * If an event is not signaled yet the notification function is queued.
663 *
664 * @event event to check
665 * @return status code
666 */
2fd945fe 667static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
bee91169 668{
c6841592 669 int i;
670
bee91169 671 EFI_ENTRY("%p", event);
c6841592 672 efi_timer_check();
673 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
674 if (event != &efi_events[i])
675 continue;
676 if (!event->type || event->type & EVT_NOTIFY_SIGNAL)
677 break;
e190e897 678 if (!event->is_signaled)
ca62a4f5 679 efi_signal_event(event);
e190e897 680 if (event->is_signaled)
c6841592 681 return EFI_EXIT(EFI_SUCCESS);
682 return EFI_EXIT(EFI_NOT_READY);
683 }
684 return EFI_EXIT(EFI_INVALID_PARAMETER);
bee91169
AG
685}
686
7b9f8ad7
HS
687/*
688 * Find the internal EFI object for a handle.
689 *
690 * @handle handle to find
691 * @return EFI object
692 */
085d07cd 693struct efi_object *efi_search_obj(const void *handle)
7b9f8ad7 694{
1b68153a 695 struct efi_object *efiobj;
7b9f8ad7 696
1b68153a 697 list_for_each_entry(efiobj, &efi_obj_list, link) {
7b9f8ad7
HS
698 if (efiobj->handle == handle)
699 return efiobj;
700 }
701
702 return NULL;
703}
704
3f79a2b5
HS
705/*
706 * Find a protocol on a handle.
707 *
708 * @handle handle
709 * @protocol_guid GUID of the protocol
710 * @handler reference to the protocol
711 * @return status code
712 */
713efi_status_t efi_search_protocol(const void *handle,
714 const efi_guid_t *protocol_guid,
715 struct efi_handler **handler)
716{
717 struct efi_object *efiobj;
718 size_t i;
719 struct efi_handler *protocol;
720
721 if (!handle || !protocol_guid)
722 return EFI_INVALID_PARAMETER;
723 efiobj = efi_search_obj(handle);
724 if (!efiobj)
725 return EFI_INVALID_PARAMETER;
726 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
727 protocol = &efiobj->protocols[i];
728 if (!protocol->guid)
729 continue;
730 if (!guidcmp(protocol->guid, protocol_guid)) {
731 if (handler)
732 *handler = protocol;
733 return EFI_SUCCESS;
734 }
735 }
736 return EFI_NOT_FOUND;
737}
738
739/*
740 * Install new protocol on a handle.
741 *
742 * @handle handle on which the protocol shall be installed
743 * @protocol GUID of the protocol to be installed
744 * @protocol_interface interface of the protocol implementation
745 * @return status code
746 */
747efi_status_t efi_add_protocol(const void *handle, const efi_guid_t *protocol,
748 void *protocol_interface)
749{
750 struct efi_object *efiobj;
751 struct efi_handler *handler;
752 efi_status_t ret;
753 size_t i;
754
755 efiobj = efi_search_obj(handle);
756 if (!efiobj)
757 return EFI_INVALID_PARAMETER;
758 ret = efi_search_protocol(handle, protocol, NULL);
759 if (ret != EFI_NOT_FOUND)
760 return EFI_INVALID_PARAMETER;
761 handler = calloc(1, sizeof(struct efi_handler));
762 if (!handler)
763 return EFI_OUT_OF_RESOURCES;
764 /* Install protocol in first empty slot. */
765 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
766 handler = &efiobj->protocols[i];
767 if (handler->guid)
768 continue;
769 handler->guid = protocol;
770 handler->protocol_interface = protocol_interface;
771 return EFI_SUCCESS;
772 }
773 return EFI_OUT_OF_RESOURCES;
774}
775
776/*
777 * Delete protocol from a handle.
778 *
779 * @handle handle from which the protocol shall be deleted
780 * @protocol GUID of the protocol to be deleted
781 * @protocol_interface interface of the protocol implementation
782 * @return status code
783 */
784efi_status_t efi_remove_protocol(const void *handle, const efi_guid_t *protocol,
785 void *protocol_interface)
786{
787 struct efi_handler *handler;
788 efi_status_t ret;
789
790 ret = efi_search_protocol(handle, protocol, &handler);
791 if (ret != EFI_SUCCESS)
792 return ret;
793 if (handler->protocol_interface != protocol_interface)
794 return EFI_NOT_FOUND;
795 handler->guid = NULL;
796 handler->protocol_interface = NULL;
797 return EFI_SUCCESS;
798}
799
800/*
801 * Delete all protocols from a handle.
802 *
803 * @handle handle from which the protocols shall be deleted
804 * @return status code
805 */
806efi_status_t efi_remove_all_protocols(const void *handle)
807{
808 struct efi_object *efiobj;
809 struct efi_handler *handler;
810 size_t i;
811
812 efiobj = efi_search_obj(handle);
813 if (!efiobj)
814 return EFI_INVALID_PARAMETER;
815
816 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
817 handler = &efiobj->protocols[i];
818 handler->guid = NULL;
819 handler->protocol_interface = NULL;
820 }
821 return EFI_SUCCESS;
822}
823
332468f7
HS
824/*
825 * Install protocol interface.
826 *
1760ef57
HS
827 * This function implements the InstallProtocolInterface service.
828 * See the Unified Extensible Firmware Interface (UEFI) specification
829 * for details.
332468f7
HS
830 *
831 * @handle handle on which the protocol shall be installed
832 * @protocol GUID of the protocol to be installed
833 * @protocol_interface_type type of the interface to be installed,
834 * always EFI_NATIVE_INTERFACE
835 * @protocol_interface interface of the protocol implementation
836 * @return status code
837 */
1760ef57
HS
838static efi_status_t EFIAPI efi_install_protocol_interface(
839 void **handle, const efi_guid_t *protocol,
840 int protocol_interface_type, void *protocol_interface)
bee91169 841{
e0549f8a 842 efi_status_t r;
843
1760ef57
HS
844 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
845 protocol_interface);
846
e0549f8a 847 if (!handle || !protocol ||
848 protocol_interface_type != EFI_NATIVE_INTERFACE) {
849 r = EFI_INVALID_PARAMETER;
850 goto out;
851 }
852
853 /* Create new handle if requested. */
854 if (!*handle) {
3cc6e3fe
HS
855 r = efi_create_handle(handle);
856 if (r != EFI_SUCCESS)
857 goto out;
af1408e0
HS
858 debug("%sEFI: new handle %p\n", indent_string(nesting_level),
859 *handle);
860 } else {
861 debug("%sEFI: handle %p\n", indent_string(nesting_level),
862 *handle);
e0549f8a 863 }
1202530d
HS
864 /* Add new protocol */
865 r = efi_add_protocol(*handle, protocol, protocol_interface);
e0549f8a 866out:
1760ef57 867 return EFI_EXIT(r);
bee91169 868}
e0549f8a 869
332468f7
HS
870/*
871 * Reinstall protocol interface.
872 *
873 * This function implements the ReinstallProtocolInterface service.
874 * See the Unified Extensible Firmware Interface (UEFI) specification
875 * for details.
876 *
877 * @handle handle on which the protocol shall be
878 * reinstalled
879 * @protocol GUID of the protocol to be installed
880 * @old_interface interface to be removed
881 * @new_interface interface to be installed
882 * @return status code
883 */
bee91169 884static efi_status_t EFIAPI efi_reinstall_protocol_interface(void *handle,
5a9682d0 885 const efi_guid_t *protocol, void *old_interface,
bee91169
AG
886 void *new_interface)
887{
778e6af8 888 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
bee91169
AG
889 new_interface);
890 return EFI_EXIT(EFI_ACCESS_DENIED);
891}
892
332468f7
HS
893/*
894 * Uninstall protocol interface.
895 *
cd534083
HS
896 * This function implements the UninstallProtocolInterface service.
897 * See the Unified Extensible Firmware Interface (UEFI) specification
898 * for details.
332468f7
HS
899 *
900 * @handle handle from which the protocol shall be removed
901 * @protocol GUID of the protocol to be removed
902 * @protocol_interface interface to be removed
903 * @return status code
904 */
cd534083
HS
905static efi_status_t EFIAPI efi_uninstall_protocol_interface(
906 void *handle, const efi_guid_t *protocol,
907 void *protocol_interface)
bee91169 908{
5810511d
HS
909 struct efi_handler *handler;
910 efi_status_t r;
4b6ed0d7 911
cd534083
HS
912 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
913
4b6ed0d7 914 if (!handle || !protocol) {
915 r = EFI_INVALID_PARAMETER;
916 goto out;
917 }
918
5810511d
HS
919 /* Find the protocol on the handle */
920 r = efi_search_protocol(handle, protocol, &handler);
921 if (r != EFI_SUCCESS)
922 goto out;
923 if (handler->protocol_interface) {
924 /* TODO disconnect controllers */
925 r = EFI_ACCESS_DENIED;
926 } else {
927 r = efi_remove_protocol(handle, protocol, protocol_interface);
4b6ed0d7 928 }
4b6ed0d7 929out:
cd534083 930 return EFI_EXIT(r);
bee91169
AG
931}
932
332468f7
HS
933/*
934 * Register an event for notification when a protocol is installed.
935 *
936 * This function implements the RegisterProtocolNotify service.
937 * See the Unified Extensible Firmware Interface (UEFI) specification
938 * for details.
939 *
940 * @protocol GUID of the protocol whose installation shall be
941 * notified
942 * @event event to be signaled upon installation of the protocol
943 * @registration key for retrieving the registration information
944 * @return status code
945 */
5a9682d0
HS
946static efi_status_t EFIAPI efi_register_protocol_notify(
947 const efi_guid_t *protocol,
948 struct efi_event *event,
949 void **registration)
bee91169 950{
778e6af8 951 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
bee91169
AG
952 return EFI_EXIT(EFI_OUT_OF_RESOURCES);
953}
954
332468f7
HS
955/*
956 * Determine if an EFI handle implements a protocol.
957 *
958 * See the documentation of the LocateHandle service in the UEFI specification.
959 *
960 * @search_type selection criterion
961 * @protocol GUID of the protocol
962 * @search_key registration key
963 * @efiobj handle
964 * @return 0 if the handle implements the protocol
965 */
bee91169 966static int efi_search(enum efi_locate_search_type search_type,
5a9682d0 967 const efi_guid_t *protocol, void *search_key,
bee91169
AG
968 struct efi_object *efiobj)
969{
42cf1242 970 efi_status_t ret;
bee91169
AG
971
972 switch (search_type) {
9f0770ff 973 case ALL_HANDLES:
bee91169 974 return 0;
9f0770ff 975 case BY_REGISTER_NOTIFY:
42cf1242 976 /* TODO: RegisterProtocolNotify is not implemented yet */
bee91169 977 return -1;
9f0770ff 978 case BY_PROTOCOL:
42cf1242
HS
979 ret = efi_search_protocol(efiobj->handle, protocol, NULL);
980 return (ret != EFI_SUCCESS);
981 default:
982 /* Invalid search type */
bee91169
AG
983 return -1;
984 }
bee91169
AG
985}
986
332468f7
HS
987/*
988 * Locate handles implementing a protocol.
989 *
990 * This function is meant for U-Boot internal calls. For the API implementation
991 * of the LocateHandle service see efi_locate_handle_ext.
992 *
993 * @search_type selection criterion
994 * @protocol GUID of the protocol
995 * @search_key registration key
996 * @buffer_size size of the buffer to receive the handles in bytes
997 * @buffer buffer to receive the relevant handles
998 * @return status code
999 */
ebf199b9 1000static efi_status_t efi_locate_handle(
bee91169 1001 enum efi_locate_search_type search_type,
5a9682d0 1002 const efi_guid_t *protocol, void *search_key,
f5a2a938 1003 efi_uintn_t *buffer_size, efi_handle_t *buffer)
bee91169 1004{
caf864e4 1005 struct efi_object *efiobj;
f5a2a938 1006 efi_uintn_t size = 0;
bee91169 1007
caf864e4
HS
1008 /* Check parameters */
1009 switch (search_type) {
1010 case ALL_HANDLES:
1011 break;
1012 case BY_REGISTER_NOTIFY:
1013 if (!search_key)
1014 return EFI_INVALID_PARAMETER;
1015 /* RegisterProtocolNotify is not implemented yet */
1016 return EFI_UNSUPPORTED;
1017 case BY_PROTOCOL:
1018 if (!protocol)
1019 return EFI_INVALID_PARAMETER;
1020 break;
1021 default:
1022 return EFI_INVALID_PARAMETER;
1023 }
1024
1025 /*
1026 * efi_locate_handle_buffer uses this function for
1027 * the calculation of the necessary buffer size.
1028 * So do not require a buffer for buffersize == 0.
1029 */
1030 if (!buffer_size || (*buffer_size && !buffer))
1031 return EFI_INVALID_PARAMETER;
1032
bee91169 1033 /* Count how much space we need */
caf864e4
HS
1034 list_for_each_entry(efiobj, &efi_obj_list, link) {
1035 if (!efi_search(search_type, protocol, search_key, efiobj))
bee91169 1036 size += sizeof(void*);
bee91169
AG
1037 }
1038
1039 if (*buffer_size < size) {
1040 *buffer_size = size;
26329584 1041 return EFI_BUFFER_TOO_SMALL;
bee91169
AG
1042 }
1043
796a78cb
RC
1044 *buffer_size = size;
1045 if (size == 0)
1046 return EFI_NOT_FOUND;
1047
bee91169 1048 /* Then fill the array */
caf864e4
HS
1049 list_for_each_entry(efiobj, &efi_obj_list, link) {
1050 if (!efi_search(search_type, protocol, search_key, efiobj))
1051 *buffer++ = efiobj->handle;
bee91169
AG
1052 }
1053
26329584 1054 return EFI_SUCCESS;
1055}
1056
332468f7
HS
1057/*
1058 * Locate handles implementing a protocol.
1059 *
1060 * This function implements the LocateHandle service.
1061 * See the Unified Extensible Firmware Interface (UEFI) specification
1062 * for details.
1063 *
1064 * @search_type selection criterion
1065 * @protocol GUID of the protocol
1066 * @search_key registration key
1067 * @buffer_size size of the buffer to receive the handles in bytes
1068 * @buffer buffer to receive the relevant handles
1069 * @return 0 if the handle implements the protocol
1070 */
26329584 1071static efi_status_t EFIAPI efi_locate_handle_ext(
1072 enum efi_locate_search_type search_type,
5a9682d0 1073 const efi_guid_t *protocol, void *search_key,
f5a2a938 1074 efi_uintn_t *buffer_size, efi_handle_t *buffer)
26329584 1075{
778e6af8 1076 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
26329584 1077 buffer_size, buffer);
1078
1079 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1080 buffer_size, buffer));
bee91169
AG
1081}
1082
332468f7
HS
1083/*
1084 * Get the device path and handle of an device implementing a protocol.
1085 *
1086 * This function implements the LocateDevicePath service.
1087 * See the Unified Extensible Firmware Interface (UEFI) specification
1088 * for details.
1089 *
1090 * @protocol GUID of the protocol
1091 * @device_path device path
1092 * @device handle of the device
1093 * @return status code
1094 */
5a9682d0
HS
1095static efi_status_t EFIAPI efi_locate_device_path(
1096 const efi_guid_t *protocol,
bee91169
AG
1097 struct efi_device_path **device_path,
1098 efi_handle_t *device)
1099{
b66c60dd
RC
1100 struct efi_object *efiobj;
1101
1102 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
1103
1104 efiobj = efi_dp_find_obj(*device_path, device_path);
1105 if (!efiobj)
1106 return EFI_EXIT(EFI_NOT_FOUND);
1107
1108 *device = efiobj->handle;
1109
1110 return EFI_EXIT(EFI_SUCCESS);
bee91169
AG
1111}
1112
d98cdf6a
AG
1113/* Collapses configuration table entries, removing index i */
1114static void efi_remove_configuration_table(int i)
1115{
1116 struct efi_configuration_table *this = &efi_conf_table[i];
1117 struct efi_configuration_table *next = &efi_conf_table[i+1];
1118 struct efi_configuration_table *end = &efi_conf_table[systab.nr_tables];
1119
1120 memmove(this, next, (ulong)end - (ulong)next);
1121 systab.nr_tables--;
1122}
1123
332468f7
HS
1124/*
1125 * Adds, updates, or removes a configuration table.
1126 *
1127 * This function is used for internal calls. For the API implementation of the
1128 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1129 *
1130 * @guid GUID of the installed table
1131 * @table table to be installed
1132 * @return status code
1133 */
488bf12d 1134efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table)
bee91169
AG
1135{
1136 int i;
1137
bee91169
AG
1138 /* Check for guid override */
1139 for (i = 0; i < systab.nr_tables; i++) {
1140 if (!guidcmp(guid, &efi_conf_table[i].guid)) {
d98cdf6a
AG
1141 if (table)
1142 efi_conf_table[i].table = table;
1143 else
1144 efi_remove_configuration_table(i);
488bf12d 1145 return EFI_SUCCESS;
bee91169
AG
1146 }
1147 }
1148
d98cdf6a
AG
1149 if (!table)
1150 return EFI_NOT_FOUND;
1151
bee91169
AG
1152 /* No override, check for overflow */
1153 if (i >= ARRAY_SIZE(efi_conf_table))
488bf12d 1154 return EFI_OUT_OF_RESOURCES;
bee91169
AG
1155
1156 /* Add a new entry */
1157 memcpy(&efi_conf_table[i].guid, guid, sizeof(*guid));
1158 efi_conf_table[i].table = table;
aba5e919 1159 systab.nr_tables = i + 1;
bee91169 1160
488bf12d
AG
1161 return EFI_SUCCESS;
1162}
1163
332468f7
HS
1164/*
1165 * Adds, updates, or removes a configuration table.
1166 *
1167 * This function implements the InstallConfigurationTable service.
1168 * See the Unified Extensible Firmware Interface (UEFI) specification
1169 * for details.
1170 *
1171 * @guid GUID of the installed table
1172 * @table table to be installed
1173 * @return status code
1174 */
488bf12d
AG
1175static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1176 void *table)
1177{
778e6af8 1178 EFI_ENTRY("%pUl, %p", guid, table);
488bf12d 1179 return EFI_EXIT(efi_install_configuration_table(guid, table));
bee91169
AG
1180}
1181
332468f7
HS
1182/*
1183 * Initialize a loaded_image_info + loaded_image_info object with correct
95c5553e 1184 * protocols, boot-device, etc.
332468f7 1185 *
10a08c4e 1186 * @info loaded image info to be passed to the entry point of the
332468f7
HS
1187 * image
1188 * @obj internal object associated with the loaded image
1189 * @device_path device path of the loaded image
1190 * @file_path file path of the loaded image
95c5553e
RC
1191 */
1192void efi_setup_loaded_image(struct efi_loaded_image *info, struct efi_object *obj,
1193 struct efi_device_path *device_path,
1194 struct efi_device_path *file_path)
1195{
1196 obj->handle = info;
1197
1198 /*
1199 * When asking for the device path interface, return
1200 * bootefi_device_path
1201 */
1202 obj->protocols[0].guid = &efi_guid_device_path;
1203 obj->protocols[0].protocol_interface = device_path;
1204
1205 /*
1206 * When asking for the loaded_image interface, just
1207 * return handle which points to loaded_image_info
1208 */
1209 obj->protocols[1].guid = &efi_guid_loaded_image;
1210 obj->protocols[1].protocol_interface = info;
1211
1212 obj->protocols[2].guid = &efi_guid_console_control;
1213 obj->protocols[2].protocol_interface = (void *)&efi_console_control;
1214
1215 obj->protocols[3].guid = &efi_guid_device_path_to_text_protocol;
1216 obj->protocols[3].protocol_interface =
1217 (void *)&efi_device_path_to_text;
1218
1219 info->file_path = file_path;
1a2c8d2f
HS
1220 if (device_path)
1221 info->device_handle = efi_dp_find_obj(device_path, NULL);
95c5553e
RC
1222
1223 list_add_tail(&obj->link, &efi_obj_list);
1224}
1225
332468f7
HS
1226/*
1227 * Load an image using a file path.
1228 *
1229 * @file_path the path of the image to load
1230 * @buffer buffer containing the loaded image
10a08c4e 1231 * @return status code
332468f7 1232 */
9975fe96
RC
1233efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
1234 void **buffer)
838ee4b4
RC
1235{
1236 struct efi_file_info *info = NULL;
1237 struct efi_file_handle *f;
1238 static efi_status_t ret;
1239 uint64_t bs;
1240
1241 f = efi_file_from_path(file_path);
1242 if (!f)
1243 return EFI_DEVICE_ERROR;
1244
1245 bs = 0;
1246 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1247 &bs, info));
1248 if (ret == EFI_BUFFER_TOO_SMALL) {
1249 info = malloc(bs);
1250 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1251 &bs, info));
1252 }
1253 if (ret != EFI_SUCCESS)
1254 goto error;
1255
1256 ret = efi_allocate_pool(EFI_LOADER_DATA, info->file_size, buffer);
1257 if (ret)
1258 goto error;
1259
1260 EFI_CALL(ret = f->read(f, &info->file_size, *buffer));
1261
1262error:
1263 free(info);
1264 EFI_CALL(f->close(f));
1265
1266 if (ret != EFI_SUCCESS) {
1267 efi_free_pool(*buffer);
1268 *buffer = NULL;
1269 }
1270
1271 return ret;
1272}
1273
332468f7
HS
1274/*
1275 * Load an EFI image into memory.
1276 *
1277 * This function implements the LoadImage service.
1278 * See the Unified Extensible Firmware Interface (UEFI) specification
1279 * for details.
1280 *
1281 * @boot_policy true for request originating from the boot manager
1282 * @parent_image the calles's image handle
1283 * @file_path the path of the image to load
1284 * @source_buffer memory location from which the image is installed
1285 * @source_size size of the memory area from which the image is
1286 * installed
1287 * @image_handle handle for the newly installed image
1288 * @return status code
1289 */
bee91169
AG
1290static efi_status_t EFIAPI efi_load_image(bool boot_policy,
1291 efi_handle_t parent_image,
1292 struct efi_device_path *file_path,
1293 void *source_buffer,
1294 unsigned long source_size,
1295 efi_handle_t *image_handle)
1296{
bee91169
AG
1297 struct efi_loaded_image *info;
1298 struct efi_object *obj;
1299
1300 EFI_ENTRY("%d, %p, %p, %p, %ld, %p", boot_policy, parent_image,
1301 file_path, source_buffer, source_size, image_handle);
838ee4b4
RC
1302
1303 info = calloc(1, sizeof(*info));
1304 obj = calloc(1, sizeof(*obj));
1305
1306 if (!source_buffer) {
1307 struct efi_device_path *dp, *fp;
1308 efi_status_t ret;
1309
9975fe96 1310 ret = efi_load_image_from_path(file_path, &source_buffer);
838ee4b4
RC
1311 if (ret != EFI_SUCCESS) {
1312 free(info);
1313 free(obj);
1314 return EFI_EXIT(ret);
1315 }
1316
1317 /*
1318 * split file_path which contains both the device and
1319 * file parts:
1320 */
1321 efi_dp_split_file_path(file_path, &dp, &fp);
1322
1323 efi_setup_loaded_image(info, obj, dp, fp);
1324 } else {
1325 /* In this case, file_path is the "device" path, ie.
1326 * something like a HARDWARE_DEVICE:MEMORY_MAPPED
1327 */
1328 efi_setup_loaded_image(info, obj, file_path, NULL);
1329 }
1330
bee91169
AG
1331 info->reserved = efi_load_pe(source_buffer, info);
1332 if (!info->reserved) {
1333 free(info);
1334 free(obj);
1335 return EFI_EXIT(EFI_UNSUPPORTED);
1336 }
1337
32fc2ac3
HS
1338 info->system_table = &systab;
1339 info->parent_handle = parent_image;
bee91169 1340 *image_handle = info;
bee91169
AG
1341
1342 return EFI_EXIT(EFI_SUCCESS);
1343}
1344
332468f7
HS
1345/*
1346 * Call the entry point of an image.
1347 *
1348 * This function implements the StartImage service.
1349 * See the Unified Extensible Firmware Interface (UEFI) specification
1350 * for details.
1351 *
1352 * @image_handle handle of the image
1353 * @exit_data_size size of the buffer
1354 * @exit_data buffer to receive the exit data of the called image
10a08c4e 1355 * @return status code
332468f7 1356 */
bee91169
AG
1357static efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
1358 unsigned long *exit_data_size,
1359 s16 **exit_data)
1360{
1361 ulong (*entry)(void *image_handle, struct efi_system_table *st);
1362 struct efi_loaded_image *info = image_handle;
1363
1364 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
1365 entry = info->reserved;
1366
1367 efi_is_direct_boot = false;
1368
1369 /* call the image! */
a86aeaf2
AG
1370 if (setjmp(&info->exit_jmp)) {
1371 /* We returned from the child image */
1372 return EFI_EXIT(info->exit_status);
1373 }
1374
af65db85 1375 __efi_nesting_dec();
c160d2f5 1376 __efi_exit_check();
bee91169 1377 entry(image_handle, &systab);
c160d2f5 1378 __efi_entry_check();
af65db85 1379 __efi_nesting_inc();
bee91169
AG
1380
1381 /* Should usually never get here */
1382 return EFI_EXIT(EFI_SUCCESS);
1383}
1384
332468f7
HS
1385/*
1386 * Leave an EFI application or driver.
1387 *
1388 * This function implements the Exit service.
1389 * See the Unified Extensible Firmware Interface (UEFI) specification
1390 * for details.
1391 *
1392 * @image_handle handle of the application or driver that is exiting
1393 * @exit_status status code
1394 * @exit_data_size size of the buffer in bytes
1395 * @exit_data buffer with data describing an error
10a08c4e 1396 * @return status code
332468f7 1397 */
a86aeaf2
AG
1398static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
1399 efi_status_t exit_status, unsigned long exit_data_size,
1400 int16_t *exit_data)
bee91169 1401{
a86aeaf2
AG
1402 struct efi_loaded_image *loaded_image_info = (void*)image_handle;
1403
bee91169
AG
1404 EFI_ENTRY("%p, %ld, %ld, %p", image_handle, exit_status,
1405 exit_data_size, exit_data);
a86aeaf2 1406
a148920e 1407 /* Make sure entry/exit counts for EFI world cross-overs match */
da94073b
HS
1408 __efi_exit_check();
1409
a148920e
AG
1410 /*
1411 * But longjmp out with the U-Boot gd, not the application's, as
1412 * the other end is a setjmp call inside EFI context.
1413 */
1414 efi_restore_gd();
1415
a86aeaf2 1416 loaded_image_info->exit_status = exit_status;
692fcdd8 1417 longjmp(&loaded_image_info->exit_jmp, 1);
a86aeaf2
AG
1418
1419 panic("EFI application exited");
bee91169
AG
1420}
1421
332468f7
HS
1422/*
1423 * Unload an EFI image.
1424 *
1425 * This function implements the UnloadImage service.
1426 * See the Unified Extensible Firmware Interface (UEFI) specification
1427 * for details.
1428 *
1429 * @image_handle handle of the image to be unloaded
1430 * @return status code
1431 */
bee91169
AG
1432static efi_status_t EFIAPI efi_unload_image(void *image_handle)
1433{
1434 struct efi_object *efiobj;
1435
1436 EFI_ENTRY("%p", image_handle);
1437 efiobj = efi_search_obj(image_handle);
1438 if (efiobj)
1439 list_del(&efiobj->link);
1440
1441 return EFI_EXIT(EFI_SUCCESS);
1442}
1443
332468f7
HS
1444/*
1445 * Fix up caches for EFI payloads if necessary.
1446 */
bee91169
AG
1447static void efi_exit_caches(void)
1448{
1449#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1450 /*
1451 * Grub on 32bit ARM needs to have caches disabled before jumping into
1452 * a zImage, but does not know of all cache layers. Give it a hand.
1453 */
1454 if (efi_is_direct_boot)
1455 cleanup_before_linux();
1456#endif
1457}
1458
332468f7
HS
1459/*
1460 * Stop boot services.
1461 *
1462 * This function implements the ExitBootServices service.
1463 * See the Unified Extensible Firmware Interface (UEFI) specification
1464 * for details.
1465 *
1466 * @image_handle handle of the loaded image
1467 * @map_key key of the memory map
1468 * @return status code
1469 */
bee91169
AG
1470static efi_status_t EFIAPI efi_exit_boot_services(void *image_handle,
1471 unsigned long map_key)
1472{
152a263c
HS
1473 int i;
1474
bee91169
AG
1475 EFI_ENTRY("%p, %ld", image_handle, map_key);
1476
152a263c
HS
1477 /* Notify that ExitBootServices is invoked. */
1478 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
1479 if (efi_events[i].type != EVT_SIGNAL_EXIT_BOOT_SERVICES)
1480 continue;
1481 efi_signal_event(&efi_events[i]);
1482 }
1483 /* Make sure that notification functions are not called anymore */
1484 efi_tpl = TPL_HIGH_LEVEL;
1485
40583564 1486 /* XXX Should persist EFI variables here */
ad644e7c 1487
b7b8410a
AG
1488 board_quiesce_devices();
1489
bee91169
AG
1490 /* Fix up caches for EFI payloads if necessary */
1491 efi_exit_caches();
1492
1493 /* This stops all lingering devices */
1494 bootm_disable_interrupts();
1495
1496 /* Give the payload some time to boot */
b3d60900 1497 efi_set_watchdog(0);
bee91169
AG
1498 WATCHDOG_RESET();
1499
1500 return EFI_EXIT(EFI_SUCCESS);
1501}
1502
332468f7
HS
1503/*
1504 * Get next value of the counter.
1505 *
1506 * This function implements the NextMonotonicCount service.
1507 * See the Unified Extensible Firmware Interface (UEFI) specification
1508 * for details.
1509 *
1510 * @count returned value of the counter
1511 * @return status code
1512 */
bee91169
AG
1513static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1514{
1515 static uint64_t mono = 0;
1516 EFI_ENTRY("%p", count);
1517 *count = mono++;
1518 return EFI_EXIT(EFI_SUCCESS);
1519}
1520
332468f7
HS
1521/*
1522 * Sleep.
1523 *
1524 * This function implements the Stall sercive.
1525 * See the Unified Extensible Firmware Interface (UEFI) specification
1526 * for details.
1527 *
1528 * @microseconds period to sleep in microseconds
1529 * @return status code
1530 */
bee91169
AG
1531static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1532{
1533 EFI_ENTRY("%ld", microseconds);
1534 udelay(microseconds);
1535 return EFI_EXIT(EFI_SUCCESS);
1536}
1537
332468f7
HS
1538/*
1539 * Reset the watchdog timer.
1540 *
b3d60900 1541 * This function implements the SetWatchdogTimer service.
332468f7
HS
1542 * See the Unified Extensible Firmware Interface (UEFI) specification
1543 * for details.
1544 *
1545 * @timeout seconds before reset by watchdog
1546 * @watchdog_code code to be logged when resetting
1547 * @data_size size of buffer in bytes
1548 * @watchdog_data buffer with data describing the reset reason
10a08c4e 1549 * @return status code
332468f7 1550 */
bee91169
AG
1551static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
1552 uint64_t watchdog_code,
1553 unsigned long data_size,
1554 uint16_t *watchdog_data)
1555{
1556 EFI_ENTRY("%ld, 0x%"PRIx64", %ld, %p", timeout, watchdog_code,
1557 data_size, watchdog_data);
b3d60900 1558 return EFI_EXIT(efi_set_watchdog(timeout));
bee91169
AG
1559}
1560
332468f7
HS
1561/*
1562 * Connect a controller to a driver.
1563 *
1564 * This function implements the ConnectController service.
1565 * See the Unified Extensible Firmware Interface (UEFI) specification
1566 * for details.
1567 *
1568 * @controller_handle handle of the controller
1569 * @driver_image_handle handle of the driver
1570 * @remain_device_path device path of a child controller
1571 * @recursive true to connect all child controllers
1572 * @return status code
1573 */
bee91169
AG
1574static efi_status_t EFIAPI efi_connect_controller(
1575 efi_handle_t controller_handle,
1576 efi_handle_t *driver_image_handle,
1577 struct efi_device_path *remain_device_path,
1578 bool recursive)
1579{
1580 EFI_ENTRY("%p, %p, %p, %d", controller_handle, driver_image_handle,
1581 remain_device_path, recursive);
1582 return EFI_EXIT(EFI_NOT_FOUND);
1583}
1584
332468f7
HS
1585/*
1586 * Disconnect a controller from a driver.
1587 *
1588 * This function implements the DisconnectController service.
1589 * See the Unified Extensible Firmware Interface (UEFI) specification
1590 * for details.
1591 *
1592 * @controller_handle handle of the controller
1593 * @driver_image_handle handle of the driver
1594 * @child_handle handle of the child to destroy
1595 * @return status code
1596 */
bee91169
AG
1597static efi_status_t EFIAPI efi_disconnect_controller(void *controller_handle,
1598 void *driver_image_handle,
1599 void *child_handle)
1600{
1601 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
1602 child_handle);
1603 return EFI_EXIT(EFI_INVALID_PARAMETER);
1604}
1605
332468f7
HS
1606/*
1607 * Close a protocol.
1608 *
1609 * This function implements the CloseProtocol service.
1610 * See the Unified Extensible Firmware Interface (UEFI) specification
1611 * for details.
1612 *
1613 * @handle handle on which the protocol shall be closed
1614 * @protocol GUID of the protocol to close
1615 * @agent_handle handle of the driver
1616 * @controller_handle handle of the controller
1617 * @return status code
1618 */
bee91169 1619static efi_status_t EFIAPI efi_close_protocol(void *handle,
5a9682d0 1620 const efi_guid_t *protocol,
bee91169
AG
1621 void *agent_handle,
1622 void *controller_handle)
1623{
778e6af8 1624 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
bee91169
AG
1625 controller_handle);
1626 return EFI_EXIT(EFI_NOT_FOUND);
1627}
1628
332468f7
HS
1629/*
1630 * Provide information about then open status of a protocol on a handle
1631 *
1632 * This function implements the OpenProtocolInformation service.
1633 * See the Unified Extensible Firmware Interface (UEFI) specification
1634 * for details.
1635 *
1636 * @handle handle for which the information shall be retrieved
1637 * @protocol GUID of the protocol
1638 * @entry_buffer buffer to receive the open protocol information
1639 * @entry_count number of entries available in the buffer
1640 * @return status code
1641 */
bee91169 1642static efi_status_t EFIAPI efi_open_protocol_information(efi_handle_t handle,
5a9682d0 1643 const efi_guid_t *protocol,
bee91169 1644 struct efi_open_protocol_info_entry **entry_buffer,
f5a2a938 1645 efi_uintn_t *entry_count)
bee91169 1646{
778e6af8 1647 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
bee91169
AG
1648 entry_count);
1649 return EFI_EXIT(EFI_NOT_FOUND);
1650}
1651
332468f7
HS
1652/*
1653 * Get protocols installed on a handle.
1654 *
1655 * This function implements the ProtocolsPerHandleService.
1656 * See the Unified Extensible Firmware Interface (UEFI) specification
1657 * for details.
1658 *
1659 * @handle handle for which the information is retrieved
1660 * @protocol_buffer buffer with protocol GUIDs
1661 * @protocol_buffer_count number of entries in the buffer
10a08c4e 1662 * @return status code
332468f7 1663 */
bee91169
AG
1664static efi_status_t EFIAPI efi_protocols_per_handle(void *handle,
1665 efi_guid_t ***protocol_buffer,
f5a2a938 1666 efi_uintn_t *protocol_buffer_count)
bee91169 1667{
c0ebfc86 1668 unsigned long buffer_size;
1669 struct efi_object *efiobj;
1670 unsigned long i, j;
1671 struct list_head *lhandle;
1672 efi_status_t r;
1673
bee91169
AG
1674 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
1675 protocol_buffer_count);
c0ebfc86 1676
1677 if (!handle || !protocol_buffer || !protocol_buffer_count)
1678 return EFI_EXIT(EFI_INVALID_PARAMETER);
1679
1680 *protocol_buffer = NULL;
661c8327 1681 *protocol_buffer_count = 0;
c0ebfc86 1682 list_for_each(lhandle, &efi_obj_list) {
1683 efiobj = list_entry(lhandle, struct efi_object, link);
1684
1685 if (efiobj->handle != handle)
1686 continue;
1687
1688 /* Count protocols */
1689 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
1690 if (efiobj->protocols[i].guid)
1691 ++*protocol_buffer_count;
1692 }
1693 /* Copy guids */
1694 if (*protocol_buffer_count) {
1695 buffer_size = sizeof(efi_guid_t *) *
1696 *protocol_buffer_count;
1697 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES,
1698 buffer_size,
1699 (void **)protocol_buffer);
1700 if (r != EFI_SUCCESS)
1701 return EFI_EXIT(r);
1702 j = 0;
1703 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); ++i) {
1704 if (efiobj->protocols[i].guid) {
1705 (*protocol_buffer)[j] = (void *)
1706 efiobj->protocols[i].guid;
1707 ++j;
1708 }
1709 }
1710 }
1711 break;
1712 }
1713
1714 return EFI_EXIT(EFI_SUCCESS);
bee91169
AG
1715}
1716
332468f7
HS
1717/*
1718 * Locate handles implementing a protocol.
1719 *
1720 * This function implements the LocateHandleBuffer service.
1721 * See the Unified Extensible Firmware Interface (UEFI) specification
1722 * for details.
1723 *
1724 * @search_type selection criterion
1725 * @protocol GUID of the protocol
1726 * @search_key registration key
1727 * @no_handles number of returned handles
1728 * @buffer buffer with the returned handles
1729 * @return status code
1730 */
bee91169
AG
1731static efi_status_t EFIAPI efi_locate_handle_buffer(
1732 enum efi_locate_search_type search_type,
5a9682d0 1733 const efi_guid_t *protocol, void *search_key,
f5a2a938 1734 efi_uintn_t *no_handles, efi_handle_t **buffer)
bee91169 1735{
c2e703f9 1736 efi_status_t r;
f5a2a938 1737 efi_uintn_t buffer_size = 0;
c2e703f9 1738
778e6af8 1739 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
bee91169 1740 no_handles, buffer);
c2e703f9 1741
1742 if (!no_handles || !buffer) {
1743 r = EFI_INVALID_PARAMETER;
1744 goto out;
1745 }
1746 *no_handles = 0;
1747 *buffer = NULL;
1748 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
1749 *buffer);
1750 if (r != EFI_BUFFER_TOO_SMALL)
1751 goto out;
1752 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
1753 (void **)buffer);
1754 if (r != EFI_SUCCESS)
1755 goto out;
1756 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
1757 *buffer);
1758 if (r == EFI_SUCCESS)
1759 *no_handles = buffer_size / sizeof(void *);
1760out:
1761 return EFI_EXIT(r);
bee91169
AG
1762}
1763
332468f7
HS
1764/*
1765 * Find an interface implementing a protocol.
1766 *
1767 * This function implements the LocateProtocol service.
1768 * See the Unified Extensible Firmware Interface (UEFI) specification
1769 * for details.
1770 *
1771 * @protocol GUID of the protocol
1772 * @registration registration key passed to the notification function
1773 * @protocol_interface interface implementing the protocol
10a08c4e 1774 * @return status code
332468f7 1775 */
5a9682d0 1776static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
bee91169
AG
1777 void *registration,
1778 void **protocol_interface)
1779{
88adae5e 1780 struct list_head *lhandle;
9172cd91 1781 efi_status_t ret;
bee91169 1782
778e6af8 1783 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
88adae5e 1784
1785 if (!protocol || !protocol_interface)
1786 return EFI_EXIT(EFI_INVALID_PARAMETER);
1787
1788 list_for_each(lhandle, &efi_obj_list) {
1789 struct efi_object *efiobj;
9172cd91 1790 struct efi_handler *handler;
88adae5e 1791
1792 efiobj = list_entry(lhandle, struct efi_object, link);
9172cd91
HS
1793
1794 ret = efi_search_protocol(efiobj->handle, protocol, &handler);
1795 if (ret == EFI_SUCCESS) {
1796 *protocol_interface = handler->protocol_interface;
1797 return EFI_EXIT(EFI_SUCCESS);
bee91169
AG
1798 }
1799 }
88adae5e 1800 *protocol_interface = NULL;
bee91169
AG
1801
1802 return EFI_EXIT(EFI_NOT_FOUND);
1803}
1804
332468f7
HS
1805/*
1806 * Install multiple protocol interfaces.
1807 *
1808 * This function implements the MultipleProtocolInterfaces service.
1809 * See the Unified Extensible Firmware Interface (UEFI) specification
1810 * for details.
1811 *
1812 * @handle handle on which the protocol interfaces shall be installed
1813 * @... NULL terminated argument list with pairs of protocol GUIDS and
1814 * interfaces
1815 * @return status code
1816 */
bee91169
AG
1817static efi_status_t EFIAPI efi_install_multiple_protocol_interfaces(
1818 void **handle, ...)
1819{
1820 EFI_ENTRY("%p", handle);
58b83586 1821
1822 va_list argptr;
5a9682d0 1823 const efi_guid_t *protocol;
58b83586 1824 void *protocol_interface;
1825 efi_status_t r = EFI_SUCCESS;
1826 int i = 0;
1827
1828 if (!handle)
1829 return EFI_EXIT(EFI_INVALID_PARAMETER);
1830
1831 va_start(argptr, handle);
1832 for (;;) {
1833 protocol = va_arg(argptr, efi_guid_t*);
1834 if (!protocol)
1835 break;
1836 protocol_interface = va_arg(argptr, void*);
1760ef57
HS
1837 r = EFI_CALL(efi_install_protocol_interface(
1838 handle, protocol,
1839 EFI_NATIVE_INTERFACE,
1840 protocol_interface));
58b83586 1841 if (r != EFI_SUCCESS)
1842 break;
1843 i++;
1844 }
1845 va_end(argptr);
1846 if (r == EFI_SUCCESS)
1847 return EFI_EXIT(r);
1848
62471e46 1849 /* If an error occurred undo all changes. */
58b83586 1850 va_start(argptr, handle);
1851 for (; i; --i) {
1852 protocol = va_arg(argptr, efi_guid_t*);
1853 protocol_interface = va_arg(argptr, void*);
cd534083
HS
1854 EFI_CALL(efi_uninstall_protocol_interface(handle, protocol,
1855 protocol_interface));
58b83586 1856 }
1857 va_end(argptr);
1858
1859 return EFI_EXIT(r);
bee91169
AG
1860}
1861
332468f7
HS
1862/*
1863 * Uninstall multiple protocol interfaces.
1864 *
1865 * This function implements the UninstallMultipleProtocolInterfaces service.
1866 * See the Unified Extensible Firmware Interface (UEFI) specification
1867 * for details.
1868 *
1869 * @handle handle from which the protocol interfaces shall be removed
1870 * @... NULL terminated argument list with pairs of protocol GUIDS and
1871 * interfaces
1872 * @return status code
1873 */
bee91169
AG
1874static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
1875 void *handle, ...)
1876{
1877 EFI_ENTRY("%p", handle);
843ce54c
HS
1878
1879 va_list argptr;
1880 const efi_guid_t *protocol;
1881 void *protocol_interface;
1882 efi_status_t r = EFI_SUCCESS;
1883 size_t i = 0;
1884
1885 if (!handle)
1886 return EFI_EXIT(EFI_INVALID_PARAMETER);
1887
1888 va_start(argptr, handle);
1889 for (;;) {
1890 protocol = va_arg(argptr, efi_guid_t*);
1891 if (!protocol)
1892 break;
1893 protocol_interface = va_arg(argptr, void*);
1894 r = EFI_CALL(efi_uninstall_protocol_interface(
1895 handle, protocol,
1896 protocol_interface));
1897 if (r != EFI_SUCCESS)
1898 break;
1899 i++;
1900 }
1901 va_end(argptr);
1902 if (r == EFI_SUCCESS)
1903 return EFI_EXIT(r);
1904
1905 /* If an error occurred undo all changes. */
1906 va_start(argptr, handle);
1907 for (; i; --i) {
1908 protocol = va_arg(argptr, efi_guid_t*);
1909 protocol_interface = va_arg(argptr, void*);
1910 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
1911 EFI_NATIVE_INTERFACE,
1912 protocol_interface));
1913 }
1914 va_end(argptr);
1915
1916 return EFI_EXIT(r);
bee91169
AG
1917}
1918
332468f7
HS
1919/*
1920 * Calculate cyclic redundancy code.
1921 *
1922 * This function implements the CalculateCrc32 service.
1923 * See the Unified Extensible Firmware Interface (UEFI) specification
1924 * for details.
1925 *
1926 * @data buffer with data
1927 * @data_size size of buffer in bytes
1928 * @crc32_p cyclic redundancy code
1929 * @return status code
1930 */
bee91169
AG
1931static efi_status_t EFIAPI efi_calculate_crc32(void *data,
1932 unsigned long data_size,
1933 uint32_t *crc32_p)
1934{
1935 EFI_ENTRY("%p, %ld", data, data_size);
1936 *crc32_p = crc32(0, data, data_size);
1937 return EFI_EXIT(EFI_SUCCESS);
1938}
1939
332468f7
HS
1940/*
1941 * Copy memory.
1942 *
1943 * This function implements the CopyMem service.
1944 * See the Unified Extensible Firmware Interface (UEFI) specification
1945 * for details.
1946 *
1947 * @destination destination of the copy operation
1948 * @source source of the copy operation
1949 * @length number of bytes to copy
1950 */
fc05a959
HS
1951static void EFIAPI efi_copy_mem(void *destination, const void *source,
1952 size_t length)
bee91169 1953{
fc05a959 1954 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
bee91169 1955 memcpy(destination, source, length);
f7c78176 1956 EFI_EXIT(EFI_SUCCESS);
bee91169
AG
1957}
1958
332468f7
HS
1959/*
1960 * Fill memory with a byte value.
1961 *
1962 * This function implements the SetMem service.
1963 * See the Unified Extensible Firmware Interface (UEFI) specification
1964 * for details.
1965 *
1966 * @buffer buffer to fill
1967 * @size size of buffer in bytes
1968 * @value byte to copy to the buffer
1969 */
fc05a959 1970static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
bee91169 1971{
fc05a959 1972 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
bee91169 1973 memset(buffer, value, size);
f7c78176 1974 EFI_EXIT(EFI_SUCCESS);
bee91169
AG
1975}
1976
332468f7
HS
1977/*
1978 * Open protocol interface on a handle.
1979 *
1980 * This function implements the OpenProtocol interface.
1981 * See the Unified Extensible Firmware Interface (UEFI) specification
1982 * for details.
1983 *
1984 * @handle handle on which the protocol shall be opened
1985 * @protocol GUID of the protocol
1986 * @protocol_interface interface implementing the protocol
1987 * @agent_handle handle of the driver
1988 * @controller_handle handle of the controller
1989 * @attributes attributes indicating how to open the protocol
1990 * @return status code
1991 */
bee91169 1992static efi_status_t EFIAPI efi_open_protocol(
5a9682d0 1993 void *handle, const efi_guid_t *protocol,
bee91169
AG
1994 void **protocol_interface, void *agent_handle,
1995 void *controller_handle, uint32_t attributes)
1996{
1997 struct list_head *lhandle;
1998 int i;
69baec67 1999 efi_status_t r = EFI_INVALID_PARAMETER;
bee91169 2000
778e6af8 2001 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
bee91169
AG
2002 protocol_interface, agent_handle, controller_handle,
2003 attributes);
b5349f74 2004
69baec67 2005 if (!handle || !protocol ||
2006 (!protocol_interface && attributes !=
2007 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2008 goto out;
2009 }
2010
ae0bd3a9
HS
2011 EFI_PRINT_GUID("protocol", protocol);
2012
69baec67 2013 switch (attributes) {
2014 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2015 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2016 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2017 break;
2018 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2019 if (controller_handle == handle)
2020 goto out;
2021 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2022 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
2023 if (controller_handle == NULL)
2024 goto out;
2025 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
2026 if (agent_handle == NULL)
2027 goto out;
2028 break;
2029 default:
b5349f74 2030 goto out;
2031 }
2032
bee91169
AG
2033 list_for_each(lhandle, &efi_obj_list) {
2034 struct efi_object *efiobj;
2035 efiobj = list_entry(lhandle, struct efi_object, link);
2036
2037 if (efiobj->handle != handle)
2038 continue;
2039
2040 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
2041 struct efi_handler *handler = &efiobj->protocols[i];
2042 const efi_guid_t *hprotocol = handler->guid;
2043 if (!hprotocol)
4b6ed0d7 2044 continue;
bee91169 2045 if (!guidcmp(hprotocol, protocol)) {
b5349f74 2046 if (attributes !=
2047 EFI_OPEN_PROTOCOL_TEST_PROTOCOL) {
2048 *protocol_interface =
2049 handler->protocol_interface;
2050 }
2051 r = EFI_SUCCESS;
bee91169
AG
2052 goto out;
2053 }
2054 }
69baec67 2055 goto unsupported;
bee91169
AG
2056 }
2057
69baec67 2058unsupported:
2059 r = EFI_UNSUPPORTED;
bee91169
AG
2060out:
2061 return EFI_EXIT(r);
2062}
2063
332468f7
HS
2064/*
2065 * Get interface of a protocol on a handle.
2066 *
2067 * This function implements the HandleProtocol service.
2068 * See the Unified Extensible Firmware Interface (UEFI) specification
2069 * for details.
2070 *
2071 * @handle handle on which the protocol shall be opened
2072 * @protocol GUID of the protocol
2073 * @protocol_interface interface implementing the protocol
2074 * @return status code
2075 */
bee91169 2076static efi_status_t EFIAPI efi_handle_protocol(void *handle,
5a9682d0 2077 const efi_guid_t *protocol,
bee91169
AG
2078 void **protocol_interface)
2079{
8e1d329f 2080 return efi_open_protocol(handle, protocol, protocol_interface, NULL,
2081 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
bee91169
AG
2082}
2083
2084static const struct efi_boot_services efi_boot_services = {
2085 .hdr = {
2086 .headersize = sizeof(struct efi_table_hdr),
2087 },
2088 .raise_tpl = efi_raise_tpl,
2089 .restore_tpl = efi_restore_tpl,
2090 .allocate_pages = efi_allocate_pages_ext,
2091 .free_pages = efi_free_pages_ext,
2092 .get_memory_map = efi_get_memory_map_ext,
ead1274b 2093 .allocate_pool = efi_allocate_pool_ext,
42417bc8 2094 .free_pool = efi_free_pool_ext,
49deb455 2095 .create_event = efi_create_event_ext,
bfc72462 2096 .set_timer = efi_set_timer_ext,
bee91169 2097 .wait_for_event = efi_wait_for_event,
c6841592 2098 .signal_event = efi_signal_event_ext,
bee91169
AG
2099 .close_event = efi_close_event,
2100 .check_event = efi_check_event,
1760ef57 2101 .install_protocol_interface = efi_install_protocol_interface,
bee91169 2102 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
cd534083 2103 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
bee91169
AG
2104 .handle_protocol = efi_handle_protocol,
2105 .reserved = NULL,
2106 .register_protocol_notify = efi_register_protocol_notify,
26329584 2107 .locate_handle = efi_locate_handle_ext,
bee91169 2108 .locate_device_path = efi_locate_device_path,
488bf12d 2109 .install_configuration_table = efi_install_configuration_table_ext,
bee91169
AG
2110 .load_image = efi_load_image,
2111 .start_image = efi_start_image,
a86aeaf2 2112 .exit = efi_exit,
bee91169
AG
2113 .unload_image = efi_unload_image,
2114 .exit_boot_services = efi_exit_boot_services,
2115 .get_next_monotonic_count = efi_get_next_monotonic_count,
2116 .stall = efi_stall,
2117 .set_watchdog_timer = efi_set_watchdog_timer,
2118 .connect_controller = efi_connect_controller,
2119 .disconnect_controller = efi_disconnect_controller,
2120 .open_protocol = efi_open_protocol,
2121 .close_protocol = efi_close_protocol,
2122 .open_protocol_information = efi_open_protocol_information,
2123 .protocols_per_handle = efi_protocols_per_handle,
2124 .locate_handle_buffer = efi_locate_handle_buffer,
2125 .locate_protocol = efi_locate_protocol,
2126 .install_multiple_protocol_interfaces = efi_install_multiple_protocol_interfaces,
2127 .uninstall_multiple_protocol_interfaces = efi_uninstall_multiple_protocol_interfaces,
2128 .calculate_crc32 = efi_calculate_crc32,
2129 .copy_mem = efi_copy_mem,
2130 .set_mem = efi_set_mem,
2131};
2132
2133
3c63db9c 2134static uint16_t __efi_runtime_data firmware_vendor[] =
bee91169
AG
2135 { 'D','a','s',' ','U','-','b','o','o','t',0 };
2136
3c63db9c 2137struct efi_system_table __efi_runtime_data systab = {
bee91169
AG
2138 .hdr = {
2139 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
2140 .revision = 0x20005, /* 2.5 */
2141 .headersize = sizeof(struct efi_table_hdr),
2142 },
2143 .fw_vendor = (long)firmware_vendor,
2144 .con_in = (void*)&efi_con_in,
2145 .con_out = (void*)&efi_con_out,
2146 .std_err = (void*)&efi_con_out,
2147 .runtime = (void*)&efi_runtime_services,
2148 .boottime = (void*)&efi_boot_services,
2149 .nr_tables = 0,
2150 .tables = (void*)efi_conf_table,
2151};