diff options
author | Jeremy Soller <jeremy@system76.com> | 2021-08-10 14:06:51 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-08-19 13:51:59 +0000 |
commit | 191a8d7d2e40b9c90d81cf8e5ea3fad414afeb29 (patch) | |
tree | 02ba387688abd6b1ad7c313f3b35d904b3093a62 /src/soc/intel/common/block/usb4 | |
parent | d7df383342ee8f36783e1c8bf70c9a65225dd168 (diff) |
soc/intel/common: Add TGL-H PCI IDs
Add TGL-H PCI IDs from the Processor and PCH EDS docs.
Reference:
- Intel doc 615985
- Intel doc 575683
Change-Id: I751d0d59aff9e93e2aa92546db78775bd1e6ef22
Signed-off-by: Jeremy Soller <jeremy@system76.com>
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56900
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/soc/intel/common/block/usb4')
-rw-r--r-- | src/soc/intel/common/block/usb4/usb4.c | 2 | ||||
-rw-r--r-- | src/soc/intel/common/block/usb4/xhci.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/usb4/usb4.c b/src/soc/intel/common/block/usb4/usb4.c index 923ec5588e..8b1609d140 100644 --- a/src/soc/intel/common/block/usb4/usb4.c +++ b/src/soc/intel/common/block/usb4/usb4.c @@ -62,6 +62,8 @@ static void tbt_dma_fill_ssdt(const struct device *dev) static const unsigned short pci_device_ids[] = { PCI_DEVICE_ID_INTEL_TGL_TBT_DMA0, PCI_DEVICE_ID_INTEL_TGL_TBT_DMA1, + PCI_DEVICE_ID_INTEL_TGL_H_TBT_DMA0, + PCI_DEVICE_ID_INTEL_TGL_H_TBT_DMA1, PCI_DEVICE_ID_INTEL_ADL_TBT_DMA0, PCI_DEVICE_ID_INTEL_ADL_TBT_DMA1, 0 diff --git a/src/soc/intel/common/block/usb4/xhci.c b/src/soc/intel/common/block/usb4/xhci.c index d4fb3e2432..d0be8e5f9f 100644 --- a/src/soc/intel/common/block/usb4/xhci.c +++ b/src/soc/intel/common/block/usb4/xhci.c @@ -27,6 +27,7 @@ static struct device_operations usb4_xhci_ops = { static const unsigned short pci_device_ids[] = { PCI_DEVICE_ID_INTEL_TGP_TCSS_XHCI, + PCI_DEVICE_ID_INTEL_TGP_H_TCSS_XHCI, PCI_DEVICE_ID_INTEL_ADP_TCSS_XHCI, 0 }; |