mbox series

[00/45] coresight: next v5.2-rc5

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

Message

Mathieu Poirier June 19, 2019, 5:29 p.m. UTC
Good morning,

These are the patches I have collected for the 5.3 cycle.  Please consider
having a look when you have the opportunity.

Applies cleanly on your char-misc-next branch (312d362c6ae4).

Thanks,
Mathieu

Arnd Bergmann (1):
  coresight: platform: add OF/APCI dependency

Dan Carpenter (1):
  coresight: Potential uninitialized variable in probe()

Mathieu Poirier (6):
  coresight: etb10: Properly set AUX buffer head in snapshot mode
  coresight: tmc-etr: Properly set AUX buffer head in snapshot mode
  coresight: tmc-etf: Properly set AUX buffer head in snapshot mode
  coresight: tmc-etf: Fix snapshot mode update function
  coresight: perf: Don't set the truncated flag in snapshot mode
  coresight: Use coresight device names for sinks in PMU attribute

Suzuki K Poulose (36):
  coresight: funnel: Clean up device book keeping
  coresight: replicator: Cleanup device tracking
  coresight: tmc: Clean up device specific data
  coresight: catu: Cleanup device specific data
  coresight: tpiu: Clean up device specific data
  coresight: stm: Cleanup device specific data
  coresight: etm: Clean up device specific data
  coresight: etb10: Clean up device specific data
  coresight: Rename of_coresight to coresight-platform
  coresight: etm3x: Rearrange cp14 access detection
  coresight: stm: Rearrange probing the stimulus area
  coresight: tmc-etr: Rearrange probing default buffer size
  coresight: platform: Make memory allocation helper generic
  coresight: Make sure device uses DT for obsolete compatible check
  coresight: Introduce generic platform data helper
  coresight: Make device to CPU mapping generic
  coresight: Remove cpu field from platform data
  coresight: Remove name from platform description
  coresight: Cleanup coresight_remove_conns
  coresight: Reuse platform data structure for connection tracking
  coresight: Rearrange platform data probing
  coresight: Add support for releasing platform specific data
  coresight: platform: Use fwnode handle for device search
  coresight: Use fwnode handle instead of device names
  coresight: Use platform agnostic names
  coresight: stm: ACPI support for parsing stimulus base
  coresight: Support for ACPI bindings
  coresight: acpi: Support for AMBA components
  coresight: acpi: Support for platform devices
  coresight: Add dummy definition for of_coresight_get_cpu()
  coresight: tmc-etr: Do not call smp_processor_id() from preemptible
  coresight: tmc-etr: alloc_perf_buf: Do not call smp_processor_id from
    preemptible
  coresight: tmc-etf: Do not call smp_processor_id from preemptible
  coresight: etb10: Do not call smp_processor_id from preemptible
  coresight: etm3x: Smatch: Fix potential NULL pointer dereference
  coresight: tmc: Smatch: Fix potential NULL pointer dereference

Wei Yongjun (1):
  coresight: replicator: Add terminate entry for acpi_device_id tables

 drivers/acpi/acpi_amba.c                      |   9 +
 drivers/hwtracing/coresight/Kconfig           |   1 +
 drivers/hwtracing/coresight/Makefile          |   3 +-
 drivers/hwtracing/coresight/coresight-catu.c  |  40 +-
 drivers/hwtracing/coresight/coresight-catu.h  |   1 -
 .../hwtracing/coresight/coresight-cpu-debug.c |   3 +-
 drivers/hwtracing/coresight/coresight-etb10.c |  78 +-
 .../hwtracing/coresight/coresight-etm-perf.c  |   8 +-
 drivers/hwtracing/coresight/coresight-etm.h   |   6 +-
 .../coresight/coresight-etm3x-sysfs.c         |  12 +-
 drivers/hwtracing/coresight/coresight-etm3x.c |  46 +-
 drivers/hwtracing/coresight/coresight-etm4x.c |  37 +-
 drivers/hwtracing/coresight/coresight-etm4x.h |   2 -
 .../hwtracing/coresight/coresight-funnel.c    |  36 +-
 .../hwtracing/coresight/coresight-platform.c  | 815 ++++++++++++++++++
 drivers/hwtracing/coresight/coresight-priv.h  |   4 +
 .../coresight/coresight-replicator.c          |  43 +-
 drivers/hwtracing/coresight/coresight-stm.c   | 118 ++-
 .../hwtracing/coresight/coresight-tmc-etf.c   |  43 +-
 .../hwtracing/coresight/coresight-tmc-etr.c   |  80 +-
 drivers/hwtracing/coresight/coresight-tmc.c   |  96 ++-
 drivers/hwtracing/coresight/coresight-tmc.h   |   2 -
 drivers/hwtracing/coresight/coresight-tpiu.c  |  24 +-
 drivers/hwtracing/coresight/coresight.c       | 164 +++-
 drivers/hwtracing/coresight/of_coresight.c    | 297 -------
 include/linux/coresight.h                     |  61 +-
 26 files changed, 1398 insertions(+), 631 deletions(-)
 create mode 100644 drivers/hwtracing/coresight/coresight-platform.c
 delete mode 100644 drivers/hwtracing/coresight/of_coresight.c