Attention is currently required from: Tim Wawrzynczak, Patrick Rudolph. Sridhar Siricilla has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/55256 )
Change subject: soc/intel/intel: Add Alder Lake device ID ......................................................................
soc/intel/intel: Add Alder Lake device ID
Add Alder Lake specific Graphics device ID. As per latest document number: 641765, this ID got an update.
Signed-off-by: Sridhar Siricilla sridhar.siricilla@intel.com Change-Id: I6f36256505a3e07c6197079ea2013991e841401b --- M src/include/device/pci_ids.h M src/soc/intel/alderlake/bootblock/report_platform.c 2 files changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/56/55256/1
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index eeb23ae..8276a3e 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -3816,6 +3816,7 @@ #define PCI_DEVICE_ID_INTEL_ADL_P_GT2_1 0x46b0 #define PCI_DEVICE_ID_INTEL_ADL_P_GT2_2 0x46a1 #define PCI_DEVICE_ID_INTEL_ADL_P_GT2_3 0x46a3 +#define PCI_DEVICE_ID_INTEL_ADL_P_GT2_4 0x46a8 #define PCI_DEVICE_ID_INTEL_ADL_S_GT1 0x4680 #define PCI_DEVICE_ID_INTEL_ADL_M_GT1 0x46c0
diff --git a/src/soc/intel/alderlake/bootblock/report_platform.c b/src/soc/intel/alderlake/bootblock/report_platform.c index 15391ab..c5f9254 100644 --- a/src/soc/intel/alderlake/bootblock/report_platform.c +++ b/src/soc/intel/alderlake/bootblock/report_platform.c @@ -103,6 +103,7 @@ { PCI_DEVICE_ID_INTEL_ADL_P_GT2_1, "Alderlake P GT2" }, { PCI_DEVICE_ID_INTEL_ADL_P_GT2_2, "Alderlake P GT2" }, { PCI_DEVICE_ID_INTEL_ADL_P_GT2_3, "Alderlake P GT2" }, + { PCI_DEVICE_ID_INTEL_ADL_P_GT2_4, "Alderlake P GT2" }, { PCI_DEVICE_ID_INTEL_ADL_M_GT1, "Alderlake M GT1" }, };