2e4568fa9aaa89805923124964006c5b6fd0783d
[mesa.git] / src / intel / perf / gen_perf_private.h
1 /*
2 * Copyright © 2019 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #ifndef GEN_PERF_PRIVATE_H
25 #define GEN_PERF_PRIVATE_H
26
27 #include "gen_perf.h"
28
29 static inline uint64_t to_user_pointer(void *ptr)
30 {
31 return (uintptr_t) ptr;
32 }
33
34 static inline void
35 gen_perf_query_add_stat_reg(struct gen_perf_query_info *query, uint32_t reg,
36 uint32_t numerator, uint32_t denominator,
37 const char *name, const char *description)
38 {
39 struct gen_perf_query_counter *counter;
40
41 assert(query->n_counters < query->max_counters);
42
43 counter = &query->counters[query->n_counters];
44 counter->name = counter->symbol_name = name;
45 counter->desc = description;
46 counter->type = GEN_PERF_COUNTER_TYPE_RAW;
47 counter->data_type = GEN_PERF_COUNTER_DATA_TYPE_UINT64;
48 counter->offset = sizeof(uint64_t) * query->n_counters;
49 counter->pipeline_stat.reg = reg;
50 counter->pipeline_stat.numerator = numerator;
51 counter->pipeline_stat.denominator = denominator;
52
53 query->n_counters++;
54 }
55
56 static inline void
57 gen_perf_query_add_basic_stat_reg(struct gen_perf_query_info *query,
58 uint32_t reg, const char *name)
59 {
60 gen_perf_query_add_stat_reg(query, reg, 1, 1, name, name);
61 }
62
63 static inline struct gen_perf_query_info *
64 gen_perf_append_query_info(struct gen_perf_config *perf, int max_counters)
65 {
66 struct gen_perf_query_info *query;
67
68 perf->queries = reralloc(perf, perf->queries,
69 struct gen_perf_query_info,
70 ++perf->n_queries);
71 query = &perf->queries[perf->n_queries - 1];
72 memset(query, 0, sizeof(*query));
73
74 if (max_counters > 0) {
75 query->max_counters = max_counters;
76 query->counters =
77 rzalloc_array(perf, struct gen_perf_query_counter, max_counters);
78 }
79
80 return query;
81 }
82
83 void gen_perf_register_mdapi_statistic_query(struct gen_perf_config *perf_cfg,
84 const struct gen_device_info *devinfo);
85 void gen_perf_register_mdapi_oa_query(struct gen_perf_config *perf,
86 const struct gen_device_info *devinfo);
87
88
89 #endif /* GEN_PERF_PRIVATE_H */