diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2010-08-13 09:18:58 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-08-13 09:18:58 +0000 |
commit | 6615ef3bfc3ff20643a31f01e40473e174460b46 (patch) | |
tree | 008063a7044a603d606cab68b05e20326b5ba47b /payloads/libpayload/Config.in | |
parent | 03e54de648db0c7059ff7732b8b74a44317ef1a9 (diff) | |
download | coreboot-6615ef3bfc3ff20643a31f01e40473e174460b46.tar.xz |
Add support for OHCI controllers and prelimiary support for xHCI (USB3) controllers.
Improve scanning for USB controllers.
Limitations:
- OHCI doesn't support interrupt transfers yet (ie. no keyboards)
- xHCI just does initialization and device attach/detach so far
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5691 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/Config.in')
-rw-r--r-- | payloads/libpayload/Config.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/payloads/libpayload/Config.in b/payloads/libpayload/Config.in index 0cd0438fe4..5ac35faeca 100644 --- a/payloads/libpayload/Config.in +++ b/payloads/libpayload/Config.in @@ -224,7 +224,6 @@ config USB_OHCI help Select this option if you are going to use USB 1.1 on an AMD based system. - NOTE: This option is not (fully) implemented yet config USB_EHCI bool "Support for USB EHCI controllers" @@ -233,6 +232,13 @@ config USB_EHCI Select this option if you want to use USB 2.0 NOTE: This option is not (fully) implemented yet +config USB_XHCI + bool "Support for USB xHCI controllers" + depends on USB + help + Select this option if you want to use USB 3.0 + NOTE: This option is not (fully) implemented yet + config USB_HID bool "Support for USB keyboards" depends on USB |