2022-07-05 08:42:25

by Alexander Shishkin

[permalink] [raw]
Subject: [PATCH 0/6] intel_th: Fixes for v5.19

Hi Greg,

Here are a few fixes I have for v5.19, among which are 3 new PCI IDs. Andy
provided his reviewed-bys. Please consider applying. Thanks!

Alexander Shishkin (4):
intel_th: msu: Fix vmalloced buffers
intel_th: pci: Add Meteor Lake-P support
intel_th: pci: Add Raptor Lake-S PCH support
intel_th: pci: Add Raptor Lake-S CPU support

Christophe JAILLET (1):
intel_th: Fix a resource leak in an error handling path

Jiasheng Jiang (1):
intel_th: msu-sink: Potential dereference of null pointer

drivers/hwtracing/intel_th/msu-sink.c | 3 +++
drivers/hwtracing/intel_th/msu.c | 14 ++++++++++++--
drivers/hwtracing/intel_th/pci.c | 25 +++++++++++++++++++++++--
3 files changed, 38 insertions(+), 4 deletions(-)

--
2.35.1


2022-07-05 08:50:48

by Alexander Shishkin

[permalink] [raw]
Subject: [PATCH 5/6] intel_th: pci: Add Raptor Lake-S PCH support

Add support for the Trace Hub in Raptor Lake-S PCH.

Signed-off-by: Alexander Shishkin <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
---
drivers/hwtracing/intel_th/pci.c | 5 +++++
1 file changed, 5 insertions(+)

diff --git a/drivers/hwtracing/intel_th/pci.c b/drivers/hwtracing/intel_th/pci.c
index 41a31c7f505f..5b6da26f1b63 100644
--- a/drivers/hwtracing/intel_th/pci.c
+++ b/drivers/hwtracing/intel_th/pci.c
@@ -289,6 +289,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = {
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x7e24),
.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,
+ },
{
/* Alder Lake CPU */
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x466f),
--
2.35.1