From 1c51c3e57ff869bd532b5cec6073a2985486b5f3 Mon Sep 17 00:00:00 2001 From: Bora Guvendik Date: Thu, 21 Nov 2024 14:58:49 -0800 Subject: [PATCH] device/pci_ids: Add Pantherlake-H GT2 (DID2) This patch adds new DID2 PCI device ID for Intel PTL. Reference: Bspec 72574 BUG=b:380362184 TEST=Able to build google/fatcat. Change-Id: Ib4209236ca48f449c22a830c2e44ea8b5909774b Signed-off-by: Bora Guvendik Reviewed-on: https://review.coreboot.org/c/coreboot/+/85525 Tested-by: build bot (Jenkins) Reviewed-by: Subrata Banik --- src/include/device/pci_ids.h | 1 + src/soc/intel/common/block/graphics/graphics.c | 1 + src/soc/intel/pantherlake/bootblock/report_platform.c | 1 + 3 files changed, 3 insertions(+) diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 638689144d..60ed807f31 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4306,6 +4306,7 @@ #define PCI_DID_INTEL_PTL_U_GT2_1 0xb090 #define PCI_DID_INTEL_PTL_H_GT2_1 0xb080 #define PCI_DID_INTEL_PTL_H_GT2_2 0xb0a0 +#define PCI_DID_INTEL_PTL_H_GT2_3 0xb0b0 /* Intel Northbridge Ids */ #define PCI_DID_INTEL_APL_NB 0x5af0 diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c index 50d3c518aa..144e8c30d6 100644 --- a/src/soc/intel/common/block/graphics/graphics.c +++ b/src/soc/intel/common/block/graphics/graphics.c @@ -345,6 +345,7 @@ static const unsigned short pci_device_ids[] = { PCI_DID_INTEL_PTL_U_GT2_1, PCI_DID_INTEL_PTL_H_GT2_1, PCI_DID_INTEL_PTL_H_GT2_2, + PCI_DID_INTEL_PTL_H_GT2_3, PCI_DID_INTEL_LNL_M_GT2, PCI_DID_INTEL_RPL_U_GT1, PCI_DID_INTEL_RPL_U_GT2, diff --git a/src/soc/intel/pantherlake/bootblock/report_platform.c b/src/soc/intel/pantherlake/bootblock/report_platform.c index 55afc49219..aa8b03077a 100644 --- a/src/soc/intel/pantherlake/bootblock/report_platform.c +++ b/src/soc/intel/pantherlake/bootblock/report_platform.c @@ -112,6 +112,7 @@ static struct { { PCI_DID_INTEL_PTL_U_GT2_1, "Pantherlake-U GT2" }, { PCI_DID_INTEL_PTL_H_GT2_1, "Pantherlake-H GT2" }, { PCI_DID_INTEL_PTL_H_GT2_2, "Pantherlake-H GT2" }, + { PCI_DID_INTEL_PTL_H_GT2_3, "Pantherlake-H GT2" }, }; static inline uint8_t get_dev_revision(pci_devfn_t dev)