blob: dde083b09665652503bdeac7b4369bd383527cd9 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Graf0bd425a2016-03-04 01:10:01 +01002/*
3 * EFI application runtime services
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Graf0bd425a2016-03-04 01:10:01 +01006 */
7
Alexander Graf0bd425a2016-03-04 01:10:01 +01008#include <command.h>
Simon Glass63334482019-11-14 12:57:39 -07009#include <cpu_func.h>
Alexander Graf0bd425a2016-03-04 01:10:01 +010010#include <dm.h>
Alexander Graf46c15142018-06-18 17:23:11 +020011#include <elf.h>
Alexander Graf0bd425a2016-03-04 01:10:01 +010012#include <efi_loader.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070014#include <malloc.h>
Alexander Graf0bd425a2016-03-04 01:10:01 +010015#include <rtc.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070017#include <u-boot/crc.h>
Ilias Apalodimas9b378942024-03-15 08:43:47 +020018#include <asm/sections.h>
Alexander Graf0bd425a2016-03-04 01:10:01 +010019
20/* For manual relocation support */
21DECLARE_GLOBAL_DATA_PTR;
22
Heinrich Schuchardt956eff32020-02-19 20:48:49 +010023/* GUID of the runtime properties table */
24static const efi_guid_t efi_rt_properties_table_guid =
25 EFI_RT_PROPERTIES_TABLE_GUID;
26
Alexander Graf77256092016-08-16 21:08:45 +020027struct 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 */
Bin Mengba7ad022023-04-05 20:15:19 +080035static LIST_HEAD(efi_runtime_mmio);
Alexander Graf77256092016-08-16 21:08:45 +020036
Alexander Graf393dd912016-10-14 13:45:30 +020037static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void);
Alexander Graf0bd425a2016-03-04 01:10:01 +010038
Simon Glassfff89d42018-06-11 23:26:40 -060039/*
Heinrich Schuchardt11121542018-09-03 19:29:41 +020040 * TODO(sjg@chromium.org): These defines and structures should come from the ELF
41 * header for each architecture (or a generic header) rather than being repeated
42 * here.
Simon Glassfff89d42018-06-11 23:26:40 -060043 */
Alexander Graf0fe51922018-06-18 17:23:08 +020044#if defined(__aarch64__)
Alexander Graf46c15142018-06-18 17:23:11 +020045#define R_RELATIVE R_AARCH64_RELATIVE
Alexander Graf0bd425a2016-03-04 01:10:01 +010046#define R_MASK 0xffffffffULL
47#define IS_RELA 1
Alexander Graf0fe51922018-06-18 17:23:08 +020048#elif defined(__arm__)
Alexander Graf46c15142018-06-18 17:23:11 +020049#define R_RELATIVE R_ARM_RELATIVE
Alexander Graf0bd425a2016-03-04 01:10:01 +010050#define R_MASK 0xffULL
Heinrich Schuchardt56e82be2018-10-13 20:52:08 -070051#elif defined(__i386__)
Simon Glasscdfe6962016-09-25 15:27:35 -060052#define R_RELATIVE R_386_RELATIVE
53#define R_MASK 0xffULL
Heinrich Schuchardt56e82be2018-10-13 20:52:08 -070054#elif defined(__x86_64__)
55#define R_RELATIVE R_X86_64_RELATIVE
56#define R_MASK 0xffffffffULL
57#define IS_RELA 1
Alexander Graf0fe51922018-06-18 17:23:08 +020058#elif defined(__riscv)
Rick Chen9677a372018-05-28 19:06:37 +080059#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};
Alexander Graf0fe51922018-06-18 17:23:08 +020069#if (__riscv_xlen == 32)
Rick Chen9677a372018-05-28 19:06:37 +080070#define R_ABSOLUTE R_RISCV_32
71#define SYM_INDEX 8
Alexander Graf0fe51922018-06-18 17:23:08 +020072#elif (__riscv_xlen == 64)
Rick Chen9677a372018-05-28 19:06:37 +080073#define R_ABSOLUTE R_RISCV_64
74#define SYM_INDEX 32
Alexander Graf0fe51922018-06-18 17:23:08 +020075#else
76#error unknown riscv target
Rick Chen9677a372018-05-28 19:06:37 +080077#endif
Alexander Graf0bd425a2016-03-04 01:10:01 +010078#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
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +020093static __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
Alexander Graf0bd425a2016-03-04 01:10:01 +010097/*
Heinrich Schuchardt11121542018-09-03 19:29:41 +020098 * EFI runtime code lives in two stages. In the first stage, U-Boot and an EFI
Alexander Graf0bd425a2016-03-04 01:10:01 +010099 * payload are running concurrently at the same time. In this mode, we can
100 * handle a good number of runtime callbacks
101 */
102
Heinrich Schuchardt956eff32020-02-19 20:48:49 +0100103/**
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 */
AKASHI Takahiro32401842019-06-05 13:21:38 +0900111efi_status_t efi_init_runtime_supported(void)
112{
Heinrich Schuchardt956eff32020-02-19 20:48:49 +0100113 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 =
Heinrich Schuchardt5be59712020-03-24 19:54:53 +0000125 EFI_RT_SUPPORTED_GET_VARIABLE |
126 EFI_RT_SUPPORTED_GET_NEXT_VARIABLE_NAME |
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200127 EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP |
128 EFI_RT_SUPPORTED_CONVERT_POINTER;
AKASHI Takahiro32401842019-06-05 13:21:38 +0900129
Ilias Apalodimas86ba8692024-04-18 15:54:50 +0300130 if (IS_ENABLED(CONFIG_EFI_RT_VOLATILE_STORE))
131 rt_table->runtime_services_supported |=
132 EFI_RT_SUPPORTED_SET_VARIABLE;
133
AKASHI Takahiro32401842019-06-05 13:21:38 +0900134 /*
135 * This value must be synced with efi_runtime_detach_list
136 * as well as efi_runtime_services.
137 */
Heinrich Schuchardt05874fb2019-07-05 18:12:16 +0200138#ifdef CONFIG_EFI_HAVE_RUNTIME_RESET
Heinrich Schuchardt956eff32020-02-19 20:48:49 +0100139 rt_table->runtime_services_supported |= EFI_RT_SUPPORTED_RESET_SYSTEM;
AKASHI Takahiro32401842019-06-05 13:21:38 +0900140#endif
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200141
Heinrich Schuchardt956eff32020-02-19 20:48:49 +0100142 ret = efi_install_configuration_table(&efi_rt_properties_table_guid,
143 rt_table);
144 return ret;
AKASHI Takahiro32401842019-06-05 13:21:38 +0900145}
146
Heinrich Schuchardt69c15762018-07-29 09:49:04 +0200147/**
Heinrich Schuchardt8cd99752020-06-28 16:30:29 +0200148 * efi_memcpy_runtime() - copy memory area
149 *
150 * At runtime memcpy() is not available.
151 *
Heinrich Schuchardt447753e2020-07-22 07:56:14 +0200152 * Overlapping memory areas can be copied safely if src >= dest.
153 *
Heinrich Schuchardt8cd99752020-06-28 16:30:29 +0200154 * @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
168/**
Heinrich Schuchardt69c15762018-07-29 09:49:04 +0200169 * 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
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200180/**
Heinrich Schuchardt11121542018-09-03 19:29:41 +0200181 * efi_reset_system_boottime() - reset system at boot time
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200182 *
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 */
Alexander Graf77256092016-08-16 21:08:45 +0200194static 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)
Alexander Graf0bd425a2016-03-04 01:10:01 +0100198{
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100199 struct efi_event *evt;
200
Alexander Graf0bd425a2016-03-04 01:10:01 +0100201 EFI_ENTRY("%d %lx %lx %p", reset_type, reset_status, data_size,
202 reset_data);
203
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100204 /* 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)) {
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200209 efi_signal_event(evt);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100210 break;
211 }
212 }
Alexander Graf0bd425a2016-03-04 01:10:01 +0100213 switch (reset_type) {
214 case EFI_RESET_COLD:
215 case EFI_RESET_WARM:
Heinrich Schuchardt450d4c82018-02-06 22:00:22 +0100216 case EFI_RESET_PLATFORM_SPECIFIC:
Alexander Graf0bd425a2016-03-04 01:10:01 +0100217 do_reset(NULL, 0, 0, NULL);
218 break;
219 case EFI_RESET_SHUTDOWN:
Heinrich Schuchardt44489452018-10-16 07:44:53 +0200220#ifdef CONFIG_CMD_POWEROFF
221 do_poweroff(NULL, 0, 0, NULL);
222#endif
Alexander Graf0bd425a2016-03-04 01:10:01 +0100223 break;
224 }
225
Alexander Graf77256092016-08-16 21:08:45 +0200226 while (1) { }
Alexander Graf0bd425a2016-03-04 01:10:01 +0100227}
228
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200229/**
Heinrich Schuchardt11121542018-09-03 19:29:41 +0200230 * efi_get_time_boottime() - get current time at boot time
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200231 *
232 * This function implements the GetTime runtime service before
233 * SetVirtualAddressMap() is called.
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200234 *
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200235 * 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
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200240 * Returns: status code
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200241 */
Alexander Graf77256092016-08-16 21:08:45 +0200242static efi_status_t EFIAPI efi_get_time_boottime(
243 struct efi_time *time,
244 struct efi_time_cap *capabilities)
Alexander Graf0bd425a2016-03-04 01:10:01 +0100245{
Heinrich Schuchardtf2856ad2019-05-31 22:56:02 +0200246#ifdef CONFIG_EFI_GET_TIME
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200247 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200248 struct rtc_time tm;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100249 struct udevice *dev;
250
251 EFI_ENTRY("%p %p", time, capabilities);
252
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200253 if (!time) {
254 ret = EFI_INVALID_PARAMETER;
255 goto out;
256 }
Heinrich Schuchardtb4bd3662019-05-19 21:41:28 +0200257 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)) {
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200263 ret = EFI_DEVICE_ERROR;
264 goto out;
265 }
Alexander Graf0bd425a2016-03-04 01:10:01 +0100266
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;
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200273 time->second = tm.tm_sec;
Heinrich Schuchardt6846c572020-10-23 05:30:29 +0200274 if (tm.tm_isdst > 0)
Heinrich Schuchardtba3e8282019-05-31 22:08:45 +0200275 time->daylight =
276 EFI_TIME_ADJUST_DAYLIGHT | EFI_TIME_IN_DAYLIGHT;
Heinrich Schuchardt6846c572020-10-23 05:30:29 +0200277 else if (!tm.tm_isdst)
278 time->daylight = EFI_TIME_ADJUST_DAYLIGHT;
279 else
280 time->daylight = 0;
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200281 time->timezone = EFI_UNSPECIFIED_TIMEZONE;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100282
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200283 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);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100291#else
Heinrich Schuchardt37035b12018-07-07 23:39:14 +0200292 EFI_ENTRY("%p %p", time, capabilities);
Heinrich Schuchardtb4bd3662019-05-19 21:41:28 +0200293 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100294#endif
295}
296
Heinrich Schuchardtf2856ad2019-05-31 22:56:02 +0200297#ifdef CONFIG_EFI_SET_TIME
Heinrich Schuchardt33e5a0e2019-05-31 07:35:19 +0200298
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
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +0200321/**
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{
Heinrich Schuchardtf2856ad2019-05-31 22:56:02 +0200335#ifdef CONFIG_EFI_SET_TIME
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +0200336 efi_status_t ret = EFI_SUCCESS;
337 struct rtc_time tm;
338 struct udevice *dev;
Alexander Graf77256092016-08-16 21:08:45 +0200339
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +0200340 EFI_ENTRY("%p", time);
341
Heinrich Schuchardt33e5a0e2019-05-31 07:35:19 +0200342 if (efi_validate_time(time)) {
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +0200343 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 }
351
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;
Heinrich Schuchardt6846c572020-10-23 05:30:29 +0200359 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 }
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +0200370 /* 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}
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200382/**
383 * efi_reset_system() - reset system
384 *
385 * This function implements the ResetSystem() runtime service after
Heinrich Schuchardt7b66fcc2020-08-22 08:29:53 +0200386 * SetVirtualAddressMap() is called. As this placeholder cannot reset the
387 * system it simply return to the caller.
388 *
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200389 * 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 */
Alexander Graf393dd912016-10-14 13:45:30 +0200399void __weak __efi_runtime EFIAPI efi_reset_system(
Alexander Graf77256092016-08-16 21:08:45 +0200400 enum efi_reset_type reset_type,
401 efi_status_t reset_status,
402 unsigned long data_size, void *reset_data)
403{
Heinrich Schuchardt7b66fcc2020-08-22 08:29:53 +0200404 return;
Alexander Graf77256092016-08-16 21:08:45 +0200405}
406
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200407/**
408 * efi_reset_system_init() - initialize the reset driver
409 *
410 * Boards may override this function to initialize the reset driver.
411 */
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100412efi_status_t __weak efi_reset_system_init(void)
Alexander Graf77256092016-08-16 21:08:45 +0200413{
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100414 return EFI_SUCCESS;
Alexander Graf77256092016-08-16 21:08:45 +0200415}
416
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200417/**
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 */
Alexander Graf393dd912016-10-14 13:45:30 +0200431efi_status_t __weak __efi_runtime EFIAPI efi_get_time(
Alexander Graf77256092016-08-16 21:08:45 +0200432 struct efi_time *time,
433 struct efi_time_cap *capabilities)
434{
Heinrich Schuchardtb4ba5be2019-06-13 18:42:40 +0200435 return EFI_UNSUPPORTED;
Alexander Graf77256092016-08-16 21:08:45 +0200436}
437
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +0200438/**
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
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000456/**
AKASHI Takahiro473d9b32020-11-17 09:27:55 +0900457 * 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 */
Heinrich Schuchardt6ab94032023-02-10 08:56:06 +0100469static efi_status_t __efi_runtime EFIAPI efi_update_capsule_unsupported(
AKASHI Takahiro473d9b32020-11-17 09:27:55 +0900470 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 */
Heinrich Schuchardt6ab94032023-02-10 08:56:06 +0100491static efi_status_t __efi_runtime EFIAPI efi_query_capsule_caps_unsupported(
AKASHI Takahiro473d9b32020-11-17 09:27:55 +0900492 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
500/**
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000501 * 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)
Alexander Graf0bd425a2016-03-04 01:10:01 +0100508{
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200509 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;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100513}
514
Heinrich Schuchardtc3f2a9f2019-07-05 18:12:21 +0200515/**
516 * efi_runtime_detach() - detach unimplemented runtime functions
517 */
Heinrich Schuchardt1943dbb2019-07-05 17:42:16 +0200518void efi_runtime_detach(void)
Alexander Graf0bd425a2016-03-04 01:10:01 +0100519{
Heinrich Schuchardtc3f2a9f2019-07-05 18:12:21 +0200520 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;
AKASHI Takahiro473d9b32020-11-17 09:27:55 +0900523 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 }
Alexander Graf0bd425a2016-03-04 01:10:01 +0100530
Heinrich Schuchardtc3f2a9f2019-07-05 18:12:21 +0200531 /* Update CRC32 */
532 efi_update_table_header_crc32(&efi_runtime_services.hdr);
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000533}
534
Heinrich Schuchardt25728512019-06-29 03:32:52 +0200535/**
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 */
Heinrich Schuchardt2b6bd382019-07-12 22:41:43 +0200551static __efi_runtime efi_status_t EFIAPI efi_set_virtual_address_map_runtime(
Heinrich Schuchardtf8599dc2019-07-27 20:28:47 +0200552 efi_uintn_t memory_map_size,
553 efi_uintn_t descriptor_size,
Heinrich Schuchardt25728512019-06-29 03:32:52 +0200554 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
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200579/**
Heinrich Schuchardt582f8572020-03-22 08:28:15 +0100580 * efi_convert_pointer() - convert from physical to virtual pointer
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200581 *
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
Heinrich Schuchardt582f8572020-03-22 08:28:15 +0100590 * Return: status code
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200591 */
Heinrich Schuchardt699b7c62020-03-24 18:05:22 +0100592__efi_runtime efi_status_t EFIAPI
593efi_convert_pointer(efi_uintn_t debug_disposition, void **address)
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200594{
Heinrich Schuchardtb0818b72020-07-07 03:10:12 +0200595 efi_physical_addr_t addr;
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200596 efi_uintn_t i;
597 efi_status_t ret = EFI_NOT_FOUND;
598
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200599 if (!efi_virtmap) {
600 ret = EFI_UNSUPPORTED;
601 goto out;
602 }
603
604 if (!address) {
605 ret = EFI_INVALID_PARAMETER;
606 goto out;
607 }
Heinrich Schuchardtdabe54a2020-03-24 17:52:40 +0100608 if (!*address) {
609 if (debug_disposition & EFI_OPTIONAL_PTR)
610 return EFI_SUCCESS;
611 else
612 return EFI_INVALID_PARAMETER;
613 }
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200614
Heinrich Schuchardtb0818b72020-07-07 03:10:12 +0200615 addr = (uintptr_t)*address;
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200616 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:
Heinrich Schuchardt699b7c62020-03-24 18:05:22 +0100633 return ret;
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200634}
635
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000636static __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) {
Heinrich Schuchardt25728512019-06-29 03:32:52 +0200645 if (*pos)
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000646 *pos += patchoff;
647 }
Heinrich Schuchardt69c15762018-07-29 09:49:04 +0200648
Heinrich Schuchardt25728512019-06-29 03:32:52 +0200649 /*
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
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200662 /*
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
Heinrich Schuchardt11121542018-09-03 19:29:41 +0200668 /* Update CRC32 */
Heinrich Schuchardt69c15762018-07-29 09:49:04 +0200669 efi_update_table_header_crc32(&efi_runtime_services.hdr);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100670}
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
Ilias Apalodimas9bad9cd2024-04-04 09:37:37 +0300676 struct elf_rela *rel = (void *)__efi_runtime_rel_start;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100677#else
Ilias Apalodimas9bad9cd2024-04-04 09:37:37 +0300678 struct elf_rel *rel = (void *)__efi_runtime_rel_start;
Simon Glass72cc5382022-10-20 18:22:39 -0600679 static ulong lastoff = CONFIG_TEXT_BASE;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100680#endif
681
Alexander Graf62a67482016-06-02 11:38:27 +0200682 debug("%s: Relocating to offset=%lx\n", __func__, offset);
Ilias Apalodimas9bad9cd2024-04-04 09:37:37 +0300683 for (; (uintptr_t)rel < (uintptr_t)__efi_runtime_rel_stop; rel++) {
Simon Glass72cc5382022-10-20 18:22:39 -0600684 ulong base = CONFIG_TEXT_BASE;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100685 ulong *p;
686 ulong newaddr;
687
688 p = (void*)((ulong)rel->offset - base) + gd->relocaddr;
689
Heinrich Schuchardt33691582019-08-14 06:49:09 +0200690 /*
691 * The runtime services table is updated in
692 * efi_relocate_runtime_table()
693 */
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000694 if (map && efi_is_runtime_service_pointer(p))
695 continue;
696
Heinrich Schuchardt56e82be2018-10-13 20:52:08 -0700697 debug("%s: rel->info=%#lx *p=%#lx rel->offset=%p\n", __func__,
698 rel->info, *p, rel->offset);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100699
Rick Chen9677a372018-05-28 19:06:37 +0800700 switch (rel->info & R_MASK) {
701 case R_RELATIVE:
Alexander Graf0bd425a2016-03-04 01:10:01 +0100702#ifdef IS_RELA
Simon Glass72cc5382022-10-20 18:22:39 -0600703 newaddr = rel->addend + offset - CONFIG_TEXT_BASE;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100704#else
705 newaddr = *p - lastoff + offset;
706#endif
Rick Chen9677a372018-05-28 19:06:37 +0800707 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;
Alexander Grafdf0f6c72018-11-04 22:25:22 +0100713#ifdef IS_RELA
Simon Glass72cc5382022-10-20 18:22:39 -0600714 newaddr -= CONFIG_TEXT_BASE;
Alexander Grafdf0f6c72018-11-04 22:25:22 +0100715#endif
Rick Chen9677a372018-05-28 19:06:37 +0800716 break;
717 }
718#endif
719 default:
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000720 printf("%s: Unknown relocation type %llx\n",
721 __func__, rel->info & R_MASK);
Rick Chen9677a372018-05-28 19:06:37 +0800722 continue;
723 }
Alexander Graf0bd425a2016-03-04 01:10:01 +0100724
725 /* Check if the relocation is inside bounds */
726 if (map && ((newaddr < map->virtual_start) ||
Heinrich Schuchardt9ebc47f2017-09-18 22:11:34 +0200727 newaddr > (map->virtual_start +
728 (map->num_pages << EFI_PAGE_SHIFT)))) {
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000729 printf("%s: Relocation at %p is out of range (%lx)\n",
730 __func__, p, newaddr);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100731 continue;
732 }
733
Alexander Graf62a67482016-06-02 11:38:27 +0200734 debug("%s: Setting %p to %lx\n", __func__, p, newaddr);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100735 *p = newaddr;
Alexander Grafe5702322016-04-11 23:20:39 +0200736 flush_dcache_range((ulong)p & ~(EFI_CACHELINE_SIZE - 1),
737 ALIGN((ulong)&p[1], EFI_CACHELINE_SIZE));
Alexander Graf0bd425a2016-03-04 01:10:01 +0100738 }
739
740#ifndef IS_RELA
741 lastoff = offset;
742#endif
743
744 invalidate_icache_all();
745}
746
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200747/**
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 */
Alexander Graf0bd425a2016-03-04 01:10:01 +0100761static efi_status_t EFIAPI efi_set_virtual_address_map(
Heinrich Schuchardtf8599dc2019-07-27 20:28:47 +0200762 efi_uintn_t memory_map_size,
763 efi_uintn_t descriptor_size,
Alexander Graf0bd425a2016-03-04 01:10:01 +0100764 uint32_t descriptor_version,
765 struct efi_mem_desc *virtmap)
766{
Heinrich Schuchardtf8599dc2019-07-27 20:28:47 +0200767 efi_uintn_t n = memory_map_size / descriptor_size;
768 efi_uintn_t i;
Heinrich Schuchardtc70a1612019-08-14 05:19:37 +0200769 efi_status_t ret = EFI_INVALID_PARAMETER;
Alexander Graf86e00212018-12-11 10:00:42 +0100770 int rt_code_sections = 0;
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200771 struct efi_event *event;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100772
Heinrich Schuchardtf8599dc2019-07-27 20:28:47 +0200773 EFI_ENTRY("%zx %zx %x %p", memory_map_size, descriptor_size,
Alexander Graf0bd425a2016-03-04 01:10:01 +0100774 descriptor_version, virtmap);
775
Heinrich Schuchardtc70a1612019-08-14 05:19:37 +0200776 if (descriptor_version != EFI_MEMORY_DESCRIPTOR_VERSION ||
777 descriptor_size < sizeof(struct efi_mem_desc))
778 goto out;
779
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200780 efi_virtmap = virtmap;
781 efi_descriptor_size = descriptor_size;
782 efi_descriptor_count = n;
783
Alexander Graf86e00212018-12-11 10:00:42 +0100784 /*
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 */
Heinrich Schuchardtc70a1612019-08-14 05:19:37 +0200810 goto out;
Alexander Graf86e00212018-12-11 10:00:42 +0100811 }
812
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200813 /* 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
Alexander Graf77256092016-08-16 21:08:45 +0200820 /* 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;
Heinrich Schuchardt39054562018-08-04 23:16:06 +0200828 u64 off = map->virtual_start - map_start;
Alexander Graf77256092016-08-16 21:08:45 +0200829
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)) {
Alexander Graf77256092016-08-16 21:08:45 +0200839 uintptr_t new_addr = lmmio->paddr + off;
840 *lmmio->ptr = (void *)new_addr;
841 }
842 }
Heinrich Schuchardt39054562018-08-04 23:16:06 +0200843 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 }
Alexander Graf77256092016-08-16 21:08:45 +0200850 }
851
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000852 /* Relocate the runtime. See TODO above */
Alexander Graf0bd425a2016-03-04 01:10:01 +0100853 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) {
Alexander Graf77256092016-08-16 21:08:45 +0200858 ulong new_offset = map->virtual_start -
Alexander Graf86e00212018-12-11 10:00:42 +0100859 map->physical_start + gd->relocaddr;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100860
Heinrich Schuchardt19cd80b2019-06-20 22:00:02 +0000861 efi_relocate_runtime_table(new_offset);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100862 efi_runtime_relocate(new_offset, map);
Heinrich Schuchardtc70a1612019-08-14 05:19:37 +0200863 ret = EFI_SUCCESS;
864 goto out;
Alexander Graf0bd425a2016-03-04 01:10:01 +0100865 }
866 }
867
Heinrich Schuchardtc70a1612019-08-14 05:19:37 +0200868out:
869 return EFI_EXIT(ret);
Alexander Graf0bd425a2016-03-04 01:10:01 +0100870}
871
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200872/**
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 *
Heinrich Schuchardt7e307642018-12-23 02:35:13 +0100878 * @mmio_ptr: pointer to a pointer to the start of the memory-mapped
879 * IO region
Heinrich Schuchardt11121542018-09-03 19:29:41 +0200880 * @len: size of the memory-mapped IO region
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200881 * Returns: status code
882 */
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100883efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len)
Alexander Graf77256092016-08-16 21:08:45 +0200884{
885 struct efi_runtime_mmio_list *newmmio;
Alexander Graf33a83a32018-03-15 15:08:16 +0100886 uint64_t addr = *(uintptr_t *)mmio_ptr;
Bryan O'Donoghue89a22b42019-07-15 12:00:39 +0100887 efi_status_t ret;
Alexander Graf33a83a32018-03-15 15:08:16 +0100888
Michael Walle282d3862020-05-17 12:29:19 +0200889 ret = efi_add_memory_map(addr, len, EFI_MMAP_IO);
Bryan O'Donoghue89a22b42019-07-15 12:00:39 +0100890 if (ret != EFI_SUCCESS)
Alexander Graf33a83a32018-03-15 15:08:16 +0100891 return EFI_OUT_OF_RESOURCES;
Alexander Graf77256092016-08-16 21:08:45 +0200892
893 newmmio = calloc(1, sizeof(*newmmio));
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100894 if (!newmmio)
895 return EFI_OUT_OF_RESOURCES;
Alexander Graf77256092016-08-16 21:08:45 +0200896 newmmio->ptr = mmio_ptr;
897 newmmio->paddr = *(uintptr_t *)mmio_ptr;
898 newmmio->len = len;
899 list_add_tail(&newmmio->link, &efi_runtime_mmio);
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100900
Alexander Graf33a83a32018-03-15 15:08:16 +0100901 return EFI_SUCCESS;
Alexander Graf77256092016-08-16 21:08:45 +0200902}
903
Alexander Graf0bd425a2016-03-04 01:10:01 +0100904/*
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
Alexander Graf393dd912016-10-14 13:45:30 +0200915 * __efi_runtime and __efi_runtime_data markers.
Alexander Graf0bd425a2016-03-04 01:10:01 +0100916 */
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
Heinrich Schuchardt711853b2018-07-29 15:10:11 +0200924/**
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 */
Alexander Graf393dd912016-10-14 13:45:30 +0200933static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void)
Alexander Graf0bd425a2016-03-04 01:10:01 +0100934{
935 return EFI_UNSUPPORTED;
936}
937
Alexander Graf393dd912016-10-14 13:45:30 +0200938struct efi_runtime_services __efi_runtime_data efi_runtime_services = {
Alexander Graf0bd425a2016-03-04 01:10:01 +0100939 .hdr = {
940 .signature = EFI_RUNTIME_SERVICES_SIGNATURE,
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +0200941 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +0200942 .headersize = sizeof(struct efi_runtime_services),
Alexander Graf0bd425a2016-03-04 01:10:01 +0100943 },
Alexander Graf77256092016-08-16 21:08:45 +0200944 .get_time = &efi_get_time_boottime,
Heinrich Schuchardt411b2d52019-05-19 20:07:39 +0200945 .set_time = &efi_set_time_boottime,
Alexander Graf0bd425a2016-03-04 01:10:01 +0100946 .get_wakeup_time = (void *)&efi_unimplemented,
947 .set_wakeup_time = (void *)&efi_unimplemented,
948 .set_virtual_address_map = &efi_set_virtual_address_map,
Heinrich Schuchardtc680dc42019-07-27 20:35:24 +0200949 .convert_pointer = efi_convert_pointer,
Rob Clark15f3d742017-09-13 18:05:37 -0400950 .get_variable = efi_get_variable,
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200951 .get_next_variable_name = efi_get_next_variable_name,
Rob Clark15f3d742017-09-13 18:05:37 -0400952 .set_variable = efi_set_variable,
Heinrich Schuchardt5337a6c2019-06-20 15:40:49 +0200953 .get_next_high_mono_count = (void *)&efi_unimplemented,
Alexander Graf77256092016-08-16 21:08:45 +0200954 .reset_system = &efi_reset_system_boottime,
AKASHI Takahiro473d9b32020-11-17 09:27:55 +0900955#ifdef CONFIG_EFI_RUNTIME_UPDATE_CAPSULE
Heinrich Schuchardt897c0722018-02-09 20:41:21 +0100956 .update_capsule = efi_update_capsule,
957 .query_capsule_caps = efi_query_capsule_caps,
AKASHI Takahiro473d9b32020-11-17 09:27:55 +0900958#else
959 .update_capsule = efi_update_capsule_unsupported,
960 .query_capsule_caps = efi_query_capsule_caps_unsupported,
961#endif
Heinrich Schuchardt897c0722018-02-09 20:41:21 +0100962 .query_variable_info = efi_query_variable_info,
Alexander Graf0bd425a2016-03-04 01:10:01 +0100963};