]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - tools/perf/util/pmu.h
perf tools: Stop using a global trace events description list
[mirror_ubuntu-zesty-kernel.git] / tools / perf / util / pmu.h
CommitLineData
cd82a32e
JO
1#ifndef __PMU_H
2#define __PMU_H
3
4#include <linux/bitops.h>
5#include "../../../include/linux/perf_event.h"
6
7enum {
8 PERF_PMU_FORMAT_VALUE_CONFIG,
9 PERF_PMU_FORMAT_VALUE_CONFIG1,
10 PERF_PMU_FORMAT_VALUE_CONFIG2,
11};
12
13#define PERF_PMU_FORMAT_BITS 64
14
15struct perf_pmu__format {
16 char *name;
17 int value;
18 DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
19 struct list_head list;
20};
21
a6146d50
ZY
22struct perf_pmu__alias {
23 char *name;
24 struct list_head terms;
25 struct list_head list;
26};
27
cd82a32e
JO
28struct perf_pmu {
29 char *name;
30 __u32 type;
31 struct list_head format;
a6146d50 32 struct list_head aliases;
cd82a32e
JO
33 struct list_head list;
34};
35
36struct perf_pmu *perf_pmu__find(char *name);
37int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
38 struct list_head *head_terms);
a6146d50
ZY
39int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms);
40struct list_head *perf_pmu__alias(struct perf_pmu *pmu,
41 struct list_head *head_terms);
cd82a32e
JO
42int perf_pmu_wrap(void);
43void perf_pmu_error(struct list_head *list, char *name, char const *msg);
44
45int perf_pmu__new_format(struct list_head *list, char *name,
46 int config, unsigned long *bits);
47void perf_pmu__set_format(unsigned long *bits, long from, long to);
48
49int perf_pmu__test(void);
50#endif /* __PMU_H */