lkml.org 
[lkml]   [2015]   [Sep]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 15/20] coresight: etm-perf: implementing 'setup_aux()' API
Date
Before trace can be collected the PMU needs to get a handle
on the mmpap'ed memory that was granted. Since the collection
of traces can be done by sink buffers of various types,
representation of the memory layout is done at the sink level
rather than the tracer PMU driver.

Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
---
drivers/hwtracing/coresight/coresight-etm-perf.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)

diff --git a/drivers/hwtracing/coresight/coresight-etm-perf.c b/drivers/hwtracing/coresight/coresight-etm-perf.c
index a21171a3e929..3aeb4215bb22 100644
--- a/drivers/hwtracing/coresight/coresight-etm-perf.c
+++ b/drivers/hwtracing/coresight/coresight-etm-perf.c
@@ -227,6 +227,27 @@ out:
return ret;
}

+static void *etm_setup_aux(int cpu, void **pages,
+ int nr_pages, bool overwrite)
+{
+ struct coresight_device *csdev;
+
+ if (cpu == -1)
+ cpu = smp_processor_id();
+
+ csdev = per_cpu(csdev_sink, cpu);
+ if (!csdev)
+ return NULL;
+
+ return sink_ops(csdev)->setup_aux(csdev, cpu, pages,
+ nr_pages, overwrite);
+}
+
+static void etm_free_aux(void *data)
+{
+ kfree(data);
+}
+
static int __init etm_perf_init(void)
{
etm_pmu.capabilities = PERF_PMU_CAP_EXCLUSIVE;
@@ -235,6 +256,8 @@ static int __init etm_perf_init(void)
etm_pmu.task_ctx_nr = perf_sw_context;
etm_pmu.read = etm_event_read;
etm_pmu.event_init = etm_event_init;
+ etm_pmu.setup_aux = etm_setup_aux;
+ etm_pmu.free_aux = etm_free_aux;

return perf_pmu_register(&etm_pmu, CORESIGHT_ETM_PMU_NAME, -1);
}
--
1.9.1


\
 
 \ /
  Last update: 2015-09-18 18:41    [W:0.341 / U:0.516 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site