From 6dba29b18f5642a981ece54baef6d3433d26188e Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sat, 9 May 2015 23:14:34 +0100 Subject: [uhci] Add support for UHCI host controllers Signed-off-by: Michael Brown --- src/config/config_usb.c | 3 +++ src/config/defaults/pcbios.h | 1 + src/config/usb.h | 1 + 3 files changed, 5 insertions(+) (limited to 'src/config') diff --git a/src/config/config_usb.c b/src/config/config_usb.c index a62d695ed..9c9305d78 100644 --- a/src/config/config_usb.c +++ b/src/config/config_usb.c @@ -40,3 +40,6 @@ REQUIRE_OBJECT ( xhci ); #ifdef USB_HCD_EHCI REQUIRE_OBJECT ( ehci ); #endif +#ifdef USB_HCD_UHCI +REQUIRE_OBJECT ( uhci ); +#endif diff --git a/src/config/defaults/pcbios.h b/src/config/defaults/pcbios.h index 2fbb0e930..dfd3e2f86 100644 --- a/src/config/defaults/pcbios.h +++ b/src/config/defaults/pcbios.h @@ -38,6 +38,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #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 REBOOT_CMD /* Reboot command */ #define CPUID_CMD /* x86 CPU feature detection command */ diff --git a/src/config/usb.h b/src/config/usb.h index 372c0418b..0181c50ef 100644 --- a/src/config/usb.h +++ b/src/config/usb.h @@ -17,6 +17,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); */ //#undef USB_HCD_XHCI /* xHCI USB host controller */ //#undef USB_HCD_EHCI /* EHCI USB host controller */ +//#undef USB_HCD_UHCI /* UHCI USB host controller */ #include #include NAMED_CONFIG(usb.h) -- cgit v1.2.3-55-g7522