diff options
author | Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | 2016-05-06 02:20:11 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-05-09 07:08:46 -0400 |
commit | f879fc32aa0c96fbac261b3d857a1239d554ad01 (patch) | |
tree | 4e1da355eda6084b60872e5f9b74f29083ac94dd | |
parent | 9f3b3f6a30cbf9a9664fc7ca3510f1df00098f19 (diff) |
usb: host: xhci-rcar: Avoid long wait in xhci_reset()
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 Kconfig to enable both CONFIG_USB_XHCI_PLATFORM
and CONFIG_USB_XHCI_RCAR.
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>
Reviewed-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 3050b18b2447..e9d4dde3e9b3 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
@@ -35,6 +35,7 @@ config USB_XHCI_PCI | |||
35 | 35 | ||
36 | config USB_XHCI_PLATFORM | 36 | config USB_XHCI_PLATFORM |
37 | tristate "Generic xHCI driver for a platform device" | 37 | tristate "Generic xHCI driver for a platform device" |
38 | select USB_XHCI_RCAR if ARCH_RENESAS | ||
38 | ---help--- | 39 | ---help--- |
39 | Adds an xHCI host driver for a generic platform device, which | 40 | Adds an xHCI host driver for a generic platform device, which |
40 | provides a memory space and an irq. | 41 | provides a memory space and an irq. |
@@ -63,7 +64,7 @@ config USB_XHCI_MVEBU | |||
63 | 64 | ||
64 | config USB_XHCI_RCAR | 65 | config USB_XHCI_RCAR |
65 | tristate "xHCI support for Renesas R-Car SoCs" | 66 | tristate "xHCI support for Renesas R-Car SoCs" |
66 | select USB_XHCI_PLATFORM | 67 | depends on USB_XHCI_PLATFORM |
67 | depends on ARCH_RENESAS || COMPILE_TEST | 68 | depends on ARCH_RENESAS || COMPILE_TEST |
68 | ---help--- | 69 | ---help--- |
69 | Say 'Y' to enable the support for the xHCI host controller | 70 | Say 'Y' to enable the support for the xHCI host controller |