diff options
author | Nico Huber <nico.huber@secunet.com> | 2013-06-13 14:37:15 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-06-13 22:21:20 +0200 |
commit | 9029265cf5d835f2b87fe7e25124706b59df9394 (patch) | |
tree | 0e447c79811b5d526827eb5c414e4e946a2dd424 /payloads/libpayload/Config.in | |
parent | 5736fab4beb17ea1a04088d1cf16121c57ccf744 (diff) |
libpayload: Fill gaps in the xHCI driver
Well, it turned out to be more as some gaps ;)
but we finally have xHCI running. It's well tested against a QM77 Ivy
Bridge board.
We have no SuperSpeed support (yet). On Ivy Bridge, SuperSpeed is not
advertised and USB 3 devices will just work at HighSpeed.
There are still some bit fields in xhci_private.h, so this might need
little more work to run on ARM.
Change-Id: I7a2cb3f226d24573659142565db38b13acdc218c
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/3452
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/libpayload/Config.in')
-rw-r--r-- | payloads/libpayload/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/libpayload/Config.in b/payloads/libpayload/Config.in index 0a29bd5025..6610f8f785 100644 --- a/payloads/libpayload/Config.in +++ b/payloads/libpayload/Config.in @@ -380,8 +380,8 @@ config USB_MSC config USB_GEN_HUB bool - default n if (!USB_HUB) - default y if (USB_HUB) + default n if (!USB_HUB && !USB_XHCI) + default y if (USB_HUB || USB_XHCI) endmenu |