summaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2024-07-17 10:27:56 +0000
committerSubrata Banik <subratabanik@google.com>2024-07-19 03:55:24 +0000
commit42c1f9c5fa24da7a932c0c1e66db3d683c99077b (patch)
tree2c2c6c4f48413bba5227c0ed9e113a75dfcdb87d /src/soc/intel/common/block
parent661382960fc16e65ca6d8cfbe206da795b004e0d (diff)
device/pci_ids: Add new Intel PTL device IDs for Fast-SPI and GSPIx
This patch adds new Fast-SPI and GSPIx PCI device IDs for Intel PTL-U and PTL-H. Additionally, updates the SPI 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: I5c7c0be6f219c93d4520494857d31ce1cf939f36 Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/83511 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/common/block')
-rw-r--r--src/soc/intel/common/block/spi/spi.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/soc/intel/common/block/spi/spi.c b/src/soc/intel/common/block/spi/spi.c
index 0e8aa261ce..74f9e314cf 100644
--- a/src/soc/intel/common/block/spi/spi.c
+++ b/src/soc/intel/common/block/spi/spi.c
@@ -123,10 +123,14 @@ struct device_operations spi_dev_ops = {
};
static const unsigned short pci_device_ids[] = {
- PCI_DID_INTEL_PTL_HWSEQ_SPI,
- PCI_DID_INTEL_PTL_SPI0,
- PCI_DID_INTEL_PTL_SPI1,
- PCI_DID_INTEL_PTL_SPI2,
+ PCI_DID_INTEL_PTL_H_HWSEQ_SPI,
+ PCI_DID_INTEL_PTL_H_SPI0,
+ PCI_DID_INTEL_PTL_H_SPI1,
+ PCI_DID_INTEL_PTL_H_SPI2,
+ PCI_DID_INTEL_PTL_U_H_HWSEQ_SPI,
+ PCI_DID_INTEL_PTL_U_H_SPI0,
+ PCI_DID_INTEL_PTL_U_H_SPI1,
+ PCI_DID_INTEL_PTL_U_H_SPI2,
PCI_DID_INTEL_LNL_GSPI0,
PCI_DID_INTEL_LNL_GSPI1,
PCI_DID_INTEL_LNL_GSPI2,