Skip to content

Commit 88150cd

Browse files
qzhuo2aegl
authored andcommitted
EDAC/igen6: Add Intel Arrow Lake-U/H SoCs support
Arrow Lake-U/H SoCs share same IBECC registers with Meteor Lake-P SoCs. Add Arrow Lake-U/H SoC compute die IDs 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/20240614030354.69180-1-qiuxu.zhuo@intel.com
1 parent 123b158 commit 88150cd

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

drivers/edac/igen6_edac.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,11 @@ static struct work_struct ecclog_work;
258258
#define DID_MTL_P_SKU2 0x7d02
259259
#define DID_MTL_P_SKU3 0x7d14
260260

261+
/* Compute die IDs for Arrow Lake-UH with IBECC */
262+
#define DID_ARL_UH_SKU1 0x7d06
263+
#define DID_ARL_UH_SKU2 0x7d20
264+
#define DID_ARL_UH_SKU3 0x7d30
265+
261266
static int get_mchbar(struct pci_dev *pdev, u64 *mchbar)
262267
{
263268
union {
@@ -597,6 +602,9 @@ static const struct pci_device_id igen6_pci_tbl[] = {
597602
{ PCI_VDEVICE(INTEL, DID_MTL_P_SKU1), (kernel_ulong_t)&mtl_p_cfg },
598603
{ PCI_VDEVICE(INTEL, DID_MTL_P_SKU2), (kernel_ulong_t)&mtl_p_cfg },
599604
{ PCI_VDEVICE(INTEL, DID_MTL_P_SKU3), (kernel_ulong_t)&mtl_p_cfg },
605+
{ PCI_VDEVICE(INTEL, DID_ARL_UH_SKU1), (kernel_ulong_t)&mtl_p_cfg },
606+
{ PCI_VDEVICE(INTEL, DID_ARL_UH_SKU2), (kernel_ulong_t)&mtl_p_cfg },
607+
{ PCI_VDEVICE(INTEL, DID_ARL_UH_SKU3), (kernel_ulong_t)&mtl_p_cfg },
600608
{ },
601609
};
602610
MODULE_DEVICE_TABLE(pci, igen6_pci_tbl);

0 commit comments

Comments
 (0)