|
@@ -166,7 +166,7 @@ int xhci_reset(struct xhci_hcd *xhci)
|
|
|
xhci_writel(xhci, command, &xhci->op_regs->command);
|
|
|
|
|
|
ret = handshake(xhci, &xhci->op_regs->command,
|
|
|
- CMD_RESET, 0, 250 * 1000);
|
|
|
+ CMD_RESET, 0, 10 * 1000 * 1000);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
|
|
@@ -175,7 +175,8 @@ int xhci_reset(struct xhci_hcd *xhci)
|
|
|
* xHCI cannot write to any doorbells or operational registers other
|
|
|
* than status until the "Controller Not Ready" flag is cleared.
|
|
|
*/
|
|
|
- ret = handshake(xhci, &xhci->op_regs->status, STS_CNR, 0, 250 * 1000);
|
|
|
+ ret = handshake(xhci, &xhci->op_regs->status,
|
|
|
+ STS_CNR, 0, 10 * 1000 * 1000);
|
|
|
|
|
|
for (i = 0; i < 2; ++i) {
|
|
|
xhci->bus_state[i].port_c_suspend = 0;
|