Unverified Commit 7ba23861 authored by openeuler-ci-bot's avatar openeuler-ci-bot Committed by Gitee
Browse files

!11286 [OLK-5.10] Backport Intel Trace Hub support on GNR and SPR platforms

Merge Pull Request from: @xiaolong-wang-intel 
 
Backport 3 PCI device ID adding v6.10 commits to enable Intel Trace Hub driver on SPR and GNR. Including:
2e1da7efabe0 intel_th: pci: Add Sapphire Rapids SOC support
854afe461b00 intel_th: pci: Add Granite Rapids SOC support
e44937889bdf intel_th: pci: Add Granite Rapids support

Intel-kernel issue:
https://gitee.com/openeuler/intel-kernel/issues/IAMRIA

Test:
Intel internal trace hub BAT test pass with basic device and driver check and GTH/MSU/PTI sysfs check.
STH and STM tests failed as they've been disabled in commit 8007fb8d, so it's expected.

Known issue:
N/A

Default config change:
N/A 
 
Link:https://gitee.com/openeuler/kernel/pulls/11286

 

Reviewed-by: default avatarJason Zeng <jason.zeng@intel.com>
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
parents e74aedc9 2c8f8c6c
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -299,6 +299,21 @@ static const struct pci_device_id intel_th_pci_id_table[] = {
		PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa76f),
		.driver_data = (kernel_ulong_t)&intel_th_2x,
	},
	{
		/* Granite Rapids */
		PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0963),
		.driver_data = (kernel_ulong_t)&intel_th_2x,
	},
	{
		/* Granite Rapids SOC */
		PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x3256),
		.driver_data = (kernel_ulong_t)&intel_th_2x,
	},
	{
		/* Sapphire Rapids SOC */
		PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x3456),
		.driver_data = (kernel_ulong_t)&intel_th_2x,
	},
	{
		/* Alder Lake CPU */
		PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x466f),