blob: 58bf3062b733e071cafc58344493aa5aa5864913 [file] [log] [blame]
Chris Wilsoncc45a9a2013-08-17 17:38:37 +01001#include <stdint.h>
2
3struct gpu_perf {
4 int page_size;
5 int nr_cpus;
6 int nr_events;
7 int *fd;
8 void **map;
9 struct gpu_perf_sample {
10 uint64_t id;
11 int (*func)(struct gpu_perf *, void *);
12 } *sample;
13
14 int flip_complete;
15};
16
17void gpu_perf_init(struct gpu_perf *gp, unsigned flags);
18int gpu_perf_update(struct gpu_perf *gp);