linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: mathieu.poirier@linaro.org (Mathieu Poirier)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/17] coresight: next v4.12-rc4
Date: Mon,  5 Jun 2017 14:15:01 -0600	[thread overview]
Message-ID: <1496693718-9191-1-git-send-email-mathieu.poirier@linaro.org> (raw)

Hi Greg,

Please consider for inclusion in the 4.13 cycle.  Of particular interest is
patch 15/17, which adds a new driver under the CoreSight umbrella.
Everything applies cleanly on today's char-misc-next branch (73726380a26f).

Regards,
Mathieu

Leo Yan (10):
  coresight: tmc: minor fix for output log
  coresight: use const for device_node structures
  coresight: bindings for CPU debug module
  doc: Add documentation for Coresight CPU debug
  doc: Add coresight_cpu_debug.enable to kernel-parameters.txt
  MAINTAINERS: update file entries for Coresight subsystem
  coresight: refactor with function of_coresight_get_cpu
  coresight: add support for CPU debug module
  arm64: dts: hi6220: register debug module
  arm64: dts: qcom: msm8916: Add debug unit

Markus Elfring (2):
  coresight: etb10: Delete an error message for a failed memory
    allocation in etb_probe()
  coresight: etb10: Fix a typo in a comment line

Robin Murphy (1):
  coresight: tmc: Configure DMA mask appropriately

Suzuki K Poulose (4):
  coresight: Disable the path only when the source is disabled
  coresight: Fix reference count for software sources
  coresight: etm_perf: Fix using uninitialised work
  coresight: of_get_coresight_platform_data: Add missing of_node_put

 Documentation/admin-guide/kernel-parameters.txt    |   7 +
 .../bindings/arm/coresight-cpu-debug.txt           |  49 ++
 Documentation/trace/coresight-cpu-debug.txt        | 175 ++++++
 MAINTAINERS                                        |   2 +
 arch/arm64/boot/dts/hisilicon/hi6220.dtsi          |  64 ++
 arch/arm64/boot/dts/qcom/msm8916.dtsi              |  32 +
 drivers/hwtracing/coresight/Kconfig                |  14 +
 drivers/hwtracing/coresight/Makefile               |   1 +
 drivers/hwtracing/coresight/coresight-cpu-debug.c  | 700 +++++++++++++++++++++
 drivers/hwtracing/coresight/coresight-etb10.c      |   7 +-
 drivers/hwtracing/coresight/coresight-etm-perf.c   |   3 +-
 drivers/hwtracing/coresight/coresight-tmc-etf.c    |  25 +-
 drivers/hwtracing/coresight/coresight-tmc.c        |   7 +
 drivers/hwtracing/coresight/coresight.c            |  34 +-
 drivers/hwtracing/coresight/of_coresight.c         |  47 +-
 include/linux/coresight.h                          |  10 +-
 16 files changed, 1136 insertions(+), 41 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
 create mode 100644 Documentation/trace/coresight-cpu-debug.txt
 create mode 100644 drivers/hwtracing/coresight/coresight-cpu-debug.c

-- 
2.7.4

             reply	other threads:[~2017-06-05 20:15 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-05 20:15 Mathieu Poirier [this message]
2017-06-05 20:15 ` [PATCH 01/17] coresight: Disable the path only when the source is disabled Mathieu Poirier
2017-06-05 20:15 ` [PATCH 02/17] coresight: Fix reference count for software sources Mathieu Poirier
2017-06-05 20:15 ` [PATCH 03/17] coresight: etm_perf: Fix using uninitialised work Mathieu Poirier
2017-06-09 22:53   ` Kim Phillips
2017-06-05 20:15 ` [PATCH 04/17] coresight: tmc: minor fix for output log Mathieu Poirier
2017-06-05 20:15 ` [PATCH 05/17] coresight: use const for device_node structures Mathieu Poirier
2017-06-05 20:15 ` [PATCH 06/17] coresight: etb10: Delete an error message for a failed memory allocation in etb_probe() Mathieu Poirier
2017-06-05 20:15 ` [PATCH 07/17] coresight: etb10: Fix a typo in a comment line Mathieu Poirier
2017-06-05 20:15 ` [PATCH 08/17] coresight: tmc: Configure DMA mask appropriately Mathieu Poirier
2017-06-05 20:15 ` [PATCH 09/17] coresight: bindings for CPU debug module Mathieu Poirier
2017-06-05 20:15 ` [PATCH 10/17] doc: Add documentation for Coresight CPU debug Mathieu Poirier
2017-06-05 20:15 ` [PATCH 11/17] doc: Add coresight_cpu_debug.enable to kernel-parameters.txt Mathieu Poirier
2017-06-05 20:15 ` [PATCH 12/17] MAINTAINERS: update file entries for Coresight subsystem Mathieu Poirier
2017-06-05 20:15 ` [PATCH 13/17] coresight: of_get_coresight_platform_data: Add missing of_node_put Mathieu Poirier
2017-06-05 20:15 ` [PATCH 14/17] coresight: refactor with function of_coresight_get_cpu Mathieu Poirier
2017-06-05 20:15 ` [PATCH 15/17] coresight: add support for CPU debug module Mathieu Poirier
2017-06-05 20:15 ` [PATCH 16/17] arm64: dts: hi6220: register " Mathieu Poirier
2017-06-05 20:15 ` [PATCH 17/17] arm64: dts: qcom: msm8916: Add debug unit Mathieu Poirier
2017-06-09 22:53 ` [PATCH 00/17] coresight: next v4.12-rc4 Kim Phillips
2017-06-10  2:34   ` Leo Yan
     [not found]   ` <CANLsYky8XLbOwinxVc2xKaNzhkpUOX0NsNxrFF4=MsjzC3iY1g@mail.gmail.com>
2017-06-13 21:17     ` Kim Phillips
2017-06-14  6:22       ` Leo Yan
2017-06-15  3:34         ` Kim Phillips
2017-06-15  8:41           ` Sudeep Holla
2017-06-15 14:22             ` Kim Phillips
2017-06-15 15:50               ` Leo Yan
2017-08-21 23:31                 ` Kim Phillips
2017-08-23  7:25                   ` Leo Yan
2017-06-15 13:08         ` Suzuki K Poulose
2017-06-15 13:40           ` Kim Phillips
2017-06-15 14:02             ` Suzuki K Poulose
2017-06-15 14:45               ` Kim Phillips

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=1496693718-9191-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).