Skip to content

Commit ffe84e0

Browse files
matnymangregkh
authored andcommitted
xhci: Add missing CAS workaround for Intel Sunrise Point xHCI
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 torvalds#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 f2924d4 commit ffe84e0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/usb/host/xhci-pci.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,8 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
185185
}
186186
if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
187187
(pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI ||
188+
pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI ||
189+
pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI ||
188190
pdev->device == PCI_DEVICE_ID_INTEL_APL_XHCI ||
189191
pdev->device == PCI_DEVICE_ID_INTEL_DNV_XHCI))
190192
xhci->quirks |= XHCI_MISSING_CAS;

0 commit comments

Comments
 (0)