xref: /linux/tools/perf/util/pmu.h (revision dd093fb0)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PMU_H
3 #define __PMU_H
4 
5 #include <linux/bitmap.h>
6 #include <linux/compiler.h>
7 #include <linux/perf_event.h>
8 #include <linux/list.h>
9 #include <stdbool.h>
10 #include "parse-events.h"
11 #include "pmu-events/pmu-events.h"
12 
13 struct evsel_config_term;
14 struct perf_cpu_map;
15 struct print_callbacks;
16 
17 enum {
18 	PERF_PMU_FORMAT_VALUE_CONFIG,
19 	PERF_PMU_FORMAT_VALUE_CONFIG1,
20 	PERF_PMU_FORMAT_VALUE_CONFIG2,
21 	PERF_PMU_FORMAT_VALUE_CONFIG_END,
22 };
23 
24 #define PERF_PMU_FORMAT_BITS 64
25 #define EVENT_SOURCE_DEVICE_PATH "/bus/event_source/devices/"
26 #define CPUS_TEMPLATE_CPU	"%s/bus/event_source/devices/%s/cpus"
27 #define MAX_PMU_NAME_LEN 128
28 
29 struct perf_event_attr;
30 
31 struct perf_pmu_caps {
32 	char *name;
33 	char *value;
34 	struct list_head list;
35 };
36 
37 /**
38  * struct perf_pmu - hi
39  */
40 struct perf_pmu {
41 	/** @name: The name of the PMU such as "cpu". */
42 	char *name;
43 	/**
44 	 * @alias_name: Optional alternate name for the PMU determined in
45 	 * architecture specific code.
46 	 */
47 	char *alias_name;
48 	/**
49 	 * @id: Optional PMU identifier read from
50 	 * <sysfs>/bus/event_source/devices/<name>/identifier.
51 	 */
52 	char *id;
53 	/**
54 	 * @type: Perf event attributed type value, read from
55 	 * <sysfs>/bus/event_source/devices/<name>/type.
56 	 */
57 	__u32 type;
58 	/**
59 	 * @selectable: Can the PMU name be selected as if it were an event?
60 	 */
61 	bool selectable;
62 	/**
63 	 * @is_uncore: Is the PMU not within the CPU core? Determined by the
64 	 * presence of <sysfs>/bus/event_source/devices/<name>/cpumask.
65 	 */
66 	bool is_uncore;
67 	/**
68 	 * @auxtrace: Are events auxiliary events? Determined in architecture
69 	 * specific code.
70 	 */
71 	bool auxtrace;
72 	/**
73 	 * @max_precise: Number of levels of :ppp precision supported by the
74 	 * PMU, read from
75 	 * <sysfs>/bus/event_source/devices/<name>/caps/max_precise.
76 	 */
77 	int max_precise;
78 	/**
79 	 * @default_config: Optional default perf_event_attr determined in
80 	 * architecture specific code.
81 	 */
82 	struct perf_event_attr *default_config;
83 	/**
84 	 * @cpus: Empty or the contents of either of:
85 	 * <sysfs>/bus/event_source/devices/<name>/cpumask.
86 	 * <sysfs>/bus/event_source/devices/<cpu>/cpus.
87 	 */
88 	struct perf_cpu_map *cpus;
89 	/**
90 	 * @format: Holds the contents of files read from
91 	 * <sysfs>/bus/event_source/devices/<name>/format/. The contents specify
92 	 * which event parameter changes what config, config1 or config2 bits.
93 	 */
94 	struct list_head format;
95 	/**
96 	 * @aliases: List of struct perf_pmu_alias. Each alias corresponds to an
97 	 * event read from <sysfs>/bus/event_source/devices/<name>/events/ or
98 	 * from json events in pmu-events.c.
99 	 */
100 	struct list_head aliases;
101 	/** @caps_initialized: Has the list caps been initialized? */
102 	bool caps_initialized;
103 	/** @nr_caps: The length of the list caps. */
104 	u32 nr_caps;
105 	/**
106 	 * @caps: Holds the contents of files read from
107 	 * <sysfs>/bus/event_source/devices/<name>/caps/.
108 	 *
109 	 * The contents are pairs of the filename with the value of its
110 	 * contents, for example, max_precise (see above) may have a value of 3.
111 	 */
112 	struct list_head caps;
113 	/** @list: Element on pmus list in pmu.c. */
114 	struct list_head list;
115 	/** @hybrid_list: Element on perf_pmu__hybrid_pmus. */
116 	struct list_head hybrid_list;
117 
118 	/**
119 	 * @missing_features: Features to inhibit when events on this PMU are
120 	 * opened.
121 	 */
122 	struct {
123 		/**
124 		 * @exclude_guest: Disables perf_event_attr exclude_guest and
125 		 * exclude_host.
126 		 */
127 		bool exclude_guest;
128 	} missing_features;
129 };
130 
131 /** @perf_pmu__fake: A special global PMU used for testing. */
132 extern struct perf_pmu perf_pmu__fake;
133 
134 struct perf_pmu_info {
135 	const char *unit;
136 	const char *metric_expr;
137 	const char *metric_name;
138 	double scale;
139 	bool per_pkg;
140 	bool snapshot;
141 };
142 
143 #define UNIT_MAX_LEN	31 /* max length for event unit name */
144 
145 /**
146  * struct perf_pmu_alias - An event either read from sysfs or builtin in
147  * pmu-events.c, created by parsing the pmu-events json files.
148  */
149 struct perf_pmu_alias {
150 	/** @name: Name of the event like "mem-loads". */
151 	char *name;
152 	/** @desc: Optional short description of the event. */
153 	char *desc;
154 	/** @long_desc: Optional long description. */
155 	char *long_desc;
156 	/**
157 	 * @topic: Optional topic such as cache or pipeline, particularly for
158 	 * json events.
159 	 */
160 	char *topic;
161 	/**
162 	 * @str: Comma separated parameter list like
163 	 * "event=0xcd,umask=0x1,ldlat=0x3".
164 	 */
165 	char *str;
166 	/** @terms: Owned list of the original parsed parameters. */
167 	struct list_head terms;
168 	/** @list: List element of struct perf_pmu aliases. */
169 	struct list_head list;
170 	/** @unit: Units for the event, such as bytes or cache lines. */
171 	char unit[UNIT_MAX_LEN+1];
172 	/** @scale: Value to scale read counter values by. */
173 	double scale;
174 	/**
175 	 * @per_pkg: Does the file
176 	 * <sysfs>/bus/event_source/devices/<pmu_name>/events/<name>.per-pkg or
177 	 * equivalent json value exist and have the value 1.
178 	 */
179 	bool per_pkg;
180 	/**
181 	 * @snapshot: Does the file
182 	 * <sysfs>/bus/event_source/devices/<pmu_name>/events/<name>.snapshot
183 	 * exist and have the value 1.
184 	 */
185 	bool snapshot;
186 	/**
187 	 * @deprecated: Is the event hidden and so not shown in perf list by
188 	 * default.
189 	 */
190 	bool deprecated;
191 	/**
192 	 * @metric_expr: A metric expression associated with an event. Doing
193 	 * this makes little sense due to scale and unit applying to both.
194 	 */
195 	char *metric_expr;
196 	/** @metric_name: A name for the metric. unit applying to both. */
197 	char *metric_name;
198 	/** @pmu_name: The name copied from struct perf_pmu. */
199 	char *pmu_name;
200 };
201 
202 struct perf_pmu *perf_pmu__find(const char *name);
203 struct perf_pmu *perf_pmu__find_by_type(unsigned int type);
204 void pmu_add_sys_aliases(struct list_head *head, struct perf_pmu *pmu);
205 int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
206 		     struct list_head *head_terms,
207 		     struct parse_events_error *error);
208 int perf_pmu__config_terms(const char *pmu_name, struct list_head *formats,
209 			   struct perf_event_attr *attr,
210 			   struct list_head *head_terms,
211 			   bool zero, struct parse_events_error *error);
212 __u64 perf_pmu__format_bits(struct list_head *formats, const char *name);
213 int perf_pmu__format_type(struct list_head *formats, const char *name);
214 int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
215 			  struct perf_pmu_info *info);
216 struct list_head *perf_pmu__alias(struct perf_pmu *pmu,
217 				  struct list_head *head_terms);
218 void perf_pmu_error(struct list_head *list, char *name, char const *msg);
219 
220 int perf_pmu__new_format(struct list_head *list, char *name,
221 			 int config, unsigned long *bits);
222 void perf_pmu__set_format(unsigned long *bits, long from, long to);
223 int perf_pmu__format_parse(char *dir, struct list_head *head);
224 void perf_pmu__del_formats(struct list_head *formats);
225 
226 struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu);
227 
228 bool is_pmu_core(const char *name);
229 void print_pmu_events(const struct print_callbacks *print_cb, void *print_state);
230 bool pmu_have_event(const char *pname, const char *name);
231 
232 int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt, ...) __scanf(3, 4);
233 
234 int perf_pmu__test(void);
235 
236 struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu);
237 void pmu_add_cpu_aliases_table(struct list_head *head, struct perf_pmu *pmu,
238 			       const struct pmu_events_table *table);
239 
240 char *perf_pmu__getcpuid(struct perf_pmu *pmu);
241 const struct pmu_events_table *pmu_events_table__find(void);
242 bool pmu_uncore_alias_match(const char *pmu_name, const char *name);
243 void perf_pmu_free_alias(struct perf_pmu_alias *alias);
244 
245 int perf_pmu__convert_scale(const char *scale, char **end, double *sval);
246 
247 int perf_pmu__caps_parse(struct perf_pmu *pmu);
248 
249 void perf_pmu__warn_invalid_config(struct perf_pmu *pmu, __u64 config,
250 				   const char *name);
251 void perf_pmu__warn_invalid_formats(struct perf_pmu *pmu);
252 
253 bool perf_pmu__has_hybrid(void);
254 int perf_pmu__match(char *pattern, char *name, char *tok);
255 
256 int perf_pmu__cpus_match(struct perf_pmu *pmu, struct perf_cpu_map *cpus,
257 			 struct perf_cpu_map **mcpus_ptr,
258 			 struct perf_cpu_map **ucpus_ptr);
259 
260 char *pmu_find_real_name(const char *name);
261 char *pmu_find_alias_name(const char *name);
262 #endif /* __PMU_H */
263