blob: 78fd8014d9014340b5755d315b1e6f701308f440 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Graf50149ea2016-03-04 01:10:01 +01002/*
3 * EFI application runtime services
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Graf50149ea2016-03-04 01:10:01 +01006 */
7
8#include <common.h>
9#include <command.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070010#include <cpu_func.h>
Alexander Graf50149ea2016-03-04 01:10:01 +010011#include <dm.h>
Alexander Grafb34662d2018-06-18 17:23:11 +020012#include <elf.h>
Alexander Graf50149ea2016-03-04 01:10:01 +010013#include <efi_loader.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070015#include <malloc.h>
Alexander Graf50149ea2016-03-04 01:10:01 +010016#include <rtc.h>
Simon Glass3db71102019-11-14 12:57:16 -070017#include <u-boot/crc.h>
Alexander Graf50149ea2016-03-04 01:10:01 +010018
19/* For manual relocation support */
20DECLARE_GLOBAL_DATA_PTR;
21
Heinrich Schuchardt76be6872020-02-19 20:48:49 +010022/* GUID of the runtime properties table */
23static const efi_guid_t efi_rt_properties_table_guid =
24 EFI_RT_PROPERTIES_TABLE_GUID;
25
Alexander Graf80a48002016-08-16 21:08:45 +020026struct efi_runtime_mmio_list {
27 struct list_head link;
28 void **ptr;
29 u64 paddr;
30 u64 len;
31};
32
33/* This list contains all runtime available mmio regions */
34LIST_HEAD(efi_runtime_mmio);
35
Alexander Graf3c63db92016-10-14 13:45:30 +020036static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void);
Alexander Graf50149ea2016-03-04 01:10:01 +010037
Simon Glass2d2b5b22018-06-11 23:26:40 -060038/*
Heinrich Schuchardt250b3252018-09-03 19:29:41 +020039 * TODO(sjg@chromium.org): These defines and structures should come from the ELF
40 * header for each architecture (or a generic header) rather than being repeated
41 * here.
Simon Glass2d2b5b22018-06-11 23:26:40 -060042 */
Alexander Grafbc028912018-06-18 17:23:08 +020043#if defined(__aarch64__)
Alexander Grafb34662d2018-06-18 17:23:11 +020044#define R_RELATIVE R_AARCH64_RELATIVE
Alexander Graf50149ea2016-03-04 01:10:01 +010045#define R_MASK 0xffffffffULL
46#define IS_RELA 1
Alexander Grafbc028912018-06-18 17:23:08 +020047#elif defined(__arm__)
Alexander Grafb34662d2018-06-18 17:23:11 +020048#define R_RELATIVE R_ARM_RELATIVE
Alexander Graf50149ea2016-03-04 01:10:01 +010049#define R_MASK 0xffULL
Heinrich Schuchardt3ce78292018-10-13 20:52:08 -070050#elif defined(__i386__)
Simon Glass65e4c0b2016-09-25 15:27:35 -060051#define R_RELATIVE R_386_RELATIVE
52#define R_MASK 0xffULL
Heinrich Schuchardt3ce78292018-10-13 20:52:08 -070053#elif defined(__x86_64__)
54#define R_RELATIVE R_X86_64_RELATIVE
55#define R_MASK 0xffffffffULL
56#define IS_RELA 1
Alexander Grafbc028912018-06-18 17:23:08 +020057#elif defined(__riscv)
Rick Chen6836adb2018-05-28 19:06:37 +080058#define R_RELATIVE R_RISCV_RELATIVE
59#define R_MASK 0xffULL
60#define IS_RELA 1
61
62struct dyn_sym {
63 ulong foo1;
64 ulong addr;
65 u32 foo2;
66 u32 foo3;
67};
Alexander Grafbc028912018-06-18 17:23:08 +020068#if (__riscv_xlen == 32)
Rick Chen6836adb2018-05-28 19:06:37 +080069#define R_ABSOLUTE R_RISCV_32
70#define SYM_INDEX 8
Alexander Grafbc028912018-06-18 17:23:08 +020071#elif (__riscv_xlen == 64)
Rick Chen6836adb2018-05-28 19:06:37 +080072#define R_ABSOLUTE R_RISCV_64
73#define SYM_INDEX 32
Alexander Grafbc028912018-06-18 17:23:08 +020074#else
75#error unknown riscv target
Rick Chen6836adb2018-05-28 19:06:37 +080076#endif
Alexander Graf50149ea2016-03-04 01:10:01 +010077#else
78#error Need to add relocation awareness
79#endif
80
81struct elf_rel {
82 ulong *offset;
83 ulong info;
84};
85
86struct elf_rela {
87 ulong *offset;
88 ulong info;
89 long addend;
90};
91
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +020092static __efi_runtime_data struct efi_mem_desc *efi_virtmap;
93static __efi_runtime_data efi_uintn_t efi_descriptor_count;
94static __efi_runtime_data efi_uintn_t efi_descriptor_size;
95
Alexander Graf50149ea2016-03-04 01:10:01 +010096/*
Heinrich Schuchardt250b3252018-09-03 19:29:41 +020097 * EFI runtime code lives in two stages. In the first stage, U-Boot and an EFI
Alexander Graf50149ea2016-03-04 01:10:01 +010098 * payload are running concurrently at the same time. In this mode, we can
99 * handle a good number of runtime callbacks
100 */
101
Heinrich Schuchardt76be6872020-02-19 20:48:49 +0100102/**
103 * efi_init_runtime_supported() - create runtime properties table
104 *
105 * Create a configuration table specifying which services are available at
106 * runtime.
107 *
108 * Return: status code
109 */
AKASHI Takahiroe771b4b2019-06-05 13:21:38 +0900110efi_status_t efi_init_runtime_supported(void)
111{
Heinrich Schuchardt76be6872020-02-19 20:48:49 +0100112 efi_status_t ret;
113 struct efi_rt_properties_table *rt_table;
114
115 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
116 sizeof(struct efi_rt_properties_table),
117 (void **)&rt_table);
118 if (ret != EFI_SUCCESS)
119 return ret;
120
121 rt_table->version = EFI_RT_PROPERTIES_TABLE_VERSION;
122 rt_table->length = sizeof(struct efi_rt_properties_table);
123 rt_table->runtime_services_supported =
Heinrich Schuchardtb02a7072020-03-24 19:54:53 +0000124 EFI_RT_SUPPORTED_GET_VARIABLE |
125 EFI_RT_SUPPORTED_GET_NEXT_VARIABLE_NAME |
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200126 EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP |
127 EFI_RT_SUPPORTED_CONVERT_POINTER;
AKASHI Takahiroe771b4b2019-06-05 13:21:38 +0900128
129 /*
130 * This value must be synced with efi_runtime_detach_list
131 * as well as efi_runtime_services.
132 */
Heinrich Schuchardt953661a2019-07-05 18:12:16 +0200133#ifdef CONFIG_EFI_HAVE_RUNTIME_RESET
Heinrich Schuchardt76be6872020-02-19 20:48:49 +0100134 rt_table->runtime_services_supported |= EFI_RT_SUPPORTED_RESET_SYSTEM;
AKASHI Takahiroe771b4b2019-06-05 13:21:38 +0900135#endif
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200136
Heinrich Schuchardt76be6872020-02-19 20:48:49 +0100137 ret = efi_install_configuration_table(&efi_rt_properties_table_guid,
138 rt_table);
139 return ret;
AKASHI Takahiroe771b4b2019-06-05 13:21:38 +0900140}
141
Heinrich Schuchardta39f39c2018-07-29 09:49:04 +0200142/**
Heinrich Schuchardtb0dd8cb2020-06-28 16:30:29 +0200143 * efi_memcpy_runtime() - copy memory area
144 *
145 * At runtime memcpy() is not available.
146 *
Heinrich Schuchardtebbad022020-07-22 07:56:14 +0200147 * Overlapping memory areas can be copied safely if src >= dest.
148 *
Heinrich Schuchardtb0dd8cb2020-06-28 16:30:29 +0200149 * @dest: destination buffer
150 * @src: source buffer
151 * @n: number of bytes to copy
152 * Return: pointer to destination buffer
153 */
154void __efi_runtime efi_memcpy_runtime(void *dest, const void *src, size_t n)
155{
156 u8 *d = dest;
157 const u8 *s = src;
158
159 for (; n; --n)
160 *d++ = *s++;
161}
162
163/**
Heinrich Schuchardta39f39c2018-07-29 09:49:04 +0200164 * efi_update_table_header_crc32() - Update crc32 in table header
165 *
166 * @table: EFI table
167 */
168void __efi_runtime efi_update_table_header_crc32(struct efi_table_hdr *table)
169{
170 table->crc32 = 0;
171 table->crc32 = crc32(0, (const unsigned char *)table,
172 table->headersize);
173}
174
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200175/**
Heinrich Schuchardt250b3252018-09-03 19:29:41 +0200176 * efi_reset_system_boottime() - reset system at boot time
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200177 *
178 * This function implements the ResetSystem() runtime service before
179 * SetVirtualAddressMap() is called.
180 *
181 * See the Unified Extensible Firmware Interface (UEFI) specification for
182 * details.
183 *
184 * @reset_type: type of reset to perform
185 * @reset_status: status code for the reset
186 * @data_size: size of reset_data
187 * @reset_data: information about the reset
188 */
Alexander Graf80a48002016-08-16 21:08:45 +0200189static void EFIAPI efi_reset_system_boottime(
190 enum efi_reset_type reset_type,
191 efi_status_t reset_status,
192 unsigned long data_size, void *reset_data)
Alexander Graf50149ea2016-03-04 01:10:01 +0100193{
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100194 struct efi_event *evt;
195
Alexander Graf50149ea2016-03-04 01:10:01 +0100196 EFI_ENTRY("%d %lx %lx %p", reset_type, reset_status, data_size,
197 reset_data);
198
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100199 /* Notify reset */
200 list_for_each_entry(evt, &efi_events, link) {
201 if (evt->group &&
202 !guidcmp(evt->group,
203 &efi_guid_event_group_reset_system)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200204 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100205 break;
206 }
207 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100208 switch (reset_type) {
209 case EFI_RESET_COLD:
210 case EFI_RESET_WARM:
Heinrich Schuchardt482fc902018-02-06 22:00:22 +0100211 case EFI_RESET_PLATFORM_SPECIFIC:
Alexander Graf50149ea2016-03-04 01:10:01 +0100212 do_reset(NULL, 0, 0, NULL);
213 break;
214 case EFI_RESET_SHUTDOWN:
Heinrich Schuchardte706ed72018-10-16 07:44:53 +0200215#ifdef CONFIG_CMD_POWEROFF
216 do_poweroff(NULL, 0, 0, NULL);
217#endif
Alexander Graf50149ea2016-03-04 01:10:01 +0100218 break;
219 }
220
Alexander Graf80a48002016-08-16 21:08:45 +0200221 while (1) { }
Alexander Graf50149ea2016-03-04 01:10:01 +0100222}
223
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200224/**
Heinrich Schuchardt250b3252018-09-03 19:29:41 +0200225 * efi_get_time_boottime() - get current time at boot time
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200226 *
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200227 * This function implements the GetTime runtime service before
228 * SetVirtualAddressMap() is called.
229 *
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200230 * See the Unified Extensible Firmware Interface (UEFI) specification
231 * for details.
232 *
233 * @time: pointer to structure to receive current time
234 * @capabilities: pointer to structure to receive RTC properties
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200235 * Returns: status code
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200236 */
Alexander Graf80a48002016-08-16 21:08:45 +0200237static efi_status_t EFIAPI efi_get_time_boottime(
238 struct efi_time *time,
239 struct efi_time_cap *capabilities)
Alexander Graf50149ea2016-03-04 01:10:01 +0100240{
Heinrich Schuchardt5ec48e32019-05-31 22:56:02 +0200241#ifdef CONFIG_EFI_GET_TIME
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200242 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200243 struct rtc_time tm;
Alexander Graf50149ea2016-03-04 01:10:01 +0100244 struct udevice *dev;
245
246 EFI_ENTRY("%p %p", time, capabilities);
247
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200248 if (!time) {
249 ret = EFI_INVALID_PARAMETER;
250 goto out;
251 }
Heinrich Schuchardtbb2b13d2019-05-19 21:41:28 +0200252 if (uclass_get_device(UCLASS_RTC, 0, &dev) ||
253 dm_rtc_get(dev, &tm)) {
254 ret = EFI_UNSUPPORTED;
255 goto out;
256 }
257 if (dm_rtc_get(dev, &tm)) {
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200258 ret = EFI_DEVICE_ERROR;
259 goto out;
260 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100261
262 memset(time, 0, sizeof(*time));
263 time->year = tm.tm_year;
264 time->month = tm.tm_mon;
265 time->day = tm.tm_mday;
266 time->hour = tm.tm_hour;
267 time->minute = tm.tm_min;
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200268 time->second = tm.tm_sec;
Heinrich Schuchardt38b9a792019-05-31 22:08:45 +0200269 if (tm.tm_isdst)
270 time->daylight =
271 EFI_TIME_ADJUST_DAYLIGHT | EFI_TIME_IN_DAYLIGHT;
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200272 time->timezone = EFI_UNSPECIFIED_TIMEZONE;
Alexander Graf50149ea2016-03-04 01:10:01 +0100273
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200274 if (capabilities) {
275 /* Set reasonable dummy values */
276 capabilities->resolution = 1; /* 1 Hz */
277 capabilities->accuracy = 100000000; /* 100 ppm */
278 capabilities->sets_to_zero = false;
279 }
280out:
281 return EFI_EXIT(ret);
Alexander Graf50149ea2016-03-04 01:10:01 +0100282#else
Heinrich Schuchardt49de2452018-07-07 23:39:14 +0200283 EFI_ENTRY("%p %p", time, capabilities);
Heinrich Schuchardtbb2b13d2019-05-19 21:41:28 +0200284 return EFI_EXIT(EFI_UNSUPPORTED);
Alexander Graf50149ea2016-03-04 01:10:01 +0100285#endif
286}
287
Heinrich Schuchardt5ec48e32019-05-31 22:56:02 +0200288#ifdef CONFIG_EFI_SET_TIME
Heinrich Schuchardte6bcc352019-05-31 07:35:19 +0200289
290/**
291 * efi_validate_time() - checks if timestamp is valid
292 *
293 * @time: timestamp to validate
294 * Returns: 0 if timestamp is valid, 1 otherwise
295 */
296static int efi_validate_time(struct efi_time *time)
297{
298 return (!time ||
299 time->year < 1900 || time->year > 9999 ||
300 !time->month || time->month > 12 || !time->day ||
301 time->day > rtc_month_days(time->month - 1, time->year) ||
302 time->hour > 23 || time->minute > 59 || time->second > 59 ||
303 time->nanosecond > 999999999 ||
304 time->daylight &
305 ~(EFI_TIME_IN_DAYLIGHT | EFI_TIME_ADJUST_DAYLIGHT) ||
306 ((time->timezone < -1440 || time->timezone > 1440) &&
307 time->timezone != EFI_UNSPECIFIED_TIMEZONE));
308}
309
310#endif
311
Heinrich Schuchardt433bfe72019-05-19 20:07:39 +0200312/**
313 * efi_set_time_boottime() - set current time
314 *
315 * This function implements the SetTime() runtime service before
316 * SetVirtualAddressMap() is called.
317 *
318 * See the Unified Extensible Firmware Interface (UEFI) specification
319 * for details.
320 *
321 * @time: pointer to structure to with current time
322 * Returns: status code
323 */
324static efi_status_t EFIAPI efi_set_time_boottime(struct efi_time *time)
325{
Heinrich Schuchardt5ec48e32019-05-31 22:56:02 +0200326#ifdef CONFIG_EFI_SET_TIME
Heinrich Schuchardt433bfe72019-05-19 20:07:39 +0200327 efi_status_t ret = EFI_SUCCESS;
328 struct rtc_time tm;
329 struct udevice *dev;
Alexander Graf80a48002016-08-16 21:08:45 +0200330
Heinrich Schuchardt433bfe72019-05-19 20:07:39 +0200331 EFI_ENTRY("%p", time);
332
Heinrich Schuchardte6bcc352019-05-31 07:35:19 +0200333 if (efi_validate_time(time)) {
Heinrich Schuchardt433bfe72019-05-19 20:07:39 +0200334 ret = EFI_INVALID_PARAMETER;
335 goto out;
336 }
337
338 if (uclass_get_device(UCLASS_RTC, 0, &dev)) {
339 ret = EFI_UNSUPPORTED;
340 goto out;
341 }
342
343 memset(&tm, 0, sizeof(tm));
344 tm.tm_year = time->year;
345 tm.tm_mon = time->month;
346 tm.tm_mday = time->day;
347 tm.tm_hour = time->hour;
348 tm.tm_min = time->minute;
349 tm.tm_sec = time->second;
Heinrich Schuchardt38b9a792019-05-31 22:08:45 +0200350 tm.tm_isdst = time->daylight ==
351 (EFI_TIME_ADJUST_DAYLIGHT | EFI_TIME_IN_DAYLIGHT);
Heinrich Schuchardt433bfe72019-05-19 20:07:39 +0200352 /* Calculate day of week */
353 rtc_calc_weekday(&tm);
354
355 if (dm_rtc_set(dev, &tm))
356 ret = EFI_DEVICE_ERROR;
357out:
358 return EFI_EXIT(ret);
359#else
360 EFI_ENTRY("%p", time);
361 return EFI_EXIT(EFI_UNSUPPORTED);
362#endif
363}
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200364/**
365 * efi_reset_system() - reset system
366 *
367 * This function implements the ResetSystem() runtime service after
368 * SetVirtualAddressMap() is called. It only executes an endless loop.
369 * Boards may override the helpers below to implement reset functionality.
370 *
371 * See the Unified Extensible Firmware Interface (UEFI) specification for
372 * details.
373 *
374 * @reset_type: type of reset to perform
375 * @reset_status: status code for the reset
376 * @data_size: size of reset_data
377 * @reset_data: information about the reset
378 */
Alexander Graf3c63db92016-10-14 13:45:30 +0200379void __weak __efi_runtime EFIAPI efi_reset_system(
Alexander Graf80a48002016-08-16 21:08:45 +0200380 enum efi_reset_type reset_type,
381 efi_status_t reset_status,
382 unsigned long data_size, void *reset_data)
383{
384 /* Nothing we can do */
385 while (1) { }
386}
387
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200388/**
389 * efi_reset_system_init() - initialize the reset driver
390 *
391 * Boards may override this function to initialize the reset driver.
392 */
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100393efi_status_t __weak efi_reset_system_init(void)
Alexander Graf80a48002016-08-16 21:08:45 +0200394{
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100395 return EFI_SUCCESS;
Alexander Graf80a48002016-08-16 21:08:45 +0200396}
397
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200398/**
399 * efi_get_time() - get current time
400 *
401 * This function implements the GetTime runtime service after
402 * SetVirtualAddressMap() is called. As the U-Boot driver are not available
403 * anymore only an error code is returned.
404 *
405 * See the Unified Extensible Firmware Interface (UEFI) specification
406 * for details.
407 *
408 * @time: pointer to structure to receive current time
409 * @capabilities: pointer to structure to receive RTC properties
410 * Returns: status code
411 */
Alexander Graf3c63db92016-10-14 13:45:30 +0200412efi_status_t __weak __efi_runtime EFIAPI efi_get_time(
Alexander Graf80a48002016-08-16 21:08:45 +0200413 struct efi_time *time,
414 struct efi_time_cap *capabilities)
415{
Heinrich Schuchardtc5b63be2019-06-13 18:42:40 +0200416 return EFI_UNSUPPORTED;
Alexander Graf80a48002016-08-16 21:08:45 +0200417}
418
Heinrich Schuchardt433bfe72019-05-19 20:07:39 +0200419/**
420 * efi_set_time() - set current time
421 *
422 * This function implements the SetTime runtime service after
423 * SetVirtualAddressMap() is called. As the U-Boot driver are not available
424 * anymore only an error code is returned.
425 *
426 * See the Unified Extensible Firmware Interface (UEFI) specification
427 * for details.
428 *
429 * @time: pointer to structure to with current time
430 * Returns: status code
431 */
432efi_status_t __weak __efi_runtime EFIAPI efi_set_time(struct efi_time *time)
433{
434 return EFI_UNSUPPORTED;
435}
436
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000437/**
438 * efi_is_runtime_service_pointer() - check if pointer points to runtime table
439 *
440 * @p: pointer to check
441 * Return: true if the pointer points to a service function pointer in the
442 * runtime table
443 */
444static bool efi_is_runtime_service_pointer(void *p)
Alexander Graf50149ea2016-03-04 01:10:01 +0100445{
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200446 return (p >= (void *)&efi_runtime_services.get_time &&
447 p <= (void *)&efi_runtime_services.query_variable_info) ||
448 p == (void *)&efi_events.prev ||
449 p == (void *)&efi_events.next;
Alexander Graf50149ea2016-03-04 01:10:01 +0100450}
451
Heinrich Schuchardtb23ffcb2019-07-05 18:12:21 +0200452/**
453 * efi_runtime_detach() - detach unimplemented runtime functions
454 */
Heinrich Schuchardt7f951042019-07-05 17:42:16 +0200455void efi_runtime_detach(void)
Alexander Graf50149ea2016-03-04 01:10:01 +0100456{
Heinrich Schuchardtb23ffcb2019-07-05 18:12:21 +0200457 efi_runtime_services.reset_system = efi_reset_system;
458 efi_runtime_services.get_time = efi_get_time;
459 efi_runtime_services.set_time = efi_set_time;
Alexander Graf50149ea2016-03-04 01:10:01 +0100460
Heinrich Schuchardtb23ffcb2019-07-05 18:12:21 +0200461 /* Update CRC32 */
462 efi_update_table_header_crc32(&efi_runtime_services.hdr);
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000463}
464
Heinrich Schuchardtee8ebaa2019-06-29 03:32:52 +0200465/**
466 * efi_set_virtual_address_map_runtime() - change from physical to virtual
467 * mapping
468 *
469 * This function implements the SetVirtualAddressMap() runtime service after
470 * it is first called.
471 *
472 * See the Unified Extensible Firmware Interface (UEFI) specification for
473 * details.
474 *
475 * @memory_map_size: size of the virtual map
476 * @descriptor_size: size of an entry in the map
477 * @descriptor_version: version of the map entries
478 * @virtmap: virtual address mapping information
479 * Return: status code EFI_UNSUPPORTED
480 */
Heinrich Schuchardt96185602019-07-12 22:41:43 +0200481static __efi_runtime efi_status_t EFIAPI efi_set_virtual_address_map_runtime(
Heinrich Schuchardt24e67222019-07-27 20:28:47 +0200482 efi_uintn_t memory_map_size,
483 efi_uintn_t descriptor_size,
Heinrich Schuchardtee8ebaa2019-06-29 03:32:52 +0200484 uint32_t descriptor_version,
485 struct efi_mem_desc *virtmap)
486{
487 return EFI_UNSUPPORTED;
488}
489
490/**
491 * efi_convert_pointer_runtime() - convert from physical to virtual pointer
492 *
493 * This function implements the ConvertPointer() runtime service after
494 * the first call to SetVirtualAddressMap().
495 *
496 * See the Unified Extensible Firmware Interface (UEFI) specification for
497 * details.
498 *
499 * @debug_disposition: indicates if pointer may be converted to NULL
500 * @address: pointer to be converted
501 * Return: status code EFI_UNSUPPORTED
502 */
503static __efi_runtime efi_status_t EFIAPI efi_convert_pointer_runtime(
504 efi_uintn_t debug_disposition, void **address)
505{
506 return EFI_UNSUPPORTED;
507}
508
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200509/**
Heinrich Schuchardt7aeceff2020-03-22 08:28:15 +0100510 * efi_convert_pointer() - convert from physical to virtual pointer
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200511 *
512 * This function implements the ConvertPointer() runtime service until
513 * the first call to SetVirtualAddressMap().
514 *
515 * See the Unified Extensible Firmware Interface (UEFI) specification for
516 * details.
517 *
518 * @debug_disposition: indicates if pointer may be converted to NULL
519 * @address: pointer to be converted
Heinrich Schuchardt7aeceff2020-03-22 08:28:15 +0100520 * Return: status code
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200521 */
Heinrich Schuchardta44d2a22020-03-24 18:05:22 +0100522__efi_runtime efi_status_t EFIAPI
523efi_convert_pointer(efi_uintn_t debug_disposition, void **address)
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200524{
Heinrich Schuchardta27c78f2020-07-07 03:10:12 +0200525 efi_physical_addr_t addr;
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200526 efi_uintn_t i;
527 efi_status_t ret = EFI_NOT_FOUND;
528
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200529 if (!efi_virtmap) {
530 ret = EFI_UNSUPPORTED;
531 goto out;
532 }
533
534 if (!address) {
535 ret = EFI_INVALID_PARAMETER;
536 goto out;
537 }
Heinrich Schuchardt724d2812020-03-24 17:52:40 +0100538 if (!*address) {
539 if (debug_disposition & EFI_OPTIONAL_PTR)
540 return EFI_SUCCESS;
541 else
542 return EFI_INVALID_PARAMETER;
543 }
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200544
Heinrich Schuchardta27c78f2020-07-07 03:10:12 +0200545 addr = (uintptr_t)*address;
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200546 for (i = 0; i < efi_descriptor_count; i++) {
547 struct efi_mem_desc *map = (void *)efi_virtmap +
548 (efi_descriptor_size * i);
549
550 if (addr >= map->physical_start &&
551 (addr < map->physical_start
552 + (map->num_pages << EFI_PAGE_SHIFT))) {
553 *address = (void *)(uintptr_t)
554 (addr + map->virtual_start -
555 map->physical_start);
556
557 ret = EFI_SUCCESS;
558 break;
559 }
560 }
561
562out:
Heinrich Schuchardta44d2a22020-03-24 18:05:22 +0100563 return ret;
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200564}
565
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000566static __efi_runtime void efi_relocate_runtime_table(ulong offset)
567{
568 ulong patchoff;
569 void **pos;
570
571 /* Relocate the runtime services pointers */
572 patchoff = offset - gd->relocaddr;
573 for (pos = (void **)&efi_runtime_services.get_time;
574 pos <= (void **)&efi_runtime_services.query_variable_info; ++pos) {
Heinrich Schuchardtee8ebaa2019-06-29 03:32:52 +0200575 if (*pos)
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000576 *pos += patchoff;
Alexander Graf50149ea2016-03-04 01:10:01 +0100577 }
Heinrich Schuchardta39f39c2018-07-29 09:49:04 +0200578
Heinrich Schuchardtee8ebaa2019-06-29 03:32:52 +0200579 /*
580 * The entry for SetVirtualAddress() must point to a physical address.
581 * After the first execution the service must return EFI_UNSUPPORTED.
582 */
583 efi_runtime_services.set_virtual_address_map =
584 &efi_set_virtual_address_map_runtime;
585
586 /*
587 * The entry for ConvertPointer() must point to a physical address.
588 * The service is not usable after SetVirtualAddress().
589 */
590 efi_runtime_services.convert_pointer = &efi_convert_pointer_runtime;
591
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200592 /*
593 * TODO: Update UEFI variable RuntimeServicesSupported removing flags
594 * EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP and
595 * EFI_RT_SUPPORTED_CONVERT_POINTER as required by the UEFI spec 2.8.
596 */
597
Heinrich Schuchardt250b3252018-09-03 19:29:41 +0200598 /* Update CRC32 */
Heinrich Schuchardta39f39c2018-07-29 09:49:04 +0200599 efi_update_table_header_crc32(&efi_runtime_services.hdr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100600}
601
602/* Relocate EFI runtime to uboot_reloc_base = offset */
603void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map)
604{
605#ifdef IS_RELA
606 struct elf_rela *rel = (void*)&__efi_runtime_rel_start;
607#else
608 struct elf_rel *rel = (void*)&__efi_runtime_rel_start;
609 static ulong lastoff = CONFIG_SYS_TEXT_BASE;
610#endif
611
Alexander Grafedcef3b2016-06-02 11:38:27 +0200612 debug("%s: Relocating to offset=%lx\n", __func__, offset);
Alexander Graf50149ea2016-03-04 01:10:01 +0100613 for (; (ulong)rel < (ulong)&__efi_runtime_rel_stop; rel++) {
614 ulong base = CONFIG_SYS_TEXT_BASE;
615 ulong *p;
616 ulong newaddr;
617
618 p = (void*)((ulong)rel->offset - base) + gd->relocaddr;
619
Heinrich Schuchardt9f8932d2019-08-14 06:49:09 +0200620 /*
621 * The runtime services table is updated in
622 * efi_relocate_runtime_table()
623 */
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000624 if (map && efi_is_runtime_service_pointer(p))
625 continue;
626
Heinrich Schuchardt3ce78292018-10-13 20:52:08 -0700627 debug("%s: rel->info=%#lx *p=%#lx rel->offset=%p\n", __func__,
628 rel->info, *p, rel->offset);
Alexander Graf50149ea2016-03-04 01:10:01 +0100629
Rick Chen6836adb2018-05-28 19:06:37 +0800630 switch (rel->info & R_MASK) {
631 case R_RELATIVE:
Alexander Graf50149ea2016-03-04 01:10:01 +0100632#ifdef IS_RELA
633 newaddr = rel->addend + offset - CONFIG_SYS_TEXT_BASE;
634#else
635 newaddr = *p - lastoff + offset;
636#endif
Rick Chen6836adb2018-05-28 19:06:37 +0800637 break;
638#ifdef R_ABSOLUTE
639 case R_ABSOLUTE: {
640 ulong symidx = rel->info >> SYM_INDEX;
641 extern struct dyn_sym __dyn_sym_start[];
642 newaddr = __dyn_sym_start[symidx].addr + offset;
Alexander Grafafdc4fc2018-11-04 22:25:22 +0100643#ifdef IS_RELA
644 newaddr -= CONFIG_SYS_TEXT_BASE;
645#endif
Rick Chen6836adb2018-05-28 19:06:37 +0800646 break;
647 }
648#endif
649 default:
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000650 printf("%s: Unknown relocation type %llx\n",
651 __func__, rel->info & R_MASK);
Rick Chen6836adb2018-05-28 19:06:37 +0800652 continue;
653 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100654
655 /* Check if the relocation is inside bounds */
656 if (map && ((newaddr < map->virtual_start) ||
Heinrich Schuchardt591cf2e2017-09-18 22:11:34 +0200657 newaddr > (map->virtual_start +
658 (map->num_pages << EFI_PAGE_SHIFT)))) {
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000659 printf("%s: Relocation at %p is out of range (%lx)\n",
660 __func__, p, newaddr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100661 continue;
662 }
663
Alexander Grafedcef3b2016-06-02 11:38:27 +0200664 debug("%s: Setting %p to %lx\n", __func__, p, newaddr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100665 *p = newaddr;
Alexander Graf36c37a82016-04-11 23:20:39 +0200666 flush_dcache_range((ulong)p & ~(EFI_CACHELINE_SIZE - 1),
667 ALIGN((ulong)&p[1], EFI_CACHELINE_SIZE));
Alexander Graf50149ea2016-03-04 01:10:01 +0100668 }
669
670#ifndef IS_RELA
671 lastoff = offset;
672#endif
673
674 invalidate_icache_all();
675}
676
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200677/**
678 * efi_set_virtual_address_map() - change from physical to virtual mapping
679 *
680 * This function implements the SetVirtualAddressMap() runtime service.
681 *
682 * See the Unified Extensible Firmware Interface (UEFI) specification for
683 * details.
684 *
685 * @memory_map_size: size of the virtual map
686 * @descriptor_size: size of an entry in the map
687 * @descriptor_version: version of the map entries
688 * @virtmap: virtual address mapping information
689 * Return: status code
690 */
Alexander Graf50149ea2016-03-04 01:10:01 +0100691static efi_status_t EFIAPI efi_set_virtual_address_map(
Heinrich Schuchardt24e67222019-07-27 20:28:47 +0200692 efi_uintn_t memory_map_size,
693 efi_uintn_t descriptor_size,
Alexander Graf50149ea2016-03-04 01:10:01 +0100694 uint32_t descriptor_version,
695 struct efi_mem_desc *virtmap)
696{
Heinrich Schuchardt24e67222019-07-27 20:28:47 +0200697 efi_uintn_t n = memory_map_size / descriptor_size;
698 efi_uintn_t i;
Heinrich Schuchardt53e1d8f2019-08-14 05:19:37 +0200699 efi_status_t ret = EFI_INVALID_PARAMETER;
Alexander Graf5c38e052018-12-11 10:00:42 +0100700 int rt_code_sections = 0;
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200701 struct efi_event *event;
Alexander Graf50149ea2016-03-04 01:10:01 +0100702
Heinrich Schuchardt24e67222019-07-27 20:28:47 +0200703 EFI_ENTRY("%zx %zx %x %p", memory_map_size, descriptor_size,
Alexander Graf50149ea2016-03-04 01:10:01 +0100704 descriptor_version, virtmap);
705
Heinrich Schuchardt53e1d8f2019-08-14 05:19:37 +0200706 if (descriptor_version != EFI_MEMORY_DESCRIPTOR_VERSION ||
707 descriptor_size < sizeof(struct efi_mem_desc))
708 goto out;
709
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200710 efi_virtmap = virtmap;
711 efi_descriptor_size = descriptor_size;
712 efi_descriptor_count = n;
713
Alexander Graf5c38e052018-12-11 10:00:42 +0100714 /*
715 * TODO:
716 * Further down we are cheating. While really we should implement
717 * SetVirtualAddressMap() events and ConvertPointer() to allow
718 * dynamically loaded drivers to expose runtime services, we don't
719 * today.
720 *
721 * So let's ensure we see exactly one single runtime section, as
722 * that is the built-in one. If we see more (or less), someone must
723 * have tried adding or removing to that which we don't support yet.
724 * In that case, let's better fail rather than expose broken runtime
725 * services.
726 */
727 for (i = 0; i < n; i++) {
728 struct efi_mem_desc *map = (void*)virtmap +
729 (descriptor_size * i);
730
731 if (map->type == EFI_RUNTIME_SERVICES_CODE)
732 rt_code_sections++;
733 }
734
735 if (rt_code_sections != 1) {
736 /*
737 * We expose exactly one single runtime code section, so
738 * something is definitely going wrong.
739 */
Heinrich Schuchardt53e1d8f2019-08-14 05:19:37 +0200740 goto out;
Alexander Graf5c38e052018-12-11 10:00:42 +0100741 }
742
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200743 /* Notify EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
744 list_for_each_entry(event, &efi_events, link) {
745 if (event->notify_function)
746 EFI_CALL_VOID(event->notify_function(
747 event, event->notify_context));
748 }
749
Alexander Graf80a48002016-08-16 21:08:45 +0200750 /* Rebind mmio pointers */
751 for (i = 0; i < n; i++) {
752 struct efi_mem_desc *map = (void*)virtmap +
753 (descriptor_size * i);
754 struct list_head *lhandle;
755 efi_physical_addr_t map_start = map->physical_start;
756 efi_physical_addr_t map_len = map->num_pages << EFI_PAGE_SHIFT;
757 efi_physical_addr_t map_end = map_start + map_len;
Heinrich Schuchardt07240da2018-08-04 23:16:06 +0200758 u64 off = map->virtual_start - map_start;
Alexander Graf80a48002016-08-16 21:08:45 +0200759
760 /* Adjust all mmio pointers in this region */
761 list_for_each(lhandle, &efi_runtime_mmio) {
762 struct efi_runtime_mmio_list *lmmio;
763
764 lmmio = list_entry(lhandle,
765 struct efi_runtime_mmio_list,
766 link);
767 if ((map_start <= lmmio->paddr) &&
768 (map_end >= lmmio->paddr)) {
Alexander Graf80a48002016-08-16 21:08:45 +0200769 uintptr_t new_addr = lmmio->paddr + off;
770 *lmmio->ptr = (void *)new_addr;
771 }
772 }
Heinrich Schuchardt07240da2018-08-04 23:16:06 +0200773 if ((map_start <= (uintptr_t)systab.tables) &&
774 (map_end >= (uintptr_t)systab.tables)) {
775 char *ptr = (char *)systab.tables;
776
777 ptr += off;
778 systab.tables = (struct efi_configuration_table *)ptr;
779 }
Alexander Graf80a48002016-08-16 21:08:45 +0200780 }
781
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000782 /* Relocate the runtime. See TODO above */
Alexander Graf50149ea2016-03-04 01:10:01 +0100783 for (i = 0; i < n; i++) {
784 struct efi_mem_desc *map;
785
786 map = (void*)virtmap + (descriptor_size * i);
787 if (map->type == EFI_RUNTIME_SERVICES_CODE) {
Alexander Graf80a48002016-08-16 21:08:45 +0200788 ulong new_offset = map->virtual_start -
Alexander Graf5c38e052018-12-11 10:00:42 +0100789 map->physical_start + gd->relocaddr;
Alexander Graf50149ea2016-03-04 01:10:01 +0100790
Heinrich Schuchardt24a238f2019-06-20 22:00:02 +0000791 efi_relocate_runtime_table(new_offset);
Alexander Graf50149ea2016-03-04 01:10:01 +0100792 efi_runtime_relocate(new_offset, map);
Heinrich Schuchardt53e1d8f2019-08-14 05:19:37 +0200793 ret = EFI_SUCCESS;
794 goto out;
Alexander Graf50149ea2016-03-04 01:10:01 +0100795 }
796 }
797
Heinrich Schuchardt53e1d8f2019-08-14 05:19:37 +0200798out:
799 return EFI_EXIT(ret);
Alexander Graf50149ea2016-03-04 01:10:01 +0100800}
801
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200802/**
803 * efi_add_runtime_mmio() - add memory-mapped IO region
804 *
805 * This function adds a memory-mapped IO region to the memory map to make it
806 * available at runtime.
807 *
Heinrich Schuchardtfb34f292018-12-23 02:35:13 +0100808 * @mmio_ptr: pointer to a pointer to the start of the memory-mapped
809 * IO region
Heinrich Schuchardt250b3252018-09-03 19:29:41 +0200810 * @len: size of the memory-mapped IO region
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200811 * Returns: status code
812 */
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100813efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len)
Alexander Graf80a48002016-08-16 21:08:45 +0200814{
815 struct efi_runtime_mmio_list *newmmio;
Alexander Graf813468c2018-03-15 15:08:16 +0100816 uint64_t addr = *(uintptr_t *)mmio_ptr;
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100817 efi_status_t ret;
Alexander Graf813468c2018-03-15 15:08:16 +0100818
Michael Walle714497e2020-05-17 12:29:19 +0200819 ret = efi_add_memory_map(addr, len, EFI_MMAP_IO);
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100820 if (ret != EFI_SUCCESS)
Alexander Graf813468c2018-03-15 15:08:16 +0100821 return EFI_OUT_OF_RESOURCES;
Alexander Graf80a48002016-08-16 21:08:45 +0200822
823 newmmio = calloc(1, sizeof(*newmmio));
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100824 if (!newmmio)
825 return EFI_OUT_OF_RESOURCES;
Alexander Graf80a48002016-08-16 21:08:45 +0200826 newmmio->ptr = mmio_ptr;
827 newmmio->paddr = *(uintptr_t *)mmio_ptr;
828 newmmio->len = len;
829 list_add_tail(&newmmio->link, &efi_runtime_mmio);
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100830
Alexander Graf813468c2018-03-15 15:08:16 +0100831 return EFI_SUCCESS;
Alexander Graf80a48002016-08-16 21:08:45 +0200832}
833
Alexander Graf50149ea2016-03-04 01:10:01 +0100834/*
835 * In the second stage, U-Boot has disappeared. To isolate our runtime code
836 * that at this point still exists from the rest, we put it into a special
837 * section.
838 *
839 * !!WARNING!!
840 *
841 * This means that we can not rely on any code outside of this file in any
842 * function or variable below this line.
843 *
844 * Please keep everything fully self-contained and annotated with
Alexander Graf3c63db92016-10-14 13:45:30 +0200845 * __efi_runtime and __efi_runtime_data markers.
Alexander Graf50149ea2016-03-04 01:10:01 +0100846 */
847
848/*
849 * Relocate the EFI runtime stub to a different place. We need to call this
850 * the first time we expose the runtime interface to a user and on set virtual
851 * address map calls.
852 */
853
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200854/**
855 * efi_unimplemented() - replacement function, returns EFI_UNSUPPORTED
856 *
857 * This function is used after SetVirtualAddressMap() is called as replacement
858 * for services that are not available anymore due to constraints of the U-Boot
859 * implementation.
860 *
861 * Return: EFI_UNSUPPORTED
862 */
Alexander Graf3c63db92016-10-14 13:45:30 +0200863static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void)
Alexander Graf50149ea2016-03-04 01:10:01 +0100864{
865 return EFI_UNSUPPORTED;
866}
867
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200868/**
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200869 * efi_update_capsule() - process information from operating system
870 *
871 * This function implements the UpdateCapsule() runtime service.
872 *
873 * See the Unified Extensible Firmware Interface (UEFI) specification for
874 * details.
875 *
876 * @capsule_header_array: pointer to array of virtual pointers
877 * @capsule_count: number of pointers in capsule_header_array
878 * @scatter_gather_list: pointer to arry of physical pointers
879 * Returns: status code
880 */
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100881efi_status_t __efi_runtime EFIAPI efi_update_capsule(
882 struct efi_capsule_header **capsule_header_array,
883 efi_uintn_t capsule_count,
884 u64 scatter_gather_list)
885{
886 return EFI_UNSUPPORTED;
887}
888
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200889/**
890 * efi_query_capsule_caps() - check if capsule is supported
891 *
892 * This function implements the QueryCapsuleCapabilities() runtime service.
893 *
894 * See the Unified Extensible Firmware Interface (UEFI) specification for
895 * details.
896 *
897 * @capsule_header_array: pointer to array of virtual pointers
898 * @capsule_count: number of pointers in capsule_header_array
Heinrich Schuchardtcc0bfc02018-09-03 20:59:25 +0200899 * @maximum_capsule_size: maximum capsule size
Heinrich Schuchardtbcfb0e22018-07-29 15:10:11 +0200900 * @reset_type: type of reset needed for capsule update
901 * Returns: status code
902 */
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100903efi_status_t __efi_runtime EFIAPI efi_query_capsule_caps(
904 struct efi_capsule_header **capsule_header_array,
905 efi_uintn_t capsule_count,
AKASHI Takahiro19dd9072018-11-14 16:18:53 +0900906 u64 *maximum_capsule_size,
907 u32 *reset_type)
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100908{
909 return EFI_UNSUPPORTED;
910}
911
Alexander Graf3c63db92016-10-14 13:45:30 +0200912struct efi_runtime_services __efi_runtime_data efi_runtime_services = {
Alexander Graf50149ea2016-03-04 01:10:01 +0100913 .hdr = {
914 .signature = EFI_RUNTIME_SERVICES_SIGNATURE,
Heinrich Schuchardt112f2432018-06-28 12:45:27 +0200915 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +0200916 .headersize = sizeof(struct efi_runtime_services),
Alexander Graf50149ea2016-03-04 01:10:01 +0100917 },
Alexander Graf80a48002016-08-16 21:08:45 +0200918 .get_time = &efi_get_time_boottime,
Heinrich Schuchardt433bfe72019-05-19 20:07:39 +0200919 .set_time = &efi_set_time_boottime,
Alexander Graf50149ea2016-03-04 01:10:01 +0100920 .get_wakeup_time = (void *)&efi_unimplemented,
921 .set_wakeup_time = (void *)&efi_unimplemented,
922 .set_virtual_address_map = &efi_set_virtual_address_map,
Heinrich Schuchardt7be56e82019-07-27 20:35:24 +0200923 .convert_pointer = efi_convert_pointer,
Rob Clarkad644e72017-09-13 18:05:37 -0400924 .get_variable = efi_get_variable,
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200925 .get_next_variable_name = efi_get_next_variable_name,
Rob Clarkad644e72017-09-13 18:05:37 -0400926 .set_variable = efi_set_variable,
Heinrich Schuchardtb94461c2019-06-20 15:40:49 +0200927 .get_next_high_mono_count = (void *)&efi_unimplemented,
Alexander Graf80a48002016-08-16 21:08:45 +0200928 .reset_system = &efi_reset_system_boottime,
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100929 .update_capsule = efi_update_capsule,
930 .query_capsule_caps = efi_query_capsule_caps,
931 .query_variable_info = efi_query_variable_info,
Alexander Graf50149ea2016-03-04 01:10:01 +0100932};