pan/decode: Mark tripped zeroes with XXX
[mesa.git] / src / panfrost / pandecode / decode.c
1 /*
2 * Copyright (C) 2017-2019 Alyssa Rosenzweig
3 * Copyright (C) 2017-2019 Connor Abbott
4 * Copyright (C) 2019 Collabora, Ltd.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26 #include <panfrost-job.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <memory.h>
30 #include <stdbool.h>
31 #include <stdarg.h>
32 #include "decode.h"
33 #include "util/macros.h"
34 #include "util/u_math.h"
35
36 #include "pan_pretty_print.h"
37 #include "midgard/disassemble.h"
38 #include "bifrost/disassemble.h"
39
40 #include "pan_encoder.h"
41
42 int pandecode_jc(mali_ptr jc_gpu_va, bool bifrost);
43
44 #define MEMORY_PROP(obj, p) {\
45 if (obj->p) { \
46 char *a = pointer_as_memory_reference(obj->p); \
47 pandecode_prop("%s = %s", #p, a); \
48 free(a); \
49 } \
50 }
51
52 #define MEMORY_PROP_DIR(obj, p) {\
53 if (obj.p) { \
54 char *a = pointer_as_memory_reference(obj.p); \
55 pandecode_prop("%s = %s", #p, a); \
56 free(a); \
57 } \
58 }
59
60 /* Semantic logging type.
61 *
62 * Raw: for raw messages to be printed as is.
63 * Message: for helpful information to be commented out in replays.
64 * Property: for properties of a struct
65 *
66 * Use one of pandecode_log, pandecode_msg, or pandecode_prop as syntax sugar.
67 */
68
69 enum pandecode_log_type {
70 PANDECODE_RAW,
71 PANDECODE_MESSAGE,
72 PANDECODE_PROPERTY
73 };
74
75 #define pandecode_log(...) pandecode_log_typed(PANDECODE_RAW, __VA_ARGS__)
76 #define pandecode_msg(...) pandecode_log_typed(PANDECODE_MESSAGE, __VA_ARGS__)
77 #define pandecode_prop(...) pandecode_log_typed(PANDECODE_PROPERTY, __VA_ARGS__)
78
79 unsigned pandecode_indent = 0;
80
81 static void
82 pandecode_make_indent(void)
83 {
84 for (unsigned i = 0; i < pandecode_indent; ++i)
85 printf(" ");
86 }
87
88 static void
89 pandecode_log_typed(enum pandecode_log_type type, const char *format, ...)
90 {
91 va_list ap;
92
93 pandecode_make_indent();
94
95 if (type == PANDECODE_MESSAGE)
96 printf("// ");
97 else if (type == PANDECODE_PROPERTY)
98 printf(".");
99
100 va_start(ap, format);
101 vprintf(format, ap);
102 va_end(ap);
103
104 if (type == PANDECODE_PROPERTY)
105 printf(",\n");
106 }
107
108 static void
109 pandecode_log_cont(const char *format, ...)
110 {
111 va_list ap;
112
113 va_start(ap, format);
114 vprintf(format, ap);
115 va_end(ap);
116 }
117
118 /* To check for memory safety issues, validates that the given pointer in GPU
119 * memory is valid, containing at least sz bytes. The goal is to eliminate
120 * GPU-side memory bugs (NULL pointer dereferences, buffer overflows, or buffer
121 * overruns) by statically validating pointers.
122 */
123
124 static void
125 pandecode_validate_buffer(mali_ptr addr, size_t sz)
126 {
127 if (!addr) {
128 pandecode_msg("XXX: null pointer deref");
129 return;
130 }
131
132 /* Find a BO */
133
134 struct pandecode_mapped_memory *bo =
135 pandecode_find_mapped_gpu_mem_containing(addr);
136
137 if (!bo) {
138 pandecode_msg("XXX: invalid memory dereference\n");
139 return;
140 }
141
142 /* Bounds check */
143
144 unsigned offset = addr - bo->gpu_va;
145 unsigned total = offset + sz;
146
147 if (total > bo->length) {
148 pandecode_msg("XXX: buffer overrun."
149 "Chunk of size %d at offset %d in buffer of size %d. "
150 "Overrun by %d bytes.",
151 sz, offset, bo->length, total - bo->length);
152 return;
153 }
154 }
155
156 struct pandecode_flag_info {
157 u64 flag;
158 const char *name;
159 };
160
161 static void
162 pandecode_log_decoded_flags(const struct pandecode_flag_info *flag_info,
163 u64 flags)
164 {
165 bool decodable_flags_found = false;
166
167 for (int i = 0; flag_info[i].name; i++) {
168 if ((flags & flag_info[i].flag) != flag_info[i].flag)
169 continue;
170
171 if (!decodable_flags_found) {
172 decodable_flags_found = true;
173 } else {
174 pandecode_log_cont(" | ");
175 }
176
177 pandecode_log_cont("%s", flag_info[i].name);
178
179 flags &= ~flag_info[i].flag;
180 }
181
182 if (decodable_flags_found) {
183 if (flags)
184 pandecode_log_cont(" | 0x%" PRIx64, flags);
185 } else {
186 pandecode_log_cont("0x%" PRIx64, flags);
187 }
188 }
189
190 #define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
191 static const struct pandecode_flag_info gl_enable_flag_info[] = {
192 FLAG_INFO(OCCLUSION_QUERY),
193 FLAG_INFO(OCCLUSION_PRECISE),
194 FLAG_INFO(FRONT_CCW_TOP),
195 FLAG_INFO(CULL_FACE_FRONT),
196 FLAG_INFO(CULL_FACE_BACK),
197 {}
198 };
199 #undef FLAG_INFO
200
201 #define FLAG_INFO(flag) { MALI_CLEAR_##flag, "MALI_CLEAR_" #flag }
202 static const struct pandecode_flag_info clear_flag_info[] = {
203 FLAG_INFO(FAST),
204 FLAG_INFO(SLOW),
205 FLAG_INFO(SLOW_STENCIL),
206 {}
207 };
208 #undef FLAG_INFO
209
210 #define FLAG_INFO(flag) { MALI_MASK_##flag, "MALI_MASK_" #flag }
211 static const struct pandecode_flag_info mask_flag_info[] = {
212 FLAG_INFO(R),
213 FLAG_INFO(G),
214 FLAG_INFO(B),
215 FLAG_INFO(A),
216 {}
217 };
218 #undef FLAG_INFO
219
220 #define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
221 static const struct pandecode_flag_info u3_flag_info[] = {
222 FLAG_INFO(HAS_MSAA),
223 FLAG_INFO(CAN_DISCARD),
224 FLAG_INFO(HAS_BLEND_SHADER),
225 FLAG_INFO(DEPTH_TEST),
226 {}
227 };
228
229 static const struct pandecode_flag_info u4_flag_info[] = {
230 FLAG_INFO(NO_MSAA),
231 FLAG_INFO(NO_DITHER),
232 FLAG_INFO(DEPTH_RANGE_A),
233 FLAG_INFO(DEPTH_RANGE_B),
234 FLAG_INFO(STENCIL_TEST),
235 FLAG_INFO(SAMPLE_ALPHA_TO_COVERAGE_NO_BLEND_SHADER),
236 {}
237 };
238 #undef FLAG_INFO
239
240 #define FLAG_INFO(flag) { MALI_FRAMEBUFFER_##flag, "MALI_FRAMEBUFFER_" #flag }
241 static const struct pandecode_flag_info fb_fmt_flag_info[] = {
242 FLAG_INFO(MSAA_A),
243 FLAG_INFO(MSAA_B),
244 FLAG_INFO(MSAA_8),
245 {}
246 };
247 #undef FLAG_INFO
248
249 #define FLAG_INFO(flag) { MALI_MFBD_FORMAT_##flag, "MALI_MFBD_FORMAT_" #flag }
250 static const struct pandecode_flag_info mfbd_fmt_flag_info[] = {
251 FLAG_INFO(MSAA),
252 FLAG_INFO(SRGB),
253 {}
254 };
255 #undef FLAG_INFO
256
257 #define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag }
258 static const struct pandecode_flag_info mfbd_extra_flag_info[] = {
259 FLAG_INFO(PRESENT),
260 FLAG_INFO(AFBC),
261 FLAG_INFO(ZS),
262 {}
263 };
264 #undef FLAG_INFO
265
266 #define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
267 static const struct pandecode_flag_info shader_midgard1_flag_info [] = {
268 FLAG_INFO(EARLY_Z),
269 FLAG_INFO(HELPER_INVOCATIONS),
270 FLAG_INFO(READS_TILEBUFFER),
271 FLAG_INFO(READS_ZS),
272 {}
273 };
274 #undef FLAG_INFO
275
276 #define FLAG_INFO(flag) { MALI_MFBD_##flag, "MALI_MFBD_" #flag }
277 static const struct pandecode_flag_info mfbd_flag_info [] = {
278 FLAG_INFO(DEPTH_WRITE),
279 FLAG_INFO(EXTRA),
280 {}
281 };
282 #undef FLAG_INFO
283
284 #define FLAG_INFO(flag) { MALI_SAMP_##flag, "MALI_SAMP_" #flag }
285 static const struct pandecode_flag_info sampler_flag_info [] = {
286 FLAG_INFO(MAG_NEAREST),
287 FLAG_INFO(MIN_NEAREST),
288 FLAG_INFO(MIP_LINEAR_1),
289 FLAG_INFO(MIP_LINEAR_2),
290 FLAG_INFO(NORM_COORDS),
291 {}
292 };
293 #undef FLAG_INFO
294
295 extern char *replace_fragment;
296 extern char *replace_vertex;
297
298 static char *
299 pandecode_job_type(enum mali_job_type type)
300 {
301 #define DEFINE_CASE(name) case JOB_TYPE_ ## name: return "JOB_TYPE_" #name
302
303 switch (type) {
304 DEFINE_CASE(NULL);
305 DEFINE_CASE(SET_VALUE);
306 DEFINE_CASE(CACHE_FLUSH);
307 DEFINE_CASE(COMPUTE);
308 DEFINE_CASE(VERTEX);
309 DEFINE_CASE(TILER);
310 DEFINE_CASE(FUSED);
311 DEFINE_CASE(FRAGMENT);
312
313 case JOB_NOT_STARTED:
314 return "NOT_STARTED";
315
316 default:
317 pandecode_log("Warning! Unknown job type %x\n", type);
318 return "!?!?!?";
319 }
320
321 #undef DEFINE_CASE
322 }
323
324 static char *
325 pandecode_draw_mode(enum mali_draw_mode mode)
326 {
327 #define DEFINE_CASE(name) case MALI_ ## name: return "MALI_" #name
328
329 switch (mode) {
330 DEFINE_CASE(DRAW_NONE);
331 DEFINE_CASE(POINTS);
332 DEFINE_CASE(LINES);
333 DEFINE_CASE(TRIANGLES);
334 DEFINE_CASE(TRIANGLE_STRIP);
335 DEFINE_CASE(TRIANGLE_FAN);
336 DEFINE_CASE(LINE_STRIP);
337 DEFINE_CASE(LINE_LOOP);
338 DEFINE_CASE(POLYGON);
339 DEFINE_CASE(QUADS);
340 DEFINE_CASE(QUAD_STRIP);
341
342 default:
343 return "MALI_TRIANGLES /* XXX: Unknown GL mode, check dump */";
344 }
345
346 #undef DEFINE_CASE
347 }
348
349 #define DEFINE_CASE(name) case MALI_FUNC_ ## name: return "MALI_FUNC_" #name
350 static char *
351 pandecode_func(enum mali_func mode)
352 {
353 switch (mode) {
354 DEFINE_CASE(NEVER);
355 DEFINE_CASE(LESS);
356 DEFINE_CASE(EQUAL);
357 DEFINE_CASE(LEQUAL);
358 DEFINE_CASE(GREATER);
359 DEFINE_CASE(NOTEQUAL);
360 DEFINE_CASE(GEQUAL);
361 DEFINE_CASE(ALWAYS);
362
363 default:
364 return "MALI_FUNC_NEVER /* XXX: Unknown function, check dump */";
365 }
366 }
367 #undef DEFINE_CASE
368
369 /* Why is this duplicated? Who knows... */
370 #define DEFINE_CASE(name) case MALI_ALT_FUNC_ ## name: return "MALI_ALT_FUNC_" #name
371 static char *
372 pandecode_alt_func(enum mali_alt_func mode)
373 {
374 switch (mode) {
375 DEFINE_CASE(NEVER);
376 DEFINE_CASE(LESS);
377 DEFINE_CASE(EQUAL);
378 DEFINE_CASE(LEQUAL);
379 DEFINE_CASE(GREATER);
380 DEFINE_CASE(NOTEQUAL);
381 DEFINE_CASE(GEQUAL);
382 DEFINE_CASE(ALWAYS);
383
384 default:
385 return "MALI_FUNC_NEVER /* XXX: Unknown function, check dump */";
386 }
387 }
388 #undef DEFINE_CASE
389
390 #define DEFINE_CASE(name) case MALI_STENCIL_ ## name: return "MALI_STENCIL_" #name
391 static char *
392 pandecode_stencil_op(enum mali_stencil_op op)
393 {
394 switch (op) {
395 DEFINE_CASE(KEEP);
396 DEFINE_CASE(REPLACE);
397 DEFINE_CASE(ZERO);
398 DEFINE_CASE(INVERT);
399 DEFINE_CASE(INCR_WRAP);
400 DEFINE_CASE(DECR_WRAP);
401 DEFINE_CASE(INCR);
402 DEFINE_CASE(DECR);
403
404 default:
405 return "MALI_STENCIL_KEEP /* XXX: Unknown stencil op, check dump */";
406 }
407 }
408
409 #undef DEFINE_CASE
410
411 #define DEFINE_CASE(name) case MALI_ATTR_ ## name: return "MALI_ATTR_" #name
412 static char *pandecode_attr_mode(enum mali_attr_mode mode)
413 {
414 switch(mode) {
415 DEFINE_CASE(UNUSED);
416 DEFINE_CASE(LINEAR);
417 DEFINE_CASE(POT_DIVIDE);
418 DEFINE_CASE(MODULO);
419 DEFINE_CASE(NPOT_DIVIDE);
420 DEFINE_CASE(IMAGE);
421 DEFINE_CASE(INTERNAL);
422 default:
423 return "MALI_ATTR_UNUSED /* XXX: Unknown stencil op, check dump */";
424 }
425 }
426
427 #undef DEFINE_CASE
428
429 #define DEFINE_CASE(name) case MALI_CHANNEL_## name: return "MALI_CHANNEL_" #name
430 static char *
431 pandecode_channel(enum mali_channel channel)
432 {
433 switch (channel) {
434 DEFINE_CASE(RED);
435 DEFINE_CASE(GREEN);
436 DEFINE_CASE(BLUE);
437 DEFINE_CASE(ALPHA);
438 DEFINE_CASE(ZERO);
439 DEFINE_CASE(ONE);
440 DEFINE_CASE(RESERVED_0);
441 DEFINE_CASE(RESERVED_1);
442
443 default:
444 return "MALI_CHANNEL_ZERO /* XXX: Unknown channel, check dump */";
445 }
446 }
447 #undef DEFINE_CASE
448
449 #define DEFINE_CASE(name) case MALI_WRAP_## name: return "MALI_WRAP_" #name
450 static char *
451 pandecode_wrap_mode(enum mali_wrap_mode op)
452 {
453 switch (op) {
454 DEFINE_CASE(REPEAT);
455 DEFINE_CASE(CLAMP_TO_EDGE);
456 DEFINE_CASE(CLAMP_TO_BORDER);
457 DEFINE_CASE(MIRRORED_REPEAT);
458
459 default:
460 return "MALI_WRAP_REPEAT /* XXX: Unknown wrap mode, check dump */";
461 }
462 }
463 #undef DEFINE_CASE
464
465 #define DEFINE_CASE(name) case MALI_TEX_## name: return "MALI_TEX_" #name
466 static char *
467 pandecode_texture_type(enum mali_texture_type type)
468 {
469 switch (type) {
470 DEFINE_CASE(1D);
471 DEFINE_CASE(2D);
472 DEFINE_CASE(3D);
473 DEFINE_CASE(CUBE);
474
475 default:
476 unreachable("Unknown case");
477 }
478 }
479 #undef DEFINE_CASE
480
481 #define DEFINE_CASE(name) case MALI_MFBD_BLOCK_## name: return "MALI_MFBD_BLOCK_" #name
482 static char *
483 pandecode_mfbd_block_format(enum mali_mfbd_block_format fmt)
484 {
485 switch (fmt) {
486 DEFINE_CASE(TILED);
487 DEFINE_CASE(UNKNOWN);
488 DEFINE_CASE(LINEAR);
489 DEFINE_CASE(AFBC);
490
491 default:
492 unreachable("Invalid case");
493 }
494 }
495 #undef DEFINE_CASE
496
497 #define DEFINE_CASE(name) case MALI_EXCEPTION_ACCESS_## name: return ""#name
498 static char *
499 pandecode_exception_access(enum mali_exception_access fmt)
500 {
501 switch (fmt) {
502 DEFINE_CASE(NONE);
503 DEFINE_CASE(EXECUTE);
504 DEFINE_CASE(READ);
505 DEFINE_CASE(WRITE);
506
507 default:
508 unreachable("Invalid case");
509 }
510 }
511 #undef DEFINE_CASE
512
513 /* Midgard's tiler descriptor is embedded within the
514 * larger FBD */
515
516 static void
517 pandecode_midgard_tiler_descriptor(
518 const struct midgard_tiler_descriptor *t,
519 unsigned width,
520 unsigned height,
521 bool is_fragment)
522 {
523 pandecode_log(".tiler = {\n");
524 pandecode_indent++;
525
526 if (t->hierarchy_mask == MALI_TILER_DISABLED)
527 pandecode_prop("hierarchy_mask = MALI_TILER_DISABLED");
528 else
529 pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask);
530
531 /* We know this name from the kernel, but we never see it nonzero */
532 if (t->flags)
533 pandecode_prop("flags = 0x%" PRIx16 " /* XXX: unexpected */", t->flags);
534
535 MEMORY_PROP(t, polygon_list);
536
537 /* The body is offset from the base of the polygon list */
538 assert(t->polygon_list_body > t->polygon_list);
539 unsigned body_offset = t->polygon_list_body - t->polygon_list;
540
541 /* It needs to fit inside the reported size */
542 assert(t->polygon_list_size >= body_offset);
543
544 /* Check that we fit */
545 struct pandecode_mapped_memory *plist =
546 pandecode_find_mapped_gpu_mem_containing(t->polygon_list);
547
548 assert(t->polygon_list_size <= plist->length);
549
550 /* Now that we've sanity checked, we'll try to calculate the sizes
551 * ourselves for comparison */
552
553 unsigned ref_header = panfrost_tiler_header_size(width, height, t->hierarchy_mask);
554 unsigned ref_size = panfrost_tiler_full_size(width, height, t->hierarchy_mask);
555
556 if (!((ref_header == body_offset) && (ref_size == t->polygon_list_size))) {
557 pandecode_msg("XXX: bad polygon list size (expected %d / 0x%x)\n",
558 ref_header, ref_size);
559 pandecode_prop("polygon_list_size = 0x%x", t->polygon_list_size);
560 pandecode_msg("body offset %d\n", body_offset);
561 }
562
563 /* The tiler heap has a start and end specified -- it should be
564 * identical to what we have in the BO. The exception is if tiling is
565 * disabled. */
566
567 MEMORY_PROP(t, heap_start);
568 assert(t->heap_end >= t->heap_start);
569
570 struct pandecode_mapped_memory *heap =
571 pandecode_find_mapped_gpu_mem_containing(t->heap_start);
572
573 unsigned heap_size = t->heap_end - t->heap_start;
574
575 /* Tiling is enabled with a special flag */
576 unsigned hierarchy_mask = t->hierarchy_mask & MALI_HIERARCHY_MASK;
577 unsigned tiler_flags = t->hierarchy_mask ^ hierarchy_mask;
578
579 bool tiling_enabled = hierarchy_mask;
580
581 if (tiling_enabled) {
582 /* When tiling is enabled, the heap should be a tight fit */
583 unsigned heap_offset = t->heap_start - heap->gpu_va;
584 if ((heap_offset + heap_size) != heap->length) {
585 pandecode_msg("XXX: heap size %d (expected %d)\n",
586 heap_size, heap->length - heap_offset);
587 }
588
589 /* We should also have no other flags */
590 if (tiler_flags)
591 pandecode_msg("XXX: unexpected tiler %X\n", tiler_flags);
592 } else {
593 /* When tiling is disabled, we should have that flag and no others */
594
595 if (tiler_flags != MALI_TILER_DISABLED) {
596 pandecode_msg("XXX: unexpected tiler flag %X, expected MALI_TILER_DISABLED\n",
597 tiler_flags);
598 }
599
600 /* We should also have an empty heap */
601 if (heap_size) {
602 pandecode_msg("XXX: tiler heap size %d given, expected empty\n",
603 heap_size);
604 }
605
606 /* Disabled tiling is used only for clear-only jobs, which are
607 * purely FRAGMENT, so we should never see this for
608 * non-FRAGMENT descriptors. */
609
610 if (!is_fragment)
611 pandecode_msg("XXX: tiler disabled for non-FRAGMENT job\n");
612 }
613
614 /* We've never seen weights used in practice, but we know from the
615 * kernel these fields is there */
616
617 bool nonzero_weights = false;
618
619 for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
620 nonzero_weights |= t->weights[w] != 0x0;
621 }
622
623 if (nonzero_weights) {
624 pandecode_log(".weights = {");
625
626 for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
627 pandecode_log("%d, ", t->weights[w]);
628 }
629
630 pandecode_log("},");
631 }
632
633 pandecode_indent--;
634 pandecode_log("}\n");
635 }
636
637 static void
638 pandecode_sfbd(uint64_t gpu_va, int job_no, bool is_fragment)
639 {
640 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
641 const struct mali_single_framebuffer *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va);
642
643 pandecode_log("struct mali_single_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
644 pandecode_indent++;
645
646 pandecode_prop("unknown1 = 0x%" PRIx32, s->unknown1);
647 pandecode_prop("unknown2 = 0x%" PRIx32, s->unknown2);
648
649 pandecode_log(".format = ");
650 pandecode_log_decoded_flags(fb_fmt_flag_info, s->format);
651 pandecode_log_cont(",\n");
652
653 pandecode_prop("width = MALI_POSITIVE(%" PRId16 ")", s->width + 1);
654 pandecode_prop("height = MALI_POSITIVE(%" PRId16 ")", s->height + 1);
655
656 MEMORY_PROP(s, framebuffer);
657 pandecode_prop("stride = %d", s->stride);
658
659 /* Earlier in the actual commandstream -- right before width -- but we
660 * delay to flow nicer */
661
662 pandecode_log(".clear_flags = ");
663 pandecode_log_decoded_flags(clear_flag_info, s->clear_flags);
664 pandecode_log_cont(",\n");
665
666 if (s->depth_buffer | s->depth_buffer_enable) {
667 MEMORY_PROP(s, depth_buffer);
668 pandecode_prop("depth_buffer_enable = %s", DS_ENABLE(s->depth_buffer_enable));
669 }
670
671 if (s->stencil_buffer | s->stencil_buffer_enable) {
672 MEMORY_PROP(s, stencil_buffer);
673 pandecode_prop("stencil_buffer_enable = %s", DS_ENABLE(s->stencil_buffer_enable));
674 }
675
676 if (s->clear_color_1 | s->clear_color_2 | s->clear_color_3 | s->clear_color_4) {
677 pandecode_prop("clear_color_1 = 0x%" PRIx32, s->clear_color_1);
678 pandecode_prop("clear_color_2 = 0x%" PRIx32, s->clear_color_2);
679 pandecode_prop("clear_color_3 = 0x%" PRIx32, s->clear_color_3);
680 pandecode_prop("clear_color_4 = 0x%" PRIx32, s->clear_color_4);
681 }
682
683 if (s->clear_depth_1 != 0 || s->clear_depth_2 != 0 || s->clear_depth_3 != 0 || s->clear_depth_4 != 0) {
684 pandecode_prop("clear_depth_1 = %f", s->clear_depth_1);
685 pandecode_prop("clear_depth_2 = %f", s->clear_depth_2);
686 pandecode_prop("clear_depth_3 = %f", s->clear_depth_3);
687 pandecode_prop("clear_depth_4 = %f", s->clear_depth_4);
688 }
689
690 if (s->clear_stencil) {
691 pandecode_prop("clear_stencil = 0x%x", s->clear_stencil);
692 }
693
694 MEMORY_PROP(s, unknown_address_0);
695 const struct midgard_tiler_descriptor t = s->tiler;
696 pandecode_midgard_tiler_descriptor(&t, s->width + 1, s->height + 1, is_fragment);
697
698 pandecode_indent--;
699 pandecode_log("};\n");
700
701 pandecode_prop("zero0 = 0x%" PRIx64, s->zero0);
702 pandecode_prop("zero1 = 0x%" PRIx64, s->zero1);
703 pandecode_prop("zero2 = 0x%" PRIx32, s->zero2);
704 pandecode_prop("zero4 = 0x%" PRIx32, s->zero4);
705
706 printf(".zero3 = {");
707
708 for (int i = 0; i < sizeof(s->zero3) / sizeof(s->zero3[0]); ++i)
709 printf("%X, ", s->zero3[i]);
710
711 printf("},\n");
712
713 printf(".zero6 = {");
714
715 for (int i = 0; i < sizeof(s->zero6) / sizeof(s->zero6[0]); ++i)
716 printf("%X, ", s->zero6[i]);
717
718 printf("},\n");
719 }
720
721 static void
722 pandecode_u32_slide(unsigned name, const u32 *slide, unsigned count)
723 {
724 pandecode_log(".unknown%d = {", name);
725
726 for (int i = 0; i < count; ++i)
727 printf("%X, ", slide[i]);
728
729 pandecode_log("},\n");
730 }
731
732 #define SHORT_SLIDE(num) \
733 pandecode_u32_slide(num, s->unknown ## num, ARRAY_SIZE(s->unknown ## num))
734
735 static void
736 pandecode_compute_fbd(uint64_t gpu_va, int job_no)
737 {
738 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
739 const struct mali_compute_fbd *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va);
740
741 pandecode_log("struct mali_compute_fbd framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
742 pandecode_indent++;
743
744 SHORT_SLIDE(1);
745
746 pandecode_indent--;
747 printf("},\n");
748 }
749
750 static void
751 pandecode_swizzle(unsigned swizzle)
752 {
753 pandecode_prop("swizzle = %s | (%s << 3) | (%s << 6) | (%s << 9)",
754 pandecode_channel((swizzle >> 0) & 0x7),
755 pandecode_channel((swizzle >> 3) & 0x7),
756 pandecode_channel((swizzle >> 6) & 0x7),
757 pandecode_channel((swizzle >> 9) & 0x7));
758 }
759
760 static void
761 pandecode_rt_format(struct mali_rt_format format)
762 {
763 pandecode_log(".format = {\n");
764 pandecode_indent++;
765
766 pandecode_prop("unk1 = 0x%" PRIx32, format.unk1);
767 pandecode_prop("unk2 = 0x%" PRIx32, format.unk2);
768 pandecode_prop("unk3 = 0x%" PRIx32, format.unk3);
769
770 pandecode_prop("block = %s",
771 pandecode_mfbd_block_format(format.block));
772
773 pandecode_prop("nr_channels = MALI_POSITIVE(%d)",
774 MALI_NEGATIVE(format.nr_channels));
775
776 pandecode_log(".flags = ");
777 pandecode_log_decoded_flags(mfbd_fmt_flag_info, format.flags);
778 pandecode_log_cont(",\n");
779
780 pandecode_swizzle(format.swizzle);
781
782 /* In theory, the no_preload bit can be cleared to enable MFBD preload,
783 * which is a faster hardware-based alternative to the wallpaper method
784 * to preserve framebuffer contents across frames. In practice, MFBD
785 * preload is buggy on Midgard, and so this is a chicken bit. If this
786 * bit isn't set, most likely something broke unrelated to preload */
787
788 if (!format.no_preload) {
789 pandecode_msg("XXX: buggy MFBD preload enabled - chicken bit should be clear\n");
790 pandecode_prop("no_preload = 0x%" PRIx32, format.no_preload);
791 }
792
793 if (format.zero)
794 pandecode_prop("zero = 0x%" PRIx32, format.zero);
795
796 pandecode_indent--;
797 pandecode_log("},\n");
798 }
799
800 static void
801 pandecode_render_target(uint64_t gpu_va, unsigned job_no, const struct bifrost_framebuffer *fb)
802 {
803 pandecode_log("struct bifrost_render_target rts_list_%"PRIx64"_%d[] = {\n", gpu_va, job_no);
804 pandecode_indent++;
805
806 for (int i = 0; i < MALI_NEGATIVE(fb->rt_count_1); i++) {
807 mali_ptr rt_va = gpu_va + i * sizeof(struct bifrost_render_target);
808 struct pandecode_mapped_memory *mem =
809 pandecode_find_mapped_gpu_mem_containing(rt_va);
810 const struct bifrost_render_target *PANDECODE_PTR_VAR(rt, mem, (mali_ptr) rt_va);
811
812 pandecode_log("{\n");
813 pandecode_indent++;
814
815 pandecode_rt_format(rt->format);
816
817 if (rt->format.block == MALI_MFBD_BLOCK_AFBC) {
818 pandecode_log(".afbc = {\n");
819 pandecode_indent++;
820
821 char *a = pointer_as_memory_reference(rt->afbc.metadata);
822 pandecode_prop("metadata = %s", a);
823 free(a);
824
825 pandecode_prop("stride = %d", rt->afbc.stride);
826 pandecode_prop("unk = 0x%" PRIx32, rt->afbc.unk);
827
828 pandecode_indent--;
829 pandecode_log("},\n");
830 } else if (rt->afbc.metadata || rt->afbc.stride || rt->afbc.unk) {
831 pandecode_msg("XXX: AFBC disabled but AFBC field set (0x%lX, 0x%x, 0x%x)\n",
832 rt->afbc.metadata,
833 rt->afbc.stride,
834 rt->afbc.unk);
835 }
836
837 MEMORY_PROP(rt, framebuffer);
838 pandecode_prop("framebuffer_stride = %d", rt->framebuffer_stride);
839
840 if (rt->clear_color_1 | rt->clear_color_2 | rt->clear_color_3 | rt->clear_color_4) {
841 pandecode_prop("clear_color_1 = 0x%" PRIx32, rt->clear_color_1);
842 pandecode_prop("clear_color_2 = 0x%" PRIx32, rt->clear_color_2);
843 pandecode_prop("clear_color_3 = 0x%" PRIx32, rt->clear_color_3);
844 pandecode_prop("clear_color_4 = 0x%" PRIx32, rt->clear_color_4);
845 }
846
847 if (rt->zero1 || rt->zero2 || rt->zero3) {
848 pandecode_msg("XXX: render target zeros tripped\n");
849 pandecode_prop("zero1 = 0x%" PRIx64, rt->zero1);
850 pandecode_prop("zero2 = 0x%" PRIx32, rt->zero2);
851 pandecode_prop("zero3 = 0x%" PRIx32, rt->zero3);
852 }
853
854 pandecode_indent--;
855 pandecode_log("},\n");
856 }
857
858 pandecode_indent--;
859 pandecode_log("};\n");
860 }
861
862 static unsigned
863 pandecode_mfbd_bfr(uint64_t gpu_va, int job_no, bool is_fragment)
864 {
865 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
866 const struct bifrost_framebuffer *PANDECODE_PTR_VAR(fb, mem, (mali_ptr) gpu_va);
867
868 if (fb->sample_locations) {
869 /* The blob stores all possible sample locations in a single buffer
870 * allocated on startup, and just switches the pointer when switching
871 * MSAA state. For now, we just put the data into the cmdstream, but we
872 * should do something like what the blob does with a real driver.
873 *
874 * There seem to be 32 slots for sample locations, followed by another
875 * 16. The second 16 is just the center location followed by 15 zeros
876 * in all the cases I've identified (maybe shader vs. depth/color
877 * samples?).
878 */
879
880 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(fb->sample_locations);
881
882 const u16 *PANDECODE_PTR_VAR(samples, smem, fb->sample_locations);
883
884 pandecode_log("uint16_t sample_locations_%d[] = {\n", job_no);
885 pandecode_indent++;
886
887 for (int i = 0; i < 32 + 16; i++) {
888 pandecode_log("%d, %d,\n", samples[2 * i], samples[2 * i + 1]);
889 }
890
891 pandecode_indent--;
892 pandecode_log("};\n");
893 }
894
895 pandecode_log("struct bifrost_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
896 pandecode_indent++;
897
898 pandecode_prop("unk0 = 0x%x", fb->unk0);
899
900 if (fb->sample_locations)
901 pandecode_prop("sample_locations = sample_locations_%d", job_no);
902
903 /* Assume that unknown1 was emitted in the last job for
904 * now */
905 MEMORY_PROP(fb, unknown1);
906
907 pandecode_prop("width1 = MALI_POSITIVE(%d)", fb->width1 + 1);
908 pandecode_prop("height1 = MALI_POSITIVE(%d)", fb->height1 + 1);
909 pandecode_prop("width2 = MALI_POSITIVE(%d)", fb->width2 + 1);
910 pandecode_prop("height2 = MALI_POSITIVE(%d)", fb->height2 + 1);
911
912 pandecode_prop("unk1 = 0x%x", fb->unk1);
913 pandecode_prop("unk2 = 0x%x", fb->unk2);
914 pandecode_prop("rt_count_1 = MALI_POSITIVE(%d)", fb->rt_count_1 + 1);
915 pandecode_prop("rt_count_2 = %d", fb->rt_count_2);
916
917 pandecode_log(".mfbd_flags = ");
918 pandecode_log_decoded_flags(mfbd_flag_info, fb->mfbd_flags);
919 pandecode_log_cont(",\n");
920
921 pandecode_prop("clear_stencil = 0x%x", fb->clear_stencil);
922 pandecode_prop("clear_depth = %f", fb->clear_depth);
923
924 pandecode_prop("unknown2 = 0x%x", fb->unknown2);
925 MEMORY_PROP(fb, scratchpad);
926 const struct midgard_tiler_descriptor t = fb->tiler;
927 pandecode_midgard_tiler_descriptor(&t, fb->width1 + 1, fb->height1 + 1, is_fragment);
928
929 if (fb->zero3 || fb->zero4) {
930 pandecode_msg("XXX: framebuffer zeros tripped\n");
931 pandecode_prop("zero3 = 0x%" PRIx32, fb->zero3);
932 pandecode_prop("zero4 = 0x%" PRIx32, fb->zero4);
933 }
934
935 pandecode_indent--;
936 pandecode_log("};\n");
937
938 gpu_va += sizeof(struct bifrost_framebuffer);
939
940 if ((fb->mfbd_flags & MALI_MFBD_EXTRA) && is_fragment) {
941 mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
942 const struct bifrost_fb_extra *PANDECODE_PTR_VAR(fbx, mem, (mali_ptr) gpu_va);
943
944 pandecode_log("struct bifrost_fb_extra fb_extra_%"PRIx64"_%d = {\n", gpu_va, job_no);
945 pandecode_indent++;
946
947 MEMORY_PROP(fbx, checksum);
948
949 if (fbx->checksum_stride)
950 pandecode_prop("checksum_stride = %d", fbx->checksum_stride);
951
952 pandecode_log(".flags = ");
953 pandecode_log_decoded_flags(mfbd_extra_flag_info, fbx->flags);
954 pandecode_log_cont(",\n");
955
956 if (fbx->flags & MALI_EXTRA_AFBC_ZS) {
957 pandecode_log(".ds_afbc = {\n");
958 pandecode_indent++;
959
960 MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil_afbc_metadata);
961 pandecode_prop("depth_stencil_afbc_stride = %d",
962 fbx->ds_afbc.depth_stencil_afbc_stride);
963 MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil);
964
965 if (fbx->ds_afbc.zero1 || fbx->ds_afbc.padding) {
966 pandecode_msg("XXX: Depth/stencil AFBC zeros tripped\n");
967 pandecode_prop("zero1 = 0x%" PRIx32,
968 fbx->ds_afbc.zero1);
969 pandecode_prop("padding = 0x%" PRIx64,
970 fbx->ds_afbc.padding);
971 }
972
973 pandecode_indent--;
974 pandecode_log("},\n");
975 } else {
976 pandecode_log(".ds_linear = {\n");
977 pandecode_indent++;
978
979 if (fbx->ds_linear.depth) {
980 MEMORY_PROP_DIR(fbx->ds_linear, depth);
981 pandecode_prop("depth_stride = %d",
982 fbx->ds_linear.depth_stride);
983 }
984
985 if (fbx->ds_linear.stencil) {
986 MEMORY_PROP_DIR(fbx->ds_linear, stencil);
987 pandecode_prop("stencil_stride = %d",
988 fbx->ds_linear.stencil_stride);
989 }
990
991 if (fbx->ds_linear.depth_stride_zero ||
992 fbx->ds_linear.stencil_stride_zero ||
993 fbx->ds_linear.zero1 || fbx->ds_linear.zero2) {
994 pandecode_msg("XXX: Depth/stencil zeros tripped\n");
995 pandecode_prop("depth_stride_zero = 0x%x",
996 fbx->ds_linear.depth_stride_zero);
997 pandecode_prop("stencil_stride_zero = 0x%x",
998 fbx->ds_linear.stencil_stride_zero);
999 pandecode_prop("zero1 = 0x%" PRIx32,
1000 fbx->ds_linear.zero1);
1001 pandecode_prop("zero2 = 0x%" PRIx32,
1002 fbx->ds_linear.zero2);
1003 }
1004
1005 pandecode_indent--;
1006 pandecode_log("},\n");
1007 }
1008
1009 if (fbx->zero3 || fbx->zero4) {
1010 pandecode_msg("XXX: fb_extra zeros tripped\n");
1011 pandecode_prop("zero3 = 0x%" PRIx64, fbx->zero3);
1012 pandecode_prop("zero4 = 0x%" PRIx64, fbx->zero4);
1013 }
1014
1015 pandecode_indent--;
1016 pandecode_log("};\n");
1017
1018 gpu_va += sizeof(struct bifrost_fb_extra);
1019 }
1020
1021 if (is_fragment)
1022 pandecode_render_target(gpu_va, job_no, fb);
1023
1024 /* Passback the render target count */
1025 return MALI_NEGATIVE(fb->rt_count_1);
1026 }
1027
1028 /* Just add a comment decoding the shift/odd fields forming the padded vertices
1029 * count */
1030
1031 static void
1032 pandecode_padded_vertices(unsigned shift, unsigned k)
1033 {
1034 unsigned odd = 2*k + 1;
1035 unsigned pot = 1 << shift;
1036 pandecode_msg("padded_num_vertices = %d\n", odd * pot);
1037 }
1038
1039 /* Given a magic divisor, recover what we were trying to divide by.
1040 *
1041 * Let m represent the magic divisor. By definition, m is an element on Z, whre
1042 * 0 <= m < 2^N, for N bits in m.
1043 *
1044 * Let q represent the number we would like to divide by.
1045 *
1046 * By definition of a magic divisor for N-bit unsigned integers (a number you
1047 * multiply by to magically get division), m is a number such that:
1048 *
1049 * (m * x) & (2^N - 1) = floor(x/q).
1050 * for all x on Z where 0 <= x < 2^N
1051 *
1052 * Ignore the case where any of the above values equals zero; it is irrelevant
1053 * for our purposes (instanced arrays).
1054 *
1055 * Choose x = q. Then:
1056 *
1057 * (m * x) & (2^N - 1) = floor(x/q).
1058 * (m * q) & (2^N - 1) = floor(q/q).
1059 *
1060 * floor(q/q) = floor(1) = 1, therefore:
1061 *
1062 * (m * q) & (2^N - 1) = 1
1063 *
1064 * Recall the identity that the bitwise AND of one less than a power-of-two
1065 * equals the modulo with that power of two, i.e. for all x:
1066 *
1067 * x & (2^N - 1) = x % N
1068 *
1069 * Therefore:
1070 *
1071 * mq % (2^N) = 1
1072 *
1073 * By definition, a modular multiplicative inverse of a number m is the number
1074 * q such that with respect to a modulos M:
1075 *
1076 * mq % M = 1
1077 *
1078 * Therefore, q is the modular multiplicative inverse of m with modulus 2^N.
1079 *
1080 */
1081
1082 static void
1083 pandecode_magic_divisor(uint32_t magic, unsigned shift, unsigned orig_divisor, unsigned extra)
1084 {
1085 #if 0
1086 /* Compute the modular inverse of `magic` with respect to 2^(32 -
1087 * shift) the most lame way possible... just repeatedly add.
1088 * Asymptoptically slow but nobody cares in practice, unless you have
1089 * massive numbers of vertices or high divisors. */
1090
1091 unsigned inverse = 0;
1092
1093 /* Magic implicitly has the highest bit set */
1094 magic |= (1 << 31);
1095
1096 /* Depending on rounding direction */
1097 if (extra)
1098 magic++;
1099
1100 for (;;) {
1101 uint32_t product = magic * inverse;
1102
1103 if (shift) {
1104 product >>= shift;
1105 }
1106
1107 if (product == 1)
1108 break;
1109
1110 ++inverse;
1111 }
1112
1113 pandecode_msg("dividing by %d (maybe off by two)\n", inverse);
1114
1115 /* Recall we're supposed to divide by (gl_level_divisor *
1116 * padded_num_vertices) */
1117
1118 unsigned padded_num_vertices = inverse / orig_divisor;
1119
1120 pandecode_msg("padded_num_vertices = %d\n", padded_num_vertices);
1121 #endif
1122 }
1123
1124 static void
1125 pandecode_attributes(const struct pandecode_mapped_memory *mem,
1126 mali_ptr addr, int job_no, char *suffix,
1127 int count, bool varying)
1128 {
1129 char *prefix = varying ? "varyings" : "attributes";
1130
1131 if (!addr) {
1132 pandecode_msg("no %s\n", prefix);
1133 return;
1134 }
1135
1136 union mali_attr *attr = pandecode_fetch_gpu_mem(mem, addr, sizeof(union mali_attr) * count);
1137
1138 char base[128];
1139 snprintf(base, sizeof(base), "%s_data_%d%s", prefix, job_no, suffix);
1140
1141 for (int i = 0; i < count; ++i) {
1142 enum mali_attr_mode mode = attr[i].elements & 7;
1143
1144 if (mode == MALI_ATTR_UNUSED)
1145 continue;
1146
1147 mali_ptr raw_elements = attr[i].elements & ~7;
1148
1149 /* TODO: Do we maybe want to dump the attribute values
1150 * themselves given the specified format? Or is that too hard?
1151 * */
1152
1153 char *a = pointer_as_memory_reference(raw_elements);
1154 pandecode_log("mali_ptr %s_%d_p = %s;\n", base, i, a);
1155 free(a);
1156 }
1157
1158 pandecode_log("union mali_attr %s_%d[] = {\n", prefix, job_no);
1159 pandecode_indent++;
1160
1161 for (int i = 0; i < count; ++i) {
1162 pandecode_log("{\n");
1163 pandecode_indent++;
1164
1165 unsigned mode = attr[i].elements & 7;
1166 pandecode_prop("elements = (%s_%d_p) | %s", base, i, pandecode_attr_mode(mode));
1167 pandecode_prop("shift = %d", attr[i].shift);
1168 pandecode_prop("extra_flags = %d", attr[i].extra_flags);
1169 pandecode_prop("stride = 0x%" PRIx32, attr[i].stride);
1170 pandecode_prop("size = 0x%" PRIx32, attr[i].size);
1171
1172 /* Decode further where possible */
1173
1174 if (mode == MALI_ATTR_MODULO) {
1175 pandecode_padded_vertices(
1176 attr[i].shift,
1177 attr[i].extra_flags);
1178 }
1179
1180 pandecode_indent--;
1181 pandecode_log("}, \n");
1182
1183 if (mode == MALI_ATTR_NPOT_DIVIDE) {
1184 i++;
1185 pandecode_log("{\n");
1186 pandecode_indent++;
1187 pandecode_prop("unk = 0x%x", attr[i].unk);
1188 pandecode_prop("magic_divisor = 0x%08x", attr[i].magic_divisor);
1189 if (attr[i].zero != 0)
1190 pandecode_prop("XXX: zero tripped (0x%x)\n", attr[i].zero);
1191 pandecode_prop("divisor = %d", attr[i].divisor);
1192 pandecode_magic_divisor(attr[i].magic_divisor, attr[i - 1].shift, attr[i].divisor, attr[i - 1].extra_flags);
1193 pandecode_indent--;
1194 pandecode_log("}, \n");
1195 }
1196
1197 }
1198
1199 pandecode_indent--;
1200 pandecode_log("};\n");
1201 }
1202
1203 static mali_ptr
1204 pandecode_shader_address(const char *name, mali_ptr ptr)
1205 {
1206 /* TODO: Decode flags */
1207 mali_ptr shader_ptr = ptr & ~15;
1208
1209 char *a = pointer_as_memory_reference(shader_ptr);
1210 pandecode_prop("%s = (%s) | %d", name, a, (int) (ptr & 15));
1211 free(a);
1212
1213 return shader_ptr;
1214 }
1215
1216 static bool
1217 all_zero(unsigned *buffer, unsigned count)
1218 {
1219 for (unsigned i = 0; i < count; ++i) {
1220 if (buffer[i])
1221 return false;
1222 }
1223
1224 return true;
1225 }
1226
1227 static void
1228 pandecode_stencil(const char *name, const struct mali_stencil_test *stencil)
1229 {
1230 if (all_zero((unsigned *) stencil, sizeof(stencil) / sizeof(unsigned)))
1231 return;
1232
1233 const char *func = pandecode_func(stencil->func);
1234 const char *sfail = pandecode_stencil_op(stencil->sfail);
1235 const char *dpfail = pandecode_stencil_op(stencil->dpfail);
1236 const char *dppass = pandecode_stencil_op(stencil->dppass);
1237
1238 if (stencil->zero)
1239 pandecode_msg("XXX: stencil zero tripped: %X\n", stencil->zero);
1240
1241 pandecode_log(".stencil_%s = {\n", name);
1242 pandecode_indent++;
1243 pandecode_prop("ref = %d", stencil->ref);
1244 pandecode_prop("mask = 0x%02X", stencil->mask);
1245 pandecode_prop("func = %s", func);
1246 pandecode_prop("sfail = %s", sfail);
1247 pandecode_prop("dpfail = %s", dpfail);
1248 pandecode_prop("dppass = %s", dppass);
1249 pandecode_indent--;
1250 pandecode_log("},\n");
1251 }
1252
1253 static void
1254 pandecode_blend_equation(const struct mali_blend_equation *blend)
1255 {
1256 if (blend->zero1)
1257 pandecode_msg("XXX: blend zero tripped: %X\n", blend->zero1);
1258
1259 pandecode_log(".equation = {\n");
1260 pandecode_indent++;
1261
1262 pandecode_prop("rgb_mode = 0x%X", blend->rgb_mode);
1263 pandecode_prop("alpha_mode = 0x%X", blend->alpha_mode);
1264
1265 pandecode_log(".color_mask = ");
1266 pandecode_log_decoded_flags(mask_flag_info, blend->color_mask);
1267 pandecode_log_cont(",\n");
1268
1269 pandecode_indent--;
1270 pandecode_log("},\n");
1271 }
1272
1273 /* Decodes a Bifrost blend constant. See the notes in bifrost_blend_rt */
1274
1275 static unsigned
1276 decode_bifrost_constant(u16 constant)
1277 {
1278 float lo = (float) (constant & 0xFF);
1279 float hi = (float) (constant >> 8);
1280
1281 return (hi / 255.0) + (lo / 65535.0);
1282 }
1283
1284 static mali_ptr
1285 pandecode_bifrost_blend(void *descs, int job_no, int rt_no)
1286 {
1287 struct bifrost_blend_rt *b =
1288 ((struct bifrost_blend_rt *) descs) + rt_no;
1289
1290 pandecode_log("struct bifrost_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no);
1291 pandecode_indent++;
1292
1293 pandecode_prop("flags = 0x%" PRIx16, b->flags);
1294 pandecode_prop("constant = 0x%" PRIx8 " /* %f */",
1295 b->constant, decode_bifrost_constant(b->constant));
1296
1297 /* TODO figure out blend shader enable bit */
1298 pandecode_blend_equation(&b->equation);
1299 pandecode_prop("unk2 = 0x%" PRIx16, b->unk2);
1300 pandecode_prop("index = 0x%" PRIx16, b->index);
1301 pandecode_prop("shader = 0x%" PRIx32, b->shader);
1302
1303 pandecode_indent--;
1304 pandecode_log("},\n");
1305
1306 return 0;
1307 }
1308
1309 static mali_ptr
1310 pandecode_midgard_blend(union midgard_blend *blend, bool is_shader)
1311 {
1312 if (all_zero((unsigned *) blend, sizeof(blend) / sizeof(unsigned)))
1313 return 0;
1314
1315 pandecode_log(".blend = {\n");
1316 pandecode_indent++;
1317
1318 if (is_shader) {
1319 pandecode_shader_address("shader", blend->shader);
1320 } else {
1321 pandecode_blend_equation(&blend->equation);
1322 pandecode_prop("constant = %f", blend->constant);
1323 }
1324
1325 pandecode_indent--;
1326 pandecode_log("},\n");
1327
1328 /* Return blend shader to disassemble if present */
1329 return is_shader ? (blend->shader & ~0xF) : 0;
1330 }
1331
1332 static mali_ptr
1333 pandecode_midgard_blend_mrt(void *descs, int job_no, int rt_no)
1334 {
1335 struct midgard_blend_rt *b =
1336 ((struct midgard_blend_rt *) descs) + rt_no;
1337
1338 /* Flags determine presence of blend shader */
1339 bool is_shader = (b->flags & 0xF) >= 0x2;
1340
1341 pandecode_log("struct midgard_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no);
1342 pandecode_indent++;
1343
1344 pandecode_prop("flags = 0x%" PRIx64, b->flags);
1345
1346 union midgard_blend blend = b->blend;
1347 mali_ptr shader = pandecode_midgard_blend(&blend, is_shader);
1348
1349 pandecode_indent--;
1350 pandecode_log("};\n");
1351
1352 return shader;
1353 }
1354
1355 static int
1356 pandecode_attribute_meta(int job_no, int count, const struct mali_vertex_tiler_postfix *v, bool varying, char *suffix)
1357 {
1358 char base[128];
1359 char *prefix = varying ? "varying" : "attribute";
1360 unsigned max_index = 0;
1361 snprintf(base, sizeof(base), "%s_meta", prefix);
1362
1363 pandecode_log("struct mali_attr_meta %s_%d%s[] = {\n", base, job_no, suffix);
1364 pandecode_indent++;
1365
1366 struct mali_attr_meta *attr_meta;
1367 mali_ptr p = varying ? (v->varying_meta & ~0xF) : v->attribute_meta;
1368
1369 struct pandecode_mapped_memory *attr_mem = pandecode_find_mapped_gpu_mem_containing(p);
1370
1371 for (int i = 0; i < count; ++i, p += sizeof(struct mali_attr_meta)) {
1372 attr_meta = pandecode_fetch_gpu_mem(attr_mem, p,
1373 sizeof(*attr_mem));
1374
1375 pandecode_log("{\n");
1376 pandecode_indent++;
1377 pandecode_prop("index = %d", attr_meta->index);
1378
1379 if (attr_meta->index > max_index)
1380 max_index = attr_meta->index;
1381 pandecode_swizzle(attr_meta->swizzle);
1382 pandecode_prop("format = %s", pandecode_format(attr_meta->format));
1383
1384 pandecode_prop("unknown1 = 0x%" PRIx64, (u64) attr_meta->unknown1);
1385 pandecode_prop("unknown3 = 0x%" PRIx64, (u64) attr_meta->unknown3);
1386 pandecode_prop("src_offset = %d", attr_meta->src_offset);
1387 pandecode_indent--;
1388 pandecode_log("},\n");
1389
1390 }
1391
1392 pandecode_indent--;
1393 pandecode_log("};\n");
1394
1395 return count ? (max_index + 1) : 0;
1396 }
1397
1398 static void
1399 pandecode_indices(uintptr_t pindices, uint32_t index_count, int job_no)
1400 {
1401 struct pandecode_mapped_memory *imem = pandecode_find_mapped_gpu_mem_containing(pindices);
1402
1403 if (imem) {
1404 /* Indices are literally just a u32 array :) */
1405
1406 uint32_t *PANDECODE_PTR_VAR(indices, imem, pindices);
1407
1408 pandecode_log("uint32_t indices_%d[] = {\n", job_no);
1409 pandecode_indent++;
1410
1411 for (unsigned i = 0; i < (index_count + 1); i += 3)
1412 pandecode_log("%d, %d, %d,\n",
1413 indices[i],
1414 indices[i + 1],
1415 indices[i + 2]);
1416
1417 pandecode_indent--;
1418 pandecode_log("};\n");
1419 }
1420 }
1421
1422 /* return bits [lo, hi) of word */
1423 static u32
1424 bits(u32 word, u32 lo, u32 hi)
1425 {
1426 if (hi - lo >= 32)
1427 return word; // avoid undefined behavior with the shift
1428
1429 return (word >> lo) & ((1 << (hi - lo)) - 1);
1430 }
1431
1432 static void
1433 pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bool noninstanced)
1434 {
1435 pandecode_log_cont("{\n");
1436 pandecode_indent++;
1437
1438 /* Decode invocation_count. See the comment before the definition of
1439 * invocation_count for an explanation.
1440 */
1441
1442 unsigned size_x = bits(p->invocation_count, 0, p->size_y_shift) + 1;
1443 unsigned size_y = bits(p->invocation_count, p->size_y_shift, p->size_z_shift) + 1;
1444 unsigned size_z = bits(p->invocation_count, p->size_z_shift, p->workgroups_x_shift) + 1;
1445
1446 unsigned groups_x = bits(p->invocation_count, p->workgroups_x_shift, p->workgroups_y_shift) + 1;
1447 unsigned groups_y = bits(p->invocation_count, p->workgroups_y_shift, p->workgroups_z_shift) + 1;
1448 unsigned groups_z = bits(p->invocation_count, p->workgroups_z_shift, 32) + 1;
1449
1450 /* Even though we have this decoded, we want to ensure that the
1451 * representation is "unique" so we don't lose anything by printing only
1452 * the final result. More specifically, we need to check that we were
1453 * passed something in canonical form, since the definition per the
1454 * hardware is inherently not unique. How? Well, take the resulting
1455 * decode and pack it ourselves! If it is bit exact with what we
1456 * decoded, we're good to go. */
1457
1458 struct mali_vertex_tiler_prefix ref;
1459 panfrost_pack_work_groups_compute(&ref, groups_x, groups_y, groups_z, size_x, size_y, size_z, noninstanced);
1460
1461 bool canonical =
1462 (p->invocation_count == ref.invocation_count) &&
1463 (p->size_y_shift == ref.size_y_shift) &&
1464 (p->size_z_shift == ref.size_z_shift) &&
1465 (p->workgroups_x_shift == ref.workgroups_x_shift) &&
1466 (p->workgroups_y_shift == ref.workgroups_y_shift) &&
1467 (p->workgroups_z_shift == ref.workgroups_z_shift) &&
1468 (p->workgroups_x_shift_2 == ref.workgroups_x_shift_2);
1469
1470 if (!canonical) {
1471 pandecode_msg("XXX: non-canonical workgroups packing\n");
1472 pandecode_msg("expected: %X, %d, %d, %d, %d, %d\n",
1473 ref.invocation_count,
1474 ref.size_y_shift,
1475 ref.size_z_shift,
1476 ref.workgroups_x_shift,
1477 ref.workgroups_y_shift,
1478 ref.workgroups_z_shift,
1479 ref.workgroups_x_shift_2);
1480
1481 pandecode_prop("invocation_count = 0x%" PRIx32, p->invocation_count);
1482 pandecode_prop("size_y_shift = %d", p->size_y_shift);
1483 pandecode_prop("size_z_shift = %d", p->size_z_shift);
1484 pandecode_prop("workgroups_x_shift = %d", p->workgroups_x_shift);
1485 pandecode_prop("workgroups_y_shift = %d", p->workgroups_y_shift);
1486 pandecode_prop("workgroups_z_shift = %d", p->workgroups_z_shift);
1487 pandecode_prop("workgroups_x_shift_2 = %d", p->workgroups_x_shift_2);
1488 }
1489
1490 /* Regardless, print the decode */
1491 pandecode_msg("size (%d, %d, %d), count (%d, %d, %d)\n",
1492 size_x, size_y, size_z,
1493 groups_x, groups_y, groups_z);
1494
1495 /* TODO: Decode */
1496 if (p->unknown_draw)
1497 pandecode_prop("unknown_draw = 0x%" PRIx32, p->unknown_draw);
1498
1499 pandecode_prop("workgroups_x_shift_3 = 0x%" PRIx32, p->workgroups_x_shift_3);
1500
1501 if (p->draw_mode != MALI_DRAW_NONE)
1502 pandecode_prop("draw_mode = %s", pandecode_draw_mode(p->draw_mode));
1503
1504 /* Index count only exists for tiler jobs anyway */
1505
1506 if (p->index_count)
1507 pandecode_prop("index_count = MALI_POSITIVE(%" PRId32 ")", p->index_count + 1);
1508
1509 if (p->offset_bias_correction)
1510 pandecode_prop("offset_bias_correction = %d", p->offset_bias_correction);
1511
1512 if (p->zero1) {
1513 pandecode_msg("XXX: payload zero tripped\n");
1514 pandecode_prop("zero1 = 0x%" PRIx32, p->zero1);
1515 }
1516
1517 pandecode_indent--;
1518 pandecode_log("},\n");
1519 }
1520
1521 static void
1522 pandecode_uniform_buffers(mali_ptr pubufs, int ubufs_count, int job_no)
1523 {
1524 struct pandecode_mapped_memory *umem = pandecode_find_mapped_gpu_mem_containing(pubufs);
1525 struct mali_uniform_buffer_meta *PANDECODE_PTR_VAR(ubufs, umem, pubufs);
1526
1527 pandecode_log("struct mali_uniform_buffer_meta uniform_buffers_%"PRIx64"_%d[] = {\n",
1528 pubufs, job_no);
1529 pandecode_indent++;
1530
1531 for (int i = 0; i < ubufs_count; i++) {
1532 pandecode_log("{\n");
1533 pandecode_indent++;
1534
1535 unsigned size = (ubufs[i].size + 1) * 16;
1536 mali_ptr addr = ubufs[i].ptr << 2;
1537
1538 pandecode_validate_buffer(addr, size);
1539
1540 char *ptr = pointer_as_memory_reference(ubufs[i].ptr << 2);
1541 pandecode_prop("size = %u", size);
1542 pandecode_prop("ptr = (%s) >> 2", ptr);
1543 pandecode_indent--;
1544 pandecode_log("},\n");
1545 free(ptr);
1546 }
1547
1548 pandecode_indent--;
1549 pandecode_log("};\n");
1550 }
1551
1552 static void
1553 pandecode_scratchpad(uintptr_t pscratchpad, int job_no, char *suffix)
1554 {
1555
1556 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(pscratchpad);
1557
1558 struct bifrost_scratchpad *PANDECODE_PTR_VAR(scratchpad, mem, pscratchpad);
1559
1560 if (scratchpad->zero) {
1561 pandecode_msg("XXX: scratchpad zero tripped");
1562 pandecode_prop("zero = 0x%x\n", scratchpad->zero);
1563 }
1564
1565 pandecode_log("struct bifrost_scratchpad scratchpad_%"PRIx64"_%d%s = {\n", pscratchpad, job_no, suffix);
1566 pandecode_indent++;
1567
1568 pandecode_prop("flags = 0x%x", scratchpad->flags);
1569 MEMORY_PROP(scratchpad, gpu_scratchpad);
1570
1571 pandecode_indent--;
1572 pandecode_log("};\n");
1573 }
1574
1575 static unsigned shader_id = 0;
1576
1577 static void
1578 pandecode_shader_disassemble(mali_ptr shader_ptr, int shader_no, int type,
1579 bool is_bifrost, unsigned nr_regs)
1580 {
1581 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(shader_ptr);
1582 uint8_t *PANDECODE_PTR_VAR(code, mem, shader_ptr);
1583
1584 /* Compute maximum possible size */
1585 size_t sz = mem->length - (shader_ptr - mem->gpu_va);
1586
1587 /* Print some boilerplate to clearly denote the assembly (which doesn't
1588 * obey indentation rules), and actually do the disassembly! */
1589
1590 printf("\n\n");
1591
1592 char prefix[512];
1593
1594 snprintf(prefix, sizeof(prefix) - 1, "shader%d - %s shader: ",
1595 shader_id++,
1596 (type == JOB_TYPE_TILER) ? "FRAGMENT" : "VERTEX");
1597
1598 if (is_bifrost) {
1599 disassemble_bifrost(code, sz, false);
1600 } else {
1601 disassemble_midgard(code, sz, true, nr_regs, prefix);
1602 }
1603
1604 printf("\n\n");
1605 }
1606
1607 static void
1608 pandecode_vertex_tiler_postfix_pre(const struct mali_vertex_tiler_postfix *p,
1609 int job_no, enum mali_job_type job_type,
1610 char *suffix, bool is_bifrost)
1611 {
1612 mali_ptr shader_meta_ptr = (u64) (uintptr_t) (p->_shader_upper << 4);
1613 struct pandecode_mapped_memory *attr_mem;
1614
1615 unsigned rt_count = 1;
1616
1617 /* On Bifrost, since the tiler heap (for tiler jobs) and the scratchpad
1618 * are the only things actually needed from the FBD, vertex/tiler jobs
1619 * no longer reference the FBD -- instead, this field points to some
1620 * info about the scratchpad.
1621 */
1622 if (is_bifrost)
1623 pandecode_scratchpad(p->framebuffer & ~FBD_TYPE, job_no, suffix);
1624 else if (p->framebuffer & MALI_MFBD)
1625 rt_count = pandecode_mfbd_bfr((u64) ((uintptr_t) p->framebuffer) & FBD_MASK, job_no, false);
1626 else if (job_type == JOB_TYPE_COMPUTE)
1627 pandecode_compute_fbd((u64) (uintptr_t) p->framebuffer, job_no);
1628 else
1629 pandecode_sfbd((u64) (uintptr_t) p->framebuffer, job_no, false);
1630
1631 int varying_count = 0, attribute_count = 0, uniform_count = 0, uniform_buffer_count = 0;
1632 int texture_count = 0, sampler_count = 0;
1633
1634 if (shader_meta_ptr) {
1635 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(shader_meta_ptr);
1636 struct mali_shader_meta *PANDECODE_PTR_VAR(s, smem, shader_meta_ptr);
1637
1638 pandecode_log("struct mali_shader_meta shader_meta_%"PRIx64"_%d%s = {\n", shader_meta_ptr, job_no, suffix);
1639 pandecode_indent++;
1640
1641 /* Save for dumps */
1642 attribute_count = s->attribute_count;
1643 varying_count = s->varying_count;
1644 texture_count = s->texture_count;
1645 sampler_count = s->sampler_count;
1646
1647 if (is_bifrost) {
1648 uniform_count = s->bifrost2.uniform_count;
1649 uniform_buffer_count = s->bifrost1.uniform_buffer_count;
1650 } else {
1651 uniform_count = s->midgard1.uniform_buffer_count;
1652 uniform_buffer_count = s->midgard1.uniform_buffer_count;
1653 }
1654
1655 mali_ptr shader_ptr = pandecode_shader_address("shader", s->shader);
1656
1657 pandecode_prop("texture_count = %" PRId16, s->texture_count);
1658 pandecode_prop("sampler_count = %" PRId16, s->sampler_count);
1659 pandecode_prop("attribute_count = %" PRId16, s->attribute_count);
1660 pandecode_prop("varying_count = %" PRId16, s->varying_count);
1661
1662 unsigned nr_registers = 0;
1663
1664 if (is_bifrost) {
1665 pandecode_log(".bifrost1 = {\n");
1666 pandecode_indent++;
1667
1668 pandecode_prop("uniform_buffer_count = %" PRId32, s->bifrost1.uniform_buffer_count);
1669 pandecode_prop("unk1 = 0x%" PRIx32, s->bifrost1.unk1);
1670
1671 pandecode_indent--;
1672 pandecode_log("},\n");
1673 } else {
1674 pandecode_log(".midgard1 = {\n");
1675 pandecode_indent++;
1676
1677 pandecode_prop("uniform_count = %" PRId16, s->midgard1.uniform_count);
1678 pandecode_prop("uniform_buffer_count = %" PRId16, s->midgard1.uniform_buffer_count);
1679 pandecode_prop("work_count = %" PRId16, s->midgard1.work_count);
1680 nr_registers = s->midgard1.work_count;
1681
1682 pandecode_log(".flags = ");
1683 pandecode_log_decoded_flags(shader_midgard1_flag_info, s->midgard1.flags);
1684 pandecode_log_cont(",\n");
1685
1686 pandecode_prop("unknown2 = 0x%" PRIx32, s->midgard1.unknown2);
1687
1688 pandecode_indent--;
1689 pandecode_log("},\n");
1690 }
1691
1692 if (s->depth_units || s->depth_factor) {
1693 pandecode_prop("depth_factor = %f", s->depth_factor);
1694 pandecode_prop("depth_units = %f", s->depth_units);
1695 }
1696
1697 if (s->alpha_coverage) {
1698 bool invert_alpha_coverage = s->alpha_coverage & 0xFFF0;
1699 uint16_t inverted_coverage = invert_alpha_coverage ? ~s->alpha_coverage : s->alpha_coverage;
1700
1701 pandecode_prop("alpha_coverage = %sMALI_ALPHA_COVERAGE(%f)",
1702 invert_alpha_coverage ? "~" : "",
1703 MALI_GET_ALPHA_COVERAGE(inverted_coverage));
1704 }
1705
1706 if (s->unknown2_3 || s->unknown2_4) {
1707 pandecode_log(".unknown2_3 = ");
1708
1709 int unknown2_3 = s->unknown2_3;
1710 int unknown2_4 = s->unknown2_4;
1711
1712 /* We're not quite sure what these flags mean without the depth test, if anything */
1713
1714 if (unknown2_3 & (MALI_DEPTH_TEST | MALI_DEPTH_FUNC_MASK)) {
1715 const char *func = pandecode_func(MALI_GET_DEPTH_FUNC(unknown2_3));
1716 unknown2_3 &= ~MALI_DEPTH_FUNC_MASK;
1717
1718 pandecode_log_cont("MALI_DEPTH_FUNC(%s) | ", func);
1719 }
1720
1721 pandecode_log_decoded_flags(u3_flag_info, unknown2_3);
1722 pandecode_log_cont(",\n");
1723
1724 pandecode_log(".unknown2_4 = ");
1725 pandecode_log_decoded_flags(u4_flag_info, unknown2_4);
1726 pandecode_log_cont(",\n");
1727 }
1728
1729 if (s->stencil_mask_front || s->stencil_mask_back) {
1730 pandecode_prop("stencil_mask_front = 0x%02X", s->stencil_mask_front);
1731 pandecode_prop("stencil_mask_back = 0x%02X", s->stencil_mask_back);
1732 }
1733
1734 pandecode_stencil("front", &s->stencil_front);
1735 pandecode_stencil("back", &s->stencil_back);
1736
1737 if (is_bifrost) {
1738 pandecode_log(".bifrost2 = {\n");
1739 pandecode_indent++;
1740
1741 pandecode_prop("unk3 = 0x%" PRIx32, s->bifrost2.unk3);
1742 pandecode_prop("preload_regs = 0x%" PRIx32, s->bifrost2.preload_regs);
1743 pandecode_prop("uniform_count = %" PRId32, s->bifrost2.uniform_count);
1744 pandecode_prop("unk4 = 0x%" PRIx32, s->bifrost2.unk4);
1745
1746 pandecode_indent--;
1747 pandecode_log("},\n");
1748 } else if (s->midgard2.unknown2_7) {
1749 pandecode_log(".midgard2 = {\n");
1750 pandecode_indent++;
1751
1752 pandecode_prop("unknown2_7 = 0x%" PRIx32, s->midgard2.unknown2_7);
1753 pandecode_indent--;
1754 pandecode_log("},\n");
1755 }
1756
1757 if (s->unknown2_8)
1758 pandecode_prop("unknown2_8 = 0x%" PRIx32, s->unknown2_8);
1759
1760 if (!is_bifrost) {
1761 /* TODO: Blend shaders routing/disasm */
1762
1763 union midgard_blend blend = s->blend;
1764 pandecode_midgard_blend(&blend, false);
1765 }
1766
1767 pandecode_indent--;
1768 pandecode_log("};\n");
1769
1770 /* MRT blend fields are used whenever MFBD is used, with
1771 * per-RT descriptors */
1772
1773 if (job_type == JOB_TYPE_TILER) {
1774 void* blend_base = (void *) (s + 1);
1775
1776 for (unsigned i = 0; i < rt_count; i++) {
1777 mali_ptr shader = 0;
1778
1779 if (is_bifrost)
1780 shader = pandecode_bifrost_blend(blend_base, job_no, i);
1781 else
1782 shader = pandecode_midgard_blend_mrt(blend_base, job_no, i);
1783
1784 if (shader & ~0xF)
1785 pandecode_shader_disassemble(shader, job_no, job_type, false, 0);
1786 }
1787 }
1788
1789 if (shader_ptr & ~0xF)
1790 pandecode_shader_disassemble(shader_ptr, job_no, job_type, is_bifrost, nr_registers);
1791 } else
1792 pandecode_msg("<no shader>\n");
1793
1794 if (p->viewport) {
1795 struct pandecode_mapped_memory *fmem = pandecode_find_mapped_gpu_mem_containing(p->viewport);
1796 struct mali_viewport *PANDECODE_PTR_VAR(f, fmem, p->viewport);
1797
1798 pandecode_log("struct mali_viewport viewport_%"PRIx64"_%d%s = {\n", p->viewport, job_no, suffix);
1799 pandecode_indent++;
1800
1801 pandecode_prop("clip_minx = %f", f->clip_minx);
1802 pandecode_prop("clip_miny = %f", f->clip_miny);
1803 pandecode_prop("clip_minz = %f", f->clip_minz);
1804 pandecode_prop("clip_maxx = %f", f->clip_maxx);
1805 pandecode_prop("clip_maxy = %f", f->clip_maxy);
1806 pandecode_prop("clip_maxz = %f", f->clip_maxz);
1807
1808 /* Only the higher coordinates are MALI_POSITIVE scaled */
1809
1810 pandecode_prop("viewport0 = { %d, %d }",
1811 f->viewport0[0], f->viewport0[1]);
1812
1813 pandecode_prop("viewport1 = { MALI_POSITIVE(%d), MALI_POSITIVE(%d) }",
1814 f->viewport1[0] + 1, f->viewport1[1] + 1);
1815
1816 pandecode_indent--;
1817 pandecode_log("};\n");
1818 }
1819
1820 if (p->attribute_meta) {
1821 unsigned max_attr_index = pandecode_attribute_meta(job_no, attribute_count, p, false, suffix);
1822
1823 attr_mem = pandecode_find_mapped_gpu_mem_containing(p->attributes);
1824 pandecode_attributes(attr_mem, p->attributes, job_no, suffix, max_attr_index, false);
1825 }
1826
1827 /* Varyings are encoded like attributes but not actually sent; we just
1828 * pass a zero buffer with the right stride/size set, (or whatever)
1829 * since the GPU will write to it itself */
1830
1831 if (p->varying_meta) {
1832 varying_count = pandecode_attribute_meta(job_no, varying_count, p, true, suffix);
1833 }
1834
1835 if (p->varyings) {
1836 attr_mem = pandecode_find_mapped_gpu_mem_containing(p->varyings);
1837
1838 /* Number of descriptors depends on whether there are
1839 * non-internal varyings */
1840
1841 pandecode_attributes(attr_mem, p->varyings, job_no, suffix, varying_count, true);
1842 }
1843
1844 if (p->uniform_buffers) {
1845 if (uniform_buffer_count)
1846 pandecode_uniform_buffers(p->uniform_buffers, uniform_buffer_count, job_no);
1847 else
1848 pandecode_msg("XXX: UBOs specified but not referenced\n");
1849 } else if (uniform_buffer_count)
1850 pandecode_msg("XXX: UBOs referenced but not specified\n");
1851
1852 /* We don't want to actually dump uniforms, but we do need to validate
1853 * that the counts we were given are sane */
1854
1855 if (p->uniforms) {
1856 if (uniform_count)
1857 pandecode_validate_buffer(p->uniforms, uniform_count * 16);
1858 else
1859 pandecode_msg("XXX: Uniforms specified but not referenced");
1860 } else if (uniform_count)
1861 pandecode_msg("XXX: UBOs referenced but not specified\n");
1862
1863 if (p->texture_trampoline) {
1864 struct pandecode_mapped_memory *mmem = pandecode_find_mapped_gpu_mem_containing(p->texture_trampoline);
1865
1866 if (mmem) {
1867 mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline);
1868
1869 pandecode_log("uint64_t texture_trampoline_%"PRIx64"_%d[] = {\n", p->texture_trampoline, job_no);
1870 pandecode_indent++;
1871
1872 for (int tex = 0; tex < texture_count; ++tex) {
1873 mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline + tex * sizeof(mali_ptr));
1874 char *a = pointer_as_memory_reference(*u);
1875 pandecode_log("%s,\n", a);
1876 free(a);
1877 }
1878
1879 pandecode_indent--;
1880 pandecode_log("};\n");
1881
1882 /* Now, finally, descend down into the texture descriptor */
1883 for (int tex = 0; tex < texture_count; ++tex) {
1884 mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline + tex * sizeof(mali_ptr));
1885 struct pandecode_mapped_memory *tmem = pandecode_find_mapped_gpu_mem_containing(*u);
1886
1887 if (tmem) {
1888 struct mali_texture_descriptor *PANDECODE_PTR_VAR(t, tmem, *u);
1889
1890 pandecode_log("struct mali_texture_descriptor texture_descriptor_%"PRIx64"_%d_%d = {\n", *u, job_no, tex);
1891 pandecode_indent++;
1892
1893 pandecode_prop("width = MALI_POSITIVE(%" PRId16 ")", t->width + 1);
1894 pandecode_prop("height = MALI_POSITIVE(%" PRId16 ")", t->height + 1);
1895 pandecode_prop("depth = MALI_POSITIVE(%" PRId16 ")", t->depth + 1);
1896 pandecode_prop("array_size = MALI_POSITIVE(%" PRId16 ")", t->array_size + 1);
1897 pandecode_prop("unknown3 = %" PRId16, t->unknown3);
1898 pandecode_prop("unknown3A = %" PRId8, t->unknown3A);
1899 pandecode_prop("nr_mipmap_levels = %" PRId8, t->nr_mipmap_levels);
1900
1901 struct mali_texture_format f = t->format;
1902
1903 pandecode_log(".format = {\n");
1904 pandecode_indent++;
1905
1906 pandecode_swizzle(f.swizzle);
1907 pandecode_prop("format = %s", pandecode_format(f.format));
1908 pandecode_prop("type = %s", pandecode_texture_type(f.type));
1909 pandecode_prop("srgb = %" PRId32, f.srgb);
1910 pandecode_prop("unknown1 = %" PRId32, f.unknown1);
1911 pandecode_prop("usage2 = 0x%" PRIx32, f.usage2);
1912
1913 pandecode_indent--;
1914 pandecode_log("},\n");
1915
1916 pandecode_swizzle(t->swizzle);
1917
1918 if (t->swizzle_zero) {
1919 /* Shouldn't happen */
1920 pandecode_msg("XXX: swizzle zero tripped\n");
1921 pandecode_prop("swizzle_zero = %d", t->swizzle_zero);
1922 }
1923
1924 pandecode_prop("unknown3 = 0x%" PRIx32, t->unknown3);
1925
1926 pandecode_prop("unknown5 = 0x%" PRIx32, t->unknown5);
1927 pandecode_prop("unknown6 = 0x%" PRIx32, t->unknown6);
1928 pandecode_prop("unknown7 = 0x%" PRIx32, t->unknown7);
1929
1930 pandecode_log(".payload = {\n");
1931 pandecode_indent++;
1932
1933 /* A bunch of bitmap pointers follow.
1934 * We work out the correct number,
1935 * based on the mipmap/cubemap
1936 * properties, but dump extra
1937 * possibilities to futureproof */
1938
1939 int bitmap_count = MALI_NEGATIVE(t->nr_mipmap_levels);
1940 bool manual_stride = f.usage2 & MALI_TEX_MANUAL_STRIDE;
1941
1942 /* Miptree for each face */
1943 if (f.type == MALI_TEX_CUBE)
1944 bitmap_count *= 6;
1945
1946 /* Array of textures */
1947 bitmap_count *= MALI_NEGATIVE(t->array_size);
1948
1949 /* Stride for each element */
1950 if (manual_stride)
1951 bitmap_count *= 2;
1952
1953 /* Sanity check the size */
1954 int max_count = sizeof(t->payload) / sizeof(t->payload[0]);
1955 assert (bitmap_count <= max_count);
1956
1957 for (int i = 0; i < bitmap_count; ++i) {
1958 /* How we dump depends if this is a stride or a pointer */
1959
1960 if ((f.usage2 & MALI_TEX_MANUAL_STRIDE) && (i & 1)) {
1961 /* signed 32-bit snuck in as a 64-bit pointer */
1962 uint64_t stride_set = t->payload[i];
1963 uint32_t clamped_stride = stride_set;
1964 int32_t stride = clamped_stride;
1965 assert(stride_set == clamped_stride);
1966 pandecode_log("(mali_ptr) %d /* stride */, \n", stride);
1967 } else {
1968 char *a = pointer_as_memory_reference(t->payload[i]);
1969 pandecode_log("%s, \n", a);
1970 free(a);
1971 }
1972 }
1973
1974 pandecode_indent--;
1975 pandecode_log("},\n");
1976
1977 pandecode_indent--;
1978 pandecode_log("};\n");
1979 }
1980 }
1981 }
1982 }
1983
1984 if (p->sampler_descriptor) {
1985 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(p->sampler_descriptor);
1986
1987 if (smem) {
1988 struct mali_sampler_descriptor *s;
1989
1990 mali_ptr d = p->sampler_descriptor;
1991
1992 for (int i = 0; i < sampler_count; ++i) {
1993 s = pandecode_fetch_gpu_mem(smem, d + sizeof(*s) * i, sizeof(*s));
1994
1995 pandecode_log("struct mali_sampler_descriptor sampler_descriptor_%"PRIx64"_%d_%d = {\n", d + sizeof(*s) * i, job_no, i);
1996 pandecode_indent++;
1997
1998 pandecode_log(".filter_mode = ");
1999 pandecode_log_decoded_flags(sampler_flag_info, s->filter_mode);
2000 pandecode_log_cont(",\n");
2001
2002 pandecode_prop("min_lod = FIXED_16(%f)", DECODE_FIXED_16(s->min_lod));
2003 pandecode_prop("max_lod = FIXED_16(%f)", DECODE_FIXED_16(s->max_lod));
2004
2005 pandecode_prop("wrap_s = %s", pandecode_wrap_mode(s->wrap_s));
2006 pandecode_prop("wrap_t = %s", pandecode_wrap_mode(s->wrap_t));
2007 pandecode_prop("wrap_r = %s", pandecode_wrap_mode(s->wrap_r));
2008
2009 pandecode_prop("compare_func = %s", pandecode_alt_func(s->compare_func));
2010
2011 if (s->zero || s->zero2) {
2012 pandecode_msg("XXX: sampler zero tripped\n");
2013 pandecode_prop("zero = 0x%X, 0x%X\n", s->zero, s->zero2);
2014 }
2015
2016 pandecode_prop("seamless_cube_map = %d", s->seamless_cube_map);
2017
2018 pandecode_prop("border_color = { %f, %f, %f, %f }",
2019 s->border_color[0],
2020 s->border_color[1],
2021 s->border_color[2],
2022 s->border_color[3]);
2023
2024 pandecode_indent--;
2025 pandecode_log("};\n");
2026 }
2027 }
2028 }
2029 }
2030
2031 static void
2032 pandecode_vertex_tiler_postfix(const struct mali_vertex_tiler_postfix *p, int job_no, bool is_bifrost)
2033 {
2034 if (!(p->position_varying || p->occlusion_counter || p->flags))
2035 return;
2036
2037 pandecode_log(".postfix = {\n");
2038 pandecode_indent++;
2039
2040 MEMORY_PROP(p, position_varying);
2041 MEMORY_PROP(p, occlusion_counter);
2042
2043 if (p->flags)
2044 pandecode_prop("flags = %d", p->flags);
2045
2046 pandecode_indent--;
2047 pandecode_log("},\n");
2048 }
2049
2050 static void
2051 pandecode_vertex_only_bfr(struct bifrost_vertex_only *v)
2052 {
2053 pandecode_log_cont("{\n");
2054 pandecode_indent++;
2055
2056 pandecode_prop("unk2 = 0x%x", v->unk2);
2057
2058 if (v->zero0 || v->zero1) {
2059 pandecode_msg("XXX: vertex only zero tripped");
2060 pandecode_prop("zero0 = 0x%" PRIx32, v->zero0);
2061 pandecode_prop("zero1 = 0x%" PRIx64, v->zero1);
2062 }
2063
2064 pandecode_indent--;
2065 pandecode_log("}\n");
2066 }
2067
2068 static void
2069 pandecode_tiler_heap_meta(mali_ptr gpu_va, int job_no)
2070 {
2071
2072 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
2073 const struct bifrost_tiler_heap_meta *PANDECODE_PTR_VAR(h, mem, gpu_va);
2074
2075 pandecode_log("struct mali_tiler_heap_meta tiler_heap_meta_%d = {\n", job_no);
2076 pandecode_indent++;
2077
2078 if (h->zero) {
2079 pandecode_msg("XXX: tiler heap zero tripped\n");
2080 pandecode_prop("zero = 0x%x", h->zero);
2081 }
2082
2083 for (int i = 0; i < 12; i++) {
2084 if (h->zeros[i] != 0) {
2085 pandecode_msg("XXX: tiler heap zero %d tripped, value %x\n",
2086 i, h->zeros[i]);
2087 }
2088 }
2089
2090 pandecode_prop("heap_size = 0x%x", h->heap_size);
2091 MEMORY_PROP(h, tiler_heap_start);
2092 MEMORY_PROP(h, tiler_heap_free);
2093
2094 /* this might point to the beginning of another buffer, when it's
2095 * really the end of the tiler heap buffer, so we have to be careful
2096 * here. but for zero length, we need the same pointer.
2097 */
2098
2099 if (h->tiler_heap_end == h->tiler_heap_start) {
2100 MEMORY_PROP(h, tiler_heap_start);
2101 } else {
2102 char *a = pointer_as_memory_reference(h->tiler_heap_end - 1);
2103 pandecode_prop("tiler_heap_end = %s + 1", a);
2104 free(a);
2105 }
2106
2107 pandecode_indent--;
2108 pandecode_log("};\n");
2109 }
2110
2111 static void
2112 pandecode_tiler_meta(mali_ptr gpu_va, int job_no)
2113 {
2114 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
2115 const struct bifrost_tiler_meta *PANDECODE_PTR_VAR(t, mem, gpu_va);
2116
2117 pandecode_tiler_heap_meta(t->tiler_heap_meta, job_no);
2118
2119 pandecode_log("struct bifrost_tiler_meta tiler_meta_%d = {\n", job_no);
2120 pandecode_indent++;
2121
2122 if (t->zero0 || t->zero1) {
2123 pandecode_msg("XXX: tiler meta zero tripped\n");
2124 pandecode_prop("zero0 = 0x%" PRIx64, t->zero0);
2125 pandecode_prop("zero1 = 0x%" PRIx64, t->zero1);
2126 }
2127
2128 pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask);
2129 pandecode_prop("flags = 0x%" PRIx16, t->flags);
2130
2131 pandecode_prop("width = MALI_POSITIVE(%d)", t->width + 1);
2132 pandecode_prop("height = MALI_POSITIVE(%d)", t->height + 1);
2133
2134 for (int i = 0; i < 12; i++) {
2135 if (t->zeros[i] != 0) {
2136 pandecode_msg("XXX: tiler heap zero %d tripped, value %" PRIx64 "\n",
2137 i, t->zeros[i]);
2138 }
2139 }
2140
2141 pandecode_indent--;
2142 pandecode_log("};\n");
2143 }
2144
2145 static void
2146 pandecode_gl_enables(uint32_t gl_enables, int job_type)
2147 {
2148 pandecode_log(".gl_enables = ");
2149
2150 pandecode_log_decoded_flags(gl_enable_flag_info, gl_enables);
2151
2152 pandecode_log_cont(",\n");
2153 }
2154
2155 static void
2156 pandecode_primitive_size(union midgard_primitive_size u, bool constant)
2157 {
2158 if (u.pointer == 0x0)
2159 return;
2160
2161 pandecode_log(".primitive_size = {\n");
2162 pandecode_indent++;
2163
2164 if (constant) {
2165 pandecode_prop("constant = %f", u.constant);
2166 } else {
2167 MEMORY_PROP((&u), pointer);
2168 }
2169
2170 pandecode_indent--;
2171 pandecode_log("},\n");
2172 }
2173
2174 static void
2175 pandecode_tiler_only_bfr(const struct bifrost_tiler_only *t, int job_no)
2176 {
2177 pandecode_log_cont("{\n");
2178 pandecode_indent++;
2179
2180 /* TODO: gl_PointSize on Bifrost */
2181 pandecode_primitive_size(t->primitive_size, true);
2182
2183 pandecode_gl_enables(t->gl_enables, JOB_TYPE_TILER);
2184
2185 if (t->zero1 || t->zero2 || t->zero3 || t->zero4 || t->zero5
2186 || t->zero6 || t->zero7 || t->zero8) {
2187 pandecode_msg("XXX: tiler only zero tripped\n");
2188 pandecode_prop("zero1 = 0x%" PRIx64, t->zero1);
2189 pandecode_prop("zero2 = 0x%" PRIx64, t->zero2);
2190 pandecode_prop("zero3 = 0x%" PRIx64, t->zero3);
2191 pandecode_prop("zero4 = 0x%" PRIx64, t->zero4);
2192 pandecode_prop("zero5 = 0x%" PRIx64, t->zero5);
2193 pandecode_prop("zero6 = 0x%" PRIx64, t->zero6);
2194 pandecode_prop("zero7 = 0x%" PRIx32, t->zero7);
2195 pandecode_prop("zero8 = 0x%" PRIx64, t->zero8);
2196 }
2197
2198 pandecode_indent--;
2199 pandecode_log("},\n");
2200 }
2201
2202 static int
2203 pandecode_vertex_job_bfr(const struct mali_job_descriptor_header *h,
2204 const struct pandecode_mapped_memory *mem,
2205 mali_ptr payload, int job_no)
2206 {
2207 struct bifrost_payload_vertex *PANDECODE_PTR_VAR(v, mem, payload);
2208
2209 pandecode_vertex_tiler_postfix_pre(&v->postfix, job_no, h->job_type, "", true);
2210
2211 pandecode_log("struct bifrost_payload_vertex payload_%d = {\n", job_no);
2212 pandecode_indent++;
2213
2214 pandecode_log(".prefix = ");
2215 pandecode_vertex_tiler_prefix(&v->prefix, job_no, false);
2216
2217 pandecode_log(".vertex = ");
2218 pandecode_vertex_only_bfr(&v->vertex);
2219
2220 pandecode_vertex_tiler_postfix(&v->postfix, job_no, true);
2221
2222 pandecode_indent--;
2223 pandecode_log("};\n");
2224
2225 return sizeof(*v);
2226 }
2227
2228 static int
2229 pandecode_tiler_job_bfr(const struct mali_job_descriptor_header *h,
2230 const struct pandecode_mapped_memory *mem,
2231 mali_ptr payload, int job_no)
2232 {
2233 struct bifrost_payload_tiler *PANDECODE_PTR_VAR(t, mem, payload);
2234
2235 pandecode_vertex_tiler_postfix_pre(&t->postfix, job_no, h->job_type, "", true);
2236
2237 pandecode_indices(t->prefix.indices, t->prefix.index_count, job_no);
2238 pandecode_tiler_meta(t->tiler.tiler_meta, job_no);
2239
2240 pandecode_log("struct bifrost_payload_tiler payload_%d = {\n", job_no);
2241 pandecode_indent++;
2242
2243 pandecode_log(".prefix = ");
2244 pandecode_vertex_tiler_prefix(&t->prefix, job_no, false);
2245
2246 pandecode_log(".tiler = ");
2247 pandecode_tiler_only_bfr(&t->tiler, job_no);
2248
2249 pandecode_vertex_tiler_postfix(&t->postfix, job_no, true);
2250
2251 pandecode_indent--;
2252 pandecode_log("};\n");
2253
2254 return sizeof(*t);
2255 }
2256
2257 static int
2258 pandecode_vertex_or_tiler_job_mdg(const struct mali_job_descriptor_header *h,
2259 const struct pandecode_mapped_memory *mem,
2260 mali_ptr payload, int job_no)
2261 {
2262 struct midgard_payload_vertex_tiler *PANDECODE_PTR_VAR(v, mem, payload);
2263
2264 pandecode_vertex_tiler_postfix_pre(&v->postfix, job_no, h->job_type, "", false);
2265
2266 pandecode_indices(v->prefix.indices, v->prefix.index_count, job_no);
2267
2268 pandecode_log("struct midgard_payload_vertex_tiler payload_%d = {\n", job_no);
2269 pandecode_indent++;
2270
2271 bool has_primitive_pointer = v->prefix.unknown_draw & MALI_DRAW_VARYING_SIZE;
2272 pandecode_primitive_size(v->primitive_size, !has_primitive_pointer);
2273
2274 bool instanced = v->instance_shift || v->instance_odd;
2275 bool is_graphics = (h->job_type == JOB_TYPE_VERTEX) || (h->job_type == JOB_TYPE_TILER);
2276
2277 pandecode_log(".prefix = ");
2278 pandecode_vertex_tiler_prefix(&v->prefix, job_no, !instanced && is_graphics);
2279
2280 pandecode_gl_enables(v->gl_enables, h->job_type);
2281
2282 if (v->instance_shift || v->instance_odd) {
2283 pandecode_prop("instance_shift = 0x%d /* %d */",
2284 v->instance_shift, 1 << v->instance_shift);
2285 pandecode_prop("instance_odd = 0x%X /* %d */",
2286 v->instance_odd, (2 * v->instance_odd) + 1);
2287
2288 pandecode_padded_vertices(v->instance_shift, v->instance_odd);
2289 }
2290
2291 if (v->offset_start)
2292 pandecode_prop("offset_start = %d", v->offset_start);
2293
2294 if (v->zero5) {
2295 pandecode_msg("XXX: midgard payload zero tripped\n");
2296 pandecode_prop("zero5 = 0x%" PRIx64, v->zero5);
2297 }
2298
2299 pandecode_vertex_tiler_postfix(&v->postfix, job_no, false);
2300
2301 pandecode_indent--;
2302 pandecode_log("};\n");
2303
2304 return sizeof(*v);
2305 }
2306
2307 static int
2308 pandecode_fragment_job(const struct pandecode_mapped_memory *mem,
2309 mali_ptr payload, int job_no,
2310 bool is_bifrost)
2311 {
2312 const struct mali_payload_fragment *PANDECODE_PTR_VAR(s, mem, payload);
2313
2314 bool fbd_dumped = false;
2315
2316 if (!is_bifrost && (s->framebuffer & FBD_TYPE) == MALI_SFBD) {
2317 /* Only SFBDs are understood, not MFBDs. We're speculating,
2318 * based on the versioning, kernel code, etc, that the
2319 * difference is between Single FrameBuffer Descriptor and
2320 * Multiple FrmaeBuffer Descriptor; the change apparently lines
2321 * up with multi-framebuffer support being added (T7xx onwards,
2322 * including Gxx). In any event, there's some field shuffling
2323 * that we haven't looked into yet. */
2324
2325 pandecode_sfbd(s->framebuffer & FBD_MASK, job_no, true);
2326 fbd_dumped = true;
2327 } else if ((s->framebuffer & FBD_TYPE) == MALI_MFBD) {
2328 /* We don't know if Bifrost supports SFBD's at all, since the
2329 * driver never uses them. And the format is different from
2330 * Midgard anyways, due to the tiler heap and scratchpad being
2331 * moved out into separate structures, so it's not clear what a
2332 * Bifrost SFBD would even look like without getting an actual
2333 * trace, which appears impossible.
2334 */
2335
2336 pandecode_mfbd_bfr(s->framebuffer & FBD_MASK, job_no, true);
2337 fbd_dumped = true;
2338 }
2339
2340 uintptr_t p = (uintptr_t) s->framebuffer & FBD_MASK;
2341 pandecode_log("struct mali_payload_fragment payload_%"PRIx64"_%d = {\n", payload, job_no);
2342 pandecode_indent++;
2343
2344 /* See the comments by the macro definitions for mathematical context
2345 * on why this is so weird */
2346
2347 if (MALI_TILE_COORD_FLAGS(s->max_tile_coord) || MALI_TILE_COORD_FLAGS(s->min_tile_coord))
2348 pandecode_msg("Tile coordinate flag missed, replay wrong\n");
2349
2350 pandecode_prop("min_tile_coord = MALI_COORDINATE_TO_TILE_MIN(%d, %d)",
2351 MALI_TILE_COORD_X(s->min_tile_coord) << MALI_TILE_SHIFT,
2352 MALI_TILE_COORD_Y(s->min_tile_coord) << MALI_TILE_SHIFT);
2353
2354 pandecode_prop("max_tile_coord = MALI_COORDINATE_TO_TILE_MAX(%d, %d)",
2355 (MALI_TILE_COORD_X(s->max_tile_coord) + 1) << MALI_TILE_SHIFT,
2356 (MALI_TILE_COORD_Y(s->max_tile_coord) + 1) << MALI_TILE_SHIFT);
2357
2358 /* If the FBD was just decoded, we can refer to it by pointer. If not,
2359 * we have to fallback on offsets. */
2360
2361 const char *fbd_type = s->framebuffer & MALI_MFBD ? "MALI_MFBD" : "MALI_SFBD";
2362
2363 /* TODO: Decode */
2364 unsigned extra_flags = (s->framebuffer & ~FBD_MASK) & ~MALI_MFBD;
2365
2366 if (fbd_dumped)
2367 pandecode_prop("framebuffer = framebuffer_%d_p | %s | 0x%X", job_no,
2368 fbd_type, extra_flags);
2369 else
2370 pandecode_prop("framebuffer = %s | %s | 0x%X", pointer_as_memory_reference(p),
2371 fbd_type, extra_flags);
2372
2373 pandecode_indent--;
2374 pandecode_log("};\n");
2375
2376 return sizeof(*s);
2377 }
2378
2379 static int job_descriptor_number = 0;
2380
2381 int
2382 pandecode_jc(mali_ptr jc_gpu_va, bool bifrost)
2383 {
2384 struct mali_job_descriptor_header *h;
2385
2386 int start_number = 0;
2387
2388 bool first = true;
2389 bool last_size;
2390
2391 do {
2392 struct pandecode_mapped_memory *mem =
2393 pandecode_find_mapped_gpu_mem_containing(jc_gpu_va);
2394
2395 void *payload;
2396
2397 h = PANDECODE_PTR(mem, jc_gpu_va, struct mali_job_descriptor_header);
2398
2399 /* On Midgard, for 32-bit jobs except for fragment jobs, the
2400 * high 32-bits of the 64-bit pointer are reused to store
2401 * something else.
2402 */
2403 int offset = h->job_descriptor_size == MALI_JOB_32 &&
2404 h->job_type != JOB_TYPE_FRAGMENT ? 4 : 0;
2405 mali_ptr payload_ptr = jc_gpu_va + sizeof(*h) - offset;
2406
2407 payload = pandecode_fetch_gpu_mem(mem, payload_ptr,
2408 MALI_PAYLOAD_SIZE);
2409
2410 int job_no = job_descriptor_number++;
2411
2412 if (first)
2413 start_number = job_no;
2414
2415 pandecode_log("struct mali_job_descriptor_header job_%"PRIx64"_%d = {\n", jc_gpu_va, job_no);
2416 pandecode_indent++;
2417
2418 pandecode_prop("job_type = %s", pandecode_job_type(h->job_type));
2419
2420 /* Save for next job fixing */
2421 last_size = h->job_descriptor_size;
2422
2423 if (h->job_descriptor_size)
2424 pandecode_prop("job_descriptor_size = %d", h->job_descriptor_size);
2425
2426 if (h->exception_status && h->exception_status != 0x1)
2427 pandecode_prop("exception_status = %x (source ID: 0x%x access: %s exception: 0x%x)",
2428 h->exception_status,
2429 (h->exception_status >> 16) & 0xFFFF,
2430 pandecode_exception_access((h->exception_status >> 8) & 0x3),
2431 h->exception_status & 0xFF);
2432
2433 if (h->first_incomplete_task)
2434 pandecode_prop("first_incomplete_task = %d", h->first_incomplete_task);
2435
2436 if (h->fault_pointer)
2437 pandecode_prop("fault_pointer = 0x%" PRIx64, h->fault_pointer);
2438
2439 if (h->job_barrier)
2440 pandecode_prop("job_barrier = %d", h->job_barrier);
2441
2442 pandecode_prop("job_index = %d", h->job_index);
2443
2444 if (h->unknown_flags)
2445 pandecode_prop("unknown_flags = %d", h->unknown_flags);
2446
2447 if (h->job_dependency_index_1)
2448 pandecode_prop("job_dependency_index_1 = %d", h->job_dependency_index_1);
2449
2450 if (h->job_dependency_index_2)
2451 pandecode_prop("job_dependency_index_2 = %d", h->job_dependency_index_2);
2452
2453 pandecode_indent--;
2454 pandecode_log("};\n");
2455
2456 /* Do not touch the field yet -- decode the payload first, and
2457 * don't touch that either. This is essential for the uploads
2458 * to occur in sequence and therefore be dynamically allocated
2459 * correctly. Do note the size, however, for that related
2460 * reason. */
2461
2462 switch (h->job_type) {
2463 case JOB_TYPE_SET_VALUE: {
2464 struct mali_payload_set_value *s = payload;
2465 pandecode_log("struct mali_payload_set_value payload_%"PRIx64"_%d = {\n", payload_ptr, job_no);
2466 pandecode_indent++;
2467 MEMORY_PROP(s, out);
2468 pandecode_prop("unknown = 0x%" PRIX64, s->unknown);
2469 pandecode_indent--;
2470 pandecode_log("};\n");
2471
2472 break;
2473 }
2474
2475 case JOB_TYPE_TILER:
2476 case JOB_TYPE_VERTEX:
2477 case JOB_TYPE_COMPUTE:
2478 if (bifrost) {
2479 if (h->job_type == JOB_TYPE_TILER)
2480 pandecode_tiler_job_bfr(h, mem, payload_ptr, job_no);
2481 else
2482 pandecode_vertex_job_bfr(h, mem, payload_ptr, job_no);
2483 } else
2484 pandecode_vertex_or_tiler_job_mdg(h, mem, payload_ptr, job_no);
2485
2486 break;
2487
2488 case JOB_TYPE_FRAGMENT:
2489 pandecode_fragment_job(mem, payload_ptr, job_no, bifrost);
2490 break;
2491
2492 default:
2493 break;
2494 }
2495
2496 /* Handle linkage */
2497
2498 if (!first) {
2499 pandecode_log("((struct mali_job_descriptor_header *) (uintptr_t) job_%d_p)->", job_no - 1);
2500
2501 if (last_size)
2502 pandecode_log_cont("next_job_64 = job_%d_p;\n\n", job_no);
2503 else
2504 pandecode_log_cont("next_job_32 = (u32) (uintptr_t) job_%d_p;\n\n", job_no);
2505 }
2506
2507 first = false;
2508
2509 } while ((jc_gpu_va = h->job_descriptor_size ? h->next_job_64 : h->next_job_32));
2510
2511 return start_number;
2512 }