Skip to content

Commit 0a380be

Browse files
shimodaygregkh
authored andcommitted
usb: host: xhci: add a new quirk XHCI_NO_64BIT_SUPPORT
On some xHCI controllers (e.g. R-Car SoCs), the AC64 bit (bit 0) of HCCPARAMS1 is set to 1. However, the xHCs don't support 64-bit address memory pointers actually. So, in this case, this driver should call dma_set_coherent_mask(dev, DMA_BIT_MASK(32)) in xhci_gen_setup(). Otherwise, the xHCI controller will be died after a usb device is connected if it runs on above 4GB physical memory environment. So, this patch adds a new quirk XHCI_NO_64BIT_SUPPORT to resolve such an issue. Cc: <stable@vger.kernel.org> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Reviewed-by: Felipe Balbi <felipe.balbi@linux.intel.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 671ffdf commit 0a380be

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

drivers/usb/host/xhci.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4948,6 +4948,16 @@ int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
49484948
return retval;
49494949
xhci_dbg(xhci, "Reset complete\n");
49504950

4951+
/*
4952+
* On some xHCI controllers (e.g. R-Car SoCs), the AC64 bit (bit 0)
4953+
* of HCCPARAMS1 is set to 1. However, the xHCs don't support 64-bit
4954+
* address memory pointers actually. So, this driver clears the AC64
4955+
* bit of xhci->hcc_params to call dma_set_coherent_mask(dev,
4956+
* DMA_BIT_MASK(32)) in this xhci_gen_setup().
4957+
*/
4958+
if (xhci->quirks & XHCI_NO_64BIT_SUPPORT)
4959+
xhci->hcc_params &= ~BIT(0);
4960+
49514961
/* Set dma_mask and coherent_dma_mask to 64-bits,
49524962
* if xHC supports 64-bit addressing */
49534963
if (HCC_64BIT_ADDR(xhci->hcc_params) &&

drivers/usb/host/xhci.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1641,6 +1641,7 @@ struct xhci_hcd {
16411641
#define XHCI_PME_STUCK_QUIRK (1 << 20)
16421642
#define XHCI_MTK_HOST (1 << 21)
16431643
#define XHCI_SSIC_PORT_UNUSED (1 << 22)
1644+
#define XHCI_NO_64BIT_SUPPORT (1 << 23)
16441645
unsigned int num_active_eps;
16451646
unsigned int limit_active_eps;
16461647
/* There are two roothubs to keep track of bus suspend info for */

0 commit comments

Comments
 (0)