blob: 65f2bcf1401adaca95fc4a0335b0d21e12498d1f [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
31#if defined(CONFIG_ARM64)
32#define R_RELATIVE 1027
33#define R_MASK 0xffffffffULL
34#define IS_RELA 1
35#elif defined(CONFIG_ARM)
36#define R_RELATIVE 23
37#define R_MASK 0xffULL
Simon Glass65e4c0b2016-09-25 15:27:35 -060038#elif defined(CONFIG_X86)
39#include <asm/elf.h>
40#define R_RELATIVE R_386_RELATIVE
41#define R_MASK 0xffULL
Rick Chen6836adb2018-05-28 19:06:37 +080042#elif defined(CONFIG_RISCV)
43#include <elf.h>
44#define R_RELATIVE R_RISCV_RELATIVE
45#define R_MASK 0xffULL
46#define IS_RELA 1
47
48struct dyn_sym {
49 ulong foo1;
50 ulong addr;
51 u32 foo2;
52 u32 foo3;
53};
54#ifdef CONFIG_CPU_RISCV_32
55#define R_ABSOLUTE R_RISCV_32
56#define SYM_INDEX 8
57#else
58#define R_ABSOLUTE R_RISCV_64
59#define SYM_INDEX 32
60#endif
Alexander Graf50149ea2016-03-04 01:10:01 +010061#else
62#error Need to add relocation awareness
63#endif
64
65struct elf_rel {
66 ulong *offset;
67 ulong info;
68};
69
70struct elf_rela {
71 ulong *offset;
72 ulong info;
73 long addend;
74};
75
76/*
77 * EFI Runtime code lives in 2 stages. In the first stage, U-Boot and an EFI
78 * payload are running concurrently at the same time. In this mode, we can
79 * handle a good number of runtime callbacks
80 */
81
Alexander Graf80a48002016-08-16 21:08:45 +020082static void EFIAPI efi_reset_system_boottime(
83 enum efi_reset_type reset_type,
84 efi_status_t reset_status,
85 unsigned long data_size, void *reset_data)
Alexander Graf50149ea2016-03-04 01:10:01 +010086{
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +010087 struct efi_event *evt;
88
Alexander Graf50149ea2016-03-04 01:10:01 +010089 EFI_ENTRY("%d %lx %lx %p", reset_type, reset_status, data_size,
90 reset_data);
91
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +010092 /* Notify reset */
93 list_for_each_entry(evt, &efi_events, link) {
94 if (evt->group &&
95 !guidcmp(evt->group,
96 &efi_guid_event_group_reset_system)) {
97 efi_signal_event(evt, false);
98 break;
99 }
100 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100101 switch (reset_type) {
102 case EFI_RESET_COLD:
103 case EFI_RESET_WARM:
Heinrich Schuchardt482fc902018-02-06 22:00:22 +0100104 case EFI_RESET_PLATFORM_SPECIFIC:
Alexander Graf50149ea2016-03-04 01:10:01 +0100105 do_reset(NULL, 0, 0, NULL);
106 break;
107 case EFI_RESET_SHUTDOWN:
108 /* We don't have anything to map this to */
109 break;
110 }
111
Alexander Graf80a48002016-08-16 21:08:45 +0200112 while (1) { }
Alexander Graf50149ea2016-03-04 01:10:01 +0100113}
114
Alexander Graf80a48002016-08-16 21:08:45 +0200115static efi_status_t EFIAPI efi_get_time_boottime(
116 struct efi_time *time,
117 struct efi_time_cap *capabilities)
Alexander Graf50149ea2016-03-04 01:10:01 +0100118{
119#if defined(CONFIG_CMD_DATE) && defined(CONFIG_DM_RTC)
120 struct rtc_time tm;
121 int r;
122 struct udevice *dev;
123
124 EFI_ENTRY("%p %p", time, capabilities);
125
126 r = uclass_get_device(UCLASS_RTC, 0, &dev);
127 if (r)
128 return EFI_EXIT(EFI_DEVICE_ERROR);
129
130 r = dm_rtc_get(dev, &tm);
131 if (r)
132 return EFI_EXIT(EFI_DEVICE_ERROR);
133
134 memset(time, 0, sizeof(*time));
135 time->year = tm.tm_year;
136 time->month = tm.tm_mon;
137 time->day = tm.tm_mday;
138 time->hour = tm.tm_hour;
139 time->minute = tm.tm_min;
140 time->daylight = tm.tm_isdst;
141
142 return EFI_EXIT(EFI_SUCCESS);
143#else
144 return EFI_DEVICE_ERROR;
145#endif
146}
147
Alexander Graf80a48002016-08-16 21:08:45 +0200148/* Boards may override the helpers below to implement RTS functionality */
149
Alexander Graf3c63db92016-10-14 13:45:30 +0200150void __weak __efi_runtime EFIAPI efi_reset_system(
Alexander Graf80a48002016-08-16 21:08:45 +0200151 enum efi_reset_type reset_type,
152 efi_status_t reset_status,
153 unsigned long data_size, void *reset_data)
154{
155 /* Nothing we can do */
156 while (1) { }
157}
158
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100159efi_status_t __weak efi_reset_system_init(void)
Alexander Graf80a48002016-08-16 21:08:45 +0200160{
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100161 return EFI_SUCCESS;
Alexander Graf80a48002016-08-16 21:08:45 +0200162}
163
Alexander Graf3c63db92016-10-14 13:45:30 +0200164efi_status_t __weak __efi_runtime EFIAPI efi_get_time(
Alexander Graf80a48002016-08-16 21:08:45 +0200165 struct efi_time *time,
166 struct efi_time_cap *capabilities)
167{
168 /* Nothing we can do */
169 return EFI_DEVICE_ERROR;
170}
171
Heinrich Schuchardt14ad49d2018-03-03 15:29:00 +0100172efi_status_t __weak efi_get_time_init(void)
Alexander Graf80a48002016-08-16 21:08:45 +0200173{
Heinrich Schuchardt14ad49d2018-03-03 15:29:00 +0100174 return EFI_SUCCESS;
Alexander Graf80a48002016-08-16 21:08:45 +0200175}
176
Alexander Graf50149ea2016-03-04 01:10:01 +0100177struct efi_runtime_detach_list_struct {
178 void *ptr;
179 void *patchto;
180};
181
182static const struct efi_runtime_detach_list_struct efi_runtime_detach_list[] = {
183 {
184 /* do_reset is gone */
185 .ptr = &efi_runtime_services.reset_system,
Alexander Graf80a48002016-08-16 21:08:45 +0200186 .patchto = efi_reset_system,
Alexander Graf50149ea2016-03-04 01:10:01 +0100187 }, {
188 /* invalidate_*cache_all are gone */
189 .ptr = &efi_runtime_services.set_virtual_address_map,
190 .patchto = &efi_invalid_parameter,
191 }, {
192 /* RTC accessors are gone */
193 .ptr = &efi_runtime_services.get_time,
Alexander Graf80a48002016-08-16 21:08:45 +0200194 .patchto = &efi_get_time,
Alexander Grafae874402016-05-18 00:54:47 +0200195 }, {
196 /* Clean up system table */
197 .ptr = &systab.con_in,
198 .patchto = NULL,
199 }, {
200 /* Clean up system table */
201 .ptr = &systab.con_out,
202 .patchto = NULL,
203 }, {
204 /* Clean up system table */
205 .ptr = &systab.std_err,
206 .patchto = NULL,
207 }, {
208 /* Clean up system table */
209 .ptr = &systab.boottime,
210 .patchto = NULL,
Rob Clarkad644e72017-09-13 18:05:37 -0400211 }, {
212 .ptr = &efi_runtime_services.get_variable,
213 .patchto = &efi_device_error,
214 }, {
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200215 .ptr = &efi_runtime_services.get_next_variable_name,
Rob Clarkad644e72017-09-13 18:05:37 -0400216 .patchto = &efi_device_error,
217 }, {
218 .ptr = &efi_runtime_services.set_variable,
219 .patchto = &efi_device_error,
220 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100221};
222
223static bool efi_runtime_tobedetached(void *p)
224{
225 int i;
226
227 for (i = 0; i < ARRAY_SIZE(efi_runtime_detach_list); i++)
228 if (efi_runtime_detach_list[i].ptr == p)
229 return true;
230
231 return false;
232}
233
234static void efi_runtime_detach(ulong offset)
235{
236 int i;
237 ulong patchoff = offset - (ulong)gd->relocaddr;
238
239 for (i = 0; i < ARRAY_SIZE(efi_runtime_detach_list); i++) {
240 ulong patchto = (ulong)efi_runtime_detach_list[i].patchto;
241 ulong *p = efi_runtime_detach_list[i].ptr;
242 ulong newaddr = patchto ? (patchto + patchoff) : 0;
243
Alexander Grafedcef3b2016-06-02 11:38:27 +0200244 debug("%s: Setting %p to %lx\n", __func__, p, newaddr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100245 *p = newaddr;
246 }
247}
248
249/* Relocate EFI runtime to uboot_reloc_base = offset */
250void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map)
251{
252#ifdef IS_RELA
253 struct elf_rela *rel = (void*)&__efi_runtime_rel_start;
254#else
255 struct elf_rel *rel = (void*)&__efi_runtime_rel_start;
256 static ulong lastoff = CONFIG_SYS_TEXT_BASE;
257#endif
258
Alexander Grafedcef3b2016-06-02 11:38:27 +0200259 debug("%s: Relocating to offset=%lx\n", __func__, offset);
Alexander Graf50149ea2016-03-04 01:10:01 +0100260 for (; (ulong)rel < (ulong)&__efi_runtime_rel_stop; rel++) {
261 ulong base = CONFIG_SYS_TEXT_BASE;
262 ulong *p;
263 ulong newaddr;
264
265 p = (void*)((ulong)rel->offset - base) + gd->relocaddr;
266
Rick Chen6836adb2018-05-28 19:06:37 +0800267 debug("%s: rel->info=%#lx *p=%#lx rel->offset=%p\n", __func__, rel->info, *p, rel->offset);
Alexander Graf50149ea2016-03-04 01:10:01 +0100268
Rick Chen6836adb2018-05-28 19:06:37 +0800269 switch (rel->info & R_MASK) {
270 case R_RELATIVE:
Alexander Graf50149ea2016-03-04 01:10:01 +0100271#ifdef IS_RELA
272 newaddr = rel->addend + offset - CONFIG_SYS_TEXT_BASE;
273#else
274 newaddr = *p - lastoff + offset;
275#endif
Rick Chen6836adb2018-05-28 19:06:37 +0800276 break;
277#ifdef R_ABSOLUTE
278 case R_ABSOLUTE: {
279 ulong symidx = rel->info >> SYM_INDEX;
280 extern struct dyn_sym __dyn_sym_start[];
281 newaddr = __dyn_sym_start[symidx].addr + offset;
282 break;
283 }
284#endif
285 default:
286 continue;
287 }
Alexander Graf50149ea2016-03-04 01:10:01 +0100288
289 /* Check if the relocation is inside bounds */
290 if (map && ((newaddr < map->virtual_start) ||
Heinrich Schuchardt591cf2e2017-09-18 22:11:34 +0200291 newaddr > (map->virtual_start +
292 (map->num_pages << EFI_PAGE_SHIFT)))) {
Alexander Graf50149ea2016-03-04 01:10:01 +0100293 if (!efi_runtime_tobedetached(p))
294 printf("U-Boot EFI: Relocation at %p is out of "
295 "range (%lx)\n", p, newaddr);
296 continue;
297 }
298
Alexander Grafedcef3b2016-06-02 11:38:27 +0200299 debug("%s: Setting %p to %lx\n", __func__, p, newaddr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100300 *p = newaddr;
Alexander Graf36c37a82016-04-11 23:20:39 +0200301 flush_dcache_range((ulong)p & ~(EFI_CACHELINE_SIZE - 1),
302 ALIGN((ulong)&p[1], EFI_CACHELINE_SIZE));
Alexander Graf50149ea2016-03-04 01:10:01 +0100303 }
304
305#ifndef IS_RELA
306 lastoff = offset;
307#endif
308
309 invalidate_icache_all();
310}
311
312static efi_status_t EFIAPI efi_set_virtual_address_map(
313 unsigned long memory_map_size,
314 unsigned long descriptor_size,
315 uint32_t descriptor_version,
316 struct efi_mem_desc *virtmap)
317{
Heinrich Schuchardt591cf2e2017-09-18 22:11:34 +0200318 ulong runtime_start = (ulong)&__efi_runtime_start &
319 ~(ulong)EFI_PAGE_MASK;
Alexander Graf50149ea2016-03-04 01:10:01 +0100320 int n = memory_map_size / descriptor_size;
321 int i;
322
323 EFI_ENTRY("%lx %lx %x %p", memory_map_size, descriptor_size,
324 descriptor_version, virtmap);
325
Alexander Graf80a48002016-08-16 21:08:45 +0200326 /* Rebind mmio pointers */
327 for (i = 0; i < n; i++) {
328 struct efi_mem_desc *map = (void*)virtmap +
329 (descriptor_size * i);
330 struct list_head *lhandle;
331 efi_physical_addr_t map_start = map->physical_start;
332 efi_physical_addr_t map_len = map->num_pages << EFI_PAGE_SHIFT;
333 efi_physical_addr_t map_end = map_start + map_len;
334
335 /* Adjust all mmio pointers in this region */
336 list_for_each(lhandle, &efi_runtime_mmio) {
337 struct efi_runtime_mmio_list *lmmio;
338
339 lmmio = list_entry(lhandle,
340 struct efi_runtime_mmio_list,
341 link);
342 if ((map_start <= lmmio->paddr) &&
343 (map_end >= lmmio->paddr)) {
344 u64 off = map->virtual_start - map_start;
345 uintptr_t new_addr = lmmio->paddr + off;
346 *lmmio->ptr = (void *)new_addr;
347 }
348 }
349 }
350
351 /* Move the actual runtime code over */
Alexander Graf50149ea2016-03-04 01:10:01 +0100352 for (i = 0; i < n; i++) {
353 struct efi_mem_desc *map;
354
355 map = (void*)virtmap + (descriptor_size * i);
356 if (map->type == EFI_RUNTIME_SERVICES_CODE) {
Alexander Graf80a48002016-08-16 21:08:45 +0200357 ulong new_offset = map->virtual_start -
358 (runtime_start - gd->relocaddr);
Alexander Graf50149ea2016-03-04 01:10:01 +0100359
360 efi_runtime_relocate(new_offset, map);
361 /* Once we're virtual, we can no longer handle
362 complex callbacks */
363 efi_runtime_detach(new_offset);
364 return EFI_EXIT(EFI_SUCCESS);
365 }
366 }
367
368 return EFI_EXIT(EFI_INVALID_PARAMETER);
369}
370
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100371efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len)
Alexander Graf80a48002016-08-16 21:08:45 +0200372{
373 struct efi_runtime_mmio_list *newmmio;
xypron.glpk@gmx.deaee4f062017-08-11 21:19:37 +0200374 u64 pages = (len + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
Alexander Graf813468c2018-03-15 15:08:16 +0100375 uint64_t addr = *(uintptr_t *)mmio_ptr;
376 uint64_t retaddr;
377
378 retaddr = efi_add_memory_map(addr, pages, EFI_MMAP_IO, false);
379 if (retaddr != addr)
380 return EFI_OUT_OF_RESOURCES;
Alexander Graf80a48002016-08-16 21:08:45 +0200381
382 newmmio = calloc(1, sizeof(*newmmio));
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100383 if (!newmmio)
384 return EFI_OUT_OF_RESOURCES;
Alexander Graf80a48002016-08-16 21:08:45 +0200385 newmmio->ptr = mmio_ptr;
386 newmmio->paddr = *(uintptr_t *)mmio_ptr;
387 newmmio->len = len;
388 list_add_tail(&newmmio->link, &efi_runtime_mmio);
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +0100389
Alexander Graf813468c2018-03-15 15:08:16 +0100390 return EFI_SUCCESS;
Alexander Graf80a48002016-08-16 21:08:45 +0200391}
392
Alexander Graf50149ea2016-03-04 01:10:01 +0100393/*
394 * In the second stage, U-Boot has disappeared. To isolate our runtime code
395 * that at this point still exists from the rest, we put it into a special
396 * section.
397 *
398 * !!WARNING!!
399 *
400 * This means that we can not rely on any code outside of this file in any
401 * function or variable below this line.
402 *
403 * Please keep everything fully self-contained and annotated with
Alexander Graf3c63db92016-10-14 13:45:30 +0200404 * __efi_runtime and __efi_runtime_data markers.
Alexander Graf50149ea2016-03-04 01:10:01 +0100405 */
406
407/*
408 * Relocate the EFI runtime stub to a different place. We need to call this
409 * the first time we expose the runtime interface to a user and on set virtual
410 * address map calls.
411 */
412
Alexander Graf3c63db92016-10-14 13:45:30 +0200413static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void)
Alexander Graf50149ea2016-03-04 01:10:01 +0100414{
415 return EFI_UNSUPPORTED;
416}
417
Alexander Graf3c63db92016-10-14 13:45:30 +0200418static efi_status_t __efi_runtime EFIAPI efi_device_error(void)
Alexander Graf50149ea2016-03-04 01:10:01 +0100419{
420 return EFI_DEVICE_ERROR;
421}
422
Alexander Graf3c63db92016-10-14 13:45:30 +0200423static efi_status_t __efi_runtime EFIAPI efi_invalid_parameter(void)
Alexander Graf50149ea2016-03-04 01:10:01 +0100424{
425 return EFI_INVALID_PARAMETER;
426}
427
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100428efi_status_t __efi_runtime EFIAPI efi_update_capsule(
429 struct efi_capsule_header **capsule_header_array,
430 efi_uintn_t capsule_count,
431 u64 scatter_gather_list)
432{
433 return EFI_UNSUPPORTED;
434}
435
436efi_status_t __efi_runtime EFIAPI efi_query_capsule_caps(
437 struct efi_capsule_header **capsule_header_array,
438 efi_uintn_t capsule_count,
439 u64 maximum_capsule_size,
440 u32 reset_type)
441{
442 return EFI_UNSUPPORTED;
443}
444
445efi_status_t __efi_runtime EFIAPI efi_query_variable_info(
446 u32 attributes,
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200447 u64 *maximum_variable_storage_size,
448 u64 *remaining_variable_storage_size,
449 u64 *maximum_variable_size)
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100450{
451 return EFI_UNSUPPORTED;
452}
453
Alexander Graf3c63db92016-10-14 13:45:30 +0200454struct efi_runtime_services __efi_runtime_data efi_runtime_services = {
Alexander Graf50149ea2016-03-04 01:10:01 +0100455 .hdr = {
456 .signature = EFI_RUNTIME_SERVICES_SIGNATURE,
457 .revision = EFI_RUNTIME_SERVICES_REVISION,
458 .headersize = sizeof(struct efi_table_hdr),
459 },
Alexander Graf80a48002016-08-16 21:08:45 +0200460 .get_time = &efi_get_time_boottime,
Alexander Graf50149ea2016-03-04 01:10:01 +0100461 .set_time = (void *)&efi_device_error,
462 .get_wakeup_time = (void *)&efi_unimplemented,
463 .set_wakeup_time = (void *)&efi_unimplemented,
464 .set_virtual_address_map = &efi_set_virtual_address_map,
465 .convert_pointer = (void *)&efi_invalid_parameter,
Rob Clarkad644e72017-09-13 18:05:37 -0400466 .get_variable = efi_get_variable,
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200467 .get_next_variable_name = efi_get_next_variable_name,
Rob Clarkad644e72017-09-13 18:05:37 -0400468 .set_variable = efi_set_variable,
Alexander Graf50149ea2016-03-04 01:10:01 +0100469 .get_next_high_mono_count = (void *)&efi_device_error,
Alexander Graf80a48002016-08-16 21:08:45 +0200470 .reset_system = &efi_reset_system_boottime,
Heinrich Schuchardt0c230742018-02-09 20:41:21 +0100471 .update_capsule = efi_update_capsule,
472 .query_capsule_caps = efi_query_capsule_caps,
473 .query_variable_info = efi_query_variable_info,
Alexander Graf50149ea2016-03-04 01:10:01 +0100474};