From: Greg Kroah-Hartman Date: Wed, 19 Jun 2024 07:03:52 +0000 (+0200) Subject: 4.19-stable patches X-Git-Tag: v6.1.95~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b9f855af123af35c94ef78d47451da03e3cc518;p=thirdparty%2Fkernel%2Fstable-queue.git 4.19-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 --- diff --git a/queue-4.19/intel_th-pci-add-granite-rapids-soc-support.patch b/queue-4.19/intel_th-pci-add-granite-rapids-soc-support.patch new file mode 100644 index 00000000000..5d4945fe081 --- /dev/null +++ b/queue-4.19/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 +@@ -271,6 +271,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, ++ }, ++ { + /* Rocket Lake CPU */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4c19), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-4.19/intel_th-pci-add-granite-rapids-support.patch b/queue-4.19/intel_th-pci-add-granite-rapids-support.patch new file mode 100644 index 00000000000..0cb6db573d8 --- /dev/null +++ b/queue-4.19/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 +@@ -266,6 +266,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, ++ }, ++ { + /* Rocket Lake CPU */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4c19), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-4.19/intel_th-pci-add-lunar-lake-support.patch b/queue-4.19/intel_th-pci-add-lunar-lake-support.patch new file mode 100644 index 00000000000..a203ed67537 --- /dev/null +++ b/queue-4.19/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 +@@ -286,6 +286,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, ++ }, ++ { + /* Rocket Lake CPU */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4c19), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-4.19/intel_th-pci-add-meteor-lake-s-support.patch b/queue-4.19/intel_th-pci-add-meteor-lake-s-support.patch new file mode 100644 index 00000000000..0701f5d665f --- /dev/null +++ b/queue-4.19/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 +@@ -256,6 +256,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-4.19/intel_th-pci-add-sapphire-rapids-soc-support.patch b/queue-4.19/intel_th-pci-add-sapphire-rapids-soc-support.patch new file mode 100644 index 00000000000..ce0860e0781 --- /dev/null +++ b/queue-4.19/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 +@@ -276,6 +276,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, ++ }, ++ { + /* Rocket Lake CPU */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4c19), + .driver_data = (kernel_ulong_t)&intel_th_2x, diff --git a/queue-4.19/series b/queue-4.19/series index c203934867c..3871a130480 100644 --- a/queue-4.19/series +++ b/queue-4.19/series @@ -55,3 +55,8 @@ ocfs2-use-coarse-time-for-new-created-files.patch 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 +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