Skip to content

Commit 0be9f1a

Browse files
lilili-kernelaegl
authored andcommitted
EDAC/igen6: Add Intel Panther Lake-H SoCs support
Panther Lake-H SoCs share the same IBECC registers with Meteor Lake-P SoCs. Add Panther Lake-H SoC compute die IDs for EDAC support. Signed-off-by: Lili Li <[email protected]> Signed-off-by: Qiuxu Zhuo <[email protected]> Signed-off-by: Tony Luck <[email protected]> Reviewed-by: Qiuxu Zhuo <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 8e929cb commit 0be9f1a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

drivers/edac/igen6_edac.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,11 @@ static struct work_struct ecclog_work;
263263
#define DID_ARL_UH_SKU2 0x7d20
264264
#define DID_ARL_UH_SKU3 0x7d30
265265

266+
/* Compute die IDs for Panther Lake-H with IBECC */
267+
#define DID_PTL_H_SKU1 0xb000
268+
#define DID_PTL_H_SKU2 0xb001
269+
#define DID_PTL_H_SKU3 0xb002
270+
266271
static int get_mchbar(struct pci_dev *pdev, u64 *mchbar)
267272
{
268273
union {
@@ -605,6 +610,9 @@ static const struct pci_device_id igen6_pci_tbl[] = {
605610
{ PCI_VDEVICE(INTEL, DID_ARL_UH_SKU1), (kernel_ulong_t)&mtl_p_cfg },
606611
{ PCI_VDEVICE(INTEL, DID_ARL_UH_SKU2), (kernel_ulong_t)&mtl_p_cfg },
607612
{ PCI_VDEVICE(INTEL, DID_ARL_UH_SKU3), (kernel_ulong_t)&mtl_p_cfg },
613+
{ PCI_VDEVICE(INTEL, DID_PTL_H_SKU1), (kernel_ulong_t)&mtl_p_cfg },
614+
{ PCI_VDEVICE(INTEL, DID_PTL_H_SKU2), (kernel_ulong_t)&mtl_p_cfg },
615+
{ PCI_VDEVICE(INTEL, DID_PTL_H_SKU3), (kernel_ulong_t)&mtl_p_cfg },
608616
{ },
609617
};
610618
MODULE_DEVICE_TABLE(pci, igen6_pci_tbl);

0 commit comments

Comments
 (0)