pmu.h 2.11 KB
Newer Older
1 2 3
#ifndef __PMU_H
#define __PMU_H

Borislav Petkov's avatar
Borislav Petkov committed
4
#include <linux/bitmap.h>
5
#include <linux/perf_event.h>
6
#include <stdbool.h>
7 8 9 10 11 12 13 14 15

enum {
	PERF_PMU_FORMAT_VALUE_CONFIG,
	PERF_PMU_FORMAT_VALUE_CONFIG1,
	PERF_PMU_FORMAT_VALUE_CONFIG2,
};

#define PERF_PMU_FORMAT_BITS 64

16 17
struct perf_event_attr;

18 19 20
struct perf_pmu {
	char *name;
	__u32 type;
21
	bool selectable;
22
	struct perf_event_attr *default_config;
23
	struct cpu_map *cpus;
24 25 26
	struct list_head format;  /* HEAD struct perf_pmu_format -> list */
	struct list_head aliases; /* HEAD struct perf_pmu_alias -> list */
	struct list_head list;    /* ELEM */
27 28
};

29 30 31 32 33
struct perf_pmu_info {
	const char *unit;
	double scale;
};

34 35 36 37 38 39 40 41 42 43
#define UNIT_MAX_LEN	31 /* max length for event unit name */

struct perf_pmu_alias {
	char *name;
	struct list_head terms; /* HEAD struct parse_events_term -> list */
	struct list_head list;  /* ELEM */
	char unit[UNIT_MAX_LEN+1];
	double scale;
};

44
struct perf_pmu *perf_pmu__find(const char *name);
45 46
int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
		     struct list_head *head_terms);
47 48
int perf_pmu__config_terms(struct list_head *formats,
			   struct perf_event_attr *attr,
49 50
			   struct list_head *head_terms,
			   bool zero);
51
int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
52
			  struct perf_pmu_info *info);
53
struct list_head *perf_pmu__alias(struct perf_pmu *pmu,
54
				  struct list_head *head_terms);
55 56 57 58 59 60
int perf_pmu_wrap(void);
void perf_pmu_error(struct list_head *list, char *name, char const *msg);

int perf_pmu__new_format(struct list_head *list, char *name,
			 int config, unsigned long *bits);
void perf_pmu__set_format(unsigned long *bits, long from, long to);
61
int perf_pmu__format_parse(char *dir, struct list_head *head);
62

63 64
struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu);

65
void print_pmu_events(const char *event_glob, bool name_only);
66
bool pmu_have_event(const char *pname, const char *name);
67

68 69 70
int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
			...) __attribute__((format(scanf, 3, 4)));

71
int perf_pmu__test(void);
72 73 74

struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu);

75
#endif /* __PMU_H */