2023-01-10 13:24:07

by Yicong Yang

[permalink] [raw]
Subject: [PATCH v2 1/2] hwtracing: hisi_ptt: Only add the supported devices to the filters list

From: Yicong Yang <[email protected]>

The PTT device can only support the devices on the same PCIe core,
within BDF range [lower_bdf, upper_bdf]. It's not correct to assume
the devices on the root bus are from the same PCIe core, there are
cases that root ports from different PCIe core are sharing the same
bus. So add the checking when initialize the filters list.

Fixes: ff0de066b463 ("hwtracing: hisi_ptt: Add trace function support for HiSilicon PCIe Tune and Trace device")
Signed-off-by: Yicong Yang <[email protected]>
Reviewed-by: Jonathan Cameron <[email protected]>
---
Change since v1:
- Add tags from Jonathan
Link: https://lore.kernel.org/linux-pci/[email protected]/raw

drivers/hwtracing/ptt/hisi_ptt.c | 10 ++++++++++
1 file changed, 10 insertions(+)

diff --git a/drivers/hwtracing/ptt/hisi_ptt.c b/drivers/hwtracing/ptt/hisi_ptt.c
index 5d5526aa60c4..30f1525639b5 100644
--- a/drivers/hwtracing/ptt/hisi_ptt.c
+++ b/drivers/hwtracing/ptt/hisi_ptt.c
@@ -356,8 +356,18 @@ static int hisi_ptt_register_irq(struct hisi_ptt *hisi_ptt)

static int hisi_ptt_init_filters(struct pci_dev *pdev, void *data)
{
+ struct pci_dev *root_port = pcie_find_root_port(pdev);
struct hisi_ptt_filter_desc *filter;
struct hisi_ptt *hisi_ptt = data;
+ u32 port_devid;
+
+ if (!root_port)
+ return 0;
+
+ port_devid = PCI_DEVID(root_port->bus->number, root_port->devfn);
+ if (port_devid < hisi_ptt->lower_bdf ||
+ port_devid > hisi_ptt->upper_bdf)
+ return 0;

/*
* We won't fail the probe if filter allocation failed here. The filters
--
2.24.0


2023-01-10 13:52:41

by Yicong Yang

[permalink] [raw]
Subject: [PATCH v2 2/2] MAINTAINERS: Update the entries for HiSilicon PTT device driver

From: Yicong Yang <[email protected]>

Add missing entries for the perf userspace part of this driver.
Also add Jonathan as the maintainer for his expertise on this
driver and PCIe stuffs.

Signed-off-by: Yicong Yang <[email protected]>
Acked-by: Jonathan Cameron <[email protected]>
---
Change since v1:
- Add tag from Jonathan
Link: https://lore.kernel.org/linux-pci/[email protected]/

MAINTAINERS | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index a36df9ed283d..0cfd358da378 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -9375,11 +9375,15 @@ F: drivers/perf/hisilicon/hns3_pmu.c

HISILICON PTT DRIVER
M: Yicong Yang <[email protected]>
+M: Jonathan Cameron <[email protected]>
L: [email protected]
S: Maintained
F: Documentation/ABI/testing/sysfs-devices-hisi_ptt
F: Documentation/trace/hisi-ptt.rst
F: drivers/hwtracing/ptt/
+F: tools/perf/arch/arm64/util/hisi-ptt.c
+F: tools/perf/util/hisi-ptt*
+F: tools/perf/util/hisi-ptt-decoder/*

HISILICON QM DRIVER
M: Weili Qian <[email protected]>
--
2.24.0

2023-01-10 16:04:18

by Bjorn Helgaas

[permalink] [raw]
Subject: Re: [PATCH v2 1/2] hwtracing: hisi_ptt: Only add the supported devices to the filters list

On Tue, Jan 10, 2023 at 09:08:32PM +0800, Yicong Yang wrote:
> From: Yicong Yang <[email protected]>
>
> The PTT device can only support the devices on the same PCIe core,
> within BDF range [lower_bdf, upper_bdf]. It's not correct to assume
> the devices on the root bus are from the same PCIe core, there are
> cases that root ports from different PCIe core are sharing the same
> bus. So add the checking when initialize the filters list.

"So check when initializing the filters list."

2023-01-11 07:25:37

by Yicong Yang

[permalink] [raw]
Subject: Re: [PATCH v2 1/2] hwtracing: hisi_ptt: Only add the supported devices to the filters list

Hi Bjorn,

On 2023/1/10 23:05, Bjorn Helgaas wrote:
> On Tue, Jan 10, 2023 at 09:08:32PM +0800, Yicong Yang wrote:
>> From: Yicong Yang <[email protected]>
>>
>> The PTT device can only support the devices on the same PCIe core,
>> within BDF range [lower_bdf, upper_bdf]. It's not correct to assume
>> the devices on the root bus are from the same PCIe core, there are
>> cases that root ports from different PCIe core are sharing the same
>> bus. So add the checking when initialize the filters list.
>
> "So check when initializing the filters list."
> .

Thanks for the comment. Will reword this sentence as suggested.

Thanks.