From: mathieu.poirier@linaro.org (Mathieu Poirier)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/26] coresight: next v4.13-rc3
Date: Wed, 2 Aug 2017 10:21:54 -0600 [thread overview]
Message-ID: <1501690940-4137-1-git-send-email-mathieu.poirier@linaro.org> (raw)
Good morning Grep,
These are the patches I'd like you to consider for inclusion in the v4.14
cycle. Please have a look when you get the chance. As usual I made sure
things apply on your char-misc-next branch (24a81a2c2581).
Thanks,
Mathieu
Arvind Yadav (1):
hwtracing: coresight: constify attribute_group structures.
Mathieu Poirier (5):
coresight: Correct buffer lost increment
coresight: etb10: Remove useless conversion to LE
coresight: Add barrier packet for synchronisation
coresight: etb10: Move etb_disable_hw() outside of lock
coresight: etm3x: Set synchronisation frequencty to TRM default
Mike Leach (4):
coresight: pmu: Adds return stack option to perf coresight pmu
coresight: ptm: Adds trace return stack option programming for PTM.
coresight: etm4x: Adds trace return stack option programming for
ETMv4.
perf: cs-etm: Fix ETMv4 CONFIGR entry in perf.data file
Stephen Boyd (1):
coresight: STM: Clean up __iomem type usage
Suzuki K Poulose (15):
coresight replicator: Cleanup programmable replicator naming
coresight: Add support for reading 64bit registers
coresight: Use the new helper for defining registers
coresight tmc: Add helpers for accessing 64bit registers
coresight tmc: Expose DBA and AXICTL
coresight replicator: Expose replicator management registers
coresight tmc: Handle configuration types properly
coresight tmc etr: Add capabilitiy information
coresight tmc: Detect support for scatter gather
coresight tmc etr: Detect address width at runtime
coresight tmc etr: Cleanup AXICTL register handling
coresight tmc etr: Setup AXI cache encoding for read transfers
coresight tmc: Support for save-restore in ETR
coresight tmc: Add support for Coresight SoC 600 TMC
coresight: Add support for Coresight SoC 600 components
.../devicetree/bindings/arm/coresight.txt | 4 +-
drivers/hwtracing/coresight/Kconfig | 10 +-
drivers/hwtracing/coresight/Makefile | 2 +-
...cator-qcom.c => coresight-dynamic-replicator.c} | 32 ++++++-
drivers/hwtracing/coresight/coresight-etb10.c | 68 ++++++++-----
drivers/hwtracing/coresight/coresight-etm-perf.c | 4 +-
drivers/hwtracing/coresight/coresight-etm.h | 1 +
.../hwtracing/coresight/coresight-etm3x-sysfs.c | 26 ++---
drivers/hwtracing/coresight/coresight-etm3x.c | 20 +++-
.../hwtracing/coresight/coresight-etm4x-sysfs.c | 24 ++---
drivers/hwtracing/coresight/coresight-etm4x.c | 4 +
drivers/hwtracing/coresight/coresight-funnel.c | 5 +
drivers/hwtracing/coresight/coresight-priv.h | 39 +++++++-
drivers/hwtracing/coresight/coresight-stm.c | 47 ++++-----
drivers/hwtracing/coresight/coresight-tmc-etf.c | 42 ++++++--
drivers/hwtracing/coresight/coresight-tmc-etr.c | 49 +++++++---
drivers/hwtracing/coresight/coresight-tmc.c | 106 ++++++++++++++++-----
drivers/hwtracing/coresight/coresight-tmc.h | 85 ++++++++++++++++-
drivers/hwtracing/coresight/coresight-tpiu.c | 5 +
drivers/hwtracing/coresight/coresight.c | 8 ++
include/linux/coresight-pmu.h | 6 ++
tools/include/linux/coresight-pmu.h | 6 ++
tools/perf/arch/arm/util/cs-etm.c | 28 +++++-
23 files changed, 485 insertions(+), 136 deletions(-)
rename drivers/hwtracing/coresight/{coresight-replicator-qcom.c => coresight-dynamic-replicator.c} (87%)
--
2.7.4
next reply other threads:[~2017-08-02 16:21 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-02 16:21 Mathieu Poirier [this message]
2017-08-02 16:21 ` [PATCH 01/26] coresight: Correct buffer lost increment Mathieu Poirier
2017-08-02 16:21 ` [PATCH 02/26] coresight: etb10: Remove useless conversion to LE Mathieu Poirier
2017-08-02 16:21 ` [PATCH 03/26] coresight: Add barrier packet for synchronisation Mathieu Poirier
2017-08-02 16:21 ` [PATCH 04/26] coresight: etb10: Move etb_disable_hw() outside of lock Mathieu Poirier
2017-08-02 16:21 ` [PATCH 05/26] coresight: etm3x: Set synchronisation frequencty to TRM default Mathieu Poirier
2017-08-02 16:22 ` [PATCH 06/26] hwtracing: coresight: constify attribute_group structures Mathieu Poirier
2017-08-02 16:22 ` [PATCH 07/26] coresight: pmu: Adds return stack option to perf coresight pmu Mathieu Poirier
2017-08-02 16:22 ` [PATCH 08/26] coresight: ptm: Adds trace return stack option programming for PTM Mathieu Poirier
2017-08-02 16:22 ` [PATCH 09/26] coresight: etm4x: Adds trace return stack option programming for ETMv4 Mathieu Poirier
2017-08-02 16:22 ` [PATCH 10/26] coresight replicator: Cleanup programmable replicator naming Mathieu Poirier
2017-08-02 16:22 ` [PATCH 11/26] coresight: Add support for reading 64bit registers Mathieu Poirier
2017-08-02 16:22 ` [PATCH 12/26] coresight: Use the new helper for defining registers Mathieu Poirier
2017-08-02 16:22 ` [PATCH 13/26] coresight tmc: Add helpers for accessing 64bit registers Mathieu Poirier
2017-08-02 16:22 ` [PATCH 14/26] coresight tmc: Expose DBA and AXICTL Mathieu Poirier
2017-08-02 16:22 ` [PATCH 15/26] coresight replicator: Expose replicator management registers Mathieu Poirier
2017-08-02 16:22 ` [PATCH 16/26] coresight tmc: Handle configuration types properly Mathieu Poirier
2017-08-02 16:22 ` [PATCH 17/26] coresight tmc etr: Add capabilitiy information Mathieu Poirier
2017-08-02 16:22 ` [PATCH 18/26] coresight tmc: Detect support for scatter gather Mathieu Poirier
2017-08-02 16:22 ` [PATCH 19/26] coresight tmc etr: Detect address width at runtime Mathieu Poirier
2017-08-02 16:22 ` [PATCH 20/26] coresight tmc etr: Cleanup AXICTL register handling Mathieu Poirier
2017-08-02 16:22 ` [PATCH 21/26] coresight tmc etr: Setup AXI cache encoding for read transfers Mathieu Poirier
2017-08-02 16:22 ` [PATCH 22/26] coresight tmc: Support for save-restore in ETR Mathieu Poirier
2017-08-02 16:22 ` [PATCH 23/26] coresight tmc: Add support for Coresight SoC 600 TMC Mathieu Poirier
2017-08-02 16:22 ` [PATCH 24/26] coresight: Add support for Coresight SoC 600 components Mathieu Poirier
2017-08-02 16:22 ` [PATCH 25/26] perf: cs-etm: Fix ETMv4 CONFIGR entry in perf.data file Mathieu Poirier
2017-08-02 16:22 ` [PATCH 26/26] coresight: STM: Clean up __iomem type usage Mathieu Poirier
2017-08-28 14:07 ` [PATCH 00/26] coresight: next v4.13-rc3 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=1501690940-4137-1-git-send-email-mathieu.poirier@linaro.org \
--to=mathieu.poirier@linaro.org \
--cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).