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