|
@@ -37,6 +37,7 @@
|
|
/* Device for a quirk */
|
|
/* Device for a quirk */
|
|
#define PCI_VENDOR_ID_FRESCO_LOGIC 0x1b73
|
|
#define PCI_VENDOR_ID_FRESCO_LOGIC 0x1b73
|
|
#define PCI_DEVICE_ID_FRESCO_LOGIC_PDK 0x1000
|
|
#define PCI_DEVICE_ID_FRESCO_LOGIC_PDK 0x1000
|
|
|
|
+#define PCI_DEVICE_ID_FRESCO_LOGIC_FL1009 0x1009
|
|
#define PCI_DEVICE_ID_FRESCO_LOGIC_FL1400 0x1400
|
|
#define PCI_DEVICE_ID_FRESCO_LOGIC_FL1400 0x1400
|
|
|
|
|
|
#define PCI_VENDOR_ID_ETRON 0x1b6f
|
|
#define PCI_VENDOR_ID_ETRON 0x1b6f
|
|
@@ -114,6 +115,10 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
|
|
xhci->quirks |= XHCI_TRUST_TX_LENGTH;
|
|
xhci->quirks |= XHCI_TRUST_TX_LENGTH;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (pdev->vendor == PCI_VENDOR_ID_FRESCO_LOGIC &&
|
|
|
|
+ pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_FL1009)
|
|
|
|
+ xhci->quirks |= XHCI_BROKEN_STREAMS;
|
|
|
|
+
|
|
if (pdev->vendor == PCI_VENDOR_ID_NEC)
|
|
if (pdev->vendor == PCI_VENDOR_ID_NEC)
|
|
xhci->quirks |= XHCI_NEC_HOST;
|
|
xhci->quirks |= XHCI_NEC_HOST;
|
|
|
|
|