Harrie Paijmans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/87244?usp=email )
Change subject: device/pci_ids: Add Raptor Lake P root port ID ......................................................................
device/pci_ids: Add Raptor Lake P root port ID
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 hpaijmans@eltan.com --- M src/include/device/pci_ids.h M src/soc/intel/common/block/pcie/pcie.c 2 files changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/44/87244/1
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 7d695b2..d56c6f8 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 ddea3b6..6a1225d 100644 --- a/src/soc/intel/common/block/pcie/pcie.c +++ b/src/soc/intel/common/block/pcie/pcie.c @@ -100,6 +100,7 @@ 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,