Skip to content

Commit c096f5c

Browse files
matnymangregkh
authored andcommitted
xhci: Add missing CAS workaround for Intel Sunrise Point xHCI
commit ffe84e0 upstream. The workaround for missing CAS bit is also needed for xHC on Intel sunrisepoint PCH. For more details see: Intel 100/c230 series PCH specification update Doc #332692-006 Errata #8 Cc: <stable@vger.kernel.org> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent ec6ae63 commit c096f5c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

drivers/usb/host/xhci-pci.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
196196
}
197197
if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
198198
(pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI ||
199+
pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI ||
200+
pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI ||
199201
pdev->device == PCI_DEVICE_ID_INTEL_APL_XHCI ||
200202
pdev->device == PCI_DEVICE_ID_INTEL_DNV_XHCI))
201203
xhci->quirks |= XHCI_MISSING_CAS;

0 commit comments

Comments
 (0)