aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/usb4
diff options
context:
space:
mode:
authorWonkyu Kim <wonkyu.kim@intel.com>2020-11-13 15:16:32 -0800
committerFelix Held <felix-coreboot@felixheld.de>2022-03-09 22:28:33 +0000
commit9f4010753d54447574d7a4e01a11f8b4f810830f (patch)
tree24cd4950dbe82f9d2d1dfd543a14b4c63d3802bf /src/soc/intel/common/block/usb4
parent697fa74027402e8eb01c69ee6407599f6cacca75 (diff)
soc/intel/common: Include Meteor Lake device IDs
Reference: chapter2 in Meteor Lake EDS vol1 (640228) Signed-off-by: Wonkyu Kim <wonkyu.kim@intel.com> Change-Id: Ie71abb70b88db0acec8a320c3e2c20c54bbb4a8a Reviewed-on: https://review.coreboot.org/c/coreboot/+/62581 Reviewed-by: Subrata Banik <subratabanik@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common/block/usb4')
-rw-r--r--src/soc/intel/common/block/usb4/usb4.c3
-rw-r--r--src/soc/intel/common/block/usb4/xhci.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/usb4/usb4.c b/src/soc/intel/common/block/usb4/usb4.c
index 996e7f52ee..6924bb70df 100644
--- a/src/soc/intel/common/block/usb4/usb4.c
+++ b/src/soc/intel/common/block/usb4/usb4.c
@@ -53,6 +53,9 @@ static void tbt_dma_fill_ssdt(const struct device *dev)
#endif
static const unsigned short pci_device_ids[] = {
+ PCI_DID_INTEL_MTL_M_TBT_DMA0,
+ PCI_DID_INTEL_MTL_P_TBT_DMA0,
+ PCI_DID_INTEL_MTL_P_TBT_DMA1,
PCI_DID_INTEL_TGL_TBT_DMA0,
PCI_DID_INTEL_TGL_TBT_DMA1,
PCI_DID_INTEL_TGL_H_TBT_DMA0,
diff --git a/src/soc/intel/common/block/usb4/xhci.c b/src/soc/intel/common/block/usb4/xhci.c
index ba6b83f1ac..64e5601cde 100644
--- a/src/soc/intel/common/block/usb4/xhci.c
+++ b/src/soc/intel/common/block/usb4/xhci.c
@@ -26,6 +26,8 @@ static struct device_operations usb4_xhci_ops = {
};
static const unsigned short pci_device_ids[] = {
+ PCI_DID_INTEL_MTL_M_TCSS_XHCI,
+ PCI_DID_INTEL_MTL_P_TCSS_XHCI,
PCI_DID_INTEL_TGP_TCSS_XHCI,
PCI_DID_INTEL_TGP_H_TCSS_XHCI,
PCI_DID_INTEL_ADP_TCSS_XHCI,