intel/perf: export performance counters sorted by [group|set] and name
[mesa.git] / src / intel / tools / aub_write.h
1 /*
2 * Copyright © 2007-2017 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
25 #ifndef INTEL_AUB_WRITE
26 #define INTEL_AUB_WRITE
27
28 #include <stdint.h>
29 #include <stdio.h>
30
31 #include "drm-uapi/i915_drm.h"
32
33 #include "dev/gen_device_info.h"
34 #include "common/gen_gem.h"
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 #define MAX_CONTEXT_COUNT 64
41
42 struct aub_ppgtt_table {
43 uint64_t phys_addr;
44 struct aub_ppgtt_table *subtables[512];
45 };
46
47 struct aub_hw_context {
48 bool initialized;
49 uint64_t ring_addr;
50 uint64_t pphwsp_addr;
51 };
52
53 /* GEM context, as seen from userspace */
54 struct aub_context {
55 uint32_t id;
56 struct aub_hw_context hw_contexts[I915_ENGINE_CLASS_VIDEO + 1];
57 };
58
59 struct aub_file {
60 FILE *file;
61
62 bool has_default_setup;
63
64 /* Set if you want extra logging */
65 FILE *verbose_log_file;
66
67 uint16_t pci_id;
68 struct gen_device_info devinfo;
69
70 int addr_bits;
71
72 struct aub_ppgtt_table pml4;
73 uint64_t phys_addrs_allocator;
74 uint64_t ggtt_addrs_allocator;
75
76 struct {
77 uint64_t hwsp_addr;
78 } engine_setup[I915_ENGINE_CLASS_VIDEO_ENHANCE + 1];
79
80 struct aub_context contexts[MAX_CONTEXT_COUNT];
81 int num_contexts;
82
83 uint32_t next_context_handle;
84 };
85
86 void aub_file_init(struct aub_file *aub, FILE *file, FILE *debug, uint16_t pci_id, const char *app_name);
87 void aub_file_finish(struct aub_file *aub);
88
89 static inline bool aub_use_execlists(const struct aub_file *aub)
90 {
91 return aub->devinfo.gen >= 8;
92 }
93
94 uint32_t aub_gtt_size(struct aub_file *aub);
95
96 static inline void
97 aub_write_reloc(const struct gen_device_info *devinfo, void *p, uint64_t v)
98 {
99 if (devinfo->gen >= 8) {
100 *(uint64_t *)p = gen_canonical_address(v);
101 } else {
102 *(uint32_t *)p = v;
103 }
104 }
105
106 void aub_write_default_setup(struct aub_file *aub);
107 void aub_map_ppgtt(struct aub_file *aub, uint64_t start, uint64_t size);
108 void aub_write_ggtt(struct aub_file *aub, uint64_t virt_addr, uint64_t size, const void *data);
109 void aub_write_trace_block(struct aub_file *aub,
110 uint32_t type, void *virtual,
111 uint32_t size, uint64_t gtt_offset);
112 void aub_write_exec(struct aub_file *aub, uint32_t ctx_id, uint64_t batch_addr,
113 uint64_t offset, enum drm_i915_gem_engine_class engine_class);
114 void aub_write_context_execlists(struct aub_file *aub, uint64_t context_addr,
115 enum drm_i915_gem_engine_class engine_class);
116
117 uint32_t aub_write_context_create(struct aub_file *aub, uint32_t *ctx_id);
118
119 #ifdef __cplusplus
120 }
121 #endif
122
123 #endif /* INTEL_AUB_WRITE */