From b9a606cb3538ed61c1b32fe8d7576a19c26054c9 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Wed, 19 Jun 2024 09:04:21 +0200 Subject: [PATCH] 5.10-stable patches added patches: intel_th-pci-add-granite-rapids-soc-support.patch intel_th-pci-add-granite-rapids-support.patch intel_th-pci-add-lunar-lake-support.patch intel_th-pci-add-meteor-lake-s-support.patch intel_th-pci-add-sapphire-rapids-soc-support.patch --- ...h-pci-add-granite-rapids-soc-support.patch | 34 +++++++++++++++++++ ...el_th-pci-add-granite-rapids-support.patch | 34 +++++++++++++++++++ .../intel_th-pci-add-lunar-lake-support.patch | 34 +++++++++++++++++++ ...tel_th-pci-add-meteor-lake-s-support.patch | 34 +++++++++++++++++++ ...-pci-add-sapphire-rapids-soc-support.patch | 34 +++++++++++++++++++ queue-5.10/series | 5 +++ 6 files changed, 175 insertions(+) create mode 100644 queue-5.10/intel_th-pci-add-granite-rapids-soc-support.patch create mode 100644 queue-5.10/intel_th-pci-add-granite-rapids-support.patch create mode 100644 queue-5.10/intel_th-pci-add-lunar-lake-support.patch create mode 100644 queue-5.10/intel_th-pci-add-meteor-lake-s-support.patch create mode 100644 queue-5.10/intel_th-pci-add-sapphire-rapids-soc-support.patch diff --git a/queue-5.10/intel_th-pci-add-granite-rapids-soc-support.patch b/queue-5.10/intel_th-pci-add-granite-rapids-soc-support.patch new file mode 100644 index 00000000000..12a95d97fa0 --- /dev/null +++ b/queue-5.10/intel_th-pci-add-granite-rapids-soc-support.patch @@ -0,0 +1,34 @@ +From 854afe461b009801a171b3a49c5f75ea43e4c04c Mon Sep 17 00:00:00 2001 +From: Alexander Shishkin +Date: Mon, 29 Apr 2024 16:01:15 +0300 +Subject: intel_th: pci: Add Granite Rapids SOC support + +From: Alexander Shishkin + +commit 854afe461b009801a171b3a49c5f75ea43e4c04c upstream. + +Add support for the Trace Hub in Granite Rapids SOC. + +Signed-off-by: Alexander Shishkin +Reviewed-by: Andy Shevchenko +Cc: stable@kernel.org +Link: https://lore.kernel.org/r/20240429130119.1518073-12-alexander.shishkin@linux.intel.com +Signed-off-by: Greg Kroah-Hartman +--- + drivers/hwtracing/intel_th/pci.c | 5 +++++ + 1 file changed, 5 insertions(+) + +--- a/drivers/hwtracing/intel_th/pci.c ++++ b/drivers/hwtracing/intel_th/pci.c +@@ -310,6 +310,11 @@ static const struct pci_device_id intel_ + .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, ++ }, ++ { + /* Alder Lake CPU */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x466f), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-5.10/intel_th-pci-add-granite-rapids-support.patch b/queue-5.10/intel_th-pci-add-granite-rapids-support.patch new file mode 100644 index 00000000000..ffca019cf44 --- /dev/null +++ b/queue-5.10/intel_th-pci-add-granite-rapids-support.patch @@ -0,0 +1,34 @@ +From e44937889bdf4ecd1f0c25762b7226406b9b7a69 Mon Sep 17 00:00:00 2001 +From: Alexander Shishkin +Date: Mon, 29 Apr 2024 16:01:14 +0300 +Subject: intel_th: pci: Add Granite Rapids support + +From: Alexander Shishkin + +commit e44937889bdf4ecd1f0c25762b7226406b9b7a69 upstream. + +Add support for the Trace Hub in Granite Rapids. + +Signed-off-by: Alexander Shishkin +Reviewed-by: Andy Shevchenko +Cc: stable@kernel.org +Link: https://lore.kernel.org/r/20240429130119.1518073-11-alexander.shishkin@linux.intel.com +Signed-off-by: Greg Kroah-Hartman +--- + drivers/hwtracing/intel_th/pci.c | 5 +++++ + 1 file changed, 5 insertions(+) + +--- a/drivers/hwtracing/intel_th/pci.c ++++ b/drivers/hwtracing/intel_th/pci.c +@@ -305,6 +305,11 @@ static const struct pci_device_id intel_ + .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, ++ }, ++ { + /* Alder Lake CPU */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x466f), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-5.10/intel_th-pci-add-lunar-lake-support.patch b/queue-5.10/intel_th-pci-add-lunar-lake-support.patch new file mode 100644 index 00000000000..637925372d6 --- /dev/null +++ b/queue-5.10/intel_th-pci-add-lunar-lake-support.patch @@ -0,0 +1,34 @@ +From f866b65322bfbc8fcca13c25f49e1a5c5a93ae4d Mon Sep 17 00:00:00 2001 +From: Alexander Shishkin +Date: Mon, 29 Apr 2024 16:01:19 +0300 +Subject: intel_th: pci: Add Lunar Lake support + +From: Alexander Shishkin + +commit f866b65322bfbc8fcca13c25f49e1a5c5a93ae4d upstream. + +Add support for the Trace Hub in Lunar Lake. + +Signed-off-by: Alexander Shishkin +Reviewed-by: Andy Shevchenko +Cc: stable@kernel.org +Link: https://lore.kernel.org/r/20240429130119.1518073-16-alexander.shishkin@linux.intel.com +Signed-off-by: Greg Kroah-Hartman +--- + drivers/hwtracing/intel_th/pci.c | 5 +++++ + 1 file changed, 5 insertions(+) + +--- a/drivers/hwtracing/intel_th/pci.c ++++ b/drivers/hwtracing/intel_th/pci.c +@@ -325,6 +325,11 @@ static const struct pci_device_id intel_ + .driver_data = (kernel_ulong_t)&intel_th_2x, + }, + { ++ /* Lunar Lake */ ++ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa824), ++ .driver_data = (kernel_ulong_t)&intel_th_2x, ++ }, ++ { + /* Alder Lake CPU */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x466f), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-5.10/intel_th-pci-add-meteor-lake-s-support.patch b/queue-5.10/intel_th-pci-add-meteor-lake-s-support.patch new file mode 100644 index 00000000000..45d823a23a6 --- /dev/null +++ b/queue-5.10/intel_th-pci-add-meteor-lake-s-support.patch @@ -0,0 +1,34 @@ +From c4a30def564d75e84718b059d1a62cc79b137cf9 Mon Sep 17 00:00:00 2001 +From: Alexander Shishkin +Date: Mon, 29 Apr 2024 16:01:17 +0300 +Subject: intel_th: pci: Add Meteor Lake-S support + +From: Alexander Shishkin + +commit c4a30def564d75e84718b059d1a62cc79b137cf9 upstream. + +Add support for the Trace Hub in Meteor Lake-S. + +Signed-off-by: Alexander Shishkin +Reviewed-by: Andy Shevchenko +Cc: stable@kernel.org +Link: https://lore.kernel.org/r/20240429130119.1518073-14-alexander.shishkin@linux.intel.com +Signed-off-by: Greg Kroah-Hartman +--- + drivers/hwtracing/intel_th/pci.c | 5 +++++ + 1 file changed, 5 insertions(+) + +--- a/drivers/hwtracing/intel_th/pci.c ++++ b/drivers/hwtracing/intel_th/pci.c +@@ -295,6 +295,11 @@ static const struct pci_device_id intel_ + .driver_data = (kernel_ulong_t)&intel_th_2x, + }, + { ++ /* Meteor Lake-S */ ++ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x7f26), ++ .driver_data = (kernel_ulong_t)&intel_th_2x, ++ }, ++ { + /* Raptor Lake-S */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x7a26), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-5.10/intel_th-pci-add-sapphire-rapids-soc-support.patch b/queue-5.10/intel_th-pci-add-sapphire-rapids-soc-support.patch new file mode 100644 index 00000000000..19659d7e5f7 --- /dev/null +++ b/queue-5.10/intel_th-pci-add-sapphire-rapids-soc-support.patch @@ -0,0 +1,34 @@ +From 2e1da7efabe05cb0cf0b358883b2bc89080ed0eb Mon Sep 17 00:00:00 2001 +From: Alexander Shishkin +Date: Mon, 29 Apr 2024 16:01:16 +0300 +Subject: intel_th: pci: Add Sapphire Rapids SOC support + +From: Alexander Shishkin + +commit 2e1da7efabe05cb0cf0b358883b2bc89080ed0eb upstream. + +Add support for the Trace Hub in Sapphire Rapids SOC. + +Signed-off-by: Alexander Shishkin +Reviewed-by: Andy Shevchenko +Cc: stable@kernel.org +Link: https://lore.kernel.org/r/20240429130119.1518073-13-alexander.shishkin@linux.intel.com +Signed-off-by: Greg Kroah-Hartman +--- + drivers/hwtracing/intel_th/pci.c | 5 +++++ + 1 file changed, 5 insertions(+) + +--- a/drivers/hwtracing/intel_th/pci.c ++++ b/drivers/hwtracing/intel_th/pci.c +@@ -315,6 +315,11 @@ static const struct pci_device_id intel_ + .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), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-5.10/series b/queue-5.10/series index ff73c1bd474..b45f59eec1d 100644 --- a/queue-5.10/series +++ b/queue-5.10/series @@ -116,3 +116,8 @@ ocfs2-fix-races-between-hole-punching-and-aio-dio.patch pci-rockchip-ep-remove-wrong-mask-on-subsys_vendor_id.patch dmaengine-axi-dmac-fix-possible-race-in-remove.patch remoteproc-k3-r5-do-not-allow-core1-to-power-up-before-core0-via-sysfs.patch +intel_th-pci-add-granite-rapids-support.patch +intel_th-pci-add-granite-rapids-soc-support.patch +intel_th-pci-add-sapphire-rapids-soc-support.patch +intel_th-pci-add-meteor-lake-s-support.patch +intel_th-pci-add-lunar-lake-support.patch -- 2.47.3