summaryrefslogtreecommitdiffstats
path: root/src/config/usb.h
diff options
context:
space:
mode:
authorMichael Brown2015-09-10 18:22:03 +0200
committerMichael Brown2015-09-14 23:11:37 +0200
commit5df081d6c039924506c07c0c7a2cf7e2c699709f (patch)
treebe5be151ecfc2372a1267372215dc49f3ca67340 /src/config/usb.h
parent[usb] Allow for wildcard USB class IDs (diff)
downloadipxe-5df081d6c039924506c07c0c7a2cf7e2c699709f.tar.gz
ipxe-5df081d6c039924506c07c0c7a2cf7e2c699709f.tar.xz
ipxe-5df081d6c039924506c07c0c7a2cf7e2c699709f.zip
[efi] Expose unused USB devices via EFI_USB_IO_PROTOCOL
Allow the UEFI platform firmware to provide drivers for unrecognised devices, by exposing our own implementation of EFI_USB_IO_PROTOCOL. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/usb.h')
-rw-r--r--src/config/usb.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/config/usb.h b/src/config/usb.h
index 6d80e7f6..d2519d87 100644
--- a/src/config/usb.h
+++ b/src/config/usb.h
@@ -15,16 +15,22 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
* USB host controllers (all enabled by default)
*
*/
-//#undef USB_HCD_XHCI /* xHCI USB host controller */
-//#undef USB_HCD_EHCI /* EHCI USB host controller */
-//#undef USB_HCD_UHCI /* UHCI USB host controller */
-//#define USB_HCD_USBIO /* Very slow EFI USB host controller */
+//#undef USB_HCD_XHCI /* xHCI USB host controller */
+//#undef USB_HCD_EHCI /* EHCI USB host controller */
+//#undef USB_HCD_UHCI /* UHCI USB host controller */
+//#define USB_HCD_USBIO /* Very slow EFI USB host controller */
/*
* USB peripherals
*
*/
-//#undef USB_KEYBOARD /* USB keyboards */
+//#undef USB_KEYBOARD /* USB keyboards */
+
+/*
+ * USB external interfaces
+ *
+ */
+//#undef USB_EFI /* Provide EFI_USB_IO_PROTOCOL interface */
#include <config/named.h>
#include NAMED_CONFIG(usb.h)