summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/device/pci_ids.h3
-rw-r--r--src/soc/intel/common/block/smbus/smbus.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 ce27e5385b..4674f7ba1f 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -4454,7 +4454,8 @@
#define PCI_DID_INTEL_RPP_P_SMBUS 0x51a3
#define PCI_DID_INTEL_RPP_S_SMBUS 0x7a23
#define PCI_DID_INTEL_LNL_SMBUS 0xa822
-#define PCI_DID_INTEL_PTL_SMBUS 0xe422
+#define PCI_DID_INTEL_PTL_H_SMBUS 0xe422
+#define PCI_DID_INTEL_PTL_U_H_SMBUS 0xe322
/* Intel EHCI device IDs */
#define PCI_DID_INTEL_LPT_H_EHCI_1 0x8c26
diff --git a/src/soc/intel/common/block/smbus/smbus.c b/src/soc/intel/common/block/smbus/smbus.c
index 7f87a523e8..37e0cd2305 100644
--- a/src/soc/intel/common/block/smbus/smbus.c
+++ b/src/soc/intel/common/block/smbus/smbus.c
@@ -49,7 +49,8 @@ struct device_operations smbus_ops = {
};
static const unsigned short pci_device_ids[] = {
- PCI_DID_INTEL_PTL_SMBUS,
+ PCI_DID_INTEL_PTL_H_SMBUS,
+ PCI_DID_INTEL_PTL_U_H_SMBUS,
PCI_DID_INTEL_LNL_SMBUS,
PCI_DID_INTEL_MTL_SMBUS,
PCI_DID_INTEL_RPP_P_SMBUS,