2008-10-12 01:55:55 +01:00
|
|
|
#ifndef CONFIG_DEFAULTS_EFI_H
|
|
|
|
|
#define CONFIG_DEFAULTS_EFI_H
|
|
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* Configuration defaults for EFI
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2015-04-14 10:56:20 +01:00
|
|
|
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
2013-07-15 12:30:57 +02:00
|
|
|
|
2008-10-12 01:55:55 +01:00
|
|
|
#define UACCESS_EFI
|
2016-02-26 15:33:40 +00:00
|
|
|
#define IOMAP_VIRT
|
2008-10-12 01:55:55 +01:00
|
|
|
#define PCIAPI_EFI
|
2020-11-04 15:18:49 +00:00
|
|
|
#define DMAAPI_OP
|
2008-10-12 01:55:55 +01:00
|
|
|
#define CONSOLE_EFI
|
|
|
|
|
#define TIMER_EFI
|
|
|
|
|
#define UMALLOC_EFI
|
2008-12-04 23:09:48 +00:00
|
|
|
#define SMBIOS_EFI
|
2016-11-16 22:22:22 +00:00
|
|
|
#define SANBOOT_EFI
|
2011-02-17 00:31:38 +00:00
|
|
|
#define BOFM_EFI
|
2023-02-20 14:08:49 +00:00
|
|
|
#define ENTROPY_EFITICK
|
|
|
|
|
#define ENTROPY_EFIRNG
|
2015-04-14 11:55:08 +01:00
|
|
|
#define TIME_EFI
|
2013-03-22 13:42:16 +00:00
|
|
|
#define REBOOT_EFI
|
2017-05-23 18:32:31 +01:00
|
|
|
#define ACPI_EFI
|
2019-07-19 17:42:12 +01:00
|
|
|
#define FDT_EFI
|
2008-10-12 01:55:55 +01:00
|
|
|
|
2018-11-18 20:13:46 +01:00
|
|
|
#define NET_PROTO_IPV6 /* IPv6 protocol */
|
2023-02-05 18:53:03 +00:00
|
|
|
#define NET_PROTO_LLDP /* Link Layer Discovery protocol */
|
2018-11-18 20:13:46 +01:00
|
|
|
|
2016-03-14 15:23:42 +00:00
|
|
|
#define DOWNLOAD_PROTO_FILE /* Local filesystem access */
|
|
|
|
|
|
2008-10-12 01:55:55 +01:00
|
|
|
#define IMAGE_EFI /* EFI image support */
|
2010-06-16 14:35:24 -07:00
|
|
|
#define IMAGE_SCRIPT /* iPXE script image support */
|
2008-10-12 01:55:55 +01:00
|
|
|
|
2016-11-16 22:22:22 +00:00
|
|
|
#define SANBOOT_PROTO_ISCSI /* iSCSI protocol */
|
|
|
|
|
#define SANBOOT_PROTO_AOE /* AoE protocol */
|
|
|
|
|
#define SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
|
|
|
|
|
#define SANBOOT_PROTO_FCP /* Fibre Channel protocol */
|
2017-03-06 15:01:39 +00:00
|
|
|
#define SANBOOT_PROTO_HTTP /* HTTP SAN protocol */
|
2016-11-16 22:22:22 +00:00
|
|
|
|
2015-09-10 17:22:03 +01:00
|
|
|
#define USB_HCD_XHCI /* xHCI USB host controller */
|
|
|
|
|
#define USB_HCD_EHCI /* EHCI USB host controller */
|
|
|
|
|
#define USB_HCD_UHCI /* UHCI USB host controller */
|
|
|
|
|
#define USB_EFI /* Provide EFI_USB_IO_PROTOCOL interface */
|
2020-10-12 15:31:49 +01:00
|
|
|
#define USB_BLOCK /* USB block devices */
|
2015-09-10 17:22:03 +01:00
|
|
|
|
2013-03-22 13:42:16 +00:00
|
|
|
#define REBOOT_CMD /* Reboot command */
|
2023-05-22 14:13:36 +01:00
|
|
|
#define SHIM_CMD /* EFI shim command */
|
2015-10-19 20:01:19 +01:00
|
|
|
|
|
|
|
|
#if defined ( __i386__ ) || defined ( __x86_64__ )
|
|
|
|
|
#define IOAPI_X86
|
|
|
|
|
#define NAP_EFIX86
|
2023-02-17 16:56:11 +00:00
|
|
|
#define ENTROPY_RDRAND
|
2013-03-22 13:58:54 +00:00
|
|
|
#define CPUID_CMD /* x86 CPU feature detection command */
|
2020-07-07 13:49:17 +01:00
|
|
|
#define UNSAFE_STD /* Avoid setting direction flag */
|
2015-10-19 20:01:19 +01:00
|
|
|
#endif
|
|
|
|
|
|
2016-05-08 00:20:20 +01:00
|
|
|
#if defined ( __arm__ ) || defined ( __aarch64__ )
|
2015-10-19 20:01:19 +01:00
|
|
|
#define IOAPI_ARM
|
|
|
|
|
#define NAP_EFIARM
|
|
|
|
|
#endif
|
2013-03-22 13:42:16 +00:00
|
|
|
|
2022-02-10 12:47:25 +00:00
|
|
|
#if defined ( __aarch64__ )
|
|
|
|
|
#define IMAGE_GZIP /* GZIP image support */
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-10-12 01:55:55 +01:00
|
|
|
#endif /* CONFIG_DEFAULTS_EFI_H */
|