efi.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_EFI_H
  3. #define _ASM_EFI_H
  4. #include <asm/boot.h>
  5. #include <asm/cpufeature.h>
  6. #include <asm/fpsimd.h>
  7. #include <asm/io.h>
  8. #include <asm/memory.h>
  9. #include <asm/mmu_context.h>
  10. #include <asm/neon.h>
  11. #include <asm/ptrace.h>
  12. #include <asm/tlbflush.h>
  13. #ifdef CONFIG_EFI
  14. extern void efi_init(void);
  15. #else
  16. #define efi_init()
  17. #endif
  18. int efi_create_mapping(struct mm_struct *mm, efi_memory_desc_t *md);
  19. int efi_set_mapping_permissions(struct mm_struct *mm, efi_memory_desc_t *md);
  20. #define arch_efi_call_virt_setup() \
  21. ({ \
  22. efi_virtmap_load(); \
  23. __efi_fpsimd_begin(); \
  24. })
  25. #define arch_efi_call_virt(p, f, args...) \
  26. ({ \
  27. efi_##f##_t *__f; \
  28. __f = p->f; \
  29. __efi_rt_asm_wrapper(__f, #f, args); \
  30. })
  31. #define arch_efi_call_virt_teardown() \
  32. ({ \
  33. __efi_fpsimd_end(); \
  34. efi_virtmap_unload(); \
  35. })
  36. efi_status_t __efi_rt_asm_wrapper(void *, const char *, ...);
  37. #define ARCH_EFI_IRQ_FLAGS_MASK (PSR_D_BIT | PSR_A_BIT | PSR_I_BIT | PSR_F_BIT)
  38. /* arch specific definitions used by the stub code */
  39. /*
  40. * AArch64 requires the DTB to be 8-byte aligned in the first 512MiB from
  41. * start of kernel and may not cross a 2MiB boundary. We set alignment to
  42. * 2MiB so we know it won't cross a 2MiB boundary.
  43. */
  44. #define EFI_FDT_ALIGN SZ_2M /* used by allocate_new_fdt_and_exit_boot() */
  45. /*
  46. * In some configurations (e.g. VMAP_STACK && 64K pages), stacks built into the
  47. * kernel need greater alignment than we require the segments to be padded to.
  48. */
  49. #define EFI_KIMG_ALIGN \
  50. (SEGMENT_ALIGN > THREAD_ALIGN ? SEGMENT_ALIGN : THREAD_ALIGN)
  51. /* on arm64, the FDT may be located anywhere in system RAM */
  52. static inline unsigned long efi_get_max_fdt_addr(unsigned long dram_base)
  53. {
  54. return ULONG_MAX;
  55. }
  56. /*
  57. * On arm64, we have to ensure that the initrd ends up in the linear region,
  58. * which is a 1 GB aligned region of size '1UL << (VA_BITS - 1)' that is
  59. * guaranteed to cover the kernel Image.
  60. *
  61. * Since the EFI stub is part of the kernel Image, we can relax the
  62. * usual requirements in Documentation/arm64/booting.txt, which still
  63. * apply to other bootloaders, and are required for some kernel
  64. * configurations.
  65. */
  66. static inline unsigned long efi_get_max_initrd_addr(unsigned long dram_base,
  67. unsigned long image_addr)
  68. {
  69. return (image_addr & ~(SZ_1G - 1UL)) + (1UL << (VA_BITS - 1));
  70. }
  71. #define efi_call_early(f, ...) sys_table_arg->boottime->f(__VA_ARGS__)
  72. #define __efi_call_early(f, ...) f(__VA_ARGS__)
  73. #define efi_call_runtime(f, ...) sys_table_arg->runtime->f(__VA_ARGS__)
  74. #define efi_is_64bit() (true)
  75. #define efi_table_attr(table, attr, instance) \
  76. ((table##_t *)instance)->attr
  77. #define efi_call_proto(protocol, f, instance, ...) \
  78. ((protocol##_t *)instance)->f(instance, ##__VA_ARGS__)
  79. #define alloc_screen_info(x...) &screen_info
  80. #define free_screen_info(x...)
  81. /* redeclare as 'hidden' so the compiler will generate relative references */
  82. extern struct screen_info screen_info __attribute__((__visibility__("hidden")));
  83. static inline void efifb_setup_from_dmi(struct screen_info *si, const char *opt)
  84. {
  85. }
  86. #define EFI_ALLOC_ALIGN SZ_64K
  87. /*
  88. * On ARM systems, virtually remapped UEFI runtime services are set up in two
  89. * distinct stages:
  90. * - The stub retrieves the final version of the memory map from UEFI, populates
  91. * the virt_addr fields and calls the SetVirtualAddressMap() [SVAM] runtime
  92. * service to communicate the new mapping to the firmware (Note that the new
  93. * mapping is not live at this time)
  94. * - During an early initcall(), the EFI system table is permanently remapped
  95. * and the virtual remapping of the UEFI Runtime Services regions is loaded
  96. * into a private set of page tables. If this all succeeds, the Runtime
  97. * Services are enabled and the EFI_RUNTIME_SERVICES bit set.
  98. */
  99. static inline void efi_set_pgd(struct mm_struct *mm)
  100. {
  101. __switch_mm(mm);
  102. if (system_uses_ttbr0_pan()) {
  103. if (mm != current->active_mm) {
  104. /*
  105. * Update the current thread's saved ttbr0 since it is
  106. * restored as part of a return from exception. Enable
  107. * access to the valid TTBR0_EL1 and invoke the errata
  108. * workaround directly since there is no return from
  109. * exception when invoking the EFI run-time services.
  110. */
  111. update_saved_ttbr0(current, mm);
  112. uaccess_ttbr0_enable();
  113. post_ttbr_update_workaround();
  114. } else {
  115. /*
  116. * Defer the switch to the current thread's TTBR0_EL1
  117. * until uaccess_enable(). Restore the current
  118. * thread's saved ttbr0 corresponding to its active_mm
  119. */
  120. uaccess_ttbr0_disable();
  121. update_saved_ttbr0(current, current->active_mm);
  122. }
  123. }
  124. }
  125. void efi_virtmap_load(void);
  126. void efi_virtmap_unload(void);
  127. #endif /* _ASM_EFI_H */