diff options
author | Subrata Banik <subratabanik@google.com> | 2024-07-16 13:57:07 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-07-19 03:54:38 +0000 |
commit | 9106a5a346fe6946bcf26b6427f7ace48ed48c44 (patch) | |
tree | f5cb651ae52e328d0b9a93fce6d1a3ea71c9dea2 /src/soc | |
parent | c0540a3fc2d79328708f34204dbf02df443d9fb8 (diff) |
device/pci_ids: Add new Intel PTL device IDs for DID0
This patch adds new DID0 PCI device IDs for Intel PTL-U and PTL-H.
Additionally, updates the System Agent driver's `systemagent_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: Ie4d77eb489e16d18b996fdda3216e1275083d7e7
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83490
Reviewed-by: Eric Lai <ericllai@google.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/common/block/systemagent/systemagent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c index b2ae3cd0cd..48dbbf1508 100644 --- a/src/soc/intel/common/block/systemagent/systemagent.c +++ b/src/soc/intel/common/block/systemagent/systemagent.c @@ -413,7 +413,9 @@ struct device_operations systemagent_ops = { }; static const unsigned short systemagent_ids[] = { - PCI_DID_INTEL_PTL_ID, + PCI_DID_INTEL_PTL_U_ID_1, + PCI_DID_INTEL_PTL_H_ID_1, + PCI_DID_INTEL_PTL_H_ID_2, PCI_DID_INTEL_LNL_M_ID, PCI_DID_INTEL_LNL_M_ID_1, PCI_DID_INTEL_MTL_M_ID, |