Subrata Banik has uploaded this change for review.

View Change

device/pci_ids: Add new Intel PTL device IDs for CSE0

This patch adds new CSE0 PCI device IDs for Intel PTL-U
and PTL-H.

Additionally, updates the CSE0 driver's `pci_device_ids` list to
include these new IDs.

Finally, dropped unused CSE1-3 PCI 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: I5656aeb8c5439c8361aeb3a3d759df1216d84f8b
Signed-off-by: Subrata Banik <subratabanik@google.com>
---
M src/include/device/pci_ids.h
M src/soc/intel/common/block/cse/cse.c
2 files changed, 4 insertions(+), 5 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/17/83517/1
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index 7ad2f2d..8fbea4c 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -4679,10 +4679,8 @@
#define PCI_DID_INTEL_RPP_S_CSE3 0x7a6d
#define PCI_DID_INTEL_MTL_CSE0 0x7e70
#define PCI_DID_INTEL_LNL_CSE0 0xa870
-#define PCI_DID_INTEL_PTL_CSE0 0xe470
-#define PCI_DID_INTEL_PTL_CSE1 0xe471
-#define PCI_DID_INTEL_PTL_CSE2 0xe474
-#define PCI_DID_INTEL_PTL_CSE3 0xe475
+#define PCI_DID_INTEL_PTL_H_CSE0 0xe470
+#define PCI_DID_INTEL_PTL_U_H_CSE0 0xe370

/* Intel XDCI device Ids */
#define PCI_DID_INTEL_APL_XDCI 0x5aaa
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c
index ed07f69..6389044 100644
--- a/src/soc/intel/common/block/cse/cse.c
+++ b/src/soc/intel/common/block/cse/cse.c
@@ -1479,7 +1479,8 @@
};

static const unsigned short pci_device_ids[] = {
- PCI_DID_INTEL_PTL_CSE0,
+ PCI_DID_INTEL_PTL_H_CSE0,
+ PCI_DID_INTEL_PTL_U_H_CSE0,
PCI_DID_INTEL_LNL_CSE0,
PCI_DID_INTEL_MTL_CSE0,
PCI_DID_INTEL_APL_CSE0,

To view, visit change 83517. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I5656aeb8c5439c8361aeb3a3d759df1216d84f8b
Gerrit-Change-Number: 83517
Gerrit-PatchSet: 1
Gerrit-Owner: Subrata Banik <subratabanik@google.com>