blob: 4874eb602f79af93fd77d59bb311a89377e06c99 [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>
10#include <dm.h>
11#include <efi_loader.h>
12#include <rtc.h>
Alexander Graf50149ea2016-03-04 01:10:01 +010013
14/* For manual relocation support */
15DECLARE_GLOBAL_DATA_PTR;
16
Alexander Graf80a48002016-08-16 21:08:45 +020017struct efi_runtime_mmio_list {
18 struct list_head link;
19 void **ptr;
20 u64 paddr;
21 u64 len;
22};
23
24/* This list contains all runtime available mmio regions */
25LIST_HEAD(efi_runtime_mmio);
26
Alexander Graf3c63db92016-10-14 13:45:30 +020027static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void);
28static efi_status_t __efi_runtime EFIAPI efi_device_error(void);
29static efi_status_t __efi_runtime EFIAPI efi_invalid_parameter(void);
Alexander Graf50149ea2016-03-04 01:10:01 +010030
Simon Glass2d2b5b22018-06-11 23:26:40 -060031/*
32 * TODO(sjg@chromium.org): These defines and structs should come from the elf
33 * header for each arch (or a generic header) rather than being repeated here.
34 */
Alexander Graf50149ea2016-03-04 01:10:01 +010035#if defined(CONFIG_ARM64)
36#define R_RELATIVE 1027
37#define R_MASK 0xffffffffULL
38#define IS_RELA 1
39#elif defined(CONFIG_ARM)
40#define R_RELATIVE 23
41#define R_MASK 0xffULL
Simon Glass65e4c0b2016-09-25 15:27:35 -060042#elif defined(CONFIG_X86)
43#include <asm/elf.h>
44#define R_RELATIVE R_386_RELATIVE
45#define R_MASK 0xffULL
Rick Chen6836adb2018-05-28 19:06:37 +080046#elif defined(CONFIG_RISCV)
47#include <elf.h>
48#define R_RELATIVE R_RISCV_RELATIVE
49#define R_MASK 0xffULL
50#define IS_RELA 1
51
52struct dyn_sym {
53 ulong foo1;
54 ulong addr;
55 u32 foo2;
56 u32 foo3;
57};
58#ifdef CONFIG_CPU_RISCV_32
59#define R_ABSOLUTE R_RISCV_32
60#define SYM_INDEX 8
61#else
62#define R_ABSOLUTE R_RISCV_64
63#define SYM_INDEX 32
64#endif
Alexander Graf50149ea2016-03-04 01:10:01 +010065#else
66#error Need to add relocation awareness
67#endif
68
69struct elf_rel {
70 ulong *offset;
71 ulong info;
72};
73
74struct elf_rela {
75 ulong *offset;
76 ulong info;
77 long addend;
78};
79
80/*
81 * EFI Runtime code lives in 2 stages. In the first stage, U-Boot and an EFI
82 * payload are running concurrently at the same time. In this mode, we can
83 * handle a good number of runtime callbacks
84 */
85
Alexander Graf80a48002016-08-16 21:08:45 +020086static void EFIAPI efi_reset_system_boottime(
87 enum efi_reset_type reset_type,
88 efi_status_t reset_status,
89 unsigned long data_size, void *reset_data)
Alexander Graf50149ea2016-03-04 01:10:01 +010090{
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +010091 struct efi_event *evt;
92
Alexander Graf50149ea2016-03-04 01:10:01 +010093 EFI_ENTRY("%d %lx %lx %p", reset_type, reset_status, data_size,
94 reset_data);
95
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +010096 /* Notify reset */
97 list_for_each_entry(evt, &efi_events, link) {
98 if (evt->group &&
99 !guidcmp(evt->group,
100 &efi_guid_event_group_reset_system)) {
101 efi_signal_event(evt, false);
102 break;
103 }
104 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100105 switch (reset_type) {
106 case EFI_RESET_COLD:
107 case EFI_RESET_WARM:
Heinrich Schuchardt482fc902018-02-06 22:00:22 +0100108 case EFI_RESET_PLATFORM_SPECIFIC:
Alexander Graf50149ea2016-03-04 01:10:01 +0100109 do_reset(NULL, 0, 0, NULL);
110 break;
111 case EFI_RESET_SHUTDOWN:
112 /* We don't have anything to map this to */
113 break;
114 }
115
Alexander Graf80a48002016-08-16 21:08:45 +0200116 while (1) { }
Alexander Graf50149ea2016-03-04 01:10:01 +0100117}
118
Alexander Graf80a48002016-08-16 21:08:45 +0200119static efi_status_t EFIAPI efi_get_time_boottime(
120 struct efi_time *time,
121 struct efi_time_cap *capabilities)
Alexander Graf50149ea2016-03-04 01:10:01 +0100122{
123#if defined(CONFIG_CMD_DATE) && defined(CONFIG_DM_RTC)
124 struct rtc_time tm;
125 int r;
126 struct udevice *dev;
127
128 EFI_ENTRY("%p %p", time, capabilities);
129
130 r = uclass_get_device(UCLASS_RTC, 0, &dev);
131 if (r)
132 return EFI_EXIT(EFI_DEVICE_ERROR);
133
134 r = dm_rtc_get(dev, &tm);
135 if (r)
136 return EFI_EXIT(EFI_DEVICE_ERROR);
137
138 memset(time, 0, sizeof(*time));
139 time->year = tm.tm_year;
140 time->month = tm.tm_mon;
141 time->day = tm.tm_mday;
142 time->hour = tm.tm_hour;
143 time->minute = tm.tm_min;
144 time->daylight = tm.tm_isdst;
145
146 return EFI_EXIT(EFI_SUCCESS);
147#else
148 return EFI_DEVICE_ERROR;
149#endif
150}
151
Alexander Graf80a48002016-08-16 21:08:45 +0200152/* Boards may override the helpers below to implement RTS functionality */
153
Alexander Graf3c63db92016-10-14 13:45:30 +0200154void __weak __efi_runtime EFIAPI efi_reset_system(
Alexander Graf80a48002016-08-16 21:08:45 +0200155 enum efi_reset_type reset_type,
156 efi_status_t reset_status,
157 unsigned long data_size, void *reset_data)
158{
159 /* Nothing we can do */
160 while (1) { }
161}
162
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100163efi_status_t __weak efi_reset_system_init(void)
Alexander Graf80a48002016-08-16 21:08:45 +0200164{
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100165 return EFI_SUCCESS;
Alexander Graf80a48002016-08-16 21:08:45 +0200166}
167
Alexander Graf3c63db92016-10-14 13:45:30 +0200168efi_status_t __weak __efi_runtime EFIAPI efi_get_time(
Alexander Graf80a48002016-08-16 21:08:45 +0200169 struct efi_time *time,
170 struct efi_time_cap *capabilities)
171{
172 /* Nothing we can do */
173 return EFI_DEVICE_ERROR;
174}
175
Heinrich Schuchardt14ad49d2018-03-03 15:29:00 +0100176efi_status_t __weak efi_get_time_init(void)
Alexander Graf80a48002016-08-16 21:08:45 +0200177{
Heinrich Schuchardt14ad49d2018-03-03 15:29:00 +0100178 return EFI_SUCCESS;
Alexander Graf80a48002016-08-16 21:08:45 +0200179}
180
Alexander Graf50149ea2016-03-04 01:10:01 +0100181struct efi_runtime_detach_list_struct {
182 void *ptr;
183 void *patchto;
184};
185
186static const struct efi_runtime_detach_list_struct efi_runtime_detach_list[] = {
187 {
188 /* do_reset is gone */
189 .ptr = &efi_runtime_services.reset_system,
Alexander Graf80a48002016-08-16 21:08:45 +0200190 .patchto = efi_reset_system,
Alexander Graf50149ea2016-03-04 01:10:01 +0100191 }, {
192 /* invalidate_*cache_all are gone */
193 .ptr = &efi_runtime_services.set_virtual_address_map,
194 .patchto = &efi_invalid_parameter,
195 }, {
196 /* RTC accessors are gone */
197 .ptr = &efi_runtime_services.get_time,
Alexander Graf80a48002016-08-16 21:08:45 +0200198 .patchto = &efi_get_time,
Alexander Grafae874402016-05-18 00:54:47 +0200199 }, {
200 /* Clean up system table */
201 .ptr = &systab.con_in,
202 .patchto = NULL,
203 }, {
204 /* Clean up system table */
205 .ptr = &systab.con_out,
206 .patchto = NULL,
207 }, {
208 /* Clean up system table */
209 .ptr = &systab.std_err,
210 .patchto = NULL,
211 }, {
212 /* Clean up system table */
213 .ptr = &systab.boottime,
214 .patchto = NULL,
Rob Clarkad644e72017-09-13 18:05:37 -0400215 }, {
216 .ptr = &efi_runtime_services.get_variable,
217 .patchto = &efi_device_error,
218 }, {
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200219 .ptr = &efi_runtime_services.get_next_variable_name,
Rob Clarkad644e72017-09-13 18:05:37 -0400220 .patchto = &efi_device_error,
221 }, {
222 .ptr = &efi_runtime_services.set_variable,
223 .patchto = &efi_device_error,
224 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100225};
226
227static bool efi_runtime_tobedetached(void *p)
228{
229 int i;
230
231 for (i = 0; i < ARRAY_SIZE(efi_runtime_detach_list); i++)
232 if (efi_runtime_detach_list[i].ptr == p)
233 return true;
234
235 return false;
236}
237
238static void efi_runtime_detach(ulong offset)
239{
240 int i;
241 ulong patchoff = offset - (ulong)gd->relocaddr;
242
243 for (i = 0; i < ARRAY_SIZE(efi_runtime_detach_list); i++) {
244 ulong patchto = (ulong)efi_runtime_detach_list[i].patchto;
245 ulong *p = efi_runtime_detach_list[i].ptr;
246 ulong newaddr = patchto ? (patchto + patchoff) : 0;
247
Alexander Grafedcef3b2016-06-02 11:38:27 +0200248 debug("%s: Setting %p to %lx\n", __func__, p, newaddr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100249 *p = newaddr;
250 }
251}
252
253/* Relocate EFI runtime to uboot_reloc_base = offset */
254void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map)
255{
256#ifdef IS_RELA
257 struct elf_rela *rel = (void*)&__efi_runtime_rel_start;
258#else
259 struct elf_rel *rel = (void*)&__efi_runtime_rel_start;
260 static ulong lastoff = CONFIG_SYS_TEXT_BASE;
261#endif
262
Alexander Grafedcef3b2016-06-02 11:38:27 +0200263 debug("%s: Relocating to offset=%lx\n", __func__, offset);
Alexander Graf50149ea2016-03-04 01:10:01 +0100264 for (; (ulong)rel < (ulong)&__efi_runtime_rel_stop; rel++) {
265 ulong base = CONFIG_SYS_TEXT_BASE;
266 ulong *p;
267 ulong newaddr;
268
269 p = (void*)((ulong)rel->offset - base) + gd->relocaddr;
270
Rick Chen6836adb2018-05-28 19:06:37 +0800271 debug("%s: rel->info=%#lx *p=%#lx rel->offset=%p\n", __func__, rel->info, *p, rel->offset);
Alexander Graf50149ea2016-03-04 01:10:01 +0100272
Rick Chen6836adb2018-05-28 19:06:37 +0800273 switch (rel->info & R_MASK) {
274 case R_RELATIVE:
Alexander Graf50149ea2016-03-04 01:10:01 +0100275#ifdef IS_RELA
276 newaddr = rel->addend + offset - CONFIG_SYS_TEXT_BASE;
277#else
278 newaddr = *p - lastoff + offset;
279#endif
Rick Chen6836adb2018-05-28 19:06:37 +0800280 break;
281#ifdef R_ABSOLUTE
282 case R_ABSOLUTE: {
283 ulong symidx = rel->info >> SYM_INDEX;
284 extern struct dyn_sym __dyn_sym_start[];
285 newaddr = __dyn_sym_start[symidx].addr + offset;
286 break;
287 }
288#endif
289 default:
290 continue;
291 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100292
293 /* Check if the relocation is inside bounds */
294 if (map && ((newaddr < map->virtual_start) ||
Heinrich Schuchardt591cf2e2017-09-18 22:11:34 +0200295 newaddr > (map->virtual_start +
296 (map->num_pages << EFI_PAGE_SHIFT)))) {
Alexander Graf50149ea2016-03-04 01:10:01 +0100297 if (!efi_runtime_tobedetached(p))
298 printf("U-Boot EFI: Relocation at %p is out of "
299 "range (%lx)\n", p, newaddr);
300 continue;
301 }
302
Alexander Grafedcef3b2016-06-02 11:38:27 +0200303 debug("%s: Setting %p to %lx\n", __func__, p, newaddr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100304 *p = newaddr;
Alexander Graf36c37a82016-04-11 23:20:39 +0200305 flush_dcache_range((ulong)p & ~(EFI_CACHELINE_SIZE - 1),
306 ALIGN((ulong)&p[1], EFI_CACHELINE_SIZE));
Alexander Graf50149ea2016-03-04 01:10:01 +0100307 }
308
309#ifndef IS_RELA
310 lastoff = offset;
311#endif
312
313 invalidate_icache_all();
314}
315
316static efi_status_t EFIAPI efi_set_virtual_address_map(
317 unsigned long memory_map_size,
318 unsigned long descriptor_size,
319 uint32_t descriptor_version,
320 struct efi_mem_desc *virtmap)
321{
Heinrich Schuchardt591cf2e2017-09-18 22:11:34 +0200322 ulong runtime_start = (ulong)&__efi_runtime_start &
323 ~(ulong)EFI_PAGE_MASK;
Alexander Graf50149ea2016-03-04 01:10:01 +0100324 int n = memory_map_size / descriptor_size;
325 int i;
326
327 EFI_ENTRY("%lx %lx %x %p", memory_map_size, descriptor_size,
328 descriptor_version, virtmap);
329
Alexander Graf80a48002016-08-16 21:08:45 +0200330 /* Rebind mmio pointers */
331 for (i = 0; i < n; i++) {
332 struct efi_mem_desc *map = (void*)virtmap +
333 (descriptor_size * i);
334 struct list_head *lhandle;
335 efi_physical_addr_t map_start = map->physical_start;
336 efi_physical_addr_t map_len = map->num_pages << EFI_PAGE_SHIFT;
337 efi_physical_addr_t map_end = map_start + map_len;
338
339 /* Adjust all mmio pointers in this region */
340 list_for_each(lhandle, &efi_runtime_mmio) {
341 struct efi_runtime_mmio_list *lmmio;
342
343 lmmio = list_entry(lhandle,
344 struct efi_runtime_mmio_list,
345 link);
346 if ((map_start <= lmmio->paddr) &&
347 (map_end >= lmmio->paddr)) {
348 u64 off = map->virtual_start - map_start;
349 uintptr_t new_addr = lmmio->paddr + off;
350 *lmmio->ptr = (void *)new_addr;
351 }
352 }
353 }
354
355 /* Move the actual runtime code over */
Alexander Graf50149ea2016-03-04 01:10:01 +0100356 for (i = 0; i < n; i++) {
357 struct efi_mem_desc *map;
358
359 map = (void*)virtmap + (descriptor_size * i);
360 if (map->type == EFI_RUNTIME_SERVICES_CODE) {
Alexander Graf80a48002016-08-16 21:08:45 +0200361 ulong new_offset = map->virtual_start -
362 (runtime_start - gd->relocaddr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100363
364 efi_runtime_relocate(new_offset, map);
365 /* Once we're virtual, we can no longer handle
366 complex callbacks */
367 efi_runtime_detach(new_offset);
368 return EFI_EXIT(EFI_SUCCESS);
369 }
370 }
371
372 return EFI_EXIT(EFI_INVALID_PARAMETER);
373}
374
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100375efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len)
Alexander Graf80a48002016-08-16 21:08:45 +0200376{
377 struct efi_runtime_mmio_list *newmmio;
xypron.glpk@gmx.deaee4f062017-08-11 21:19:37 +0200378 u64 pages = (len + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
Alexander Graf813468c2018-03-15 15:08:16 +0100379 uint64_t addr = *(uintptr_t *)mmio_ptr;
380 uint64_t retaddr;
381
382 retaddr = efi_add_memory_map(addr, pages, EFI_MMAP_IO, false);
383 if (retaddr != addr)
384 return EFI_OUT_OF_RESOURCES;
Alexander Graf80a48002016-08-16 21:08:45 +0200385
386 newmmio = calloc(1, sizeof(*newmmio));
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100387 if (!newmmio)
388 return EFI_OUT_OF_RESOURCES;
Alexander Graf80a48002016-08-16 21:08:45 +0200389 newmmio->ptr = mmio_ptr;
390 newmmio->paddr = *(uintptr_t *)mmio_ptr;
391 newmmio->len = len;
392 list_add_tail(&newmmio->link, &efi_runtime_mmio);
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100393
Alexander Graf813468c2018-03-15 15:08:16 +0100394 return EFI_SUCCESS;
Alexander Graf80a48002016-08-16 21:08:45 +0200395}
396
Alexander Graf50149ea2016-03-04 01:10:01 +0100397/*
398 * In the second stage, U-Boot has disappeared. To isolate our runtime code
399 * that at this point still exists from the rest, we put it into a special
400 * section.
401 *
402 * !!WARNING!!
403 *
404 * This means that we can not rely on any code outside of this file in any
405 * function or variable below this line.
406 *
407 * Please keep everything fully self-contained and annotated with
Alexander Graf3c63db92016-10-14 13:45:30 +0200408 * __efi_runtime and __efi_runtime_data markers.
Alexander Graf50149ea2016-03-04 01:10:01 +0100409 */
410
411/*
412 * Relocate the EFI runtime stub to a different place. We need to call this
413 * the first time we expose the runtime interface to a user and on set virtual
414 * address map calls.
415 */
416
Alexander Graf3c63db92016-10-14 13:45:30 +0200417static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void)
Alexander Graf50149ea2016-03-04 01:10:01 +0100418{
419 return EFI_UNSUPPORTED;
420}
421
Alexander Graf3c63db92016-10-14 13:45:30 +0200422static efi_status_t __efi_runtime EFIAPI efi_device_error(void)
Alexander Graf50149ea2016-03-04 01:10:01 +0100423{
424 return EFI_DEVICE_ERROR;
425}
426
Alexander Graf3c63db92016-10-14 13:45:30 +0200427static efi_status_t __efi_runtime EFIAPI efi_invalid_parameter(void)
Alexander Graf50149ea2016-03-04 01:10:01 +0100428{
429 return EFI_INVALID_PARAMETER;
430}
431
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100432efi_status_t __efi_runtime EFIAPI efi_update_capsule(
433 struct efi_capsule_header **capsule_header_array,
434 efi_uintn_t capsule_count,
435 u64 scatter_gather_list)
436{
437 return EFI_UNSUPPORTED;
438}
439
440efi_status_t __efi_runtime EFIAPI efi_query_capsule_caps(
441 struct efi_capsule_header **capsule_header_array,
442 efi_uintn_t capsule_count,
443 u64 maximum_capsule_size,
444 u32 reset_type)
445{
446 return EFI_UNSUPPORTED;
447}
448
449efi_status_t __efi_runtime EFIAPI efi_query_variable_info(
450 u32 attributes,
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200451 u64 *maximum_variable_storage_size,
452 u64 *remaining_variable_storage_size,
453 u64 *maximum_variable_size)
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100454{
455 return EFI_UNSUPPORTED;
456}
457
Alexander Graf3c63db92016-10-14 13:45:30 +0200458struct efi_runtime_services __efi_runtime_data efi_runtime_services = {
Alexander Graf50149ea2016-03-04 01:10:01 +0100459 .hdr = {
460 .signature = EFI_RUNTIME_SERVICES_SIGNATURE,
461 .revision = EFI_RUNTIME_SERVICES_REVISION,
462 .headersize = sizeof(struct efi_table_hdr),
463 },
Alexander Graf80a48002016-08-16 21:08:45 +0200464 .get_time = &efi_get_time_boottime,
Alexander Graf50149ea2016-03-04 01:10:01 +0100465 .set_time = (void *)&efi_device_error,
466 .get_wakeup_time = (void *)&efi_unimplemented,
467 .set_wakeup_time = (void *)&efi_unimplemented,
468 .set_virtual_address_map = &efi_set_virtual_address_map,
469 .convert_pointer = (void *)&efi_invalid_parameter,
Rob Clarkad644e72017-09-13 18:05:37 -0400470 .get_variable = efi_get_variable,
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200471 .get_next_variable_name = efi_get_next_variable_name,
Rob Clarkad644e72017-09-13 18:05:37 -0400472 .set_variable = efi_set_variable,
Alexander Graf50149ea2016-03-04 01:10:01 +0100473 .get_next_high_mono_count = (void *)&efi_device_error,
Alexander Graf80a48002016-08-16 21:08:45 +0200474 .reset_system = &efi_reset_system_boottime,
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100475 .update_capsule = efi_update_capsule,
476 .query_capsule_caps = efi_query_capsule_caps,
477 .query_variable_info = efi_query_variable_info,
Alexander Graf50149ea2016-03-04 01:10:01 +0100478};