ce6f574a9f
Move all USB configuration from config/defaults/<platform>.h to the top-level config/usb.h, using indented conditional blocks to clarify which options are supported and enabled on each platform. Signed-off-by: Michael Brown <mcb30@ipxe.org>
39 lines
668 B
C
39 lines
668 B
C
#ifndef CONFIG_DEFAULTS_PCBIOS_H
|
|
#define CONFIG_DEFAULTS_PCBIOS_H
|
|
|
|
/** @file
|
|
*
|
|
* Configuration defaults for PCBIOS
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|
|
|
#define UACCESS_OFFSET
|
|
#define IOAPI_X86
|
|
#define PCIAPI_PCBIOS
|
|
#define DMAAPI_FLAT
|
|
#define TIMER_PCBIOS
|
|
#define CONSOLE_PCBIOS
|
|
#define NAP_PCBIOS
|
|
#define UMALLOC_UHEAP
|
|
#define MEMMAP_INT15
|
|
#define SMBIOS_PCBIOS
|
|
#define SANBOOT_PCBIOS
|
|
#define ENTROPY_RTC
|
|
#define ENTROPY_RDRAND
|
|
#define TIME_RTC
|
|
#define REBOOT_PCBIOS
|
|
#define ACPI_RSDP
|
|
#define MPAPI_PCBIOS
|
|
#define SERIAL_SPCR
|
|
#define FDT_NULL
|
|
|
|
#ifdef __x86_64__
|
|
#define IOMAP_PAGES
|
|
#else
|
|
#define IOMAP_VIRT
|
|
#endif
|
|
|
|
#endif /* CONFIG_DEFAULTS_PCBIOS_H */
|