diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index c882fdc73a..d17dca4f34 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4854,6 +4854,7 @@ #define PCI_DID_INTEL_ADL_DTT 0x461d #define PCI_DID_INTEL_MTL_DTT 0x7d03 #define PCI_DID_INTEL_RPL_DTT 0xa71d +#define PCI_DID_INTEL_PTL_DTT 0xb01d /* Intel CNVi WiFi/BT device IDs */ #define PCI_DID_INTEL_CML_LP_CNVI_WIFI 0x02f0 diff --git a/src/soc/intel/common/block/dtt/dtt.c b/src/soc/intel/common/block/dtt/dtt.c index 1d70335491..8b086e0fb9 100644 --- a/src/soc/intel/common/block/dtt/dtt.c +++ b/src/soc/intel/common/block/dtt/dtt.c @@ -8,6 +8,7 @@ #include static const unsigned short pci_device_ids[] = { + PCI_DID_INTEL_PTL_DTT, PCI_DID_INTEL_RPL_DTT, PCI_DID_INTEL_MTL_DTT, PCI_DID_INTEL_CML_DTT,