blob: e5b7769942bf2855b651e0e8e1d92b50af71cd7a [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
26#include <panfrost-job.h>
27#include <stdio.h>
28#include <stdlib.h>
29#include <memory.h>
30#include <stdbool.h>
31#include <stdarg.h>
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 "pan_pretty_print.h"
38#include "midgard/disassemble.h"
39#include "bifrost/disassemble.h"
40
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -070041#include "pan_encoder.h"
42
Tomeu Vizoso9447a842019-10-30 12:05:30 +010043static void pandecode_swizzle(unsigned swizzle, enum mali_format format);
44
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000045#define MEMORY_PROP(obj, p) {\
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -070046 if (obj->p) { \
47 char *a = pointer_as_memory_reference(obj->p); \
48 pandecode_prop("%s = %s", #p, a); \
49 free(a); \
50 } \
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000051}
52
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -070053#define MEMORY_PROP_DIR(obj, p) {\
54 if (obj.p) { \
55 char *a = pointer_as_memory_reference(obj.p); \
56 pandecode_prop("%s = %s", #p, a); \
57 free(a); \
58 } \
59}
60
Icecream95be22c072020-01-23 10:14:35 +130061FILE *pandecode_dump_stream;
62
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000063/* Semantic logging type.
64 *
65 * Raw: for raw messages to be printed as is.
66 * Message: for helpful information to be commented out in replays.
67 * Property: for properties of a struct
68 *
69 * Use one of pandecode_log, pandecode_msg, or pandecode_prop as syntax sugar.
70 */
71
72enum pandecode_log_type {
73 PANDECODE_RAW,
74 PANDECODE_MESSAGE,
75 PANDECODE_PROPERTY
76};
77
78#define pandecode_log(...) pandecode_log_typed(PANDECODE_RAW, __VA_ARGS__)
79#define pandecode_msg(...) pandecode_log_typed(PANDECODE_MESSAGE, __VA_ARGS__)
80#define pandecode_prop(...) pandecode_log_typed(PANDECODE_PROPERTY, __VA_ARGS__)
81
82unsigned pandecode_indent = 0;
83
84static void
85pandecode_make_indent(void)
86{
87 for (unsigned i = 0; i < pandecode_indent; ++i)
Icecream95be22c072020-01-23 10:14:35 +130088 fprintf(pandecode_dump_stream, " ");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000089}
90
91static void
92pandecode_log_typed(enum pandecode_log_type type, const char *format, ...)
93{
94 va_list ap;
95
96 pandecode_make_indent();
97
98 if (type == PANDECODE_MESSAGE)
Icecream95be22c072020-01-23 10:14:35 +130099 fprintf(pandecode_dump_stream, "// ");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000100 else if (type == PANDECODE_PROPERTY)
Icecream95be22c072020-01-23 10:14:35 +1300101 fprintf(pandecode_dump_stream, ".");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000102
103 va_start(ap, format);
Icecream95be22c072020-01-23 10:14:35 +1300104 vfprintf(pandecode_dump_stream, format, ap);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000105 va_end(ap);
106
107 if (type == PANDECODE_PROPERTY)
Icecream95be22c072020-01-23 10:14:35 +1300108 fprintf(pandecode_dump_stream, ",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000109}
110
111static void
112pandecode_log_cont(const char *format, ...)
113{
114 va_list ap;
115
116 va_start(ap, format);
Icecream95be22c072020-01-23 10:14:35 +1300117 vfprintf(pandecode_dump_stream, format, ap);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000118 va_end(ap);
119}
120
Alyssa Rosenzweig4391c652019-08-19 15:14:48 -0700121/* To check for memory safety issues, validates that the given pointer in GPU
122 * memory is valid, containing at least sz bytes. The goal is to eliminate
123 * GPU-side memory bugs (NULL pointer dereferences, buffer overflows, or buffer
124 * overruns) by statically validating pointers.
125 */
126
127static void
128pandecode_validate_buffer(mali_ptr addr, size_t sz)
129{
130 if (!addr) {
131 pandecode_msg("XXX: null pointer deref");
132 return;
133 }
134
135 /* Find a BO */
136
137 struct pandecode_mapped_memory *bo =
138 pandecode_find_mapped_gpu_mem_containing(addr);
139
140 if (!bo) {
141 pandecode_msg("XXX: invalid memory dereference\n");
142 return;
143 }
144
145 /* Bounds check */
146
147 unsigned offset = addr - bo->gpu_va;
148 unsigned total = offset + sz;
149
150 if (total > bo->length) {
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -0700151 pandecode_msg("XXX: buffer overrun. "
Alyssa Rosenzweigbcfcb7e2019-08-30 17:02:43 -0700152 "Chunk of size %zu at offset %d in buffer of size %zu. "
153 "Overrun by %zu bytes. \n",
Alyssa Rosenzweig4391c652019-08-19 15:14:48 -0700154 sz, offset, bo->length, total - bo->length);
155 return;
156 }
157}
158
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000159struct pandecode_flag_info {
160 u64 flag;
161 const char *name;
162};
163
164static void
165pandecode_log_decoded_flags(const struct pandecode_flag_info *flag_info,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700166 u64 flags)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000167{
168 bool decodable_flags_found = false;
169
170 for (int i = 0; flag_info[i].name; i++) {
171 if ((flags & flag_info[i].flag) != flag_info[i].flag)
172 continue;
173
174 if (!decodable_flags_found) {
175 decodable_flags_found = true;
176 } else {
177 pandecode_log_cont(" | ");
178 }
179
180 pandecode_log_cont("%s", flag_info[i].name);
181
182 flags &= ~flag_info[i].flag;
183 }
184
185 if (decodable_flags_found) {
186 if (flags)
187 pandecode_log_cont(" | 0x%" PRIx64, flags);
188 } else {
189 pandecode_log_cont("0x%" PRIx64, flags);
190 }
191}
192
193#define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
194static const struct pandecode_flag_info gl_enable_flag_info[] = {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000195 FLAG_INFO(OCCLUSION_QUERY),
196 FLAG_INFO(OCCLUSION_PRECISE),
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +0000197 FLAG_INFO(FRONT_CCW_TOP),
198 FLAG_INFO(CULL_FACE_FRONT),
199 FLAG_INFO(CULL_FACE_BACK),
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000200 {}
201};
202#undef FLAG_INFO
203
204#define FLAG_INFO(flag) { MALI_CLEAR_##flag, "MALI_CLEAR_" #flag }
205static const struct pandecode_flag_info clear_flag_info[] = {
206 FLAG_INFO(FAST),
207 FLAG_INFO(SLOW),
208 FLAG_INFO(SLOW_STENCIL),
209 {}
210};
211#undef FLAG_INFO
212
213#define FLAG_INFO(flag) { MALI_MASK_##flag, "MALI_MASK_" #flag }
214static const struct pandecode_flag_info mask_flag_info[] = {
215 FLAG_INFO(R),
216 FLAG_INFO(G),
217 FLAG_INFO(B),
218 FLAG_INFO(A),
219 {}
220};
221#undef FLAG_INFO
222
223#define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
224static const struct pandecode_flag_info u3_flag_info[] = {
225 FLAG_INFO(HAS_MSAA),
226 FLAG_INFO(CAN_DISCARD),
227 FLAG_INFO(HAS_BLEND_SHADER),
Boris Brezillon28440822019-11-04 11:57:22 +0100228 FLAG_INFO(DEPTH_WRITEMASK),
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000229 {}
230};
231
232static const struct pandecode_flag_info u4_flag_info[] = {
233 FLAG_INFO(NO_MSAA),
234 FLAG_INFO(NO_DITHER),
235 FLAG_INFO(DEPTH_RANGE_A),
236 FLAG_INFO(DEPTH_RANGE_B),
237 FLAG_INFO(STENCIL_TEST),
238 FLAG_INFO(SAMPLE_ALPHA_TO_COVERAGE_NO_BLEND_SHADER),
239 {}
240};
241#undef FLAG_INFO
242
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000243#define FLAG_INFO(flag) { MALI_MFBD_FORMAT_##flag, "MALI_MFBD_FORMAT_" #flag }
244static const struct pandecode_flag_info mfbd_fmt_flag_info[] = {
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000245 FLAG_INFO(MSAA),
Alyssa Rosenzweig31a4ef82019-06-17 16:01:24 -0700246 FLAG_INFO(SRGB),
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000247 {}
248};
249#undef FLAG_INFO
250
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000251#define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag }
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500252static const struct pandecode_flag_info mfbd_extra_flag_hi_info[] = {
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000253 FLAG_INFO(PRESENT),
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500254 {}
255};
256#undef FLAG_INFO
257
258#define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag }
259static const struct pandecode_flag_info mfbd_extra_flag_lo_info[] = {
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000260 FLAG_INFO(ZS),
261 {}
262};
263#undef FLAG_INFO
264
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +0000265#define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
Boris Brezillon8ed94d32020-01-31 12:37:38 +0100266static const struct pandecode_flag_info shader_midgard1_flag_lo_info [] = {
267 FLAG_INFO(WRITES_Z),
Alyssa Rosenzweig8d1adc02019-06-07 16:00:49 -0700268 FLAG_INFO(EARLY_Z),
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +0000269 FLAG_INFO(READS_TILEBUFFER),
270 FLAG_INFO(READS_ZS),
271 {}
272};
Boris Brezillon8ed94d32020-01-31 12:37:38 +0100273
274static const struct pandecode_flag_info shader_midgard1_flag_hi_info [] = {
275 FLAG_INFO(WRITES_S),
276 {}
277};
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +0000278#undef FLAG_INFO
279
Alyssa Rosenzweigac689462019-06-14 11:14:01 -0700280#define FLAG_INFO(flag) { MALI_MFBD_##flag, "MALI_MFBD_" #flag }
281static const struct pandecode_flag_info mfbd_flag_info [] = {
282 FLAG_INFO(DEPTH_WRITE),
283 FLAG_INFO(EXTRA),
284 {}
285};
286#undef FLAG_INFO
287
Alyssa Rosenzweigcf6cad32019-07-31 08:50:02 -0700288#define FLAG_INFO(flag) { MALI_SAMP_##flag, "MALI_SAMP_" #flag }
289static const struct pandecode_flag_info sampler_flag_info [] = {
290 FLAG_INFO(MAG_NEAREST),
291 FLAG_INFO(MIN_NEAREST),
292 FLAG_INFO(MIP_LINEAR_1),
293 FLAG_INFO(MIP_LINEAR_2),
Alyssa Rosenzweig3e47a112019-07-31 09:08:07 -0700294 FLAG_INFO(NORM_COORDS),
Alyssa Rosenzweigcf6cad32019-07-31 08:50:02 -0700295 {}
296};
297#undef FLAG_INFO
Alyssa Rosenzweigac689462019-06-14 11:14:01 -0700298
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100299#define FLAG_INFO(flag) { MALI_SFBD_FORMAT_##flag, "MALI_SFBD_FORMAT_" #flag }
300static const struct pandecode_flag_info sfbd_unk1_info [] = {
301 FLAG_INFO(MSAA_8),
302 FLAG_INFO(MSAA_A),
303 {}
304};
305#undef FLAG_INFO
306
307#define FLAG_INFO(flag) { MALI_SFBD_FORMAT_##flag, "MALI_SFBD_FORMAT_" #flag }
308static const struct pandecode_flag_info sfbd_unk2_info [] = {
309 FLAG_INFO(MSAA_B),
310 FLAG_INFO(SRGB),
311 {}
312};
313#undef FLAG_INFO
314
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000315extern char *replace_fragment;
316extern char *replace_vertex;
317
318static char *
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -0700319pandecode_job_type(enum mali_job_type type)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000320{
321#define DEFINE_CASE(name) case JOB_TYPE_ ## name: return "JOB_TYPE_" #name
322
323 switch (type) {
324 DEFINE_CASE(NULL);
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -0500325 DEFINE_CASE(WRITE_VALUE);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000326 DEFINE_CASE(CACHE_FLUSH);
327 DEFINE_CASE(COMPUTE);
328 DEFINE_CASE(VERTEX);
329 DEFINE_CASE(TILER);
330 DEFINE_CASE(FUSED);
331 DEFINE_CASE(FRAGMENT);
332
333 case JOB_NOT_STARTED:
334 return "NOT_STARTED";
335
336 default:
337 pandecode_log("Warning! Unknown job type %x\n", type);
338 return "!?!?!?";
339 }
340
341#undef DEFINE_CASE
342}
343
344static char *
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -0700345pandecode_draw_mode(enum mali_draw_mode mode)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000346{
347#define DEFINE_CASE(name) case MALI_ ## name: return "MALI_" #name
348
349 switch (mode) {
350 DEFINE_CASE(DRAW_NONE);
351 DEFINE_CASE(POINTS);
352 DEFINE_CASE(LINES);
353 DEFINE_CASE(TRIANGLES);
354 DEFINE_CASE(TRIANGLE_STRIP);
355 DEFINE_CASE(TRIANGLE_FAN);
356 DEFINE_CASE(LINE_STRIP);
357 DEFINE_CASE(LINE_LOOP);
358 DEFINE_CASE(POLYGON);
359 DEFINE_CASE(QUADS);
360 DEFINE_CASE(QUAD_STRIP);
361
362 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700363 pandecode_msg("XXX: invalid draw mode %X\n", mode);
364 return "";
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000365 }
366
367#undef DEFINE_CASE
368}
369
370#define DEFINE_CASE(name) case MALI_FUNC_ ## name: return "MALI_FUNC_" #name
371static char *
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -0700372pandecode_func(enum mali_func mode)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000373{
374 switch (mode) {
375 DEFINE_CASE(NEVER);
376 DEFINE_CASE(LESS);
377 DEFINE_CASE(EQUAL);
378 DEFINE_CASE(LEQUAL);
379 DEFINE_CASE(GREATER);
380 DEFINE_CASE(NOTEQUAL);
381 DEFINE_CASE(GEQUAL);
382 DEFINE_CASE(ALWAYS);
383
384 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700385 pandecode_msg("XXX: invalid func %X\n", mode);
386 return "";
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000387 }
388}
389#undef DEFINE_CASE
390
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000391#define DEFINE_CASE(name) case MALI_STENCIL_ ## name: return "MALI_STENCIL_" #name
392static char *
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -0700393pandecode_stencil_op(enum mali_stencil_op op)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000394{
395 switch (op) {
396 DEFINE_CASE(KEEP);
397 DEFINE_CASE(REPLACE);
398 DEFINE_CASE(ZERO);
399 DEFINE_CASE(INVERT);
400 DEFINE_CASE(INCR_WRAP);
401 DEFINE_CASE(DECR_WRAP);
402 DEFINE_CASE(INCR);
403 DEFINE_CASE(DECR);
404
405 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700406 pandecode_msg("XXX: invalid stencil op %X\n", op);
407 return "";
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000408 }
409}
410
411#undef DEFINE_CASE
412
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -0700413static char *pandecode_attr_mode_short(enum mali_attr_mode mode)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000414{
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700415 switch(mode) {
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -0700416 /* TODO: Combine to just "instanced" once this can be done
417 * unambiguously in all known cases */
418 case MALI_ATTR_POT_DIVIDE:
419 return "instanced_pot";
420 case MALI_ATTR_MODULO:
421 return "instanced_mod";
422 case MALI_ATTR_NPOT_DIVIDE:
423 return "instanced_npot";
424 case MALI_ATTR_IMAGE:
425 return "image";
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700426 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700427 pandecode_msg("XXX: invalid attribute mode %X\n", mode);
428 return "";
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700429 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000430}
431
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -0700432static const char *
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -0500433pandecode_special_record(uint64_t v, bool* attribute)
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -0700434{
435 switch(v) {
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -0500436 case MALI_ATTR_VERTEXID:
437 *attribute = true;
438 return "gl_VertexID";
439 case MALI_ATTR_INSTANCEID:
440 *attribute = true;
441 return "gl_InstanceID";
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -0700442 case MALI_VARYING_FRAG_COORD:
443 return "gl_FragCoord";
444 case MALI_VARYING_FRONT_FACING:
445 return "gl_FrontFacing";
446 case MALI_VARYING_POINT_COORD:
447 return "gl_PointCoord";
448 default:
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -0500449 pandecode_msg("XXX: invalid special record %" PRIx64 "\n", v);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -0700450 return "";
451 }
452}
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000453
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000454#define DEFINE_CASE(name) case MALI_WRAP_## name: return "MALI_WRAP_" #name
455static char *
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -0700456pandecode_wrap_mode(enum mali_wrap_mode op)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000457{
458 switch (op) {
459 DEFINE_CASE(REPEAT);
460 DEFINE_CASE(CLAMP_TO_EDGE);
461 DEFINE_CASE(CLAMP_TO_BORDER);
462 DEFINE_CASE(MIRRORED_REPEAT);
463
464 default:
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700465 pandecode_msg("XXX: invalid wrap mode %X\n", op);
466 return "";
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000467 }
468}
469#undef DEFINE_CASE
470
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100471#define DEFINE_CASE(name) case MALI_BLOCK_## name: return "MALI_BLOCK_" #name
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -0700472static char *
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100473pandecode_block_format(enum mali_block_format fmt)
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -0700474{
475 switch (fmt) {
476 DEFINE_CASE(TILED);
477 DEFINE_CASE(UNKNOWN);
478 DEFINE_CASE(LINEAR);
479 DEFINE_CASE(AFBC);
480
481 default:
482 unreachable("Invalid case");
483 }
484}
485#undef DEFINE_CASE
486
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -0700487#define DEFINE_CASE(name) case MALI_EXCEPTION_ACCESS_## name: return ""#name
Tomeu Vizoso63ae9e62019-12-09 08:39:59 +0100488char *
Alyssa Rosenzweigd1265152020-01-23 15:28:09 -0500489pandecode_exception_access(unsigned access)
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -0700490{
Alyssa Rosenzweigdcde5bd2019-08-20 11:24:32 -0700491 switch (access) {
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -0700492 DEFINE_CASE(NONE);
493 DEFINE_CASE(EXECUTE);
494 DEFINE_CASE(READ);
495 DEFINE_CASE(WRITE);
496
497 default:
498 unreachable("Invalid case");
499 }
500}
501#undef DEFINE_CASE
502
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700503/* Midgard's tiler descriptor is embedded within the
504 * larger FBD */
505
506static void
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700507pandecode_midgard_tiler_descriptor(
508 const struct midgard_tiler_descriptor *t,
509 unsigned width,
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700510 unsigned height,
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500511 bool is_fragment,
512 bool has_hierarchy)
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700513{
514 pandecode_log(".tiler = {\n");
515 pandecode_indent++;
516
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700517 if (t->hierarchy_mask == MALI_TILER_DISABLED)
518 pandecode_prop("hierarchy_mask = MALI_TILER_DISABLED");
519 else
520 pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask);
521
522 /* We know this name from the kernel, but we never see it nonzero */
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -0700523
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700524 if (t->flags)
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -0700525 pandecode_msg("XXX: unexpected tiler flags 0x%" PRIx16, t->flags);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700526
527 MEMORY_PROP(t, polygon_list);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700528
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700529 /* The body is offset from the base of the polygon list */
530 assert(t->polygon_list_body > t->polygon_list);
531 unsigned body_offset = t->polygon_list_body - t->polygon_list;
532
533 /* It needs to fit inside the reported size */
534 assert(t->polygon_list_size >= body_offset);
535
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700536 /* Check that we fit */
537 struct pandecode_mapped_memory *plist =
538 pandecode_find_mapped_gpu_mem_containing(t->polygon_list);
539
540 assert(t->polygon_list_size <= plist->length);
541
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700542 /* Now that we've sanity checked, we'll try to calculate the sizes
543 * ourselves for comparison */
544
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500545 unsigned ref_header = panfrost_tiler_header_size(width, height, t->hierarchy_mask, has_hierarchy);
546 unsigned ref_size = panfrost_tiler_full_size(width, height, t->hierarchy_mask, has_hierarchy);
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700547
548 if (!((ref_header == body_offset) && (ref_size == t->polygon_list_size))) {
549 pandecode_msg("XXX: bad polygon list size (expected %d / 0x%x)\n",
550 ref_header, ref_size);
551 pandecode_prop("polygon_list_size = 0x%x", t->polygon_list_size);
552 pandecode_msg("body offset %d\n", body_offset);
553 }
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700554
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700555 /* The tiler heap has a start and end specified -- it should be
556 * identical to what we have in the BO. The exception is if tiling is
557 * disabled. */
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700558
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700559 MEMORY_PROP(t, heap_start);
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700560 assert(t->heap_end >= t->heap_start);
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700561
562 struct pandecode_mapped_memory *heap =
563 pandecode_find_mapped_gpu_mem_containing(t->heap_start);
564
565 unsigned heap_size = t->heap_end - t->heap_start;
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700566
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700567 /* Tiling is enabled with a special flag */
568 unsigned hierarchy_mask = t->hierarchy_mask & MALI_HIERARCHY_MASK;
569 unsigned tiler_flags = t->hierarchy_mask ^ hierarchy_mask;
570
571 bool tiling_enabled = hierarchy_mask;
572
573 if (tiling_enabled) {
574 /* When tiling is enabled, the heap should be a tight fit */
575 unsigned heap_offset = t->heap_start - heap->gpu_va;
576 if ((heap_offset + heap_size) != heap->length) {
Alyssa Rosenzweigbcfcb7e2019-08-30 17:02:43 -0700577 pandecode_msg("XXX: heap size %u (expected %zu)\n",
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700578 heap_size, heap->length - heap_offset);
579 }
580
581 /* We should also have no other flags */
582 if (tiler_flags)
583 pandecode_msg("XXX: unexpected tiler %X\n", tiler_flags);
584 } else {
585 /* When tiling is disabled, we should have that flag and no others */
586
587 if (tiler_flags != MALI_TILER_DISABLED) {
588 pandecode_msg("XXX: unexpected tiler flag %X, expected MALI_TILER_DISABLED\n",
589 tiler_flags);
590 }
591
592 /* We should also have an empty heap */
593 if (heap_size) {
594 pandecode_msg("XXX: tiler heap size %d given, expected empty\n",
595 heap_size);
596 }
597
598 /* Disabled tiling is used only for clear-only jobs, which are
599 * purely FRAGMENT, so we should never see this for
600 * non-FRAGMENT descriptors. */
601
602 if (!is_fragment)
603 pandecode_msg("XXX: tiler disabled for non-FRAGMENT job\n");
604 }
605
606 /* We've never seen weights used in practice, but we know from the
607 * kernel these fields is there */
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700608
609 bool nonzero_weights = false;
610
611 for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
612 nonzero_weights |= t->weights[w] != 0x0;
613 }
614
615 if (nonzero_weights) {
Alyssa Rosenzweigacd140c2020-02-28 07:25:07 -0500616 pandecode_log(".weights = { ");
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700617
618 for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
Alyssa Rosenzweigacd140c2020-02-28 07:25:07 -0500619 pandecode_log_cont("%d, ", t->weights[w]);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700620 }
621
622 pandecode_log("},");
623 }
624
625 pandecode_indent--;
626 pandecode_log("}\n");
627}
628
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700629/* Information about the framebuffer passed back for
630 * additional analysis */
631
632struct pandecode_fbd {
633 unsigned width;
634 unsigned height;
635 unsigned rt_count;
636 bool has_extra;
637};
638
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100639static void
640pandecode_sfbd_format(struct mali_sfbd_format format)
641{
642 pandecode_log(".format = {\n");
643 pandecode_indent++;
644
645 pandecode_log(".unk1 = ");
646 pandecode_log_decoded_flags(sfbd_unk1_info, format.unk1);
647 pandecode_log_cont(",\n");
648
649 /* TODO: Map formats so we can check swizzles and print nicely */
650 pandecode_log("swizzle");
651 pandecode_swizzle(format.swizzle, MALI_RGBA8_UNORM);
652 pandecode_log_cont(",\n");
653
654 pandecode_prop("nr_channels = MALI_POSITIVE(%d)",
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -0500655 (format.nr_channels + 1));
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100656
657 pandecode_log(".unk2 = ");
658 pandecode_log_decoded_flags(sfbd_unk2_info, format.unk2);
659 pandecode_log_cont(",\n");
660
661 pandecode_prop("block = %s", pandecode_block_format(format.block));
662
663 pandecode_prop("unk3 = 0x%" PRIx32, format.unk3);
664
665 pandecode_indent--;
666 pandecode_log("},\n");
667}
668
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500669static void
670pandecode_shared_memory(const struct mali_shared_memory *desc, bool is_compute)
671{
672 pandecode_prop("stack_shift = 0x%x", desc->stack_shift);
673
674 if (desc->unk0)
675 pandecode_prop("unk0 = 0x%x", desc->unk0);
676
677 if (desc->shared_workgroup_count != 0x1F) {
678 pandecode_prop("shared_workgroup_count = %d", desc->shared_workgroup_count);
679 if (!is_compute)
680 pandecode_msg("XXX: wrong workgroup count for noncompute\n");
681 }
682
683 if (desc->shared_unk1 || desc->shared_shift) {
684 pandecode_prop("shared_unk1 = %X", desc->shared_unk1);
685 pandecode_prop("shared_shift = %X", desc->shared_shift);
686
687 if (!is_compute)
688 pandecode_msg("XXX: shared memory configured in noncompute shader");
689 }
690
691 if (desc->shared_zero) {
692 pandecode_msg("XXX: shared memory zero tripped\n");
693 pandecode_prop("shared_zero = 0x%" PRIx32, desc->shared_zero);
694 }
695
696 if (desc->shared_memory && !is_compute)
697 pandecode_msg("XXX: shared memory used in noncompute shader\n");
698
699 MEMORY_PROP(desc, scratchpad);
700 MEMORY_PROP(desc, shared_memory);
701 MEMORY_PROP(desc, unknown1);
Alyssa Rosenzweiged528552020-02-25 15:40:46 -0500702
703 if (desc->scratchpad) {
704 struct pandecode_mapped_memory *smem =
705 pandecode_find_mapped_gpu_mem_containing(desc->scratchpad);
706
707 pandecode_msg("scratchpad size %u\n", smem->length);
708 }
709
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500710}
711
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700712static struct pandecode_fbd
Tomeu Vizoso697f02c2019-11-12 12:15:02 +0100713pandecode_sfbd(uint64_t gpu_va, int job_no, bool is_fragment, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000714{
715 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
716 const struct mali_single_framebuffer *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va);
717
Alyssa Rosenzweigd6d6d632019-08-30 17:00:09 -0700718 struct pandecode_fbd info = {
719 .has_extra = false,
720 .rt_count = 1
721 };
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700722
Tomeu Vizoso9bef1f12019-06-25 09:20:51 +0200723 pandecode_log("struct mali_single_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000724 pandecode_indent++;
725
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500726 pandecode_log(".shared_memory = {\n");
727 pandecode_indent++;
728 pandecode_shared_memory(&s->shared_memory, false);
729 pandecode_indent--;
730 pandecode_log("},\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000731
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100732 pandecode_sfbd_format(s->format);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000733
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700734 info.width = s->width + 1;
735 info.height = s->height + 1;
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700736
737 pandecode_prop("width = MALI_POSITIVE(%" PRId16 ")", info.width);
738 pandecode_prop("height = MALI_POSITIVE(%" PRId16 ")", info.height);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000739
Tomeu Vizoso23fe7cd2019-07-12 12:38:50 +0200740 MEMORY_PROP(s, checksum);
741
742 if (s->checksum_stride)
743 pandecode_prop("checksum_stride = %d", s->checksum_stride);
744
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000745 MEMORY_PROP(s, framebuffer);
746 pandecode_prop("stride = %d", s->stride);
747
748 /* Earlier in the actual commandstream -- right before width -- but we
749 * delay to flow nicer */
750
751 pandecode_log(".clear_flags = ");
752 pandecode_log_decoded_flags(clear_flag_info, s->clear_flags);
753 pandecode_log_cont(",\n");
754
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100755 if (s->depth_buffer) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000756 MEMORY_PROP(s, depth_buffer);
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100757 pandecode_prop("depth_stride = %d", s->depth_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000758 }
759
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100760 if (s->stencil_buffer) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000761 MEMORY_PROP(s, stencil_buffer);
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100762 pandecode_prop("stencil_stride = %d", s->stencil_stride);
763 }
764
765 if (s->depth_stride_zero ||
766 s->stencil_stride_zero ||
767 s->zero7 || s->zero8) {
768 pandecode_msg("XXX: Depth/stencil zeros tripped\n");
769 pandecode_prop("depth_stride_zero = 0x%x",
770 s->depth_stride_zero);
771 pandecode_prop("stencil_stride_zero = 0x%x",
772 s->stencil_stride_zero);
773 pandecode_prop("zero7 = 0x%" PRIx32,
774 s->zero7);
775 pandecode_prop("zero8 = 0x%" PRIx32,
776 s->zero8);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000777 }
778
779 if (s->clear_color_1 | s->clear_color_2 | s->clear_color_3 | s->clear_color_4) {
780 pandecode_prop("clear_color_1 = 0x%" PRIx32, s->clear_color_1);
781 pandecode_prop("clear_color_2 = 0x%" PRIx32, s->clear_color_2);
782 pandecode_prop("clear_color_3 = 0x%" PRIx32, s->clear_color_3);
783 pandecode_prop("clear_color_4 = 0x%" PRIx32, s->clear_color_4);
784 }
785
786 if (s->clear_depth_1 != 0 || s->clear_depth_2 != 0 || s->clear_depth_3 != 0 || s->clear_depth_4 != 0) {
787 pandecode_prop("clear_depth_1 = %f", s->clear_depth_1);
788 pandecode_prop("clear_depth_2 = %f", s->clear_depth_2);
789 pandecode_prop("clear_depth_3 = %f", s->clear_depth_3);
790 pandecode_prop("clear_depth_4 = %f", s->clear_depth_4);
791 }
792
793 if (s->clear_stencil) {
794 pandecode_prop("clear_stencil = 0x%x", s->clear_stencil);
795 }
796
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -0700797 const struct midgard_tiler_descriptor t = s->tiler;
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500798
799 bool has_hierarchy = !(gpu_id == 0x0720 || gpu_id == 0x0820 || gpu_id == 0x0830);
800 pandecode_midgard_tiler_descriptor(&t, s->width + 1, s->height + 1, is_fragment, has_hierarchy);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000801
802 pandecode_indent--;
803 pandecode_log("};\n");
804
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000805 pandecode_prop("zero2 = 0x%" PRIx32, s->zero2);
806 pandecode_prop("zero4 = 0x%" PRIx32, s->zero4);
Tomeu Vizoso94e6d172019-11-06 17:30:54 +0100807 pandecode_prop("zero5 = 0x%" PRIx32, s->zero5);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000808
Icecream95be22c072020-01-23 10:14:35 +1300809 pandecode_log_cont(".zero3 = {");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000810
811 for (int i = 0; i < sizeof(s->zero3) / sizeof(s->zero3[0]); ++i)
Icecream95be22c072020-01-23 10:14:35 +1300812 pandecode_log_cont("%X, ", s->zero3[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000813
Icecream95be22c072020-01-23 10:14:35 +1300814 pandecode_log_cont("},\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000815
Icecream95be22c072020-01-23 10:14:35 +1300816 pandecode_log_cont(".zero6 = {");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000817
818 for (int i = 0; i < sizeof(s->zero6) / sizeof(s->zero6[0]); ++i)
Icecream95be22c072020-01-23 10:14:35 +1300819 pandecode_log_cont("%X, ", s->zero6[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000820
Icecream95be22c072020-01-23 10:14:35 +1300821 pandecode_log_cont("},\n");
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700822
823 return info;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000824}
825
826static void
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700827pandecode_compute_fbd(uint64_t gpu_va, int job_no)
828{
829 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500830 const struct mali_shared_memory *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700831
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500832 pandecode_log("struct mali_shared_memory shared_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700833 pandecode_indent++;
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500834 pandecode_shared_memory(s, true);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700835 pandecode_indent--;
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500836 pandecode_log("},\n");
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700837}
838
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700839/* Extracts the number of components associated with a Mali format */
840
841static unsigned
842pandecode_format_component_count(enum mali_format fmt)
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000843{
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700844 /* Mask out the format class */
845 unsigned top = fmt & 0b11100000;
846
847 switch (top) {
848 case MALI_FORMAT_SNORM:
849 case MALI_FORMAT_UINT:
850 case MALI_FORMAT_UNORM:
851 case MALI_FORMAT_SINT:
852 return ((fmt >> 3) & 3) + 1;
853 default:
854 /* TODO: Validate */
855 return 4;
856 }
857}
858
859/* Extracts a mask of accessed components from a 12-bit Mali swizzle */
860
861static unsigned
862pandecode_access_mask_from_channel_swizzle(unsigned swizzle)
863{
864 unsigned mask = 0;
865 assert(MALI_CHANNEL_RED == 0);
866
867 for (unsigned c = 0; c < 4; ++c) {
868 enum mali_channel chan = (swizzle >> (3*c)) & 0x7;
869
870 if (chan <= MALI_CHANNEL_ALPHA)
871 mask |= (1 << chan);
872 }
873
874 return mask;
875}
876
877/* Validates that a (format, swizzle) pair is valid, in the sense that the
878 * swizzle doesn't access any components that are undefined in the format.
879 * Returns whether the swizzle is trivial (doesn't do any swizzling) and can be
880 * omitted */
881
882static bool
883pandecode_validate_format_swizzle(enum mali_format fmt, unsigned swizzle)
884{
885 unsigned nr_comp = pandecode_format_component_count(fmt);
886 unsigned access_mask = pandecode_access_mask_from_channel_swizzle(swizzle);
887 unsigned valid_mask = (1 << nr_comp) - 1;
888 unsigned invalid_mask = ~valid_mask;
889
890 if (access_mask & invalid_mask) {
891 pandecode_msg("XXX: invalid components accessed\n");
892 return false;
893 }
894
895 /* Check for the default non-swizzling swizzle so we can suppress
896 * useless printing for the defaults */
897
898 unsigned default_swizzles[4] = {
899 MALI_CHANNEL_RED | (MALI_CHANNEL_ZERO << 3) | (MALI_CHANNEL_ZERO << 6) | (MALI_CHANNEL_ONE << 9),
900 MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_ZERO << 6) | (MALI_CHANNEL_ONE << 9),
901 MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_BLUE << 6) | (MALI_CHANNEL_ONE << 9),
902 MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_BLUE << 6) | (MALI_CHANNEL_ALPHA << 9)
903 };
904
905 return (swizzle == default_swizzles[nr_comp - 1]);
906}
907
908/* Maps MALI_RGBA32F to rgba32f, etc */
909
910static void
Alyssa Rosenzweig9b203952019-08-20 15:24:45 -0700911pandecode_format_short(enum mali_format fmt, bool srgb)
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700912{
913 /* We want a type-like format, so cut off the initial MALI_ */
914 char *format = pandecode_format(fmt);
915 format += strlen("MALI_");
916
917 unsigned len = strlen(format);
918 char *lower_format = calloc(1, len + 1);
919
920 for (unsigned i = 0; i < len; ++i)
921 lower_format[i] = tolower(format[i]);
922
Alyssa Rosenzweig9b203952019-08-20 15:24:45 -0700923 /* Sanity check sRGB flag is applied to RGB, per the name */
924 if (srgb && lower_format[0] != 'r')
925 pandecode_msg("XXX: sRGB applied to non-colour format\n");
926
927 /* Just prefix with an s, so you get formats like srgba8_unorm */
928 if (srgb)
929 pandecode_log_cont("s");
930
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700931 pandecode_log_cont("%s", lower_format);
932 free(lower_format);
933}
934
935static void
936pandecode_swizzle(unsigned swizzle, enum mali_format format)
937{
938 /* First, do some validation */
939 bool trivial_swizzle = pandecode_validate_format_swizzle(
940 format, swizzle);
941
942 if (trivial_swizzle)
943 return;
944
945 /* Next, print the swizzle */
946 pandecode_log_cont(".");
947
948 static const char components[] = "rgba01";
949
950 for (unsigned c = 0; c < 4; ++c) {
951 enum mali_channel chan = (swizzle >> (3 * c)) & 0x7;
952
953 if (chan >= MALI_CHANNEL_RESERVED_0) {
954 pandecode_log("XXX: invalid swizzle channel %d\n", chan);
955 continue;
956 }
957 pandecode_log_cont("%c", components[chan]);
958 }
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000959}
960
961static void
962pandecode_rt_format(struct mali_rt_format format)
963{
964 pandecode_log(".format = {\n");
965 pandecode_indent++;
966
967 pandecode_prop("unk1 = 0x%" PRIx32, format.unk1);
968 pandecode_prop("unk2 = 0x%" PRIx32, format.unk2);
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -0700969 pandecode_prop("unk3 = 0x%" PRIx32, format.unk3);
970
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100971 pandecode_prop("block = %s", pandecode_block_format(format.block));
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000972
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700973 /* TODO: Map formats so we can check swizzles and print nicely */
974 pandecode_log("swizzle");
975 pandecode_swizzle(format.swizzle, MALI_RGBA8_UNORM);
976 pandecode_log_cont(",\n");
977
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000978 pandecode_prop("nr_channels = MALI_POSITIVE(%d)",
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -0500979 (format.nr_channels + 1));
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000980
981 pandecode_log(".flags = ");
982 pandecode_log_decoded_flags(mfbd_fmt_flag_info, format.flags);
983 pandecode_log_cont(",\n");
984
Alyssa Rosenzweige49204c2019-08-20 11:11:46 -0700985 /* In theory, the no_preload bit can be cleared to enable MFBD preload,
986 * which is a faster hardware-based alternative to the wallpaper method
987 * to preserve framebuffer contents across frames. In practice, MFBD
988 * preload is buggy on Midgard, and so this is a chicken bit. If this
989 * bit isn't set, most likely something broke unrelated to preload */
990
991 if (!format.no_preload) {
992 pandecode_msg("XXX: buggy MFBD preload enabled - chicken bit should be clear\n");
993 pandecode_prop("no_preload = 0x%" PRIx32, format.no_preload);
994 }
Alyssa Rosenzweigb78e04c2019-08-14 16:01:38 -0700995
996 if (format.zero)
997 pandecode_prop("zero = 0x%" PRIx32, format.zero);
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000998
999 pandecode_indent--;
1000 pandecode_log("},\n");
1001}
1002
1003static void
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001004pandecode_render_target(uint64_t gpu_va, unsigned job_no, const struct mali_framebuffer *fb)
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001005{
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001006 pandecode_log("struct mali_render_target rts_list_%"PRIx64"_%d[] = {\n", gpu_va, job_no);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001007 pandecode_indent++;
1008
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -05001009 for (int i = 0; i < (fb->rt_count_1 + 1); i++) {
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001010 mali_ptr rt_va = gpu_va + i * sizeof(struct mali_render_target);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001011 struct pandecode_mapped_memory *mem =
1012 pandecode_find_mapped_gpu_mem_containing(rt_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001013 const struct mali_render_target *PANDECODE_PTR_VAR(rt, mem, (mali_ptr) rt_va);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001014
1015 pandecode_log("{\n");
1016 pandecode_indent++;
1017
1018 pandecode_rt_format(rt->format);
1019
Tomeu Vizoso9447a842019-10-30 12:05:30 +01001020 if (rt->format.block == MALI_BLOCK_AFBC) {
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001021 pandecode_log(".afbc = {\n");
1022 pandecode_indent++;
1023
1024 char *a = pointer_as_memory_reference(rt->afbc.metadata);
1025 pandecode_prop("metadata = %s", a);
1026 free(a);
1027
1028 pandecode_prop("stride = %d", rt->afbc.stride);
1029 pandecode_prop("unk = 0x%" PRIx32, rt->afbc.unk);
1030
1031 pandecode_indent--;
1032 pandecode_log("},\n");
Alyssa Rosenzweigc9b62332019-08-20 11:06:07 -07001033 } else if (rt->afbc.metadata || rt->afbc.stride || rt->afbc.unk) {
1034 pandecode_msg("XXX: AFBC disabled but AFBC field set (0x%lX, 0x%x, 0x%x)\n",
1035 rt->afbc.metadata,
1036 rt->afbc.stride,
1037 rt->afbc.unk);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001038 }
1039
1040 MEMORY_PROP(rt, framebuffer);
1041 pandecode_prop("framebuffer_stride = %d", rt->framebuffer_stride);
1042
1043 if (rt->clear_color_1 | rt->clear_color_2 | rt->clear_color_3 | rt->clear_color_4) {
1044 pandecode_prop("clear_color_1 = 0x%" PRIx32, rt->clear_color_1);
1045 pandecode_prop("clear_color_2 = 0x%" PRIx32, rt->clear_color_2);
1046 pandecode_prop("clear_color_3 = 0x%" PRIx32, rt->clear_color_3);
1047 pandecode_prop("clear_color_4 = 0x%" PRIx32, rt->clear_color_4);
1048 }
1049
1050 if (rt->zero1 || rt->zero2 || rt->zero3) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001051 pandecode_msg("XXX: render target zeros tripped\n");
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001052 pandecode_prop("zero1 = 0x%" PRIx64, rt->zero1);
1053 pandecode_prop("zero2 = 0x%" PRIx32, rt->zero2);
1054 pandecode_prop("zero3 = 0x%" PRIx32, rt->zero3);
1055 }
1056
1057 pandecode_indent--;
1058 pandecode_log("},\n");
1059 }
1060
1061 pandecode_indent--;
1062 pandecode_log("};\n");
1063}
1064
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001065static struct pandecode_fbd
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05001066pandecode_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 +00001067{
1068 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001069 const struct mali_framebuffer *PANDECODE_PTR_VAR(fb, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001070
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001071 struct pandecode_fbd info;
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05001072
1073 if (is_bifrost && fb->msaa.sample_locations) {
1074 /* The blob stores all possible sample locations in a single buffer
1075 * allocated on startup, and just switches the pointer when switching
1076 * MSAA state. For now, we just put the data into the cmdstream, but we
1077 * should do something like what the blob does with a real driver.
1078 *
1079 * There seem to be 32 slots for sample locations, followed by another
1080 * 16. The second 16 is just the center location followed by 15 zeros
1081 * in all the cases I've identified (maybe shader vs. depth/color
1082 * samples?).
1083 */
1084
1085 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(fb->msaa.sample_locations);
1086
1087 const u16 *PANDECODE_PTR_VAR(samples, smem, fb->msaa.sample_locations);
1088
1089 pandecode_log("uint16_t sample_locations_%d[] = {\n", job_no);
1090 pandecode_indent++;
1091
1092 for (int i = 0; i < 32 + 16; i++) {
1093 pandecode_log("%d, %d,\n", samples[2 * i], samples[2 * i + 1]);
1094 }
1095
1096 pandecode_indent--;
1097 pandecode_log("};\n");
1098 }
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001099
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001100 pandecode_log("struct mali_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001101 pandecode_indent++;
1102
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05001103 if (is_bifrost) {
1104 pandecode_log(".msaa = {\n");
1105 pandecode_indent++;
1106
1107 if (fb->msaa.sample_locations)
1108 pandecode_prop("sample_locations = sample_locations_%d", job_no);
1109 else
1110 pandecode_msg("XXX: sample_locations missing\n");
1111
1112 if (fb->msaa.zero1 || fb->msaa.zero2 || fb->msaa.zero4) {
1113 pandecode_msg("XXX: multisampling zero tripped\n");
1114 pandecode_prop("zero1 = %" PRIx64, fb->msaa.zero1);
1115 pandecode_prop("zero2 = %" PRIx64, fb->msaa.zero2);
1116 pandecode_prop("zero4 = %" PRIx64, fb->msaa.zero4);
1117 }
1118
1119 pandecode_indent--;
1120 pandecode_log("},\n");
1121 } else {
1122 pandecode_log(".shared_memory = {\n");
1123 pandecode_indent++;
1124 pandecode_shared_memory(&fb->shared_memory, is_compute);
1125 pandecode_indent--;
1126 pandecode_log("},\n");
1127 }
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -07001128
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001129 info.width = fb->width1 + 1;
1130 info.height = fb->height1 + 1;
1131 info.rt_count = fb->rt_count_1 + 1;
1132
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001133 pandecode_prop("width1 = MALI_POSITIVE(%d)", fb->width1 + 1);
1134 pandecode_prop("height1 = MALI_POSITIVE(%d)", fb->height1 + 1);
1135 pandecode_prop("width2 = MALI_POSITIVE(%d)", fb->width2 + 1);
1136 pandecode_prop("height2 = MALI_POSITIVE(%d)", fb->height2 + 1);
1137
1138 pandecode_prop("unk1 = 0x%x", fb->unk1);
1139 pandecode_prop("unk2 = 0x%x", fb->unk2);
1140 pandecode_prop("rt_count_1 = MALI_POSITIVE(%d)", fb->rt_count_1 + 1);
1141 pandecode_prop("rt_count_2 = %d", fb->rt_count_2);
1142
Alyssa Rosenzweigac689462019-06-14 11:14:01 -07001143 pandecode_log(".mfbd_flags = ");
1144 pandecode_log_decoded_flags(mfbd_flag_info, fb->mfbd_flags);
1145 pandecode_log_cont(",\n");
1146
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -07001147 if (fb->clear_stencil)
1148 pandecode_prop("clear_stencil = 0x%x", fb->clear_stencil);
1149
1150 if (fb->clear_depth)
1151 pandecode_prop("clear_depth = %f", fb->clear_depth);
1152
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -07001153 const struct midgard_tiler_descriptor t = fb->tiler;
Alyssa Rosenzweig39939692020-01-22 08:51:19 -05001154 if (!is_compute)
1155 pandecode_midgard_tiler_descriptor(&t, fb->width1 + 1, fb->height1 + 1, is_fragment, true);
1156 else
1157 pandecode_msg("XXX: skipping compute MFBD, fixme\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001158
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -07001159 if (fb->zero3 || fb->zero4) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001160 pandecode_msg("XXX: framebuffer zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001161 pandecode_prop("zero3 = 0x%" PRIx32, fb->zero3);
1162 pandecode_prop("zero4 = 0x%" PRIx32, fb->zero4);
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -07001163 }
1164
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001165 pandecode_indent--;
1166 pandecode_log("};\n");
1167
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001168 gpu_va += sizeof(struct mali_framebuffer);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001169
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001170 info.has_extra = (fb->mfbd_flags & MALI_MFBD_EXTRA) && is_fragment;
1171
1172 if (info.has_extra) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001173 mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001174 const struct mali_framebuffer_extra *PANDECODE_PTR_VAR(fbx, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001175
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001176 pandecode_log("struct mali_framebuffer_extra fb_extra_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001177 pandecode_indent++;
1178
1179 MEMORY_PROP(fbx, checksum);
1180
1181 if (fbx->checksum_stride)
1182 pandecode_prop("checksum_stride = %d", fbx->checksum_stride);
1183
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001184 pandecode_log(".flags_hi = ");
1185 pandecode_log_decoded_flags(mfbd_extra_flag_hi_info, fbx->flags_lo);
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +00001186 pandecode_log_cont(",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001187
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001188 pandecode_log(".flags_lo = ");
1189 pandecode_log_decoded_flags(mfbd_extra_flag_lo_info, fbx->flags_lo);
1190 pandecode_log_cont(",\n");
1191
Alyssa Rosenzweig0c4a70b2020-02-11 21:50:04 -05001192 pandecode_prop("zs_block = %s", pandecode_block_format(fbx->zs_block));
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001193
1194 if (fbx->zs_block == MALI_BLOCK_AFBC) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001195 pandecode_log(".ds_afbc = {\n");
1196 pandecode_indent++;
1197
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -07001198 MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil_afbc_metadata);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001199 pandecode_prop("depth_stencil_afbc_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001200 fbx->ds_afbc.depth_stencil_afbc_stride);
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -07001201 MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001202
1203 if (fbx->ds_afbc.zero1 || fbx->ds_afbc.padding) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001204 pandecode_msg("XXX: Depth/stencil AFBC zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001205 pandecode_prop("zero1 = 0x%" PRIx32,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001206 fbx->ds_afbc.zero1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001207 pandecode_prop("padding = 0x%" PRIx64,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001208 fbx->ds_afbc.padding);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001209 }
1210
1211 pandecode_indent--;
1212 pandecode_log("},\n");
1213 } else {
1214 pandecode_log(".ds_linear = {\n");
1215 pandecode_indent++;
1216
1217 if (fbx->ds_linear.depth) {
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -07001218 MEMORY_PROP_DIR(fbx->ds_linear, depth);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001219 pandecode_prop("depth_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001220 fbx->ds_linear.depth_stride);
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001221 } else if (fbx->ds_linear.depth_stride) {
1222 pandecode_msg("XXX: depth stride zero tripped %d\n", fbx->ds_linear.depth_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001223 }
1224
1225 if (fbx->ds_linear.stencil) {
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -07001226 MEMORY_PROP_DIR(fbx->ds_linear, stencil);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001227 pandecode_prop("stencil_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001228 fbx->ds_linear.stencil_stride);
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001229 } else if (fbx->ds_linear.stencil_stride) {
1230 pandecode_msg("XXX: stencil stride zero tripped %d\n", fbx->ds_linear.stencil_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001231 }
1232
1233 if (fbx->ds_linear.depth_stride_zero ||
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001234 fbx->ds_linear.stencil_stride_zero ||
1235 fbx->ds_linear.zero1 || fbx->ds_linear.zero2) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001236 pandecode_msg("XXX: Depth/stencil zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001237 pandecode_prop("depth_stride_zero = 0x%x",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001238 fbx->ds_linear.depth_stride_zero);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001239 pandecode_prop("stencil_stride_zero = 0x%x",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001240 fbx->ds_linear.stencil_stride_zero);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001241 pandecode_prop("zero1 = 0x%" PRIx32,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001242 fbx->ds_linear.zero1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001243 pandecode_prop("zero2 = 0x%" PRIx32,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001244 fbx->ds_linear.zero2);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001245 }
1246
1247 pandecode_indent--;
1248 pandecode_log("},\n");
1249 }
1250
1251 if (fbx->zero3 || fbx->zero4) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001252 pandecode_msg("XXX: fb_extra zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001253 pandecode_prop("zero3 = 0x%" PRIx64, fbx->zero3);
1254 pandecode_prop("zero4 = 0x%" PRIx64, fbx->zero4);
1255 }
1256
1257 pandecode_indent--;
1258 pandecode_log("};\n");
1259
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001260 gpu_va += sizeof(struct mali_framebuffer_extra);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001261 }
1262
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -07001263 if (is_fragment)
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001264 pandecode_render_target(gpu_va, job_no, fb);
Alyssa Rosenzweiga9fc1c82019-06-23 11:29:46 -07001265
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001266 return info;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001267}
1268
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001269/* Just add a comment decoding the shift/odd fields forming the padded vertices
1270 * count */
1271
1272static void
1273pandecode_padded_vertices(unsigned shift, unsigned k)
1274{
1275 unsigned odd = 2*k + 1;
1276 unsigned pot = 1 << shift;
1277 pandecode_msg("padded_num_vertices = %d\n", odd * pot);
1278}
1279
1280/* Given a magic divisor, recover what we were trying to divide by.
1281 *
1282 * Let m represent the magic divisor. By definition, m is an element on Z, whre
1283 * 0 <= m < 2^N, for N bits in m.
1284 *
1285 * Let q represent the number we would like to divide by.
1286 *
1287 * By definition of a magic divisor for N-bit unsigned integers (a number you
1288 * multiply by to magically get division), m is a number such that:
1289 *
1290 * (m * x) & (2^N - 1) = floor(x/q).
1291 * for all x on Z where 0 <= x < 2^N
1292 *
1293 * Ignore the case where any of the above values equals zero; it is irrelevant
1294 * for our purposes (instanced arrays).
1295 *
1296 * Choose x = q. Then:
1297 *
1298 * (m * x) & (2^N - 1) = floor(x/q).
1299 * (m * q) & (2^N - 1) = floor(q/q).
1300 *
1301 * floor(q/q) = floor(1) = 1, therefore:
1302 *
1303 * (m * q) & (2^N - 1) = 1
1304 *
1305 * Recall the identity that the bitwise AND of one less than a power-of-two
1306 * equals the modulo with that power of two, i.e. for all x:
1307 *
1308 * x & (2^N - 1) = x % N
1309 *
1310 * Therefore:
1311 *
1312 * mq % (2^N) = 1
1313 *
1314 * By definition, a modular multiplicative inverse of a number m is the number
1315 * q such that with respect to a modulos M:
1316 *
1317 * mq % M = 1
1318 *
1319 * Therefore, q is the modular multiplicative inverse of m with modulus 2^N.
1320 *
1321 */
1322
1323static void
1324pandecode_magic_divisor(uint32_t magic, unsigned shift, unsigned orig_divisor, unsigned extra)
1325{
Alyssa Rosenzweigd07c8462019-07-22 08:34:26 -07001326#if 0
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001327 /* Compute the modular inverse of `magic` with respect to 2^(32 -
1328 * shift) the most lame way possible... just repeatedly add.
1329 * Asymptoptically slow but nobody cares in practice, unless you have
1330 * massive numbers of vertices or high divisors. */
1331
1332 unsigned inverse = 0;
1333
1334 /* Magic implicitly has the highest bit set */
1335 magic |= (1 << 31);
1336
1337 /* Depending on rounding direction */
1338 if (extra)
1339 magic++;
1340
1341 for (;;) {
1342 uint32_t product = magic * inverse;
1343
1344 if (shift) {
1345 product >>= shift;
1346 }
1347
1348 if (product == 1)
1349 break;
1350
1351 ++inverse;
1352 }
1353
1354 pandecode_msg("dividing by %d (maybe off by two)\n", inverse);
1355
1356 /* Recall we're supposed to divide by (gl_level_divisor *
1357 * padded_num_vertices) */
1358
1359 unsigned padded_num_vertices = inverse / orig_divisor;
1360
1361 pandecode_msg("padded_num_vertices = %d\n", padded_num_vertices);
Alyssa Rosenzweigd07c8462019-07-22 08:34:26 -07001362#endif
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001363}
1364
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001365static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001366pandecode_attributes(const struct pandecode_mapped_memory *mem,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001367 mali_ptr addr, int job_no, char *suffix,
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001368 int count, bool varying, enum mali_job_type job_type)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001369{
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001370 char *prefix = varying ? "varying" : "attribute";
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07001371 assert(addr);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001372
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07001373 if (!count) {
1374 pandecode_msg("warn: No %s records\n", prefix);
Alyssa Rosenzweig5ad83012019-08-08 09:23:29 -07001375 return;
1376 }
1377
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001378 union mali_attr *attr = pandecode_fetch_gpu_mem(mem, addr, sizeof(union mali_attr) * count);
1379
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001380 for (int i = 0; i < count; ++i) {
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001381 /* First, check for special records */
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001382 if (attr[i].elements < MALI_RECORD_SPECIAL) {
1383 if (attr[i].size)
1384 pandecode_msg("XXX: tripped size=%d\n", attr[i].size);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001385
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001386 if (attr[i].stride) {
1387 /* gl_InstanceID passes a magic divisor in the
1388 * stride field to divide by the padded vertex
1389 * count. No other records should do so, so
1390 * stride should otherwise be zero. Note that
1391 * stride in the usual attribute sense doesn't
1392 * apply to special records. */
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001393
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001394 bool has_divisor = attr[i].elements == MALI_ATTR_INSTANCEID;
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001395
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001396 pandecode_log_cont("/* %smagic divisor = %X */ ",
1397 has_divisor ? "" : "XXX: ", attr[i].stride);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001398 }
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001399
1400 if (attr[i].shift || attr[i].extra_flags) {
1401 /* Attributes use these fields for
1402 * instancing/padding/etc type issues, but
1403 * varyings don't */
1404
1405 pandecode_log_cont("/* %sshift=%d, extra=%d */ ",
1406 varying ? "XXX: " : "",
1407 attr[i].shift, attr[i].extra_flags);
1408 }
1409
1410 /* Print the special record name */
1411 bool attribute = false;
1412 pandecode_log("%s_%d = %s;\n", prefix, i, pandecode_special_record(attr[i].elements, &attribute));
1413
1414 /* Sanity check */
1415 if (attribute == varying)
1416 pandecode_msg("XXX: mismatched special record\n");
1417
1418 continue;
1419 }
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001420
Alyssa Rosenzweigbe5e30c2019-08-20 15:59:03 -07001421 enum mali_attr_mode mode = attr[i].elements & 7;
1422
1423 if (mode == MALI_ATTR_UNUSED)
1424 pandecode_msg("XXX: unused attribute record\n");
1425
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001426 /* For non-linear records, we need to print the type of record */
1427 if (mode != MALI_ATTR_LINEAR)
1428 pandecode_log_cont("%s ", pandecode_attr_mode_short(mode));
1429
1430 /* Print the name to link with attr_meta */
1431 pandecode_log_cont("%s_%d", prefix, i);
1432
1433 /* Print the stride and size */
1434 pandecode_log_cont("<%u>[%u]", attr[i].stride, attr[i].size);
1435
Alyssa Rosenzweigcaec0b32019-08-22 13:09:00 -07001436 /* TODO: Sanity check the quotient itself. It must be equal to
1437 * (or be greater than, if the driver added padding) the padded
1438 * vertex count. */
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001439
1440 /* Finally, print the pointer */
Alyssa Rosenzweigbe5e30c2019-08-20 15:59:03 -07001441 mali_ptr raw_elements = attr[i].elements & ~7;
1442 char *a = pointer_as_memory_reference(raw_elements);
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001443 pandecode_log_cont(" = (%s);\n", a);
Alyssa Rosenzweigbe5e30c2019-08-20 15:59:03 -07001444 free(a);
1445
Alyssa Rosenzweig62e66732019-08-20 16:02:38 -07001446 /* Check the pointer */
1447 pandecode_validate_buffer(raw_elements, attr[i].size);
1448
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001449 /* shift/extra_flags exist only for instanced */
1450 if (attr[i].shift | attr[i].extra_flags) {
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001451 /* These are set to random values by the blob for
1452 * varyings, most likely a symptom of uninitialized
1453 * memory where the hardware masked the bug. As such we
1454 * put this at a warning, not an error. */
1455
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001456 if (mode == MALI_ATTR_LINEAR)
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001457 pandecode_msg("warn: instancing fields set for linear\n");
Alyssa Rosenzweigfc69a5c2019-08-21 08:05:02 -07001458
1459 pandecode_prop("shift = %d", attr[i].shift);
1460 pandecode_prop("extra_flags = %d", attr[i].extra_flags);
1461 }
Alyssa Rosenzweige9e22542019-06-27 10:18:22 -07001462
1463 /* Decode further where possible */
1464
1465 if (mode == MALI_ATTR_MODULO) {
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001466 pandecode_padded_vertices(
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001467 attr[i].shift,
1468 attr[i].extra_flags);
Alyssa Rosenzweige9e22542019-06-27 10:18:22 -07001469 }
1470
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001471 if (mode == MALI_ATTR_NPOT_DIVIDE) {
1472 i++;
1473 pandecode_log("{\n");
1474 pandecode_indent++;
1475 pandecode_prop("unk = 0x%x", attr[i].unk);
1476 pandecode_prop("magic_divisor = 0x%08x", attr[i].magic_divisor);
1477 if (attr[i].zero != 0)
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001478 pandecode_prop("XXX: zero tripped (0x%x)\n", attr[i].zero);
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001479 pandecode_prop("divisor = %d", attr[i].divisor);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001480 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 -07001481 pandecode_indent--;
1482 pandecode_log("}, \n");
1483 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001484
1485 }
1486
Alyssa Rosenzweiga68fe4b2019-08-21 11:43:13 -07001487 pandecode_log("\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001488}
1489
1490static mali_ptr
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001491pandecode_shader_address(const char *name, mali_ptr ptr)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001492{
1493 /* TODO: Decode flags */
1494 mali_ptr shader_ptr = ptr & ~15;
1495
1496 char *a = pointer_as_memory_reference(shader_ptr);
1497 pandecode_prop("%s = (%s) | %d", name, a, (int) (ptr & 15));
1498 free(a);
1499
1500 return shader_ptr;
1501}
1502
1503static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001504pandecode_stencil(const char *name, const struct mali_stencil_test *stencil)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001505{
Alyssa Rosenzweig9ce45ac2019-08-21 08:59:57 -07001506 unsigned any_nonzero =
1507 stencil->ref | stencil->mask | stencil->func |
1508 stencil->sfail | stencil->dpfail | stencil->dppass;
1509
1510 if (any_nonzero == 0)
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07001511 return;
1512
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -07001513 const char *func = pandecode_func(stencil->func);
1514 const char *sfail = pandecode_stencil_op(stencil->sfail);
1515 const char *dpfail = pandecode_stencil_op(stencil->dpfail);
1516 const char *dppass = pandecode_stencil_op(stencil->dppass);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001517
1518 if (stencil->zero)
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001519 pandecode_msg("XXX: stencil zero tripped: %X\n", stencil->zero);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001520
1521 pandecode_log(".stencil_%s = {\n", name);
1522 pandecode_indent++;
1523 pandecode_prop("ref = %d", stencil->ref);
1524 pandecode_prop("mask = 0x%02X", stencil->mask);
1525 pandecode_prop("func = %s", func);
1526 pandecode_prop("sfail = %s", sfail);
1527 pandecode_prop("dpfail = %s", dpfail);
1528 pandecode_prop("dppass = %s", dppass);
1529 pandecode_indent--;
1530 pandecode_log("},\n");
1531}
1532
1533static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001534pandecode_blend_equation(const struct mali_blend_equation *blend)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001535{
1536 if (blend->zero1)
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001537 pandecode_msg("XXX: blend zero tripped: %X\n", blend->zero1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001538
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001539 pandecode_log(".equation = {\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001540 pandecode_indent++;
1541
1542 pandecode_prop("rgb_mode = 0x%X", blend->rgb_mode);
1543 pandecode_prop("alpha_mode = 0x%X", blend->alpha_mode);
1544
1545 pandecode_log(".color_mask = ");
1546 pandecode_log_decoded_flags(mask_flag_info, blend->color_mask);
1547 pandecode_log_cont(",\n");
1548
1549 pandecode_indent--;
1550 pandecode_log("},\n");
1551}
1552
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001553/* Decodes a Bifrost blend constant. See the notes in bifrost_blend_rt */
1554
1555static unsigned
1556decode_bifrost_constant(u16 constant)
1557{
1558 float lo = (float) (constant & 0xFF);
1559 float hi = (float) (constant >> 8);
1560
1561 return (hi / 255.0) + (lo / 65535.0);
1562}
1563
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001564static mali_ptr
1565pandecode_bifrost_blend(void *descs, int job_no, int rt_no)
1566{
1567 struct bifrost_blend_rt *b =
1568 ((struct bifrost_blend_rt *) descs) + rt_no;
1569
1570 pandecode_log("struct bifrost_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no);
1571 pandecode_indent++;
1572
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001573 pandecode_prop("flags = 0x%" PRIx16, b->flags);
1574 pandecode_prop("constant = 0x%" PRIx8 " /* %f */",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001575 b->constant, decode_bifrost_constant(b->constant));
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001576
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001577 /* TODO figure out blend shader enable bit */
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001578 pandecode_blend_equation(&b->equation);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001579 pandecode_prop("unk2 = 0x%" PRIx16, b->unk2);
1580 pandecode_prop("index = 0x%" PRIx16, b->index);
1581 pandecode_prop("shader = 0x%" PRIx32, b->shader);
1582
1583 pandecode_indent--;
1584 pandecode_log("},\n");
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001585
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001586 return 0;
1587}
1588
1589static mali_ptr
1590pandecode_midgard_blend(union midgard_blend *blend, bool is_shader)
1591{
Alyssa Rosenzweig9ce45ac2019-08-21 08:59:57 -07001592 /* constant/equation is in a union */
1593 if (!blend->shader)
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07001594 return 0;
1595
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001596 pandecode_log(".blend = {\n");
1597 pandecode_indent++;
1598
1599 if (is_shader) {
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001600 pandecode_shader_address("shader", blend->shader);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001601 } else {
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001602 pandecode_blend_equation(&blend->equation);
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001603 pandecode_prop("constant = %f", blend->constant);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001604 }
1605
1606 pandecode_indent--;
1607 pandecode_log("},\n");
1608
1609 /* Return blend shader to disassemble if present */
1610 return is_shader ? (blend->shader & ~0xF) : 0;
1611}
1612
1613static mali_ptr
1614pandecode_midgard_blend_mrt(void *descs, int job_no, int rt_no)
1615{
1616 struct midgard_blend_rt *b =
1617 ((struct midgard_blend_rt *) descs) + rt_no;
1618
1619 /* Flags determine presence of blend shader */
1620 bool is_shader = (b->flags & 0xF) >= 0x2;
1621
1622 pandecode_log("struct midgard_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no);
1623 pandecode_indent++;
1624
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001625 pandecode_prop("flags = 0x%" PRIx64, b->flags);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001626
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -07001627 union midgard_blend blend = b->blend;
1628 mali_ptr shader = pandecode_midgard_blend(&blend, is_shader);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001629
1630 pandecode_indent--;
1631 pandecode_log("};\n");
1632
1633 return shader;
1634}
1635
Alyssa Rosenzweig2208eb92019-08-20 13:59:26 -07001636/* Attributes and varyings have descriptor records, which contain information
1637 * about their format and ordering with the attribute/varying buffers. We'll
1638 * want to validate that the combinations specified are self-consistent.
1639 */
1640
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001641static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001642pandecode_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 +00001643{
1644 char base[128];
1645 char *prefix = varying ? "varying" : "attribute";
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001646 unsigned max_index = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001647 snprintf(base, sizeof(base), "%s_meta", prefix);
1648
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001649 struct mali_attr_meta *attr_meta;
Alyssa Rosenzweig26ed4312019-08-22 11:21:35 -07001650 mali_ptr p = varying ? v->varying_meta : v->attribute_meta;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001651
1652 struct pandecode_mapped_memory *attr_mem = pandecode_find_mapped_gpu_mem_containing(p);
1653
1654 for (int i = 0; i < count; ++i, p += sizeof(struct mali_attr_meta)) {
1655 attr_meta = pandecode_fetch_gpu_mem(attr_mem, p,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001656 sizeof(*attr_mem));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001657
Alyssa Rosenzweiga94fb782019-08-20 13:33:39 -07001658 /* If the record is discard, it should be zero for everything else */
1659
1660 if (attr_meta->format == MALI_VARYING_DISCARD) {
1661 uint64_t zero =
1662 attr_meta->index |
1663 attr_meta->unknown1 |
1664 attr_meta->unknown3 |
1665 attr_meta->src_offset;
1666
1667 if (zero)
1668 pandecode_msg("XXX: expected empty record for varying discard\n");
1669
1670 /* We want to look for a literal 0000 swizzle -- this
1671 * is not encoded with all zeroes, however */
1672
1673 enum mali_channel z = MALI_CHANNEL_ZERO;
1674 unsigned zero_swizzle = z | (z << 3) | (z << 6) | (z << 9);
1675 bool good_swizzle = attr_meta->swizzle == zero_swizzle;
1676
1677 if (!good_swizzle)
1678 pandecode_msg("XXX: expected zero swizzle for discard\n");
1679
1680 if (!varying)
1681 pandecode_msg("XXX: cannot discard attribute\n");
1682
1683 /* If we're all good, omit the record */
1684 if (!zero && varying && good_swizzle) {
1685 pandecode_log("/* discarded varying */\n");
1686 continue;
1687 }
1688 }
1689
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001690 if (attr_meta->index > max_index)
1691 max_index = attr_meta->index;
Alyssa Rosenzweig2208eb92019-08-20 13:59:26 -07001692
Alyssa Rosenzweig00be5d72019-08-20 13:19:40 -07001693 if (attr_meta->unknown1 != 0x2) {
1694 pandecode_msg("XXX: expected unknown1 = 0x2\n");
1695 pandecode_prop("unknown1 = 0x%" PRIx64, (u64) attr_meta->unknown1);
1696 }
1697
1698 if (attr_meta->unknown3) {
1699 pandecode_msg("XXX: unexpected unknown3 set\n");
1700 pandecode_prop("unknown3 = 0x%" PRIx64, (u64) attr_meta->unknown3);
1701 }
1702
Alyssa Rosenzweig9b203952019-08-20 15:24:45 -07001703 pandecode_format_short(attr_meta->format, false);
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -07001704 pandecode_log_cont(" %s_%u", prefix, attr_meta->index);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001705
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -07001706 if (attr_meta->src_offset)
1707 pandecode_log_cont("[%u]", attr_meta->src_offset);
1708
1709 pandecode_swizzle(attr_meta->swizzle, attr_meta->format);
1710
1711 pandecode_log_cont(";\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001712 }
1713
Alyssa Rosenzweiga68fe4b2019-08-21 11:43:13 -07001714 pandecode_log("\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001715
Alyssa Rosenzweig9e66ff32019-07-31 11:52:52 -07001716 return count ? (max_index + 1) : 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001717}
1718
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001719/* return bits [lo, hi) of word */
1720static u32
1721bits(u32 word, u32 lo, u32 hi)
1722{
1723 if (hi - lo >= 32)
1724 return word; // avoid undefined behavior with the shift
1725
1726 return (word >> lo) & ((1 << (hi - lo)) - 1);
1727}
1728
1729static void
Alyssa Rosenzweig385a4f72019-12-24 22:33:47 -05001730pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bool graphics)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001731{
1732 pandecode_log_cont("{\n");
1733 pandecode_indent++;
1734
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001735 /* Decode invocation_count. See the comment before the definition of
1736 * invocation_count for an explanation.
1737 */
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001738
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001739 unsigned size_y_shift = bits(p->invocation_shifts, 0, 5);
1740 unsigned size_z_shift = bits(p->invocation_shifts, 5, 10);
1741 unsigned workgroups_x_shift = bits(p->invocation_shifts, 10, 16);
1742 unsigned workgroups_y_shift = bits(p->invocation_shifts, 16, 22);
1743 unsigned workgroups_z_shift = bits(p->invocation_shifts, 22, 28);
1744 unsigned workgroups_x_shift_2 = bits(p->invocation_shifts, 28, 32);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001745
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001746 unsigned size_x = bits(p->invocation_count, 0, size_y_shift) + 1;
1747 unsigned size_y = bits(p->invocation_count, size_y_shift, size_z_shift) + 1;
1748 unsigned size_z = bits(p->invocation_count, size_z_shift, workgroups_x_shift) + 1;
1749
1750 unsigned groups_x = bits(p->invocation_count, workgroups_x_shift, workgroups_y_shift) + 1;
1751 unsigned groups_y = bits(p->invocation_count, workgroups_y_shift, workgroups_z_shift) + 1;
1752 unsigned groups_z = bits(p->invocation_count, workgroups_z_shift, 32) + 1;
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001753
1754 /* Even though we have this decoded, we want to ensure that the
1755 * representation is "unique" so we don't lose anything by printing only
1756 * the final result. More specifically, we need to check that we were
1757 * passed something in canonical form, since the definition per the
1758 * hardware is inherently not unique. How? Well, take the resulting
1759 * decode and pack it ourselves! If it is bit exact with what we
1760 * decoded, we're good to go. */
1761
1762 struct mali_vertex_tiler_prefix ref;
Alyssa Rosenzweig385a4f72019-12-24 22:33:47 -05001763 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 -07001764
1765 bool canonical =
1766 (p->invocation_count == ref.invocation_count) &&
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001767 (p->invocation_shifts == ref.invocation_shifts);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001768
1769 if (!canonical) {
1770 pandecode_msg("XXX: non-canonical workgroups packing\n");
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001771 pandecode_msg("expected: %X, %X",
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001772 ref.invocation_count,
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001773 ref.invocation_shifts);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001774
1775 pandecode_prop("invocation_count = 0x%" PRIx32, p->invocation_count);
Alyssa Rosenzweig63787972019-12-12 11:28:08 -05001776 pandecode_prop("size_y_shift = %d", size_y_shift);
1777 pandecode_prop("size_z_shift = %d", size_z_shift);
1778 pandecode_prop("workgroups_x_shift = %d", workgroups_x_shift);
1779 pandecode_prop("workgroups_y_shift = %d", workgroups_y_shift);
1780 pandecode_prop("workgroups_z_shift = %d", workgroups_z_shift);
1781 pandecode_prop("workgroups_x_shift_2 = %d", workgroups_x_shift_2);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001782 }
1783
1784 /* Regardless, print the decode */
1785 pandecode_msg("size (%d, %d, %d), count (%d, %d, %d)\n",
1786 size_x, size_y, size_z,
1787 groups_x, groups_y, groups_z);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001788
1789 /* TODO: Decode */
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -07001790 if (p->unknown_draw)
1791 pandecode_prop("unknown_draw = 0x%" PRIx32, p->unknown_draw);
1792
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001793 pandecode_prop("workgroups_x_shift_3 = 0x%" PRIx32, p->workgroups_x_shift_3);
1794
Alyssa Rosenzweigd9f33952019-08-16 13:30:39 -07001795 if (p->draw_mode != MALI_DRAW_NONE)
1796 pandecode_prop("draw_mode = %s", pandecode_draw_mode(p->draw_mode));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001797
1798 /* Index count only exists for tiler jobs anyway */
1799
1800 if (p->index_count)
1801 pandecode_prop("index_count = MALI_POSITIVE(%" PRId32 ")", p->index_count + 1);
1802
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -07001803
1804 unsigned index_raw_size = (p->unknown_draw & MALI_DRAW_INDEXED_SIZE);
1805 index_raw_size >>= MALI_DRAW_INDEXED_SHIFT;
1806
1807 /* Validate an index buffer is present if we need one. TODO: verify
1808 * relationship between invocation_count and index_count */
1809
1810 if (p->indices) {
1811 unsigned count = p->index_count;
1812
1813 /* Grab the size */
1814 unsigned size = (index_raw_size == 0x3) ? 4 : index_raw_size;
1815
1816 /* Ensure we got a size, and if so, validate the index buffer
1817 * is large enough to hold a full set of indices of the given
1818 * size */
1819
1820 if (!index_raw_size)
1821 pandecode_msg("XXX: index size missing\n");
1822 else
1823 pandecode_validate_buffer(p->indices, count * size);
1824 } else if (index_raw_size)
1825 pandecode_msg("XXX: unexpected index size %u\n", index_raw_size);
1826
Rohan Garg16edd562019-07-17 18:50:13 +02001827 if (p->offset_bias_correction)
1828 pandecode_prop("offset_bias_correction = %d", p->offset_bias_correction);
Alyssa Rosenzweig4fcd3182019-03-31 04:15:46 +00001829
Alyssa Rosenzweigc0642eb2019-08-20 13:21:28 -07001830 /* TODO: Figure out what this is. It's not zero */
1831 pandecode_prop("zero1 = 0x%" PRIx32, p->zero1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001832
1833 pandecode_indent--;
1834 pandecode_log("},\n");
1835}
1836
1837static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001838pandecode_uniform_buffers(mali_ptr pubufs, int ubufs_count, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001839{
1840 struct pandecode_mapped_memory *umem = pandecode_find_mapped_gpu_mem_containing(pubufs);
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05001841 uint64_t *PANDECODE_PTR_VAR(ubufs, umem, pubufs);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001842
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001843 for (int i = 0; i < ubufs_count; i++) {
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05001844 unsigned size = (ubufs[i] & ((1 << 10) - 1)) * 16;
1845 mali_ptr addr = (ubufs[i] >> 10) << 2;
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001846
1847 pandecode_validate_buffer(addr, size);
1848
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05001849 char *ptr = pointer_as_memory_reference(addr);
Alyssa Rosenzweig6ec33b42019-08-21 11:46:06 -07001850 pandecode_log("ubuf_%d[%u] = %s;\n", i, size, ptr);
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001851 free(ptr);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001852 }
1853
Alyssa Rosenzweig6ec33b42019-08-21 11:46:06 -07001854 pandecode_log("\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001855}
1856
1857static void
Alyssa Rosenzweigae84f162019-08-22 11:30:13 -07001858pandecode_uniforms(mali_ptr uniforms, unsigned uniform_count)
1859{
1860 pandecode_validate_buffer(uniforms, uniform_count * 16);
1861
1862 char *ptr = pointer_as_memory_reference(uniforms);
1863 pandecode_log("vec4 uniforms[%u] = %s;\n", uniform_count, ptr);
1864 free(ptr);
1865}
1866
Alyssa Rosenzweig09671c82019-12-23 11:40:40 -05001867static const char *
1868shader_type_for_job(unsigned type)
1869{
1870 switch (type) {
1871 case JOB_TYPE_VERTEX: return "VERTEX";
1872 case JOB_TYPE_TILER: return "FRAGMENT";
1873 case JOB_TYPE_COMPUTE: return "COMPUTE";
1874 default:
1875 return "UNKNOWN";
1876 }
1877}
1878
Alyssa Rosenzweigc4a4f3d2019-08-14 09:19:54 -07001879static unsigned shader_id = 0;
1880
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001881static struct midgard_disasm_stats
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001882pandecode_shader_disassemble(mali_ptr shader_ptr, int shader_no, int type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001883 bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001884{
1885 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(shader_ptr);
1886 uint8_t *PANDECODE_PTR_VAR(code, mem, shader_ptr);
1887
1888 /* Compute maximum possible size */
1889 size_t sz = mem->length - (shader_ptr - mem->gpu_va);
1890
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001891 /* Print some boilerplate to clearly denote the assembly (which doesn't
1892 * obey indentation rules), and actually do the disassembly! */
1893
Icecream95be22c072020-01-23 10:14:35 +13001894 pandecode_log_cont("\n\n");
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00001895
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001896 struct midgard_disasm_stats stats;
Alyssa Rosenzweigc4a4f3d2019-08-14 09:19:54 -07001897
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00001898 if (is_bifrost) {
Icecream95be22c072020-01-23 10:14:35 +13001899 disassemble_bifrost(pandecode_dump_stream, code, sz, false);
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001900
1901 /* TODO: Extend stats to Bifrost */
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001902 stats.texture_count = -128;
1903 stats.sampler_count = -128;
1904 stats.attribute_count = -128;
1905 stats.varying_count = -128;
1906 stats.uniform_count = -128;
1907 stats.uniform_buffer_count = -128;
1908 stats.work_count = -128;
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001909
1910 stats.instruction_count = 0;
1911 stats.bundle_count = 0;
1912 stats.quadword_count = 0;
Alyssa Rosenzweigd6d6d632019-08-30 17:00:09 -07001913 stats.helper_invocations = false;
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00001914 } else {
Icecream95be22c072020-01-23 10:14:35 +13001915 stats = disassemble_midgard(pandecode_dump_stream,
1916 code, sz, gpu_id,
Alyssa Rosenzweigac14fac2019-11-07 09:31:02 -05001917 type == JOB_TYPE_TILER ?
1918 MESA_SHADER_FRAGMENT : MESA_SHADER_VERTEX);
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00001919 }
1920
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05001921 /* Print shader-db stats. Skip COMPUTE jobs since they are used for
1922 * driver-internal purposes with the blob and interfere */
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001923
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05001924 bool should_shaderdb = type != JOB_TYPE_COMPUTE;
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001925
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05001926 if (should_shaderdb) {
1927 unsigned nr_threads =
1928 (stats.work_count <= 4) ? 4 :
1929 (stats.work_count <= 8) ? 2 :
1930 1;
1931
Icecream95be22c072020-01-23 10:14:35 +13001932 pandecode_log_cont("shader%d - MESA_SHADER_%s shader: "
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05001933 "%u inst, %u bundles, %u quadwords, "
Alyssa Rosenzweig0cc6e332019-12-23 11:50:28 -05001934 "%u registers, %u threads, 0 loops, 0:0 spills:fills\n\n\n",
Alyssa Rosenzweigead35f52019-12-23 11:48:23 -05001935 shader_id++,
1936 shader_type_for_job(type),
1937 stats.instruction_count, stats.bundle_count, stats.quadword_count,
1938 stats.work_count, nr_threads);
1939 }
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001940
1941
1942 return stats;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001943}
1944
1945static void
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07001946pandecode_texture(mali_ptr u,
1947 struct pandecode_mapped_memory *tmem,
1948 unsigned job_no, unsigned tex)
1949{
1950 struct mali_texture_descriptor *PANDECODE_PTR_VAR(t, tmem, u);
1951
1952 pandecode_log("struct mali_texture_descriptor texture_descriptor_%"PRIx64"_%d_%d = {\n", u, job_no, tex);
1953 pandecode_indent++;
1954
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07001955 struct mali_texture_format f = t->format;
1956
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07001957 /* See the definiton of enum mali_texture_type */
1958
Alyssa Rosenzweig68b90302019-08-20 15:46:39 -07001959 bool is_cube = f.type == MALI_TEX_CUBE;
1960 unsigned dimension = is_cube ? 2 : f.type;
1961
1962 pandecode_make_indent();
1963
1964 /* TODO: Are there others? */
1965 bool is_zs = f.format == MALI_Z32_UNORM;
1966
1967 /* Recall Z/S switched the meaning of linear/tiled .. */
1968 if (is_zs && f.layout == MALI_TEXTURE_LINEAR)
1969 pandecode_msg("XXX: depth/stencil cannot be tiled\n");
1970
1971 /* Print the layout. Default is linear; a modifier can denote AFBC or
1972 * u-interleaved/tiled modes */
1973
1974 if (f.layout == MALI_TEXTURE_AFBC)
1975 pandecode_log_cont("afbc");
1976 else if (f.layout == MALI_TEXTURE_TILED)
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -05001977 pandecode_log_cont("tiled");
Alyssa Rosenzweig68b90302019-08-20 15:46:39 -07001978 else if (f.layout == MALI_TEXTURE_LINEAR)
1979 pandecode_log_cont("linear");
1980 else
1981 pandecode_msg("XXX: invalid texture layout 0x%X\n", f.layout);
1982
1983 pandecode_swizzle(t->swizzle, f.format);
1984 pandecode_log_cont(" ");
1985
1986 /* Distinguish cube/2D with modifier */
1987
1988 if (is_cube)
1989 pandecode_log_cont("cube ");
1990
1991 pandecode_format_short(f.format, f.srgb);
1992 pandecode_swizzle(f.swizzle, f.format);
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07001993
1994 /* All four width/height/depth/array_size dimensions are present
1995 * regardless of the type of texture, but it is an error to have
1996 * non-zero dimensions for unused dimensions. Verify this. array_size
1997 * can always be set, as can width. */
1998
1999 if (t->height && dimension < 2)
2000 pandecode_msg("XXX: nonzero height for <2D texture\n");
2001
2002 if (t->depth && dimension < 3)
2003 pandecode_msg("XXX: nonzero depth for <2D texture\n");
2004
2005 /* Print only the dimensions that are actually there */
2006
Alyssa Rosenzweig68b90302019-08-20 15:46:39 -07002007 pandecode_log_cont(": %d", t->width + 1);
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002008
2009 if (dimension >= 2)
2010 pandecode_log_cont("x%u", t->height + 1);
2011
2012 if (dimension >= 3)
2013 pandecode_log_cont("x%u", t->depth + 1);
2014
2015 if (t->array_size)
2016 pandecode_log_cont("[%u]", t->array_size + 1);
2017
Alyssa Rosenzweig96f6b8a2019-08-20 15:24:18 -07002018 if (t->levels)
2019 pandecode_log_cont(" mip %u", t->levels);
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002020
Alyssa Rosenzweig96f6b8a2019-08-20 15:24:18 -07002021 pandecode_log_cont("\n");
Alyssa Rosenzweig024f9cf2019-08-20 14:58:46 -07002022
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -07002023 if (f.unknown1 | f.zero) {
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002024 pandecode_msg("XXX: texture format zero tripped\n");
2025 pandecode_prop("unknown1 = %" PRId32, f.unknown1);
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -07002026 pandecode_prop("zero = %" PRId32, f.zero);
2027 }
2028
2029 if (!f.unknown2) {
2030 pandecode_msg("XXX: expected unknown texture bit set\n");
Tomeu Vizoso2d5c4332019-12-19 14:02:54 +01002031 pandecode_prop("unknown2 = %" PRId32, f.unknown2);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002032 }
2033
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002034 if (t->swizzle_zero) {
2035 pandecode_msg("XXX: swizzle zero tripped\n");
2036 pandecode_prop("swizzle_zero = %d", t->swizzle_zero);
2037 }
2038
2039 if (t->unknown3 | t->unknown3A | t->unknown5 | t->unknown6 | t->unknown7) {
2040 pandecode_msg("XXX: texture zero tripped\n");
2041 pandecode_prop("unknown3 = %" PRId16, t->unknown3);
2042 pandecode_prop("unknown3A = %" PRId8, t->unknown3A);
2043 pandecode_prop("unknown5 = 0x%" PRIx32, t->unknown5);
2044 pandecode_prop("unknown6 = 0x%" PRIx32, t->unknown6);
2045 pandecode_prop("unknown7 = 0x%" PRIx32, t->unknown7);
2046 }
2047
2048 pandecode_log(".payload = {\n");
2049 pandecode_indent++;
2050
2051 /* A bunch of bitmap pointers follow.
2052 * We work out the correct number,
2053 * based on the mipmap/cubemap
2054 * properties, but dump extra
2055 * possibilities to futureproof */
2056
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -05002057 int bitmap_count = t->levels + 1;
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002058
2059 /* Miptree for each face */
2060 if (f.type == MALI_TEX_CUBE)
2061 bitmap_count *= 6;
Tomeu Vizoso255227e2020-02-04 08:29:50 +01002062 else if (f.type == MALI_TEX_3D && f.layout == MALI_TEXTURE_LINEAR)
2063 bitmap_count *= (t->depth + 1);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002064
2065 /* Array of textures */
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -05002066 bitmap_count *= (t->array_size + 1);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002067
2068 /* Stride for each element */
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -07002069 if (f.manual_stride)
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002070 bitmap_count *= 2;
2071
Tomeu Vizosoed3eede2020-01-02 11:24:19 +01002072 mali_ptr *pointers_and_strides = pandecode_fetch_gpu_mem(tmem,
2073 u + sizeof(*t), sizeof(mali_ptr) * bitmap_count);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002074 for (int i = 0; i < bitmap_count; ++i) {
2075 /* How we dump depends if this is a stride or a pointer */
2076
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -07002077 if (f.manual_stride && (i & 1)) {
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002078 /* signed 32-bit snuck in as a 64-bit pointer */
Tomeu Vizosoed3eede2020-01-02 11:24:19 +01002079 uint64_t stride_set = pointers_and_strides[i];
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002080 uint32_t clamped_stride = stride_set;
2081 int32_t stride = clamped_stride;
2082 assert(stride_set == clamped_stride);
2083 pandecode_log("(mali_ptr) %d /* stride */, \n", stride);
2084 } else {
Tomeu Vizosoed3eede2020-01-02 11:24:19 +01002085 char *a = pointer_as_memory_reference(pointers_and_strides[i]);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002086 pandecode_log("%s, \n", a);
2087 free(a);
2088 }
2089 }
2090
2091 pandecode_indent--;
2092 pandecode_log("},\n");
2093
2094 pandecode_indent--;
2095 pandecode_log("};\n");
2096}
2097
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002098/* 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 */
2099
2100static void
2101pandecode_shader_prop(const char *name, unsigned claim, signed truth, bool fuzzy)
2102{
2103 /* Nothing to do */
2104 if (claim == truth)
2105 return;
2106
Alyssa Rosenzweig5815f332020-02-25 17:29:55 -05002107 if (fuzzy && (truth < 0))
2108 pandecode_msg("XXX: fuzzy %s, claimed %d, expected %d\n", name, claim, truth);
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002109
2110 if ((truth >= 0) && !fuzzy) {
Alyssa Rosenzweigf48136e2019-08-22 09:02:48 -07002111 pandecode_msg("%s: expected %s = %d, claimed %u\n",
2112 (truth < claim) ? "warn" : "XXX",
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002113 name, truth, claim);
2114 } else if ((claim > -truth) && !fuzzy) {
2115 pandecode_msg("XXX: expected %s <= %u, claimed %u\n",
2116 name, -truth, claim);
2117 } else if (fuzzy && (claim < truth))
2118 pandecode_msg("XXX: expected %s >= %u, claimed %u\n",
2119 name, truth, claim);
2120
2121 pandecode_log(".%s = %" PRId16, name, claim);
2122
2123 if (fuzzy)
2124 pandecode_log_cont(" /* %u used */", truth);
2125
2126 pandecode_log_cont(",\n");
2127}
2128
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002129static void
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002130pandecode_blend_shader_disassemble(mali_ptr shader, int job_no, int job_type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002131 bool is_bifrost, unsigned gpu_id)
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002132{
2133 struct midgard_disasm_stats stats =
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002134 pandecode_shader_disassemble(shader, job_no, job_type, is_bifrost, gpu_id);
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002135
2136 bool has_texture = (stats.texture_count > 0);
2137 bool has_sampler = (stats.sampler_count > 0);
2138 bool has_attribute = (stats.attribute_count > 0);
2139 bool has_varying = (stats.varying_count > 0);
2140 bool has_uniform = (stats.uniform_count > 0);
2141 bool has_ubo = (stats.uniform_buffer_count > 0);
2142
2143 if (has_texture || has_sampler)
2144 pandecode_msg("XXX: blend shader accessing textures\n");
2145
2146 if (has_attribute || has_varying)
2147 pandecode_msg("XXX: blend shader accessing interstage\n");
2148
2149 if (has_uniform || has_ubo)
2150 pandecode_msg("XXX: blend shader accessing uniforms\n");
2151}
2152
2153static void
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002154pandecode_vertex_tiler_postfix_pre(
2155 const struct mali_vertex_tiler_postfix *p,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002156 int job_no, enum mali_job_type job_type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002157 char *suffix, bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002158{
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002159 struct pandecode_mapped_memory *attr_mem;
2160
2161 /* On Bifrost, since the tiler heap (for tiler jobs) and the scratchpad
2162 * are the only things actually needed from the FBD, vertex/tiler jobs
2163 * no longer reference the FBD -- instead, this field points to some
2164 * info about the scratchpad.
2165 */
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002166
2167 struct pandecode_fbd fbd_info = {
2168 /* Default for Bifrost */
2169 .rt_count = 1
2170 };
2171
Alyssa Rosenzweig6dc10552020-02-10 08:47:09 -05002172 if (is_bifrost) {
2173 pandecode_log_cont("\t/* %X %/\n", p->shared_memory & 1);
2174 pandecode_compute_fbd(p->shared_memory & ~1, job_no);
2175 } else if (p->shared_memory & MALI_MFBD)
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05002176 fbd_info = pandecode_mfbd_bfr((u64) ((uintptr_t) p->shared_memory) & FBD_MASK, job_no, false, job_type == JOB_TYPE_COMPUTE, false);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -07002177 else if (job_type == JOB_TYPE_COMPUTE)
Alyssa Rosenzweig6dc10552020-02-10 08:47:09 -05002178 pandecode_compute_fbd((u64) (uintptr_t) p->shared_memory, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002179 else
Alyssa Rosenzweig6dc10552020-02-10 08:47:09 -05002180 fbd_info = pandecode_sfbd((u64) (uintptr_t) p->shared_memory, job_no, false, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002181
2182 int varying_count = 0, attribute_count = 0, uniform_count = 0, uniform_buffer_count = 0;
2183 int texture_count = 0, sampler_count = 0;
2184
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002185 if (p->shader) {
2186 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(p->shader);
2187 struct mali_shader_meta *PANDECODE_PTR_VAR(s, smem, p->shader);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002188
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002189 /* Disassemble ahead-of-time to get stats. Initialize with
2190 * stats for the missing-shader case so we get validation
2191 * there, too */
2192
2193 struct midgard_disasm_stats info = {
2194 .texture_count = 0,
2195 .sampler_count = 0,
2196 .attribute_count = 0,
2197 .varying_count = 0,
2198 .work_count = 1,
2199
2200 .uniform_count = -128,
2201 .uniform_buffer_count = 0
2202 };
Alyssa Rosenzweig9b067d92019-08-21 14:28:36 -07002203
2204 if (s->shader & ~0xF)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002205 info = pandecode_shader_disassemble(s->shader & ~0xF, job_no, job_type, is_bifrost, gpu_id);
Alyssa Rosenzweig9b067d92019-08-21 14:28:36 -07002206
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002207 pandecode_log("struct mali_shader_meta shader_meta_%"PRIx64"_%d%s = {\n", p->shader, job_no, suffix);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002208 pandecode_indent++;
2209
2210 /* Save for dumps */
2211 attribute_count = s->attribute_count;
2212 varying_count = s->varying_count;
2213 texture_count = s->texture_count;
2214 sampler_count = s->sampler_count;
2215
2216 if (is_bifrost) {
2217 uniform_count = s->bifrost2.uniform_count;
2218 uniform_buffer_count = s->bifrost1.uniform_buffer_count;
2219 } else {
Alyssa Rosenzweigd7473e22019-08-21 14:15:05 -07002220 uniform_count = s->midgard1.uniform_count;
Alyssa Rosenzweigbd2fc602019-06-20 16:41:39 -07002221 uniform_buffer_count = s->midgard1.uniform_buffer_count;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002222 }
2223
Alyssa Rosenzweig9b067d92019-08-21 14:28:36 -07002224 pandecode_shader_address("shader", s->shader);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002225
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002226 pandecode_shader_prop("texture_count", s->texture_count, info.texture_count, false);
2227 pandecode_shader_prop("sampler_count", s->sampler_count, info.sampler_count, false);
2228 pandecode_shader_prop("attribute_count", s->attribute_count, info.attribute_count, false);
2229 pandecode_shader_prop("varying_count", s->varying_count, info.varying_count, false);
2230 pandecode_shader_prop("uniform_buffer_count",
2231 uniform_buffer_count,
2232 info.uniform_buffer_count, true);
2233
2234 if (!is_bifrost) {
2235 pandecode_shader_prop("uniform_count",
2236 uniform_count,
2237 info.uniform_count, false);
2238
2239 pandecode_shader_prop("work_count",
2240 s->midgard1.work_count, info.work_count, false);
2241 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002242
2243 if (is_bifrost) {
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002244 pandecode_prop("bifrost1.unk1 = 0x%" PRIx32, s->bifrost1.unk1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002245 } else {
Boris Brezillon8ed94d32020-01-31 12:37:38 +01002246 bool helpers = s->midgard1.flags_lo & MALI_HELPER_INVOCATIONS;
2247 s->midgard1.flags_lo &= ~MALI_HELPER_INVOCATIONS;
Alyssa Rosenzweig21a85fd2019-08-22 16:36:10 -07002248
2249 if (helpers != info.helper_invocations) {
2250 pandecode_msg("XXX: expected helpers %u but got %u\n",
2251 info.helper_invocations, helpers);
2252 }
2253
Boris Brezillon8ed94d32020-01-31 12:37:38 +01002254 pandecode_log(".midgard1.flags_lo = ");
2255 pandecode_log_decoded_flags(shader_midgard1_flag_lo_info, s->midgard1.flags_lo);
Alyssa Rosenzweig7cccc892019-04-05 01:17:21 +00002256 pandecode_log_cont(",\n");
2257
Boris Brezillon8ed94d32020-01-31 12:37:38 +01002258 pandecode_log(".midgard1.flags_hi = ");
2259 pandecode_log_decoded_flags(shader_midgard1_flag_hi_info, s->midgard1.flags_hi);
2260 pandecode_log_cont(",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002261 }
2262
2263 if (s->depth_units || s->depth_factor) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002264 pandecode_prop("depth_factor = %f", s->depth_factor);
Alyssa Rosenzweig7a36c722019-07-11 07:01:56 -07002265 pandecode_prop("depth_units = %f", s->depth_units);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002266 }
2267
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002268 if (s->alpha_coverage) {
2269 bool invert_alpha_coverage = s->alpha_coverage & 0xFFF0;
2270 uint16_t inverted_coverage = invert_alpha_coverage ? ~s->alpha_coverage : s->alpha_coverage;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002271
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002272 pandecode_prop("alpha_coverage = %sMALI_ALPHA_COVERAGE(%f)",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002273 invert_alpha_coverage ? "~" : "",
2274 MALI_GET_ALPHA_COVERAGE(inverted_coverage));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002275 }
2276
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002277 if (s->unknown2_3 || s->unknown2_4) {
2278 pandecode_log(".unknown2_3 = ");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002279
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002280 int unknown2_3 = s->unknown2_3;
2281 int unknown2_4 = s->unknown2_4;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002282
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002283 /* We're not quite sure what these flags mean without the depth test, if anything */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002284
Boris Brezillon28440822019-11-04 11:57:22 +01002285 if (unknown2_3 & (MALI_DEPTH_WRITEMASK | MALI_DEPTH_FUNC_MASK)) {
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -07002286 const char *func = pandecode_func(MALI_GET_DEPTH_FUNC(unknown2_3));
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002287 unknown2_3 &= ~MALI_DEPTH_FUNC_MASK;
2288
2289 pandecode_log_cont("MALI_DEPTH_FUNC(%s) | ", func);
2290 }
2291
2292 pandecode_log_decoded_flags(u3_flag_info, unknown2_3);
2293 pandecode_log_cont(",\n");
2294
2295 pandecode_log(".unknown2_4 = ");
2296 pandecode_log_decoded_flags(u4_flag_info, unknown2_4);
2297 pandecode_log_cont(",\n");
2298 }
2299
2300 if (s->stencil_mask_front || s->stencil_mask_back) {
2301 pandecode_prop("stencil_mask_front = 0x%02X", s->stencil_mask_front);
2302 pandecode_prop("stencil_mask_back = 0x%02X", s->stencil_mask_back);
2303 }
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002304
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002305 pandecode_stencil("front", &s->stencil_front);
2306 pandecode_stencil("back", &s->stencil_back);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002307
2308 if (is_bifrost) {
2309 pandecode_log(".bifrost2 = {\n");
2310 pandecode_indent++;
2311
2312 pandecode_prop("unk3 = 0x%" PRIx32, s->bifrost2.unk3);
2313 pandecode_prop("preload_regs = 0x%" PRIx32, s->bifrost2.preload_regs);
2314 pandecode_prop("uniform_count = %" PRId32, s->bifrost2.uniform_count);
2315 pandecode_prop("unk4 = 0x%" PRIx32, s->bifrost2.unk4);
2316
2317 pandecode_indent--;
2318 pandecode_log("},\n");
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07002319 } else if (s->midgard2.unknown2_7) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002320 pandecode_log(".midgard2 = {\n");
2321 pandecode_indent++;
2322
2323 pandecode_prop("unknown2_7 = 0x%" PRIx32, s->midgard2.unknown2_7);
2324 pandecode_indent--;
2325 pandecode_log("},\n");
2326 }
2327
Alyssa Rosenzweig50138ab2020-02-10 08:56:33 -05002328 if (s->padding) {
2329 pandecode_msg("XXX: shader padding tripped\n");
2330 pandecode_prop("padding = 0x%" PRIx32, s->padding);
2331 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002332
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002333 if (!is_bifrost) {
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002334 /* TODO: Blend shaders routing/disasm */
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -07002335 union midgard_blend blend = s->blend;
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002336 mali_ptr shader = pandecode_midgard_blend(&blend, s->unknown2_3 & MALI_HAS_BLEND_SHADER);
2337 if (shader & ~0xF)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002338 pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002339 }
2340
2341 pandecode_indent--;
2342 pandecode_log("};\n");
2343
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002344 /* MRT blend fields are used whenever MFBD is used, with
2345 * per-RT descriptors */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002346
Alyssa Rosenzweig6dc10552020-02-10 08:47:09 -05002347 if (job_type == JOB_TYPE_TILER && p->shared_memory & MALI_MFBD) {
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002348 void* blend_base = (void *) (s + 1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002349
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002350 for (unsigned i = 0; i < fbd_info.rt_count; i++) {
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002351 mali_ptr shader = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002352
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00002353 if (is_bifrost)
2354 shader = pandecode_bifrost_blend(blend_base, job_no, i);
2355 else
2356 shader = pandecode_midgard_blend_mrt(blend_base, job_no, i);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002357
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01002358 if (shader & ~0xF)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002359 pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id);
Alyssa Rosenzweig139708b2019-08-21 14:04:05 -07002360
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002361 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002362 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002363 } else
Alyssa Rosenzweig5f9a1c72019-08-21 14:16:32 -07002364 pandecode_msg("XXX: missing shader descriptor\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002365
2366 if (p->viewport) {
2367 struct pandecode_mapped_memory *fmem = pandecode_find_mapped_gpu_mem_containing(p->viewport);
2368 struct mali_viewport *PANDECODE_PTR_VAR(f, fmem, p->viewport);
2369
Tomeu Vizoso75b53a12019-07-12 16:42:52 +02002370 pandecode_log("struct mali_viewport viewport_%"PRIx64"_%d%s = {\n", p->viewport, job_no, suffix);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002371 pandecode_indent++;
2372
2373 pandecode_prop("clip_minx = %f", f->clip_minx);
2374 pandecode_prop("clip_miny = %f", f->clip_miny);
2375 pandecode_prop("clip_minz = %f", f->clip_minz);
2376 pandecode_prop("clip_maxx = %f", f->clip_maxx);
2377 pandecode_prop("clip_maxy = %f", f->clip_maxy);
2378 pandecode_prop("clip_maxz = %f", f->clip_maxz);
2379
2380 /* Only the higher coordinates are MALI_POSITIVE scaled */
2381
2382 pandecode_prop("viewport0 = { %d, %d }",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002383 f->viewport0[0], f->viewport0[1]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002384
2385 pandecode_prop("viewport1 = { MALI_POSITIVE(%d), MALI_POSITIVE(%d) }",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002386 f->viewport1[0] + 1, f->viewport1[1] + 1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002387
2388 pandecode_indent--;
2389 pandecode_log("};\n");
2390 }
2391
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07002392 unsigned max_attr_index = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002393
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07002394 if (p->attribute_meta)
2395 max_attr_index = pandecode_attribute_meta(job_no, attribute_count, p, false, suffix);
2396
2397 if (p->attributes) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002398 attr_mem = pandecode_find_mapped_gpu_mem_containing(p->attributes);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07002399 pandecode_attributes(attr_mem, p->attributes, job_no, suffix, max_attr_index, false, job_type);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002400 }
2401
2402 /* Varyings are encoded like attributes but not actually sent; we just
2403 * pass a zero buffer with the right stride/size set, (or whatever)
2404 * since the GPU will write to it itself */
2405
Alyssa Rosenzweig9e66ff32019-07-31 11:52:52 -07002406 if (p->varying_meta) {
2407 varying_count = pandecode_attribute_meta(job_no, varying_count, p, true, suffix);
2408 }
2409
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002410 if (p->varyings) {
2411 attr_mem = pandecode_find_mapped_gpu_mem_containing(p->varyings);
2412
2413 /* Number of descriptors depends on whether there are
2414 * non-internal varyings */
2415
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07002416 pandecode_attributes(attr_mem, p->varyings, job_no, suffix, varying_count, true, job_type);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002417 }
2418
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002419 if (p->uniform_buffers) {
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002420 if (uniform_buffer_count)
2421 pandecode_uniform_buffers(p->uniform_buffers, uniform_buffer_count, job_no);
2422 else
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002423 pandecode_msg("warn: UBOs specified but not referenced\n");
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002424 } else if (uniform_buffer_count)
2425 pandecode_msg("XXX: UBOs referenced but not specified\n");
2426
2427 /* We don't want to actually dump uniforms, but we do need to validate
2428 * that the counts we were given are sane */
2429
2430 if (p->uniforms) {
2431 if (uniform_count)
Alyssa Rosenzweigae84f162019-08-22 11:30:13 -07002432 pandecode_uniforms(p->uniforms, uniform_count);
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002433 else
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07002434 pandecode_msg("warn: Uniforms specified but not referenced\n");
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07002435 } else if (uniform_count)
Alyssa Rosenzweigd7473e22019-08-21 14:15:05 -07002436 pandecode_msg("XXX: Uniforms referenced but not specified\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002437
2438 if (p->texture_trampoline) {
2439 struct pandecode_mapped_memory *mmem = pandecode_find_mapped_gpu_mem_containing(p->texture_trampoline);
2440
2441 if (mmem) {
2442 mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline);
2443
Tomeu Vizoso75b53a12019-07-12 16:42:52 +02002444 pandecode_log("uint64_t texture_trampoline_%"PRIx64"_%d[] = {\n", p->texture_trampoline, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002445 pandecode_indent++;
2446
2447 for (int tex = 0; tex < texture_count; ++tex) {
2448 mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline + tex * sizeof(mali_ptr));
2449 char *a = pointer_as_memory_reference(*u);
2450 pandecode_log("%s,\n", a);
2451 free(a);
2452 }
2453
2454 pandecode_indent--;
2455 pandecode_log("};\n");
2456
2457 /* Now, finally, descend down into the texture descriptor */
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002458 for (unsigned tex = 0; tex < texture_count; ++tex) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002459 mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline + tex * sizeof(mali_ptr));
2460 struct pandecode_mapped_memory *tmem = pandecode_find_mapped_gpu_mem_containing(*u);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07002461 if (tmem)
2462 pandecode_texture(*u, tmem, job_no, tex);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002463 }
2464 }
2465 }
2466
2467 if (p->sampler_descriptor) {
2468 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(p->sampler_descriptor);
2469
2470 if (smem) {
2471 struct mali_sampler_descriptor *s;
2472
2473 mali_ptr d = p->sampler_descriptor;
2474
2475 for (int i = 0; i < sampler_count; ++i) {
2476 s = pandecode_fetch_gpu_mem(smem, d + sizeof(*s) * i, sizeof(*s));
2477
Tomeu Vizoso75b53a12019-07-12 16:42:52 +02002478 pandecode_log("struct mali_sampler_descriptor sampler_descriptor_%"PRIx64"_%d_%d = {\n", d + sizeof(*s) * i, job_no, i);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002479 pandecode_indent++;
2480
Alyssa Rosenzweigcf6cad32019-07-31 08:50:02 -07002481 pandecode_log(".filter_mode = ");
2482 pandecode_log_decoded_flags(sampler_flag_info, s->filter_mode);
2483 pandecode_log_cont(",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002484
2485 pandecode_prop("min_lod = FIXED_16(%f)", DECODE_FIXED_16(s->min_lod));
2486 pandecode_prop("max_lod = FIXED_16(%f)", DECODE_FIXED_16(s->max_lod));
2487
Alyssa Rosenzweig046097c2019-11-20 09:26:48 -05002488 if (s->lod_bias)
2489 pandecode_prop("lod_bias = FIXED_16(%f)", DECODE_FIXED_16(s->lod_bias));
2490
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -07002491 pandecode_prop("wrap_s = %s", pandecode_wrap_mode(s->wrap_s));
2492 pandecode_prop("wrap_t = %s", pandecode_wrap_mode(s->wrap_t));
2493 pandecode_prop("wrap_r = %s", pandecode_wrap_mode(s->wrap_r));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002494
Alyssa Rosenzweigde077c22019-12-27 12:56:03 -05002495 pandecode_prop("compare_func = %s", pandecode_func(s->compare_func));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002496
2497 if (s->zero || s->zero2) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002498 pandecode_msg("XXX: sampler zero tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002499 pandecode_prop("zero = 0x%X, 0x%X\n", s->zero, s->zero2);
2500 }
2501
Alyssa Rosenzweig17adcfc2019-06-24 09:16:11 -07002502 pandecode_prop("seamless_cube_map = %d", s->seamless_cube_map);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002503
2504 pandecode_prop("border_color = { %f, %f, %f, %f }",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002505 s->border_color[0],
2506 s->border_color[1],
2507 s->border_color[2],
2508 s->border_color[3]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002509
2510 pandecode_indent--;
2511 pandecode_log("};\n");
2512 }
2513 }
2514 }
2515}
2516
2517static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002518pandecode_vertex_tiler_postfix(const struct mali_vertex_tiler_postfix *p, int job_no, bool is_bifrost)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002519{
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002520 if (p->shader & 0xF)
Alyssa Rosenzweigddbbb2d2019-12-13 10:22:06 -05002521 pandecode_msg("warn: shader tagged %X\n", (unsigned) (p->shader & 0xF));
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002522
2523 if (!(p->position_varying || p->occlusion_counter))
Alyssa Rosenzweig740f86c2019-08-16 13:28:06 -07002524 return;
2525
2526 pandecode_log(".postfix = {\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002527 pandecode_indent++;
2528
2529 MEMORY_PROP(p, position_varying);
Alyssa Rosenzweig740f86c2019-08-16 13:28:06 -07002530 MEMORY_PROP(p, occlusion_counter);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002531
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002532 pandecode_indent--;
2533 pandecode_log("},\n");
2534}
2535
2536static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002537pandecode_vertex_only_bfr(struct bifrost_vertex_only *v)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002538{
2539 pandecode_log_cont("{\n");
2540 pandecode_indent++;
2541
2542 pandecode_prop("unk2 = 0x%x", v->unk2);
2543
2544 if (v->zero0 || v->zero1) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002545 pandecode_msg("XXX: vertex only zero tripped");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002546 pandecode_prop("zero0 = 0x%" PRIx32, v->zero0);
2547 pandecode_prop("zero1 = 0x%" PRIx64, v->zero1);
2548 }
2549
2550 pandecode_indent--;
2551 pandecode_log("}\n");
2552}
2553
2554static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002555pandecode_tiler_heap_meta(mali_ptr gpu_va, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002556{
2557
2558 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
2559 const struct bifrost_tiler_heap_meta *PANDECODE_PTR_VAR(h, mem, gpu_va);
2560
2561 pandecode_log("struct mali_tiler_heap_meta tiler_heap_meta_%d = {\n", job_no);
2562 pandecode_indent++;
2563
2564 if (h->zero) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002565 pandecode_msg("XXX: tiler heap zero tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002566 pandecode_prop("zero = 0x%x", h->zero);
2567 }
2568
2569 for (int i = 0; i < 12; i++) {
2570 if (h->zeros[i] != 0) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002571 pandecode_msg("XXX: tiler heap zero %d tripped, value %x\n",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002572 i, h->zeros[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002573 }
2574 }
2575
2576 pandecode_prop("heap_size = 0x%x", h->heap_size);
2577 MEMORY_PROP(h, tiler_heap_start);
2578 MEMORY_PROP(h, tiler_heap_free);
2579
2580 /* this might point to the beginning of another buffer, when it's
2581 * really the end of the tiler heap buffer, so we have to be careful
Alyssa Rosenzweig17752ba2019-07-18 12:28:56 -07002582 * here. but for zero length, we need the same pointer.
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002583 */
Alyssa Rosenzweig17752ba2019-07-18 12:28:56 -07002584
2585 if (h->tiler_heap_end == h->tiler_heap_start) {
2586 MEMORY_PROP(h, tiler_heap_start);
2587 } else {
2588 char *a = pointer_as_memory_reference(h->tiler_heap_end - 1);
2589 pandecode_prop("tiler_heap_end = %s + 1", a);
2590 free(a);
2591 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002592
2593 pandecode_indent--;
2594 pandecode_log("};\n");
2595}
2596
2597static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002598pandecode_tiler_meta(mali_ptr gpu_va, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002599{
2600 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
2601 const struct bifrost_tiler_meta *PANDECODE_PTR_VAR(t, mem, gpu_va);
2602
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002603 pandecode_tiler_heap_meta(t->tiler_heap_meta, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002604
Alyssa Rosenzweig7f26bb32019-06-13 10:25:32 -07002605 pandecode_log("struct bifrost_tiler_meta tiler_meta_%d = {\n", job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002606 pandecode_indent++;
2607
2608 if (t->zero0 || t->zero1) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002609 pandecode_msg("XXX: tiler meta zero tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002610 pandecode_prop("zero0 = 0x%" PRIx64, t->zero0);
2611 pandecode_prop("zero1 = 0x%" PRIx64, t->zero1);
2612 }
2613
Alyssa Rosenzweig7f26bb32019-06-13 10:25:32 -07002614 pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask);
2615 pandecode_prop("flags = 0x%" PRIx16, t->flags);
2616
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002617 pandecode_prop("width = MALI_POSITIVE(%d)", t->width + 1);
2618 pandecode_prop("height = MALI_POSITIVE(%d)", t->height + 1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002619
2620 for (int i = 0; i < 12; i++) {
2621 if (t->zeros[i] != 0) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002622 pandecode_msg("XXX: tiler heap zero %d tripped, value %" PRIx64 "\n",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002623 i, t->zeros[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002624 }
2625 }
2626
2627 pandecode_indent--;
2628 pandecode_log("};\n");
2629}
2630
2631static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002632pandecode_gl_enables(uint32_t gl_enables, int job_type)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002633{
2634 pandecode_log(".gl_enables = ");
2635
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002636 pandecode_log_decoded_flags(gl_enable_flag_info, gl_enables);
2637
2638 pandecode_log_cont(",\n");
2639}
2640
2641static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002642pandecode_primitive_size(union midgard_primitive_size u, bool constant)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002643{
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -07002644 if (u.pointer == 0x0)
2645 return;
2646
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002647 pandecode_log(".primitive_size = {\n");
2648 pandecode_indent++;
2649
Alyssa Rosenzweigb517e362019-03-15 03:21:27 +00002650 if (constant) {
2651 pandecode_prop("constant = %f", u.constant);
2652 } else {
2653 MEMORY_PROP((&u), pointer);
2654 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002655
2656 pandecode_indent--;
2657 pandecode_log("},\n");
2658}
2659
2660static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002661pandecode_tiler_only_bfr(const struct bifrost_tiler_only *t, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002662{
2663 pandecode_log_cont("{\n");
2664 pandecode_indent++;
2665
2666 /* TODO: gl_PointSize on Bifrost */
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002667 pandecode_primitive_size(t->primitive_size, true);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002668
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002669 pandecode_gl_enables(t->gl_enables, JOB_TYPE_TILER);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002670
2671 if (t->zero1 || t->zero2 || t->zero3 || t->zero4 || t->zero5
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002672 || t->zero6 || t->zero7 || t->zero8) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002673 pandecode_msg("XXX: tiler only zero tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002674 pandecode_prop("zero1 = 0x%" PRIx64, t->zero1);
2675 pandecode_prop("zero2 = 0x%" PRIx64, t->zero2);
2676 pandecode_prop("zero3 = 0x%" PRIx64, t->zero3);
2677 pandecode_prop("zero4 = 0x%" PRIx64, t->zero4);
2678 pandecode_prop("zero5 = 0x%" PRIx64, t->zero5);
2679 pandecode_prop("zero6 = 0x%" PRIx64, t->zero6);
2680 pandecode_prop("zero7 = 0x%" PRIx32, t->zero7);
2681 pandecode_prop("zero8 = 0x%" PRIx64, t->zero8);
2682 }
2683
2684 pandecode_indent--;
2685 pandecode_log("},\n");
2686}
2687
2688static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002689pandecode_vertex_job_bfr(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002690 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002691 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002692{
2693 struct bifrost_payload_vertex *PANDECODE_PTR_VAR(v, mem, payload);
2694
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002695 pandecode_vertex_tiler_postfix_pre(&v->postfix, job_no, h->job_type, "", true, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002696
2697 pandecode_log("struct bifrost_payload_vertex payload_%d = {\n", job_no);
2698 pandecode_indent++;
2699
2700 pandecode_log(".prefix = ");
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07002701 pandecode_vertex_tiler_prefix(&v->prefix, job_no, false);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002702
2703 pandecode_log(".vertex = ");
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002704 pandecode_vertex_only_bfr(&v->vertex);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002705
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002706 pandecode_vertex_tiler_postfix(&v->postfix, job_no, true);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002707
2708 pandecode_indent--;
2709 pandecode_log("};\n");
2710
2711 return sizeof(*v);
2712}
2713
2714static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002715pandecode_tiler_job_bfr(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002716 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002717 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002718{
2719 struct bifrost_payload_tiler *PANDECODE_PTR_VAR(t, mem, payload);
2720
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002721 pandecode_vertex_tiler_postfix_pre(&t->postfix, job_no, h->job_type, "", true, gpu_id);
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002722 pandecode_tiler_meta(t->tiler.tiler_meta, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002723
2724 pandecode_log("struct bifrost_payload_tiler payload_%d = {\n", job_no);
2725 pandecode_indent++;
2726
2727 pandecode_log(".prefix = ");
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07002728 pandecode_vertex_tiler_prefix(&t->prefix, job_no, false);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002729
2730 pandecode_log(".tiler = ");
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002731 pandecode_tiler_only_bfr(&t->tiler, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002732
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002733 pandecode_vertex_tiler_postfix(&t->postfix, job_no, true);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002734
2735 pandecode_indent--;
2736 pandecode_log("};\n");
2737
2738 return sizeof(*t);
2739}
2740
2741static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002742pandecode_vertex_or_tiler_job_mdg(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002743 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002744 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002745{
2746 struct midgard_payload_vertex_tiler *PANDECODE_PTR_VAR(v, mem, payload);
2747
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002748 pandecode_vertex_tiler_postfix_pre(&v->postfix, job_no, h->job_type, "", false, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002749
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002750 pandecode_log("struct midgard_payload_vertex_tiler payload_%d = {\n", job_no);
2751 pandecode_indent++;
2752
Alyssa Rosenzweigb517e362019-03-15 03:21:27 +00002753 bool has_primitive_pointer = v->prefix.unknown_draw & MALI_DRAW_VARYING_SIZE;
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002754 pandecode_primitive_size(v->primitive_size, !has_primitive_pointer);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002755
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07002756 bool is_graphics = (h->job_type == JOB_TYPE_VERTEX) || (h->job_type == JOB_TYPE_TILER);
2757
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002758 pandecode_log(".prefix = ");
Alyssa Rosenzweig385a4f72019-12-24 22:33:47 -05002759 pandecode_vertex_tiler_prefix(&v->prefix, job_no, is_graphics);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002760
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002761 pandecode_gl_enables(v->gl_enables, h->job_type);
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -07002762
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07002763 if (v->instance_shift || v->instance_odd) {
2764 pandecode_prop("instance_shift = 0x%d /* %d */",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002765 v->instance_shift, 1 << v->instance_shift);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07002766 pandecode_prop("instance_odd = 0x%X /* %d */",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002767 v->instance_odd, (2 * v->instance_odd) + 1);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07002768
2769 pandecode_padded_vertices(v->instance_shift, v->instance_odd);
2770 }
2771
Rohan Garg16edd562019-07-17 18:50:13 +02002772 if (v->offset_start)
2773 pandecode_prop("offset_start = %d", v->offset_start);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002774
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002775 if (v->zero5) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07002776 pandecode_msg("XXX: midgard payload zero tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002777 pandecode_prop("zero5 = 0x%" PRIx64, v->zero5);
2778 }
2779
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002780 pandecode_vertex_tiler_postfix(&v->postfix, job_no, false);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002781
2782 pandecode_indent--;
2783 pandecode_log("};\n");
2784
2785 return sizeof(*v);
2786}
2787
2788static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07002789pandecode_fragment_job(const struct pandecode_mapped_memory *mem,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07002790 mali_ptr payload, int job_no,
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01002791 bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002792{
2793 const struct mali_payload_fragment *PANDECODE_PTR_VAR(s, mem, payload);
2794
Alyssa Rosenzweig89593642019-12-16 12:05:45 -05002795 bool is_mfbd = s->framebuffer & MALI_MFBD;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002796
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002797 if (!is_mfbd && is_bifrost)
2798 pandecode_msg("XXX: Bifrost fragment must use MFBD\n");
2799
2800 struct pandecode_fbd info;
2801
2802 if (is_mfbd)
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05002803 info = pandecode_mfbd_bfr(s->framebuffer & FBD_MASK, job_no, true, false, is_bifrost);
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002804 else
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01002805 info = pandecode_sfbd(s->framebuffer & FBD_MASK, job_no, true, gpu_id);
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002806
2807 /* Compute the tag for the tagged pointer. This contains the type of
2808 * FBD (MFBD/SFBD), and in the case of an MFBD, information about which
2809 * additional structures follow the MFBD header (an extra payload or
2810 * not, as well as a count of render targets) */
2811
Alyssa Rosenzweig89593642019-12-16 12:05:45 -05002812 unsigned expected_tag = is_mfbd ? MALI_MFBD : 0;
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002813
2814 if (is_mfbd) {
2815 if (info.has_extra)
2816 expected_tag |= MALI_MFBD_TAG_EXTRA;
2817
2818 expected_tag |= (MALI_POSITIVE(info.rt_count) << 2);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002819 }
2820
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002821 if ((s->min_tile_coord | s->max_tile_coord) & ~(MALI_X_COORD_MASK | MALI_Y_COORD_MASK)) {
2822 pandecode_msg("XXX: unexpected tile coordinate bits\n");
2823 pandecode_prop("min_tile_coord = 0x%X\n", s->min_tile_coord);
2824 pandecode_prop("max_tile_coord = 0x%X\n", s->min_tile_coord);
2825 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002826
Alyssa Rosenzweigded9a682019-08-21 12:29:47 -07002827 /* Extract tile coordinates */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002828
Alyssa Rosenzweigded9a682019-08-21 12:29:47 -07002829 unsigned min_x = MALI_TILE_COORD_X(s->min_tile_coord) << MALI_TILE_SHIFT;
2830 unsigned min_y = MALI_TILE_COORD_Y(s->min_tile_coord) << MALI_TILE_SHIFT;
2831
2832 unsigned max_x = (MALI_TILE_COORD_X(s->max_tile_coord) + 1) << MALI_TILE_SHIFT;
2833 unsigned max_y = (MALI_TILE_COORD_Y(s->max_tile_coord) + 1) << MALI_TILE_SHIFT;
2834
2835 /* For the max, we also want the floored (rather than ceiled) version for checking */
2836
2837 unsigned max_x_f = (MALI_TILE_COORD_X(s->max_tile_coord)) << MALI_TILE_SHIFT;
2838 unsigned max_y_f = (MALI_TILE_COORD_Y(s->max_tile_coord)) << MALI_TILE_SHIFT;
2839
2840 /* Validate the coordinates are well-ordered */
2841
2842 if (min_x == max_x)
2843 pandecode_msg("XXX: empty X coordinates (%u = %u)\n", min_x, max_x);
2844 else if (min_x > max_x)
2845 pandecode_msg("XXX: misordered X coordinates (%u > %u)\n", min_x, max_x);
2846
2847 if (min_y == max_y)
2848 pandecode_msg("XXX: empty X coordinates (%u = %u)\n", min_x, max_x);
2849 else if (min_y > max_y)
2850 pandecode_msg("XXX: misordered X coordinates (%u > %u)\n", min_x, max_x);
2851
2852 /* Validate the coordinates fit inside the framebuffer. We use floor,
2853 * rather than ceil, for the max coordinates, since the tile
2854 * coordinates for something like an 800x600 framebuffer will actually
2855 * resolve to 800x608, which would otherwise trigger a Y-overflow */
2856
2857 if ((min_x > info.width) || (max_x_f > info.width))
2858 pandecode_msg("XXX: tile coordinates overflow in X direction\n");
2859
2860 if ((min_y > info.height) || (max_y_f > info.height))
2861 pandecode_msg("XXX: tile coordinates overflow in Y direction\n");
2862
2863 /* After validation, we print */
2864
2865 pandecode_log("fragment (%u, %u) ... (%u, %u)\n\n", min_x, min_y, max_x, max_y);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002866
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002867 /* The FBD is a tagged pointer */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002868
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002869 unsigned tag = (s->framebuffer & ~FBD_MASK);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002870
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002871 if (tag != expected_tag)
2872 pandecode_msg("XXX: expected FBD tag %X but got %X\n", expected_tag, tag);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002873
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002874 return sizeof(*s);
2875}
2876
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05002877/* Entrypoint to start tracing. jc_gpu_va is the GPU address for the first job
2878 * in the chain; later jobs are found by walking the chain. Bifrost is, well,
2879 * if it's bifrost or not. GPU ID is the more finegrained ID (at some point, we
2880 * might wish to combine this with the bifrost parameter) because some details
2881 * are model-specific even within a particular architecture. Minimal traces
2882 * *only* examine the job descriptors, skipping printing entirely if there is
2883 * no faults, and only descends into the payload if there are faults. This is
2884 * useful for looking for faults without the overhead of invasive traces. */
2885
Alyssa Rosenzweig59986462020-02-18 07:46:03 -05002886void
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05002887pandecode_jc(mali_ptr jc_gpu_va, bool bifrost, unsigned gpu_id, bool minimal)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002888{
2889 struct mali_job_descriptor_header *h;
Alyssa Rosenzweig59986462020-02-18 07:46:03 -05002890 unsigned job_descriptor_number = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002891
2892 do {
2893 struct pandecode_mapped_memory *mem =
2894 pandecode_find_mapped_gpu_mem_containing(jc_gpu_va);
2895
2896 void *payload;
2897
2898 h = PANDECODE_PTR(mem, jc_gpu_va, struct mali_job_descriptor_header);
2899
2900 /* On Midgard, for 32-bit jobs except for fragment jobs, the
2901 * high 32-bits of the 64-bit pointer are reused to store
2902 * something else.
2903 */
2904 int offset = h->job_descriptor_size == MALI_JOB_32 &&
2905 h->job_type != JOB_TYPE_FRAGMENT ? 4 : 0;
2906 mali_ptr payload_ptr = jc_gpu_va + sizeof(*h) - offset;
2907
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04002908 payload = pandecode_fetch_gpu_mem(mem, payload_ptr, 256);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002909
2910 int job_no = job_descriptor_number++;
2911
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05002912 /* If the job is good to go, skip it in minimal mode */
2913 if (minimal && (h->exception_status == 0x0 || h->exception_status == 0x1))
2914 continue;
2915
Tomeu Vizoso9bef1f12019-06-25 09:20:51 +02002916 pandecode_log("struct mali_job_descriptor_header job_%"PRIx64"_%d = {\n", jc_gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002917 pandecode_indent++;
2918
Alyssa Rosenzweig0d5abfd2019-07-12 08:54:49 -07002919 pandecode_prop("job_type = %s", pandecode_job_type(h->job_type));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002920
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002921 if (h->job_descriptor_size)
2922 pandecode_prop("job_descriptor_size = %d", h->job_descriptor_size);
2923
Alyssa Rosenzweige918dd82019-08-16 16:36:39 -07002924 if (h->exception_status && h->exception_status != 0x1)
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -07002925 pandecode_prop("exception_status = %x (source ID: 0x%x access: %s exception: 0x%x)",
Tomeu Vizosofa36c192019-06-25 08:22:30 +02002926 h->exception_status,
2927 (h->exception_status >> 16) & 0xFFFF,
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -07002928 pandecode_exception_access((h->exception_status >> 8) & 0x3),
Tomeu Vizosofa36c192019-06-25 08:22:30 +02002929 h->exception_status & 0xFF);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002930
2931 if (h->first_incomplete_task)
2932 pandecode_prop("first_incomplete_task = %d", h->first_incomplete_task);
2933
2934 if (h->fault_pointer)
2935 pandecode_prop("fault_pointer = 0x%" PRIx64, h->fault_pointer);
2936
2937 if (h->job_barrier)
2938 pandecode_prop("job_barrier = %d", h->job_barrier);
2939
2940 pandecode_prop("job_index = %d", h->job_index);
2941
2942 if (h->unknown_flags)
2943 pandecode_prop("unknown_flags = %d", h->unknown_flags);
2944
2945 if (h->job_dependency_index_1)
2946 pandecode_prop("job_dependency_index_1 = %d", h->job_dependency_index_1);
2947
2948 if (h->job_dependency_index_2)
2949 pandecode_prop("job_dependency_index_2 = %d", h->job_dependency_index_2);
2950
2951 pandecode_indent--;
2952 pandecode_log("};\n");
2953
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002954 switch (h->job_type) {
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -05002955 case JOB_TYPE_WRITE_VALUE: {
2956 struct mali_payload_write_value *s = payload;
2957 pandecode_log("struct mali_payload_write_value payload_%"PRIx64"_%d = {\n", payload_ptr, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002958 pandecode_indent++;
Alyssa Rosenzweig9eae9502019-12-04 08:59:29 -05002959 MEMORY_PROP(s, address);
2960
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -05002961 if (s->value_descriptor != MALI_WRITE_VALUE_ZERO) {
Alyssa Rosenzweig9eae9502019-12-04 08:59:29 -05002962 pandecode_msg("XXX: unknown value descriptor\n");
2963 pandecode_prop("value_descriptor = 0x%" PRIX32, s->value_descriptor);
2964 }
2965
2966 if (s->reserved) {
2967 pandecode_msg("XXX: set value tripped\n");
2968 pandecode_prop("reserved = 0x%" PRIX32, s->reserved);
2969 }
2970
2971 pandecode_prop("immediate = 0x%" PRIX64, s->immediate);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002972 pandecode_indent--;
2973 pandecode_log("};\n");
2974
2975 break;
2976 }
2977
2978 case JOB_TYPE_TILER:
2979 case JOB_TYPE_VERTEX:
2980 case JOB_TYPE_COMPUTE:
2981 if (bifrost) {
2982 if (h->job_type == JOB_TYPE_TILER)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002983 pandecode_tiler_job_bfr(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002984 else
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002985 pandecode_vertex_job_bfr(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002986 } else
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002987 pandecode_vertex_or_tiler_job_mdg(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002988
2989 break;
2990
2991 case JOB_TYPE_FRAGMENT:
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01002992 pandecode_fragment_job(mem, payload_ptr, job_no, bifrost, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002993 break;
2994
2995 default:
2996 break;
2997 }
Alyssa Rosenzweig65e5c192019-12-27 13:03:22 -05002998 } while ((jc_gpu_va = h->next_job));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002999}