You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

efi.h 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #ifndef CONFIG_DEFAULTS_EFI_H
  2. #define CONFIG_DEFAULTS_EFI_H
  3. /** @file
  4. *
  5. * Configuration defaults for EFI
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #define UACCESS_EFI
  10. #define IOMAP_VIRT
  11. #define PCIAPI_EFI
  12. #define CONSOLE_EFI
  13. #define TIMER_EFI
  14. #define UMALLOC_EFI
  15. #define SMBIOS_EFI
  16. #define SANBOOT_EFI
  17. #define BOFM_EFI
  18. #define ENTROPY_EFI
  19. #define TIME_EFI
  20. #define REBOOT_EFI
  21. #define ACPI_EFI
  22. #define FDT_EFI
  23. #define DOWNLOAD_PROTO_FILE /* Local filesystem access */
  24. #define IMAGE_EFI /* EFI image support */
  25. #define IMAGE_SCRIPT /* iPXE script image support */
  26. #define SANBOOT_PROTO_ISCSI /* iSCSI protocol */
  27. #define SANBOOT_PROTO_AOE /* AoE protocol */
  28. #define SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
  29. #define SANBOOT_PROTO_FCP /* Fibre Channel protocol */
  30. #define SANBOOT_PROTO_HTTP /* HTTP SAN protocol */
  31. #define USB_HCD_XHCI /* xHCI USB host controller */
  32. #define USB_HCD_EHCI /* EHCI USB host controller */
  33. #define USB_HCD_UHCI /* UHCI USB host controller */
  34. #define USB_EFI /* Provide EFI_USB_IO_PROTOCOL interface */
  35. #define REBOOT_CMD /* Reboot command */
  36. #if defined ( __i386__ ) || defined ( __x86_64__ )
  37. #define IOAPI_X86
  38. #define NAP_EFIX86
  39. #define CPUID_CMD /* x86 CPU feature detection command */
  40. #endif
  41. #if defined ( __arm__ ) || defined ( __aarch64__ )
  42. #define IOAPI_ARM
  43. #define NAP_EFIARM
  44. #endif
  45. #endif /* CONFIG_DEFAULTS_EFI_H */