Subrata Banik has uploaded this change for review.

View Change

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

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

Additionally, updates the ISH 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: I280cfdb50e8d453e957cb4bccff3a7ee2fb3bd10
Signed-off-by: Subrata Banik <subratabanik@google.com>
---
M src/drivers/intel/ish/ish.c
M src/include/device/pci_ids.h
2 files changed, 4 insertions(+), 2 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/05/83505/1
diff --git a/src/drivers/intel/ish/ish.c b/src/drivers/intel/ish/ish.c
index 1ab6a0a..d83af46 100644
--- a/src/drivers/intel/ish/ish.c
+++ b/src/drivers/intel/ish/ish.c
@@ -82,7 +82,8 @@
};

static const unsigned short pci_device_ids[] = {
- PCI_DID_INTEL_PTL_ISHB,
+ PCI_DID_INTEL_PTL_H_ISHB,
+ PCI_DID_INTEL_PTL_U_H_ISHB,
PCI_DID_INTEL_LNL_ISHB,
PCI_DID_INTEL_MTL_ISHB,
PCI_DID_INTEL_CNL_ISHB,
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index 3dd3ec9..8eff32f 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -2185,7 +2185,8 @@
#define PCI_DID_INTEL_ADL_N_ISHB 0x54fc
#define PCI_DID_INTEL_ADL_P_ISHB 0x51fc
#define PCI_DID_INTEL_LNL_ISHB 0xa845
-#define PCI_DID_INTEL_PTL_ISHB 0xe445
+#define PCI_DID_INTEL_PTL_H_ISHB 0xe445
+#define PCI_DID_INTEL_PTL_U_H_ISHB 0xe345

/* Intel 82371FB (PIIX) */
#define PCI_DID_INTEL_82371FB_ISA 0x122e

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

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