diff options
author | Nico Huber <nico.huber@secunet.com> | 2012-05-23 09:21:54 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-06-07 23:14:18 +0200 |
commit | 1ab6075320f5dc10afd934b100c8116a88ac12fc (patch) | |
tree | 688f9e3017a913aa7cb9c14faf46373dcc938a4a /payloads/libpayload/include/usb/usb.h | |
parent | d5d024f3e5f0eb88e459b3a449337c3cd2a49104 (diff) |
libpayload: Add support for split transactions in EHCI
With split transactions, the EHCI host controller can handle full- and
low-speed devices on hubs in high-speed mode. This adds support for split
transactions for control and bulk transfers.
Change-Id: I30fa1ce25757f33b1e6ed34207949c9255f05d49
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: http://review.coreboot.org/1081
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/libpayload/include/usb/usb.h')
-rw-r--r-- | payloads/libpayload/include/usb/usb.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/payloads/libpayload/include/usb/usb.h b/payloads/libpayload/include/usb/usb.h index 05ced4907a..ee9c50bb85 100644 --- a/payloads/libpayload/include/usb/usb.h +++ b/payloads/libpayload/include/usb/usb.h @@ -223,8 +223,6 @@ void usb_hub_init (usbdev_t *dev); void usb_hid_init (usbdev_t *dev); void usb_msc_init (usbdev_t *dev); -int set_address (hci_t *controller, int speed); - u8 *get_descriptor (usbdev_t *dev, unsigned char bmRequestType, int descType, int descIdx, int langID); |