Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / perf / arch / arm / util / pmu.c
blobbbc297a7e2e3517059f9c3b33816deb69074ac20
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright(C) 2015 Linaro Limited. All rights reserved.
4 * Author: Mathieu Poirier <mathieu.poirier@linaro.org>
5 */
7 #include <string.h>
8 #include <linux/coresight-pmu.h>
9 #include <linux/perf_event.h>
10 #include <linux/string.h>
12 #include "arm-spe.h"
13 #include "../../util/pmu.h"
15 struct perf_event_attr
16 *perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
18 #ifdef HAVE_AUXTRACE_SUPPORT
19 if (!strcmp(pmu->name, CORESIGHT_ETM_PMU_NAME)) {
20 /* add ETM default config here */
21 pmu->selectable = true;
22 #if defined(__aarch64__)
23 } else if (strstarts(pmu->name, ARM_SPE_PMU_NAME)) {
24 return arm_spe_pmu_default_config(pmu);
25 #endif
28 #endif
29 return NULL;