OSDN Git Service

Revert "usb: dwc3: turn off VBUS when leaving host mode"
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / tools / perf / util / evsel.h
1 #ifndef __PERF_EVSEL_H
2 #define __PERF_EVSEL_H 1
3
4 #include <linux/list.h>
5 #include <stdbool.h>
6 #include <stddef.h>
7 #include <linux/perf_event.h>
8 #include <linux/types.h>
9 #include "xyarray.h"
10 #include "symbol.h"
11 #include "cpumap.h"
12 #include "counts.h"
13
14 struct perf_evsel;
15
16 /*
17  * Per fd, to map back from PERF_SAMPLE_ID to evsel, only used when there are
18  * more than one entry in the evlist.
19  */
20 struct perf_sample_id {
21         struct hlist_node       node;
22         u64                     id;
23         struct perf_evsel       *evsel;
24         int                     idx;
25         int                     cpu;
26         pid_t                   tid;
27
28         /* Holds total ID period value for PERF_SAMPLE_READ processing. */
29         u64                     period;
30 };
31
32 struct cgroup_sel;
33
34 /*
35  * The 'struct perf_evsel_config_term' is used to pass event
36  * specific configuration data to perf_evsel__config routine.
37  * It is allocated within event parsing and attached to
38  * perf_evsel::config_terms list head.
39 */
40 enum {
41         PERF_EVSEL__CONFIG_TERM_PERIOD,
42         PERF_EVSEL__CONFIG_TERM_FREQ,
43         PERF_EVSEL__CONFIG_TERM_TIME,
44         PERF_EVSEL__CONFIG_TERM_CALLGRAPH,
45         PERF_EVSEL__CONFIG_TERM_STACK_USER,
46         PERF_EVSEL__CONFIG_TERM_INHERIT,
47         PERF_EVSEL__CONFIG_TERM_DRV_CFG,
48         PERF_EVSEL__CONFIG_TERM_MAX,
49 };
50
51 struct perf_evsel_config_term {
52         struct list_head        list;
53         int     type;
54         union {
55                 u64     period;
56                 u64     freq;
57                 bool    time;
58                 char    *callgraph;
59                 char    *drv_cfg;
60                 u64     stack_user;
61                 bool    inherit;
62         } val;
63 };
64
65 /** struct perf_evsel - event selector
66  *
67  * @evlist - evlist this evsel is in, if it is in one.
68  * @node - To insert it into evlist->entries or in other list_heads, say in
69  *         the event parsing routines.
70  * @name - Can be set to retain the original event name passed by the user,
71  *         so that when showing results in tools such as 'perf stat', we
72  *         show the name used, not some alias.
73  * @id_pos: the position of the event id (PERF_SAMPLE_ID or
74  *          PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of
75  *          struct sample_event
76  * @is_pos: the position (counting backwards) of the event id (PERF_SAMPLE_ID or
77  *          PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if sample_id_all
78  *          is used there is an id sample appended to non-sample events
79  * @priv:   And what is in its containing unnamed union are tool specific
80  * @drv_config_terms: List of configurables sent directly to the PMU driver
81  */
82 struct perf_evsel {
83         struct list_head        node;
84         struct perf_evlist      *evlist;
85         struct perf_event_attr  attr;
86         char                    *filter;
87         struct xyarray          *fd;
88         struct xyarray          *sample_id;
89         u64                     *id;
90         struct perf_counts      *counts;
91         struct perf_counts      *prev_raw_counts;
92         int                     idx;
93         u32                     ids;
94         char                    *name;
95         double                  scale;
96         const char              *unit;
97         struct event_format     *tp_format;
98         off_t                   id_offset;
99         union {
100                 void            *priv;
101                 u64             db_id;
102         };
103         struct cgroup_sel       *cgrp;
104         void                    *handler;
105         struct cpu_map          *cpus;
106         struct cpu_map          *own_cpus;
107         struct thread_map       *threads;
108         unsigned int            sample_size;
109         int                     id_pos;
110         int                     is_pos;
111         bool                    snapshot;
112         bool                    supported;
113         bool                    needs_swap;
114         bool                    no_aux_samples;
115         bool                    immediate;
116         bool                    system_wide;
117         bool                    tracking;
118         bool                    per_pkg;
119         bool                    precise_max;
120         /* parse modifier helper */
121         int                     exclude_GH;
122         int                     nr_members;
123         int                     sample_read;
124         unsigned long           *per_pkg_mask;
125         struct perf_evsel       *leader;
126         char                    *group_name;
127         bool                    cmdline_group_boundary;
128         struct list_head        config_terms;
129         struct list_head        drv_config_terms;
130         int                     bpf_fd;
131 };
132
133 union u64_swap {
134         u64 val64;
135         u32 val32[2];
136 };
137
138 struct cpu_map;
139 struct target;
140 struct thread_map;
141 struct record_opts;
142
143 static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
144 {
145         return evsel->cpus;
146 }
147
148 static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
149 {
150         return perf_evsel__cpus(evsel)->nr;
151 }
152
153 void perf_counts_values__scale(struct perf_counts_values *count,
154                                bool scale, s8 *pscaled);
155
156 void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu, int thread,
157                                 struct perf_counts_values *count);
158
159 int perf_evsel__object_config(size_t object_size,
160                               int (*init)(struct perf_evsel *evsel),
161                               void (*fini)(struct perf_evsel *evsel));
162
163 struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx);
164
165 static inline struct perf_evsel *perf_evsel__new(struct perf_event_attr *attr)
166 {
167         return perf_evsel__new_idx(attr, 0);
168 }
169
170 struct perf_evsel *perf_evsel__newtp_idx(const char *sys, const char *name, int idx);
171
172 /*
173  * Returns pointer with encoded error via <linux/err.h> interface.
174  */
175 static inline struct perf_evsel *perf_evsel__newtp(const char *sys, const char *name)
176 {
177         return perf_evsel__newtp_idx(sys, name, 0);
178 }
179
180 struct event_format *event_format__new(const char *sys, const char *name);
181
182 void perf_evsel__init(struct perf_evsel *evsel,
183                       struct perf_event_attr *attr, int idx);
184 void perf_evsel__exit(struct perf_evsel *evsel);
185 void perf_evsel__delete(struct perf_evsel *evsel);
186
187 void perf_evsel__config(struct perf_evsel *evsel,
188                         struct record_opts *opts);
189
190 int __perf_evsel__sample_size(u64 sample_type);
191 void perf_evsel__calc_id_pos(struct perf_evsel *evsel);
192
193 bool perf_evsel__is_cache_op_valid(u8 type, u8 op);
194
195 #define PERF_EVSEL__MAX_ALIASES 8
196
197 extern const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
198                                        [PERF_EVSEL__MAX_ALIASES];
199 extern const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
200                                           [PERF_EVSEL__MAX_ALIASES];
201 extern const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
202                                               [PERF_EVSEL__MAX_ALIASES];
203 extern const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX];
204 extern const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX];
205 int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
206                                             char *bf, size_t size);
207 const char *perf_evsel__name(struct perf_evsel *evsel);
208
209 const char *perf_evsel__group_name(struct perf_evsel *evsel);
210 int perf_evsel__group_desc(struct perf_evsel *evsel, char *buf, size_t size);
211
212 int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads);
213 void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads);
214
215 void __perf_evsel__set_sample_bit(struct perf_evsel *evsel,
216                                   enum perf_event_sample_format bit);
217 void __perf_evsel__reset_sample_bit(struct perf_evsel *evsel,
218                                     enum perf_event_sample_format bit);
219
220 #define perf_evsel__set_sample_bit(evsel, bit) \
221         __perf_evsel__set_sample_bit(evsel, PERF_SAMPLE_##bit)
222
223 #define perf_evsel__reset_sample_bit(evsel, bit) \
224         __perf_evsel__reset_sample_bit(evsel, PERF_SAMPLE_##bit)
225
226 void perf_evsel__set_sample_id(struct perf_evsel *evsel,
227                                bool use_sample_identifier);
228
229 int perf_evsel__set_filter(struct perf_evsel *evsel, const char *filter);
230 int perf_evsel__append_filter(struct perf_evsel *evsel,
231                               const char *op, const char *filter);
232 int perf_evsel__apply_filter(struct perf_evsel *evsel, int ncpus, int nthreads,
233                              const char *filter);
234 int perf_evsel__apply_drv_configs(struct perf_evsel *evsel,
235                                   int ncpus, int nthreads,
236                                   struct perf_evsel_config_term **err_term);
237 int perf_evsel__enable(struct perf_evsel *evsel, int ncpus, int nthreads);
238 int perf_evsel__disable(struct perf_evsel *evsel);
239
240 int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
241                              struct cpu_map *cpus);
242 int perf_evsel__open_per_thread(struct perf_evsel *evsel,
243                                 struct thread_map *threads);
244 int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
245                      struct thread_map *threads);
246 void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads);
247
248 struct perf_sample;
249
250 void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
251                          const char *name);
252 u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
253                        const char *name);
254
255 static inline char *perf_evsel__strval(struct perf_evsel *evsel,
256                                        struct perf_sample *sample,
257                                        const char *name)
258 {
259         return perf_evsel__rawptr(evsel, sample, name);
260 }
261
262 struct format_field;
263
264 struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name);
265
266 #define perf_evsel__match(evsel, t, c)          \
267         (evsel->attr.type == PERF_TYPE_##t &&   \
268          evsel->attr.config == PERF_COUNT_##c)
269
270 static inline bool perf_evsel__match2(struct perf_evsel *e1,
271                                       struct perf_evsel *e2)
272 {
273         return (e1->attr.type == e2->attr.type) &&
274                (e1->attr.config == e2->attr.config);
275 }
276
277 #define perf_evsel__cmp(a, b)                   \
278         ((a) &&                                 \
279          (b) &&                                 \
280          (a)->attr.type == (b)->attr.type &&    \
281          (a)->attr.config == (b)->attr.config)
282
283 int perf_evsel__read(struct perf_evsel *evsel, int cpu, int thread,
284                      struct perf_counts_values *count);
285
286 int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
287                               int cpu, int thread, bool scale);
288
289 /**
290  * perf_evsel__read_on_cpu - Read out the results on a CPU and thread
291  *
292  * @evsel - event selector to read value
293  * @cpu - CPU of interest
294  * @thread - thread of interest
295  */
296 static inline int perf_evsel__read_on_cpu(struct perf_evsel *evsel,
297                                           int cpu, int thread)
298 {
299         return __perf_evsel__read_on_cpu(evsel, cpu, thread, false);
300 }
301
302 /**
303  * perf_evsel__read_on_cpu_scaled - Read out the results on a CPU and thread, scaled
304  *
305  * @evsel - event selector to read value
306  * @cpu - CPU of interest
307  * @thread - thread of interest
308  */
309 static inline int perf_evsel__read_on_cpu_scaled(struct perf_evsel *evsel,
310                                                  int cpu, int thread)
311 {
312         return __perf_evsel__read_on_cpu(evsel, cpu, thread, true);
313 }
314
315 int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
316                              struct perf_sample *sample);
317
318 static inline struct perf_evsel *perf_evsel__next(struct perf_evsel *evsel)
319 {
320         return list_entry(evsel->node.next, struct perf_evsel, node);
321 }
322
323 static inline struct perf_evsel *perf_evsel__prev(struct perf_evsel *evsel)
324 {
325         return list_entry(evsel->node.prev, struct perf_evsel, node);
326 }
327
328 /**
329  * perf_evsel__is_group_leader - Return whether given evsel is a leader event
330  *
331  * @evsel - evsel selector to be tested
332  *
333  * Return %true if @evsel is a group leader or a stand-alone event
334  */
335 static inline bool perf_evsel__is_group_leader(const struct perf_evsel *evsel)
336 {
337         return evsel->leader == evsel;
338 }
339
340 /**
341  * perf_evsel__is_group_event - Return whether given evsel is a group event
342  *
343  * @evsel - evsel selector to be tested
344  *
345  * Return %true iff event group view is enabled and @evsel is a actual group
346  * leader which has other members in the group
347  */
348 static inline bool perf_evsel__is_group_event(struct perf_evsel *evsel)
349 {
350         if (!symbol_conf.event_group)
351                 return false;
352
353         return perf_evsel__is_group_leader(evsel) && evsel->nr_members > 1;
354 }
355
356 /**
357  * perf_evsel__is_function_event - Return whether given evsel is a function
358  * trace event
359  *
360  * @evsel - evsel selector to be tested
361  *
362  * Return %true if event is function trace event
363  */
364 static inline bool perf_evsel__is_function_event(struct perf_evsel *evsel)
365 {
366 #define FUNCTION_EVENT "ftrace:function"
367
368         return evsel->name &&
369                !strncmp(FUNCTION_EVENT, evsel->name, sizeof(FUNCTION_EVENT));
370
371 #undef FUNCTION_EVENT
372 }
373
374 struct perf_attr_details {
375         bool freq;
376         bool verbose;
377         bool event_group;
378         bool force;
379 };
380
381 int perf_evsel__fprintf(struct perf_evsel *evsel,
382                         struct perf_attr_details *details, FILE *fp);
383
384 bool perf_evsel__fallback(struct perf_evsel *evsel, int err,
385                           char *msg, size_t msgsize);
386 int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target,
387                               int err, char *msg, size_t size);
388
389 static inline int perf_evsel__group_idx(struct perf_evsel *evsel)
390 {
391         return evsel->idx - evsel->leader->idx;
392 }
393
394 #define for_each_group_member(_evsel, _leader)                                  \
395 for ((_evsel) = list_entry((_leader)->node.next, struct perf_evsel, node);      \
396      (_evsel) && (_evsel)->leader == (_leader);                                 \
397      (_evsel) = list_entry((_evsel)->node.next, struct perf_evsel, node))
398
399 static inline bool has_branch_callstack(struct perf_evsel *evsel)
400 {
401         return evsel->attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK;
402 }
403
404 typedef int (*attr__fprintf_f)(FILE *, const char *, const char *, void *);
405
406 int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
407                              attr__fprintf_f attr__fprintf, void *priv);
408
409 #endif /* __PERF_EVSEL_H */