*
  * This is the main reason why we're doing stable VA mappings for RT
  * services.
- *
- * SGI UV1 machines are known to be incompatible with this scheme, so we
- * provide an opt-out for these machines via a DMI quirk that sets the
- * attribute below.
  */
-#define EFI_UV1_MEMMAP         EFI_ARCH_1
-
-static inline bool efi_have_uv1_memmap(void)
-{
-       return IS_ENABLED(CONFIG_X86_UV) && efi_enabled(EFI_UV1_MEMMAP);
-}
 
 #define EFI32_LOADER_SIGNATURE "EL32"
 #define EFI64_LOADER_SIGNATURE "EL64"
        efi_sync_low_kernel_mappings();                                 \
        kernel_fpu_begin();                                             \
        firmware_restrict_branch_speculation_start();                   \
-                                                                       \
-       if (!efi_have_uv1_memmap())                                     \
-               efi_switch_mm(&efi_mm);                                 \
+       efi_switch_mm(&efi_mm);                                         \
 })
 
 #define arch_efi_call_virt(p, f, args...)                              \
 
 #define arch_efi_call_virt_teardown()                                  \
 ({                                                                     \
-       if (!efi_have_uv1_memmap())                                     \
-               efi_switch_mm(efi_scratch.prev_mm);                     \
-                                                                       \
+       efi_switch_mm(efi_scratch.prev_mm);                             \
        firmware_restrict_branch_speculation_end();                     \
        kernel_fpu_end();                                               \
 })
 extern void efi_switch_mm(struct mm_struct *mm);
 extern void efi_recover_from_page_fault(unsigned long phys_addr);
 extern void efi_free_boot_services(void);
-extern pgd_t * __init efi_uv1_memmap_phys_prolog(void);
-extern void __init efi_uv1_memmap_phys_epilog(pgd_t *save_pgd);
 
 /* kexec external ABI */
 struct efi_setup_data {