diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 6b53bb06b5..e1c9730edd 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4112,13 +4112,9 @@ #define PCI_DEVICE_ID_INTEL_ICL_SRAM 0x34ef #define PCI_DEVICE_ID_INTEL_CMP_SRAM 0x02ef #define PCI_DEVICE_ID_INTEL_CMP_H_SRAM 0x06ef -#define PCI_DEVICE_ID_INTEL_TGL_SRAM 0xa0ef #define PCI_DEVICE_ID_INTEL_TGL_H_SRAM 0x43ef #define PCI_DEVICE_ID_INTEL_MCC_SRAM 0x4b7f #define PCI_DEVICE_ID_INTEL_JSP_SRAM 0x4def -#define PCI_DEVICE_ID_INTEL_ADP_P_SRAM 0x7a6f -#define PCI_DEVICE_ID_INTEL_ADP_S_SRAM 0x7aa7 -#define PCI_DEVICE_ID_INTEL_ADP_M_SRAM 0x54ef /* Intel AUDIO device Ids */ #define PCI_DEVICE_ID_INTEL_LPT_H_AUDIO 0x8c20 @@ -4334,6 +4330,14 @@ #define PCI_DEVICE_ID_INTEL_ADL_N_CNVI_WIFI_2 0x54f2 #define PCI_DEVICE_ID_INTEL_ADL_N_CNVI_WIFI_3 0x54f3 +/* Intel Crashlog */ +#define PCI_DEVICE_ID_INTEL_TGL_CPU_CRASHLOG_SRAM 0x9a0d +#define PCI_DEVICE_ID_INTEL_ADL_CPU_CRASHLOG_SRAM 0x467d +#define PCI_DEVICE_ID_INTEL_ADP_S_PMC_CRASHLOG_SRAM 0x7aa7 +#define PCI_DEVICE_ID_INTEL_ADP_P_PMC_CRASHLOG_SRAM 0x51ef +#define PCI_DEVICE_ID_INTEL_ADP_N_PMC_CRASHLOG_SRAM 0x54ef +#define PCI_DEVICE_ID_INTEL_TGP_PMC_CRASHLOG_SRAM 0xa0ef + #define PCI_VENDOR_ID_COMPUTONE 0x8e0e #define PCI_DEVICE_ID_COMPUTONE_IP2EX 0x0291 #define PCI_DEVICE_ID_COMPUTONE_PG 0x0302 diff --git a/src/soc/intel/common/block/sram/sram.c b/src/soc/intel/common/block/sram/sram.c index 2166eb455c..1badb83daf 100644 --- a/src/soc/intel/common/block/sram/sram.c +++ b/src/soc/intel/common/block/sram/sram.c @@ -38,13 +38,13 @@ static const unsigned short pci_device_ids[] = { PCI_DEVICE_ID_INTEL_ICL_SRAM, PCI_DEVICE_ID_INTEL_CMP_SRAM, PCI_DEVICE_ID_INTEL_CMP_H_SRAM, - PCI_DEVICE_ID_INTEL_TGL_SRAM, + PCI_DEVICE_ID_INTEL_TGP_PMC_CRASHLOG_SRAM, PCI_DEVICE_ID_INTEL_TGL_H_SRAM, PCI_DEVICE_ID_INTEL_MCC_SRAM, PCI_DEVICE_ID_INTEL_JSP_SRAM, - PCI_DEVICE_ID_INTEL_ADP_P_SRAM, - PCI_DEVICE_ID_INTEL_ADP_S_SRAM, - PCI_DEVICE_ID_INTEL_ADP_M_SRAM, + PCI_DEVICE_ID_INTEL_ADP_S_PMC_CRASHLOG_SRAM, + PCI_DEVICE_ID_INTEL_ADP_P_PMC_CRASHLOG_SRAM, + PCI_DEVICE_ID_INTEL_ADP_N_PMC_CRASHLOG_SRAM, 0, };