All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10 v3] Coresight framework and drivers
@ 2014-08-07 18:21 ` mathieu.poirier at linaro.org
  0 siblings, 0 replies; 36+ messages in thread
From: mathieu.poirier @ 2014-08-07 18:21 UTC (permalink / raw)
  To: linus.walleij, will.deacon, linux, robherring2, daniel.thompson
  Cc: mathieu.poirier, arve, john.stultz, pratikp, varshney, Al.Grant,
	jonas.svennebring, james.king, panchaxari.prasannamurthy,
	marcin.jabrzyk, r.sengupta, robbelibobban, Tony.Armitstead,
	patches, linux-arm-kernel, linux-kernel

From: Mathieu Poirier <mathieu.poirier@linaro.org>

As part of this patchset you will find:

. The return of non-configurable replicators.  Since they don't
  show up on the AMBA bus we need to use the platform device model.
. It is now possible to configure and use multiple sinks simultaneously.
. The coresigh config entries have been moved to arch/arm/Kconfig.debug.
. Documentation for bindings has been removed from this submission and 
  will be sent separately.
. "of_coresight.h" has been folded into "coresight.h".
. Miscellaneous style problems have been addressed.

Also noteworthy is that traces generated by this framework can be
decoded following the sequence detailed here [1].

[1].https://wiki.linaro.org/WorklingGroups/Kernel/Coresight/traceDecodingWithDS5

Mathieu Poirier (3):
  coresight: adding support for beagle and beagleXM
  coresight: adding basic support for Vexpress TC2
  ARM: removing support for etb/etm in "arch/arm/kernel/"

Pratik Patel (7):
  coresight: add CoreSight core layer framework
  coresight-tmc: add CoreSight TMC driver
  coresight-tpiu: add CoreSight TPIU driver
  coresight-etb: add CoreSight ETB driver
  coresight-funnel: add CoreSight Funnel driver
  coresight-replicator: add CoreSight Replicator driver
  coresight-etm: add CoreSight ETM/PTM driver

 arch/arm/Kconfig.debug                     |   36 +-
 arch/arm/boot/dts/omap3-beagle-xm.dts      |   28 +
 arch/arm/boot/dts/omap3-beagle.dts         |   28 +
 arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts |  199 ++++
 arch/arm/include/asm/hardware/coresight.h  |  157 ---
 arch/arm/include/asm/hardware/cp14.h       |  540 ++++++++++
 arch/arm/kernel/Makefile                   |    1 -
 arch/arm/kernel/etm.c                      |  654 ------------
 arch/arm/kernel/hw_breakpoint.c            |    4 +-
 arch/arm/mach-omap2/Kconfig                |    8 -
 arch/arm/mach-omap2/Makefile               |    1 -
 arch/arm/mach-omap2/emu.c                  |   50 -
 drivers/Makefile                           |    1 +
 drivers/amba/bus.c                         |    2 +-
 drivers/coresight/Makefile                 |    9 +
 drivers/coresight/coresight-etb10.c        |  529 ++++++++++
 drivers/coresight/coresight-etm-cp14.c     |  506 ++++++++++
 drivers/coresight/coresight-etm.h          |  192 ++++
 drivers/coresight/coresight-etm3x.c        | 1516 ++++++++++++++++++++++++++++
 drivers/coresight/coresight-funnel.c       |  251 +++++
 drivers/coresight/coresight-priv.h         |   63 ++
 drivers/coresight/coresight-replicator.c   |  153 +++
 drivers/coresight/coresight-tmc.c          |  740 ++++++++++++++
 drivers/coresight/coresight-tpiu.c         |  212 ++++
 drivers/coresight/coresight.c              |  638 ++++++++++++
 drivers/coresight/of_coresight.c           |  202 ++++
 include/linux/amba/bus.h                   |    1 +
 include/linux/coresight.h                  |  200 ++++
 28 files changed, 6039 insertions(+), 882 deletions(-)
 delete mode 100644 arch/arm/include/asm/hardware/coresight.h
 create mode 100644 arch/arm/include/asm/hardware/cp14.h
 delete mode 100644 arch/arm/kernel/etm.c
 delete mode 100644 arch/arm/mach-omap2/emu.c
 create mode 100644 drivers/coresight/Makefile
 create mode 100644 drivers/coresight/coresight-etb10.c
 create mode 100644 drivers/coresight/coresight-etm-cp14.c
 create mode 100644 drivers/coresight/coresight-etm.h
 create mode 100644 drivers/coresight/coresight-etm3x.c
 create mode 100644 drivers/coresight/coresight-funnel.c
 create mode 100644 drivers/coresight/coresight-priv.h
 create mode 100644 drivers/coresight/coresight-replicator.c
 create mode 100644 drivers/coresight/coresight-tmc.c
 create mode 100644 drivers/coresight/coresight-tpiu.c
 create mode 100644 drivers/coresight/coresight.c
 create mode 100644 drivers/coresight/of_coresight.c
 create mode 100644 include/linux/coresight.h

-- 
1.9.1


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

end of thread, other threads:[~2014-08-15 19:26 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-07 18:21 [PATCH 00/10 v3] Coresight framework and drivers mathieu.poirier
2014-08-07 18:21 ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 01/10 v3] coresight: add CoreSight core layer framework mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 02/10 v3] coresight-tmc: add CoreSight TMC driver mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 03/10 v3] coresight-tpiu: add CoreSight TPIU driver mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 04/10 v3] coresight-etb: add CoreSight ETB driver mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 05/10 v3] coresight-funnel: add CoreSight Funnel driver mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 06/10 v3] coresight-replicator: add CoreSight Replicator driver mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 07/10 v3] coresight-etm: add CoreSight ETM/PTM driver mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-08  5:28   ` Dirk Behme
2014-08-08  5:28     ` Dirk Behme
2014-08-08 13:55     ` Mathieu Poirier
2014-08-08 13:55       ` Mathieu Poirier
2014-08-08 16:58   ` Al Grant
2014-08-11 16:28     ` Mathieu Poirier
2014-08-12 17:02       ` Al Grant
2014-08-12 22:28         ` Mathieu Poirier
2014-08-15 19:26         ` Mathieu Poirier
2014-08-07 18:21 ` [PATCH 08/10 v3] coresight: adding support for beagle and beagleXM mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 09/10 v3] coresight: adding basic support for Vexpress TC2 mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-07 18:21 ` [PATCH 10/10 v3] ARM: removing support for etb/etm in "arch/arm/kernel/" mathieu.poirier
2014-08-07 18:21   ` mathieu.poirier at linaro.org
2014-08-15 14:23   ` Will Deacon
2014-08-07 19:42 ` [PATCH 00/10 v3] Coresight framework and drivers Sam Ravnborg
2014-08-07 19:42   ` Sam Ravnborg
2014-08-08 14:39 ` Thomas Petazzoni
2014-08-08 14:39   ` Thomas Petazzoni

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.