All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] usb: host: xhci-rcar: Avoid long wait in xhci_reset()
@ 2016-04-22  9:07 Yoshihiro Shimoda
  2016-04-22  9:36 ` Felipe Balbi
  0 siblings, 1 reply; 8+ messages in thread
From: Yoshihiro Shimoda @ 2016-04-22  9:07 UTC (permalink / raw)
  To: mathias.nyman, gregkh
  Cc: linux-usb, linux-renesas-soc, stable, Yoshihiro Shimoda

The firmware of R-Car USB 3.0 host controller will control the reset.
So, if the xhci driver doesn't do firmware downloading (e.g. kernel
configuration is CONFIG_USB_XHCI_PLATFORM=y and CONFIG_USB_XHCI_RCAR
is not set), the reset of USB 3.0 host controller doesn't work
correctly. Then, the host controller will cause long wait in
xhci_reset() because the CMD_RESET bit of op_regs->command is not
cleared for 10 seconds.

So, this patch modifies the xhci_rcar_init_quirk() in xhci-rcar.h
to exit the probe function immediately.

Fixes: 4ac8918f3a7 (usb: host: xhci-plat: add support for the R-Car H2 and M2 xHCI controllers)
Cc: <stable@vger.kernel.org> # v3.17+
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
 Changes from v1:
  - Revise the commit log.
    (http://www.spinics.net/lists/stable/msg130007.html)

 drivers/usb/host/xhci-rcar.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/host/xhci-rcar.h b/drivers/usb/host/xhci-rcar.h
index 2941a25..2afed68 100644
--- a/drivers/usb/host/xhci-rcar.h
+++ b/drivers/usb/host/xhci-rcar.h
@@ -24,7 +24,11 @@ static inline void xhci_rcar_start(struct usb_hcd *hcd)
 
 static inline int xhci_rcar_init_quirk(struct usb_hcd *hcd)
 {
-	return 0;
+	/*
+	 * To avoid wait and timeout in xhci_reset() if CONFIG_XHCI_RCAR is
+	 * disabled, this function fails.
+	 */
+	return -ENODEV;
 }
 #endif
 #endif /* _XHCI_RCAR_H */
-- 
1.9.1


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

end of thread, other threads:[~2016-04-25  8:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-22  9:07 [PATCH v2] usb: host: xhci-rcar: Avoid long wait in xhci_reset() Yoshihiro Shimoda
2016-04-22  9:36 ` Felipe Balbi
2016-04-22 13:29   ` Rob Herring
2016-04-25  2:10     ` Yoshihiro Shimoda
2016-04-25  6:34       ` Felipe Balbi
2016-04-25  6:57       ` Geert Uytterhoeven
2016-04-25  8:36         ` Yoshihiro Shimoda
2016-04-25  1:50   ` Yoshihiro Shimoda

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.