]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
usb: dwc3: pci: add support for Intel Broxton SOC
authorHeikki Krogerus <heikki.krogerus@linux.intel.com>
Wed, 21 Oct 2015 11:37:04 +0000 (14:37 +0300)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 28 Apr 2020 18:02:53 +0000 (19:02 +0100)
commit b4c580a43d520b7812c0fd064fbab929ce2f1da0 upstream.

PCI IDs for Broxton based platforms.

Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
[bwh: Backported to 3.16: adjust context, indentation]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/usb/dwc3/dwc3-pci.c

index 79c94dd093e3609dfefaecc7fbe4275f3ccddb30..cac1458772916d6f669c0a59c63af04aa0a325c1 100644 (file)
@@ -33,6 +33,8 @@
 #define PCI_DEVICE_ID_INTEL_BSW                0x22B7
 #define PCI_DEVICE_ID_INTEL_SPTLP      0x9d30
 #define PCI_DEVICE_ID_INTEL_SPTH       0xa130
+#define PCI_DEVICE_ID_INTEL_BXT                0x0aaa
+#define PCI_DEVICE_ID_INTEL_APL                0x5aaa
 
 struct dwc3_pci {
        struct device           *dev;
@@ -191,6 +193,8 @@ static const struct pci_device_id dwc3_pci_id_table[] = {
        { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MRFLD), },
        { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTLP), },
        { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTH), },
+       { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BXT), },
+       { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_APL), },
        {  }    /* Terminating Entry */
 };
 MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table);