[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20220927081400.14364-1-yangyicong@huawei.com>
Date: Tue, 27 Sep 2022 16:13:57 +0800
From: Yicong Yang <yangyicong@...wei.com>
To: <acme@...nel.org>, <peterz@...radead.org>,
<alexander.shishkin@...ux.intel.com>, <leo.yan@...aro.org>,
<james.clark@....com>, <will@...nel.org>,
<mathieu.poirier@...aro.org>, <mark.rutland@....com>,
<suzuki.poulose@....com>, <jonathan.cameron@...wei.com>,
<john.garry@...wei.com>, <mike.leach@...aro.org>
CC: <gregkh@...uxfoundation.org>, <helgaas@...nel.org>,
<lorenzo.pieralisi@....com>,
<shameerali.kolothum.thodi@...wei.com>, <mingo@...hat.com>,
<linux-kernel@...r.kernel.org>,
<linux-arm-kernel@...ts.infradead.org>,
<linux-pci@...r.kernel.org>, <linux-perf-users@...r.kernel.org>,
<prime.zeng@...wei.com>, <zhangshaokun@...ilicon.com>,
<linuxarm@...wei.com>, <yangyicong@...ilicon.com>,
<liuqi6124@...il.com>
Subject: [PATCH v14 0/3] Add perf support for HiSilicon PCIe Tune and Trace device
From: Yicong Yang <yangyicong@...ilicon.com>
This patchset adds the perf tool support for HiSilicon PCIe Tune and Trace
device [1]. The device driver makes use of perf AUX trace for tracing
TLP (Transaction Layer Packet) headers of PCIe. The trace can be started by
`perf record` and the traced data can be decoded by `perf report` with
this patchset. The detailed usage is documented in [1].
This is split from the v11 series as suggested to send driver part and
perf tool part separately. The changelog before v11 can be found at [2].
Since the driver has been accepted, wish to have perf support along with
the PTT driver to enable the full support.
[1] https://lore.kernel.org/lkml/20220816114414.4092-5-yangyicong@huawei.com/
[2] https://lore.kernel.org/lkml/20220816114414.4092-1-yangyicong@huawei.com/
Change since v13:
- Collect tags from John and do few cleanups. Thanks.
Link: https://lore.kernel.org/lkml/20220919090045.6778-1-yangyicong@huawei.com/
Change since v12:
- Remove unused headers and some minor fixes, Per John. Thanks!
Link: https://lore.kernel.org/lkml/20220914075925.48549-1-yangyicong@huawei.com/
Qi Liu (3):
perf tool: arm: Refactor event list iteration in
auxtrace_record__init()
perf tool: Add support for HiSilicon PCIe Tune and Trace device driver
perf tool: Add support for parsing HiSilicon PCIe Trace packet
tools/perf/arch/arm/util/auxtrace.c | 116 +++++++++--
tools/perf/arch/arm/util/pmu.c | 3 +
tools/perf/arch/arm64/util/Build | 2 +-
tools/perf/arch/arm64/util/hisi-ptt.c | 188 +++++++++++++++++
tools/perf/util/Build | 2 +
tools/perf/util/auxtrace.c | 4 +
tools/perf/util/auxtrace.h | 1 +
tools/perf/util/hisi-ptt-decoder/Build | 1 +
.../hisi-ptt-decoder/hisi-ptt-pkt-decoder.c | 164 +++++++++++++++
.../hisi-ptt-decoder/hisi-ptt-pkt-decoder.h | 31 +++
tools/perf/util/hisi-ptt.c | 192 ++++++++++++++++++
tools/perf/util/hisi-ptt.h | 19 ++
12 files changed, 703 insertions(+), 20 deletions(-)
create mode 100644 tools/perf/arch/arm64/util/hisi-ptt.c
create mode 100644 tools/perf/util/hisi-ptt-decoder/Build
create mode 100644 tools/perf/util/hisi-ptt-decoder/hisi-ptt-pkt-decoder.c
create mode 100644 tools/perf/util/hisi-ptt-decoder/hisi-ptt-pkt-decoder.h
create mode 100644 tools/perf/util/hisi-ptt.c
create mode 100644 tools/perf/util/hisi-ptt.h
--
2.24.0
Powered by blists - more mailing lists