From 62c6ae04cf4334ef2ab5ef04581394850f4ea714 Mon Sep 17 00:00:00 2001 From: Hector Martin Date: Sun, 27 Feb 2011 21:09:09 +0100 Subject: xhci: Initial xHCI implementation Based on the implementation from Hector Martin Hectors's implementation completely sidestepped the qemu usb system and used libusb directly for usb device pass through. So I've ripped out the libusb bits (or left them in disabled, as reference for further coding) and hooked up the qemu subsystem instead. That work is not complete yet though, partly due to limitations of the qemu usb subsystem. Nevertheless I think it is better to continue development in-tree, especially as the qemu usb bits need a bunch of improvements too for decent usb 3.0 support. Current state: - usb-storage emulation should work ok. - Devices which need constant polling (HID emulation like usb-tablet) are known to not work. - ISO xfers are not implemented yet. - superspeed ports are not implemented yet. - usb pass-through is completely untested so far. Signed-off-by: Gerd Hoffmann --- default-configs/pci.mak | 1 + 1 file changed, 1 insertion(+) (limited to 'default-configs/pci.mak') diff --git a/default-configs/pci.mak b/default-configs/pci.mak index 22bd350..9d3e1db 100644 --- a/default-configs/pci.mak +++ b/default-configs/pci.mak @@ -4,6 +4,7 @@ CONFIG_VIRTIO=y CONFIG_USB_UHCI=y CONFIG_USB_OHCI=y CONFIG_USB_EHCI=y +CONFIG_USB_XHCI=y CONFIG_NE2000_PCI=y CONFIG_EEPRO100_PCI=y CONFIG_PCNET_PCI=y -- cgit v1.1