1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_HEADER_H
3 #define __PERF_HEADER_H
5 #include <linux/stddef.h>
6 #include <linux/perf_event.h>
8 #include <stdio.h> // FILE
10 #include <linux/bitmap.h>
11 #include <linux/types.h>
16 HEADER_RESERVED = 0, /* always cleared */
17 HEADER_FIRST_FEATURE = 1,
18 HEADER_TRACING_DATA = 1,
48 HEADER_HYBRID_TOPOLOGY,
49 HEADER_HYBRID_CPU_PMU_CAPS,
51 HEADER_FEAT_BITS = 256,
54 enum perf_header_version {
55 PERF_HEADER_VERSION_1,
56 PERF_HEADER_VERSION_2,
59 struct perf_file_section {
64 struct perf_file_header {
68 struct perf_file_section attrs;
69 struct perf_file_section data;
70 /* event_types is ignored */
71 struct perf_file_section event_types;
72 DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
75 struct perf_pipe_file_header {
82 int perf_file_header__read(struct perf_file_header *header,
83 struct perf_header *ph, int fd);
86 enum perf_header_version version;
91 DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
96 struct perf_header *ph;
98 void *buf; /* Either buf != NULL or fd >= 0 */
101 struct evsel *events;
104 struct perf_header_feature_ops {
105 int (*write)(struct feat_fd *ff, struct evlist *evlist);
106 void (*print)(struct feat_fd *ff, FILE *fp);
107 int (*process)(struct feat_fd *ff, void *data);
118 int perf_session__read_header(struct perf_session *session, int repipe_fd);
119 int perf_session__write_header(struct perf_session *session,
120 struct evlist *evlist,
121 int fd, bool at_exit);
122 int perf_header__write_pipe(int fd);
124 void perf_header__set_feat(struct perf_header *header, int feat);
125 void perf_header__clear_feat(struct perf_header *header, int feat);
126 bool perf_header__has_feat(const struct perf_header *header, int feat);
128 int perf_header__set_cmdline(int argc, const char **argv);
130 int perf_header__process_sections(struct perf_header *header, int fd,
132 int (*process)(struct perf_file_section *section,
133 struct perf_header *ph,
134 int feat, int fd, void *data));
136 int perf_header__fprintf_info(struct perf_session *s, FILE *fp, bool full);
138 int perf_event__process_feature(struct perf_session *session,
139 union perf_event *event);
140 int perf_event__process_attr(struct perf_tool *tool, union perf_event *event,
141 struct evlist **pevlist);
142 int perf_event__process_event_update(struct perf_tool *tool,
143 union perf_event *event,
144 struct evlist **pevlist);
145 size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp);
146 int perf_event__process_tracing_data(struct perf_session *session,
147 union perf_event *event);
148 int perf_event__process_build_id(struct perf_session *session,
149 union perf_event *event);
150 bool is_perf_magic(u64 magic);
152 #define NAME_ALIGN 64
156 int do_write(struct feat_fd *fd, const void *buf, size_t size);
158 int write_padded(struct feat_fd *fd, const void *bf,
159 size_t count, size_t count_aligned);
161 int is_cpu_online(unsigned int cpu);
163 * arch specific callback
165 int get_cpuid(char *buffer, size_t sz);
167 char *get_cpuid_str(struct perf_pmu *pmu __maybe_unused);
168 int strcmp_cpuid_str(const char *s1, const char *s2);
169 #endif /* __PERF_HEADER_H */