diff options
author | Subrata Banik <subratabanik@google.com> | 2024-07-17 10:45:22 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-07-19 03:55:39 +0000 |
commit | af8caf9e67efd3bc9780eb7bee56f6ed7e6be1e1 (patch) | |
tree | e19f566de118031c4c2514dcb787a7ac0b3adc98 /src/include | |
parent | f234cf4b21d813f143bc26533e92d2b9cd2c9dd6 (diff) |
device/pci_ids: Add new Intel PTL device IDs for P2SBx
This patch adds new P2SBx PCI device IDs for Intel PTL-U
and PTL-H.
Additionally, updates the P2SBx 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: Ie1c36bc1c014bb1e219afe0cafb6c9941f253b0c
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83514
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Eric Lai <ericllai@google.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device/pci_ids.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 5fa478fcb0..6d3911fc47 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4530,8 +4530,10 @@ #define PCI_DID_INTEL_RPP_S_P2SB 0x7a20 #define PCI_DID_INTEL_LNL_P2SB 0xa820 #define PCI_DID_INTEL_LNL_P2SB2 0xa84c -#define PCI_DID_INTEL_PTL_P2SB 0xe420 -#define PCI_DID_INTEL_PTL_P2SB2 0xe44c +#define PCI_DID_INTEL_PTL_H_P2SB 0xe420 +#define PCI_DID_INTEL_PTL_H_P2SB2 0xe44c +#define PCI_DID_INTEL_PTL_U_H_P2SB 0xe320 +#define PCI_DID_INTEL_PTL_U_H_P2SB2 0xe34c /* Intel SRAM device Ids */ #define PCI_DID_INTEL_APL_SRAM 0x5aec |