|
@@ -29,6 +29,9 @@
|
|
|
#define PCI_VENDOR_ID_FRESCO_LOGIC 0x1b73
|
|
|
#define PCI_DEVICE_ID_FRESCO_LOGIC_PDK 0x1000
|
|
|
|
|
|
+#define PCI_VENDOR_ID_ETRON 0x1b6f
|
|
|
+#define PCI_DEVICE_ID_ASROCK_P67 0x7023
|
|
|
+
|
|
|
static const char hcd_name[] = "xhci_hcd";
|
|
|
|
|
|
/* called after powerup, by probe or system-pm "wakeup" */
|
|
@@ -134,6 +137,11 @@ static int xhci_pci_setup(struct usb_hcd *hcd)
|
|
|
xhci->quirks |= XHCI_EP_LIMIT_QUIRK;
|
|
|
xhci->limit_active_eps = 64;
|
|
|
}
|
|
|
+ if (pdev->vendor == PCI_VENDOR_ID_ETRON &&
|
|
|
+ pdev->device == PCI_DEVICE_ID_ASROCK_P67) {
|
|
|
+ xhci->quirks |= XHCI_RESET_ON_RESUME;
|
|
|
+ xhci_dbg(xhci, "QUIRK: Resetting on resume\n");
|
|
|
+ }
|
|
|
|
|
|
/* Make sure the HC is halted. */
|
|
|
retval = xhci_halt(xhci);
|