diff options
Diffstat (limited to 'tools/perf/arch/s390/util/pmu.c')
| -rw-r--r-- | tools/perf/arch/s390/util/pmu.c | 23 | 
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/perf/arch/s390/util/pmu.c b/tools/perf/arch/s390/util/pmu.c new file mode 100644 index 000000000000..11f03f32e3fd --- /dev/null +++ b/tools/perf/arch/s390/util/pmu.c @@ -0,0 +1,23 @@ +// SPDX-License-Identifier: GPL-2.0 + +/* + * Copyright IBM Corp. 2023 + * Author(s): Thomas Richter <[email protected]> + */ + +#include <string.h> + +#include "../../../util/pmu.h" + +#define	S390_PMUPAI_CRYPTO	"pai_crypto" +#define	S390_PMUPAI_EXT		"pai_ext" +#define	S390_PMUCPUM_CF		"cpum_cf" + +struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu) +{ +	if (!strcmp(pmu->name, S390_PMUPAI_CRYPTO) || +	    !strcmp(pmu->name, S390_PMUPAI_EXT) || +	    !strcmp(pmu->name, S390_PMUCPUM_CF)) +		pmu->selectable = true; +	return NULL; +}  |