linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [QUEUED v20180920 00/16] stm class/intel_th: Queued updates for v4.20
@ 2018-09-20 12:45 Alexander Shishkin
  2018-09-20 12:45 ` [QUEUED v20180920 01/16] stm class: Rework policy node fallback Alexander Shishkin
                   ` (16 more replies)
  0 siblings, 17 replies; 27+ messages in thread
From: Alexander Shishkin @ 2018-09-20 12:45 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Mathieu Poirier; +Cc: linux-kernel, Alexander Shishkin

Hi,

These are patches I have queued so far, that I'm planning to send to
Greg for the next merge window. This is mainly support for MIPI SyS-T
protocol and all the infrastructure changes to make it possible.

MIPI SyS-T is a public standard [0] for a software-level trace protocol
that in this instance we use on top of STM devices (if we choose to) and
MIPI STP protocol.

The old "protocol" is preserved for compatibility.

[0] http://www.mipi.org/specifications/sys-t

Alexander Shishkin (16):
  stm class: Rework policy node fallback
  stm class: Clarify configfs root type/operations names
  stm class: Clean up stp_configfs_init
  stm class: Introduce framing protocol drivers
  stm class: Add a helper for writing data packets
  stm class: Factor out default framing protocol
  stm class: Switch over to the protocol driver
  stm class: Add MIPI SyS-T protocol support
  stm class: p_sys-t: Add support for CLOCKSYNC packets
  stm class: p_sys-t: Document the configfs interface
  stm class: Document the MIPI SyS-T protocol usage
  intel_th: SPDX-ify the documentation
  stm class: SPDX-ify the documentation
  stm class: heartbeat: Fix whitespace
  lib: Add memcat_p(): paste 2 pointer arrays together
  stm class: Use memcat_p()

 .../ABI/testing/configfs-stp-policy-p_sys-t   |  41 ++
 Documentation/trace/intel_th.rst              |   2 +
 Documentation/trace/stm.rst                   |   2 +
 Documentation/trace/sys-t.rst                 |  62 +++
 drivers/hwtracing/stm/Kconfig                 |  29 ++
 drivers/hwtracing/stm/Makefile                |   6 +
 drivers/hwtracing/stm/core.c                  | 292 +++++++++++---
 drivers/hwtracing/stm/heartbeat.c             |   2 +-
 drivers/hwtracing/stm/p_basic.c               |  47 +++
 drivers/hwtracing/stm/p_sys-t.c               | 381 ++++++++++++++++++
 drivers/hwtracing/stm/policy.c                | 148 +++++--
 drivers/hwtracing/stm/stm.h                   |  57 ++-
 include/linux/string.h                        |   7 +
 lib/Kconfig.debug                             |   8 +
 lib/Makefile                                  |   1 +
 lib/string.c                                  |  31 ++
 lib/test_memcat_p.c                           | 115 ++++++
 17 files changed, 1138 insertions(+), 93 deletions(-)
 create mode 100644 Documentation/ABI/testing/configfs-stp-policy-p_sys-t
 create mode 100644 Documentation/trace/sys-t.rst
 create mode 100644 drivers/hwtracing/stm/p_basic.c
 create mode 100644 drivers/hwtracing/stm/p_sys-t.c
 create mode 100644 lib/test_memcat_p.c

-- 
2.18.0


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

end of thread, other threads:[~2018-10-03 13:04 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-20 12:45 [QUEUED v20180920 00/16] stm class/intel_th: Queued updates for v4.20 Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 01/16] stm class: Rework policy node fallback Alexander Shishkin
2018-09-27 16:31   ` Mathieu Poirier
2018-09-20 12:45 ` [QUEUED v20180920 02/16] stm class: Clarify configfs root type/operations names Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 03/16] stm class: Clean up stp_configfs_init Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 04/16] stm class: Introduce framing protocol drivers Alexander Shishkin
2018-09-27 16:46   ` Mathieu Poirier
2018-10-03 13:03     ` Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 05/16] stm class: Add a helper for writing data packets Alexander Shishkin
2018-09-27 17:07   ` Mathieu Poirier
2018-10-03 12:58     ` Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 06/16] stm class: Factor out default framing protocol Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 07/16] stm class: Switch over to the protocol driver Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 08/16] stm class: Add MIPI SyS-T protocol support Alexander Shishkin
2018-09-27 17:08   ` Mathieu Poirier
2018-09-20 12:45 ` [QUEUED v20180920 09/16] stm class: p_sys-t: Add support for CLOCKSYNC packets Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 10/16] stm class: p_sys-t: Document the configfs interface Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 11/16] stm class: Document the MIPI SyS-T protocol usage Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 12/16] intel_th: SPDX-ify the documentation Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 13/16] stm class: " Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 14/16] stm class: heartbeat: Fix whitespace Alexander Shishkin
2018-09-20 12:45 ` [QUEUED v20180920 15/16] lib: Add memcat_p(): paste 2 pointer arrays together Alexander Shishkin
2018-09-20 13:00   ` Greg Kroah-Hartman
2018-09-21 16:56   ` Andy Shevchenko
2018-09-20 12:45 ` [QUEUED v20180920 16/16] stm class: Use memcat_p() Alexander Shishkin
2018-09-27 17:18 ` [QUEUED v20180920 00/16] stm class/intel_th: Queued updates for v4.20 Mathieu Poirier
2018-10-03 12:52   ` Alexander Shishkin

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).