Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

platform/x86/intel/vsec: Add support for Wildcat Lake

Add Wildcat Lake PMT telemetry support.

Signed-off-by: Xi Pardee <xi.pardee@linux.intel.com>
Link: https://patch.msgid.link/20251105215020.1984036-1-xi.pardee@linux.intel.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

authored by

Xi Pardee and committed by
Ilpo Järvinen
bc977e5d df92fad9

+2
+2
drivers/platform/x86/intel/vsec.c
··· 765 765 #define PCI_DEVICE_ID_INTEL_VSEC_TGL 0x9a0d 766 766 #define PCI_DEVICE_ID_INTEL_VSEC_LNL_M 0x647d 767 767 #define PCI_DEVICE_ID_INTEL_VSEC_PTL 0xb07d 768 + #define PCI_DEVICE_ID_INTEL_VSEC_WCL 0xfd7d 768 769 static const struct pci_device_id intel_vsec_pci_ids[] = { 769 770 { PCI_DEVICE_DATA(INTEL, VSEC_ADL, &tgl_info) }, 770 771 { PCI_DEVICE_DATA(INTEL, VSEC_DG1, &dg1_info) }, ··· 777 776 { PCI_DEVICE_DATA(INTEL, VSEC_TGL, &tgl_info) }, 778 777 { PCI_DEVICE_DATA(INTEL, VSEC_LNL_M, &lnl_info) }, 779 778 { PCI_DEVICE_DATA(INTEL, VSEC_PTL, &mtl_info) }, 779 + { PCI_DEVICE_DATA(INTEL, VSEC_WCL, &mtl_info) }, 780 780 { } 781 781 }; 782 782 MODULE_DEVICE_TABLE(pci, intel_vsec_pci_ids);