MdeModulePkg-UsbBusDxe: Add work around for slower USB hubs/devices
Increase the value of USB_GENERAL_DEVICE_REQUEST_TIMEOUT from 50 milliseconds to 100 milliseconds. This provides a work around for slower USB hubs and devices. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9330 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e3d7cceb99
commit
d7576cf9b6
|
@ -109,10 +109,13 @@ typedef enum {
|
||||||
USB_SET_ROOT_PORT_ENABLE_STALL = 20 * USB_BUS_1_MILLISECOND,
|
USB_SET_ROOT_PORT_ENABLE_STALL = 20 * USB_BUS_1_MILLISECOND,
|
||||||
|
|
||||||
//
|
//
|
||||||
// Send general device request timeout, refers to
|
// Send general device request timeout.
|
||||||
// specification[USB20-11.24.1]
|
|
||||||
//
|
//
|
||||||
USB_GENERAL_DEVICE_REQUEST_TIMEOUT = 50,
|
// The USB Specification 2.0, section 11.24.1 recommends a value of
|
||||||
|
// 50 milliseconds. We use a value of 100 milliseconds to work
|
||||||
|
// around slower hubs and devices.
|
||||||
|
//
|
||||||
|
USB_GENERAL_DEVICE_REQUEST_TIMEOUT = 100,
|
||||||
|
|
||||||
//
|
//
|
||||||
// Send clear feature request timeout, set by experience
|
// Send clear feature request timeout, set by experience
|
||||||
|
|
Loading…
Reference in New Issue