diff options
author | Subrata Banik <subratabanik@google.com> | 2024-07-17 10:48:30 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-07-19 03:55:47 +0000 |
commit | 92ce7861837c9d901235a5538750bd52046787f9 (patch) | |
tree | 620138c5c22694bc0a3f6eafb7143b614e8473cc /src/soc | |
parent | af8caf9e67efd3bc9780eb7bee56f6ed7e6be1e1 (diff) |
device/pci_ids: Add new Intel PTL device IDs for SRAM
This patch adds new SRAM PCI device IDs for Intel PTL-U
and PTL-H.
Additionally, updates the SRAM 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: Ib6d62dad59965258dab453533dface9c359de586
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83515
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')
-rw-r--r-- | src/soc/intel/common/block/sram/sram.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/sram/sram.c b/src/soc/intel/common/block/sram/sram.c index 649a6c6cb0..e63f8059eb 100644 --- a/src/soc/intel/common/block/sram/sram.c +++ b/src/soc/intel/common/block/sram/sram.c @@ -33,7 +33,8 @@ static const struct device_operations device_ops = { }; static const unsigned short pci_device_ids[] = { - PCI_DID_INTEL_PTL_SRAM, + PCI_DID_INTEL_PTL_H_SRAM, + PCI_DID_INTEL_PTL_U_H_SRAM, PCI_DID_INTEL_LNL_SRAM, PCI_DID_INTEL_MTL_SOC_SRAM, PCI_DID_INTEL_MTL_IOE_M_SRAM, |