summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/device/pci_ids.h3
-rw-r--r--src/soc/intel/common/block/sram/sram.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 6d3911fc47..dac7508eba 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -4549,7 +4549,8 @@
#define PCI_DID_INTEL_MTL_IOE_M_SRAM 0x7ebf
#define PCI_DID_INTEL_MTL_IOE_P_SRAM 0x7ecf
#define PCI_DID_INTEL_LNL_SRAM 0xa87f
-#define PCI_DID_INTEL_PTL_SRAM 0xe47f
+#define PCI_DID_INTEL_PTL_H_SRAM 0xe47f
+#define PCI_DID_INTEL_PTL_U_H_SRAM 0xe37f
/* Intel AUDIO device Ids */
#define PCI_DID_INTEL_LPT_H_AUDIO 0x8c20
diff --git a/src/soc/intel/common/block/sram/sram.c b/src/soc/intel/common/block/sram/sram.c
index 649a6c6cb0..e63f8059eb 100644
--- a/src/soc/intel/common/block/sram/sram.c
+++ b/src/soc/intel/common/block/sram/sram.c
@@ -33,7 +33,8 @@ static const struct device_operations device_ops = {
};
static const unsigned short pci_device_ids[] = {
- PCI_DID_INTEL_PTL_SRAM,
+ PCI_DID_INTEL_PTL_H_SRAM,
+ PCI_DID_INTEL_PTL_U_H_SRAM,
PCI_DID_INTEL_LNL_SRAM,
PCI_DID_INTEL_MTL_SOC_SRAM,
PCI_DID_INTEL_MTL_IOE_M_SRAM,