]> Git Repo - J-u-boot.git/blame - lib/efi_loader/efi_runtime.c
efi_loader: conditionally enable SetvariableRT
[J-u-boot.git] / lib / efi_loader / efi_runtime.c
CommitLineData
f739fcd8 1// SPDX-License-Identifier: GPL-2.0+
50149ea3
AG
2/*
3 * EFI application runtime services
4 *
5 * Copyright (c) 2016 Alexander Graf
50149ea3
AG
6 */
7
50149ea3 8#include <command.h>
1eb69ae4 9#include <cpu_func.h>
50149ea3 10#include <dm.h>
b34662d0 11#include <elf.h>
50149ea3 12#include <efi_loader.h>
f7ae49fc 13#include <log.h>
336d4615 14#include <malloc.h>
50149ea3 15#include <rtc.h>
401d1c4f 16#include <asm/global_data.h>
3db71108 17#include <u-boot/crc.h>
6b7f91cd 18#include <asm/sections.h>
50149ea3
AG
19
20/* For manual relocation support */
21DECLARE_GLOBAL_DATA_PTR;
22
76be6872
HS
23/* GUID of the runtime properties table */
24static const efi_guid_t efi_rt_properties_table_guid =
25 EFI_RT_PROPERTIES_TABLE_GUID;
26
80a4800e
AG
27struct efi_runtime_mmio_list {
28 struct list_head link;
29 void **ptr;
30 u64 paddr;
31 u64 len;
32};
33
34/* This list contains all runtime available mmio regions */
6fc4fc38 35static LIST_HEAD(efi_runtime_mmio);
80a4800e 36
3c63db9c 37static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void);
50149ea3 38
2d2b5b2d 39/*
250b3254
HS
40 * TODO([email protected]): These defines and structures should come from the ELF
41 * header for each architecture (or a generic header) rather than being repeated
42 * here.
2d2b5b2d 43 */
bc028919 44#if defined(__aarch64__)
b34662d0 45#define R_RELATIVE R_AARCH64_RELATIVE
50149ea3
AG
46#define R_MASK 0xffffffffULL
47#define IS_RELA 1
bc028919 48#elif defined(__arm__)
b34662d0 49#define R_RELATIVE R_ARM_RELATIVE
50149ea3 50#define R_MASK 0xffULL
3ce78297 51#elif defined(__i386__)
65e4c0b1
SG
52#define R_RELATIVE R_386_RELATIVE
53#define R_MASK 0xffULL
3ce78297
HS
54#elif defined(__x86_64__)
55#define R_RELATIVE R_X86_64_RELATIVE
56#define R_MASK 0xffffffffULL
57#define IS_RELA 1
bc028919 58#elif defined(__riscv)
6836adbe
RC
59#define R_RELATIVE R_RISCV_RELATIVE
60#define R_MASK 0xffULL
61#define IS_RELA 1
62
63struct dyn_sym {
64 ulong foo1;
65 ulong addr;
66 u32 foo2;
67 u32 foo3;
68};
bc028919 69#if (__riscv_xlen == 32)
6836adbe
RC
70#define R_ABSOLUTE R_RISCV_32
71#define SYM_INDEX 8
bc028919 72#elif (__riscv_xlen == 64)
6836adbe
RC
73#define R_ABSOLUTE R_RISCV_64
74#define SYM_INDEX 32
bc028919
AG
75#else
76#error unknown riscv target
6836adbe 77#endif
50149ea3
AG
78#else
79#error Need to add relocation awareness
80#endif
81
82struct elf_rel {
83 ulong *offset;
84 ulong info;
85};
86
87struct elf_rela {
88 ulong *offset;
89 ulong info;
90 long addend;
91};
92
7be56e86
HS
93static __efi_runtime_data struct efi_mem_desc *efi_virtmap;
94static __efi_runtime_data efi_uintn_t efi_descriptor_count;
95static __efi_runtime_data efi_uintn_t efi_descriptor_size;
96
50149ea3 97/*
250b3254 98 * EFI runtime code lives in two stages. In the first stage, U-Boot and an EFI
50149ea3
AG
99 * payload are running concurrently at the same time. In this mode, we can
100 * handle a good number of runtime callbacks
101 */
102
76be6872
HS
103/**
104 * efi_init_runtime_supported() - create runtime properties table
105 *
106 * Create a configuration table specifying which services are available at
107 * runtime.
108 *
109 * Return: status code
110 */
e771b4b3
AT
111efi_status_t efi_init_runtime_supported(void)
112{
76be6872
HS
113 efi_status_t ret;
114 struct efi_rt_properties_table *rt_table;
115
116 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
117 sizeof(struct efi_rt_properties_table),
118 (void **)&rt_table);
119 if (ret != EFI_SUCCESS)
120 return ret;
121
122 rt_table->version = EFI_RT_PROPERTIES_TABLE_VERSION;
123 rt_table->length = sizeof(struct efi_rt_properties_table);
124 rt_table->runtime_services_supported =
b02a7071
HS
125 EFI_RT_SUPPORTED_GET_VARIABLE |
126 EFI_RT_SUPPORTED_GET_NEXT_VARIABLE_NAME |
7be56e86
HS
127 EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP |
128 EFI_RT_SUPPORTED_CONVERT_POINTER;
e771b4b3 129
c28d32f9
IA
130 if (IS_ENABLED(CONFIG_EFI_RT_VOLATILE_STORE))
131 rt_table->runtime_services_supported |=
132 EFI_RT_SUPPORTED_SET_VARIABLE;
133
e771b4b3
AT
134 /*
135 * This value must be synced with efi_runtime_detach_list
136 * as well as efi_runtime_services.
137 */
953661a9 138#ifdef CONFIG_EFI_HAVE_RUNTIME_RESET
76be6872 139 rt_table->runtime_services_supported |= EFI_RT_SUPPORTED_RESET_SYSTEM;
e771b4b3 140#endif
7be56e86 141
76be6872
HS
142 ret = efi_install_configuration_table(&efi_rt_properties_table_guid,
143 rt_table);
144 return ret;
e771b4b3
AT
145}
146
b0dd8cb4
HS
147/**
148 * efi_memcpy_runtime() - copy memory area
149 *
150 * At runtime memcpy() is not available.
151 *
ebbad02c
HS
152 * Overlapping memory areas can be copied safely if src >= dest.
153 *
b0dd8cb4
HS
154 * @dest: destination buffer
155 * @src: source buffer
156 * @n: number of bytes to copy
157 * Return: pointer to destination buffer
158 */
159void __efi_runtime efi_memcpy_runtime(void *dest, const void *src, size_t n)
160{
161 u8 *d = dest;
162 const u8 *s = src;
163
164 for (; n; --n)
165 *d++ = *s++;
166}
167
a39f39cd
HS
168/**
169 * efi_update_table_header_crc32() - Update crc32 in table header
170 *
171 * @table: EFI table
172 */
173void __efi_runtime efi_update_table_header_crc32(struct efi_table_hdr *table)
174{
175 table->crc32 = 0;
176 table->crc32 = crc32(0, (const unsigned char *)table,
177 table->headersize);
178}
179
bcfb0e22 180/**
250b3254 181 * efi_reset_system_boottime() - reset system at boot time
bcfb0e22
HS
182 *
183 * This function implements the ResetSystem() runtime service before
184 * SetVirtualAddressMap() is called.
185 *
186 * See the Unified Extensible Firmware Interface (UEFI) specification for
187 * details.
188 *
189 * @reset_type: type of reset to perform
190 * @reset_status: status code for the reset
191 * @data_size: size of reset_data
192 * @reset_data: information about the reset
193 */
80a4800e
AG
194static void EFIAPI efi_reset_system_boottime(
195 enum efi_reset_type reset_type,
196 efi_status_t reset_status,
197 unsigned long data_size, void *reset_data)
50149ea3 198{
b095f3c8
HS
199 struct efi_event *evt;
200
50149ea3
AG
201 EFI_ENTRY("%d %lx %lx %p", reset_type, reset_status, data_size,
202 reset_data);
203
b095f3c8
HS
204 /* Notify reset */
205 list_for_each_entry(evt, &efi_events, link) {
206 if (evt->group &&
207 !guidcmp(evt->group,
208 &efi_guid_event_group_reset_system)) {
7eaa900e 209 efi_signal_event(evt);
b095f3c8
HS
210 break;
211 }
212 }
50149ea3
AG
213 switch (reset_type) {
214 case EFI_RESET_COLD:
215 case EFI_RESET_WARM:
482fc90c 216 case EFI_RESET_PLATFORM_SPECIFIC:
50149ea3
AG
217 do_reset(NULL, 0, 0, NULL);
218 break;
219 case EFI_RESET_SHUTDOWN:
e706ed7f
HS
220#ifdef CONFIG_CMD_POWEROFF
221 do_poweroff(NULL, 0, 0, NULL);
222#endif
50149ea3
AG
223 break;
224 }
225
80a4800e 226 while (1) { }
50149ea3
AG
227}
228
49de2455 229/**
250b3254 230 * efi_get_time_boottime() - get current time at boot time
bcfb0e22
HS
231 *
232 * This function implements the GetTime runtime service before
233 * SetVirtualAddressMap() is called.
49de2455 234 *
49de2455
HS
235 * See the Unified Extensible Firmware Interface (UEFI) specification
236 * for details.
237 *
238 * @time: pointer to structure to receive current time
239 * @capabilities: pointer to structure to receive RTC properties
bcfb0e22 240 * Returns: status code
49de2455 241 */
80a4800e
AG
242static efi_status_t EFIAPI efi_get_time_boottime(
243 struct efi_time *time,
244 struct efi_time_cap *capabilities)
50149ea3 245{
5ec48e38 246#ifdef CONFIG_EFI_GET_TIME
49de2455 247 efi_status_t ret = EFI_SUCCESS;
49de2455 248 struct rtc_time tm;
50149ea3
AG
249 struct udevice *dev;
250
251 EFI_ENTRY("%p %p", time, capabilities);
252
49de2455
HS
253 if (!time) {
254 ret = EFI_INVALID_PARAMETER;
255 goto out;
256 }
bb2b13d5
HS
257 if (uclass_get_device(UCLASS_RTC, 0, &dev) ||
258 dm_rtc_get(dev, &tm)) {
259 ret = EFI_UNSUPPORTED;
260 goto out;
261 }
262 if (dm_rtc_get(dev, &tm)) {
49de2455
HS
263 ret = EFI_DEVICE_ERROR;
264 goto out;
265 }
50149ea3
AG
266
267 memset(time, 0, sizeof(*time));
268 time->year = tm.tm_year;
269 time->month = tm.tm_mon;
270 time->day = tm.tm_mday;
271 time->hour = tm.tm_hour;
272 time->minute = tm.tm_min;
49de2455 273 time->second = tm.tm_sec;
0eae552d 274 if (tm.tm_isdst > 0)
38b9a79c
HS
275 time->daylight =
276 EFI_TIME_ADJUST_DAYLIGHT | EFI_TIME_IN_DAYLIGHT;
0eae552d
HS
277 else if (!tm.tm_isdst)
278 time->daylight = EFI_TIME_ADJUST_DAYLIGHT;
279 else
280 time->daylight = 0;
49de2455
HS
281 time->timezone = EFI_UNSPECIFIED_TIMEZONE;
282
283 if (capabilities) {
284 /* Set reasonable dummy values */
285 capabilities->resolution = 1; /* 1 Hz */
286 capabilities->accuracy = 100000000; /* 100 ppm */
287 capabilities->sets_to_zero = false;
288 }
289out:
290 return EFI_EXIT(ret);
50149ea3 291#else
49de2455 292 EFI_ENTRY("%p %p", time, capabilities);
bb2b13d5 293 return EFI_EXIT(EFI_UNSUPPORTED);
50149ea3
AG
294#endif
295}
296
5ec48e38 297#ifdef CONFIG_EFI_SET_TIME
e6bcc354
HS
298
299/**
300 * efi_validate_time() - checks if timestamp is valid
301 *
302 * @time: timestamp to validate
303 * Returns: 0 if timestamp is valid, 1 otherwise
304 */
305static int efi_validate_time(struct efi_time *time)
306{
307 return (!time ||
308 time->year < 1900 || time->year > 9999 ||
309 !time->month || time->month > 12 || !time->day ||
310 time->day > rtc_month_days(time->month - 1, time->year) ||
311 time->hour > 23 || time->minute > 59 || time->second > 59 ||
312 time->nanosecond > 999999999 ||
313 time->daylight &
314 ~(EFI_TIME_IN_DAYLIGHT | EFI_TIME_ADJUST_DAYLIGHT) ||
315 ((time->timezone < -1440 || time->timezone > 1440) &&
316 time->timezone != EFI_UNSPECIFIED_TIMEZONE));
317}
318
319#endif
320
433bfe7b
HS
321/**
322 * efi_set_time_boottime() - set current time
323 *
324 * This function implements the SetTime() runtime service before
325 * SetVirtualAddressMap() is called.
326 *
327 * See the Unified Extensible Firmware Interface (UEFI) specification
328 * for details.
329 *
330 * @time: pointer to structure to with current time
331 * Returns: status code
332 */
333static efi_status_t EFIAPI efi_set_time_boottime(struct efi_time *time)
334{
5ec48e38 335#ifdef CONFIG_EFI_SET_TIME
433bfe7b
HS
336 efi_status_t ret = EFI_SUCCESS;
337 struct rtc_time tm;
338 struct udevice *dev;
339
340 EFI_ENTRY("%p", time);
341
e6bcc354 342 if (efi_validate_time(time)) {
433bfe7b
HS
343 ret = EFI_INVALID_PARAMETER;
344 goto out;
345 }
346
347 if (uclass_get_device(UCLASS_RTC, 0, &dev)) {
348 ret = EFI_UNSUPPORTED;
349 goto out;
350 }
80a4800e 351
433bfe7b
HS
352 memset(&tm, 0, sizeof(tm));
353 tm.tm_year = time->year;
354 tm.tm_mon = time->month;
355 tm.tm_mday = time->day;
356 tm.tm_hour = time->hour;
357 tm.tm_min = time->minute;
358 tm.tm_sec = time->second;
0eae552d
HS
359 switch (time->daylight) {
360 case EFI_TIME_ADJUST_DAYLIGHT:
361 tm.tm_isdst = 0;
362 break;
363 case EFI_TIME_ADJUST_DAYLIGHT | EFI_TIME_IN_DAYLIGHT:
364 tm.tm_isdst = 1;
365 break;
366 default:
367 tm.tm_isdst = -1;
368 break;
369 }
433bfe7b
HS
370 /* Calculate day of week */
371 rtc_calc_weekday(&tm);
372
373 if (dm_rtc_set(dev, &tm))
374 ret = EFI_DEVICE_ERROR;
375out:
376 return EFI_EXIT(ret);
377#else
378 EFI_ENTRY("%p", time);
379 return EFI_EXIT(EFI_UNSUPPORTED);
380#endif
381}
bcfb0e22
HS
382/**
383 * efi_reset_system() - reset system
384 *
385 * This function implements the ResetSystem() runtime service after
f03a879d
HS
386 * SetVirtualAddressMap() is called. As this placeholder cannot reset the
387 * system it simply return to the caller.
388 *
bcfb0e22
HS
389 * Boards may override the helpers below to implement reset functionality.
390 *
391 * See the Unified Extensible Firmware Interface (UEFI) specification for
392 * details.
393 *
394 * @reset_type: type of reset to perform
395 * @reset_status: status code for the reset
396 * @data_size: size of reset_data
397 * @reset_data: information about the reset
398 */
3c63db9c 399void __weak __efi_runtime EFIAPI efi_reset_system(
80a4800e
AG
400 enum efi_reset_type reset_type,
401 efi_status_t reset_status,
402 unsigned long data_size, void *reset_data)
403{
f03a879d 404 return;
80a4800e
AG
405}
406
bcfb0e22
HS
407/**
408 * efi_reset_system_init() - initialize the reset driver
409 *
410 * Boards may override this function to initialize the reset driver.
411 */
22c793e6 412efi_status_t __weak efi_reset_system_init(void)
80a4800e 413{
22c793e6 414 return EFI_SUCCESS;
80a4800e
AG
415}
416
bcfb0e22
HS
417/**
418 * efi_get_time() - get current time
419 *
420 * This function implements the GetTime runtime service after
421 * SetVirtualAddressMap() is called. As the U-Boot driver are not available
422 * anymore only an error code is returned.
423 *
424 * See the Unified Extensible Firmware Interface (UEFI) specification
425 * for details.
426 *
427 * @time: pointer to structure to receive current time
428 * @capabilities: pointer to structure to receive RTC properties
429 * Returns: status code
430 */
3c63db9c 431efi_status_t __weak __efi_runtime EFIAPI efi_get_time(
80a4800e
AG
432 struct efi_time *time,
433 struct efi_time_cap *capabilities)
434{
c5b63bec 435 return EFI_UNSUPPORTED;
80a4800e
AG
436}
437
433bfe7b
HS
438/**
439 * efi_set_time() - set current time
440 *
441 * This function implements the SetTime runtime service after
442 * SetVirtualAddressMap() is called. As the U-Boot driver are not available
443 * anymore only an error code is returned.
444 *
445 * See the Unified Extensible Firmware Interface (UEFI) specification
446 * for details.
447 *
448 * @time: pointer to structure to with current time
449 * Returns: status code
450 */
451efi_status_t __weak __efi_runtime EFIAPI efi_set_time(struct efi_time *time)
452{
453 return EFI_UNSUPPORTED;
454}
455
2bc27ca8
AT
456/**
457 * efi_update_capsule_unsupported() - process information from operating system
458 *
459 * This function implements the UpdateCapsule() runtime service.
460 *
461 * See the Unified Extensible Firmware Interface (UEFI) specification for
462 * details.
463 *
464 * @capsule_header_array: pointer to array of virtual pointers
465 * @capsule_count: number of pointers in capsule_header_array
466 * @scatter_gather_list: pointer to array of physical pointers
467 * Returns: status code
468 */
6c2377f9 469static efi_status_t __efi_runtime EFIAPI efi_update_capsule_unsupported(
2bc27ca8
AT
470 struct efi_capsule_header **capsule_header_array,
471 efi_uintn_t capsule_count,
472 u64 scatter_gather_list)
473{
474 return EFI_UNSUPPORTED;
475}
476
477/**
478 * efi_query_capsule_caps_unsupported() - check if capsule is supported
479 *
480 * This function implements the QueryCapsuleCapabilities() runtime service.
481 *
482 * See the Unified Extensible Firmware Interface (UEFI) specification for
483 * details.
484 *
485 * @capsule_header_array: pointer to array of virtual pointers
486 * @capsule_count: number of pointers in capsule_header_array
487 * @maximum_capsule_size: maximum capsule size
488 * @reset_type: type of reset needed for capsule update
489 * Returns: status code
490 */
6c2377f9 491static efi_status_t __efi_runtime EFIAPI efi_query_capsule_caps_unsupported(
2bc27ca8
AT
492 struct efi_capsule_header **capsule_header_array,
493 efi_uintn_t capsule_count,
494 u64 *maximum_capsule_size,
495 u32 *reset_type)
496{
497 return EFI_UNSUPPORTED;
498}
499
24a238f7
HS
500/**
501 * efi_is_runtime_service_pointer() - check if pointer points to runtime table
502 *
503 * @p: pointer to check
504 * Return: true if the pointer points to a service function pointer in the
505 * runtime table
506 */
507static bool efi_is_runtime_service_pointer(void *p)
50149ea3 508{
14b40487
HS
509 return (p >= (void *)&efi_runtime_services.get_time &&
510 p <= (void *)&efi_runtime_services.query_variable_info) ||
511 p == (void *)&efi_events.prev ||
512 p == (void *)&efi_events.next;
50149ea3
AG
513}
514
b23ffcbe
HS
515/**
516 * efi_runtime_detach() - detach unimplemented runtime functions
517 */
7f95104d 518void efi_runtime_detach(void)
50149ea3 519{
b23ffcbe
HS
520 efi_runtime_services.reset_system = efi_reset_system;
521 efi_runtime_services.get_time = efi_get_time;
522 efi_runtime_services.set_time = efi_set_time;
2bc27ca8
AT
523 if (IS_ENABLED(CONFIG_EFI_RUNTIME_UPDATE_CAPSULE)) {
524 /* won't support at runtime */
525 efi_runtime_services.update_capsule =
526 efi_update_capsule_unsupported;
527 efi_runtime_services.query_capsule_caps =
528 efi_query_capsule_caps_unsupported;
529 }
50149ea3 530
b23ffcbe
HS
531 /* Update CRC32 */
532 efi_update_table_header_crc32(&efi_runtime_services.hdr);
24a238f7
HS
533}
534
ee8ebaaa
HS
535/**
536 * efi_set_virtual_address_map_runtime() - change from physical to virtual
537 * mapping
538 *
539 * This function implements the SetVirtualAddressMap() runtime service after
540 * it is first called.
541 *
542 * See the Unified Extensible Firmware Interface (UEFI) specification for
543 * details.
544 *
545 * @memory_map_size: size of the virtual map
546 * @descriptor_size: size of an entry in the map
547 * @descriptor_version: version of the map entries
548 * @virtmap: virtual address mapping information
549 * Return: status code EFI_UNSUPPORTED
550 */
96185603 551static __efi_runtime efi_status_t EFIAPI efi_set_virtual_address_map_runtime(
24e6722b
HS
552 efi_uintn_t memory_map_size,
553 efi_uintn_t descriptor_size,
ee8ebaaa
HS
554 uint32_t descriptor_version,
555 struct efi_mem_desc *virtmap)
556{
557 return EFI_UNSUPPORTED;
558}
559
560/**
561 * efi_convert_pointer_runtime() - convert from physical to virtual pointer
562 *
563 * This function implements the ConvertPointer() runtime service after
564 * the first call to SetVirtualAddressMap().
565 *
566 * See the Unified Extensible Firmware Interface (UEFI) specification for
567 * details.
568 *
569 * @debug_disposition: indicates if pointer may be converted to NULL
570 * @address: pointer to be converted
571 * Return: status code EFI_UNSUPPORTED
572 */
573static __efi_runtime efi_status_t EFIAPI efi_convert_pointer_runtime(
574 efi_uintn_t debug_disposition, void **address)
575{
576 return EFI_UNSUPPORTED;
577}
578
7be56e86 579/**
7aeceffb 580 * efi_convert_pointer() - convert from physical to virtual pointer
7be56e86
HS
581 *
582 * This function implements the ConvertPointer() runtime service until
583 * the first call to SetVirtualAddressMap().
584 *
585 * See the Unified Extensible Firmware Interface (UEFI) specification for
586 * details.
587 *
588 * @debug_disposition: indicates if pointer may be converted to NULL
589 * @address: pointer to be converted
7aeceffb 590 * Return: status code
7be56e86 591 */
a44d2a23
HS
592__efi_runtime efi_status_t EFIAPI
593efi_convert_pointer(efi_uintn_t debug_disposition, void **address)
7be56e86 594{
a27c78fd 595 efi_physical_addr_t addr;
7be56e86
HS
596 efi_uintn_t i;
597 efi_status_t ret = EFI_NOT_FOUND;
598
7be56e86
HS
599 if (!efi_virtmap) {
600 ret = EFI_UNSUPPORTED;
601 goto out;
602 }
603
604 if (!address) {
605 ret = EFI_INVALID_PARAMETER;
606 goto out;
607 }
724d2817
HS
608 if (!*address) {
609 if (debug_disposition & EFI_OPTIONAL_PTR)
610 return EFI_SUCCESS;
611 else
612 return EFI_INVALID_PARAMETER;
613 }
7be56e86 614
a27c78fd 615 addr = (uintptr_t)*address;
7be56e86
HS
616 for (i = 0; i < efi_descriptor_count; i++) {
617 struct efi_mem_desc *map = (void *)efi_virtmap +
618 (efi_descriptor_size * i);
619
620 if (addr >= map->physical_start &&
621 (addr < map->physical_start
622 + (map->num_pages << EFI_PAGE_SHIFT))) {
623 *address = (void *)(uintptr_t)
624 (addr + map->virtual_start -
625 map->physical_start);
626
627 ret = EFI_SUCCESS;
628 break;
629 }
630 }
631
632out:
a44d2a23 633 return ret;
7be56e86
HS
634}
635
24a238f7
HS
636static __efi_runtime void efi_relocate_runtime_table(ulong offset)
637{
638 ulong patchoff;
639 void **pos;
640
641 /* Relocate the runtime services pointers */
642 patchoff = offset - gd->relocaddr;
643 for (pos = (void **)&efi_runtime_services.get_time;
644 pos <= (void **)&efi_runtime_services.query_variable_info; ++pos) {
ee8ebaaa 645 if (*pos)
24a238f7 646 *pos += patchoff;
50149ea3 647 }
a39f39cd 648
ee8ebaaa
HS
649 /*
650 * The entry for SetVirtualAddress() must point to a physical address.
651 * After the first execution the service must return EFI_UNSUPPORTED.
652 */
653 efi_runtime_services.set_virtual_address_map =
654 &efi_set_virtual_address_map_runtime;
655
656 /*
657 * The entry for ConvertPointer() must point to a physical address.
658 * The service is not usable after SetVirtualAddress().
659 */
660 efi_runtime_services.convert_pointer = &efi_convert_pointer_runtime;
661
7be56e86
HS
662 /*
663 * TODO: Update UEFI variable RuntimeServicesSupported removing flags
664 * EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP and
665 * EFI_RT_SUPPORTED_CONVERT_POINTER as required by the UEFI spec 2.8.
666 */
667
250b3254 668 /* Update CRC32 */
a39f39cd 669 efi_update_table_header_crc32(&efi_runtime_services.hdr);
50149ea3
AG
670}
671
672/* Relocate EFI runtime to uboot_reloc_base = offset */
673void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map)
674{
675#ifdef IS_RELA
3f8d1304 676 struct elf_rela *rel = (void *)__efi_runtime_rel_start;
50149ea3 677#else
3f8d1304 678 struct elf_rel *rel = (void *)__efi_runtime_rel_start;
98463903 679 static ulong lastoff = CONFIG_TEXT_BASE;
50149ea3
AG
680#endif
681
edcef3ba 682 debug("%s: Relocating to offset=%lx\n", __func__, offset);
3f8d1304 683 for (; (uintptr_t)rel < (uintptr_t)__efi_runtime_rel_stop; rel++) {
98463903 684 ulong base = CONFIG_TEXT_BASE;
50149ea3
AG
685 ulong *p;
686 ulong newaddr;
687
688 p = (void*)((ulong)rel->offset - base) + gd->relocaddr;
689
9f8932d0
HS
690 /*
691 * The runtime services table is updated in
692 * efi_relocate_runtime_table()
693 */
24a238f7
HS
694 if (map && efi_is_runtime_service_pointer(p))
695 continue;
696
3ce78297
HS
697 debug("%s: rel->info=%#lx *p=%#lx rel->offset=%p\n", __func__,
698 rel->info, *p, rel->offset);
50149ea3 699
6836adbe
RC
700 switch (rel->info & R_MASK) {
701 case R_RELATIVE:
50149ea3 702#ifdef IS_RELA
98463903 703 newaddr = rel->addend + offset - CONFIG_TEXT_BASE;
50149ea3
AG
704#else
705 newaddr = *p - lastoff + offset;
706#endif
6836adbe
RC
707 break;
708#ifdef R_ABSOLUTE
709 case R_ABSOLUTE: {
710 ulong symidx = rel->info >> SYM_INDEX;
711 extern struct dyn_sym __dyn_sym_start[];
712 newaddr = __dyn_sym_start[symidx].addr + offset;
afdc4fcc 713#ifdef IS_RELA
98463903 714 newaddr -= CONFIG_TEXT_BASE;
afdc4fcc 715#endif
6836adbe
RC
716 break;
717 }
718#endif
719 default:
24a238f7
HS
720 printf("%s: Unknown relocation type %llx\n",
721 __func__, rel->info & R_MASK);
6836adbe
RC
722 continue;
723 }
50149ea3
AG
724
725 /* Check if the relocation is inside bounds */
726 if (map && ((newaddr < map->virtual_start) ||
591cf2e1
HS
727 newaddr > (map->virtual_start +
728 (map->num_pages << EFI_PAGE_SHIFT)))) {
24a238f7
HS
729 printf("%s: Relocation at %p is out of range (%lx)\n",
730 __func__, p, newaddr);
50149ea3
AG
731 continue;
732 }
733
edcef3ba 734 debug("%s: Setting %p to %lx\n", __func__, p, newaddr);
50149ea3 735 *p = newaddr;
36c37a84
AG
736 flush_dcache_range((ulong)p & ~(EFI_CACHELINE_SIZE - 1),
737 ALIGN((ulong)&p[1], EFI_CACHELINE_SIZE));
50149ea3
AG
738 }
739
740#ifndef IS_RELA
741 lastoff = offset;
742#endif
743
744 invalidate_icache_all();
745}
746
bcfb0e22
HS
747/**
748 * efi_set_virtual_address_map() - change from physical to virtual mapping
749 *
750 * This function implements the SetVirtualAddressMap() runtime service.
751 *
752 * See the Unified Extensible Firmware Interface (UEFI) specification for
753 * details.
754 *
755 * @memory_map_size: size of the virtual map
756 * @descriptor_size: size of an entry in the map
757 * @descriptor_version: version of the map entries
758 * @virtmap: virtual address mapping information
759 * Return: status code
760 */
50149ea3 761static efi_status_t EFIAPI efi_set_virtual_address_map(
24e6722b
HS
762 efi_uintn_t memory_map_size,
763 efi_uintn_t descriptor_size,
50149ea3
AG
764 uint32_t descriptor_version,
765 struct efi_mem_desc *virtmap)
766{
24e6722b
HS
767 efi_uintn_t n = memory_map_size / descriptor_size;
768 efi_uintn_t i;
53e1d8fa 769 efi_status_t ret = EFI_INVALID_PARAMETER;
5c38e05e 770 int rt_code_sections = 0;
14b40487 771 struct efi_event *event;
50149ea3 772
24e6722b 773 EFI_ENTRY("%zx %zx %x %p", memory_map_size, descriptor_size,
50149ea3
AG
774 descriptor_version, virtmap);
775
53e1d8fa
HS
776 if (descriptor_version != EFI_MEMORY_DESCRIPTOR_VERSION ||
777 descriptor_size < sizeof(struct efi_mem_desc))
778 goto out;
779
7be56e86
HS
780 efi_virtmap = virtmap;
781 efi_descriptor_size = descriptor_size;
782 efi_descriptor_count = n;
783
5c38e05e
AG
784 /*
785 * TODO:
786 * Further down we are cheating. While really we should implement
787 * SetVirtualAddressMap() events and ConvertPointer() to allow
788 * dynamically loaded drivers to expose runtime services, we don't
789 * today.
790 *
791 * So let's ensure we see exactly one single runtime section, as
792 * that is the built-in one. If we see more (or less), someone must
793 * have tried adding or removing to that which we don't support yet.
794 * In that case, let's better fail rather than expose broken runtime
795 * services.
796 */
797 for (i = 0; i < n; i++) {
798 struct efi_mem_desc *map = (void*)virtmap +
799 (descriptor_size * i);
800
801 if (map->type == EFI_RUNTIME_SERVICES_CODE)
802 rt_code_sections++;
803 }
804
805 if (rt_code_sections != 1) {
806 /*
807 * We expose exactly one single runtime code section, so
808 * something is definitely going wrong.
809 */
53e1d8fa 810 goto out;
5c38e05e
AG
811 }
812
14b40487
HS
813 /* Notify EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
814 list_for_each_entry(event, &efi_events, link) {
815 if (event->notify_function)
816 EFI_CALL_VOID(event->notify_function(
817 event, event->notify_context));
818 }
819
80a4800e
AG
820 /* Rebind mmio pointers */
821 for (i = 0; i < n; i++) {
822 struct efi_mem_desc *map = (void*)virtmap +
823 (descriptor_size * i);
824 struct list_head *lhandle;
825 efi_physical_addr_t map_start = map->physical_start;
826 efi_physical_addr_t map_len = map->num_pages << EFI_PAGE_SHIFT;
827 efi_physical_addr_t map_end = map_start + map_len;
07240da2 828 u64 off = map->virtual_start - map_start;
80a4800e
AG
829
830 /* Adjust all mmio pointers in this region */
831 list_for_each(lhandle, &efi_runtime_mmio) {
832 struct efi_runtime_mmio_list *lmmio;
833
834 lmmio = list_entry(lhandle,
835 struct efi_runtime_mmio_list,
836 link);
837 if ((map_start <= lmmio->paddr) &&
838 (map_end >= lmmio->paddr)) {
80a4800e
AG
839 uintptr_t new_addr = lmmio->paddr + off;
840 *lmmio->ptr = (void *)new_addr;
841 }
842 }
07240da2
HS
843 if ((map_start <= (uintptr_t)systab.tables) &&
844 (map_end >= (uintptr_t)systab.tables)) {
845 char *ptr = (char *)systab.tables;
846
847 ptr += off;
848 systab.tables = (struct efi_configuration_table *)ptr;
849 }
80a4800e
AG
850 }
851
24a238f7 852 /* Relocate the runtime. See TODO above */
50149ea3
AG
853 for (i = 0; i < n; i++) {
854 struct efi_mem_desc *map;
855
856 map = (void*)virtmap + (descriptor_size * i);
857 if (map->type == EFI_RUNTIME_SERVICES_CODE) {
80a4800e 858 ulong new_offset = map->virtual_start -
5c38e05e 859 map->physical_start + gd->relocaddr;
50149ea3 860
24a238f7 861 efi_relocate_runtime_table(new_offset);
50149ea3 862 efi_runtime_relocate(new_offset, map);
53e1d8fa
HS
863 ret = EFI_SUCCESS;
864 goto out;
50149ea3
AG
865 }
866 }
867
53e1d8fa
HS
868out:
869 return EFI_EXIT(ret);
50149ea3
AG
870}
871
bcfb0e22
HS
872/**
873 * efi_add_runtime_mmio() - add memory-mapped IO region
874 *
875 * This function adds a memory-mapped IO region to the memory map to make it
876 * available at runtime.
877 *
fb34f298
HS
878 * @mmio_ptr: pointer to a pointer to the start of the memory-mapped
879 * IO region
250b3254 880 * @len: size of the memory-mapped IO region
bcfb0e22
HS
881 * Returns: status code
882 */
22c793e6 883efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len)
80a4800e
AG
884{
885 struct efi_runtime_mmio_list *newmmio;
813468cd 886 uint64_t addr = *(uintptr_t *)mmio_ptr;
b225c92f 887 efi_status_t ret;
813468cd 888
714497e3 889 ret = efi_add_memory_map(addr, len, EFI_MMAP_IO);
b225c92f 890 if (ret != EFI_SUCCESS)
813468cd 891 return EFI_OUT_OF_RESOURCES;
80a4800e
AG
892
893 newmmio = calloc(1, sizeof(*newmmio));
22c793e6
HS
894 if (!newmmio)
895 return EFI_OUT_OF_RESOURCES;
80a4800e
AG
896 newmmio->ptr = mmio_ptr;
897 newmmio->paddr = *(uintptr_t *)mmio_ptr;
898 newmmio->len = len;
899 list_add_tail(&newmmio->link, &efi_runtime_mmio);
22c793e6 900
813468cd 901 return EFI_SUCCESS;
80a4800e
AG
902}
903
50149ea3
AG
904/*
905 * In the second stage, U-Boot has disappeared. To isolate our runtime code
906 * that at this point still exists from the rest, we put it into a special
907 * section.
908 *
909 * !!WARNING!!
910 *
911 * This means that we can not rely on any code outside of this file in any
912 * function or variable below this line.
913 *
914 * Please keep everything fully self-contained and annotated with
3c63db9c 915 * __efi_runtime and __efi_runtime_data markers.
50149ea3
AG
916 */
917
918/*
919 * Relocate the EFI runtime stub to a different place. We need to call this
920 * the first time we expose the runtime interface to a user and on set virtual
921 * address map calls.
922 */
923
bcfb0e22
HS
924/**
925 * efi_unimplemented() - replacement function, returns EFI_UNSUPPORTED
926 *
927 * This function is used after SetVirtualAddressMap() is called as replacement
928 * for services that are not available anymore due to constraints of the U-Boot
929 * implementation.
930 *
931 * Return: EFI_UNSUPPORTED
932 */
3c63db9c 933static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void)
50149ea3
AG
934{
935 return EFI_UNSUPPORTED;
936}
937
3c63db9c 938struct efi_runtime_services __efi_runtime_data efi_runtime_services = {
50149ea3
AG
939 .hdr = {
940 .signature = EFI_RUNTIME_SERVICES_SIGNATURE,
112f2430 941 .revision = EFI_SPECIFICATION_VERSION,
71c846ab 942 .headersize = sizeof(struct efi_runtime_services),
50149ea3 943 },
80a4800e 944 .get_time = &efi_get_time_boottime,
433bfe7b 945 .set_time = &efi_set_time_boottime,
50149ea3
AG
946 .get_wakeup_time = (void *)&efi_unimplemented,
947 .set_wakeup_time = (void *)&efi_unimplemented,
948 .set_virtual_address_map = &efi_set_virtual_address_map,
7be56e86 949 .convert_pointer = efi_convert_pointer,
ad644e7c 950 .get_variable = efi_get_variable,
45c66f9c 951 .get_next_variable_name = efi_get_next_variable_name,
ad644e7c 952 .set_variable = efi_set_variable,
b94461c2 953 .get_next_high_mono_count = (void *)&efi_unimplemented,
80a4800e 954 .reset_system = &efi_reset_system_boottime,
2bc27ca8 955#ifdef CONFIG_EFI_RUNTIME_UPDATE_CAPSULE
0c230743
HS
956 .update_capsule = efi_update_capsule,
957 .query_capsule_caps = efi_query_capsule_caps,
2bc27ca8
AT
958#else
959 .update_capsule = efi_update_capsule_unsupported,
960 .query_capsule_caps = efi_query_capsule_caps_unsupported,
961#endif
0c230743 962 .query_variable_info = efi_query_variable_info,
50149ea3 963};
This page took 0.514 seconds and 4 git commands to generate.