diff options
-rw-r--r-- | src/include/device/pci_ids.h | 3 | ||||
-rw-r--r-- | src/soc/intel/common/block/xdci/xdci.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 445658f63b..e18a2fbfe4 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4704,7 +4704,8 @@ #define PCI_DID_INTEL_MTL_XDCI 0x7e7e #define PCI_DID_INTEL_MTL_M_TCSS_XDCI 0x7eb1 #define PCI_DID_INTEL_MTL_P_TCSS_XDCI 0x7ec1 -#define PCI_DID_INTEL_PTL_TCSS_XDCI 0xe432 +#define PCI_DID_INTEL_PTL_H_XDCI 0xe47e +#define PCI_DID_INTEL_PTL_U_H_XDCI 0xe37e /* Intel SD device Ids */ #define PCI_DID_INTEL_LPT_LP_SD 0x9c35 diff --git a/src/soc/intel/common/block/xdci/xdci.c b/src/soc/intel/common/block/xdci/xdci.c index 7ee2dbb592..86625da968 100644 --- a/src/soc/intel/common/block/xdci/xdci.c +++ b/src/soc/intel/common/block/xdci/xdci.c @@ -28,6 +28,8 @@ struct device_operations usb_xdci_ops = { }; static const unsigned short pci_device_ids[] = { + PCI_DID_INTEL_PTL_H_XDCI, + PCI_DID_INTEL_PTL_U_H_XDCI, PCI_DID_INTEL_MTL_XDCI, PCI_DID_INTEL_APL_XDCI, PCI_DID_INTEL_CNL_LP_XDCI, |