From: Suzuki K Poulose <suzuki.poulose@arm.com>
To: Mao Jinlong <quic_jinlmao@quicinc.com>,
Mathieu Poirier <mathieu.poirier@linaro.org>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Konrad Dybcio <konradybcio@gmail.com>,
Mike Leach <mike.leach@linaro.org>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
Cc: Leo Yan <leo.yan@linaro.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
Tingwei Zhang <quic_tingweiz@quicinc.com>,
Yuanfang Zhang <quic_yuanfang@quicinc.com>,
Tao Zhang <quic_taozha@quicinc.com>,
Trilok Soni <quic_tsoni@quicinc.com>,
Hao Zhang <quic_hazha@quicinc.com>,
linux-arm-msm@vger.kernel.org,
Bjorn Andersson <andersson@kernel.org>
Subject: Re: [PATCH v17 0/9] Coresight: Add support for TPDM and TPDA
Date: Fri, 20 Jan 2023 11:46:20 +0000 [thread overview]
Message-ID: <70d32270-cd55-0c7e-2a3f-394b452ce532@arm.com> (raw)
In-Reply-To: <20230117145708.16739-1-quic_jinlmao@quicinc.com>
On 17/01/2023 14:56, Mao Jinlong wrote:
> This series adds support for the trace performance monitoring and
> diagnostics hardware (TPDM and TPDA). It is composed of two major
> elements.
> a) Changes for original coresight framework to support for TPDM and TPDA.
> b) Add driver code for TPDM and TPDA.
>
...
> Mao Jinlong (9):
> coresight: core: Use IDR for non-cpu bound sources' paths.
> Coresight: Add coresight TPDM source driver
https://lore.kernel.org/r/20230120095301.30792-1-quic_jinlmao@quicinc.com
> dt-bindings: arm: Add CoreSight TPDM hardware
> coresight-tpdm: Add DSB dataset support
> coresight-tpdm: Add integration test support
> Coresight: Add TPDA link driver
https://lore.kernel.org/r/20230120095301.30792-2-quic_jinlmao@quicinc.com
> dt-bindings: arm: Adds CoreSight TPDA hardware definitions
> Documentation: trace: Add documentation for TPDM and TPDA
I have queued patches 1-8, to the coresight next branch.
https://git.kernel.org/coresight/c/758d638667d4
> arm64: dts: qcom: sm8250: Add tpdm mm/prng
I assume this ^ would go in via soc tree.
Thanks
Suzuki
>
> .../testing/sysfs-bus-coresight-devices-tpdm | 13 +
> .../bindings/arm/qcom,coresight-tpda.yaml | 129 +++++++++
> .../bindings/arm/qcom,coresight-tpdm.yaml | 93 +++++++
> .../trace/coresight/coresight-tpda.rst | 52 ++++
> .../trace/coresight/coresight-tpdm.rst | 43 +++
> MAINTAINERS | 1 +
> arch/arm64/boot/dts/qcom/sm8250.dtsi | 164 +++++++++++
> drivers/hwtracing/coresight/Kconfig | 23 ++
> drivers/hwtracing/coresight/Makefile | 2 +
> drivers/hwtracing/coresight/coresight-core.c | 42 ++-
> drivers/hwtracing/coresight/coresight-tpda.c | 211 ++++++++++++++
> drivers/hwtracing/coresight/coresight-tpda.h | 35 +++
> drivers/hwtracing/coresight/coresight-tpdm.c | 259 ++++++++++++++++++
> drivers/hwtracing/coresight/coresight-tpdm.h | 62 +++++
> include/linux/coresight.h | 1 +
> 15 files changed, 1118 insertions(+), 12 deletions(-)
> create mode 100644 Documentation/ABI/testing/sysfs-bus-coresight-devices-tpdm
> create mode 100644 Documentation/devicetree/bindings/arm/qcom,coresight-tpda.yaml
> create mode 100644 Documentation/devicetree/bindings/arm/qcom,coresight-tpdm.yaml
> create mode 100644 Documentation/trace/coresight/coresight-tpda.rst
> create mode 100644 Documentation/trace/coresight/coresight-tpdm.rst
> create mode 100644 drivers/hwtracing/coresight/coresight-tpda.c
> create mode 100644 drivers/hwtracing/coresight/coresight-tpda.h
> create mode 100644 drivers/hwtracing/coresight/coresight-tpdm.c
> create mode 100644 drivers/hwtracing/coresight/coresight-tpdm.h
>
next prev parent reply other threads:[~2023-01-20 11:47 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-17 14:56 Mao Jinlong
2023-01-17 14:57 ` [PATCH v17 1/9] coresight: core: Use IDR for non-cpu bound sources' paths Mao Jinlong
2023-01-17 14:57 ` [PATCH v17 2/9] Coresight: Add coresight TPDM source driver Mao Jinlong
2023-01-19 14:31 ` Suzuki K Poulose
2023-01-17 14:57 ` [PATCH v17 3/9] dt-bindings: arm: Add CoreSight TPDM hardware Mao Jinlong
2023-01-17 14:57 ` [PATCH v17 4/9] coresight-tpdm: Add DSB dataset support Mao Jinlong
2023-01-17 14:57 ` [PATCH v17 5/9] coresight-tpdm: Add integration test support Mao Jinlong
2023-01-17 14:57 ` [PATCH v17 6/9] Coresight: Add TPDA link driver Mao Jinlong
2023-01-19 14:41 ` Suzuki K Poulose
2023-01-17 14:57 ` [PATCH v17 7/9] dt-bindings: arm: Adds CoreSight TPDA hardware definitions Mao Jinlong
2023-01-17 14:57 ` [PATCH v17 8/9] Documentation: trace: Add documentation for TPDM and TPDA Mao Jinlong
2023-01-17 14:57 ` [PATCH v17 9/9] arm64: dts: qcom: sm8250: Add tpdm mm/prng Mao Jinlong
2023-01-20 11:46 ` Suzuki K Poulose [this message]
2023-01-21 2:04 ` [PATCH v17 0/9] Coresight: Add support for TPDM and TPDA Trilok Soni
2023-03-16 3:21 ` (subset) " Bjorn Andersson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=70d32270-cd55-0c7e-2a3f-394b452ce532@arm.com \
--to=suzuki.poulose@arm.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=andersson@kernel.org \
--cc=coresight@lists.linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=konradybcio@gmail.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=leo.yan@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.poirier@linaro.org \
--cc=mike.leach@linaro.org \
--cc=quic_hazha@quicinc.com \
--cc=quic_jinlmao@quicinc.com \
--cc=quic_taozha@quicinc.com \
--cc=quic_tingweiz@quicinc.com \
--cc=quic_tsoni@quicinc.com \
--cc=quic_yuanfang@quicinc.com \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®