Merge branch 'wip/nir-vtn' into vulkan
[mesa.git] / src / gallium / drivers / vc4 / vc4_cl_dump.c
1 /*
2 * Copyright © 2014 Broadcom
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 #include "util/u_math.h"
25 #include "util/macros.h"
26 #include "vc4_context.h"
27
28 #define dump_VC4_PACKET_LINE_WIDTH dump_float
29 #define dump_VC4_PACKET_POINT_SIZE dump_float
30
31 static void
32 dump_float(void *cl, uint32_t offset, uint32_t hw_offset)
33 {
34 void *f = cl + offset;
35
36 fprintf(stderr, "0x%08x 0x%08x: %f (0x%08x)\n",
37 offset, hw_offset, *(float *)f, *(uint32_t *)f);
38 }
39
40 static void
41 dump_VC4_PACKET_BRANCH_TO_SUB_LIST(void *cl, uint32_t offset, uint32_t hw_offset)
42 {
43 uint32_t *addr = cl + offset;
44
45 fprintf(stderr, "0x%08x 0x%08x: addr 0x%08x\n",
46 offset, hw_offset, *addr);
47 }
48
49 static void
50 dump_VC4_PACKET_STORE_TILE_BUFFER_GENERAL(void *cl, uint32_t offset, uint32_t hw_offset)
51 {
52 uint8_t *bytes = cl + offset;
53 uint32_t *addr = cl + offset + 2;
54
55 const char *fullvg = "";
56 const char *fullzs = "";
57 const char *fullcolor = "";
58 const char *buffer = "???";
59
60 switch ((bytes[0] & 0x7)){
61 case 0:
62 buffer = "none";
63 break;
64 case 1:
65 buffer = "color";
66 break;
67 case 2:
68 buffer = "zs";
69 break;
70 case 3:
71 buffer = "z";
72 break;
73 case 4:
74 buffer = "vgmask";
75 break;
76 case 5:
77 buffer = "full";
78 if (*addr & (1 << 0))
79 fullcolor = " !color";
80 if (*addr & (1 << 1))
81 fullzs = " !zs";
82 if (*addr & (1 << 2))
83 fullvg = " !vgmask";
84 break;
85 }
86
87 const char *tiling = "???";
88 switch ((bytes[0] >> 4) & 7) {
89 case 0:
90 tiling = "linear";
91 break;
92 case 1:
93 tiling = "T";
94 break;
95 case 2:
96 tiling = "LT";
97 break;
98 }
99
100 const char *format = "???";
101 switch (bytes[1] & 3) {
102 case 0:
103 format = "RGBA8888";
104 break;
105 case 1:
106 format = "BGR565_DITHER";
107 break;
108 case 2:
109 format = "BGR565";
110 break;
111 }
112
113 fprintf(stderr, "0x%08x 0x%08x: 0x%02x %s %s\n",
114 offset + 0, hw_offset + 0, bytes[0],
115 buffer, tiling);
116
117 fprintf(stderr, "0x%08x 0x%08x: 0x%02x %s\n",
118 offset + 1, hw_offset + 1, bytes[1],
119 format);
120
121 fprintf(stderr, "0x%08x 0x%08x: addr 0x%08x %s%s%s%s\n",
122 offset + 2, hw_offset + 2, *addr & ~15,
123 fullcolor, fullzs, fullvg,
124 (*addr & (1 << 3)) ? " EOF" : "");
125 }
126
127 static void
128 dump_VC4_PACKET_FLAT_SHADE_FLAGS(void *cl, uint32_t offset, uint32_t hw_offset)
129 {
130 uint32_t *bits = cl + offset;
131
132 fprintf(stderr, "0x%08x 0x%08x: bits 0x%08x\n",
133 offset, hw_offset, *bits);
134 }
135
136 static void
137 dump_VC4_PACKET_VIEWPORT_OFFSET(void *cl, uint32_t offset, uint32_t hw_offset)
138 {
139 uint16_t *o = cl + offset;
140
141 fprintf(stderr, "0x%08x 0x%08x: %f, %f (0x%04x, 0x%04x)\n",
142 offset, hw_offset,
143 o[0] / 16.0, o[1] / 16.0,
144 o[0], o[1]);
145 }
146
147 static void
148 dump_VC4_PACKET_CLIPPER_XY_SCALING(void *cl, uint32_t offset, uint32_t hw_offset)
149 {
150 uint32_t *scale = cl + offset;
151
152 fprintf(stderr, "0x%08x 0x%08x: %f, %f (%f, %f, 0x%08x, 0x%08x)\n",
153 offset, hw_offset,
154 uif(scale[0]) / 16.0, uif(scale[1]) / 16.0,
155 uif(scale[0]), uif(scale[1]),
156 scale[0], scale[1]);
157 }
158
159 static void
160 dump_VC4_PACKET_CLIPPER_Z_SCALING(void *cl, uint32_t offset, uint32_t hw_offset)
161 {
162 uint32_t *translate = cl + offset;
163 uint32_t *scale = cl + offset + 8;
164
165 fprintf(stderr, "0x%08x 0x%08x: %f, %f (0x%08x, 0x%08x)\n",
166 offset, hw_offset,
167 uif(translate[0]), uif(translate[1]),
168 translate[0], translate[1]);
169
170 fprintf(stderr, "0x%08x 0x%08x: %f, %f (0x%08x, 0x%08x)\n",
171 offset + 8, hw_offset + 8,
172 uif(scale[0]), uif(scale[1]),
173 scale[0], scale[1]);
174 }
175
176 static void
177 dump_VC4_PACKET_TILE_BINNING_MODE_CONFIG(void *cl, uint32_t offset, uint32_t hw_offset)
178 {
179 uint32_t *tile_alloc_addr = cl + offset;
180 uint32_t *tile_alloc_size = cl + offset + 4;
181 uint32_t *tile_state_addr = cl + offset + 8;
182 uint8_t *bin_x = cl + offset + 12;
183 uint8_t *bin_y = cl + offset + 13;
184 uint8_t *flags = cl + offset + 14;
185
186 fprintf(stderr, "0x%08x 0x%08x: tile alloc addr 0x%08x\n",
187 offset, hw_offset,
188 *tile_alloc_addr);
189
190 fprintf(stderr, "0x%08x 0x%08x: tile alloc size %db\n",
191 offset + 4, hw_offset + 4,
192 *tile_alloc_size);
193
194 fprintf(stderr, "0x%08x 0x%08x: tile state addr 0x%08x\n",
195 offset + 8, hw_offset + 8,
196 *tile_state_addr);
197
198 fprintf(stderr, "0x%08x 0x%08x: tiles (%d, %d)\n",
199 offset + 12, hw_offset + 12,
200 *bin_x, *bin_y);
201
202 fprintf(stderr, "0x%08x 0x%08x: flags 0x%02x\n",
203 offset + 14, hw_offset + 14,
204 *flags);
205 }
206
207 static void
208 dump_VC4_PACKET_TILE_RENDERING_MODE_CONFIG(void *cl, uint32_t offset, uint32_t hw_offset)
209 {
210 uint32_t *render_offset = cl + offset;
211 uint16_t *shorts = cl + offset + 4;
212 uint8_t *bytes = cl + offset + 8;
213
214 fprintf(stderr, "0x%08x 0x%08x: color offset 0x%08x\n",
215 offset, hw_offset,
216 *render_offset);
217
218 fprintf(stderr, "0x%08x 0x%08x: width %d\n",
219 offset + 4, hw_offset + 4,
220 shorts[0]);
221
222 fprintf(stderr, "0x%08x 0x%08x: height %d\n",
223 offset + 6, hw_offset + 6,
224 shorts[1]);
225
226 const char *format = "???";
227 switch ((bytes[0] >> 2) & 3) {
228 case 0:
229 format = "BGR565_DITHERED";
230 break;
231 case 1:
232 format = "RGBA8888";
233 break;
234 case 2:
235 format = "BGR565";
236 break;
237 }
238 if (shorts[2] & VC4_RENDER_CONFIG_TILE_BUFFER_64BIT)
239 format = "64bit";
240
241 const char *tiling = "???";
242 switch ((bytes[0] >> 6) & 3) {
243 case 0:
244 tiling = "linear";
245 break;
246 case 1:
247 tiling = "T";
248 break;
249 case 2:
250 tiling = "LT";
251 break;
252 }
253
254 fprintf(stderr, "0x%08x 0x%08x: 0x%02x %s %s %s\n",
255 offset + 8, hw_offset + 8,
256 bytes[0],
257 format, tiling,
258 (bytes[0] & VC4_RENDER_CONFIG_MS_MODE_4X) ? "ms" : "ss");
259
260 const char *earlyz = "";
261 if (bytes[1] & (1 << 3)) {
262 earlyz = "early_z disabled";
263 } else {
264 if (bytes[1] & (1 << 2))
265 earlyz = "early_z >";
266 else
267 earlyz = "early_z <";
268 }
269
270 fprintf(stderr, "0x%08x 0x%08x: 0x%02x %s\n",
271 offset + 9, hw_offset + 9,
272 bytes[1],
273 earlyz);
274 }
275
276 static void
277 dump_VC4_PACKET_TILE_COORDINATES(void *cl, uint32_t offset, uint32_t hw_offset)
278 {
279 uint8_t *tilecoords = cl + offset;
280
281 fprintf(stderr, "0x%08x 0x%08x: %d, %d\n",
282 offset, hw_offset, tilecoords[0], tilecoords[1]);
283 }
284
285 static void
286 dump_VC4_PACKET_GEM_HANDLES(void *cl, uint32_t offset, uint32_t hw_offset)
287 {
288 uint32_t *handles = cl + offset;
289
290 fprintf(stderr, "0x%08x 0x%08x: handle 0: %d, handle 1: %d\n",
291 offset, hw_offset, handles[0], handles[1]);
292 }
293
294 #define PACKET_DUMP(name, size) [name] = { #name, size, dump_##name }
295 #define PACKET(name, size) [name] = { #name, size, NULL }
296
297 static const struct packet_info {
298 const char *name;
299 uint8_t size;
300 void (*dump_func)(void *cl, uint32_t offset, uint32_t hw_offset);
301 } packet_info[] = {
302 PACKET(VC4_PACKET_HALT, 1),
303 PACKET(VC4_PACKET_NOP, 1),
304
305 PACKET(VC4_PACKET_FLUSH, 1),
306 PACKET(VC4_PACKET_FLUSH_ALL, 1),
307 PACKET(VC4_PACKET_START_TILE_BINNING, 1),
308 PACKET(VC4_PACKET_INCREMENT_SEMAPHORE, 1),
309 PACKET(VC4_PACKET_WAIT_ON_SEMAPHORE, 1),
310
311 PACKET(VC4_PACKET_BRANCH, 5),
312 PACKET_DUMP(VC4_PACKET_BRANCH_TO_SUB_LIST, 5),
313
314 PACKET(VC4_PACKET_STORE_MS_TILE_BUFFER, 1),
315 PACKET(VC4_PACKET_STORE_MS_TILE_BUFFER_AND_EOF, 1),
316 PACKET(VC4_PACKET_STORE_FULL_RES_TILE_BUFFER, 5),
317 PACKET(VC4_PACKET_LOAD_FULL_RES_TILE_BUFFER, 5),
318 PACKET_DUMP(VC4_PACKET_STORE_TILE_BUFFER_GENERAL, 7),
319 PACKET(VC4_PACKET_LOAD_TILE_BUFFER_GENERAL, 7),
320
321 PACKET(VC4_PACKET_GL_INDEXED_PRIMITIVE, 14),
322 PACKET(VC4_PACKET_GL_ARRAY_PRIMITIVE, 10),
323
324 PACKET(VC4_PACKET_COMPRESSED_PRIMITIVE, 48),
325 PACKET(VC4_PACKET_CLIPPED_COMPRESSED_PRIMITIVE, 49),
326
327 PACKET(VC4_PACKET_PRIMITIVE_LIST_FORMAT, 2),
328
329 PACKET(VC4_PACKET_GL_SHADER_STATE, 5),
330 PACKET(VC4_PACKET_NV_SHADER_STATE, 5),
331 PACKET(VC4_PACKET_VG_SHADER_STATE, 5),
332
333 PACKET(VC4_PACKET_CONFIGURATION_BITS, 4),
334 PACKET_DUMP(VC4_PACKET_FLAT_SHADE_FLAGS, 5),
335 PACKET_DUMP(VC4_PACKET_POINT_SIZE, 5),
336 PACKET_DUMP(VC4_PACKET_LINE_WIDTH, 5),
337 PACKET(VC4_PACKET_RHT_X_BOUNDARY, 3),
338 PACKET(VC4_PACKET_DEPTH_OFFSET, 5),
339 PACKET(VC4_PACKET_CLIP_WINDOW, 9),
340 PACKET_DUMP(VC4_PACKET_VIEWPORT_OFFSET, 5),
341 PACKET(VC4_PACKET_Z_CLIPPING, 9),
342 PACKET_DUMP(VC4_PACKET_CLIPPER_XY_SCALING, 9),
343 PACKET_DUMP(VC4_PACKET_CLIPPER_Z_SCALING, 9),
344
345 PACKET_DUMP(VC4_PACKET_TILE_BINNING_MODE_CONFIG, 16),
346 PACKET_DUMP(VC4_PACKET_TILE_RENDERING_MODE_CONFIG, 11),
347 PACKET(VC4_PACKET_CLEAR_COLORS, 14),
348 PACKET_DUMP(VC4_PACKET_TILE_COORDINATES, 3),
349
350 PACKET_DUMP(VC4_PACKET_GEM_HANDLES, 9),
351 };
352
353 void
354 vc4_dump_cl(void *cl, uint32_t size, bool is_render)
355 {
356 uint32_t offset = 0, hw_offset = 0;
357 uint8_t *cmds = cl;
358
359 while (offset < size) {
360 uint8_t header = cmds[offset];
361
362 if (header > ARRAY_SIZE(packet_info) ||
363 !packet_info[header].name) {
364 fprintf(stderr, "0x%08x 0x%08x: Unknown packet 0x%02x (%d)!\n",
365 offset, hw_offset, header, header);
366 return;
367 }
368
369 const struct packet_info *p = packet_info + header;
370 fprintf(stderr, "0x%08x 0x%08x: 0x%02x %s\n",
371 offset,
372 header != VC4_PACKET_GEM_HANDLES ? hw_offset : 0,
373 header, p->name);
374
375 if (offset + p->size <= size &&
376 p->dump_func) {
377 p->dump_func(cmds, offset + 1, hw_offset + 1);
378 } else {
379 for (uint32_t i = 1; i < p->size; i++) {
380 if (offset + i >= size) {
381 fprintf(stderr, "0x%08x 0x%08x: CL overflow!\n",
382 offset + i, hw_offset + i);
383 return;
384 }
385 fprintf(stderr, "0x%08x 0x%08x: 0x%02x\n",
386 offset + i,
387 header != VC4_PACKET_GEM_HANDLES ? hw_offset + i : 0,
388 cmds[offset + i]);
389 }
390 }
391
392 switch (header) {
393 case VC4_PACKET_HALT:
394 case VC4_PACKET_STORE_MS_TILE_BUFFER_AND_EOF:
395 return;
396 default:
397 break;
398 }
399
400 offset += p->size;
401 if (header != VC4_PACKET_GEM_HANDLES)
402 hw_offset += p->size;
403 }
404 }
405