blob: 6d13333d83a3de2b3cbf6a3a1f05a179493e22a8 [file] [log] [blame]
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001/*
2 * Copyright (C) 2017-2019 Alyssa Rosenzweig
3 * Copyright (C) 2017-2019 Connor Abbott
Alyssa Rosenzweigd4575c32019-06-25 13:30:17 -07004 * Copyright (C) 2019 Collabora, Ltd.
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00005 *
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
Alyssa Rosenzweig88dc4c22020-08-05 18:13:11 -040026#include <midgard_pack.h>
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000027#include <stdio.h>
28#include <stdlib.h>
29#include <memory.h>
30#include <stdbool.h>
31#include <stdarg.h>
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -070032#include <ctype.h>
Alyssa Rosenzweigfc7bcee2019-06-11 12:25:35 -070033#include "decode.h"
Lionel Landwerlin66373952019-08-09 16:39:58 +030034#include "util/macros.h"
Alyssa Rosenzweigd699ffb2019-05-14 22:21:39 +000035#include "util/u_math.h"
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000036
Alyssa Rosenzweigec2a59c2019-07-10 10:33:24 -070037#include "midgard/disassemble.h"
38#include "bifrost/disassemble.h"
39
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -070040#include "pan_encoder.h"
41
Tomeu Vizoso9447a842019-10-30 12:05:30 +010042static void pandecode_swizzle(unsigned swizzle, enum mali_format format);
43
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000044#define MEMORY_PROP(obj, p) {\
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -070045 if (obj->p) { \
46 char *a = pointer_as_memory_reference(obj->p); \
47 pandecode_prop("%s = %s", #p, a); \
48 free(a); \
49 } \
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000050}
51
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -070052#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
Alyssa Rosenzweigd2ddd4d2020-08-05 19:43:58 -040060#define DUMP_CL(title, T, cl, indent) {\
61 fprintf(pandecode_dump_stream, "%s\n", title); \
62 struct MALI_ ## T temp; \
63 MALI_ ## T ## _unpack((const uint8_t *) cl, &temp); \
64 MALI_ ## T ## _print(pandecode_dump_stream, &temp, 0); \
65}
66
67#define DUMP_ADDR(title, T, addr, indent) {\
68 struct pandecode_mapped_memory *mapped_mem = pandecode_find_mapped_gpu_mem_containing(addr); \
69 const uint8_t *cl = pandecode_fetch_gpu_mem(mapped_mem, addr, MALI_ ## T ## _LENGTH); \
70 DUMP_CL(title, T, cl, indent); \
71}
72
Icecream95be22c072020-01-23 10:14:35 +130073FILE *pandecode_dump_stream;
74
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000075/* Semantic logging type.
76 *
77 * Raw: for raw messages to be printed as is.
78 * Message: for helpful information to be commented out in replays.
79 * Property: for properties of a struct
80 *
81 * Use one of pandecode_log, pandecode_msg, or pandecode_prop as syntax sugar.
82 */
83
84enum pandecode_log_type {
85 PANDECODE_RAW,
86 PANDECODE_MESSAGE,
87 PANDECODE_PROPERTY
88};
89
90#define pandecode_log(...) pandecode_log_typed(PANDECODE_RAW, __VA_ARGS__)
91#define pandecode_msg(...) pandecode_log_typed(PANDECODE_MESSAGE, __VA_ARGS__)
92#define pandecode_prop(...) pandecode_log_typed(PANDECODE_PROPERTY, __VA_ARGS__)
93
94unsigned pandecode_indent = 0;
95
96static void
97pandecode_make_indent(void)
98{
99 for (unsigned i = 0; i < pandecode_indent; ++i)
Icecream95be22c072020-01-23 10:14:35 +1300100 fprintf(pandecode_dump_stream, " ");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000101}
102
103static void
104pandecode_log_typed(enum pandecode_log_type type, const char *format, ...)
105{
106 va_list ap;
107
108 pandecode_make_indent();
109
110 if (type == PANDECODE_MESSAGE)
Icecream95be22c072020-01-23 10:14:35 +1300111 fprintf(pandecode_dump_stream, "// ");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000112 else if (type == PANDECODE_PROPERTY)
Icecream95be22c072020-01-23 10:14:35 +1300113 fprintf(pandecode_dump_stream, ".");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000114
115 va_start(ap, format);
Icecream95be22c072020-01-23 10:14:35 +1300116 vfprintf(pandecode_dump_stream, format, ap);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000117 va_end(ap);
118
119 if (type == PANDECODE_PROPERTY)
Icecream95be22c072020-01-23 10:14:35 +1300120 fprintf(pandecode_dump_stream, ",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000121}
122
123static void
124pandecode_log_cont(const char *format, ...)
125{
126 va_list ap;
127
128 va_start(ap, format);
Icecream95be22c072020-01-23 10:14:35 +1300129 vfprintf(pandecode_dump_stream, format, ap);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000130 va_end(ap);
131}
132
Alyssa Rosenzweig4391c652019-08-19 15:14:48 -0700133/* To check for memory safety issues, validates that the given pointer in GPU
134 * memory is valid, containing at least sz bytes. The goal is to eliminate
135 * GPU-side memory bugs (NULL pointer dereferences, buffer overflows, or buffer
136 * overruns) by statically validating pointers.
137 */
138
139static void
140pandecode_validate_buffer(mali_ptr addr, size_t sz)
141{
142 if (!addr) {
143 pandecode_msg("XXX: null pointer deref");
144 return;
145 }
146
147 /* Find a BO */
148
149 struct pandecode_mapped_memory *bo =
150 pandecode_find_mapped_gpu_mem_containing(addr);
151
152 if (!bo) {
153 pandecode_msg("XXX: invalid memory dereference\n");
154 return;
155 }
156
157 /* Bounds check */
158
159 unsigned offset = addr - bo->gpu_va;
160 unsigned total = offset + sz;
161
162 if (total > bo->length) {
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -0700163 pandecode_msg("XXX: buffer overrun. "
Alyssa Rosenzweigbcfcb7e2019-08-30 17:02:43 -0700164 "Chunk of size %zu at offset %d in buffer of size %zu. "
165 "Overrun by %zu bytes. \n",
Alyssa Rosenzweig4391c652019-08-19 15:14:48 -0700166 sz, offset, bo->length, total - bo->length);
167 return;
168 }
169}
170
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000171struct pandecode_flag_info {
172 u64 flag;
173 const char *name;
174};
175
176static void
177pandecode_log_decoded_flags(const struct pandecode_flag_info *flag_info,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700178 u64 flags)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000179{
180 bool decodable_flags_found = false;
181
182 for (int i = 0; flag_info[i].name; i++) {
183 if ((flags & flag_info[i].flag) != flag_info[i].flag)
184 continue;
185
186 if (!decodable_flags_found) {
187 decodable_flags_found = true;
188 } else {
189 pandecode_log_cont(" | ");
190 }
191
192 pandecode_log_cont("%s", flag_info[i].name);
193
194 flags &= ~flag_info[i].flag;
195 }
196
197 if (decodable_flags_found) {
198 if (flags)
199 pandecode_log_cont(" | 0x%" PRIx64, flags);
200 } else {
201 pandecode_log_cont("0x%" PRIx64, flags);
202 }
203}
204
205#define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
206static const struct pandecode_flag_info gl_enable_flag_info[] = {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000207 FLAG_INFO(OCCLUSION_QUERY),
208 FLAG_INFO(OCCLUSION_PRECISE),
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +0000209 FLAG_INFO(FRONT_CCW_TOP),
210 FLAG_INFO(CULL_FACE_FRONT),
211 FLAG_INFO(CULL_FACE_BACK),
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000212 {}
213};
214#undef FLAG_INFO
215
216#define FLAG_INFO(flag) { MALI_CLEAR_##flag, "MALI_CLEAR_" #flag }
217static const struct pandecode_flag_info clear_flag_info[] = {
218 FLAG_INFO(FAST),
219 FLAG_INFO(SLOW),
220 FLAG_INFO(SLOW_STENCIL),
221 {}
222};
223#undef FLAG_INFO
224
225#define FLAG_INFO(flag) { MALI_MASK_##flag, "MALI_MASK_" #flag }
226static const struct pandecode_flag_info mask_flag_info[] = {
227 FLAG_INFO(R),
228 FLAG_INFO(G),
229 FLAG_INFO(B),
230 FLAG_INFO(A),
231 {}
232};
233#undef FLAG_INFO
234
235#define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
236static const struct pandecode_flag_info u3_flag_info[] = {
237 FLAG_INFO(HAS_MSAA),
Alyssa Rosenzweig5c65a272020-07-14 21:36:59 -0400238 FLAG_INFO(PER_SAMPLE),
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000239 FLAG_INFO(CAN_DISCARD),
240 FLAG_INFO(HAS_BLEND_SHADER),
Boris Brezillon28440822019-11-04 11:57:22 +0100241 FLAG_INFO(DEPTH_WRITEMASK),
Icecream95ec628ab2020-05-14 15:58:04 +1200242 FLAG_INFO(DEPTH_CLIP_NEAR),
243 FLAG_INFO(DEPTH_CLIP_FAR),
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000244 {}
245};
246
247static const struct pandecode_flag_info u4_flag_info[] = {
248 FLAG_INFO(NO_MSAA),
249 FLAG_INFO(NO_DITHER),
250 FLAG_INFO(DEPTH_RANGE_A),
251 FLAG_INFO(DEPTH_RANGE_B),
252 FLAG_INFO(STENCIL_TEST),
Alyssa Rosenzweig490fbce2020-07-02 11:17:37 -0400253 FLAG_INFO(ALPHA_TO_COVERAGE),
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000254 {}
255};
256#undef FLAG_INFO
257
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000258#define FLAG_INFO(flag) { MALI_MFBD_FORMAT_##flag, "MALI_MFBD_FORMAT_" #flag }
259static const struct pandecode_flag_info mfbd_fmt_flag_info[] = {
Alyssa Rosenzweig31a4ef82019-06-17 16:01:24 -0700260 FLAG_INFO(SRGB),
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000261 {}
262};
263#undef FLAG_INFO
264
Icecream959ac106d2020-06-02 14:13:03 +1200265#define FLAG_INFO(flag) { MALI_AFBC_##flag, "MALI_AFBC_" #flag }
266static const struct pandecode_flag_info afbc_fmt_flag_info[] = {
267 FLAG_INFO(YTR),
268 {}
269};
270#undef FLAG_INFO
271
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000272#define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag }
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500273static const struct pandecode_flag_info mfbd_extra_flag_hi_info[] = {
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000274 FLAG_INFO(PRESENT),
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500275 {}
276};
277#undef FLAG_INFO
278
279#define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag }
280static const struct pandecode_flag_info mfbd_extra_flag_lo_info[] = {
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000281 FLAG_INFO(ZS),
282 {}
283};
284#undef FLAG_INFO
285
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +0000286#define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
Boris Brezillon8ed94d32020-01-31 12:37:38 +0100287static const struct pandecode_flag_info shader_midgard1_flag_lo_info [] = {
288 FLAG_INFO(WRITES_Z),
Alyssa Rosenzweig8d1adc02019-06-07 16:00:49 -0700289 FLAG_INFO(EARLY_Z),
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +0000290 FLAG_INFO(READS_TILEBUFFER),
Alyssa Rosenzweig2447b3b2020-06-02 14:05:34 -0400291 FLAG_INFO(WRITES_GLOBAL),
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +0000292 FLAG_INFO(READS_ZS),
293 {}
294};
Boris Brezillon8ed94d32020-01-31 12:37:38 +0100295
296static const struct pandecode_flag_info shader_midgard1_flag_hi_info [] = {
297 FLAG_INFO(WRITES_S),
Alyssa Rosenzweig55e33052020-05-27 16:07:00 -0400298 FLAG_INFO(SUPPRESS_INF_NAN),
Boris Brezillon8ed94d32020-01-31 12:37:38 +0100299 {}
300};
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +0000301#undef FLAG_INFO
302
Alyssa Rosenzweig2fd3ad92020-05-27 16:38:47 -0400303#define FLAG_INFO(flag) { MALI_BIFROST_##flag, "MALI_BIFROST_" #flag }
304static const struct pandecode_flag_info shader_bifrost_info [] = {
305 FLAG_INFO(FULL_THREAD),
306 FLAG_INFO(EARLY_Z),
307 FLAG_INFO(FIRST_ATEST),
308 {}
309};
310
311#undef FLAG_INFO
312
Alyssa Rosenzweigac689462019-06-14 11:14:01 -0700313#define FLAG_INFO(flag) { MALI_MFBD_##flag, "MALI_MFBD_" #flag }
314static const struct pandecode_flag_info mfbd_flag_info [] = {
315 FLAG_INFO(DEPTH_WRITE),
316 FLAG_INFO(EXTRA),
317 {}
318};
319#undef FLAG_INFO
320
Alyssa Rosenzweigcf6cad32019-07-31 08:50:02 -0700321#define FLAG_INFO(flag) { MALI_SAMP_##flag, "MALI_SAMP_" #flag }
322static const struct pandecode_flag_info sampler_flag_info [] = {
323 FLAG_INFO(MAG_NEAREST),
324 FLAG_INFO(MIN_NEAREST),
325 FLAG_INFO(MIP_LINEAR_1),
326 FLAG_INFO(MIP_LINEAR_2),
Alyssa Rosenzweig3e47a112019-07-31 09:08:07 -0700327 FLAG_INFO(NORM_COORDS),
Alyssa Rosenzweigcf6cad32019-07-31 08:50:02 -0700328 {}
329};
330#undef FLAG_INFO
Alyssa Rosenzweigac689462019-06-14 11:14:01 -0700331
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100332#define FLAG_INFO(flag) { MALI_SFBD_FORMAT_##flag, "MALI_SFBD_FORMAT_" #flag }
333static const struct pandecode_flag_info sfbd_unk1_info [] = {
334 FLAG_INFO(MSAA_8),
335 FLAG_INFO(MSAA_A),
336 {}
337};
338#undef FLAG_INFO
339
340#define FLAG_INFO(flag) { MALI_SFBD_FORMAT_##flag, "MALI_SFBD_FORMAT_" #flag }
341static const struct pandecode_flag_info sfbd_unk2_info [] = {
342 FLAG_INFO(MSAA_B),
343 FLAG_INFO(SRGB),
344 {}
345};
346#undef FLAG_INFO
347
Alyssa Rosenzweige4df95b2020-08-05 16:01:27 -0400348#define DEFINE_CASE(name) case MALI_## name: return "MALI_" #name
349static char *pandecode_format(enum mali_format format)
350{
351 static char unk_format_str[10];
352
353 switch (format) {
354 DEFINE_CASE(ETC2_RGB8);
355 DEFINE_CASE(ETC2_R11_UNORM);
356 DEFINE_CASE(ETC2_RGBA8);
357 DEFINE_CASE(ETC2_RG11_UNORM);
358 DEFINE_CASE(ETC2_R11_SNORM);
359 DEFINE_CASE(ETC2_RG11_SNORM);
360 DEFINE_CASE(ETC2_RGB8A1);
361 DEFINE_CASE(NXR);
362 DEFINE_CASE(BC1_UNORM);
363 DEFINE_CASE(BC2_UNORM);
364 DEFINE_CASE(BC3_UNORM);
365 DEFINE_CASE(BC4_UNORM);
366 DEFINE_CASE(BC4_SNORM);
367 DEFINE_CASE(BC5_UNORM);
368 DEFINE_CASE(BC5_SNORM);
369 DEFINE_CASE(BC6H_UF16);
370 DEFINE_CASE(BC6H_SF16);
371 DEFINE_CASE(BC7_UNORM);
372 DEFINE_CASE(ASTC_3D_LDR);
373 DEFINE_CASE(ASTC_3D_HDR);
374 DEFINE_CASE(ASTC_2D_LDR);
375 DEFINE_CASE(ASTC_2D_HDR);
376 DEFINE_CASE(RGB565);
377 DEFINE_CASE(RGB5_X1_UNORM);
378 DEFINE_CASE(RGB5_A1_UNORM);
379 DEFINE_CASE(RGB10_A2_UNORM);
380 DEFINE_CASE(RGB10_A2_SNORM);
381 DEFINE_CASE(RGB10_A2UI);
382 DEFINE_CASE(RGB10_A2I);
383 DEFINE_CASE(RGB332_UNORM);
384 DEFINE_CASE(RGB233_UNORM);
385 DEFINE_CASE(Z24X8_UNORM);
386 DEFINE_CASE(R32_FIXED);
387 DEFINE_CASE(RG32_FIXED);
388 DEFINE_CASE(RGB32_FIXED);
389 DEFINE_CASE(RGBA32_FIXED);
390 DEFINE_CASE(R11F_G11F_B10F);
391 DEFINE_CASE(R9F_G9F_B9F_E5F);
392 DEFINE_CASE(VARYING_POS);
393 DEFINE_CASE(VARYING_DISCARD);
394
395 DEFINE_CASE(R8_SNORM);
396 DEFINE_CASE(R16_SNORM);
397 DEFINE_CASE(R32_SNORM);
398 DEFINE_CASE(RG8_SNORM);
399 DEFINE_CASE(RG16_SNORM);
400 DEFINE_CASE(RG32_SNORM);
401 DEFINE_CASE(RGB8_SNORM);
402 DEFINE_CASE(RGB16_SNORM);
403 DEFINE_CASE(RGB32_SNORM);
404 DEFINE_CASE(RGBA8_SNORM);
405 DEFINE_CASE(RGBA16_SNORM);
406 DEFINE_CASE(RGBA32_SNORM);
407
408 DEFINE_CASE(R8UI);
409 DEFINE_CASE(R16UI);
410 DEFINE_CASE(R32UI);
411 DEFINE_CASE(RG8UI);
412 DEFINE_CASE(RG16UI);
413 DEFINE_CASE(RG32UI);
414 DEFINE_CASE(RGB8UI);
415 DEFINE_CASE(RGB16UI);
416 DEFINE_CASE(RGB32UI);
417 DEFINE_CASE(RGBA8UI);
418 DEFINE_CASE(RGBA16UI);
419 DEFINE_CASE(RGBA32UI);
420
421 DEFINE_CASE(R8_UNORM);
422 DEFINE_CASE(R16_UNORM);
423 DEFINE_CASE(R32_UNORM);
424 DEFINE_CASE(R32F);
425 DEFINE_CASE(RG8_UNORM);
426 DEFINE_CASE(RG16_UNORM);
427 DEFINE_CASE(RG32_UNORM);
428 DEFINE_CASE(RG32F);
429 DEFINE_CASE(RGB8_UNORM);
430 DEFINE_CASE(RGB16_UNORM);
431 DEFINE_CASE(RGB32_UNORM);
432 DEFINE_CASE(RGB32F);
433 DEFINE_CASE(RGBA4_UNORM);
434 DEFINE_CASE(RGBA8_UNORM);
435 DEFINE_CASE(RGBA16_UNORM);
436 DEFINE_CASE(RGBA32_UNORM);
437 DEFINE_CASE(RGBA32F);
438
439 DEFINE_CASE(R8I);
440 DEFINE_CASE(R16I);
441 DEFINE_CASE(R32I);
442 DEFINE_CASE(RG8I);
443 DEFINE_CASE(R16F);
444 DEFINE_CASE(RG16I);
445 DEFINE_CASE(RG32I);
446 DEFINE_CASE(RG16F);
447 DEFINE_CASE(RGB8I);
448 DEFINE_CASE(RGB16I);
449 DEFINE_CASE(RGB32I);
450 DEFINE_CASE(RGB16F);
451 DEFINE_CASE(RGBA8I);
452 DEFINE_CASE(RGBA16I);
453 DEFINE_CASE(RGBA32I);
454 DEFINE_CASE(RGBA16F);
455
456 DEFINE_CASE(RGBA4);
457 DEFINE_CASE(RGBA8_2);
458 DEFINE_CASE(RGB10_A2_2);
459 default:
460 snprintf(unk_format_str, sizeof(unk_format_str), "MALI_0x%02x", format);
461 return unk_format_str;
462 }
463}
464
465#undef DEFINE_CASE
466
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000467#define DEFINE_CASE(name) case MALI_FUNC_ ## name: return "MALI_FUNC_" #name
468static char *
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -0700469pandecode_func(enum mali_func mode)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000470{
471 switch (mode) {
472 DEFINE_CASE(NEVER);
473 DEFINE_CASE(LESS);
474 DEFINE_CASE(EQUAL);
475 DEFINE_CASE(LEQUAL);
476 DEFINE_CASE(GREATER);
477 DEFINE_CASE(NOTEQUAL);
478 DEFINE_CASE(GEQUAL);
479 DEFINE_CASE(ALWAYS);
480
481 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700482 pandecode_msg("XXX: invalid func %X\n", mode);
483 return "";
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000484 }
485}
486#undef DEFINE_CASE
487
Alyssa Rosenzweig2c479932020-07-21 18:51:07 -0400488#define DEFINE_CASE(name) case MALI_MSAA_ ## name: return "MALI_MSAA_" #name
489static char *
490pandecode_msaa_mode(enum mali_msaa_mode mode)
491{
492 switch (mode) {
493 DEFINE_CASE(SINGLE);
494 DEFINE_CASE(AVERAGE);
495 DEFINE_CASE(MULTIPLE);
496 DEFINE_CASE(LAYERED);
497 default:
498 unreachable("Impossible");
499 return "";
500 }
501}
502#undef DEFINE_CASE
503
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000504#define DEFINE_CASE(name) case MALI_STENCIL_ ## name: return "MALI_STENCIL_" #name
505static char *
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -0700506pandecode_stencil_op(enum mali_stencil_op op)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000507{
508 switch (op) {
509 DEFINE_CASE(KEEP);
510 DEFINE_CASE(REPLACE);
511 DEFINE_CASE(ZERO);
512 DEFINE_CASE(INVERT);
513 DEFINE_CASE(INCR_WRAP);
514 DEFINE_CASE(DECR_WRAP);
515 DEFINE_CASE(INCR);
516 DEFINE_CASE(DECR);
517
518 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700519 pandecode_msg("XXX: invalid stencil op %X\n", op);
520 return "";
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000521 }
522}
523
524#undef DEFINE_CASE
525
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -0700526static char *pandecode_attr_mode_short(enum mali_attr_mode mode)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000527{
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700528 switch(mode) {
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -0700529 /* TODO: Combine to just "instanced" once this can be done
530 * unambiguously in all known cases */
531 case MALI_ATTR_POT_DIVIDE:
532 return "instanced_pot";
533 case MALI_ATTR_MODULO:
534 return "instanced_mod";
535 case MALI_ATTR_NPOT_DIVIDE:
536 return "instanced_npot";
537 case MALI_ATTR_IMAGE:
538 return "image";
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700539 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700540 pandecode_msg("XXX: invalid attribute mode %X\n", mode);
541 return "";
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700542 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000543}
544
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -0700545static const char *
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -0500546pandecode_special_record(uint64_t v, bool* attribute)
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -0700547{
548 switch(v) {
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -0500549 case MALI_ATTR_VERTEXID:
550 *attribute = true;
551 return "gl_VertexID";
552 case MALI_ATTR_INSTANCEID:
553 *attribute = true;
554 return "gl_InstanceID";
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -0700555 case MALI_VARYING_FRAG_COORD:
556 return "gl_FragCoord";
557 case MALI_VARYING_FRONT_FACING:
558 return "gl_FrontFacing";
559 case MALI_VARYING_POINT_COORD:
560 return "gl_PointCoord";
561 default:
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -0500562 pandecode_msg("XXX: invalid special record %" PRIx64 "\n", v);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -0700563 return "";
564 }
565}
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000566
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000567#define DEFINE_CASE(name) case MALI_WRAP_## name: return "MALI_WRAP_" #name
568static char *
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -0700569pandecode_wrap_mode(enum mali_wrap_mode op)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000570{
571 switch (op) {
572 DEFINE_CASE(REPEAT);
573 DEFINE_CASE(CLAMP_TO_EDGE);
Icecream955b351c82020-06-20 18:20:03 +1200574 DEFINE_CASE(CLAMP);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000575 DEFINE_CASE(CLAMP_TO_BORDER);
576 DEFINE_CASE(MIRRORED_REPEAT);
Icecream955b351c82020-06-20 18:20:03 +1200577 DEFINE_CASE(MIRRORED_CLAMP_TO_EDGE);
578 DEFINE_CASE(MIRRORED_CLAMP);
579 DEFINE_CASE(MIRRORED_CLAMP_TO_BORDER);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000580
581 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700582 pandecode_msg("XXX: invalid wrap mode %X\n", op);
583 return "";
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000584 }
585}
586#undef DEFINE_CASE
587
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100588#define DEFINE_CASE(name) case MALI_BLOCK_## name: return "MALI_BLOCK_" #name
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -0700589static char *
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100590pandecode_block_format(enum mali_block_format fmt)
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -0700591{
592 switch (fmt) {
593 DEFINE_CASE(TILED);
594 DEFINE_CASE(UNKNOWN);
595 DEFINE_CASE(LINEAR);
596 DEFINE_CASE(AFBC);
597
598 default:
599 unreachable("Invalid case");
600 }
601}
602#undef DEFINE_CASE
603
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -0700604#define DEFINE_CASE(name) case MALI_EXCEPTION_ACCESS_## name: return ""#name
Alyssa Rosenzweig956b0962020-08-05 16:20:17 -0400605static char *
Alyssa Rosenzweigd1265152020-01-23 15:28:09 -0500606pandecode_exception_access(unsigned access)
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -0700607{
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700608 switch (access) {
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -0700609 DEFINE_CASE(NONE);
610 DEFINE_CASE(EXECUTE);
611 DEFINE_CASE(READ);
612 DEFINE_CASE(WRITE);
613
614 default:
615 unreachable("Invalid case");
616 }
617}
618#undef DEFINE_CASE
619
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700620/* Midgard's tiler descriptor is embedded within the
621 * larger FBD */
622
623static void
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700624pandecode_midgard_tiler_descriptor(
625 const struct midgard_tiler_descriptor *t,
626 unsigned width,
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700627 unsigned height,
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500628 bool is_fragment,
629 bool has_hierarchy)
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700630{
631 pandecode_log(".tiler = {\n");
632 pandecode_indent++;
633
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700634 if (t->hierarchy_mask == MALI_TILER_DISABLED)
635 pandecode_prop("hierarchy_mask = MALI_TILER_DISABLED");
636 else
637 pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask);
638
639 /* We know this name from the kernel, but we never see it nonzero */
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -0700640
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700641 if (t->flags)
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -0700642 pandecode_msg("XXX: unexpected tiler flags 0x%" PRIx16, t->flags);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700643
644 MEMORY_PROP(t, polygon_list);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700645
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700646 /* The body is offset from the base of the polygon list */
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -0400647 //assert(t->polygon_list_body > t->polygon_list);
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700648 unsigned body_offset = t->polygon_list_body - t->polygon_list;
649
650 /* It needs to fit inside the reported size */
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -0400651 //assert(t->polygon_list_size >= body_offset);
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700652
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700653 /* Now that we've sanity checked, we'll try to calculate the sizes
654 * ourselves for comparison */
655
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500656 unsigned ref_header = panfrost_tiler_header_size(width, height, t->hierarchy_mask, has_hierarchy);
657 unsigned ref_size = panfrost_tiler_full_size(width, height, t->hierarchy_mask, has_hierarchy);
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700658
659 if (!((ref_header == body_offset) && (ref_size == t->polygon_list_size))) {
660 pandecode_msg("XXX: bad polygon list size (expected %d / 0x%x)\n",
661 ref_header, ref_size);
662 pandecode_prop("polygon_list_size = 0x%x", t->polygon_list_size);
663 pandecode_msg("body offset %d\n", body_offset);
664 }
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700665
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700666 /* The tiler heap has a start and end specified -- it should be
667 * identical to what we have in the BO. The exception is if tiling is
668 * disabled. */
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700669
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700670 MEMORY_PROP(t, heap_start);
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700671 assert(t->heap_end >= t->heap_start);
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700672
673 struct pandecode_mapped_memory *heap =
674 pandecode_find_mapped_gpu_mem_containing(t->heap_start);
675
676 unsigned heap_size = t->heap_end - t->heap_start;
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700677
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700678 /* Tiling is enabled with a special flag */
679 unsigned hierarchy_mask = t->hierarchy_mask & MALI_HIERARCHY_MASK;
680 unsigned tiler_flags = t->hierarchy_mask ^ hierarchy_mask;
681
682 bool tiling_enabled = hierarchy_mask;
683
684 if (tiling_enabled) {
685 /* When tiling is enabled, the heap should be a tight fit */
686 unsigned heap_offset = t->heap_start - heap->gpu_va;
687 if ((heap_offset + heap_size) != heap->length) {
Alyssa Rosenzweigbcfcb7e2019-08-30 17:02:43 -0700688 pandecode_msg("XXX: heap size %u (expected %zu)\n",
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700689 heap_size, heap->length - heap_offset);
690 }
691
692 /* We should also have no other flags */
693 if (tiler_flags)
694 pandecode_msg("XXX: unexpected tiler %X\n", tiler_flags);
695 } else {
696 /* When tiling is disabled, we should have that flag and no others */
697
698 if (tiler_flags != MALI_TILER_DISABLED) {
699 pandecode_msg("XXX: unexpected tiler flag %X, expected MALI_TILER_DISABLED\n",
700 tiler_flags);
701 }
702
703 /* We should also have an empty heap */
704 if (heap_size) {
705 pandecode_msg("XXX: tiler heap size %d given, expected empty\n",
706 heap_size);
707 }
708
709 /* Disabled tiling is used only for clear-only jobs, which are
710 * purely FRAGMENT, so we should never see this for
711 * non-FRAGMENT descriptors. */
712
713 if (!is_fragment)
714 pandecode_msg("XXX: tiler disabled for non-FRAGMENT job\n");
715 }
716
717 /* We've never seen weights used in practice, but we know from the
718 * kernel these fields is there */
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700719
720 bool nonzero_weights = false;
721
722 for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
723 nonzero_weights |= t->weights[w] != 0x0;
724 }
725
726 if (nonzero_weights) {
Alyssa Rosenzweigacd140c2020-02-28 07:25:07 -0500727 pandecode_log(".weights = { ");
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700728
729 for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
Alyssa Rosenzweigacd140c2020-02-28 07:25:07 -0500730 pandecode_log_cont("%d, ", t->weights[w]);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700731 }
732
733 pandecode_log("},");
734 }
735
736 pandecode_indent--;
737 pandecode_log("}\n");
738}
739
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500740/* TODO: The Bifrost tiler is not understood at all yet */
741
742static void
Tomeu Vizoso46e42462020-04-08 15:58:42 +0200743pandecode_bifrost_tiler_descriptor(const struct mali_framebuffer *fb)
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500744{
745 pandecode_log(".tiler = {\n");
746 pandecode_indent++;
747
Tomeu Vizoso46e42462020-04-08 15:58:42 +0200748 MEMORY_PROP(fb, tiler_meta);
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500749
Tomeu Vizoso46e42462020-04-08 15:58:42 +0200750 for (int i = 0; i < 16; i++) {
751 if (fb->zeros[i] != 0) {
752 pandecode_msg("XXX: tiler descriptor zero %d tripped, value %x\n",
753 i, fb->zeros[i]);
754 }
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500755 }
756
757 pandecode_log("},\n");
758
759 pandecode_indent--;
760 pandecode_log("}\n");
761
762}
763
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700764/* Information about the framebuffer passed back for
765 * additional analysis */
766
767struct pandecode_fbd {
768 unsigned width;
769 unsigned height;
770 unsigned rt_count;
771 bool has_extra;
772};
773
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100774static void
775pandecode_sfbd_format(struct mali_sfbd_format format)
776{
777 pandecode_log(".format = {\n");
778 pandecode_indent++;
779
780 pandecode_log(".unk1 = ");
781 pandecode_log_decoded_flags(sfbd_unk1_info, format.unk1);
782 pandecode_log_cont(",\n");
783
784 /* TODO: Map formats so we can check swizzles and print nicely */
785 pandecode_log("swizzle");
786 pandecode_swizzle(format.swizzle, MALI_RGBA8_UNORM);
787 pandecode_log_cont(",\n");
788
789 pandecode_prop("nr_channels = MALI_POSITIVE(%d)",
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -0500790 (format.nr_channels + 1));
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100791
792 pandecode_log(".unk2 = ");
793 pandecode_log_decoded_flags(sfbd_unk2_info, format.unk2);
794 pandecode_log_cont(",\n");
795
796 pandecode_prop("block = %s", pandecode_block_format(format.block));
797
798 pandecode_prop("unk3 = 0x%" PRIx32, format.unk3);
799
800 pandecode_indent--;
801 pandecode_log("},\n");
802}
803
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500804static void
805pandecode_shared_memory(const struct mali_shared_memory *desc, bool is_compute)
806{
807 pandecode_prop("stack_shift = 0x%x", desc->stack_shift);
808
809 if (desc->unk0)
810 pandecode_prop("unk0 = 0x%x", desc->unk0);
811
812 if (desc->shared_workgroup_count != 0x1F) {
813 pandecode_prop("shared_workgroup_count = %d", desc->shared_workgroup_count);
814 if (!is_compute)
815 pandecode_msg("XXX: wrong workgroup count for noncompute\n");
816 }
817
818 if (desc->shared_unk1 || desc->shared_shift) {
819 pandecode_prop("shared_unk1 = %X", desc->shared_unk1);
820 pandecode_prop("shared_shift = %X", desc->shared_shift);
821
822 if (!is_compute)
823 pandecode_msg("XXX: shared memory configured in noncompute shader");
824 }
825
826 if (desc->shared_zero) {
827 pandecode_msg("XXX: shared memory zero tripped\n");
828 pandecode_prop("shared_zero = 0x%" PRIx32, desc->shared_zero);
829 }
830
831 if (desc->shared_memory && !is_compute)
832 pandecode_msg("XXX: shared memory used in noncompute shader\n");
833
834 MEMORY_PROP(desc, scratchpad);
835 MEMORY_PROP(desc, shared_memory);
836 MEMORY_PROP(desc, unknown1);
Alyssa Rosenzweiged528552020-02-25 15:40:46 -0500837
838 if (desc->scratchpad) {
839 struct pandecode_mapped_memory *smem =
840 pandecode_find_mapped_gpu_mem_containing(desc->scratchpad);
841
842 pandecode_msg("scratchpad size %u\n", smem->length);
843 }
844
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500845}
846
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700847static struct pandecode_fbd
Tomeu Vizoso697f02c2019-11-12 12:15:02 +0100848pandecode_sfbd(uint64_t gpu_va, int job_no, bool is_fragment, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000849{
850 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
851 const struct mali_single_framebuffer *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va);
852
Alyssa Rosenzweigd6d6d632019-08-30 17:00:09 -0700853 struct pandecode_fbd info = {
854 .has_extra = false,
855 .rt_count = 1
856 };
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700857
Tomeu Vizoso9bef1f12019-06-25 09:20:51 +0200858 pandecode_log("struct mali_single_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000859 pandecode_indent++;
860
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500861 pandecode_log(".shared_memory = {\n");
862 pandecode_indent++;
863 pandecode_shared_memory(&s->shared_memory, false);
864 pandecode_indent--;
865 pandecode_log("},\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000866
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100867 pandecode_sfbd_format(s->format);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000868
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700869 info.width = s->width + 1;
870 info.height = s->height + 1;
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700871
872 pandecode_prop("width = MALI_POSITIVE(%" PRId16 ")", info.width);
873 pandecode_prop("height = MALI_POSITIVE(%" PRId16 ")", info.height);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000874
Tomeu Vizoso23fe7cd2019-07-12 12:38:50 +0200875 MEMORY_PROP(s, checksum);
876
877 if (s->checksum_stride)
878 pandecode_prop("checksum_stride = %d", s->checksum_stride);
879
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000880 MEMORY_PROP(s, framebuffer);
881 pandecode_prop("stride = %d", s->stride);
882
883 /* Earlier in the actual commandstream -- right before width -- but we
884 * delay to flow nicer */
885
886 pandecode_log(".clear_flags = ");
887 pandecode_log_decoded_flags(clear_flag_info, s->clear_flags);
888 pandecode_log_cont(",\n");
889
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100890 if (s->depth_buffer) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000891 MEMORY_PROP(s, depth_buffer);
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100892 pandecode_prop("depth_stride = %d", s->depth_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000893 }
894
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100895 if (s->stencil_buffer) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000896 MEMORY_PROP(s, stencil_buffer);
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100897 pandecode_prop("stencil_stride = %d", s->stencil_stride);
898 }
899
900 if (s->depth_stride_zero ||
901 s->stencil_stride_zero ||
902 s->zero7 || s->zero8) {
903 pandecode_msg("XXX: Depth/stencil zeros tripped\n");
904 pandecode_prop("depth_stride_zero = 0x%x",
905 s->depth_stride_zero);
906 pandecode_prop("stencil_stride_zero = 0x%x",
907 s->stencil_stride_zero);
908 pandecode_prop("zero7 = 0x%" PRIx32,
909 s->zero7);
910 pandecode_prop("zero8 = 0x%" PRIx32,
911 s->zero8);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000912 }
913
914 if (s->clear_color_1 | s->clear_color_2 | s->clear_color_3 | s->clear_color_4) {
915 pandecode_prop("clear_color_1 = 0x%" PRIx32, s->clear_color_1);
916 pandecode_prop("clear_color_2 = 0x%" PRIx32, s->clear_color_2);
917 pandecode_prop("clear_color_3 = 0x%" PRIx32, s->clear_color_3);
918 pandecode_prop("clear_color_4 = 0x%" PRIx32, s->clear_color_4);
919 }
920
921 if (s->clear_depth_1 != 0 || s->clear_depth_2 != 0 || s->clear_depth_3 != 0 || s->clear_depth_4 != 0) {
922 pandecode_prop("clear_depth_1 = %f", s->clear_depth_1);
923 pandecode_prop("clear_depth_2 = %f", s->clear_depth_2);
924 pandecode_prop("clear_depth_3 = %f", s->clear_depth_3);
925 pandecode_prop("clear_depth_4 = %f", s->clear_depth_4);
926 }
927
928 if (s->clear_stencil) {
929 pandecode_prop("clear_stencil = 0x%x", s->clear_stencil);
930 }
931
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -0700932 const struct midgard_tiler_descriptor t = s->tiler;
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500933
934 bool has_hierarchy = !(gpu_id == 0x0720 || gpu_id == 0x0820 || gpu_id == 0x0830);
935 pandecode_midgard_tiler_descriptor(&t, s->width + 1, s->height + 1, is_fragment, has_hierarchy);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000936
937 pandecode_indent--;
938 pandecode_log("};\n");
939
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000940 pandecode_prop("zero2 = 0x%" PRIx32, s->zero2);
941 pandecode_prop("zero4 = 0x%" PRIx32, s->zero4);
Tomeu Vizoso94e6d172019-11-06 17:30:54 +0100942 pandecode_prop("zero5 = 0x%" PRIx32, s->zero5);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000943
Icecream95be22c072020-01-23 10:14:35 +1300944 pandecode_log_cont(".zero3 = {");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000945
946 for (int i = 0; i < sizeof(s->zero3) / sizeof(s->zero3[0]); ++i)
Icecream95be22c072020-01-23 10:14:35 +1300947 pandecode_log_cont("%X, ", s->zero3[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000948
Icecream95be22c072020-01-23 10:14:35 +1300949 pandecode_log_cont("},\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000950
Icecream95be22c072020-01-23 10:14:35 +1300951 pandecode_log_cont(".zero6 = {");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000952
953 for (int i = 0; i < sizeof(s->zero6) / sizeof(s->zero6[0]); ++i)
Icecream95be22c072020-01-23 10:14:35 +1300954 pandecode_log_cont("%X, ", s->zero6[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000955
Icecream95be22c072020-01-23 10:14:35 +1300956 pandecode_log_cont("},\n");
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700957
958 return info;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000959}
960
961static void
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700962pandecode_compute_fbd(uint64_t gpu_va, int job_no)
963{
964 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500965 const struct mali_shared_memory *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700966
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500967 pandecode_log("struct mali_shared_memory shared_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700968 pandecode_indent++;
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500969 pandecode_shared_memory(s, true);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700970 pandecode_indent--;
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500971 pandecode_log("},\n");
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700972}
973
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700974/* Extracts the number of components associated with a Mali format */
975
976static unsigned
977pandecode_format_component_count(enum mali_format fmt)
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000978{
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700979 /* Mask out the format class */
980 unsigned top = fmt & 0b11100000;
981
982 switch (top) {
983 case MALI_FORMAT_SNORM:
984 case MALI_FORMAT_UINT:
985 case MALI_FORMAT_UNORM:
986 case MALI_FORMAT_SINT:
987 return ((fmt >> 3) & 3) + 1;
988 default:
989 /* TODO: Validate */
990 return 4;
991 }
992}
993
994/* Extracts a mask of accessed components from a 12-bit Mali swizzle */
995
996static unsigned
997pandecode_access_mask_from_channel_swizzle(unsigned swizzle)
998{
999 unsigned mask = 0;
1000 assert(MALI_CHANNEL_RED == 0);
1001
1002 for (unsigned c = 0; c < 4; ++c) {
1003 enum mali_channel chan = (swizzle >> (3*c)) & 0x7;
1004
1005 if (chan <= MALI_CHANNEL_ALPHA)
1006 mask |= (1 << chan);
1007 }
1008
1009 return mask;
1010}
1011
1012/* Validates that a (format, swizzle) pair is valid, in the sense that the
1013 * swizzle doesn't access any components that are undefined in the format.
1014 * Returns whether the swizzle is trivial (doesn't do any swizzling) and can be
1015 * omitted */
1016
1017static bool
1018pandecode_validate_format_swizzle(enum mali_format fmt, unsigned swizzle)
1019{
1020 unsigned nr_comp = pandecode_format_component_count(fmt);
1021 unsigned access_mask = pandecode_access_mask_from_channel_swizzle(swizzle);
1022 unsigned valid_mask = (1 << nr_comp) - 1;
1023 unsigned invalid_mask = ~valid_mask;
1024
1025 if (access_mask & invalid_mask) {
1026 pandecode_msg("XXX: invalid components accessed\n");
1027 return false;
1028 }
1029
1030 /* Check for the default non-swizzling swizzle so we can suppress
1031 * useless printing for the defaults */
1032
1033 unsigned default_swizzles[4] = {
1034 MALI_CHANNEL_RED | (MALI_CHANNEL_ZERO << 3) | (MALI_CHANNEL_ZERO << 6) | (MALI_CHANNEL_ONE << 9),
1035 MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_ZERO << 6) | (MALI_CHANNEL_ONE << 9),
1036 MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_BLUE << 6) | (MALI_CHANNEL_ONE << 9),
1037 MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_BLUE << 6) | (MALI_CHANNEL_ALPHA << 9)
1038 };
1039
1040 return (swizzle == default_swizzles[nr_comp - 1]);
1041}
1042
1043/* Maps MALI_RGBA32F to rgba32f, etc */
1044
1045static void
Alyssa Rosenzweig9b203952019-08-20 15:24:45 -07001046pandecode_format_short(enum mali_format fmt, bool srgb)
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -07001047{
1048 /* We want a type-like format, so cut off the initial MALI_ */
1049 char *format = pandecode_format(fmt);
1050 format += strlen("MALI_");
1051
1052 unsigned len = strlen(format);
1053 char *lower_format = calloc(1, len + 1);
1054
1055 for (unsigned i = 0; i < len; ++i)
1056 lower_format[i] = tolower(format[i]);
1057
Alyssa Rosenzweig9b203952019-08-20 15:24:45 -07001058 /* Sanity check sRGB flag is applied to RGB, per the name */
1059 if (srgb && lower_format[0] != 'r')
1060 pandecode_msg("XXX: sRGB applied to non-colour format\n");
1061
1062 /* Just prefix with an s, so you get formats like srgba8_unorm */
1063 if (srgb)
1064 pandecode_log_cont("s");
1065
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -07001066 pandecode_log_cont("%s", lower_format);
1067 free(lower_format);
1068}
1069
1070static void
1071pandecode_swizzle(unsigned swizzle, enum mali_format format)
1072{
1073 /* First, do some validation */
1074 bool trivial_swizzle = pandecode_validate_format_swizzle(
1075 format, swizzle);
1076
1077 if (trivial_swizzle)
1078 return;
1079
1080 /* Next, print the swizzle */
1081 pandecode_log_cont(".");
1082
1083 static const char components[] = "rgba01";
1084
1085 for (unsigned c = 0; c < 4; ++c) {
1086 enum mali_channel chan = (swizzle >> (3 * c)) & 0x7;
1087
1088 if (chan >= MALI_CHANNEL_RESERVED_0) {
1089 pandecode_log("XXX: invalid swizzle channel %d\n", chan);
1090 continue;
1091 }
1092 pandecode_log_cont("%c", components[chan]);
1093 }
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +00001094}
1095
1096static void
1097pandecode_rt_format(struct mali_rt_format format)
1098{
1099 pandecode_log(".format = {\n");
1100 pandecode_indent++;
1101
1102 pandecode_prop("unk1 = 0x%" PRIx32, format.unk1);
1103 pandecode_prop("unk2 = 0x%" PRIx32, format.unk2);
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -07001104 pandecode_prop("unk3 = 0x%" PRIx32, format.unk3);
Tomeu Vizoso28902ba2020-04-24 11:30:03 +02001105 pandecode_prop("unk4 = 0x%" PRIx32, format.unk4);
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -07001106
Tomeu Vizoso9447a842019-10-30 12:05:30 +01001107 pandecode_prop("block = %s", pandecode_block_format(format.block));
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +00001108
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -07001109 /* TODO: Map formats so we can check swizzles and print nicely */
1110 pandecode_log("swizzle");
1111 pandecode_swizzle(format.swizzle, MALI_RGBA8_UNORM);
1112 pandecode_log_cont(",\n");
1113
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +00001114 pandecode_prop("nr_channels = MALI_POSITIVE(%d)",
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -05001115 (format.nr_channels + 1));
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +00001116
1117 pandecode_log(".flags = ");
1118 pandecode_log_decoded_flags(mfbd_fmt_flag_info, format.flags);
1119 pandecode_log_cont(",\n");
1120
Alyssa Rosenzweig2c479932020-07-21 18:51:07 -04001121 pandecode_prop("msaa = %s", pandecode_msaa_mode(format.msaa));
1122
Alyssa Rosenzweige49204c2019-08-20 11:11:46 -07001123 /* In theory, the no_preload bit can be cleared to enable MFBD preload,
1124 * which is a faster hardware-based alternative to the wallpaper method
1125 * to preserve framebuffer contents across frames. In practice, MFBD
1126 * preload is buggy on Midgard, and so this is a chicken bit. If this
1127 * bit isn't set, most likely something broke unrelated to preload */
1128
1129 if (!format.no_preload) {
1130 pandecode_msg("XXX: buggy MFBD preload enabled - chicken bit should be clear\n");
1131 pandecode_prop("no_preload = 0x%" PRIx32, format.no_preload);
1132 }
Alyssa Rosenzweigb78e04c2019-08-14 16:01:38 -07001133
1134 if (format.zero)
1135 pandecode_prop("zero = 0x%" PRIx32, format.zero);
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +00001136
1137 pandecode_indent--;
1138 pandecode_log("},\n");
1139}
1140
1141static void
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001142pandecode_render_target(uint64_t gpu_va, unsigned job_no, const struct mali_framebuffer *fb)
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001143{
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001144 pandecode_log("struct mali_render_target rts_list_%"PRIx64"_%d[] = {\n", gpu_va, job_no);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001145 pandecode_indent++;
1146
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -05001147 for (int i = 0; i < (fb->rt_count_1 + 1); i++) {
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001148 mali_ptr rt_va = gpu_va + i * sizeof(struct mali_render_target);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001149 struct pandecode_mapped_memory *mem =
1150 pandecode_find_mapped_gpu_mem_containing(rt_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001151 const struct mali_render_target *PANDECODE_PTR_VAR(rt, mem, (mali_ptr) rt_va);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001152
1153 pandecode_log("{\n");
1154 pandecode_indent++;
1155
1156 pandecode_rt_format(rt->format);
1157
Tomeu Vizoso9447a842019-10-30 12:05:30 +01001158 if (rt->format.block == MALI_BLOCK_AFBC) {
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001159 pandecode_log(".afbc = {\n");
1160 pandecode_indent++;
1161
1162 char *a = pointer_as_memory_reference(rt->afbc.metadata);
1163 pandecode_prop("metadata = %s", a);
1164 free(a);
1165
1166 pandecode_prop("stride = %d", rt->afbc.stride);
Icecream959ac106d2020-06-02 14:13:03 +12001167
1168 pandecode_log(".flags = ");
1169 pandecode_log_decoded_flags(afbc_fmt_flag_info, rt->afbc.flags);
1170 pandecode_log_cont(",\n");
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001171
1172 pandecode_indent--;
1173 pandecode_log("},\n");
Icecream959ac106d2020-06-02 14:13:03 +12001174 } else if (rt->afbc.metadata || rt->afbc.stride || rt->afbc.flags) {
Alyssa Rosenzweigc9b62332019-08-20 11:06:07 -07001175 pandecode_msg("XXX: AFBC disabled but AFBC field set (0x%lX, 0x%x, 0x%x)\n",
1176 rt->afbc.metadata,
1177 rt->afbc.stride,
Icecream959ac106d2020-06-02 14:13:03 +12001178 rt->afbc.flags);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001179 }
1180
1181 MEMORY_PROP(rt, framebuffer);
1182 pandecode_prop("framebuffer_stride = %d", rt->framebuffer_stride);
1183
Alyssa Rosenzweig37204582020-06-30 16:21:18 -04001184 if (rt->layer_stride)
1185 pandecode_prop("layer_stride = %d", rt->layer_stride);
1186
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001187 if (rt->clear_color_1 | rt->clear_color_2 | rt->clear_color_3 | rt->clear_color_4) {
1188 pandecode_prop("clear_color_1 = 0x%" PRIx32, rt->clear_color_1);
1189 pandecode_prop("clear_color_2 = 0x%" PRIx32, rt->clear_color_2);
1190 pandecode_prop("clear_color_3 = 0x%" PRIx32, rt->clear_color_3);
1191 pandecode_prop("clear_color_4 = 0x%" PRIx32, rt->clear_color_4);
1192 }
1193
Alyssa Rosenzweig37204582020-06-30 16:21:18 -04001194 if (rt->zero1 || rt->zero2) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001195 pandecode_msg("XXX: render target zeros tripped\n");
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001196 pandecode_prop("zero1 = 0x%" PRIx64, rt->zero1);
1197 pandecode_prop("zero2 = 0x%" PRIx32, rt->zero2);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001198 }
1199
1200 pandecode_indent--;
1201 pandecode_log("},\n");
1202 }
1203
1204 pandecode_indent--;
1205 pandecode_log("};\n");
1206}
1207
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001208static struct pandecode_fbd
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05001209pandecode_mfbd_bfr(uint64_t gpu_va, int job_no, bool is_fragment, bool is_compute, bool is_bifrost)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001210{
1211 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001212 const struct mali_framebuffer *PANDECODE_PTR_VAR(fb, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001213
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001214 struct pandecode_fbd info;
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05001215
1216 if (is_bifrost && fb->msaa.sample_locations) {
1217 /* The blob stores all possible sample locations in a single buffer
1218 * allocated on startup, and just switches the pointer when switching
1219 * MSAA state. For now, we just put the data into the cmdstream, but we
1220 * should do something like what the blob does with a real driver.
1221 *
1222 * There seem to be 32 slots for sample locations, followed by another
1223 * 16. The second 16 is just the center location followed by 15 zeros
1224 * in all the cases I've identified (maybe shader vs. depth/color
1225 * samples?).
1226 */
1227
1228 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(fb->msaa.sample_locations);
1229
1230 const u16 *PANDECODE_PTR_VAR(samples, smem, fb->msaa.sample_locations);
1231
1232 pandecode_log("uint16_t sample_locations_%d[] = {\n", job_no);
1233 pandecode_indent++;
1234
1235 for (int i = 0; i < 32 + 16; i++) {
1236 pandecode_log("%d, %d,\n", samples[2 * i], samples[2 * i + 1]);
1237 }
1238
1239 pandecode_indent--;
1240 pandecode_log("};\n");
1241 }
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001242
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001243 pandecode_log("struct mali_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001244 pandecode_indent++;
1245
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05001246 if (is_bifrost) {
1247 pandecode_log(".msaa = {\n");
1248 pandecode_indent++;
1249
1250 if (fb->msaa.sample_locations)
1251 pandecode_prop("sample_locations = sample_locations_%d", job_no);
1252 else
1253 pandecode_msg("XXX: sample_locations missing\n");
1254
1255 if (fb->msaa.zero1 || fb->msaa.zero2 || fb->msaa.zero4) {
1256 pandecode_msg("XXX: multisampling zero tripped\n");
1257 pandecode_prop("zero1 = %" PRIx64, fb->msaa.zero1);
1258 pandecode_prop("zero2 = %" PRIx64, fb->msaa.zero2);
1259 pandecode_prop("zero4 = %" PRIx64, fb->msaa.zero4);
1260 }
1261
1262 pandecode_indent--;
1263 pandecode_log("},\n");
1264 } else {
1265 pandecode_log(".shared_memory = {\n");
1266 pandecode_indent++;
1267 pandecode_shared_memory(&fb->shared_memory, is_compute);
1268 pandecode_indent--;
1269 pandecode_log("},\n");
1270 }
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -07001271
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001272 info.width = fb->width1 + 1;
1273 info.height = fb->height1 + 1;
1274 info.rt_count = fb->rt_count_1 + 1;
1275
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001276 pandecode_prop("width1 = MALI_POSITIVE(%d)", fb->width1 + 1);
1277 pandecode_prop("height1 = MALI_POSITIVE(%d)", fb->height1 + 1);
1278 pandecode_prop("width2 = MALI_POSITIVE(%d)", fb->width2 + 1);
1279 pandecode_prop("height2 = MALI_POSITIVE(%d)", fb->height2 + 1);
1280
1281 pandecode_prop("unk1 = 0x%x", fb->unk1);
1282 pandecode_prop("unk2 = 0x%x", fb->unk2);
1283 pandecode_prop("rt_count_1 = MALI_POSITIVE(%d)", fb->rt_count_1 + 1);
1284 pandecode_prop("rt_count_2 = %d", fb->rt_count_2);
1285
Alyssa Rosenzweigac689462019-06-14 11:14:01 -07001286 pandecode_log(".mfbd_flags = ");
1287 pandecode_log_decoded_flags(mfbd_flag_info, fb->mfbd_flags);
1288 pandecode_log_cont(",\n");
1289
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -07001290 if (fb->clear_stencil)
1291 pandecode_prop("clear_stencil = 0x%x", fb->clear_stencil);
1292
1293 if (fb->clear_depth)
1294 pandecode_prop("clear_depth = %f", fb->clear_depth);
1295
Alyssa Rosenzweig39939692020-01-22 08:51:19 -05001296 if (!is_compute)
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -05001297 if (is_bifrost)
Tomeu Vizoso46e42462020-04-08 15:58:42 +02001298 pandecode_bifrost_tiler_descriptor(fb);
Alyssa Rosenzweigc2c8b1a2020-05-26 18:10:39 -04001299 else {
1300 const struct midgard_tiler_descriptor t = fb->tiler;
1301 pandecode_midgard_tiler_descriptor(&t, fb->width1 + 1, fb->height1 + 1, is_fragment, true);
1302 }
Alyssa Rosenzweig39939692020-01-22 08:51:19 -05001303 else
1304 pandecode_msg("XXX: skipping compute MFBD, fixme\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001305
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -07001306 if (fb->zero3 || fb->zero4) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001307 pandecode_msg("XXX: framebuffer zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001308 pandecode_prop("zero3 = 0x%" PRIx32, fb->zero3);
1309 pandecode_prop("zero4 = 0x%" PRIx32, fb->zero4);
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -07001310 }
1311
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001312 pandecode_indent--;
1313 pandecode_log("};\n");
1314
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001315 gpu_va += sizeof(struct mali_framebuffer);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001316
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001317 info.has_extra = (fb->mfbd_flags & MALI_MFBD_EXTRA) && is_fragment;
1318
1319 if (info.has_extra) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001320 mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001321 const struct mali_framebuffer_extra *PANDECODE_PTR_VAR(fbx, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001322
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001323 pandecode_log("struct mali_framebuffer_extra fb_extra_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001324 pandecode_indent++;
1325
1326 MEMORY_PROP(fbx, checksum);
1327
1328 if (fbx->checksum_stride)
1329 pandecode_prop("checksum_stride = %d", fbx->checksum_stride);
1330
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001331 pandecode_log(".flags_hi = ");
Alyssa Rosenzweig7e53cce2020-05-04 12:48:34 -04001332 pandecode_log_decoded_flags(mfbd_extra_flag_hi_info, fbx->flags_hi);
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +00001333 pandecode_log_cont(",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001334
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001335 pandecode_log(".flags_lo = ");
1336 pandecode_log_decoded_flags(mfbd_extra_flag_lo_info, fbx->flags_lo);
1337 pandecode_log_cont(",\n");
1338
Alyssa Rosenzweig0c4a70b2020-02-11 21:50:04 -05001339 pandecode_prop("zs_block = %s", pandecode_block_format(fbx->zs_block));
Alyssa Rosenzweige061bf02020-07-15 11:57:35 -04001340 pandecode_prop("zs_samples = MALI_POSITIVE(%u)", fbx->zs_samples + 1);
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001341
1342 if (fbx->zs_block == MALI_BLOCK_AFBC) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001343 pandecode_log(".ds_afbc = {\n");
1344 pandecode_indent++;
1345
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -07001346 MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil_afbc_metadata);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001347 pandecode_prop("depth_stencil_afbc_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001348 fbx->ds_afbc.depth_stencil_afbc_stride);
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -07001349 MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001350
Icecream959ac106d2020-06-02 14:13:03 +12001351 pandecode_log(".flags = ");
1352 pandecode_log_decoded_flags(afbc_fmt_flag_info, fbx->ds_afbc.flags);
1353 pandecode_log_cont(",\n");
1354
1355 if (fbx->ds_afbc.padding) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001356 pandecode_msg("XXX: Depth/stencil AFBC zeros tripped\n");
Icecream959ac106d2020-06-02 14:13:03 +12001357 pandecode_prop("padding = 0x%" PRIx64, fbx->ds_afbc.padding);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001358 }
1359
1360 pandecode_indent--;
1361 pandecode_log("},\n");
1362 } else {
1363 pandecode_log(".ds_linear = {\n");
1364 pandecode_indent++;
1365
1366 if (fbx->ds_linear.depth) {
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -07001367 MEMORY_PROP_DIR(fbx->ds_linear, depth);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001368 pandecode_prop("depth_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001369 fbx->ds_linear.depth_stride);
Alyssa Rosenzweig5e38d952020-07-03 11:27:48 -04001370 pandecode_prop("depth_layer_stride = %d",
1371 fbx->ds_linear.depth_layer_stride);
1372 } else if (fbx->ds_linear.depth_stride || fbx->ds_linear.depth_layer_stride) {
1373 pandecode_msg("XXX: depth stride zero tripped %d %d\n", fbx->ds_linear.depth_stride, fbx->ds_linear.depth_layer_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001374 }
1375
1376 if (fbx->ds_linear.stencil) {
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -07001377 MEMORY_PROP_DIR(fbx->ds_linear, stencil);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001378 pandecode_prop("stencil_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001379 fbx->ds_linear.stencil_stride);
Alyssa Rosenzweig5e38d952020-07-03 11:27:48 -04001380 pandecode_prop("stencil_layer_stride = %d",
1381 fbx->ds_linear.stencil_layer_stride);
1382 } else if (fbx->ds_linear.stencil_stride || fbx->ds_linear.stencil_layer_stride) {
1383 pandecode_msg("XXX: stencil stride zero tripped %d %d\n", fbx->ds_linear.stencil_stride, fbx->ds_linear.stencil_layer_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001384 }
1385
1386 if (fbx->ds_linear.depth_stride_zero ||
Alyssa Rosenzweig5e38d952020-07-03 11:27:48 -04001387 fbx->ds_linear.stencil_stride_zero) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001388 pandecode_msg("XXX: Depth/stencil zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001389 pandecode_prop("depth_stride_zero = 0x%x",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001390 fbx->ds_linear.depth_stride_zero);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001391 pandecode_prop("stencil_stride_zero = 0x%x",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001392 fbx->ds_linear.stencil_stride_zero);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001393 }
1394
1395 pandecode_indent--;
1396 pandecode_log("},\n");
1397 }
1398
Alyssa Rosenzweig81a31912020-04-06 19:45:30 -04001399 if (fbx->clear_color_1 | fbx->clear_color_2) {
1400 pandecode_prop("clear_color_1 = 0x%" PRIx32, fbx->clear_color_1);
1401 pandecode_prop("clear_color_2 = 0x%" PRIx32, fbx->clear_color_2);
1402 }
1403
1404 if (fbx->zero3) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001405 pandecode_msg("XXX: fb_extra zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001406 pandecode_prop("zero3 = 0x%" PRIx64, fbx->zero3);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001407 }
1408
1409 pandecode_indent--;
1410 pandecode_log("};\n");
1411
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001412 gpu_va += sizeof(struct mali_framebuffer_extra);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001413 }
1414
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -07001415 if (is_fragment)
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001416 pandecode_render_target(gpu_va, job_no, fb);
Alyssa Rosenzweiga9fc1c82019-06-23 11:29:46 -07001417
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001418 return info;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001419}
1420
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001421/* Just add a comment decoding the shift/odd fields forming the padded vertices
1422 * count */
1423
1424static void
1425pandecode_padded_vertices(unsigned shift, unsigned k)
1426{
1427 unsigned odd = 2*k + 1;
1428 unsigned pot = 1 << shift;
1429 pandecode_msg("padded_num_vertices = %d\n", odd * pot);
1430}
1431
1432/* Given a magic divisor, recover what we were trying to divide by.
1433 *
1434 * Let m represent the magic divisor. By definition, m is an element on Z, whre
1435 * 0 <= m < 2^N, for N bits in m.
1436 *
1437 * Let q represent the number we would like to divide by.
1438 *
1439 * By definition of a magic divisor for N-bit unsigned integers (a number you
1440 * multiply by to magically get division), m is a number such that:
1441 *
1442 * (m * x) & (2^N - 1) = floor(x/q).
1443 * for all x on Z where 0 <= x < 2^N
1444 *
1445 * Ignore the case where any of the above values equals zero; it is irrelevant
1446 * for our purposes (instanced arrays).
1447 *
1448 * Choose x = q. Then:
1449 *
1450 * (m * x) & (2^N - 1) = floor(x/q).
1451 * (m * q) & (2^N - 1) = floor(q/q).
1452 *
1453 * floor(q/q) = floor(1) = 1, therefore:
1454 *
1455 * (m * q) & (2^N - 1) = 1
1456 *
1457 * Recall the identity that the bitwise AND of one less than a power-of-two
1458 * equals the modulo with that power of two, i.e. for all x:
1459 *
1460 * x & (2^N - 1) = x % N
1461 *
1462 * Therefore:
1463 *
1464 * mq % (2^N) = 1
1465 *
1466 * By definition, a modular multiplicative inverse of a number m is the number
1467 * q such that with respect to a modulos M:
1468 *
1469 * mq % M = 1
1470 *
1471 * Therefore, q is the modular multiplicative inverse of m with modulus 2^N.
1472 *
1473 */
1474
1475static void
1476pandecode_magic_divisor(uint32_t magic, unsigned shift, unsigned orig_divisor, unsigned extra)
1477{
Alyssa Rosenzweigd07c8462019-07-22 08:34:26 -07001478#if 0
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001479 /* Compute the modular inverse of `magic` with respect to 2^(32 -
1480 * shift) the most lame way possible... just repeatedly add.
1481 * Asymptoptically slow but nobody cares in practice, unless you have
1482 * massive numbers of vertices or high divisors. */
1483
1484 unsigned inverse = 0;
1485
1486 /* Magic implicitly has the highest bit set */
1487 magic |= (1 << 31);
1488
1489 /* Depending on rounding direction */
1490 if (extra)
1491 magic++;
1492
1493 for (;;) {
1494 uint32_t product = magic * inverse;
1495
1496 if (shift) {
1497 product >>= shift;
1498 }
1499
1500 if (product == 1)
1501 break;
1502
1503 ++inverse;
1504 }
1505
1506 pandecode_msg("dividing by %d (maybe off by two)\n", inverse);
1507
1508 /* Recall we're supposed to divide by (gl_level_divisor *
1509 * padded_num_vertices) */
1510
1511 unsigned padded_num_vertices = inverse / orig_divisor;
1512
1513 pandecode_msg("padded_num_vertices = %d\n", padded_num_vertices);
Alyssa Rosenzweigd07c8462019-07-22 08:34:26 -07001514#endif
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001515}
1516
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001517static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001518pandecode_attributes(const struct pandecode_mapped_memory *mem,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001519 mali_ptr addr, int job_no, char *suffix,
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001520 int count, bool varying, enum mali_job_type job_type)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001521{
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001522 char *prefix = varying ? "varying" : "attribute";
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07001523 assert(addr);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001524
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07001525 if (!count) {
1526 pandecode_msg("warn: No %s records\n", prefix);
Alyssa Rosenzweig5ad83012019-08-08 09:23:29 -07001527 return;
1528 }
1529
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001530 union mali_attr *attr = pandecode_fetch_gpu_mem(mem, addr, sizeof(union mali_attr) * count);
1531
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001532 for (int i = 0; i < count; ++i) {
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001533 /* First, check for special records */
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001534 if (attr[i].elements < MALI_RECORD_SPECIAL) {
1535 if (attr[i].size)
1536 pandecode_msg("XXX: tripped size=%d\n", attr[i].size);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001537
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001538 if (attr[i].stride) {
1539 /* gl_InstanceID passes a magic divisor in the
1540 * stride field to divide by the padded vertex
1541 * count. No other records should do so, so
1542 * stride should otherwise be zero. Note that
1543 * stride in the usual attribute sense doesn't
1544 * apply to special records. */
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001545
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001546 bool has_divisor = attr[i].elements == MALI_ATTR_INSTANCEID;
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001547
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001548 pandecode_log_cont("/* %smagic divisor = %X */ ",
1549 has_divisor ? "" : "XXX: ", attr[i].stride);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001550 }
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001551
1552 if (attr[i].shift || attr[i].extra_flags) {
1553 /* Attributes use these fields for
1554 * instancing/padding/etc type issues, but
1555 * varyings don't */
1556
1557 pandecode_log_cont("/* %sshift=%d, extra=%d */ ",
1558 varying ? "XXX: " : "",
1559 attr[i].shift, attr[i].extra_flags);
1560 }
1561
1562 /* Print the special record name */
1563 bool attribute = false;
1564 pandecode_log("%s_%d = %s;\n", prefix, i, pandecode_special_record(attr[i].elements, &attribute));
1565
1566 /* Sanity check */
1567 if (attribute == varying)
1568 pandecode_msg("XXX: mismatched special record\n");
1569
1570 continue;
1571 }
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001572
Alyssa Rosenzweigbe5e30c2019-08-20 15:59:03 -07001573 enum mali_attr_mode mode = attr[i].elements & 7;
1574
1575 if (mode == MALI_ATTR_UNUSED)
1576 pandecode_msg("XXX: unused attribute record\n");
1577
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001578 /* For non-linear records, we need to print the type of record */
1579 if (mode != MALI_ATTR_LINEAR)
1580 pandecode_log_cont("%s ", pandecode_attr_mode_short(mode));
1581
1582 /* Print the name to link with attr_meta */
1583 pandecode_log_cont("%s_%d", prefix, i);
1584
1585 /* Print the stride and size */
1586 pandecode_log_cont("<%u>[%u]", attr[i].stride, attr[i].size);
1587
Alyssa Rosenzweigcaec0b32019-08-22 13:09:00 -07001588 /* TODO: Sanity check the quotient itself. It must be equal to
1589 * (or be greater than, if the driver added padding) the padded
1590 * vertex count. */
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001591
1592 /* Finally, print the pointer */
Alyssa Rosenzweigbe5e30c2019-08-20 15:59:03 -07001593 mali_ptr raw_elements = attr[i].elements & ~7;
1594 char *a = pointer_as_memory_reference(raw_elements);
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001595 pandecode_log_cont(" = (%s);\n", a);
Alyssa Rosenzweigbe5e30c2019-08-20 15:59:03 -07001596 free(a);
1597
Alyssa Rosenzweig62e66732019-08-20 16:02:38 -07001598 /* Check the pointer */
1599 pandecode_validate_buffer(raw_elements, attr[i].size);
1600
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001601 /* shift/extra_flags exist only for instanced */
1602 if (attr[i].shift | attr[i].extra_flags) {
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001603 /* These are set to random values by the blob for
1604 * varyings, most likely a symptom of uninitialized
1605 * memory where the hardware masked the bug. As such we
1606 * put this at a warning, not an error. */
1607
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001608 if (mode == MALI_ATTR_LINEAR)
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001609 pandecode_msg("warn: instancing fields set for linear\n");
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001610
1611 pandecode_prop("shift = %d", attr[i].shift);
1612 pandecode_prop("extra_flags = %d", attr[i].extra_flags);
1613 }
Alyssa Rosenzweige9e22542019-06-27 10:18:22 -07001614
1615 /* Decode further where possible */
1616
1617 if (mode == MALI_ATTR_MODULO) {
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001618 pandecode_padded_vertices(
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001619 attr[i].shift,
1620 attr[i].extra_flags);
Alyssa Rosenzweige9e22542019-06-27 10:18:22 -07001621 }
1622
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001623 if (mode == MALI_ATTR_NPOT_DIVIDE) {
1624 i++;
1625 pandecode_log("{\n");
1626 pandecode_indent++;
1627 pandecode_prop("unk = 0x%x", attr[i].unk);
1628 pandecode_prop("magic_divisor = 0x%08x", attr[i].magic_divisor);
1629 if (attr[i].zero != 0)
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001630 pandecode_prop("XXX: zero tripped (0x%x)\n", attr[i].zero);
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001631 pandecode_prop("divisor = %d", attr[i].divisor);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001632 pandecode_magic_divisor(attr[i].magic_divisor, attr[i - 1].shift, attr[i].divisor, attr[i - 1].extra_flags);
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001633 pandecode_indent--;
1634 pandecode_log("}, \n");
1635 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001636
1637 }
1638
Alyssa Rosenzweiga68fe4b2019-08-21 11:43:13 -07001639 pandecode_log("\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001640}
1641
1642static mali_ptr
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001643pandecode_shader_address(const char *name, mali_ptr ptr)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001644{
1645 /* TODO: Decode flags */
1646 mali_ptr shader_ptr = ptr & ~15;
1647
1648 char *a = pointer_as_memory_reference(shader_ptr);
1649 pandecode_prop("%s = (%s) | %d", name, a, (int) (ptr & 15));
1650 free(a);
1651
1652 return shader_ptr;
1653}
1654
1655static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001656pandecode_stencil(const char *name, const struct mali_stencil_test *stencil)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001657{
Alyssa Rosenzweig9ce45ac2019-08-21 08:59:57 -07001658 unsigned any_nonzero =
1659 stencil->ref | stencil->mask | stencil->func |
1660 stencil->sfail | stencil->dpfail | stencil->dppass;
1661
1662 if (any_nonzero == 0)
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07001663 return;
1664
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -07001665 const char *func = pandecode_func(stencil->func);
1666 const char *sfail = pandecode_stencil_op(stencil->sfail);
1667 const char *dpfail = pandecode_stencil_op(stencil->dpfail);
1668 const char *dppass = pandecode_stencil_op(stencil->dppass);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001669
1670 if (stencil->zero)
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001671 pandecode_msg("XXX: stencil zero tripped: %X\n", stencil->zero);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001672
1673 pandecode_log(".stencil_%s = {\n", name);
1674 pandecode_indent++;
1675 pandecode_prop("ref = %d", stencil->ref);
1676 pandecode_prop("mask = 0x%02X", stencil->mask);
1677 pandecode_prop("func = %s", func);
1678 pandecode_prop("sfail = %s", sfail);
1679 pandecode_prop("dpfail = %s", dpfail);
1680 pandecode_prop("dppass = %s", dppass);
1681 pandecode_indent--;
1682 pandecode_log("},\n");
1683}
1684
1685static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001686pandecode_blend_equation(const struct mali_blend_equation *blend)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001687{
1688 if (blend->zero1)
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001689 pandecode_msg("XXX: blend zero tripped: %X\n", blend->zero1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001690
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001691 pandecode_log(".equation = {\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001692 pandecode_indent++;
1693
1694 pandecode_prop("rgb_mode = 0x%X", blend->rgb_mode);
1695 pandecode_prop("alpha_mode = 0x%X", blend->alpha_mode);
1696
1697 pandecode_log(".color_mask = ");
1698 pandecode_log_decoded_flags(mask_flag_info, blend->color_mask);
1699 pandecode_log_cont(",\n");
1700
1701 pandecode_indent--;
1702 pandecode_log("},\n");
1703}
1704
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001705/* Decodes a Bifrost blend constant. See the notes in bifrost_blend_rt */
1706
1707static unsigned
1708decode_bifrost_constant(u16 constant)
1709{
1710 float lo = (float) (constant & 0xFF);
1711 float hi = (float) (constant >> 8);
1712
1713 return (hi / 255.0) + (lo / 65535.0);
1714}
1715
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001716static mali_ptr
1717pandecode_bifrost_blend(void *descs, int job_no, int rt_no)
1718{
1719 struct bifrost_blend_rt *b =
1720 ((struct bifrost_blend_rt *) descs) + rt_no;
1721
1722 pandecode_log("struct bifrost_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no);
1723 pandecode_indent++;
1724
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001725 pandecode_prop("flags = 0x%" PRIx16, b->flags);
1726 pandecode_prop("constant = 0x%" PRIx8 " /* %f */",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001727 b->constant, decode_bifrost_constant(b->constant));
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001728
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001729 /* TODO figure out blend shader enable bit */
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001730 pandecode_blend_equation(&b->equation);
Tomeu Vizoso3c98c452020-04-24 08:40:51 +02001731
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001732 pandecode_prop("unk2 = 0x%" PRIx16, b->unk2);
1733 pandecode_prop("index = 0x%" PRIx16, b->index);
Tomeu Vizoso3c98c452020-04-24 08:40:51 +02001734
1735 pandecode_log(".format = ");
1736 pandecode_format_short(b->format, false);
1737 pandecode_swizzle(b->swizzle, b->format);
1738 pandecode_log_cont(",\n");
1739
1740 pandecode_prop("swizzle = 0x%" PRIx32, b->swizzle);
1741 pandecode_prop("format = 0x%" PRIx32, b->format);
1742
1743 if (b->zero1) {
1744 pandecode_msg("XXX: pandecode_bifrost_blend zero1 tripped\n");
1745 pandecode_prop("zero1 = 0x%" PRIx32, b->zero1);
1746 }
1747
1748 pandecode_log(".shader_type = ");
1749 switch(b->shader_type) {
1750 case BIFROST_BLEND_F16:
1751 pandecode_log_cont("BIFROST_BLEND_F16");
1752 break;
1753 case BIFROST_BLEND_F32:
1754 pandecode_log_cont("BIFROST_BLEND_F32");
1755 break;
1756 case BIFROST_BLEND_I32:
1757 pandecode_log_cont("BIFROST_BLEND_I32");
1758 break;
1759 case BIFROST_BLEND_U32:
1760 pandecode_log_cont("BIFROST_BLEND_U32");
1761 break;
1762 case BIFROST_BLEND_I16:
1763 pandecode_log_cont("BIFROST_BLEND_I16");
1764 break;
1765 case BIFROST_BLEND_U16:
1766 pandecode_log_cont("BIFROST_BLEND_U16");
1767 break;
1768 }
1769 pandecode_log_cont(",\n");
1770
1771 if (b->zero2) {
1772 pandecode_msg("XXX: pandecode_bifrost_blend zero2 tripped\n");
1773 pandecode_prop("zero2 = 0x%" PRIx32, b->zero2);
1774 }
1775
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001776 pandecode_prop("shader = 0x%" PRIx32, b->shader);
1777
1778 pandecode_indent--;
1779 pandecode_log("},\n");
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001780
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001781 return 0;
1782}
1783
1784static mali_ptr
1785pandecode_midgard_blend(union midgard_blend *blend, bool is_shader)
1786{
Alyssa Rosenzweig9ce45ac2019-08-21 08:59:57 -07001787 /* constant/equation is in a union */
1788 if (!blend->shader)
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07001789 return 0;
1790
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001791 pandecode_log(".blend = {\n");
1792 pandecode_indent++;
1793
1794 if (is_shader) {
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001795 pandecode_shader_address("shader", blend->shader);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001796 } else {
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001797 pandecode_blend_equation(&blend->equation);
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001798 pandecode_prop("constant = %f", blend->constant);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001799 }
1800
1801 pandecode_indent--;
1802 pandecode_log("},\n");
1803
1804 /* Return blend shader to disassemble if present */
1805 return is_shader ? (blend->shader & ~0xF) : 0;
1806}
1807
1808static mali_ptr
1809pandecode_midgard_blend_mrt(void *descs, int job_no, int rt_no)
1810{
1811 struct midgard_blend_rt *b =
1812 ((struct midgard_blend_rt *) descs) + rt_no;
1813
1814 /* Flags determine presence of blend shader */
1815 bool is_shader = (b->flags & 0xF) >= 0x2;
1816
1817 pandecode_log("struct midgard_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no);
1818 pandecode_indent++;
1819
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001820 pandecode_prop("flags = 0x%" PRIx64, b->flags);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001821
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -07001822 union midgard_blend blend = b->blend;
1823 mali_ptr shader = pandecode_midgard_blend(&blend, is_shader);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001824
1825 pandecode_indent--;
1826 pandecode_log("};\n");
1827
1828 return shader;
1829}
1830
Alyssa Rosenzweig2208eb92019-08-20 13:59:26 -07001831/* Attributes and varyings have descriptor records, which contain information
1832 * about their format and ordering with the attribute/varying buffers. We'll
1833 * want to validate that the combinations specified are self-consistent.
1834 */
1835
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001836static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001837pandecode_attribute_meta(int job_no, int count, const struct mali_vertex_tiler_postfix *v, bool varying, char *suffix)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001838{
1839 char base[128];
1840 char *prefix = varying ? "varying" : "attribute";
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001841 unsigned max_index = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001842 snprintf(base, sizeof(base), "%s_meta", prefix);
1843
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001844 struct mali_attr_meta *attr_meta;
Alyssa Rosenzweig26ed4312019-08-22 11:21:35 -07001845 mali_ptr p = varying ? v->varying_meta : v->attribute_meta;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001846
1847 struct pandecode_mapped_memory *attr_mem = pandecode_find_mapped_gpu_mem_containing(p);
1848
1849 for (int i = 0; i < count; ++i, p += sizeof(struct mali_attr_meta)) {
1850 attr_meta = pandecode_fetch_gpu_mem(attr_mem, p,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001851 sizeof(*attr_mem));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001852
Alyssa Rosenzweiga94fb782019-08-20 13:33:39 -07001853 /* If the record is discard, it should be zero for everything else */
1854
1855 if (attr_meta->format == MALI_VARYING_DISCARD) {
1856 uint64_t zero =
1857 attr_meta->index |
1858 attr_meta->unknown1 |
1859 attr_meta->unknown3 |
1860 attr_meta->src_offset;
1861
1862 if (zero)
1863 pandecode_msg("XXX: expected empty record for varying discard\n");
1864
1865 /* We want to look for a literal 0000 swizzle -- this
1866 * is not encoded with all zeroes, however */
1867
1868 enum mali_channel z = MALI_CHANNEL_ZERO;
1869 unsigned zero_swizzle = z | (z << 3) | (z << 6) | (z << 9);
1870 bool good_swizzle = attr_meta->swizzle == zero_swizzle;
1871
1872 if (!good_swizzle)
1873 pandecode_msg("XXX: expected zero swizzle for discard\n");
1874
1875 if (!varying)
1876 pandecode_msg("XXX: cannot discard attribute\n");
1877
1878 /* If we're all good, omit the record */
1879 if (!zero && varying && good_swizzle) {
1880 pandecode_log("/* discarded varying */\n");
1881 continue;
1882 }
1883 }
1884
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001885 if (attr_meta->index > max_index)
1886 max_index = attr_meta->index;
Alyssa Rosenzweig2208eb92019-08-20 13:59:26 -07001887
Alyssa Rosenzweig00be5d72019-08-20 13:19:40 -07001888 if (attr_meta->unknown1 != 0x2) {
1889 pandecode_msg("XXX: expected unknown1 = 0x2\n");
1890 pandecode_prop("unknown1 = 0x%" PRIx64, (u64) attr_meta->unknown1);
1891 }
1892
1893 if (attr_meta->unknown3) {
1894 pandecode_msg("XXX: unexpected unknown3 set\n");
1895 pandecode_prop("unknown3 = 0x%" PRIx64, (u64) attr_meta->unknown3);
1896 }
1897
Alyssa Rosenzweig9b203952019-08-20 15:24:45 -07001898 pandecode_format_short(attr_meta->format, false);
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -07001899 pandecode_log_cont(" %s_%u", prefix, attr_meta->index);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001900
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -07001901 if (attr_meta->src_offset)
1902 pandecode_log_cont("[%u]", attr_meta->src_offset);
1903
1904 pandecode_swizzle(attr_meta->swizzle, attr_meta->format);
1905
1906 pandecode_log_cont(";\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001907 }
1908
Alyssa Rosenzweiga68fe4b2019-08-21 11:43:13 -07001909 pandecode_log("\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001910
Alyssa Rosenzweig9e66ff32019-07-31 11:52:52 -07001911 return count ? (max_index + 1) : 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001912}
1913
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001914/* return bits [lo, hi) of word */
1915static u32
1916bits(u32 word, u32 lo, u32 hi)
1917{
1918 if (hi - lo >= 32)
1919 return word; // avoid undefined behavior with the shift
1920
1921 return (word >> lo) & ((1 << (hi - lo)) - 1);
1922}
1923
1924static void
Alyssa Rosenzweig385a4f72019-12-24 22:33:47 -05001925pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bool graphics)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001926{
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -04001927 pandecode_log(".prefix = {\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001928 pandecode_indent++;
1929
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001930 /* Decode invocation_count. See the comment before the definition of
1931 * invocation_count for an explanation.
1932 */
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001933
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001934 unsigned size_y_shift = bits(p->invocation_shifts, 0, 5);
1935 unsigned size_z_shift = bits(p->invocation_shifts, 5, 10);
1936 unsigned workgroups_x_shift = bits(p->invocation_shifts, 10, 16);
1937 unsigned workgroups_y_shift = bits(p->invocation_shifts, 16, 22);
1938 unsigned workgroups_z_shift = bits(p->invocation_shifts, 22, 28);
1939 unsigned workgroups_x_shift_2 = bits(p->invocation_shifts, 28, 32);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001940
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001941 unsigned size_x = bits(p->invocation_count, 0, size_y_shift) + 1;
1942 unsigned size_y = bits(p->invocation_count, size_y_shift, size_z_shift) + 1;
1943 unsigned size_z = bits(p->invocation_count, size_z_shift, workgroups_x_shift) + 1;
1944
1945 unsigned groups_x = bits(p->invocation_count, workgroups_x_shift, workgroups_y_shift) + 1;
1946 unsigned groups_y = bits(p->invocation_count, workgroups_y_shift, workgroups_z_shift) + 1;
1947 unsigned groups_z = bits(p->invocation_count, workgroups_z_shift, 32) + 1;
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001948
1949 /* Even though we have this decoded, we want to ensure that the
1950 * representation is "unique" so we don't lose anything by printing only
1951 * the final result. More specifically, we need to check that we were
1952 * passed something in canonical form, since the definition per the
1953 * hardware is inherently not unique. How? Well, take the resulting
1954 * decode and pack it ourselves! If it is bit exact with what we
1955 * decoded, we're good to go. */
1956
1957 struct mali_vertex_tiler_prefix ref;
Alyssa Rosenzweig385a4f72019-12-24 22:33:47 -05001958 panfrost_pack_work_groups_compute(&ref, groups_x, groups_y, groups_z, size_x, size_y, size_z, graphics);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001959
1960 bool canonical =
1961 (p->invocation_count == ref.invocation_count) &&
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001962 (p->invocation_shifts == ref.invocation_shifts);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001963
1964 if (!canonical) {
1965 pandecode_msg("XXX: non-canonical workgroups packing\n");
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001966 pandecode_msg("expected: %X, %X",
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001967 ref.invocation_count,
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001968 ref.invocation_shifts);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001969
1970 pandecode_prop("invocation_count = 0x%" PRIx32, p->invocation_count);
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001971 pandecode_prop("size_y_shift = %d", size_y_shift);
1972 pandecode_prop("size_z_shift = %d", size_z_shift);
1973 pandecode_prop("workgroups_x_shift = %d", workgroups_x_shift);
1974 pandecode_prop("workgroups_y_shift = %d", workgroups_y_shift);
1975 pandecode_prop("workgroups_z_shift = %d", workgroups_z_shift);
1976 pandecode_prop("workgroups_x_shift_2 = %d", workgroups_x_shift_2);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001977 }
1978
1979 /* Regardless, print the decode */
1980 pandecode_msg("size (%d, %d, %d), count (%d, %d, %d)\n",
1981 size_x, size_y, size_z,
1982 groups_x, groups_y, groups_z);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001983
1984 /* TODO: Decode */
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -07001985 if (p->unknown_draw)
1986 pandecode_prop("unknown_draw = 0x%" PRIx32, p->unknown_draw);
1987
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001988 pandecode_prop("workgroups_x_shift_3 = 0x%" PRIx32, p->workgroups_x_shift_3);
1989
Alyssa Rosenzweig32dbc802020-08-05 18:44:36 -04001990 if (p->draw_mode != MALI_DRAW_MODE_NONE)
1991 pandecode_prop("draw_mode = %s", mali_draw_mode_as_str(p->draw_mode));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001992
1993 /* Index count only exists for tiler jobs anyway */
1994
1995 if (p->index_count)
1996 pandecode_prop("index_count = MALI_POSITIVE(%" PRId32 ")", p->index_count + 1);
1997
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -07001998
1999 unsigned index_raw_size = (p->unknown_draw & MALI_DRAW_INDEXED_SIZE);
2000 index_raw_size >>= MALI_DRAW_INDEXED_SHIFT;
2001
2002 /* Validate an index buffer is present if we need one. TODO: verify
2003 * relationship between invocation_count and index_count */
2004
2005 if (p->indices) {
2006 unsigned count = p->index_count;
2007
2008 /* Grab the size */
2009 unsigned size = (index_raw_size == 0x3) ? 4 : index_raw_size;
2010
2011 /* Ensure we got a size, and if so, validate the index buffer
2012 * is large enough to hold a full set of indices of the given
2013 * size */
2014
2015 if (!index_raw_size)
2016 pandecode_msg("XXX: index size missing\n");
2017 else
2018 pandecode_validate_buffer(p->indices, count * size);
2019 } else if (index_raw_size)
2020 pandecode_msg("XXX: unexpected index size %u\n", index_raw_size);
2021
Rohan Garg16edd562019-07-17 18:50:13 +02002022 if (p->offset_bias_correction)
2023 pandecode_prop("offset_bias_correction = %d", p->offset_bias_correction);
Alyssa Rosenzweig4fcd3182019-03-31 04:15:46 +00002024
Alyssa Rosenzweigc0642eb2019-08-20 13:21:28 -07002025 /* TODO: Figure out what this is. It's not zero */
2026 pandecode_prop("zero1 = 0x%" PRIx32, p->zero1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002027
2028 pandecode_indent--;
2029 pandecode_log("},\n");
2030}
2031
2032static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002033pandecode_uniform_buffers(mali_ptr pubufs, int ubufs_count, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002034{
2035 struct pandecode_mapped_memory *umem = pandecode_find_mapped_gpu_mem_containing(pubufs);
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05002036 uint64_t *PANDECODE_PTR_VAR(ubufs, umem, pubufs);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002037
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002038 for (int i = 0; i < ubufs_count; i++) {
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05002039 unsigned size = (ubufs[i] & ((1 << 10) - 1)) * 16;
2040 mali_ptr addr = (ubufs[i] >> 10) << 2;
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002041
2042 pandecode_validate_buffer(addr, size);
2043
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05002044 char *ptr = pointer_as_memory_reference(addr);
Alyssa Rosenzweig6ec33b42019-08-21 11:46:06 -07002045 pandecode_log("ubuf_%d[%u] = %s;\n", i, size, ptr);
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002046 free(ptr);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002047 }
2048
Alyssa Rosenzweig6ec33b42019-08-21 11:46:06 -07002049 pandecode_log("\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002050}
2051
2052static void
Alyssa Rosenzweigae84f162019-08-22 11:30:13 -07002053pandecode_uniforms(mali_ptr uniforms, unsigned uniform_count)
2054{
2055 pandecode_validate_buffer(uniforms, uniform_count * 16);
2056
2057 char *ptr = pointer_as_memory_reference(uniforms);
2058 pandecode_log("vec4 uniforms[%u] = %s;\n", uniform_count, ptr);
2059 free(ptr);
2060}
2061
Alyssa Rosenzweig09671c82019-12-23 11:40:40 -05002062static const char *
2063shader_type_for_job(unsigned type)
2064{
2065 switch (type) {
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002066 case MALI_JOB_TYPE_VERTEX: return "VERTEX";
2067 case MALI_JOB_TYPE_TILER: return "FRAGMENT";
2068 case MALI_JOB_TYPE_COMPUTE: return "COMPUTE";
Alyssa Rosenzweig09671c82019-12-23 11:40:40 -05002069 default:
2070 return "UNKNOWN";
2071 }
2072}
2073
Alyssa Rosenzweigc4a4f3d2019-08-14 09:19:54 -07002074static unsigned shader_id = 0;
2075
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07002076static struct midgard_disasm_stats
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002077pandecode_shader_disassemble(mali_ptr shader_ptr, int shader_no, int type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002078 bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002079{
2080 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(shader_ptr);
2081 uint8_t *PANDECODE_PTR_VAR(code, mem, shader_ptr);
2082
2083 /* Compute maximum possible size */
2084 size_t sz = mem->length - (shader_ptr - mem->gpu_va);
2085
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002086 /* Print some boilerplate to clearly denote the assembly (which doesn't
2087 * obey indentation rules), and actually do the disassembly! */
2088
Icecream95be22c072020-01-23 10:14:35 +13002089 pandecode_log_cont("\n\n");
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00002090
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07002091 struct midgard_disasm_stats stats;
Alyssa Rosenzweigc4a4f3d2019-08-14 09:19:54 -07002092
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00002093 if (is_bifrost) {
Alyssa Rosenzweigc88f8162020-03-27 22:34:15 -04002094 disassemble_bifrost(pandecode_dump_stream, code, sz, true);
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07002095
2096 /* TODO: Extend stats to Bifrost */
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002097 stats.texture_count = -128;
2098 stats.sampler_count = -128;
2099 stats.attribute_count = -128;
2100 stats.varying_count = -128;
2101 stats.uniform_count = -128;
2102 stats.uniform_buffer_count = -128;
2103 stats.work_count = -128;
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07002104
2105 stats.instruction_count = 0;
2106 stats.bundle_count = 0;
2107 stats.quadword_count = 0;
Alyssa Rosenzweigd6d6d632019-08-30 17:00:09 -07002108 stats.helper_invocations = false;
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00002109 } else {
Icecream95be22c072020-01-23 10:14:35 +13002110 stats = disassemble_midgard(pandecode_dump_stream,
2111 code, sz, gpu_id,
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002112 type == MALI_JOB_TYPE_TILER ?
Alyssa Rosenzweigac14fac2019-11-07 09:31:02 -05002113 MESA_SHADER_FRAGMENT : MESA_SHADER_VERTEX);
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00002114 }
2115
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05002116 /* Print shader-db stats. Skip COMPUTE jobs since they are used for
2117 * driver-internal purposes with the blob and interfere */
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07002118
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002119 bool should_shaderdb = type != MALI_JOB_TYPE_COMPUTE;
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07002120
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05002121 if (should_shaderdb) {
2122 unsigned nr_threads =
2123 (stats.work_count <= 4) ? 4 :
2124 (stats.work_count <= 8) ? 2 :
2125 1;
2126
Icecream95be22c072020-01-23 10:14:35 +13002127 pandecode_log_cont("shader%d - MESA_SHADER_%s shader: "
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05002128 "%u inst, %u bundles, %u quadwords, "
Alyssa Rosenzweig0cc6e332019-12-23 11:50:28 -05002129 "%u registers, %u threads, 0 loops, 0:0 spills:fills\n\n\n",
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05002130 shader_id++,
2131 shader_type_for_job(type),
2132 stats.instruction_count, stats.bundle_count, stats.quadword_count,
2133 stats.work_count, nr_threads);
2134 }
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07002135
2136
2137 return stats;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002138}
2139
2140static void
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04002141pandecode_texture_payload(mali_ptr payload,
2142 enum mali_texture_type type,
2143 enum mali_texture_layout layout,
2144 bool manual_stride,
2145 uint8_t levels,
2146 uint16_t depth,
2147 uint16_t array_size,
2148 struct pandecode_mapped_memory *tmem)
2149{
2150 pandecode_log(".payload = {\n");
2151 pandecode_indent++;
2152
2153 /* A bunch of bitmap pointers follow.
2154 * We work out the correct number,
2155 * based on the mipmap/cubemap
2156 * properties, but dump extra
2157 * possibilities to futureproof */
2158
2159 int bitmap_count = levels + 1;
2160
2161 /* Miptree for each face */
2162 if (type == MALI_TEX_CUBE)
2163 bitmap_count *= 6;
Alyssa Rosenzweigeba9bcd2020-06-30 16:21:30 -04002164
2165 /* Array of layers */
2166 bitmap_count *= (depth + 1);
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04002167
2168 /* Array of textures */
2169 bitmap_count *= (array_size + 1);
2170
2171 /* Stride for each element */
2172 if (manual_stride)
2173 bitmap_count *= 2;
2174
2175 mali_ptr *pointers_and_strides = pandecode_fetch_gpu_mem(tmem,
2176 payload, sizeof(mali_ptr) * bitmap_count);
2177 for (int i = 0; i < bitmap_count; ++i) {
2178 /* How we dump depends if this is a stride or a pointer */
2179
2180 if (manual_stride && (i & 1)) {
2181 /* signed 32-bit snuck in as a 64-bit pointer */
2182 uint64_t stride_set = pointers_and_strides[i];
2183 uint32_t clamped_stride = stride_set;
2184 int32_t stride = clamped_stride;
2185 assert(stride_set == clamped_stride);
2186 pandecode_log("(mali_ptr) %d /* stride */, \n", stride);
2187 } else {
2188 char *a = pointer_as_memory_reference(pointers_and_strides[i]);
2189 pandecode_log("%s, \n", a);
2190 free(a);
2191 }
2192 }
2193
2194 pandecode_indent--;
2195 pandecode_log("},\n");
2196}
2197
2198static void
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002199pandecode_texture(mali_ptr u,
2200 struct pandecode_mapped_memory *tmem,
2201 unsigned job_no, unsigned tex)
2202{
2203 struct mali_texture_descriptor *PANDECODE_PTR_VAR(t, tmem, u);
2204
2205 pandecode_log("struct mali_texture_descriptor texture_descriptor_%"PRIx64"_%d_%d = {\n", u, job_no, tex);
2206 pandecode_indent++;
2207
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002208 pandecode_prop("width = %" PRId32, t->width);
2209 pandecode_prop("height = %" PRId32, t->height);
2210 pandecode_prop("depth = %" PRId32, t->depth);
2211 pandecode_prop("array_size = %" PRId32, t->array_size);
2212
2213 pandecode_log("\n");
2214 pandecode_prop("f.swizzle = 0x%" PRIx32, t->format.swizzle);
2215 pandecode_prop("f.format = 0x%" PRIx32, t->format.format);
2216 pandecode_prop("f.srgb = 0x%" PRIx32, t->format.srgb);
2217 pandecode_prop("f.unknown1 = 0x%" PRIx32, t->format.unknown1);
2218 pandecode_prop("f.type = %" PRId32, t->format.type);
2219 pandecode_prop("f.layout = %" PRId32, t->format.layout);
2220 pandecode_prop("f.unknown2 = 0x%" PRIx32, t->format.unknown2);
2221 pandecode_prop("f.manual_stride = %" PRId32, t->format.manual_stride);
2222 pandecode_prop("f.zero = 0x%" PRIx32, t->format.zero);
2223 pandecode_log("\n");
2224
2225 pandecode_prop("unknown3 = 0x%" PRIx32, t->unknown3);
2226 pandecode_prop("unknown3A = 0x%" PRIx32, t->unknown3A);
2227 pandecode_prop("levels = %" PRId32, t->levels);
2228 pandecode_prop("swizzle = 0x%" PRIx32, t->swizzle);
2229 pandecode_prop("swizzle_zero = 0x%" PRIx32, t->swizzle_zero);
2230
2231 pandecode_prop("unknown5 = 0x%" PRIx32, t->unknown5);
2232 pandecode_prop("unknown6 = 0x%" PRIx32, t->unknown6);
2233 pandecode_prop("unknown7 = 0x%" PRIx32, t->unknown7);
2234 pandecode_log("\n");
2235
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002236 struct mali_texture_format f = t->format;
2237
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002238 /* See the definiton of enum mali_texture_type */
2239
Alyssa Rosenzweig68b90302019-08-20 15:46:39 -07002240 bool is_cube = f.type == MALI_TEX_CUBE;
2241 unsigned dimension = is_cube ? 2 : f.type;
2242
2243 pandecode_make_indent();
2244
Alyssa Rosenzweig68b90302019-08-20 15:46:39 -07002245 /* Print the layout. Default is linear; a modifier can denote AFBC or
2246 * u-interleaved/tiled modes */
2247
2248 if (f.layout == MALI_TEXTURE_AFBC)
2249 pandecode_log_cont("afbc");
2250 else if (f.layout == MALI_TEXTURE_TILED)
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05002251 pandecode_log_cont("tiled");
Alyssa Rosenzweig68b90302019-08-20 15:46:39 -07002252 else if (f.layout == MALI_TEXTURE_LINEAR)
2253 pandecode_log_cont("linear");
2254 else
2255 pandecode_msg("XXX: invalid texture layout 0x%X\n", f.layout);
2256
2257 pandecode_swizzle(t->swizzle, f.format);
2258 pandecode_log_cont(" ");
2259
2260 /* Distinguish cube/2D with modifier */
2261
2262 if (is_cube)
2263 pandecode_log_cont("cube ");
2264
2265 pandecode_format_short(f.format, f.srgb);
2266 pandecode_swizzle(f.swizzle, f.format);
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002267
2268 /* All four width/height/depth/array_size dimensions are present
2269 * regardless of the type of texture, but it is an error to have
2270 * non-zero dimensions for unused dimensions. Verify this. array_size
Alyssa Rosenzweigeba9bcd2020-06-30 16:21:30 -04002271 * can always be set, as can width. Depth used for MSAA. */
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002272
2273 if (t->height && dimension < 2)
2274 pandecode_msg("XXX: nonzero height for <2D texture\n");
2275
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002276 /* Print only the dimensions that are actually there */
2277
Alyssa Rosenzweig68b90302019-08-20 15:46:39 -07002278 pandecode_log_cont(": %d", t->width + 1);
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002279
Alyssa Rosenzweigeba9bcd2020-06-30 16:21:30 -04002280 if (t->height || t->depth)
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002281 pandecode_log_cont("x%u", t->height + 1);
2282
Alyssa Rosenzweigeba9bcd2020-06-30 16:21:30 -04002283 if (t->depth)
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002284 pandecode_log_cont("x%u", t->depth + 1);
2285
2286 if (t->array_size)
2287 pandecode_log_cont("[%u]", t->array_size + 1);
2288
Alyssa Rosenzweig96f6b8a2019-08-20 15:24:18 -07002289 if (t->levels)
2290 pandecode_log_cont(" mip %u", t->levels);
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002291
Alyssa Rosenzweig96f6b8a2019-08-20 15:24:18 -07002292 pandecode_log_cont("\n");
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002293
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -07002294 if (f.unknown1 | f.zero) {
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002295 pandecode_msg("XXX: texture format zero tripped\n");
2296 pandecode_prop("unknown1 = %" PRId32, f.unknown1);
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -07002297 pandecode_prop("zero = %" PRId32, f.zero);
2298 }
2299
2300 if (!f.unknown2) {
2301 pandecode_msg("XXX: expected unknown texture bit set\n");
Tomeu Vizoso2d5c4332019-12-19 14:02:54 +01002302 pandecode_prop("unknown2 = %" PRId32, f.unknown2);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002303 }
2304
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002305 if (t->swizzle_zero) {
2306 pandecode_msg("XXX: swizzle zero tripped\n");
2307 pandecode_prop("swizzle_zero = %d", t->swizzle_zero);
2308 }
2309
2310 if (t->unknown3 | t->unknown3A | t->unknown5 | t->unknown6 | t->unknown7) {
2311 pandecode_msg("XXX: texture zero tripped\n");
2312 pandecode_prop("unknown3 = %" PRId16, t->unknown3);
2313 pandecode_prop("unknown3A = %" PRId8, t->unknown3A);
2314 pandecode_prop("unknown5 = 0x%" PRIx32, t->unknown5);
2315 pandecode_prop("unknown6 = 0x%" PRIx32, t->unknown6);
2316 pandecode_prop("unknown7 = 0x%" PRIx32, t->unknown7);
2317 }
2318
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04002319 pandecode_texture_payload(u + sizeof(*t), f.type, f.layout, f.manual_stride, t->levels, t->depth, t->array_size, tmem);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002320
2321 pandecode_indent--;
2322 pandecode_log("};\n");
2323}
2324
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002325static void
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04002326pandecode_bifrost_texture(
2327 const struct bifrost_texture_descriptor *t,
2328 unsigned job_no,
2329 unsigned tex)
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002330{
2331 pandecode_log("struct bifrost_texture_descriptor texture_descriptor_%d_%d = {\n", job_no, tex);
2332 pandecode_indent++;
2333
2334 pandecode_prop("format_unk = 0x%" PRIx32, t->format_unk);
2335 pandecode_prop("type = %" PRId32, t->type);
Alyssa Rosenzweigd45936c2020-05-26 19:48:29 -04002336
2337 if (t->zero) {
2338 pandecode_msg("XXX: zero tripped\n");
2339 pandecode_prop("zero = 0x%" PRIx32, t->zero);
2340 }
2341
2342 pandecode_prop("format_swizzle = 0x%" PRIx32, t->format_swizzle);
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002343 pandecode_prop("format = 0x%" PRIx32, t->format);
2344 pandecode_prop("srgb = 0x%" PRIx32, t->srgb);
2345 pandecode_prop("format_unk3 = 0x%" PRIx32, t->format_unk3);
2346 pandecode_prop("width = %" PRId32, t->width);
2347 pandecode_prop("height = %" PRId32, t->height);
2348 pandecode_prop("swizzle = 0x%" PRIx32, t->swizzle);
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002349 pandecode_prop("levels = %" PRId32, t->levels);
2350 pandecode_prop("unk1 = 0x%" PRIx32, t->unk1);
2351 pandecode_prop("levels_unk = %" PRId32, t->levels_unk);
2352 pandecode_prop("level_2 = %" PRId32, t->level_2);
2353 pandecode_prop("payload = 0x%" PRIx64, t->payload);
2354 pandecode_prop("array_size = %" PRId32, t->array_size);
2355 pandecode_prop("unk4 = 0x%" PRIx32, t->unk4);
2356 pandecode_prop("depth = %" PRId32, t->depth);
2357 pandecode_prop("unk5 = 0x%" PRIx32, t->unk5);
2358 pandecode_log("\n");
2359
2360 /* See the definiton of enum mali_texture_type */
2361
2362 bool is_cube = t->type == MALI_TEX_CUBE;
2363 unsigned dimension = is_cube ? 2 : t->type;
2364
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002365 /* Print the layout. Default is linear; a modifier can denote AFBC or
2366 * u-interleaved/tiled modes */
2367
Alyssa Rosenzweig36d49b12020-04-21 16:20:55 -04002368 if (t->layout == MALI_TEXTURE_AFBC)
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002369 pandecode_log_cont("afbc");
Alyssa Rosenzweig36d49b12020-04-21 16:20:55 -04002370 else if (t->layout == MALI_TEXTURE_TILED)
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002371 pandecode_log_cont("tiled");
Alyssa Rosenzweig36d49b12020-04-21 16:20:55 -04002372 else if (t->layout == MALI_TEXTURE_LINEAR)
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002373 pandecode_log_cont("linear");
2374 else
Alyssa Rosenzweig36d49b12020-04-21 16:20:55 -04002375 pandecode_msg("XXX: invalid texture layout 0x%X\n", t->layout);
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002376
2377 pandecode_swizzle(t->swizzle, t->format);
2378 pandecode_log_cont(" ");
2379
2380 /* Distinguish cube/2D with modifier */
2381
2382 if (is_cube)
2383 pandecode_log_cont("cube ");
2384
2385 pandecode_format_short(t->format, t->srgb);
2386
2387 /* All four width/height/depth/array_size dimensions are present
2388 * regardless of the type of texture, but it is an error to have
2389 * non-zero dimensions for unused dimensions. Verify this. array_size
2390 * can always be set, as can width. */
2391
2392 if (t->height && dimension < 2)
2393 pandecode_msg("XXX: nonzero height for <2D texture\n");
2394
2395 if (t->depth && dimension < 3)
2396 pandecode_msg("XXX: nonzero depth for <2D texture\n");
2397
2398 /* Print only the dimensions that are actually there */
2399
2400 pandecode_log_cont(": %d", t->width + 1);
2401
2402 if (dimension >= 2)
2403 pandecode_log_cont("x%u", t->height + 1);
2404
2405 if (dimension >= 3)
2406 pandecode_log_cont("x%u", t->depth + 1);
2407
2408 if (t->array_size)
2409 pandecode_log_cont("[%u]", t->array_size + 1);
2410
2411 if (t->levels)
2412 pandecode_log_cont(" mip %u", t->levels);
2413
2414 pandecode_log_cont("\n");
2415
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04002416 struct pandecode_mapped_memory *tmem = pandecode_find_mapped_gpu_mem_containing(t->payload);
Alyssa Rosenzweig6f7d9452020-04-30 16:49:31 -04002417 if (t->payload) {
2418 pandecode_texture_payload(t->payload, t->type, t->layout,
2419 true, t->levels, t->depth,
2420 t->array_size, tmem);
2421 }
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002422
2423 pandecode_indent--;
2424 pandecode_log("};\n");
2425}
2426
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002427/* For shader properties like texture_count, we have a claimed property in the shader_meta, and the actual Truth from static analysis (this may just be an upper limit). We validate accordingly */
2428
2429static void
2430pandecode_shader_prop(const char *name, unsigned claim, signed truth, bool fuzzy)
2431{
2432 /* Nothing to do */
2433 if (claim == truth)
2434 return;
2435
Alyssa Rosenzweig5815f332020-02-25 17:29:55 -05002436 if (fuzzy && (truth < 0))
2437 pandecode_msg("XXX: fuzzy %s, claimed %d, expected %d\n", name, claim, truth);
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002438
2439 if ((truth >= 0) && !fuzzy) {
Alyssa Rosenzweigf48136e2019-08-22 09:02:48 -07002440 pandecode_msg("%s: expected %s = %d, claimed %u\n",
2441 (truth < claim) ? "warn" : "XXX",
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002442 name, truth, claim);
2443 } else if ((claim > -truth) && !fuzzy) {
2444 pandecode_msg("XXX: expected %s <= %u, claimed %u\n",
2445 name, -truth, claim);
2446 } else if (fuzzy && (claim < truth))
2447 pandecode_msg("XXX: expected %s >= %u, claimed %u\n",
2448 name, truth, claim);
2449
2450 pandecode_log(".%s = %" PRId16, name, claim);
2451
2452 if (fuzzy)
2453 pandecode_log_cont(" /* %u used */", truth);
2454
2455 pandecode_log_cont(",\n");
2456}
2457
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002458static void
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002459pandecode_blend_shader_disassemble(mali_ptr shader, int job_no, int job_type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002460 bool is_bifrost, unsigned gpu_id)
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002461{
2462 struct midgard_disasm_stats stats =
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002463 pandecode_shader_disassemble(shader, job_no, job_type, is_bifrost, gpu_id);
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002464
2465 bool has_texture = (stats.texture_count > 0);
2466 bool has_sampler = (stats.sampler_count > 0);
2467 bool has_attribute = (stats.attribute_count > 0);
2468 bool has_varying = (stats.varying_count > 0);
2469 bool has_uniform = (stats.uniform_count > 0);
2470 bool has_ubo = (stats.uniform_buffer_count > 0);
2471
2472 if (has_texture || has_sampler)
2473 pandecode_msg("XXX: blend shader accessing textures\n");
2474
2475 if (has_attribute || has_varying)
2476 pandecode_msg("XXX: blend shader accessing interstage\n");
2477
2478 if (has_uniform || has_ubo)
2479 pandecode_msg("XXX: blend shader accessing uniforms\n");
2480}
2481
2482static void
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002483pandecode_textures(mali_ptr textures, unsigned texture_count, int job_no, bool is_bifrost)
2484{
2485 struct pandecode_mapped_memory *mmem = pandecode_find_mapped_gpu_mem_containing(textures);
2486
2487 if (!mmem)
2488 return;
2489
2490 if (is_bifrost) {
2491 const struct bifrost_texture_descriptor *PANDECODE_PTR_VAR(t, mmem, textures);
2492
2493 pandecode_log("uint64_t textures_%"PRIx64"_%d[] = {\n", textures, job_no);
2494 pandecode_indent++;
2495
2496 for (unsigned tex = 0; tex < texture_count; ++tex)
2497 pandecode_bifrost_texture(&t[tex], job_no, tex);
2498
2499 pandecode_indent--;
2500 pandecode_log("};\n");
2501 } else {
2502 mali_ptr *PANDECODE_PTR_VAR(u, mmem, textures);
2503
2504 pandecode_log("uint64_t textures_%"PRIx64"_%d[] = {\n", textures, job_no);
2505 pandecode_indent++;
2506
2507 for (int tex = 0; tex < texture_count; ++tex) {
2508 mali_ptr *PANDECODE_PTR_VAR(u, mmem, textures + tex * sizeof(mali_ptr));
2509 char *a = pointer_as_memory_reference(*u);
2510 pandecode_log("%s,\n", a);
2511 free(a);
2512 }
2513
2514 pandecode_indent--;
2515 pandecode_log("};\n");
2516
2517 /* Now, finally, descend down into the texture descriptor */
2518 for (unsigned tex = 0; tex < texture_count; ++tex) {
2519 mali_ptr *PANDECODE_PTR_VAR(u, mmem, textures + tex * sizeof(mali_ptr));
2520 struct pandecode_mapped_memory *tmem = pandecode_find_mapped_gpu_mem_containing(*u);
2521 if (tmem)
2522 pandecode_texture(*u, tmem, job_no, tex);
2523 }
2524 }
2525}
2526
2527static void
2528pandecode_samplers(mali_ptr samplers, unsigned sampler_count, int job_no, bool is_bifrost)
2529{
2530 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(samplers);
2531
2532 if (!smem)
2533 return;
2534
2535 if (is_bifrost) {
2536 struct bifrost_sampler_descriptor *s;
2537
2538 for (int i = 0; i < sampler_count; ++i) {
2539 s = pandecode_fetch_gpu_mem(smem, samplers + sizeof(*s) * i, sizeof(*s));
2540
2541 pandecode_log("struct bifrost_sampler_descriptor sampler_descriptor_%"PRIx64"_%d_%d = {\n", samplers + sizeof(*s) * i, job_no, i);
2542 pandecode_indent++;
2543
2544 if (s->unk1 != 1) {
2545 pandecode_msg("XXX: unk1 tripped\n");
2546 pandecode_prop("unk1 = 0x%x", s->unk1);
2547 }
2548
2549 pandecode_prop("wrap_s = %s", pandecode_wrap_mode(s->wrap_s));
2550 pandecode_prop("wrap_t = %s", pandecode_wrap_mode(s->wrap_t));
2551 pandecode_prop("wrap_r = %s", pandecode_wrap_mode(s->wrap_r));
2552
Tomeu Vizoso03963fe2020-04-27 16:09:57 +02002553 if (s->unk8 != 0x8) {
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002554 pandecode_msg("XXX: unk8 tripped\n");
2555 pandecode_prop("unk8 = 0x%x", s->unk8);
2556 }
2557
Alyssa Rosenzweigbbecbed2020-04-30 17:20:08 -04002558 pandecode_prop("unk2 = 0x%x", s->unk2);
2559 pandecode_prop("unk3 = 0x%x", s->unk3);
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002560 pandecode_prop("min_filter = %s", s->min_filter ? "nearest" : "linear");
2561 pandecode_prop("norm_coords = 0x%x", s->norm_coords & 0x1);
2562 pandecode_prop("zero1 = 0x%x", s->zero1 & 0x1);
2563 pandecode_prop("mip_filter = %s", s->mip_filter ? "linear" : "nearest");
2564 pandecode_prop("mag_filter = %s", s->mag_filter ? "linear" : "nearest");
2565
2566 pandecode_prop("min_lod = FIXED_16(%f)", DECODE_FIXED_16(s->min_lod));
2567 pandecode_prop("max_lod = FIXED_16(%f)", DECODE_FIXED_16(s->max_lod));
2568
Alyssa Rosenzweig6148d1b2020-04-30 17:01:33 -04002569 if (s->zero1 || s->zero2 || s->zero3 || s->zero4) {
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002570 pandecode_msg("XXX: sampler zero tripped\n");
Vinson Lee13735c42020-05-28 16:36:54 -07002571 pandecode_prop("zero = 0x%" PRIx8 ", 0x%" PRIx64 ", 0x%" PRIx64 ", 0x%" PRIx64 "\n", s->zero1, s->zero2, s->zero3, s->zero4);
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002572 }
2573
2574 pandecode_indent--;
2575 pandecode_log("};\n");
2576 }
2577 } else {
2578 struct mali_sampler_descriptor *s;
2579
2580 for (int i = 0; i < sampler_count; ++i) {
2581 s = pandecode_fetch_gpu_mem(smem, samplers + sizeof(*s) * i, sizeof(*s));
2582
2583 pandecode_log("struct mali_sampler_descriptor sampler_descriptor_%"PRIx64"_%d_%d = {\n", samplers + sizeof(*s) * i, job_no, i);
2584 pandecode_indent++;
2585
2586 pandecode_log(".filter_mode = ");
2587 pandecode_log_decoded_flags(sampler_flag_info, s->filter_mode);
2588 pandecode_log_cont(",\n");
2589
2590 pandecode_prop("min_lod = FIXED_16(%f)", DECODE_FIXED_16(s->min_lod));
2591 pandecode_prop("max_lod = FIXED_16(%f)", DECODE_FIXED_16(s->max_lod));
2592
2593 if (s->lod_bias)
2594 pandecode_prop("lod_bias = FIXED_16(%f)", DECODE_FIXED_16(s->lod_bias));
2595
2596 pandecode_prop("wrap_s = %s", pandecode_wrap_mode(s->wrap_s));
2597 pandecode_prop("wrap_t = %s", pandecode_wrap_mode(s->wrap_t));
2598 pandecode_prop("wrap_r = %s", pandecode_wrap_mode(s->wrap_r));
2599
2600 pandecode_prop("compare_func = %s", pandecode_func(s->compare_func));
2601
2602 if (s->zero || s->zero2) {
2603 pandecode_msg("XXX: sampler zero tripped\n");
2604 pandecode_prop("zero = 0x%X, 0x%X\n", s->zero, s->zero2);
2605 }
2606
2607 pandecode_prop("seamless_cube_map = %d", s->seamless_cube_map);
2608
2609 pandecode_prop("border_color = { %f, %f, %f, %f }",
2610 s->border_color[0],
2611 s->border_color[1],
2612 s->border_color[2],
2613 s->border_color[3]);
2614
2615 pandecode_indent--;
2616 pandecode_log("};\n");
2617 }
2618 }
2619}
2620
2621static void
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002622pandecode_vertex_tiler_postfix_pre(
2623 const struct mali_vertex_tiler_postfix *p,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002624 int job_no, enum mali_job_type job_type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002625 char *suffix, bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002626{
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002627 struct pandecode_mapped_memory *attr_mem;
2628
2629 /* On Bifrost, since the tiler heap (for tiler jobs) and the scratchpad
2630 * are the only things actually needed from the FBD, vertex/tiler jobs
2631 * no longer reference the FBD -- instead, this field points to some
2632 * info about the scratchpad.
2633 */
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002634
2635 struct pandecode_fbd fbd_info = {
2636 /* Default for Bifrost */
2637 .rt_count = 1
2638 };
2639
Alyssa Rosenzweig6dc10552020-02-10 08:47:09 -05002640 if (is_bifrost) {
2641 pandecode_log_cont("\t/* %X %/\n", p->shared_memory & 1);
2642 pandecode_compute_fbd(p->shared_memory & ~1, job_no);
2643 } else if (p->shared_memory & MALI_MFBD)
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002644 fbd_info = pandecode_mfbd_bfr((u64) ((uintptr_t) p->shared_memory) & FBD_MASK, job_no, false, job_type == MALI_JOB_TYPE_COMPUTE, false);
2645 else if (job_type == MALI_JOB_TYPE_COMPUTE)
Alyssa Rosenzweig6dc10552020-02-10 08:47:09 -05002646 pandecode_compute_fbd((u64) (uintptr_t) p->shared_memory, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002647 else
Alyssa Rosenzweig6dc10552020-02-10 08:47:09 -05002648 fbd_info = pandecode_sfbd((u64) (uintptr_t) p->shared_memory, job_no, false, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002649
2650 int varying_count = 0, attribute_count = 0, uniform_count = 0, uniform_buffer_count = 0;
2651 int texture_count = 0, sampler_count = 0;
2652
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002653 if (p->shader) {
2654 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(p->shader);
2655 struct mali_shader_meta *PANDECODE_PTR_VAR(s, smem, p->shader);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002656
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002657 /* Disassemble ahead-of-time to get stats. Initialize with
2658 * stats for the missing-shader case so we get validation
2659 * there, too */
2660
2661 struct midgard_disasm_stats info = {
2662 .texture_count = 0,
2663 .sampler_count = 0,
2664 .attribute_count = 0,
2665 .varying_count = 0,
2666 .work_count = 1,
2667
2668 .uniform_count = -128,
2669 .uniform_buffer_count = 0
2670 };
Alyssa Rosenzweig9b067d92019-08-21 14:28:36 -07002671
2672 if (s->shader & ~0xF)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002673 info = pandecode_shader_disassemble(s->shader & ~0xF, job_no, job_type, is_bifrost, gpu_id);
Alyssa Rosenzweig9b067d92019-08-21 14:28:36 -07002674
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002675 pandecode_log("struct mali_shader_meta shader_meta_%"PRIx64"_%d%s = {\n", p->shader, job_no, suffix);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002676 pandecode_indent++;
2677
2678 /* Save for dumps */
2679 attribute_count = s->attribute_count;
2680 varying_count = s->varying_count;
2681 texture_count = s->texture_count;
2682 sampler_count = s->sampler_count;
2683
2684 if (is_bifrost) {
2685 uniform_count = s->bifrost2.uniform_count;
2686 uniform_buffer_count = s->bifrost1.uniform_buffer_count;
2687 } else {
Alyssa Rosenzweigd7473e22019-08-21 14:15:05 -07002688 uniform_count = s->midgard1.uniform_count;
Alyssa Rosenzweigbd2fc602019-06-20 16:41:39 -07002689 uniform_buffer_count = s->midgard1.uniform_buffer_count;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002690 }
2691
Alyssa Rosenzweig9b067d92019-08-21 14:28:36 -07002692 pandecode_shader_address("shader", s->shader);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002693
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002694 pandecode_shader_prop("texture_count", s->texture_count, info.texture_count, false);
2695 pandecode_shader_prop("sampler_count", s->sampler_count, info.sampler_count, false);
2696 pandecode_shader_prop("attribute_count", s->attribute_count, info.attribute_count, false);
2697 pandecode_shader_prop("varying_count", s->varying_count, info.varying_count, false);
2698 pandecode_shader_prop("uniform_buffer_count",
2699 uniform_buffer_count,
2700 info.uniform_buffer_count, true);
2701
2702 if (!is_bifrost) {
2703 pandecode_shader_prop("uniform_count",
2704 uniform_count,
2705 info.uniform_count, false);
2706
2707 pandecode_shader_prop("work_count",
2708 s->midgard1.work_count, info.work_count, false);
2709 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002710
2711 if (is_bifrost) {
Alyssa Rosenzweig2fd3ad92020-05-27 16:38:47 -04002712 pandecode_log("bifrost1.unk1 = ");
2713 pandecode_log_decoded_flags(shader_bifrost_info, s->bifrost1.unk1);
2714 pandecode_log_cont(",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002715 } else {
Boris Brezillon8ed94d32020-01-31 12:37:38 +01002716 bool helpers = s->midgard1.flags_lo & MALI_HELPER_INVOCATIONS;
Alyssa Rosenzweig21a85fd2019-08-22 16:36:10 -07002717
2718 if (helpers != info.helper_invocations) {
2719 pandecode_msg("XXX: expected helpers %u but got %u\n",
2720 info.helper_invocations, helpers);
2721 }
2722
Boris Brezillon8ed94d32020-01-31 12:37:38 +01002723 pandecode_log(".midgard1.flags_lo = ");
Icecream95e219f042020-06-20 17:54:19 +12002724 pandecode_log_decoded_flags(shader_midgard1_flag_lo_info,
2725 s->midgard1.flags_lo & ~MALI_HELPER_INVOCATIONS);
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +00002726 pandecode_log_cont(",\n");
2727
Boris Brezillon8ed94d32020-01-31 12:37:38 +01002728 pandecode_log(".midgard1.flags_hi = ");
2729 pandecode_log_decoded_flags(shader_midgard1_flag_hi_info, s->midgard1.flags_hi);
2730 pandecode_log_cont(",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002731 }
2732
2733 if (s->depth_units || s->depth_factor) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002734 pandecode_prop("depth_factor = %f", s->depth_factor);
Alyssa Rosenzweig7a36c722019-07-11 07:01:56 -07002735 pandecode_prop("depth_units = %f", s->depth_units);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002736 }
2737
Alyssa Rosenzweig3e251322020-07-02 10:06:33 -04002738 if (s->coverage_mask)
2739 pandecode_prop("coverage_mask = 0x%X", s->coverage_mask);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002740
Alyssa Rosenzweig247f2fb2020-05-22 14:56:49 -04002741 if (s->unknown2_2)
2742 pandecode_prop(".unknown2_2 = %X", s->unknown2_2);
2743
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002744 if (s->unknown2_3 || s->unknown2_4) {
2745 pandecode_log(".unknown2_3 = ");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002746
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002747 int unknown2_3 = s->unknown2_3;
2748 int unknown2_4 = s->unknown2_4;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002749
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002750 /* We're not quite sure what these flags mean without the depth test, if anything */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002751
Boris Brezillon28440822019-11-04 11:57:22 +01002752 if (unknown2_3 & (MALI_DEPTH_WRITEMASK | MALI_DEPTH_FUNC_MASK)) {
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -07002753 const char *func = pandecode_func(MALI_GET_DEPTH_FUNC(unknown2_3));
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002754 unknown2_3 &= ~MALI_DEPTH_FUNC_MASK;
2755
2756 pandecode_log_cont("MALI_DEPTH_FUNC(%s) | ", func);
2757 }
2758
2759 pandecode_log_decoded_flags(u3_flag_info, unknown2_3);
2760 pandecode_log_cont(",\n");
2761
2762 pandecode_log(".unknown2_4 = ");
2763 pandecode_log_decoded_flags(u4_flag_info, unknown2_4);
2764 pandecode_log_cont(",\n");
2765 }
2766
2767 if (s->stencil_mask_front || s->stencil_mask_back) {
2768 pandecode_prop("stencil_mask_front = 0x%02X", s->stencil_mask_front);
2769 pandecode_prop("stencil_mask_back = 0x%02X", s->stencil_mask_back);
2770 }
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002771
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002772 pandecode_stencil("front", &s->stencil_front);
2773 pandecode_stencil("back", &s->stencil_back);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002774
2775 if (is_bifrost) {
2776 pandecode_log(".bifrost2 = {\n");
2777 pandecode_indent++;
2778
2779 pandecode_prop("unk3 = 0x%" PRIx32, s->bifrost2.unk3);
2780 pandecode_prop("preload_regs = 0x%" PRIx32, s->bifrost2.preload_regs);
2781 pandecode_prop("uniform_count = %" PRId32, s->bifrost2.uniform_count);
2782 pandecode_prop("unk4 = 0x%" PRIx32, s->bifrost2.unk4);
2783
2784 pandecode_indent--;
2785 pandecode_log("},\n");
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002786 } else if (s->midgard2.unknown2_7) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002787 pandecode_log(".midgard2 = {\n");
2788 pandecode_indent++;
2789
2790 pandecode_prop("unknown2_7 = 0x%" PRIx32, s->midgard2.unknown2_7);
2791 pandecode_indent--;
2792 pandecode_log("},\n");
2793 }
2794
Alyssa Rosenzweig50138ab2020-02-10 08:56:33 -05002795 if (s->padding) {
2796 pandecode_msg("XXX: shader padding tripped\n");
2797 pandecode_prop("padding = 0x%" PRIx32, s->padding);
2798 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002799
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002800 if (!is_bifrost) {
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002801 /* TODO: Blend shaders routing/disasm */
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -07002802 union midgard_blend blend = s->blend;
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002803 mali_ptr shader = pandecode_midgard_blend(&blend, s->unknown2_3 & MALI_HAS_BLEND_SHADER);
2804 if (shader & ~0xF)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002805 pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id);
Alyssa Rosenzweig6a19d492020-05-22 14:53:27 -04002806 } else {
2807 pandecode_msg("mdg_blend = %" PRIx64 "\n", s->blend.shader);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002808 }
2809
2810 pandecode_indent--;
2811 pandecode_log("};\n");
2812
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002813 /* MRT blend fields are used whenever MFBD is used, with
2814 * per-RT descriptors */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002815
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002816 if (job_type == MALI_JOB_TYPE_TILER && (is_bifrost || p->shared_memory & MALI_MFBD)) {
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002817 void* blend_base = (void *) (s + 1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002818
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002819 for (unsigned i = 0; i < fbd_info.rt_count; i++) {
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002820 mali_ptr shader = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002821
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002822 if (is_bifrost)
2823 shader = pandecode_bifrost_blend(blend_base, job_no, i);
2824 else
2825 shader = pandecode_midgard_blend_mrt(blend_base, job_no, i);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002826
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002827 if (shader & ~0xF)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002828 pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id);
Alyssa Rosenzweig139708b2019-08-21 14:04:05 -07002829
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002830 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002831 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002832 } else
Alyssa Rosenzweig5f9a1c72019-08-21 14:16:32 -07002833 pandecode_msg("XXX: missing shader descriptor\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002834
2835 if (p->viewport) {
2836 struct pandecode_mapped_memory *fmem = pandecode_find_mapped_gpu_mem_containing(p->viewport);
2837 struct mali_viewport *PANDECODE_PTR_VAR(f, fmem, p->viewport);
2838
Tomeu Vizoso75b53a12019-07-12 16:42:52 +02002839 pandecode_log("struct mali_viewport viewport_%"PRIx64"_%d%s = {\n", p->viewport, job_no, suffix);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002840 pandecode_indent++;
2841
2842 pandecode_prop("clip_minx = %f", f->clip_minx);
2843 pandecode_prop("clip_miny = %f", f->clip_miny);
2844 pandecode_prop("clip_minz = %f", f->clip_minz);
2845 pandecode_prop("clip_maxx = %f", f->clip_maxx);
2846 pandecode_prop("clip_maxy = %f", f->clip_maxy);
2847 pandecode_prop("clip_maxz = %f", f->clip_maxz);
2848
2849 /* Only the higher coordinates are MALI_POSITIVE scaled */
2850
2851 pandecode_prop("viewport0 = { %d, %d }",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002852 f->viewport0[0], f->viewport0[1]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002853
2854 pandecode_prop("viewport1 = { MALI_POSITIVE(%d), MALI_POSITIVE(%d) }",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002855 f->viewport1[0] + 1, f->viewport1[1] + 1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002856
2857 pandecode_indent--;
2858 pandecode_log("};\n");
2859 }
2860
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07002861 unsigned max_attr_index = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002862
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07002863 if (p->attribute_meta)
2864 max_attr_index = pandecode_attribute_meta(job_no, attribute_count, p, false, suffix);
2865
2866 if (p->attributes) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002867 attr_mem = pandecode_find_mapped_gpu_mem_containing(p->attributes);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07002868 pandecode_attributes(attr_mem, p->attributes, job_no, suffix, max_attr_index, false, job_type);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002869 }
2870
2871 /* Varyings are encoded like attributes but not actually sent; we just
2872 * pass a zero buffer with the right stride/size set, (or whatever)
2873 * since the GPU will write to it itself */
2874
Alyssa Rosenzweig9e66ff32019-07-31 11:52:52 -07002875 if (p->varying_meta) {
2876 varying_count = pandecode_attribute_meta(job_no, varying_count, p, true, suffix);
2877 }
2878
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002879 if (p->varyings) {
2880 attr_mem = pandecode_find_mapped_gpu_mem_containing(p->varyings);
2881
2882 /* Number of descriptors depends on whether there are
2883 * non-internal varyings */
2884
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07002885 pandecode_attributes(attr_mem, p->varyings, job_no, suffix, varying_count, true, job_type);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002886 }
2887
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002888 if (p->uniform_buffers) {
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002889 if (uniform_buffer_count)
2890 pandecode_uniform_buffers(p->uniform_buffers, uniform_buffer_count, job_no);
2891 else
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002892 pandecode_msg("warn: UBOs specified but not referenced\n");
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002893 } else if (uniform_buffer_count)
2894 pandecode_msg("XXX: UBOs referenced but not specified\n");
2895
2896 /* We don't want to actually dump uniforms, but we do need to validate
2897 * that the counts we were given are sane */
2898
2899 if (p->uniforms) {
2900 if (uniform_count)
Alyssa Rosenzweigae84f162019-08-22 11:30:13 -07002901 pandecode_uniforms(p->uniforms, uniform_count);
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002902 else
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002903 pandecode_msg("warn: Uniforms specified but not referenced\n");
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002904 } else if (uniform_count)
Alyssa Rosenzweigd7473e22019-08-21 14:15:05 -07002905 pandecode_msg("XXX: Uniforms referenced but not specified\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002906
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002907 if (p->textures)
2908 pandecode_textures(p->textures, texture_count, job_no, is_bifrost);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002909
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04002910 if (p->sampler_descriptor)
2911 pandecode_samplers(p->sampler_descriptor, sampler_count, job_no, is_bifrost);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002912}
2913
2914static void
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -04002915pandecode_gl_enables(uint32_t gl_enables, int job_type)
2916{
2917 pandecode_log(".gl_enables = ");
2918
2919 pandecode_log_decoded_flags(gl_enable_flag_info, gl_enables);
2920
2921 pandecode_log_cont(",\n");
2922}
2923
2924static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002925pandecode_vertex_tiler_postfix(const struct mali_vertex_tiler_postfix *p, int job_no, bool is_bifrost)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002926{
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002927 if (p->shader & 0xF)
Alyssa Rosenzweigddbbb2d2019-12-13 10:22:06 -05002928 pandecode_msg("warn: shader tagged %X\n", (unsigned) (p->shader & 0xF));
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002929
Alyssa Rosenzweig740f86c2019-08-16 13:28:06 -07002930 pandecode_log(".postfix = {\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002931 pandecode_indent++;
2932
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002933 pandecode_gl_enables(p->gl_enables, MALI_JOB_TYPE_TILER);
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -04002934 pandecode_prop("instance_shift = 0x%x", p->instance_shift);
2935 pandecode_prop("instance_odd = 0x%x", p->instance_odd);
2936
2937 if (p->zero4) {
2938 pandecode_msg("XXX: vertex only zero tripped");
2939 pandecode_prop("zero4 = 0x%" PRIx32, p->zero4);
2940 }
2941
2942 pandecode_prop("offset_start = 0x%x", p->offset_start);
2943
2944 if (p->zero5) {
2945 pandecode_msg("XXX: vertex only zero tripped");
Tomeu Vizoso0edc2902020-04-27 16:10:16 +02002946 pandecode_prop("zero5 = 0x%" PRIx64, p->zero5);
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -04002947 }
2948
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002949 MEMORY_PROP(p, position_varying);
Alyssa Rosenzweig740f86c2019-08-16 13:28:06 -07002950 MEMORY_PROP(p, occlusion_counter);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002951
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002952 pandecode_indent--;
2953 pandecode_log("},\n");
2954}
2955
2956static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002957pandecode_tiler_heap_meta(mali_ptr gpu_va, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002958{
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002959 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
2960 const struct bifrost_tiler_heap_meta *PANDECODE_PTR_VAR(h, mem, gpu_va);
2961
Tomeu Vizoso46e42462020-04-08 15:58:42 +02002962 pandecode_log("struct bifrost_tiler_heap_meta tiler_heap_meta_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002963 pandecode_indent++;
2964
2965 if (h->zero) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002966 pandecode_msg("XXX: tiler heap zero tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002967 pandecode_prop("zero = 0x%x", h->zero);
2968 }
2969
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002970 pandecode_prop("heap_size = 0x%x", h->heap_size);
2971 MEMORY_PROP(h, tiler_heap_start);
2972 MEMORY_PROP(h, tiler_heap_free);
2973
2974 /* this might point to the beginning of another buffer, when it's
2975 * really the end of the tiler heap buffer, so we have to be careful
Alyssa Rosenzweig17752ba2019-07-18 12:28:56 -07002976 * here. but for zero length, we need the same pointer.
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002977 */
Alyssa Rosenzweig17752ba2019-07-18 12:28:56 -07002978
2979 if (h->tiler_heap_end == h->tiler_heap_start) {
2980 MEMORY_PROP(h, tiler_heap_start);
2981 } else {
2982 char *a = pointer_as_memory_reference(h->tiler_heap_end - 1);
2983 pandecode_prop("tiler_heap_end = %s + 1", a);
2984 free(a);
2985 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002986
Tomeu Vizoso0a0b6702020-04-09 09:39:17 +02002987 for (int i = 0; i < 10; i++) {
2988 if (h->zeros[i] != 0) {
2989 pandecode_msg("XXX: tiler heap zero %d tripped, value %x\n",
2990 i, h->zeros[i]);
2991 }
2992 }
2993
2994 if (h->unk1 != 0x1) {
2995 pandecode_msg("XXX: tiler heap unk1 tripped\n");
2996 pandecode_prop("unk1 = 0x%x", h->unk1);
2997 }
2998
2999 if (h->unk7e007e != 0x7e007e) {
3000 pandecode_msg("XXX: tiler heap unk7e007e tripped\n");
3001 pandecode_prop("unk7e007e = 0x%x", h->unk7e007e);
3002 }
3003
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003004 pandecode_indent--;
3005 pandecode_log("};\n");
3006}
3007
3008static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003009pandecode_tiler_meta(mali_ptr gpu_va, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003010{
3011 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
3012 const struct bifrost_tiler_meta *PANDECODE_PTR_VAR(t, mem, gpu_va);
3013
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003014 pandecode_tiler_heap_meta(t->tiler_heap_meta, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003015
Tomeu Vizoso46e42462020-04-08 15:58:42 +02003016 pandecode_log("struct bifrost_tiler_meta tiler_meta_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003017 pandecode_indent++;
3018
Tomeu Vizoso7104e282020-04-27 17:09:39 +02003019 pandecode_prop("tiler_heap_next_start = 0x%" PRIx32, t->tiler_heap_next_start);
3020 pandecode_prop("used_hierarchy_mask = 0x%" PRIx32, t->used_hierarchy_mask);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003021
Tomeu Vizoso0a0b6702020-04-09 09:39:17 +02003022 if (t->hierarchy_mask != 0xa &&
3023 t->hierarchy_mask != 0x14 &&
3024 t->hierarchy_mask != 0x28 &&
3025 t->hierarchy_mask != 0x50 &&
3026 t->hierarchy_mask != 0xa0)
3027 pandecode_prop("XXX: Unexpected hierarchy_mask (not 0xa, 0x14, 0x28, 0x50 or 0xa0)!");
3028
Alyssa Rosenzweig7f26bb32019-06-13 10:25:32 -07003029 pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask);
Tomeu Vizoso0a0b6702020-04-09 09:39:17 +02003030
Alyssa Rosenzweig7f26bb32019-06-13 10:25:32 -07003031 pandecode_prop("flags = 0x%" PRIx16, t->flags);
3032
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003033 pandecode_prop("width = MALI_POSITIVE(%d)", t->width + 1);
3034 pandecode_prop("height = MALI_POSITIVE(%d)", t->height + 1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003035
Tomeu Vizoso7104e282020-04-27 17:09:39 +02003036 if (t->zero0) {
3037 pandecode_msg("XXX: tiler meta zero tripped\n");
3038 pandecode_prop("zero0 = 0x%" PRIx64, t->zero0);
3039 }
3040
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003041 for (int i = 0; i < 12; i++) {
3042 if (t->zeros[i] != 0) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07003043 pandecode_msg("XXX: tiler heap zero %d tripped, value %" PRIx64 "\n",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07003044 i, t->zeros[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003045 }
3046 }
3047
3048 pandecode_indent--;
3049 pandecode_log("};\n");
3050}
3051
3052static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003053pandecode_primitive_size(union midgard_primitive_size u, bool constant)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003054{
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -07003055 if (u.pointer == 0x0)
3056 return;
3057
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003058 pandecode_log(".primitive_size = {\n");
3059 pandecode_indent++;
3060
Alyssa Rosenzweigb517e362019-03-15 03:21:27 +00003061 if (constant) {
3062 pandecode_prop("constant = %f", u.constant);
3063 } else {
3064 MEMORY_PROP((&u), pointer);
3065 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003066
3067 pandecode_indent--;
3068 pandecode_log("},\n");
3069}
3070
3071static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003072pandecode_tiler_only_bfr(const struct bifrost_tiler_only *t, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003073{
3074 pandecode_log_cont("{\n");
3075 pandecode_indent++;
3076
3077 /* TODO: gl_PointSize on Bifrost */
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003078 pandecode_primitive_size(t->primitive_size, true);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003079
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003080 if (t->zero1 || t->zero2 || t->zero3 || t->zero4 || t->zero5
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -04003081 || t->zero6) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07003082 pandecode_msg("XXX: tiler only zero tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003083 pandecode_prop("zero1 = 0x%" PRIx64, t->zero1);
3084 pandecode_prop("zero2 = 0x%" PRIx64, t->zero2);
3085 pandecode_prop("zero3 = 0x%" PRIx64, t->zero3);
3086 pandecode_prop("zero4 = 0x%" PRIx64, t->zero4);
3087 pandecode_prop("zero5 = 0x%" PRIx64, t->zero5);
3088 pandecode_prop("zero6 = 0x%" PRIx64, t->zero6);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003089 }
3090
3091 pandecode_indent--;
3092 pandecode_log("},\n");
3093}
3094
3095static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003096pandecode_vertex_job_bfr(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07003097 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003098 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003099{
3100 struct bifrost_payload_vertex *PANDECODE_PTR_VAR(v, mem, payload);
3101
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003102 pandecode_vertex_tiler_postfix_pre(&v->postfix, job_no, h->job_type, "", true, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003103
Tomeu Vizoso7b10d4e2020-04-08 10:55:28 +02003104 pandecode_log("struct bifrost_payload_vertex payload_%"PRIx64"_%d = {\n", payload, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003105 pandecode_indent++;
3106
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07003107 pandecode_vertex_tiler_prefix(&v->prefix, job_no, false);
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003108 pandecode_vertex_tiler_postfix(&v->postfix, job_no, true);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003109
3110 pandecode_indent--;
3111 pandecode_log("};\n");
3112
3113 return sizeof(*v);
3114}
3115
3116static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003117pandecode_tiler_job_bfr(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07003118 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003119 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003120{
3121 struct bifrost_payload_tiler *PANDECODE_PTR_VAR(t, mem, payload);
3122
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003123 pandecode_vertex_tiler_postfix_pre(&t->postfix, job_no, h->job_type, "", true, gpu_id);
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003124 pandecode_tiler_meta(t->tiler.tiler_meta, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003125
Tomeu Vizoso46e42462020-04-08 15:58:42 +02003126 pandecode_log("struct bifrost_payload_tiler payload_%"PRIx64"_%d = {\n", payload, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003127 pandecode_indent++;
3128
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07003129 pandecode_vertex_tiler_prefix(&t->prefix, job_no, false);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003130
3131 pandecode_log(".tiler = ");
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003132 pandecode_tiler_only_bfr(&t->tiler, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003133
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003134 pandecode_vertex_tiler_postfix(&t->postfix, job_no, true);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003135
3136 pandecode_indent--;
3137 pandecode_log("};\n");
3138
3139 return sizeof(*t);
3140}
3141
3142static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003143pandecode_vertex_or_tiler_job_mdg(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07003144 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003145 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003146{
3147 struct midgard_payload_vertex_tiler *PANDECODE_PTR_VAR(v, mem, payload);
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04003148 bool is_graphics = (h->job_type == MALI_JOB_TYPE_VERTEX) || (h->job_type == MALI_JOB_TYPE_TILER);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003149
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003150 pandecode_vertex_tiler_postfix_pre(&v->postfix, job_no, h->job_type, "", false, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003151
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003152 pandecode_log("struct midgard_payload_vertex_tiler payload_%d = {\n", job_no);
3153 pandecode_indent++;
3154
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -04003155 pandecode_vertex_tiler_prefix(&v->prefix, job_no, is_graphics);
3156 pandecode_vertex_tiler_postfix(&v->postfix, job_no, false);
3157
Alyssa Rosenzweigb517e362019-03-15 03:21:27 +00003158 bool has_primitive_pointer = v->prefix.unknown_draw & MALI_DRAW_VARYING_SIZE;
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003159 pandecode_primitive_size(v->primitive_size, !has_primitive_pointer);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003160
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003161 pandecode_indent--;
3162 pandecode_log("};\n");
3163
3164 return sizeof(*v);
3165}
3166
3167static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07003168pandecode_fragment_job(const struct pandecode_mapped_memory *mem,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07003169 mali_ptr payload, int job_no,
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01003170 bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003171{
3172 const struct mali_payload_fragment *PANDECODE_PTR_VAR(s, mem, payload);
3173
Alyssa Rosenzweig89593642019-12-16 12:05:45 -05003174 bool is_mfbd = s->framebuffer & MALI_MFBD;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003175
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003176 if (!is_mfbd && is_bifrost)
3177 pandecode_msg("XXX: Bifrost fragment must use MFBD\n");
3178
3179 struct pandecode_fbd info;
3180
3181 if (is_mfbd)
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05003182 info = pandecode_mfbd_bfr(s->framebuffer & FBD_MASK, job_no, true, false, is_bifrost);
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003183 else
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01003184 info = pandecode_sfbd(s->framebuffer & FBD_MASK, job_no, true, gpu_id);
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003185
3186 /* Compute the tag for the tagged pointer. This contains the type of
3187 * FBD (MFBD/SFBD), and in the case of an MFBD, information about which
3188 * additional structures follow the MFBD header (an extra payload or
3189 * not, as well as a count of render targets) */
3190
Alyssa Rosenzweig89593642019-12-16 12:05:45 -05003191 unsigned expected_tag = is_mfbd ? MALI_MFBD : 0;
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003192
3193 if (is_mfbd) {
3194 if (info.has_extra)
3195 expected_tag |= MALI_MFBD_TAG_EXTRA;
3196
3197 expected_tag |= (MALI_POSITIVE(info.rt_count) << 2);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003198 }
3199
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003200 if ((s->min_tile_coord | s->max_tile_coord) & ~(MALI_X_COORD_MASK | MALI_Y_COORD_MASK)) {
3201 pandecode_msg("XXX: unexpected tile coordinate bits\n");
3202 pandecode_prop("min_tile_coord = 0x%X\n", s->min_tile_coord);
Alyssa Rosenzweig52d6b4d2020-05-11 18:54:05 -04003203 pandecode_prop("max_tile_coord = 0x%X\n", s->max_tile_coord);
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003204 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003205
Alyssa Rosenzweigded9a682019-08-21 12:29:47 -07003206 /* Extract tile coordinates */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003207
Alyssa Rosenzweigded9a682019-08-21 12:29:47 -07003208 unsigned min_x = MALI_TILE_COORD_X(s->min_tile_coord) << MALI_TILE_SHIFT;
3209 unsigned min_y = MALI_TILE_COORD_Y(s->min_tile_coord) << MALI_TILE_SHIFT;
3210
3211 unsigned max_x = (MALI_TILE_COORD_X(s->max_tile_coord) + 1) << MALI_TILE_SHIFT;
3212 unsigned max_y = (MALI_TILE_COORD_Y(s->max_tile_coord) + 1) << MALI_TILE_SHIFT;
3213
3214 /* For the max, we also want the floored (rather than ceiled) version for checking */
3215
3216 unsigned max_x_f = (MALI_TILE_COORD_X(s->max_tile_coord)) << MALI_TILE_SHIFT;
3217 unsigned max_y_f = (MALI_TILE_COORD_Y(s->max_tile_coord)) << MALI_TILE_SHIFT;
3218
3219 /* Validate the coordinates are well-ordered */
3220
3221 if (min_x == max_x)
3222 pandecode_msg("XXX: empty X coordinates (%u = %u)\n", min_x, max_x);
3223 else if (min_x > max_x)
3224 pandecode_msg("XXX: misordered X coordinates (%u > %u)\n", min_x, max_x);
3225
3226 if (min_y == max_y)
3227 pandecode_msg("XXX: empty X coordinates (%u = %u)\n", min_x, max_x);
3228 else if (min_y > max_y)
3229 pandecode_msg("XXX: misordered X coordinates (%u > %u)\n", min_x, max_x);
3230
3231 /* Validate the coordinates fit inside the framebuffer. We use floor,
3232 * rather than ceil, for the max coordinates, since the tile
3233 * coordinates for something like an 800x600 framebuffer will actually
3234 * resolve to 800x608, which would otherwise trigger a Y-overflow */
3235
3236 if ((min_x > info.width) || (max_x_f > info.width))
3237 pandecode_msg("XXX: tile coordinates overflow in X direction\n");
3238
3239 if ((min_y > info.height) || (max_y_f > info.height))
3240 pandecode_msg("XXX: tile coordinates overflow in Y direction\n");
3241
3242 /* After validation, we print */
3243
3244 pandecode_log("fragment (%u, %u) ... (%u, %u)\n\n", min_x, min_y, max_x, max_y);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003245
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003246 /* The FBD is a tagged pointer */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003247
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003248 unsigned tag = (s->framebuffer & ~FBD_MASK);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003249
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07003250 if (tag != expected_tag)
3251 pandecode_msg("XXX: expected FBD tag %X but got %X\n", expected_tag, tag);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003252
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003253 return sizeof(*s);
3254}
3255
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05003256/* Entrypoint to start tracing. jc_gpu_va is the GPU address for the first job
3257 * in the chain; later jobs are found by walking the chain. Bifrost is, well,
3258 * if it's bifrost or not. GPU ID is the more finegrained ID (at some point, we
3259 * might wish to combine this with the bifrost parameter) because some details
3260 * are model-specific even within a particular architecture. Minimal traces
3261 * *only* examine the job descriptors, skipping printing entirely if there is
3262 * no faults, and only descends into the payload if there are faults. This is
3263 * useful for looking for faults without the overhead of invasive traces. */
3264
Alyssa Rosenzweig59986462020-02-18 07:46:03 -05003265void
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05003266pandecode_jc(mali_ptr jc_gpu_va, bool bifrost, unsigned gpu_id, bool minimal)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003267{
Icecream9501d60d32020-07-16 16:12:13 +12003268 pandecode_dump_file_open();
3269
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003270 struct mali_job_descriptor_header *h;
Alyssa Rosenzweig59986462020-02-18 07:46:03 -05003271 unsigned job_descriptor_number = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003272
3273 do {
3274 struct pandecode_mapped_memory *mem =
3275 pandecode_find_mapped_gpu_mem_containing(jc_gpu_va);
3276
3277 void *payload;
3278
3279 h = PANDECODE_PTR(mem, jc_gpu_va, struct mali_job_descriptor_header);
3280
3281 /* On Midgard, for 32-bit jobs except for fragment jobs, the
3282 * high 32-bits of the 64-bit pointer are reused to store
3283 * something else.
3284 */
3285 int offset = h->job_descriptor_size == MALI_JOB_32 &&
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04003286 h->job_type != MALI_JOB_TYPE_FRAGMENT ? 4 : 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003287 mali_ptr payload_ptr = jc_gpu_va + sizeof(*h) - offset;
3288
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04003289 payload = pandecode_fetch_gpu_mem(mem, payload_ptr, 256);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003290
3291 int job_no = job_descriptor_number++;
3292
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05003293 /* If the job is good to go, skip it in minimal mode */
3294 if (minimal && (h->exception_status == 0x0 || h->exception_status == 0x1))
3295 continue;
3296
Tomeu Vizoso9bef1f12019-06-25 09:20:51 +02003297 pandecode_log("struct mali_job_descriptor_header job_%"PRIx64"_%d = {\n", jc_gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003298 pandecode_indent++;
3299
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04003300 pandecode_prop("job_type = %s", mali_job_type_as_str(h->job_type));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003301
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003302 if (h->job_descriptor_size)
3303 pandecode_prop("job_descriptor_size = %d", h->job_descriptor_size);
3304
Alyssa Rosenzweige918dd82019-08-16 16:36:39 -07003305 if (h->exception_status && h->exception_status != 0x1)
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -07003306 pandecode_prop("exception_status = %x (source ID: 0x%x access: %s exception: 0x%x)",
Tomeu Vizosofa36c192019-06-25 08:22:30 +02003307 h->exception_status,
3308 (h->exception_status >> 16) & 0xFFFF,
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -07003309 pandecode_exception_access((h->exception_status >> 8) & 0x3),
Tomeu Vizosofa36c192019-06-25 08:22:30 +02003310 h->exception_status & 0xFF);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003311
3312 if (h->first_incomplete_task)
3313 pandecode_prop("first_incomplete_task = %d", h->first_incomplete_task);
3314
3315 if (h->fault_pointer)
3316 pandecode_prop("fault_pointer = 0x%" PRIx64, h->fault_pointer);
3317
3318 if (h->job_barrier)
3319 pandecode_prop("job_barrier = %d", h->job_barrier);
3320
3321 pandecode_prop("job_index = %d", h->job_index);
3322
3323 if (h->unknown_flags)
3324 pandecode_prop("unknown_flags = %d", h->unknown_flags);
3325
3326 if (h->job_dependency_index_1)
3327 pandecode_prop("job_dependency_index_1 = %d", h->job_dependency_index_1);
3328
3329 if (h->job_dependency_index_2)
3330 pandecode_prop("job_dependency_index_2 = %d", h->job_dependency_index_2);
3331
3332 pandecode_indent--;
3333 pandecode_log("};\n");
3334
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003335 switch (h->job_type) {
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04003336 case MALI_JOB_TYPE_WRITE_VALUE: {
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -05003337 struct mali_payload_write_value *s = payload;
3338 pandecode_log("struct mali_payload_write_value payload_%"PRIx64"_%d = {\n", payload_ptr, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003339 pandecode_indent++;
Alyssa Rosenzweig9eae9502019-12-04 08:59:29 -05003340 MEMORY_PROP(s, address);
3341
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -05003342 if (s->value_descriptor != MALI_WRITE_VALUE_ZERO) {
Alyssa Rosenzweig9eae9502019-12-04 08:59:29 -05003343 pandecode_msg("XXX: unknown value descriptor\n");
3344 pandecode_prop("value_descriptor = 0x%" PRIX32, s->value_descriptor);
3345 }
3346
3347 if (s->reserved) {
3348 pandecode_msg("XXX: set value tripped\n");
3349 pandecode_prop("reserved = 0x%" PRIX32, s->reserved);
3350 }
3351
3352 pandecode_prop("immediate = 0x%" PRIX64, s->immediate);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003353 pandecode_indent--;
3354 pandecode_log("};\n");
3355
3356 break;
3357 }
3358
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04003359 case MALI_JOB_TYPE_TILER:
3360 case MALI_JOB_TYPE_VERTEX:
3361 case MALI_JOB_TYPE_COMPUTE:
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003362 if (bifrost) {
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04003363 if (h->job_type == MALI_JOB_TYPE_TILER)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003364 pandecode_tiler_job_bfr(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003365 else
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003366 pandecode_vertex_job_bfr(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003367 } else
Tomeu Vizoso072207b2019-11-07 08:27:53 +01003368 pandecode_vertex_or_tiler_job_mdg(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003369
3370 break;
3371
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04003372 case MALI_JOB_TYPE_FRAGMENT:
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01003373 pandecode_fragment_job(mem, payload_ptr, job_no, bifrost, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003374 break;
3375
3376 default:
3377 break;
3378 }
Alyssa Rosenzweig65e5c192019-12-27 13:03:22 -05003379 } while ((jc_gpu_va = h->next_job));
Icecream95ef672182020-06-22 22:49:53 +12003380
3381 pandecode_map_read_write();
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00003382}