perf pmu: Use relative path for sysfs scan
[platform/kernel/linux-starfive.git] / tools / perf / util / pmu.h
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 <stdio.h>
11 #include "parse-events.h"
12 #include "pmu-events/pmu-events.h"
13
14 struct evsel_config_term;
15 struct perf_cpu_map;
16 struct print_callbacks;
17
18 enum {
19         PERF_PMU_FORMAT_VALUE_CONFIG,
20         PERF_PMU_FORMAT_VALUE_CONFIG1,
21         PERF_PMU_FORMAT_VALUE_CONFIG2,
22         PERF_PMU_FORMAT_VALUE_CONFIG3,
23         PERF_PMU_FORMAT_VALUE_CONFIG_END,
24 };
25
26 #define PERF_PMU_FORMAT_BITS 64
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         double scale;
137         bool per_pkg;
138         bool snapshot;
139 };
140
141 #define UNIT_MAX_LEN    31 /* max length for event unit name */
142
143 /**
144  * struct perf_pmu_alias - An event either read from sysfs or builtin in
145  * pmu-events.c, created by parsing the pmu-events json files.
146  */
147 struct perf_pmu_alias {
148         /** @name: Name of the event like "mem-loads". */
149         char *name;
150         /** @desc: Optional short description of the event. */
151         char *desc;
152         /** @long_desc: Optional long description. */
153         char *long_desc;
154         /**
155          * @topic: Optional topic such as cache or pipeline, particularly for
156          * json events.
157          */
158         char *topic;
159         /**
160          * @str: Comma separated parameter list like
161          * "event=0xcd,umask=0x1,ldlat=0x3".
162          */
163         char *str;
164         /** @terms: Owned list of the original parsed parameters. */
165         struct list_head terms;
166         /** @list: List element of struct perf_pmu aliases. */
167         struct list_head list;
168         /** @unit: Units for the event, such as bytes or cache lines. */
169         char unit[UNIT_MAX_LEN+1];
170         /** @scale: Value to scale read counter values by. */
171         double scale;
172         /**
173          * @per_pkg: Does the file
174          * <sysfs>/bus/event_source/devices/<pmu_name>/events/<name>.per-pkg or
175          * equivalent json value exist and have the value 1.
176          */
177         bool per_pkg;
178         /**
179          * @snapshot: Does the file
180          * <sysfs>/bus/event_source/devices/<pmu_name>/events/<name>.snapshot
181          * exist and have the value 1.
182          */
183         bool snapshot;
184         /**
185          * @deprecated: Is the event hidden and so not shown in perf list by
186          * default.
187          */
188         bool deprecated;
189         /** @pmu_name: The name copied from struct perf_pmu. */
190         char *pmu_name;
191 };
192
193 struct perf_pmu *perf_pmu__find(const char *name);
194 struct perf_pmu *perf_pmu__find_by_type(unsigned int type);
195 void pmu_add_sys_aliases(struct list_head *head, struct perf_pmu *pmu);
196 int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
197                      struct list_head *head_terms,
198                      struct parse_events_error *error);
199 int perf_pmu__config_terms(const char *pmu_name, struct list_head *formats,
200                            struct perf_event_attr *attr,
201                            struct list_head *head_terms,
202                            bool zero, struct parse_events_error *error);
203 __u64 perf_pmu__format_bits(struct list_head *formats, const char *name);
204 int perf_pmu__format_type(struct list_head *formats, const char *name);
205 int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms,
206                           struct perf_pmu_info *info);
207 struct list_head *perf_pmu__alias(struct perf_pmu *pmu,
208                                   struct list_head *head_terms);
209 void perf_pmu_error(struct list_head *list, char *name, char const *msg);
210
211 int perf_pmu__new_format(struct list_head *list, char *name,
212                          int config, unsigned long *bits);
213 void perf_pmu__set_format(unsigned long *bits, long from, long to);
214 int perf_pmu__format_parse(int dirfd, struct list_head *head);
215 void perf_pmu__del_formats(struct list_head *formats);
216
217 struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu);
218
219 bool is_pmu_core(const char *name);
220 void print_pmu_events(const struct print_callbacks *print_cb, void *print_state);
221 bool pmu_have_event(const char *pname, const char *name);
222
223 int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt, ...) __scanf(3, 4);
224
225 bool perf_pmu__file_exists(struct perf_pmu *pmu, const char *name);
226
227 int perf_pmu__test(void);
228
229 struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu);
230 void pmu_add_cpu_aliases_table(struct list_head *head, struct perf_pmu *pmu,
231                                const struct pmu_events_table *table);
232
233 char *perf_pmu__getcpuid(struct perf_pmu *pmu);
234 const struct pmu_events_table *pmu_events_table__find(void);
235 const struct pmu_metrics_table *pmu_metrics_table__find(void);
236 bool pmu_uncore_alias_match(const char *pmu_name, const char *name);
237 void perf_pmu_free_alias(struct perf_pmu_alias *alias);
238
239 int perf_pmu__convert_scale(const char *scale, char **end, double *sval);
240
241 int perf_pmu__caps_parse(struct perf_pmu *pmu);
242
243 void perf_pmu__warn_invalid_config(struct perf_pmu *pmu, __u64 config,
244                                    const char *name);
245 void perf_pmu__warn_invalid_formats(struct perf_pmu *pmu);
246
247 bool perf_pmu__has_hybrid(void);
248 int perf_pmu__match(char *pattern, char *name, char *tok);
249
250 int perf_pmu__cpus_match(struct perf_pmu *pmu, struct perf_cpu_map *cpus,
251                          struct perf_cpu_map **mcpus_ptr,
252                          struct perf_cpu_map **ucpus_ptr);
253
254 char *pmu_find_real_name(const char *name);
255 char *pmu_find_alias_name(const char *name);
256 double perf_pmu__cpu_slots_per_cycle(void);
257 int perf_pmu__event_source_devices_scnprintf(char *pathname, size_t size);
258 int perf_pmu__pathname_scnprintf(char *buf, size_t size,
259                                  const char *pmu_name, const char *filename);
260 int perf_pmu__event_source_devices_fd(void);
261 int perf_pmu__pathname_fd(int dirfd, const char *pmu_name, const char *filename, int flags);
262 FILE *perf_pmu__open_file(struct perf_pmu *pmu, const char *name);
263
264 void perf_pmu__destroy(void);
265
266 #endif /* __PMU_H */