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