summaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2024-07-17 10:07:29 +0000
committerSubrata Banik <subratabanik@google.com>2024-07-19 03:55:01 +0000
commitd8f8574a59cf20599de4ace11ec35aa2c99ddb2b (patch)
treeb8e48e4c449afdf47413b35071087ae4fd2b28a3 /src/soc/intel
parent3c192de91f3de00217c81a9e034fe9439b6d35e7 (diff)
device/pci_ids: Add new Intel PTL device IDs for PCIe
This patch adds new PCIe Root Port PCI device IDs for Intel PTL-U and PTL-H. Additionally, updates the PCIe driver's `pci_device_ids` list to include these new IDs. Source: Intel PTL-EDS vol 1. Document Number 815002, Rev 0.51 Chapter 2 BUG=b:347669091 TEST=Able to build google/fatcat. Change-Id: I5913c6ac0a4766c14f23954be1e885d45f69d36a Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/83507 Reviewed-by: Eric Lai <ericllai@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/common/block/pcie/pcie.c30
1 files changed, 22 insertions, 8 deletions
diff --git a/src/soc/intel/common/block/pcie/pcie.c b/src/soc/intel/common/block/pcie/pcie.c
index 3c5e26a2e3..ddea3b667b 100644
--- a/src/soc/intel/common/block/pcie/pcie.c
+++ b/src/soc/intel/common/block/pcie/pcie.c
@@ -67,14 +67,28 @@ struct device_operations pcie_rp_ops = {
};
static const unsigned short pcie_device_ids[] = {
- PCI_DID_INTEL_PTL_PCIE_RP1,
- PCI_DID_INTEL_PTL_PCIE_RP2,
- PCI_DID_INTEL_PTL_PCIE_RP3,
- PCI_DID_INTEL_PTL_PCIE_RP4,
- PCI_DID_INTEL_PTL_PCIE_RP5,
- PCI_DID_INTEL_PTL_PCIE_RP6,
- PCI_DID_INTEL_PTL_PCIE_RP7,
- PCI_DID_INTEL_PTL_PCIE_RP8,
+ PCI_DID_INTEL_PTL_H_PCIE_RP1,
+ PCI_DID_INTEL_PTL_H_PCIE_RP2,
+ PCI_DID_INTEL_PTL_H_PCIE_RP3,
+ PCI_DID_INTEL_PTL_H_PCIE_RP4,
+ PCI_DID_INTEL_PTL_H_PCIE_RP5,
+ PCI_DID_INTEL_PTL_H_PCIE_RP6,
+ PCI_DID_INTEL_PTL_H_PCIE_RP7,
+ PCI_DID_INTEL_PTL_H_PCIE_RP8,
+ PCI_DID_INTEL_PTL_H_PCIE_RP9,
+ PCI_DID_INTEL_PTL_H_PCIE_RP10,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP1,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP2,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP3,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP4,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP5,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP6,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP7,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP8,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP9,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP10,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP11,
+ PCI_DID_INTEL_PTL_U_H_PCIE_RP12,
PCI_DID_INTEL_LNL_PCIE_RP1,
PCI_DID_INTEL_LNL_PCIE_RP2,
PCI_DID_INTEL_LNL_PCIE_RP3,