efi.h 2.4 KB
Newer Older
M
Mark Salter 已提交
1 2 3 4
#ifndef _ASM_EFI_H
#define _ASM_EFI_H

#include <asm/io.h>
5
#include <asm/neon.h>
M
Mark Salter 已提交
6 7 8 9

#ifdef CONFIG_EFI
extern void efi_init(void);
extern void efi_idmap_init(void);
10
extern void efi_virtmap_init(void);
M
Mark Salter 已提交
11 12 13
#else
#define efi_init()
#define efi_idmap_init()
14
#define efi_virtmap_init()
M
Mark Salter 已提交
15 16
#endif

17 18
#define efi_call_virt(f, ...)						\
({									\
19
	efi_##f##_t *__f;						\
20 21 22
	efi_status_t __s;						\
									\
	kernel_neon_begin();						\
23 24
	efi_virtmap_load();						\
	__f = efi.systab->runtime->f;					\
25
	__s = __f(__VA_ARGS__);						\
26
	efi_virtmap_unload();						\
27 28 29 30 31 32
	kernel_neon_end();						\
	__s;								\
})

#define __efi_call_virt(f, ...)						\
({									\
33
	efi_##f##_t *__f;						\
34 35
									\
	kernel_neon_begin();						\
36 37
	efi_virtmap_load();						\
	__f = efi.systab->runtime->f;					\
38
	__f(__VA_ARGS__);						\
39
	efi_virtmap_unload();						\
40 41 42
	kernel_neon_end();						\
})

43 44 45 46 47 48 49 50 51 52 53 54
/* arch specific definitions used by the stub code */

/*
 * AArch64 requires the DTB to be 8-byte aligned in the first 512MiB from
 * start of kernel and may not cross a 2MiB boundary. We set alignment to
 * 2MiB so we know it won't cross a 2MiB boundary.
 */
#define EFI_FDT_ALIGN	SZ_2M   /* used by allocate_new_fdt_and_exit_boot() */
#define MAX_FDT_OFFSET	SZ_512M

#define efi_call_early(f, ...) sys_table_arg->boottime->f(__VA_ARGS__)

55 56
#define EFI_ALLOC_ALIGN		SZ_64K

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
/*
 * On ARM systems, virtually remapped UEFI runtime services are set up in three
 * distinct stages:
 * - The stub retrieves the final version of the memory map from UEFI, populates
 *   the virt_addr fields and calls the SetVirtualAddressMap() [SVAM] runtime
 *   service to communicate the new mapping to the firmware (Note that the new
 *   mapping is not live at this time)
 * - During early boot, the page tables are allocated and populated based on the
 *   virt_addr fields in the memory map, but only if all descriptors with the
 *   EFI_MEMORY_RUNTIME attribute have a non-zero value for virt_addr. If this
 *   succeeds, the EFI_VIRTMAP flag is set to indicate that the virtual mappings
 *   have been installed successfully.
 * - During an early initcall(), the UEFI Runtime Services are enabled and the
 *   EFI_RUNTIME_SERVICES bit set if some conditions are met, i.e., we need a
 *   non-early mapping of the UEFI system table, and we need to have the virtmap
 *   installed.
 */
#define EFI_VIRTMAP		EFI_ARCH_1

void efi_virtmap_load(void);
void efi_virtmap_unload(void);

M
Mark Salter 已提交
79
#endif /* _ASM_EFI_H */