diff options
author | Subrata Banik <subratabanik@google.com> | 2024-07-17 10:15:50 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-07-19 03:55:07 +0000 |
commit | a3b1e400d3ef0420c74a2555f38171779c797c6a (patch) | |
tree | 3d1ef1c2e8ea4b623dec7d80639402d986173864 /src/soc/intel/common | |
parent | d8f8574a59cf20599de4ace11ec35aa2c99ddb2b (diff) |
device/pci_ids: Add new Intel PTL device IDs for PMC
This patch adds new PMC PCI device IDs for Intel PTL-U
and PTL-H.
Additionally, updates the PMC 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: Iae468fdace2d9cfd532957e4f3c55b89b96a52a0
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83508
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/pmc/pmc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/pmc/pmc.c b/src/soc/intel/common/block/pmc/pmc.c index bc70b1ac43..ca1c4b02bb 100644 --- a/src/soc/intel/common/block/pmc/pmc.c +++ b/src/soc/intel/common/block/pmc/pmc.c @@ -111,7 +111,8 @@ struct device_operations pmc_ops = { }; static const unsigned short pci_device_ids[] = { - PCI_DID_INTEL_PTL_PMC, + PCI_DID_INTEL_PTL_H_PMC, + PCI_DID_INTEL_PTL_U_H_PMC, PCI_DID_INTEL_LNL_PMC, PCI_DID_INTEL_MTL_SOC_PMC, PCI_DID_INTEL_MTL_IOE_M_PMC, |