]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.4-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Jun 2024 07:04:11 +0000 (09:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Jun 2024 07:04:11 +0000 (09:04 +0200)
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

queue-5.4/intel_th-pci-add-granite-rapids-soc-support.patch [new file with mode: 0644]
queue-5.4/intel_th-pci-add-granite-rapids-support.patch [new file with mode: 0644]
queue-5.4/intel_th-pci-add-lunar-lake-support.patch [new file with mode: 0644]
queue-5.4/intel_th-pci-add-meteor-lake-s-support.patch [new file with mode: 0644]
queue-5.4/intel_th-pci-add-sapphire-rapids-soc-support.patch [new file with mode: 0644]
queue-5.4/series

diff --git a/queue-5.4/intel_th-pci-add-granite-rapids-soc-support.patch b/queue-5.4/intel_th-pci-add-granite-rapids-soc-support.patch
new file mode 100644 (file)
index 0000000..3c06247
--- /dev/null
@@ -0,0 +1,34 @@
+From 854afe461b009801a171b3a49c5f75ea43e4c04c Mon Sep 17 00:00:00 2001
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Date: Mon, 29 Apr 2024 16:01:15 +0300
+Subject: intel_th: pci: Add Granite Rapids SOC support
+
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+
+commit 854afe461b009801a171b3a49c5f75ea43e4c04c upstream.
+
+Add support for the Trace Hub in Granite Rapids SOC.
+
+Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
+Cc: stable@kernel.org
+Link: https://lore.kernel.org/r/20240429130119.1518073-12-alexander.shishkin@linux.intel.com
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ 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 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-5.4/intel_th-pci-add-granite-rapids-support.patch b/queue-5.4/intel_th-pci-add-granite-rapids-support.patch
new file mode 100644 (file)
index 0000000..79f17b9
--- /dev/null
@@ -0,0 +1,34 @@
+From e44937889bdf4ecd1f0c25762b7226406b9b7a69 Mon Sep 17 00:00:00 2001
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Date: Mon, 29 Apr 2024 16:01:14 +0300
+Subject: intel_th: pci: Add Granite Rapids support
+
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+
+commit e44937889bdf4ecd1f0c25762b7226406b9b7a69 upstream.
+
+Add support for the Trace Hub in Granite Rapids.
+
+Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
+Cc: stable@kernel.org
+Link: https://lore.kernel.org/r/20240429130119.1518073-11-alexander.shishkin@linux.intel.com
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ 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
+@@ -300,6 +300,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-5.4/intel_th-pci-add-lunar-lake-support.patch b/queue-5.4/intel_th-pci-add-lunar-lake-support.patch
new file mode 100644 (file)
index 0000000..8b9ab17
--- /dev/null
@@ -0,0 +1,34 @@
+From f866b65322bfbc8fcca13c25f49e1a5c5a93ae4d Mon Sep 17 00:00:00 2001
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Date: Mon, 29 Apr 2024 16:01:19 +0300
+Subject: intel_th: pci: Add Lunar Lake support
+
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+
+commit f866b65322bfbc8fcca13c25f49e1a5c5a93ae4d upstream.
+
+Add support for the Trace Hub in Lunar Lake.
+
+Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
+Cc: stable@kernel.org
+Link: https://lore.kernel.org/r/20240429130119.1518073-16-alexander.shishkin@linux.intel.com
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ 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
+@@ -320,6 +320,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-5.4/intel_th-pci-add-meteor-lake-s-support.patch b/queue-5.4/intel_th-pci-add-meteor-lake-s-support.patch
new file mode 100644 (file)
index 0000000..45d823a
--- /dev/null
@@ -0,0 +1,34 @@
+From c4a30def564d75e84718b059d1a62cc79b137cf9 Mon Sep 17 00:00:00 2001
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Date: Mon, 29 Apr 2024 16:01:17 +0300
+Subject: intel_th: pci: Add Meteor Lake-S support
+
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+
+commit c4a30def564d75e84718b059d1a62cc79b137cf9 upstream.
+
+Add support for the Trace Hub in Meteor Lake-S.
+
+Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
+Cc: stable@kernel.org
+Link: https://lore.kernel.org/r/20240429130119.1518073-14-alexander.shishkin@linux.intel.com
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ 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.4/intel_th-pci-add-sapphire-rapids-soc-support.patch b/queue-5.4/intel_th-pci-add-sapphire-rapids-soc-support.patch
new file mode 100644 (file)
index 0000000..cc30323
--- /dev/null
@@ -0,0 +1,34 @@
+From 2e1da7efabe05cb0cf0b358883b2bc89080ed0eb Mon Sep 17 00:00:00 2001
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Date: Mon, 29 Apr 2024 16:01:16 +0300
+Subject: intel_th: pci: Add Sapphire Rapids SOC support
+
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+
+commit 2e1da7efabe05cb0cf0b358883b2bc89080ed0eb upstream.
+
+Add support for the Trace Hub in Sapphire Rapids SOC.
+
+Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
+Cc: stable@kernel.org
+Link: https://lore.kernel.org/r/20240429130119.1518073-13-alexander.shishkin@linux.intel.com
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ 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,
+       },
+       {
++              /* 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,
index 7c0f14a616fb1b264affdec9f23be38097fa4940..b2f96da09e0893d5691566253d0201935c7fda44 100644 (file)
@@ -88,3 +88,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