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)