From: Mathieu Poirier <mathieu.poirier@linaro.org>
To: Mike Leach <mike.leach@linaro.org>
Cc: linux-arm-kernel@lists.infradead.org, coresight@lists.linaro.org,
linux-doc@vger.kernel.org, suzuki.poulose@arm.com,
yabinc@google.com, corbet@lwn.net, leo.yan@linaro.org,
alexander.shishkin@linux.intel.com, tingwei@codeaurora.org,
gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7 00/10] CoreSight configuration management; ETM strobing
Date: Thu, 15 Apr 2021 15:27:54 -0600 [thread overview]
Message-ID: <20210415212754.GF937505@xps15> (raw)
In-Reply-To: <20210414191903.18349-1-mike.leach@linaro.org>
[...]
>
> Mike Leach (10):
> coresight: syscfg: Initial coresight system configuration
> coresight: syscfg: Add registration and feature loading for cs devices
> coresight: config: Add configuration and feature generic functions
> coresight: etm-perf: update to handle configuration selection
> coresight: syscfg: Add API to activate and enable configurations
> coresight: etm-perf: Update to activate selected configuration
> coresight: etm4x: Add complex configuration handlers to etmv4
> coresight: config: Add preloaded configurations
> coresight: syscfg: Add initial configfs support
> Documentation: coresight: Add documentation for CoreSight config
>
> .../trace/coresight/coresight-config.rst | 244 ++++++
> Documentation/trace/coresight/coresight.rst | 16 +
> drivers/hwtracing/coresight/Makefile | 7 +-
> .../hwtracing/coresight/coresight-cfg-afdo.c | 153 ++++
> .../coresight/coresight-cfg-preload.c | 31 +
> .../coresight/coresight-cfg-preload.h | 13 +
> .../hwtracing/coresight/coresight-config.c | 275 ++++++
> .../hwtracing/coresight/coresight-config.h | 253 ++++++
> drivers/hwtracing/coresight/coresight-core.c | 12 +-
> .../hwtracing/coresight/coresight-etm-perf.c | 150 +++-
> .../hwtracing/coresight/coresight-etm-perf.h | 12 +-
> .../hwtracing/coresight/coresight-etm4x-cfg.c | 182 ++++
> .../hwtracing/coresight/coresight-etm4x-cfg.h | 30 +
> .../coresight/coresight-etm4x-core.c | 38 +-
> .../coresight/coresight-etm4x-sysfs.c | 3 +
> .../coresight/coresight-syscfg-configfs.c | 396 +++++++++
> .../coresight/coresight-syscfg-configfs.h | 45 +
> .../hwtracing/coresight/coresight-syscfg.c | 804 ++++++++++++++++++
> .../hwtracing/coresight/coresight-syscfg.h | 81 ++
> include/linux/coresight.h | 7 +
> 20 files changed, 2716 insertions(+), 36 deletions(-)
> create mode 100644 Documentation/trace/coresight/coresight-config.rst
> create mode 100644 drivers/hwtracing/coresight/coresight-cfg-afdo.c
> create mode 100644 drivers/hwtracing/coresight/coresight-cfg-preload.c
> create mode 100644 drivers/hwtracing/coresight/coresight-cfg-preload.h
> create mode 100644 drivers/hwtracing/coresight/coresight-config.c
> create mode 100644 drivers/hwtracing/coresight/coresight-config.h
> create mode 100644 drivers/hwtracing/coresight/coresight-etm4x-cfg.c
> create mode 100644 drivers/hwtracing/coresight/coresight-etm4x-cfg.h
> create mode 100644 drivers/hwtracing/coresight/coresight-syscfg-configfs.c
> create mode 100644 drivers/hwtracing/coresight/coresight-syscfg-configfs.h
> create mode 100644 drivers/hwtracing/coresight/coresight-syscfg.c
> create mode 100644 drivers/hwtracing/coresight/coresight-syscfg.h
>
I have added this set to next-ETE-TRBE where it will be rebased to v5.13-rc1
when it comes out.
Thanks,
Mathieu
> --
> 2.17.1
>
prev parent reply other threads:[~2021-04-15 21:28 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-14 19:18 [PATCH v7 00/10] CoreSight configuration management; ETM strobing Mike Leach
2021-04-14 19:18 ` [PATCH v7 01/10] coresight: syscfg: Initial coresight system configuration Mike Leach
2021-04-14 19:18 ` [PATCH v7 02/10] coresight: syscfg: Add registration and feature loading for cs devices Mike Leach
2021-04-14 19:18 ` [PATCH v7 03/10] coresight: config: Add configuration and feature generic functions Mike Leach
2021-04-14 19:18 ` [PATCH v7 04/10] coresight: etm-perf: update to handle configuration selection Mike Leach
2021-04-14 19:18 ` [PATCH v7 05/10] coresight: syscfg: Add API to activate and enable configurations Mike Leach
2021-06-10 11:05 ` Branislav Rankov
2021-06-14 17:02 ` Mathieu Poirier
2021-06-25 14:37 ` Mike Leach
2021-06-25 15:09 ` Suzuki K Poulose
2021-06-28 13:31 ` Mike Leach
2021-06-28 19:56 ` Mathieu Poirier
2021-06-29 9:37 ` Mike Leach
2021-04-14 19:18 ` [PATCH v7 06/10] coresight: etm-perf: Update to activate selected configuration Mike Leach
2021-04-14 19:19 ` [PATCH v7 07/10] coresight: etm4x: Add complex configuration handlers to etmv4 Mike Leach
2021-04-14 19:19 ` [PATCH v7 08/10] coresight: config: Add preloaded configurations Mike Leach
2021-04-14 19:19 ` [PATCH v7 09/10] coresight: syscfg: Add initial configfs support Mike Leach
2021-04-14 19:19 ` [PATCH v7 10/10] Documentation: coresight: Add documentation for CoreSight config Mike Leach
2021-04-15 21:27 ` Mathieu Poirier [this message]
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=20210415212754.GF937505@xps15 \
--to=mathieu.poirier@linaro.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=corbet@lwn.net \
--cc=coresight@lists.linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=leo.yan@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mike.leach@linaro.org \
--cc=suzuki.poulose@arm.com \
--cc=tingwei@codeaurora.org \
--cc=yabinc@google.com \
/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;
as well as URLs for NNTP newsgroup(s).