From: Mathieu Poirier <mathieu.poirier@linaro.org>
To: gregkh@linuxfoundation.org
Cc: suzuki.poulose@arm.com, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, mike.leach@linaro.org
Subject: [PATCH v11 00/12] coresight: next v5.6-rc6
Date: Fri, 20 Mar 2020 10:52:51 -0600 [thread overview]
Message-ID: <20200320165303.13681-1-mathieu.poirier@linaro.org> (raw)
Hi Greg,
As requested here is another respin - the only thing that changed is
the replacement of scnprintf() and all sysfs output are now singular,
i.e don't need any parsing. That triggered some modification to
sysfs entries, which have been taken into account in the documentation.
Applies and compile cleanly on your char-misc-next branch.
Thanks,
Mathieu
Mike Leach (12):
coresight: cti: Initial CoreSight CTI Driver
coresight: cti: Add sysfs coresight mgmt register access
coresight: cti: Add sysfs access to program function registers
coresight: cti: Add sysfs trigger / channel programming API
dt-bindings: arm: Adds CoreSight CTI hardware definitions
coresight: cti: Add device tree support for v8 arch CTI
coresight: cti: Add device tree support for custom CTI
coresight: cti: Enable CTI associated with devices
coresight: cti: Add connection information to sysfs
docs: coresight: Update documentation for CoreSight to cover CTI
docs: sysfs: coresight: Add sysfs ABI documentation for CTI
Update MAINTAINERS to add reviewer for CoreSight
.../testing/sysfs-bus-coresight-devices-cti | 241 ++++
.../bindings/arm/coresight-cti.yaml | 336 +++++
.../devicetree/bindings/arm/coresight.txt | 7 +
.../trace/coresight/coresight-ect.rst | 222 +++
Documentation/trace/coresight/coresight.rst | 13 +
MAINTAINERS | 3 +
drivers/hwtracing/coresight/Kconfig | 21 +
drivers/hwtracing/coresight/Makefile | 3 +
.../coresight/coresight-cti-platform.c | 485 +++++++
.../hwtracing/coresight/coresight-cti-sysfs.c | 1206 +++++++++++++++++
drivers/hwtracing/coresight/coresight-cti.c | 745 ++++++++++
drivers/hwtracing/coresight/coresight-cti.h | 235 ++++
.../hwtracing/coresight/coresight-platform.c | 20 +
drivers/hwtracing/coresight/coresight-priv.h | 15 +
drivers/hwtracing/coresight/coresight.c | 86 +-
include/dt-bindings/arm/coresight-cti-dt.h | 37 +
include/linux/coresight.h | 27 +
17 files changed, 3688 insertions(+), 14 deletions(-)
create mode 100644 Documentation/ABI/testing/sysfs-bus-coresight-devices-cti
create mode 100644 Documentation/devicetree/bindings/arm/coresight-cti.yaml
create mode 100644 Documentation/trace/coresight/coresight-ect.rst
create mode 100644 drivers/hwtracing/coresight/coresight-cti-platform.c
create mode 100644 drivers/hwtracing/coresight/coresight-cti-sysfs.c
create mode 100644 drivers/hwtracing/coresight/coresight-cti.c
create mode 100644 drivers/hwtracing/coresight/coresight-cti.h
create mode 100644 include/dt-bindings/arm/coresight-cti-dt.h
--
2.20.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next reply other threads:[~2020-03-20 16:53 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-20 16:52 Mathieu Poirier [this message]
2020-03-20 16:52 ` [PATCH v11 01/12] coresight: cti: Initial CoreSight CTI Driver Mathieu Poirier
2020-03-20 16:52 ` [PATCH v11 02/12] coresight: cti: Add sysfs coresight mgmt register access Mathieu Poirier
2020-03-20 16:52 ` [PATCH v11 03/12] coresight: cti: Add sysfs access to program function registers Mathieu Poirier
2020-03-20 16:52 ` [PATCH v11 04/12] coresight: cti: Add sysfs trigger / channel programming API Mathieu Poirier
2020-03-20 16:52 ` [PATCH v11 05/12] dt-bindings: arm: Adds CoreSight CTI hardware definitions Mathieu Poirier
2020-03-20 16:52 ` [PATCH v11 06/12] coresight: cti: Add device tree support for v8 arch CTI Mathieu Poirier
2020-03-20 16:52 ` [PATCH v11 07/12] coresight: cti: Add device tree support for custom CTI Mathieu Poirier
2020-03-20 16:52 ` [PATCH v11 08/12] coresight: cti: Enable CTI associated with devices Mathieu Poirier
2020-03-20 16:53 ` [PATCH v11 09/12] coresight: cti: Add connection information to sysfs Mathieu Poirier
2020-03-20 16:53 ` [PATCH v11 10/12] docs: coresight: Update documentation for CoreSight to cover CTI Mathieu Poirier
2020-03-20 16:53 ` [PATCH v11 11/12] docs: sysfs: coresight: Add sysfs ABI documentation for CTI Mathieu Poirier
2020-03-20 16:53 ` [PATCH v11 12/12] Update MAINTAINERS to add reviewer for CoreSight Mathieu Poirier
2020-03-21 10:39 ` [PATCH v11 00/12] coresight: next v5.6-rc6 Greg KH
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=20200320165303.13681-1-mathieu.poirier@linaro.org \
--to=mathieu.poirier@linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mike.leach@linaro.org \
--cc=suzuki.poulose@arm.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).