summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/device/pci_ids.h3
-rw-r--r--src/soc/intel/common/block/pmc/pmc.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index c4fa842219..c7b875ce7b 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -3767,7 +3767,8 @@
#define PCI_DID_INTEL_RPP_P_PMC 0x51a1
#define PCI_DID_INTEL_RPP_S_PMC 0x7a21
#define PCI_DID_INTEL_LNL_PMC 0xa821
-#define PCI_DID_INTEL_PTL_PMC 0xe421
+#define PCI_DID_INTEL_PTL_H_PMC 0xe421
+#define PCI_DID_INTEL_PTL_U_H_PMC 0xe321
/* Intel I2C device Ids */
#define PCI_DID_INTEL_LPT_LP_I2C0 0x9c61
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,