Skip to content

Commit 099d2db

Browse files
qzhuo2aegl
authored andcommitted
EDAC/igen6: Add Intel Amston Lake SoCs support
Intel Amston Lake is a series of SoCs tailored for edge computing needs. The Amston Lake SoCs, equipped with IBECC(In-Band ECC) capability, share the same IBECC registers with Alder Lake-N SoCs. Add the Intel Amston Lake SoC compute die ID for EDAC support. 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-4-qiuxu.zhuo@intel.com
1 parent b804d7c commit 099d2db

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
@@ -244,6 +244,9 @@ static struct work_struct ecclog_work;
244244
/* Compute die IDs for Arizona Beach with IBECC */
245245
#define DID_AZB_SKU1 0x4676
246246

247+
/* Compute did IDs for Amston Lake with IBECC */
248+
#define DID_ASL_SKU1 0x464a
249+
247250
/* Compute die IDs for Raptor Lake-P with IBECC */
248251
#define DID_RPL_P_SKU1 0xa706
249252
#define DID_RPL_P_SKU2 0xa707
@@ -600,6 +603,7 @@ static const struct pci_device_id igen6_pci_tbl[] = {
600603
{ PCI_VDEVICE(INTEL, DID_ADL_N_SKU11), (kernel_ulong_t)&adl_n_cfg },
601604
{ PCI_VDEVICE(INTEL, DID_ADL_N_SKU12), (kernel_ulong_t)&adl_n_cfg },
602605
{ PCI_VDEVICE(INTEL, DID_AZB_SKU1), (kernel_ulong_t)&adl_n_cfg },
606+
{ PCI_VDEVICE(INTEL, DID_ASL_SKU1), (kernel_ulong_t)&adl_n_cfg },
603607
{ PCI_VDEVICE(INTEL, DID_RPL_P_SKU1), (kernel_ulong_t)&rpl_p_cfg },
604608
{ PCI_VDEVICE(INTEL, DID_RPL_P_SKU2), (kernel_ulong_t)&rpl_p_cfg },
605609
{ PCI_VDEVICE(INTEL, DID_RPL_P_SKU3), (kernel_ulong_t)&rpl_p_cfg },

0 commit comments

Comments
 (0)