Skip to content

Commit 180f091

Browse files
qzhuo2aegl
authored andcommitted
EDAC/ie31200: Add two Intel SoCs for EDAC support
Add two compute die IDs for Raptor Lake-S and Alder Lake-S for EDAC support. Note that because Alder Lake-S shares the same memory controller registers as Raptor Lake-S, it can reuse the configuration data of Raptor Lake-S for EDAC support. Signed-off-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com> Signed-off-by: Tony Luck <tony.luck@intel.com> Tested-by: James Jernigan <jameswestonjernigan@gmail.com> Link: https://lore.kernel.org/r/20250422134450.1880648-1-qiuxu.zhuo@intel.com
1 parent 5904dc5 commit 180f091

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/edac/ie31200_edac.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@
8989
#define PCI_DEVICE_ID_INTEL_IE31200_RPL_S_1 0xa703
9090
#define PCI_DEVICE_ID_INTEL_IE31200_RPL_S_2 0x4640
9191
#define PCI_DEVICE_ID_INTEL_IE31200_RPL_S_3 0x4630
92+
#define PCI_DEVICE_ID_INTEL_IE31200_RPL_S_4 0xa700
93+
94+
/* Alder Lake-S */
95+
#define PCI_DEVICE_ID_INTEL_IE31200_ADL_S_1 0x4660
9296

9397
#define IE31200_RANKS_PER_CHANNEL 8
9498
#define IE31200_DIMMS_PER_CHANNEL 2
@@ -734,6 +738,8 @@ static const struct pci_device_id ie31200_pci_tbl[] = {
734738
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IE31200_RPL_S_1), (kernel_ulong_t)&rpl_s_cfg},
735739
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IE31200_RPL_S_2), (kernel_ulong_t)&rpl_s_cfg},
736740
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IE31200_RPL_S_3), (kernel_ulong_t)&rpl_s_cfg},
741+
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IE31200_RPL_S_4), (kernel_ulong_t)&rpl_s_cfg},
742+
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IE31200_ADL_S_1), (kernel_ulong_t)&rpl_s_cfg},
737743
{ 0, } /* 0 terminated list. */
738744
};
739745
MODULE_DEVICE_TABLE(pci, ie31200_pci_tbl);

0 commit comments

Comments
 (0)