xref: /linux/tools/perf/pmu-events/pmu-events.h (revision 3a39d672e7f48b8d6b91a09afa4b55352773b4b5)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef PMU_EVENTS_H
3 #define PMU_EVENTS_H
4 
5 #include <stdbool.h>
6 #include <stddef.h>
7 
8 struct perf_pmu;
9 
10 enum aggr_mode_class {
11 	PerChip = 1,
12 	PerCore
13 };
14 
15 /**
16  * enum metric_event_groups - How events within a pmu_metric should be grouped.
17  */
18 enum metric_event_groups {
19 	/**
20 	 * @MetricGroupEvents: Default, group events within the metric.
21 	 */
22 	MetricGroupEvents = 0,
23 	/**
24 	 * @MetricNoGroupEvents: Don't group events for the metric.
25 	 */
26 	MetricNoGroupEvents = 1,
27 	/**
28 	 * @MetricNoGroupEventsNmi: Don't group events for the metric if the NMI
29 	 *                          watchdog is enabled.
30 	 */
31 	MetricNoGroupEventsNmi = 2,
32 	/**
33 	 * @MetricNoGroupEventsSmt: Don't group events for the metric if SMT is
34 	 *                          enabled.
35 	 */
36 	MetricNoGroupEventsSmt = 3,
37 };
38 /*
39  * Describe each PMU event. Each CPU has a table of PMU events.
40  */
41 struct pmu_event {
42 	const char *name;
43 	const char *compat;
44 	const char *event;
45 	const char *desc;
46 	const char *topic;
47 	const char *long_desc;
48 	const char *pmu;
49 	const char *unit;
50 	bool perpkg;
51 	bool deprecated;
52 };
53 
54 struct pmu_metric {
55 	const char *pmu;
56 	const char *metric_name;
57 	const char *metric_group;
58 	const char *metric_expr;
59 	const char *metric_threshold;
60 	const char *unit;
61 	const char *compat;
62 	const char *desc;
63 	const char *long_desc;
64 	const char *metricgroup_no_group;
65 	const char *default_metricgroup_name;
66 	enum aggr_mode_class aggr_mode;
67 	enum metric_event_groups event_grouping;
68 };
69 
70 struct pmu_events_table;
71 struct pmu_metrics_table;
72 
73 #define PMU_EVENTS__NOT_FOUND -1000
74 
75 typedef int (*pmu_event_iter_fn)(const struct pmu_event *pe,
76 				 const struct pmu_events_table *table,
77 				 void *data);
78 
79 typedef int (*pmu_metric_iter_fn)(const struct pmu_metric *pm,
80 				  const struct pmu_metrics_table *table,
81 				  void *data);
82 
83 int pmu_events_table__for_each_event(const struct pmu_events_table *table,
84 				    struct perf_pmu *pmu,
85 				    pmu_event_iter_fn fn,
86 				    void *data);
87 /*
88  * Search for table and entry matching with pmu__name_match. Each matching event
89  * has fn called on it. 0 implies to success/continue the search while non-zero
90  * means to terminate. The special value PMU_EVENTS__NOT_FOUND is used to
91  * indicate no event was found in one of the tables which doesn't terminate the
92  * search of all tables.
93  */
94 int pmu_events_table__find_event(const struct pmu_events_table *table,
95                                  struct perf_pmu *pmu,
96                                  const char *name,
97                                  pmu_event_iter_fn fn,
98 				 void *data);
99 size_t pmu_events_table__num_events(const struct pmu_events_table *table,
100 				    struct perf_pmu *pmu);
101 
102 int pmu_metrics_table__for_each_metric(const struct pmu_metrics_table *table, pmu_metric_iter_fn fn,
103 				     void *data);
104 
105 const struct pmu_events_table *perf_pmu__find_events_table(struct perf_pmu *pmu);
106 const struct pmu_metrics_table *perf_pmu__find_metrics_table(struct perf_pmu *pmu);
107 const struct pmu_events_table *find_core_events_table(const char *arch, const char *cpuid);
108 const struct pmu_metrics_table *find_core_metrics_table(const char *arch, const char *cpuid);
109 int pmu_for_each_core_event(pmu_event_iter_fn fn, void *data);
110 int pmu_for_each_core_metric(pmu_metric_iter_fn fn, void *data);
111 
112 const struct pmu_events_table *find_sys_events_table(const char *name);
113 const struct pmu_metrics_table *find_sys_metrics_table(const char *name);
114 int pmu_for_each_sys_event(pmu_event_iter_fn fn, void *data);
115 int pmu_for_each_sys_metric(pmu_metric_iter_fn fn, void *data);
116 
117 const char *describe_metricgroup(const char *group);
118 
119 #endif
120