@@ -22,11 +22,13 @@
#include "../../util/thread_map.h"
#include "../../util/cs-etm.h"
+#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#define ENABLE_SINK_MAX 128
#define CS_BUS_DEVICE_PATH "/bus/coresight/devices/"
+#define AMBA_BUS_DEVICE_PATH "/bus/amba/devices/"
struct cs_etm_recording {
struct auxtrace_record itr;
@@ -619,6 +621,41 @@ static FILE *cs_device__open_file(const char *name)
}
+static int cs_etm_check_drv_config_term(const char *name, u64 *addr)
+{
+ char path[PATH_MAX];
+ const char *sysfs;
+ int err;
+ FILE *file;
+ u64 start;
+
+ /* CS devices are all found under sysFS */
+ sysfs = sysfs__mountpoint();
+ if (!sysfs)
+ return -EINVAL;
+
+ /* The resource file contains the HW start address of this component */
+ snprintf(path, PATH_MAX,
+ "%s" AMBA_BUS_DEVICE_PATH "%s" "/resource", sysfs, name);
+
+ file = fopen(path, "r");
+ if (!file) {
+ pr_debug("Unable to open file: %s\n", path);
+ return -EINVAL;
+ }
+
+ /* We just need the first value */
+ err = fscanf(file, "%016lx", &start);
+ if (err != 1) {
+ pr_debug("Unable to get resource start value for: %s\n", path);
+ return -EINVAL;
+ }
+
+ *addr = start;
+
+ return 0;
+}
+
static int __printf(2, 3) cs_device__print_file(const char *name, const char *fmt, ...)
{
va_list args;
@@ -635,7 +672,7 @@ static int __printf(2, 3) cs_device__print_file(const char *name, const char *fm
return ret;
}
-static int cs_etm_set_drv_config_term(struct perf_evsel_config_term *term)
+static int cs_etm_set_drv_config_term_sysfs(struct perf_evsel_config_term *term)
{
int ret;
char enable_sink[ENABLE_SINK_MAX];
@@ -650,6 +687,21 @@ static int cs_etm_set_drv_config_term(struct perf_evsel_config_term *term)
return 0;
}
+static int cs_etm_set_drv_config_term_ioctl(struct perf_evsel *evsel,
+ struct perf_evsel_config_term *term)
+{
+ u64 addr;
+ int ret;
+
+ /* First check the input */
+ ret = cs_etm_check_drv_config_term(term->val.drv_cfg, &addr);
+ if (ret)
+ return ret;
+
+ /* All good, apply configuration */
+ return perf_evsel__apply_drv_config(evsel, addr);
+}
+
int cs_etm_set_drv_config(struct perf_evsel *evsel,
struct perf_evsel_config_term **err_term)
{
@@ -660,7 +712,17 @@ int cs_etm_set_drv_config(struct perf_evsel *evsel,
if (term->type != PERF_EVSEL__CONFIG_TERM_DRV_CFG)
continue;
- err = cs_etm_set_drv_config_term(term);
+ /* First try the new interface, i.e ioctl() */
+ err = cs_etm_set_drv_config_term_ioctl(evsel, term);
+ if (!err)
+ continue;
+
+ /*
+ * Something went wrong, we are probably working with an older
+ * kernel. As such use the sysFS interface, which will only
+ * work for per-thread scenarios.
+ */
+ err = cs_etm_set_drv_config_term_sysfs(term);
if (err) {
*err_term = term;
break;
@@ -1195,6 +1195,12 @@ static int perf_evsel__append_filter(struct perf_evsel *evsel,
return -1;
}
+int perf_evsel__apply_drv_config(struct perf_evsel *evsel, u64 addr)
+{
+ return perf_evsel__run_ioctl(evsel,
+ PERF_EVENT_IOC_SET_DRV_CONFIG, &addr);
+}
+
int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter)
{
return perf_evsel__append_filter(evsel, "(%s) && (%s)", filter);
@@ -276,6 +276,7 @@ int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter);
int perf_evsel__append_addr_filter(struct perf_evsel *evsel,
const char *filter);
int perf_evsel__apply_filter(struct perf_evsel *evsel, const char *filter);
+int perf_evsel__apply_drv_config(struct perf_evsel *evsel, u64 addr);
int perf_evsel__enable(struct perf_evsel *evsel);
int perf_evsel__disable(struct perf_evsel *evsel);
The communication of sink information for a trace session doesn't work when more than one CPU is involved in the scenario due to the static nature of sysfs. As such communicate the sink information to each event by using the an ioctl command. The information sent to the kernel is the component's HW address, which is guaranteed to be unique on the CoreSight bus and known to the kernel. Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> --- tools/perf/arch/arm/util/cs-etm.c | 66 +++++++++++++++++++++++++++++++++++++-- tools/perf/util/evsel.c | 6 ++++ tools/perf/util/evsel.h | 1 + 3 files changed, 71 insertions(+), 2 deletions(-) -- 2.7.4