linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: xhci: Increase timeout for HC halt
@ 2021-05-11  0:29 Maximilian Luz
  2021-05-11  6:26 ` Greg Kroah-Hartman
  2021-05-11  7:19 ` Mathias Nyman
  0 siblings, 2 replies; 5+ messages in thread
From: Maximilian Luz @ 2021-05-11  0:29 UTC (permalink / raw)
  To: Mathias Nyman; +Cc: Maximilian Luz, Greg Kroah-Hartman, linux-usb, linux-kernel

On some devices (specifically the SC8180x based Surface Pro X with
QCOM04A6) HC halt / xhci_halt() times out during boot. Manually binding
the xhci-hcd driver at some point later does not exhibit this behavior.
To work around this, double XHCI_MAX_HALT_USEC, which also resolves this
issue.

Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com>
---
 drivers/usb/host/xhci-ext-caps.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/host/xhci-ext-caps.h b/drivers/usb/host/xhci-ext-caps.h
index fa59b242cd51..fb591e41cd50 100644
--- a/drivers/usb/host/xhci-ext-caps.h
+++ b/drivers/usb/host/xhci-ext-caps.h
@@ -7,8 +7,8 @@
  * Author: Sarah Sharp
  * Some code borrowed from the Linux EHCI driver.
  */
-/* Up to 16 ms to halt an HC */
-#define XHCI_MAX_HALT_USEC	(16*1000)
+/* Up to 32 ms to halt an HC */
+#define XHCI_MAX_HALT_USEC	(32 * 1000)
 /* HC not running - set to 1 when run/stop bit is cleared. */
 #define XHCI_STS_HALT		(1<<0)
 
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-05-11  8:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-11  0:29 [PATCH] usb: xhci: Increase timeout for HC halt Maximilian Luz
2021-05-11  6:26 ` Greg Kroah-Hartman
2021-05-11  8:40   ` Maximilian Luz
2021-05-11  7:19 ` Mathias Nyman
2021-05-11  8:42   ` Maximilian Luz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).