mbox series

[v11,00/12] coresight: next v5.6-rc6

Message ID 20200320165303.13681-1-mathieu.poirier@linaro.org (mailing list archive)
Headers show
Series coresight: next v5.6-rc6 | expand

Message

Mathieu Poirier March 20, 2020, 4:52 p.m. UTC
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

Comments

Greg KH March 21, 2020, 10:39 a.m. UTC | #1
On Fri, Mar 20, 2020 at 10:52:51AM -0600, Mathieu Poirier wrote:
> 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.

Much nicer, thanks for these, all now queued up.

greg k-h