diff mbox

[SRU,Precise,Trusty,Vivid,Wily] xhci: Workaround to get Intel xHCI reset working more reliably

Message ID 20151123100225.GA17631@bark
State New
Headers show

Commit Message

Andy Whitcroft Nov. 23, 2015, 10:02 a.m. UTC
Commit in full:

commit a5964396190d0c40dd549c23848c282fffa5d1f2
Author: Rajmohan Mani <rajmohan.mani@intel.com>
Date:   Wed Nov 18 10:48:20 2015 +0200

    xhci: Workaround to get Intel xHCI reset working more reliably
    
    Existing Intel xHCI controllers require a delay of 1 mS,
    after setting the CMD_RESET bit in command register, before
    accessing any HC registers. This allows the HC to complete
    the reset operation and be ready for HC register access.
    Without this delay, the subsequent HC register access,
    may result in a system hang, very rarely.
    
    Verified CherryView / Braswell platforms go through over
    5000 warm reboot cycles (which was not possible without
    this patch), without any xHCI reset hang.
    
    Signed-off-by: Rajmohan Mani <rajmohan.mani@intel.com>
    Tested-by: Joe Lawrence <joe.lawrence@stratus.com>
    Cc: stable <stable@vger.kernel.org>
    Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Comments

Tim Gardner Nov. 23, 2015, 1:37 p.m. UTC | #1

Andy Whitcroft Nov. 23, 2015, 2:19 p.m. UTC | #2
On Mon, Nov 23, 2015 at 10:02:25AM +0000, Andy Whitcroft wrote:
> Commit in full:
> 
> commit a5964396190d0c40dd549c23848c282fffa5d1f2
> Author: Rajmohan Mani <rajmohan.mani@intel.com>
> Date:   Wed Nov 18 10:48:20 2015 +0200
> 
>     xhci: Workaround to get Intel xHCI reset working more reliably
>     
>     Existing Intel xHCI controllers require a delay of 1 mS,
>     after setting the CMD_RESET bit in command register, before
>     accessing any HC registers. This allows the HC to complete
>     the reset operation and be ready for HC register access.
>     Without this delay, the subsequent HC register access,
>     may result in a system hang, very rarely.
>     
>     Verified CherryView / Braswell platforms go through over
>     5000 warm reboot cycles (which was not possible without
>     this patch), without any xHCI reset hang.
>     
>     Signed-off-by: Rajmohan Mani <rajmohan.mani@intel.com>
>     Tested-by: Joe Lawrence <joe.lawrence@stratus.com>
>     Cc: stable <stable@vger.kernel.org>
>     Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
>     Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> 
> diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
> index 6e7dc6f..dfa44d3 100644
> --- a/drivers/usb/host/xhci.c
> +++ b/drivers/usb/host/xhci.c
> @@ -175,6 +175,16 @@ int xhci_reset(struct xhci_hcd *xhci)
>  	command |= CMD_RESET;
>  	writel(command, &xhci->op_regs->command);
>  
> +	/* Existing Intel xHCI controllers require a delay of 1 mS,
> +	 * after setting the CMD_RESET bit, and before accessing any
> +	 * HC registers. This allows the HC to complete the
> +	 * reset operation and be ready for HC register access.
> +	 * Without this delay, the subsequent HC register access,
> +	 * may result in a system hang very rarely.
> +	 */
> +	if (xhci->quirks & XHCI_INTEL_HOST)
> +		udelay(1000);
> +
>  	ret = xhci_handshake(&xhci->op_regs->command,
>  			CMD_RESET, 0, 10 * 1000 * 1000);
>  	if (ret)

This XHCI_INTEL_HOST is not available in Precise so this will not have any
effect there.  It does appear in Trusty and later, so it is probabally
appropriate there.  For Precise it would at least need the changes to
drivers/usb/host/xhci-pci.c and drivers/usb/host/xhci.h from:

  commit e3567d2c15a7a8e2f992a5f7c7683453ca406d82
  Author: Sarah Sharp <sarah.a.sharp@linux.intel.com>
  Date:   Wed May 16 13:36:24 2012 -0700

    xhci: Add Intel U1/U2 timeout policy.

So for Trusty and up, more thought is needed for Precise:

Acked-by: Andy Whitcroft <apw@canonical.com>

A final note that this does need to be applied to linux-lts-utopic in
Trusty as well.

-apw
diff mbox

Patch

diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
index 6e7dc6f..dfa44d3 100644
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -175,6 +175,16 @@  int xhci_reset(struct xhci_hcd *xhci)
 	command |= CMD_RESET;
 	writel(command, &xhci->op_regs->command);
 
+	/* Existing Intel xHCI controllers require a delay of 1 mS,
+	 * after setting the CMD_RESET bit, and before accessing any
+	 * HC registers. This allows the HC to complete the
+	 * reset operation and be ready for HC register access.
+	 * Without this delay, the subsequent HC register access,
+	 * may result in a system hang very rarely.
+	 */
+	if (xhci->quirks & XHCI_INTEL_HOST)
+		udelay(1000);
+
 	ret = xhci_handshake(&xhci->op_regs->command,
 			CMD_RESET, 0, 10 * 1000 * 1000);
 	if (ret)