All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] coresight: tmc: make driver usable by Perf
@ 2016-03-22 20:23 ` Mathieu Poirier
  0 siblings, 0 replies; 44+ messages in thread
From: Mathieu Poirier @ 2016-03-22 20:23 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: linux-kernel

This patchset makes the TMC driver usable from Perf by way of the
recently added AUX area functionality.

The first 11 patches remodel the driver so that the functionality
is compartmented enough to be used as building blocks when interfacing
with the Perf subsystem.

Path 12 and 13 implement the AUX area API, taking heavily on the existing
ETB10 implementation.

Finally patch 14 allows the TMC to be used as a link rather than a sink,
something that is required when dealing with an ETF component.

Best regards,
Mathieu

Mathieu Poirier (14):
  coresight: tmc: modifying naming convention
  coresight: tmc: waiting for TMCReady bit before programming
  coresight: tmc: re-implementing tmc_read_prepare/unprepare() functions
  coresight: tmc: introducing new header file
  coresight: tmc: splitting driver in ETB/ETF and ETR components
  coresight: tmc: making prepare/unprepare functions generic
  coresight: tmc: making disable function reusable
  coresight: tmc: allocating memory when needed
  coresight: tmc: adding mode of operation for link/sinks
  coresight: tmc: make sysFS and Perf mode mutually exclusive
  coresight: tmc: keep track of memory width
  coresight: tmc: implementing TMC-ETF AUX space API
  coresight: tmc: implementing TMC-ETR AUX space API
  coresight: configuring ETF in FIFO mode when acting as link

 drivers/hwtracing/coresight/Makefile            |   4 +-
 drivers/hwtracing/coresight/coresight-tmc-etf.c | 606 ++++++++++++++++++++++++
 drivers/hwtracing/coresight/coresight-tmc-etr.c | 470 ++++++++++++++++++
 drivers/hwtracing/coresight/coresight-tmc.c     | 447 ++---------------
 drivers/hwtracing/coresight/coresight-tmc.h     | 167 +++++++
 drivers/hwtracing/coresight/coresight.c         |  17 +-
 6 files changed, 1296 insertions(+), 415 deletions(-)
 create mode 100644 drivers/hwtracing/coresight/coresight-tmc-etf.c
 create mode 100644 drivers/hwtracing/coresight/coresight-tmc-etr.c
 create mode 100644 drivers/hwtracing/coresight/coresight-tmc.h

-- 
2.1.4

^ permalink raw reply	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2016-04-08 15:23 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-22 20:23 [PATCH 00/14] coresight: tmc: make driver usable by Perf Mathieu Poirier
2016-03-22 20:23 ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 01/14] coresight: tmc: modifying naming convention Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-23 10:38   ` Suzuki K. Poulose
2016-03-22 20:23 ` [PATCH 02/14] coresight: tmc: waiting for TMCReady bit before programming Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 03/14] coresight: tmc: re-implementing tmc_read_prepare/unprepare() functions Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-23 10:37   ` Suzuki K. Poulose
2016-03-24 16:38     ` Mathieu Poirier
2016-03-24 16:38       ` Mathieu Poirier
2016-03-24 19:15     ` Mathieu Poirier
2016-03-24 19:15       ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 04/14] coresight: tmc: introducing new header file Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 05/14] coresight: tmc: splitting driver in ETB/ETF and ETR components Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 06/14] coresight: tmc: making prepare/unprepare functions generic Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-04-07 15:43   ` Suzuki K Poulose
2016-04-07 15:43     ` Suzuki K Poulose
2016-03-22 20:23 ` [PATCH 07/14] coresight: tmc: making disable function reusable Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 08/14] coresight: tmc: allocating memory when needed Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-04-07 16:50   ` Suzuki K Poulose
2016-04-07 16:50     ` Suzuki K Poulose
2016-04-08 15:23     ` Mathieu Poirier
2016-04-08 15:23       ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 09/14] coresight: tmc: adding mode of operation for link/sinks Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-04-07 17:19   ` Suzuki K Poulose
2016-04-07 17:19     ` Suzuki K Poulose
2016-03-22 20:23 ` [PATCH 10/14] coresight: tmc: make sysFS and Perf mode mutually exclusive Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 11/14] coresight: tmc: keep track of memory width Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 12/14] coresight: tmc: implementing TMC-ETF AUX space API Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 13/14] coresight: tmc: implementing TMC-ETR " Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier
2016-03-22 20:23 ` [PATCH 14/14] coresight: configuring ETF in FIFO mode when acting as link Mathieu Poirier
2016-03-22 20:23   ` Mathieu Poirier

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.