blob: 9b5512f0865058321207b9b917cdab68782ccd12 [file] [log] [blame]
Alexander Grafbee91162016-03-04 01:09:59 +01001/*
2 * EFI application boot time services
3 *
4 * Copyright (c) 2016 Alexander Graf
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
Alexander Grafbee91162016-03-04 01:09:59 +01009#include <common.h>
Heinrich Schuchardt7d963322017-10-05 16:14:14 +020010#include <div64.h>
Alexander Grafbee91162016-03-04 01:09:59 +010011#include <efi_loader.h>
Rob Clarkad644e72017-09-13 18:05:37 -040012#include <environment.h>
Alexander Grafbee91162016-03-04 01:09:59 +010013#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
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020023/* Task priority level */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +010024static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020025
Alexander Grafbee91162016-03-04 01:09:59 +010026/* 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 */
Alexander Graf3c63db92016-10-14 13:45:30 +020045static struct efi_configuration_table __efi_runtime_data efi_conf_table[2];
Alexander Grafbee91162016-03-04 01:09:59 +010046
Simon Glass65e4c0b2016-09-25 15:27:35 -060047#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +010048/*
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;
Simon Glass65e4c0b2016-09-25 15:27:35 -060055#endif
Alexander Grafbee91162016-03-04 01:09:59 +010056
Rob Clarkc160d2f2017-07-27 08:04:18 -040057static int entry_count;
Rob Clarkaf65db82017-07-27 08:04:19 -040058static int nesting_level;
Rob Clarkc160d2f2017-07-27 08:04:18 -040059
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
Alexander Grafbee91162016-03-04 01:09:59 +010082/* Called from do_bootefi_exec() */
83void efi_save_gd(void)
84{
Simon Glass65e4c0b2016-09-25 15:27:35 -060085#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +010086 efi_gd = gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -060087#endif
Alexander Grafbee91162016-03-04 01:09:59 +010088}
89
Rob Clarkc160d2f2017-07-27 08:04:18 -040090/*
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 */
Alexander Grafbee91162016-03-04 01:09:59 +010095void efi_restore_gd(void)
96{
Simon Glass65e4c0b2016-09-25 15:27:35 -060097#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +010098 /* Only restore if we're already in EFI context */
99 if (!efi_gd)
100 return;
Alexander Grafbee91162016-03-04 01:09:59 +0100101 gd = efi_gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -0600102#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100103}
104
Rob Clarkaf65db82017-07-27 08:04:19 -0400105/*
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
Heinrich Schuchardtae0bd3a2017-08-18 17:45:16 +0200117const char *__efi_nesting(void)
118{
119 return indent_string(nesting_level);
120}
121
Rob Clarkaf65db82017-07-27 08:04:19 -0400122const 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
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200132/*
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 */
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +0200145void efi_signal_event(struct efi_event *event)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200146{
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200147 if (event->notify_function) {
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200148 event->is_queued = true;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200149 /* Check TPL */
150 if (efi_tpl >= event->notify_tpl)
151 return;
Heinrich Schuchardtea630ce2017-09-15 10:06:10 +0200152 EFI_CALL_VOID(event->notify_function(event,
153 event->notify_context));
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200154 }
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200155 event->is_queued = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200156}
157
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200158/*
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200159 * 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 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100168static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100169{
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100170 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200171
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200172 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200173
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;
Alexander Grafbee91162016-03-04 01:09:59 +0100182}
183
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200184/*
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 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100193static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100194{
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200195 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200196
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);
Alexander Grafbee91162016-03-04 01:09:59 +0100204}
205
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200206/*
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 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900219static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100220 efi_uintn_t pages,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900221 uint64_t *memory)
Alexander Grafbee91162016-03-04 01:09:59 +0100222{
223 efi_status_t r;
224
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100225 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafbee91162016-03-04 01:09:59 +0100226 r = efi_allocate_pages(type, memory_type, pages, memory);
227 return EFI_EXIT(r);
228}
229
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200230/*
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 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900241static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100242 efi_uintn_t pages)
Alexander Grafbee91162016-03-04 01:09:59 +0100243{
244 efi_status_t r;
245
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100246 EFI_ENTRY("%"PRIx64", 0x%zx", memory, pages);
Alexander Grafbee91162016-03-04 01:09:59 +0100247 r = efi_free_pages(memory, pages);
248 return EFI_EXIT(r);
249}
250
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200251/*
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 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900266static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100267 efi_uintn_t *memory_map_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900268 struct efi_mem_desc *memory_map,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100269 efi_uintn_t *map_key,
270 efi_uintn_t *descriptor_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900271 uint32_t *descriptor_version)
Alexander Grafbee91162016-03-04 01:09:59 +0100272{
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
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200282/*
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 */
Stefan Brünsead12742016-10-09 22:17:18 +0200294static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100295 efi_uintn_t size,
Stefan Brünsead12742016-10-09 22:17:18 +0200296 void **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100297{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100298 efi_status_t r;
299
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100300 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
Stefan Brünsead12742016-10-09 22:17:18 +0200301 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100302 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100303}
304
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200305/*
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 */
Stefan Brüns42417bc2016-10-09 22:17:26 +0200315static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100316{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100317 efi_status_t r;
318
319 EFI_ENTRY("%p", buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200320 r = efi_free_pool(buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100321 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100322}
323
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200324/*
325 * Create handle.
326 *
327 * @handle new handle
328 * @return status code
329 */
330efi_status_t efi_create_handle(void **handle)
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200331{
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
Alexander Grafbee91162016-03-04 01:09:59 +0100347/*
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200348 * Our event capabilities are very limited. Only a small limited
349 * number of events is allowed to coexist.
Alexander Grafbee91162016-03-04 01:09:59 +0100350 */
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200351static struct efi_event efi_events[16];
Alexander Grafbee91162016-03-04 01:09:59 +0100352
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200353/*
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 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100368efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200369 void (EFIAPI *notify_function) (
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200370 struct efi_event *event,
371 void *context),
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200372 void *notify_context, struct efi_event **event)
Alexander Grafbee91162016-03-04 01:09:59 +0100373{
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200374 int i;
375
Jonathan Graya95343b2017-03-12 19:26:07 +1100376 if (event == NULL)
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200377 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100378
379 if ((type & EVT_NOTIFY_SIGNAL) && (type & EVT_NOTIFY_WAIT))
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200380 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100381
382 if ((type & (EVT_NOTIFY_SIGNAL|EVT_NOTIFY_WAIT)) &&
383 notify_function == NULL)
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200384 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100385
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200386 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;
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200395 efi_events[i].is_queued = false;
396 efi_events[i].is_signaled = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200397 *event = &efi_events[i];
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200398 return EFI_SUCCESS;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200399 }
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200400 return EFI_OUT_OF_RESOURCES;
Alexander Grafbee91162016-03-04 01:09:59 +0100401}
402
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200403/*
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 */
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200417static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100418 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200419 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
Alexander Grafbee91162016-03-04 01:09:59 +0100431/*
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200432 * Check if a timer event has occurred or a queued notification function should
433 * be called.
434 *
Alexander Grafbee91162016-03-04 01:09:59 +0100435 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200436 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafbee91162016-03-04 01:09:59 +0100437 */
438void efi_timer_check(void)
439{
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200440 int i;
Alexander Grafbee91162016-03-04 01:09:59 +0100441 u64 now = timer_get_us();
442
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200443 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200444 if (!efi_events[i].type)
445 continue;
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200446 if (efi_events[i].is_queued)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200447 efi_signal_event(&efi_events[i]);
448 if (!(efi_events[i].type & EVT_TIMER) ||
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200449 now < efi_events[i].trigger_next)
450 continue;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200451 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:
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200456 efi_events[i].trigger_next +=
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200457 efi_events[i].trigger_time;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200458 break;
459 default:
460 continue;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200461 }
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200462 efi_events[i].is_signaled = true;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200463 efi_signal_event(&efi_events[i]);
Alexander Grafbee91162016-03-04 01:09:59 +0100464 }
Alexander Grafbee91162016-03-04 01:09:59 +0100465 WATCHDOG_RESET();
466}
467
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200468/*
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 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200479efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200480 uint64_t trigger_time)
Alexander Grafbee91162016-03-04 01:09:59 +0100481{
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200482 int i;
Alexander Grafbee91162016-03-04 01:09:59 +0100483
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200484 /*
485 * The parameter defines a multiple of 100ns.
486 * We use multiples of 1000ns. So divide by 10.
487 */
Heinrich Schuchardt7d963322017-10-05 16:14:14 +0200488 do_div(trigger_time, 10);
Alexander Grafbee91162016-03-04 01:09:59 +0100489
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200490 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
491 if (event != &efi_events[i])
492 continue;
Alexander Grafbee91162016-03-04 01:09:59 +0100493
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200494 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 =
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200503 timer_get_us() + trigger_time;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200504 break;
505 default:
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200506 return EFI_INVALID_PARAMETER;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200507 }
508 event->trigger_type = type;
509 event->trigger_time = trigger_time;
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200510 event->is_signaled = false;
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200511 return EFI_SUCCESS;
Alexander Grafbee91162016-03-04 01:09:59 +0100512 }
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200513 return EFI_INVALID_PARAMETER;
514}
515
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200516/*
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 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200528static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
529 enum efi_timer_delay type,
530 uint64_t trigger_time)
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200531{
532 EFI_ENTRY("%p, %d, %"PRIx64, event, type, trigger_time);
533 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
Alexander Grafbee91162016-03-04 01:09:59 +0100534}
535
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200536/*
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 */
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100548static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200549 struct efi_event **event,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100550 efi_uintn_t *index)
Alexander Grafbee91162016-03-04 01:09:59 +0100551{
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200552 int i, j;
Alexander Grafbee91162016-03-04 01:09:59 +0100553
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100554 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafbee91162016-03-04 01:09:59 +0100555
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200556 /* Check parameters */
557 if (!num_events || !event)
558 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200559 /* Check TPL */
560 if (efi_tpl != TPL_APPLICATION)
561 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200562 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);
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200571 if (!event[i]->is_signaled)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200572 efi_signal_event(event[i]);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200573 }
574
575 /* Wait for signal */
576 for (;;) {
577 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200578 if (event[i]->is_signaled)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200579 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 */
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200590 event[i]->is_signaled = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200591 if (index)
592 *index = i;
Alexander Grafbee91162016-03-04 01:09:59 +0100593
594 return EFI_EXIT(EFI_SUCCESS);
595}
596
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200597/*
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
Heinrich Schuchardt10a08c42017-10-08 06:57:27 +0200608 * @return status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200609 */
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200610static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100611{
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200612 int i;
613
Alexander Grafbee91162016-03-04 01:09:59 +0100614 EFI_ENTRY("%p", event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200615 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
616 if (event != &efi_events[i])
617 continue;
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200618 if (event->is_signaled)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200619 break;
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200620 event->is_signaled = true;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200621 if (event->type & EVT_NOTIFY_SIGNAL)
622 efi_signal_event(event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200623 break;
624 }
Alexander Grafbee91162016-03-04 01:09:59 +0100625 return EFI_EXIT(EFI_SUCCESS);
626}
627
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200628/*
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 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200638static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100639{
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200640 int i;
641
Alexander Grafbee91162016-03-04 01:09:59 +0100642 EFI_ENTRY("%p", event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200643 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
644 if (event == &efi_events[i]) {
645 event->type = 0;
646 event->trigger_next = -1ULL;
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200647 event->is_queued = false;
648 event->is_signaled = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200649 return EFI_EXIT(EFI_SUCCESS);
650 }
651 }
652 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafbee91162016-03-04 01:09:59 +0100653}
654
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200655/*
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 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200667static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100668{
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200669 int i;
670
Alexander Grafbee91162016-03-04 01:09:59 +0100671 EFI_ENTRY("%p", event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200672 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;
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200678 if (!event->is_signaled)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200679 efi_signal_event(event);
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200680 if (event->is_signaled)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200681 return EFI_EXIT(EFI_SUCCESS);
682 return EFI_EXIT(EFI_NOT_READY);
683 }
684 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafbee91162016-03-04 01:09:59 +0100685}
686
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200687/*
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200688 * Find the internal EFI object for a handle.
689 *
690 * @handle handle to find
691 * @return EFI object
692 */
Heinrich Schuchardt085d07c2017-10-26 19:25:50 +0200693struct efi_object *efi_search_obj(const void *handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200694{
Heinrich Schuchardt1b681532017-11-06 21:17:50 +0100695 struct efi_object *efiobj;
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200696
Heinrich Schuchardt1b681532017-11-06 21:17:50 +0100697 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200698 if (efiobj->handle == handle)
699 return efiobj;
700 }
701
702 return NULL;
703}
704
705/*
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +0200706 * 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
824/*
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200825 * Install protocol interface.
826 *
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +0100827 * This function implements the InstallProtocolInterface service.
828 * See the Unified Extensible Firmware Interface (UEFI) specification
829 * for details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200830 *
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 */
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +0100838static efi_status_t EFIAPI efi_install_protocol_interface(
839 void **handle, const efi_guid_t *protocol,
840 int protocol_interface_type, void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +0100841{
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +0200842 efi_status_t r;
843
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +0100844 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
845 protocol_interface);
846
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +0200847 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) {
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200855 r = efi_create_handle(handle);
856 if (r != EFI_SUCCESS)
857 goto out;
Heinrich Schuchardtaf1408e2017-10-26 19:25:43 +0200858 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);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +0200863 }
Heinrich Schuchardt12025302017-10-26 19:25:54 +0200864 /* Add new protocol */
865 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +0200866out:
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +0100867 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100868}
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +0200869
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200870/*
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 */
Alexander Grafbee91162016-03-04 01:09:59 +0100884static efi_status_t EFIAPI efi_reinstall_protocol_interface(void *handle,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +0200885 const efi_guid_t *protocol, void *old_interface,
Alexander Grafbee91162016-03-04 01:09:59 +0100886 void *new_interface)
887{
Rob Clark778e6af2017-09-13 18:05:41 -0400888 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
Alexander Grafbee91162016-03-04 01:09:59 +0100889 new_interface);
890 return EFI_EXIT(EFI_ACCESS_DENIED);
891}
892
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200893/*
894 * Uninstall protocol interface.
895 *
Heinrich Schuchardtcd534082017-11-06 21:17:45 +0100896 * This function implements the UninstallProtocolInterface service.
897 * See the Unified Extensible Firmware Interface (UEFI) specification
898 * for details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200899 *
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 */
Heinrich Schuchardtcd534082017-11-06 21:17:45 +0100905static efi_status_t EFIAPI efi_uninstall_protocol_interface(
906 void *handle, const efi_guid_t *protocol,
907 void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +0100908{
Heinrich Schuchardt58105112017-10-26 19:25:56 +0200909 struct efi_handler *handler;
910 efi_status_t r;
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +0200911
Heinrich Schuchardtcd534082017-11-06 21:17:45 +0100912 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
913
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +0200914 if (!handle || !protocol) {
915 r = EFI_INVALID_PARAMETER;
916 goto out;
917 }
918
Heinrich Schuchardt58105112017-10-26 19:25:56 +0200919 /* 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);
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +0200928 }
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +0200929out:
Heinrich Schuchardtcd534082017-11-06 21:17:45 +0100930 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100931}
932
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200933/*
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 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +0200946static efi_status_t EFIAPI efi_register_protocol_notify(
947 const efi_guid_t *protocol,
948 struct efi_event *event,
949 void **registration)
Alexander Grafbee91162016-03-04 01:09:59 +0100950{
Rob Clark778e6af2017-09-13 18:05:41 -0400951 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Alexander Grafbee91162016-03-04 01:09:59 +0100952 return EFI_EXIT(EFI_OUT_OF_RESOURCES);
953}
954
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200955/*
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 */
Alexander Grafbee91162016-03-04 01:09:59 +0100966static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +0200967 const efi_guid_t *protocol, void *search_key,
Alexander Grafbee91162016-03-04 01:09:59 +0100968 struct efi_object *efiobj)
969{
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +0200970 efi_status_t ret;
Alexander Grafbee91162016-03-04 01:09:59 +0100971
972 switch (search_type) {
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +0100973 case ALL_HANDLES:
Alexander Grafbee91162016-03-04 01:09:59 +0100974 return 0;
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +0100975 case BY_REGISTER_NOTIFY:
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +0200976 /* TODO: RegisterProtocolNotify is not implemented yet */
Alexander Grafbee91162016-03-04 01:09:59 +0100977 return -1;
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +0100978 case BY_PROTOCOL:
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +0200979 ret = efi_search_protocol(efiobj->handle, protocol, NULL);
980 return (ret != EFI_SUCCESS);
981 default:
982 /* Invalid search type */
Alexander Grafbee91162016-03-04 01:09:59 +0100983 return -1;
984 }
Alexander Grafbee91162016-03-04 01:09:59 +0100985}
986
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200987/*
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 */
xypron.glpk@gmx.deebf199b2017-08-09 20:55:00 +02001000static efi_status_t efi_locate_handle(
Alexander Grafbee91162016-03-04 01:09:59 +01001001 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001002 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001003 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01001004{
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001005 struct efi_object *efiobj;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001006 efi_uintn_t size = 0;
Alexander Grafbee91162016-03-04 01:09:59 +01001007
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001008 /* 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
Alexander Grafbee91162016-03-04 01:09:59 +01001033 /* Count how much space we need */
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001034 list_for_each_entry(efiobj, &efi_obj_list, link) {
1035 if (!efi_search(search_type, protocol, search_key, efiobj))
Alexander Grafbee91162016-03-04 01:09:59 +01001036 size += sizeof(void*);
Alexander Grafbee91162016-03-04 01:09:59 +01001037 }
1038
1039 if (*buffer_size < size) {
1040 *buffer_size = size;
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001041 return EFI_BUFFER_TOO_SMALL;
Alexander Grafbee91162016-03-04 01:09:59 +01001042 }
1043
Rob Clark796a78c2017-08-06 14:10:07 -04001044 *buffer_size = size;
1045 if (size == 0)
1046 return EFI_NOT_FOUND;
1047
Alexander Grafbee91162016-03-04 01:09:59 +01001048 /* Then fill the array */
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001049 list_for_each_entry(efiobj, &efi_obj_list, link) {
1050 if (!efi_search(search_type, protocol, search_key, efiobj))
1051 *buffer++ = efiobj->handle;
Alexander Grafbee91162016-03-04 01:09:59 +01001052 }
1053
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001054 return EFI_SUCCESS;
1055}
1056
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001057/*
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 */
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001071static efi_status_t EFIAPI efi_locate_handle_ext(
1072 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001073 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001074 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001075{
Rob Clark778e6af2017-09-13 18:05:41 -04001076 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001077 buffer_size, buffer);
1078
1079 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1080 buffer_size, buffer));
Alexander Grafbee91162016-03-04 01:09:59 +01001081}
1082
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001083/*
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 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001095static efi_status_t EFIAPI efi_locate_device_path(
1096 const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01001097 struct efi_device_path **device_path,
1098 efi_handle_t *device)
1099{
Rob Clarkb66c60d2017-09-13 18:05:28 -04001100 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);
Alexander Grafbee91162016-03-04 01:09:59 +01001111}
1112
Alexander Grafd98cdf62017-07-26 13:41:04 +02001113/* 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
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001124/*
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 */
Alexander Graf488bf122016-08-19 01:23:24 +02001134efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table)
Alexander Grafbee91162016-03-04 01:09:59 +01001135{
1136 int i;
1137
Alexander Grafbee91162016-03-04 01:09:59 +01001138 /* Check for guid override */
1139 for (i = 0; i < systab.nr_tables; i++) {
1140 if (!guidcmp(guid, &efi_conf_table[i].guid)) {
Alexander Grafd98cdf62017-07-26 13:41:04 +02001141 if (table)
1142 efi_conf_table[i].table = table;
1143 else
1144 efi_remove_configuration_table(i);
Alexander Graf488bf122016-08-19 01:23:24 +02001145 return EFI_SUCCESS;
Alexander Grafbee91162016-03-04 01:09:59 +01001146 }
1147 }
1148
Alexander Grafd98cdf62017-07-26 13:41:04 +02001149 if (!table)
1150 return EFI_NOT_FOUND;
1151
Alexander Grafbee91162016-03-04 01:09:59 +01001152 /* No override, check for overflow */
1153 if (i >= ARRAY_SIZE(efi_conf_table))
Alexander Graf488bf122016-08-19 01:23:24 +02001154 return EFI_OUT_OF_RESOURCES;
Alexander Grafbee91162016-03-04 01:09:59 +01001155
1156 /* Add a new entry */
1157 memcpy(&efi_conf_table[i].guid, guid, sizeof(*guid));
1158 efi_conf_table[i].table = table;
Alexander Grafaba5e912016-08-19 01:23:30 +02001159 systab.nr_tables = i + 1;
Alexander Grafbee91162016-03-04 01:09:59 +01001160
Alexander Graf488bf122016-08-19 01:23:24 +02001161 return EFI_SUCCESS;
1162}
1163
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001164/*
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 */
Alexander Graf488bf122016-08-19 01:23:24 +02001175static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1176 void *table)
1177{
Rob Clark778e6af2017-09-13 18:05:41 -04001178 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Graf488bf122016-08-19 01:23:24 +02001179 return EFI_EXIT(efi_install_configuration_table(guid, table));
Alexander Grafbee91162016-03-04 01:09:59 +01001180}
1181
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001182/*
1183 * Initialize a loaded_image_info + loaded_image_info object with correct
Rob Clark95c55532017-09-13 18:05:33 -04001184 * protocols, boot-device, etc.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001185 *
Heinrich Schuchardt10a08c42017-10-08 06:57:27 +02001186 * @info loaded image info to be passed to the entry point of the
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001187 * 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
Rob Clark95c55532017-09-13 18:05:33 -04001191 */
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{
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001196 efi_status_t ret;
1197
Rob Clark95c55532017-09-13 18:05:33 -04001198 obj->handle = info;
1199
Rob Clark95c55532017-09-13 18:05:33 -04001200 info->file_path = file_path;
Heinrich Schuchardt1a2c8d22017-10-08 06:57:26 +02001201 if (device_path)
1202 info->device_handle = efi_dp_find_obj(device_path, NULL);
Rob Clark95c55532017-09-13 18:05:33 -04001203
1204 list_add_tail(&obj->link, &efi_obj_list);
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001205 /*
1206 * When asking for the device path interface, return
1207 * bootefi_device_path
1208 */
1209 ret = efi_add_protocol(obj->handle, &efi_guid_device_path, device_path);
1210 if (ret != EFI_SUCCESS)
1211 goto failure;
1212
1213 /*
1214 * When asking for the loaded_image interface, just
1215 * return handle which points to loaded_image_info
1216 */
1217 ret = efi_add_protocol(obj->handle, &efi_guid_loaded_image, info);
1218 if (ret != EFI_SUCCESS)
1219 goto failure;
1220
1221 ret = efi_add_protocol(obj->handle, &efi_guid_console_control,
1222 (void *)&efi_console_control);
1223 if (ret != EFI_SUCCESS)
1224 goto failure;
1225
1226 ret = efi_add_protocol(obj->handle,
1227 &efi_guid_device_path_to_text_protocol,
1228 (void *)&efi_device_path_to_text);
1229 if (ret != EFI_SUCCESS)
1230 goto failure;
1231
1232 return;
1233failure:
1234 printf("ERROR: Failure to install protocols for loaded image\n");
Rob Clark95c55532017-09-13 18:05:33 -04001235}
1236
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001237/*
1238 * Load an image using a file path.
1239 *
1240 * @file_path the path of the image to load
1241 * @buffer buffer containing the loaded image
Heinrich Schuchardt10a08c42017-10-08 06:57:27 +02001242 * @return status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001243 */
Rob Clark9975fe92017-09-13 18:05:38 -04001244efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
1245 void **buffer)
Rob Clark838ee4b2017-09-13 18:05:35 -04001246{
1247 struct efi_file_info *info = NULL;
1248 struct efi_file_handle *f;
1249 static efi_status_t ret;
1250 uint64_t bs;
1251
1252 f = efi_file_from_path(file_path);
1253 if (!f)
1254 return EFI_DEVICE_ERROR;
1255
1256 bs = 0;
1257 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1258 &bs, info));
1259 if (ret == EFI_BUFFER_TOO_SMALL) {
1260 info = malloc(bs);
1261 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1262 &bs, info));
1263 }
1264 if (ret != EFI_SUCCESS)
1265 goto error;
1266
1267 ret = efi_allocate_pool(EFI_LOADER_DATA, info->file_size, buffer);
1268 if (ret)
1269 goto error;
1270
1271 EFI_CALL(ret = f->read(f, &info->file_size, *buffer));
1272
1273error:
1274 free(info);
1275 EFI_CALL(f->close(f));
1276
1277 if (ret != EFI_SUCCESS) {
1278 efi_free_pool(*buffer);
1279 *buffer = NULL;
1280 }
1281
1282 return ret;
1283}
1284
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001285/*
1286 * Load an EFI image into memory.
1287 *
1288 * This function implements the LoadImage service.
1289 * See the Unified Extensible Firmware Interface (UEFI) specification
1290 * for details.
1291 *
1292 * @boot_policy true for request originating from the boot manager
1293 * @parent_image the calles's image handle
1294 * @file_path the path of the image to load
1295 * @source_buffer memory location from which the image is installed
1296 * @source_size size of the memory area from which the image is
1297 * installed
1298 * @image_handle handle for the newly installed image
1299 * @return status code
1300 */
Alexander Grafbee91162016-03-04 01:09:59 +01001301static efi_status_t EFIAPI efi_load_image(bool boot_policy,
1302 efi_handle_t parent_image,
1303 struct efi_device_path *file_path,
1304 void *source_buffer,
1305 unsigned long source_size,
1306 efi_handle_t *image_handle)
1307{
Alexander Grafbee91162016-03-04 01:09:59 +01001308 struct efi_loaded_image *info;
1309 struct efi_object *obj;
1310
1311 EFI_ENTRY("%d, %p, %p, %p, %ld, %p", boot_policy, parent_image,
1312 file_path, source_buffer, source_size, image_handle);
Rob Clark838ee4b2017-09-13 18:05:35 -04001313
1314 info = calloc(1, sizeof(*info));
1315 obj = calloc(1, sizeof(*obj));
1316
1317 if (!source_buffer) {
1318 struct efi_device_path *dp, *fp;
1319 efi_status_t ret;
1320
Rob Clark9975fe92017-09-13 18:05:38 -04001321 ret = efi_load_image_from_path(file_path, &source_buffer);
Rob Clark838ee4b2017-09-13 18:05:35 -04001322 if (ret != EFI_SUCCESS) {
1323 free(info);
1324 free(obj);
1325 return EFI_EXIT(ret);
1326 }
1327
1328 /*
1329 * split file_path which contains both the device and
1330 * file parts:
1331 */
1332 efi_dp_split_file_path(file_path, &dp, &fp);
1333
1334 efi_setup_loaded_image(info, obj, dp, fp);
1335 } else {
1336 /* In this case, file_path is the "device" path, ie.
1337 * something like a HARDWARE_DEVICE:MEMORY_MAPPED
1338 */
1339 efi_setup_loaded_image(info, obj, file_path, NULL);
1340 }
1341
Alexander Grafbee91162016-03-04 01:09:59 +01001342 info->reserved = efi_load_pe(source_buffer, info);
1343 if (!info->reserved) {
1344 free(info);
1345 free(obj);
1346 return EFI_EXIT(EFI_UNSUPPORTED);
1347 }
1348
Heinrich Schuchardt32fc2ac2017-10-18 18:13:20 +02001349 info->system_table = &systab;
1350 info->parent_handle = parent_image;
Alexander Grafbee91162016-03-04 01:09:59 +01001351 *image_handle = info;
Alexander Grafbee91162016-03-04 01:09:59 +01001352
1353 return EFI_EXIT(EFI_SUCCESS);
1354}
1355
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001356/*
1357 * Call the entry point of an image.
1358 *
1359 * This function implements the StartImage service.
1360 * See the Unified Extensible Firmware Interface (UEFI) specification
1361 * for details.
1362 *
1363 * @image_handle handle of the image
1364 * @exit_data_size size of the buffer
1365 * @exit_data buffer to receive the exit data of the called image
Heinrich Schuchardt10a08c42017-10-08 06:57:27 +02001366 * @return status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001367 */
Alexander Grafbee91162016-03-04 01:09:59 +01001368static efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
1369 unsigned long *exit_data_size,
1370 s16 **exit_data)
1371{
1372 ulong (*entry)(void *image_handle, struct efi_system_table *st);
1373 struct efi_loaded_image *info = image_handle;
1374
1375 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
1376 entry = info->reserved;
1377
1378 efi_is_direct_boot = false;
1379
1380 /* call the image! */
Alexander Grafa86aeaf2016-05-20 23:28:23 +02001381 if (setjmp(&info->exit_jmp)) {
1382 /* We returned from the child image */
1383 return EFI_EXIT(info->exit_status);
1384 }
1385
Rob Clarkaf65db82017-07-27 08:04:19 -04001386 __efi_nesting_dec();
Rob Clarkc160d2f2017-07-27 08:04:18 -04001387 __efi_exit_check();
Alexander Grafbee91162016-03-04 01:09:59 +01001388 entry(image_handle, &systab);
Rob Clarkc160d2f2017-07-27 08:04:18 -04001389 __efi_entry_check();
Rob Clarkaf65db82017-07-27 08:04:19 -04001390 __efi_nesting_inc();
Alexander Grafbee91162016-03-04 01:09:59 +01001391
1392 /* Should usually never get here */
1393 return EFI_EXIT(EFI_SUCCESS);
1394}
1395
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001396/*
1397 * Leave an EFI application or driver.
1398 *
1399 * This function implements the Exit service.
1400 * See the Unified Extensible Firmware Interface (UEFI) specification
1401 * for details.
1402 *
1403 * @image_handle handle of the application or driver that is exiting
1404 * @exit_status status code
1405 * @exit_data_size size of the buffer in bytes
1406 * @exit_data buffer with data describing an error
Heinrich Schuchardt10a08c42017-10-08 06:57:27 +02001407 * @return status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001408 */
Alexander Grafa86aeaf2016-05-20 23:28:23 +02001409static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
1410 efi_status_t exit_status, unsigned long exit_data_size,
1411 int16_t *exit_data)
Alexander Grafbee91162016-03-04 01:09:59 +01001412{
Alexander Grafa86aeaf2016-05-20 23:28:23 +02001413 struct efi_loaded_image *loaded_image_info = (void*)image_handle;
1414
Alexander Grafbee91162016-03-04 01:09:59 +01001415 EFI_ENTRY("%p, %ld, %ld, %p", image_handle, exit_status,
1416 exit_data_size, exit_data);
Alexander Grafa86aeaf2016-05-20 23:28:23 +02001417
Alexander Grafa1489202017-09-03 14:14:17 +02001418 /* Make sure entry/exit counts for EFI world cross-overs match */
Heinrich Schuchardtda940732017-08-25 19:53:14 +02001419 __efi_exit_check();
1420
Alexander Grafa1489202017-09-03 14:14:17 +02001421 /*
1422 * But longjmp out with the U-Boot gd, not the application's, as
1423 * the other end is a setjmp call inside EFI context.
1424 */
1425 efi_restore_gd();
1426
Alexander Grafa86aeaf2016-05-20 23:28:23 +02001427 loaded_image_info->exit_status = exit_status;
Alexander Graf692fcdd2016-09-27 09:30:32 +02001428 longjmp(&loaded_image_info->exit_jmp, 1);
Alexander Grafa86aeaf2016-05-20 23:28:23 +02001429
1430 panic("EFI application exited");
Alexander Grafbee91162016-03-04 01:09:59 +01001431}
1432
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001433/*
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001434 * Unload an EFI image.
1435 *
1436 * This function implements the UnloadImage service.
1437 * See the Unified Extensible Firmware Interface (UEFI) specification
1438 * for details.
1439 *
1440 * @image_handle handle of the image to be unloaded
1441 * @return status code
1442 */
Alexander Grafbee91162016-03-04 01:09:59 +01001443static efi_status_t EFIAPI efi_unload_image(void *image_handle)
1444{
1445 struct efi_object *efiobj;
1446
1447 EFI_ENTRY("%p", image_handle);
1448 efiobj = efi_search_obj(image_handle);
1449 if (efiobj)
1450 list_del(&efiobj->link);
1451
1452 return EFI_EXIT(EFI_SUCCESS);
1453}
1454
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001455/*
1456 * Fix up caches for EFI payloads if necessary.
1457 */
Alexander Grafbee91162016-03-04 01:09:59 +01001458static void efi_exit_caches(void)
1459{
1460#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1461 /*
1462 * Grub on 32bit ARM needs to have caches disabled before jumping into
1463 * a zImage, but does not know of all cache layers. Give it a hand.
1464 */
1465 if (efi_is_direct_boot)
1466 cleanup_before_linux();
1467#endif
1468}
1469
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001470/*
1471 * Stop boot services.
1472 *
1473 * This function implements the ExitBootServices service.
1474 * See the Unified Extensible Firmware Interface (UEFI) specification
1475 * for details.
1476 *
1477 * @image_handle handle of the loaded image
1478 * @map_key key of the memory map
1479 * @return status code
1480 */
Alexander Grafbee91162016-03-04 01:09:59 +01001481static efi_status_t EFIAPI efi_exit_boot_services(void *image_handle,
1482 unsigned long map_key)
1483{
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001484 int i;
1485
Alexander Grafbee91162016-03-04 01:09:59 +01001486 EFI_ENTRY("%p, %ld", image_handle, map_key);
1487
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001488 /* Notify that ExitBootServices is invoked. */
1489 for (i = 0; i < ARRAY_SIZE(efi_events); ++i) {
1490 if (efi_events[i].type != EVT_SIGNAL_EXIT_BOOT_SERVICES)
1491 continue;
1492 efi_signal_event(&efi_events[i]);
1493 }
1494 /* Make sure that notification functions are not called anymore */
1495 efi_tpl = TPL_HIGH_LEVEL;
1496
Alexander Graf40583562017-10-19 23:23:50 +02001497 /* XXX Should persist EFI variables here */
Rob Clarkad644e72017-09-13 18:05:37 -04001498
Alexander Grafb7b84102016-11-17 01:02:57 +01001499 board_quiesce_devices();
1500
Alexander Grafbee91162016-03-04 01:09:59 +01001501 /* Fix up caches for EFI payloads if necessary */
1502 efi_exit_caches();
1503
1504 /* This stops all lingering devices */
1505 bootm_disable_interrupts();
1506
1507 /* Give the payload some time to boot */
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02001508 efi_set_watchdog(0);
Alexander Grafbee91162016-03-04 01:09:59 +01001509 WATCHDOG_RESET();
1510
1511 return EFI_EXIT(EFI_SUCCESS);
1512}
1513
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001514/*
1515 * Get next value of the counter.
1516 *
1517 * This function implements the NextMonotonicCount service.
1518 * See the Unified Extensible Firmware Interface (UEFI) specification
1519 * for details.
1520 *
1521 * @count returned value of the counter
1522 * @return status code
1523 */
Alexander Grafbee91162016-03-04 01:09:59 +01001524static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1525{
1526 static uint64_t mono = 0;
1527 EFI_ENTRY("%p", count);
1528 *count = mono++;
1529 return EFI_EXIT(EFI_SUCCESS);
1530}
1531
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001532/*
1533 * Sleep.
1534 *
1535 * This function implements the Stall sercive.
1536 * See the Unified Extensible Firmware Interface (UEFI) specification
1537 * for details.
1538 *
1539 * @microseconds period to sleep in microseconds
1540 * @return status code
1541 */
Alexander Grafbee91162016-03-04 01:09:59 +01001542static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1543{
1544 EFI_ENTRY("%ld", microseconds);
1545 udelay(microseconds);
1546 return EFI_EXIT(EFI_SUCCESS);
1547}
1548
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001549/*
1550 * Reset the watchdog timer.
1551 *
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02001552 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001553 * See the Unified Extensible Firmware Interface (UEFI) specification
1554 * for details.
1555 *
1556 * @timeout seconds before reset by watchdog
1557 * @watchdog_code code to be logged when resetting
1558 * @data_size size of buffer in bytes
1559 * @watchdog_data buffer with data describing the reset reason
Heinrich Schuchardt10a08c42017-10-08 06:57:27 +02001560 * @return status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001561 */
Alexander Grafbee91162016-03-04 01:09:59 +01001562static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
1563 uint64_t watchdog_code,
1564 unsigned long data_size,
1565 uint16_t *watchdog_data)
1566{
1567 EFI_ENTRY("%ld, 0x%"PRIx64", %ld, %p", timeout, watchdog_code,
1568 data_size, watchdog_data);
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02001569 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafbee91162016-03-04 01:09:59 +01001570}
1571
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001572/*
1573 * Connect a controller to a driver.
1574 *
1575 * This function implements the ConnectController service.
1576 * See the Unified Extensible Firmware Interface (UEFI) specification
1577 * for details.
1578 *
1579 * @controller_handle handle of the controller
1580 * @driver_image_handle handle of the driver
1581 * @remain_device_path device path of a child controller
1582 * @recursive true to connect all child controllers
1583 * @return status code
1584 */
Alexander Grafbee91162016-03-04 01:09:59 +01001585static efi_status_t EFIAPI efi_connect_controller(
1586 efi_handle_t controller_handle,
1587 efi_handle_t *driver_image_handle,
1588 struct efi_device_path *remain_device_path,
1589 bool recursive)
1590{
1591 EFI_ENTRY("%p, %p, %p, %d", controller_handle, driver_image_handle,
1592 remain_device_path, recursive);
1593 return EFI_EXIT(EFI_NOT_FOUND);
1594}
1595
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001596/*
1597 * Disconnect a controller from a driver.
1598 *
1599 * This function implements the DisconnectController service.
1600 * See the Unified Extensible Firmware Interface (UEFI) specification
1601 * for details.
1602 *
1603 * @controller_handle handle of the controller
1604 * @driver_image_handle handle of the driver
1605 * @child_handle handle of the child to destroy
1606 * @return status code
1607 */
Alexander Grafbee91162016-03-04 01:09:59 +01001608static efi_status_t EFIAPI efi_disconnect_controller(void *controller_handle,
1609 void *driver_image_handle,
1610 void *child_handle)
1611{
1612 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
1613 child_handle);
1614 return EFI_EXIT(EFI_INVALID_PARAMETER);
1615}
1616
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001617/*
1618 * Close a protocol.
1619 *
1620 * This function implements the CloseProtocol service.
1621 * See the Unified Extensible Firmware Interface (UEFI) specification
1622 * for details.
1623 *
1624 * @handle handle on which the protocol shall be closed
1625 * @protocol GUID of the protocol to close
1626 * @agent_handle handle of the driver
1627 * @controller_handle handle of the controller
1628 * @return status code
1629 */
Alexander Grafbee91162016-03-04 01:09:59 +01001630static efi_status_t EFIAPI efi_close_protocol(void *handle,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001631 const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01001632 void *agent_handle,
1633 void *controller_handle)
1634{
Rob Clark778e6af2017-09-13 18:05:41 -04001635 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafbee91162016-03-04 01:09:59 +01001636 controller_handle);
1637 return EFI_EXIT(EFI_NOT_FOUND);
1638}
1639
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001640/*
1641 * Provide information about then open status of a protocol on a handle
1642 *
1643 * This function implements the OpenProtocolInformation service.
1644 * See the Unified Extensible Firmware Interface (UEFI) specification
1645 * for details.
1646 *
1647 * @handle handle for which the information shall be retrieved
1648 * @protocol GUID of the protocol
1649 * @entry_buffer buffer to receive the open protocol information
1650 * @entry_count number of entries available in the buffer
1651 * @return status code
1652 */
Alexander Grafbee91162016-03-04 01:09:59 +01001653static efi_status_t EFIAPI efi_open_protocol_information(efi_handle_t handle,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001654 const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01001655 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001656 efi_uintn_t *entry_count)
Alexander Grafbee91162016-03-04 01:09:59 +01001657{
Rob Clark778e6af2017-09-13 18:05:41 -04001658 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafbee91162016-03-04 01:09:59 +01001659 entry_count);
1660 return EFI_EXIT(EFI_NOT_FOUND);
1661}
1662
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001663/*
1664 * Get protocols installed on a handle.
1665 *
1666 * This function implements the ProtocolsPerHandleService.
1667 * See the Unified Extensible Firmware Interface (UEFI) specification
1668 * for details.
1669 *
1670 * @handle handle for which the information is retrieved
1671 * @protocol_buffer buffer with protocol GUIDs
1672 * @protocol_buffer_count number of entries in the buffer
Heinrich Schuchardt10a08c42017-10-08 06:57:27 +02001673 * @return status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001674 */
Alexander Grafbee91162016-03-04 01:09:59 +01001675static efi_status_t EFIAPI efi_protocols_per_handle(void *handle,
1676 efi_guid_t ***protocol_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001677 efi_uintn_t *protocol_buffer_count)
Alexander Grafbee91162016-03-04 01:09:59 +01001678{
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02001679 unsigned long buffer_size;
1680 struct efi_object *efiobj;
1681 unsigned long i, j;
1682 struct list_head *lhandle;
1683 efi_status_t r;
1684
Alexander Grafbee91162016-03-04 01:09:59 +01001685 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
1686 protocol_buffer_count);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02001687
1688 if (!handle || !protocol_buffer || !protocol_buffer_count)
1689 return EFI_EXIT(EFI_INVALID_PARAMETER);
1690
1691 *protocol_buffer = NULL;
Rob Clark661c8322017-07-20 07:59:39 -04001692 *protocol_buffer_count = 0;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02001693 list_for_each(lhandle, &efi_obj_list) {
1694 efiobj = list_entry(lhandle, struct efi_object, link);
1695
1696 if (efiobj->handle != handle)
1697 continue;
1698
1699 /* Count protocols */
1700 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
1701 if (efiobj->protocols[i].guid)
1702 ++*protocol_buffer_count;
1703 }
1704 /* Copy guids */
1705 if (*protocol_buffer_count) {
1706 buffer_size = sizeof(efi_guid_t *) *
1707 *protocol_buffer_count;
1708 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES,
1709 buffer_size,
1710 (void **)protocol_buffer);
1711 if (r != EFI_SUCCESS)
1712 return EFI_EXIT(r);
1713 j = 0;
1714 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); ++i) {
1715 if (efiobj->protocols[i].guid) {
1716 (*protocol_buffer)[j] = (void *)
1717 efiobj->protocols[i].guid;
1718 ++j;
1719 }
1720 }
1721 }
1722 break;
1723 }
1724
1725 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01001726}
1727
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001728/*
1729 * Locate handles implementing a protocol.
1730 *
1731 * This function implements the LocateHandleBuffer service.
1732 * See the Unified Extensible Firmware Interface (UEFI) specification
1733 * for details.
1734 *
1735 * @search_type selection criterion
1736 * @protocol GUID of the protocol
1737 * @search_key registration key
1738 * @no_handles number of returned handles
1739 * @buffer buffer with the returned handles
1740 * @return status code
1741 */
Alexander Grafbee91162016-03-04 01:09:59 +01001742static efi_status_t EFIAPI efi_locate_handle_buffer(
1743 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001744 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001745 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01001746{
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02001747 efi_status_t r;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001748 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02001749
Rob Clark778e6af2017-09-13 18:05:41 -04001750 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafbee91162016-03-04 01:09:59 +01001751 no_handles, buffer);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02001752
1753 if (!no_handles || !buffer) {
1754 r = EFI_INVALID_PARAMETER;
1755 goto out;
1756 }
1757 *no_handles = 0;
1758 *buffer = NULL;
1759 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
1760 *buffer);
1761 if (r != EFI_BUFFER_TOO_SMALL)
1762 goto out;
1763 r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
1764 (void **)buffer);
1765 if (r != EFI_SUCCESS)
1766 goto out;
1767 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
1768 *buffer);
1769 if (r == EFI_SUCCESS)
1770 *no_handles = buffer_size / sizeof(void *);
1771out:
1772 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01001773}
1774
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001775/*
1776 * Find an interface implementing a protocol.
1777 *
1778 * This function implements the LocateProtocol service.
1779 * See the Unified Extensible Firmware Interface (UEFI) specification
1780 * for details.
1781 *
1782 * @protocol GUID of the protocol
1783 * @registration registration key passed to the notification function
1784 * @protocol_interface interface implementing the protocol
Heinrich Schuchardt10a08c42017-10-08 06:57:27 +02001785 * @return status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001786 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001787static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01001788 void *registration,
1789 void **protocol_interface)
1790{
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02001791 struct list_head *lhandle;
Heinrich Schuchardt9172cd92017-10-26 19:25:57 +02001792 efi_status_t ret;
Alexander Grafbee91162016-03-04 01:09:59 +01001793
Rob Clark778e6af2017-09-13 18:05:41 -04001794 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02001795
1796 if (!protocol || !protocol_interface)
1797 return EFI_EXIT(EFI_INVALID_PARAMETER);
1798
1799 list_for_each(lhandle, &efi_obj_list) {
1800 struct efi_object *efiobj;
Heinrich Schuchardt9172cd92017-10-26 19:25:57 +02001801 struct efi_handler *handler;
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02001802
1803 efiobj = list_entry(lhandle, struct efi_object, link);
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02001804
Heinrich Schuchardt9172cd92017-10-26 19:25:57 +02001805 ret = efi_search_protocol(efiobj->handle, protocol, &handler);
1806 if (ret == EFI_SUCCESS) {
1807 *protocol_interface = handler->protocol_interface;
1808 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01001809 }
1810 }
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02001811 *protocol_interface = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01001812
1813 return EFI_EXIT(EFI_NOT_FOUND);
1814}
1815
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001816/*
1817 * Install multiple protocol interfaces.
1818 *
1819 * This function implements the MultipleProtocolInterfaces service.
1820 * See the Unified Extensible Firmware Interface (UEFI) specification
1821 * for details.
1822 *
1823 * @handle handle on which the protocol interfaces shall be installed
1824 * @... NULL terminated argument list with pairs of protocol GUIDS and
1825 * interfaces
1826 * @return status code
1827 */
Alexander Grafbee91162016-03-04 01:09:59 +01001828static efi_status_t EFIAPI efi_install_multiple_protocol_interfaces(
1829 void **handle, ...)
1830{
1831 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02001832
1833 va_list argptr;
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001834 const efi_guid_t *protocol;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02001835 void *protocol_interface;
1836 efi_status_t r = EFI_SUCCESS;
1837 int i = 0;
1838
1839 if (!handle)
1840 return EFI_EXIT(EFI_INVALID_PARAMETER);
1841
1842 va_start(argptr, handle);
1843 for (;;) {
1844 protocol = va_arg(argptr, efi_guid_t*);
1845 if (!protocol)
1846 break;
1847 protocol_interface = va_arg(argptr, void*);
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001848 r = EFI_CALL(efi_install_protocol_interface(
1849 handle, protocol,
1850 EFI_NATIVE_INTERFACE,
1851 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02001852 if (r != EFI_SUCCESS)
1853 break;
1854 i++;
1855 }
1856 va_end(argptr);
1857 if (r == EFI_SUCCESS)
1858 return EFI_EXIT(r);
1859
Heinrich Schuchardt62471e42017-10-26 19:25:42 +02001860 /* If an error occurred undo all changes. */
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02001861 va_start(argptr, handle);
1862 for (; i; --i) {
1863 protocol = va_arg(argptr, efi_guid_t*);
1864 protocol_interface = va_arg(argptr, void*);
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01001865 EFI_CALL(efi_uninstall_protocol_interface(handle, protocol,
1866 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02001867 }
1868 va_end(argptr);
1869
1870 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01001871}
1872
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001873/*
1874 * Uninstall multiple protocol interfaces.
1875 *
1876 * This function implements the UninstallMultipleProtocolInterfaces service.
1877 * See the Unified Extensible Firmware Interface (UEFI) specification
1878 * for details.
1879 *
1880 * @handle handle from which the protocol interfaces shall be removed
1881 * @... NULL terminated argument list with pairs of protocol GUIDS and
1882 * interfaces
1883 * @return status code
1884 */
Alexander Grafbee91162016-03-04 01:09:59 +01001885static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
1886 void *handle, ...)
1887{
1888 EFI_ENTRY("%p", handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02001889
1890 va_list argptr;
1891 const efi_guid_t *protocol;
1892 void *protocol_interface;
1893 efi_status_t r = EFI_SUCCESS;
1894 size_t i = 0;
1895
1896 if (!handle)
1897 return EFI_EXIT(EFI_INVALID_PARAMETER);
1898
1899 va_start(argptr, handle);
1900 for (;;) {
1901 protocol = va_arg(argptr, efi_guid_t*);
1902 if (!protocol)
1903 break;
1904 protocol_interface = va_arg(argptr, void*);
1905 r = EFI_CALL(efi_uninstall_protocol_interface(
1906 handle, protocol,
1907 protocol_interface));
1908 if (r != EFI_SUCCESS)
1909 break;
1910 i++;
1911 }
1912 va_end(argptr);
1913 if (r == EFI_SUCCESS)
1914 return EFI_EXIT(r);
1915
1916 /* If an error occurred undo all changes. */
1917 va_start(argptr, handle);
1918 for (; i; --i) {
1919 protocol = va_arg(argptr, efi_guid_t*);
1920 protocol_interface = va_arg(argptr, void*);
1921 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
1922 EFI_NATIVE_INTERFACE,
1923 protocol_interface));
1924 }
1925 va_end(argptr);
1926
1927 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01001928}
1929
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001930/*
1931 * Calculate cyclic redundancy code.
1932 *
1933 * This function implements the CalculateCrc32 service.
1934 * See the Unified Extensible Firmware Interface (UEFI) specification
1935 * for details.
1936 *
1937 * @data buffer with data
1938 * @data_size size of buffer in bytes
1939 * @crc32_p cyclic redundancy code
1940 * @return status code
1941 */
Alexander Grafbee91162016-03-04 01:09:59 +01001942static efi_status_t EFIAPI efi_calculate_crc32(void *data,
1943 unsigned long data_size,
1944 uint32_t *crc32_p)
1945{
1946 EFI_ENTRY("%p, %ld", data, data_size);
1947 *crc32_p = crc32(0, data, data_size);
1948 return EFI_EXIT(EFI_SUCCESS);
1949}
1950
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001951/*
1952 * Copy memory.
1953 *
1954 * This function implements the CopyMem service.
1955 * See the Unified Extensible Firmware Interface (UEFI) specification
1956 * for details.
1957 *
1958 * @destination destination of the copy operation
1959 * @source source of the copy operation
1960 * @length number of bytes to copy
1961 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02001962static void EFIAPI efi_copy_mem(void *destination, const void *source,
1963 size_t length)
Alexander Grafbee91162016-03-04 01:09:59 +01001964{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02001965 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Alexander Grafbee91162016-03-04 01:09:59 +01001966 memcpy(destination, source, length);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02001967 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01001968}
1969
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001970/*
1971 * Fill memory with a byte value.
1972 *
1973 * This function implements the SetMem service.
1974 * See the Unified Extensible Firmware Interface (UEFI) specification
1975 * for details.
1976 *
1977 * @buffer buffer to fill
1978 * @size size of buffer in bytes
1979 * @value byte to copy to the buffer
1980 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02001981static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafbee91162016-03-04 01:09:59 +01001982{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02001983 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafbee91162016-03-04 01:09:59 +01001984 memset(buffer, value, size);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02001985 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01001986}
1987
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001988/*
1989 * Open protocol interface on a handle.
1990 *
1991 * This function implements the OpenProtocol interface.
1992 * See the Unified Extensible Firmware Interface (UEFI) specification
1993 * for details.
1994 *
1995 * @handle handle on which the protocol shall be opened
1996 * @protocol GUID of the protocol
1997 * @protocol_interface interface implementing the protocol
1998 * @agent_handle handle of the driver
1999 * @controller_handle handle of the controller
2000 * @attributes attributes indicating how to open the protocol
2001 * @return status code
2002 */
Alexander Grafbee91162016-03-04 01:09:59 +01002003static efi_status_t EFIAPI efi_open_protocol(
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002004 void *handle, const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002005 void **protocol_interface, void *agent_handle,
2006 void *controller_handle, uint32_t attributes)
2007{
2008 struct list_head *lhandle;
2009 int i;
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002010 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +01002011
Rob Clark778e6af2017-09-13 18:05:41 -04002012 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002013 protocol_interface, agent_handle, controller_handle,
2014 attributes);
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002015
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002016 if (!handle || !protocol ||
2017 (!protocol_interface && attributes !=
2018 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2019 goto out;
2020 }
2021
Heinrich Schuchardtae0bd3a2017-08-18 17:45:16 +02002022 EFI_PRINT_GUID("protocol", protocol);
2023
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002024 switch (attributes) {
2025 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2026 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2027 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2028 break;
2029 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2030 if (controller_handle == handle)
2031 goto out;
2032 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2033 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
2034 if (controller_handle == NULL)
2035 goto out;
2036 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
2037 if (agent_handle == NULL)
2038 goto out;
2039 break;
2040 default:
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002041 goto out;
2042 }
2043
Alexander Grafbee91162016-03-04 01:09:59 +01002044 list_for_each(lhandle, &efi_obj_list) {
2045 struct efi_object *efiobj;
2046 efiobj = list_entry(lhandle, struct efi_object, link);
2047
2048 if (efiobj->handle != handle)
2049 continue;
2050
2051 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
2052 struct efi_handler *handler = &efiobj->protocols[i];
2053 const efi_guid_t *hprotocol = handler->guid;
2054 if (!hprotocol)
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02002055 continue;
Alexander Grafbee91162016-03-04 01:09:59 +01002056 if (!guidcmp(hprotocol, protocol)) {
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002057 if (attributes !=
2058 EFI_OPEN_PROTOCOL_TEST_PROTOCOL) {
2059 *protocol_interface =
2060 handler->protocol_interface;
2061 }
2062 r = EFI_SUCCESS;
Alexander Grafbee91162016-03-04 01:09:59 +01002063 goto out;
2064 }
2065 }
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002066 goto unsupported;
Alexander Grafbee91162016-03-04 01:09:59 +01002067 }
2068
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002069unsupported:
2070 r = EFI_UNSUPPORTED;
Alexander Grafbee91162016-03-04 01:09:59 +01002071out:
2072 return EFI_EXIT(r);
2073}
2074
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002075/*
2076 * Get interface of a protocol on a handle.
2077 *
2078 * This function implements the HandleProtocol service.
2079 * See the Unified Extensible Firmware Interface (UEFI) specification
2080 * for details.
2081 *
2082 * @handle handle on which the protocol shall be opened
2083 * @protocol GUID of the protocol
2084 * @protocol_interface interface implementing the protocol
2085 * @return status code
2086 */
Alexander Grafbee91162016-03-04 01:09:59 +01002087static efi_status_t EFIAPI efi_handle_protocol(void *handle,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002088 const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002089 void **protocol_interface)
2090{
xypron.glpk@gmx.de8e1d3292017-06-29 21:16:19 +02002091 return efi_open_protocol(handle, protocol, protocol_interface, NULL,
2092 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafbee91162016-03-04 01:09:59 +01002093}
2094
2095static const struct efi_boot_services efi_boot_services = {
2096 .hdr = {
2097 .headersize = sizeof(struct efi_table_hdr),
2098 },
2099 .raise_tpl = efi_raise_tpl,
2100 .restore_tpl = efi_restore_tpl,
2101 .allocate_pages = efi_allocate_pages_ext,
2102 .free_pages = efi_free_pages_ext,
2103 .get_memory_map = efi_get_memory_map_ext,
Stefan Brünsead12742016-10-09 22:17:18 +02002104 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns42417bc2016-10-09 22:17:26 +02002105 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +02002106 .create_event = efi_create_event_ext,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +02002107 .set_timer = efi_set_timer_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01002108 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02002109 .signal_event = efi_signal_event_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01002110 .close_event = efi_close_event,
2111 .check_event = efi_check_event,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01002112 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01002113 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01002114 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01002115 .handle_protocol = efi_handle_protocol,
2116 .reserved = NULL,
2117 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02002118 .locate_handle = efi_locate_handle_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01002119 .locate_device_path = efi_locate_device_path,
Alexander Graf488bf122016-08-19 01:23:24 +02002120 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01002121 .load_image = efi_load_image,
2122 .start_image = efi_start_image,
Alexander Grafa86aeaf2016-05-20 23:28:23 +02002123 .exit = efi_exit,
Alexander Grafbee91162016-03-04 01:09:59 +01002124 .unload_image = efi_unload_image,
2125 .exit_boot_services = efi_exit_boot_services,
2126 .get_next_monotonic_count = efi_get_next_monotonic_count,
2127 .stall = efi_stall,
2128 .set_watchdog_timer = efi_set_watchdog_timer,
2129 .connect_controller = efi_connect_controller,
2130 .disconnect_controller = efi_disconnect_controller,
2131 .open_protocol = efi_open_protocol,
2132 .close_protocol = efi_close_protocol,
2133 .open_protocol_information = efi_open_protocol_information,
2134 .protocols_per_handle = efi_protocols_per_handle,
2135 .locate_handle_buffer = efi_locate_handle_buffer,
2136 .locate_protocol = efi_locate_protocol,
2137 .install_multiple_protocol_interfaces = efi_install_multiple_protocol_interfaces,
2138 .uninstall_multiple_protocol_interfaces = efi_uninstall_multiple_protocol_interfaces,
2139 .calculate_crc32 = efi_calculate_crc32,
2140 .copy_mem = efi_copy_mem,
2141 .set_mem = efi_set_mem,
2142};
2143
2144
Alexander Graf3c63db92016-10-14 13:45:30 +02002145static uint16_t __efi_runtime_data firmware_vendor[] =
Alexander Grafbee91162016-03-04 01:09:59 +01002146 { 'D','a','s',' ','U','-','b','o','o','t',0 };
2147
Alexander Graf3c63db92016-10-14 13:45:30 +02002148struct efi_system_table __efi_runtime_data systab = {
Alexander Grafbee91162016-03-04 01:09:59 +01002149 .hdr = {
2150 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
2151 .revision = 0x20005, /* 2.5 */
2152 .headersize = sizeof(struct efi_table_hdr),
2153 },
2154 .fw_vendor = (long)firmware_vendor,
2155 .con_in = (void*)&efi_con_in,
2156 .con_out = (void*)&efi_con_out,
2157 .std_err = (void*)&efi_con_out,
2158 .runtime = (void*)&efi_runtime_services,
2159 .boottime = (void*)&efi_boot_services,
2160 .nr_tables = 0,
2161 .tables = (void*)efi_conf_table,
2162};