From 2f28ec300e81f23e5300ca9316a0c390037e3a29 Mon Sep 17 00:00:00 2001 From: Harrie Paijmans Date: Wed, 9 Apr 2025 15:18:45 +0200 Subject: [PATCH] device/pci_ids: Add Raptor Lake P root port ID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Raptor Lake P specific PCIe root port ID. Based on intel document 640552 rev 2.81. BUG=NA TEST=Customer platform with Raptorlake-P Change-Id: Ifa7c131b5ae47294c055b9e68dad2764607c032b Signed-off-by: Harrie Paijmans Reviewed-on: https://review.coreboot.org/c/coreboot/+/87244 Reviewed-by: Erik van den Bogaert Reviewed-by: Frans Hendriks Tested-by: build bot (Jenkins) Reviewed-by: Jérémy Compostella --- src/include/device/pci_ids.h | 1 + src/soc/intel/common/block/pcie/pcie.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 6a45fbb4a8..fdcddb2ffe 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -3607,6 +3607,7 @@ #define PCI_DID_INTEL_RPL_P_PCIE_RP1 0xa74d #define PCI_DID_INTEL_RPL_P_PCIE_RP2 0xa70d #define PCI_DID_INTEL_RPL_P_PCIE_RP3 0xa72d +#define PCI_DID_INTEL_RPL_P_PCIE_RP4 0xa73d #define PCI_DID_INTEL_LNL_PCIE_RP1 0xa838 #define PCI_DID_INTEL_LNL_PCIE_RP2 0xa839 diff --git a/src/soc/intel/common/block/pcie/pcie.c b/src/soc/intel/common/block/pcie/pcie.c index ddea3b667b..6a1225d62b 100644 --- a/src/soc/intel/common/block/pcie/pcie.c +++ b/src/soc/intel/common/block/pcie/pcie.c @@ -100,6 +100,7 @@ static const unsigned short pcie_device_ids[] = { PCI_DID_INTEL_RPL_P_PCIE_RP1, PCI_DID_INTEL_RPL_P_PCIE_RP2, PCI_DID_INTEL_RPL_P_PCIE_RP3, + PCI_DID_INTEL_RPL_P_PCIE_RP4, PCI_DID_INTEL_MTL_SOC_PCIE_RP1, PCI_DID_INTEL_MTL_SOC_PCIE_RP2, PCI_DID_INTEL_MTL_SOC_PCIE_RP3,