Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/83786?usp=email )
(
3 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: device/pci_ids: Add new Intel PTL device IDs for Tracehub ......................................................................
device/pci_ids: Add new Intel PTL device IDs for Tracehub
This patch adds new North Peak PCI device IDs for Intel PTL-U and PTL-H.
Additionally, updates the tracehub driver's `pci_device_ids` list to include these new IDs.
Source: Intel PTL-EDS vol 1. Document Number 815002, Rev 0.51 Chapter 2
BUG=b:347669091 TEST=Boot to OS using PTL Silicon, verify if above 4GB IMR region is reserved.
Signed-off-by: Bora Guvendik bora.guvendik@intel.com Change-Id: Ifa1a0a57c504e06d686e7e0826547251b456cc8b Reviewed-on: https://review.coreboot.org/c/coreboot/+/83786 Reviewed-by: Anil Kumar K anil.kumar.k@intel.com Reviewed-by: Subrata Banik subratabanik@google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/include/device/pci_ids.h M src/soc/intel/common/block/tracehub/tracehub.c 2 files changed, 4 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Anil Kumar K: Looks good to me, but someone else must approve Subrata Banik: Looks good to me, approved
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index b721bb4..481bf20 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4902,6 +4902,8 @@ /* Intel Trace Hub */ #define PCI_DID_INTEL_MTL_TRACEHUB 0x7e24 #define PCI_DID_INTEL_RPL_TRACEHUB 0xa76f +#define PCI_DID_INTEL_PTL_H_TRACEHUB 0xe424 +#define PCI_DID_INTEL_PTL_U_H_TRACEHUB 0xe324
/* Intel Ethernet Controller device Ids */ #define PCI_DID_INTEL_EHL_GBE_HOST 0x4B32 diff --git a/src/soc/intel/common/block/tracehub/tracehub.c b/src/soc/intel/common/block/tracehub/tracehub.c index 480e9ef..ba56c4c 100644 --- a/src/soc/intel/common/block/tracehub/tracehub.c +++ b/src/soc/intel/common/block/tracehub/tracehub.c @@ -42,6 +42,8 @@ };
static const unsigned short pci_device_ids[] = { + PCI_DID_INTEL_PTL_H_TRACEHUB, + PCI_DID_INTEL_PTL_U_H_TRACEHUB, PCI_DID_INTEL_MTL_TRACEHUB, PCI_DID_INTEL_RPL_TRACEHUB, 0