Skip to content

Commit b804d7c

Browse files
qzhuo2aegl
authored andcommitted
EDAC/igen6: Add Intel Arizona Beach SoCs support
The Intel Arizona Beach SoC series is oriented toward network computing. Some types of these SoCs are equipped with IBECC(In-Band ECC) and share the same IBECC registers with Alder Lake-N SoCs. Add a die ID for Arizona Beach SoC for EDAC support. [Tony: s/Arizona Lake/Arizona Beach/ in commit message] Signed-off-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com> Signed-off-by: Tony Luck <tony.luck@intel.com> Link: https://lore.kernel.org/r/20250408132455.489046-3-qiuxu.zhuo@intel.com
1 parent 20e190b commit b804d7c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/edac/igen6_edac.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,9 @@ static struct work_struct ecclog_work;
241241
#define DID_ADL_N_SKU11 0x467c
242242
#define DID_ADL_N_SKU12 0x4632
243243

244+
/* Compute die IDs for Arizona Beach with IBECC */
245+
#define DID_AZB_SKU1 0x4676
246+
244247
/* Compute die IDs for Raptor Lake-P with IBECC */
245248
#define DID_RPL_P_SKU1 0xa706
246249
#define DID_RPL_P_SKU2 0xa707
@@ -596,6 +599,7 @@ static const struct pci_device_id igen6_pci_tbl[] = {
596599
{ PCI_VDEVICE(INTEL, DID_ADL_N_SKU10), (kernel_ulong_t)&adl_n_cfg },
597600
{ PCI_VDEVICE(INTEL, DID_ADL_N_SKU11), (kernel_ulong_t)&adl_n_cfg },
598601
{ PCI_VDEVICE(INTEL, DID_ADL_N_SKU12), (kernel_ulong_t)&adl_n_cfg },
602+
{ PCI_VDEVICE(INTEL, DID_AZB_SKU1), (kernel_ulong_t)&adl_n_cfg },
599603
{ PCI_VDEVICE(INTEL, DID_RPL_P_SKU1), (kernel_ulong_t)&rpl_p_cfg },
600604
{ PCI_VDEVICE(INTEL, DID_RPL_P_SKU2), (kernel_ulong_t)&rpl_p_cfg },
601605
{ PCI_VDEVICE(INTEL, DID_RPL_P_SKU3), (kernel_ulong_t)&rpl_p_cfg },

0 commit comments

Comments
 (0)