Commit 84a2b61b6eb94036093531cdabc448dddfbae45a

Authored by Heikki Krogerus
Committed by Felipe Balbi
1 parent b44be2462d

usb: dwc3: pci: add support for Intel Sunrise Point PCH

Add PCI IDs for Intel Sunrise Point PCH.

Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>

Showing 1 changed file with 4 additions and 0 deletions Side-by-side Diff

drivers/usb/dwc3/dwc3-pci.c
... ... @@ -33,6 +33,8 @@
33 33 #define PCI_DEVICE_ID_INTEL_BYT 0x0f37
34 34 #define PCI_DEVICE_ID_INTEL_MRFLD 0x119e
35 35 #define PCI_DEVICE_ID_INTEL_BSW 0x22B7
  36 +#define PCI_DEVICE_ID_INTEL_SPTLP 0x9d30
  37 +#define PCI_DEVICE_ID_INTEL_SPTH 0xa130
36 38  
37 39 struct dwc3_pci {
38 40 struct device *dev;
... ... @@ -219,6 +221,8 @@
219 221 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BSW), },
220 222 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT), },
221 223 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MRFLD), },
  224 + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTLP), },
  225 + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTH), },
222 226 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_NL_USB), },
223 227 { } /* Terminating Entry */
224 228 };