blob: 12f9f8eb9b27cdd4d803291167a4bc807f0c36a8 [file] [log] [blame]
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001/*
2 * Copyright (C) 2017-2019 Alyssa Rosenzweig
3 * Copyright (C) 2017-2019 Connor Abbott
Alyssa Rosenzweigd4575c32019-06-25 13:30:17 -07004 * Copyright (C) 2019 Collabora, Ltd.
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00005 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
Alyssa Rosenzweig88dc4c22020-08-05 18:13:11 -040026#include <midgard_pack.h>
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000027#include <stdio.h>
28#include <stdlib.h>
29#include <memory.h>
30#include <stdbool.h>
31#include <stdarg.h>
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -070032#include <ctype.h>
Alyssa Rosenzweigfc7bcee2019-06-11 12:25:35 -070033#include "decode.h"
Lionel Landwerlin66373952019-08-09 16:39:58 +030034#include "util/macros.h"
Alyssa Rosenzweigd699ffb2019-05-14 22:21:39 +000035#include "util/u_math.h"
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000036
Alyssa Rosenzweigec2a59c2019-07-10 10:33:24 -070037#include "midgard/disassemble.h"
38#include "bifrost/disassemble.h"
39
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -070040#include "pan_encoder.h"
41
Tomeu Vizoso9447a842019-10-30 12:05:30 +010042static void pandecode_swizzle(unsigned swizzle, enum mali_format format);
43
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000044#define MEMORY_PROP(obj, p) {\
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -070045 if (obj->p) { \
46 char *a = pointer_as_memory_reference(obj->p); \
47 pandecode_prop("%s = %s", #p, a); \
48 free(a); \
49 } \
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000050}
51
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -070052#define MEMORY_PROP_DIR(obj, p) {\
53 if (obj.p) { \
54 char *a = pointer_as_memory_reference(obj.p); \
55 pandecode_prop("%s = %s", #p, a); \
56 free(a); \
57 } \
58}
59
Boris Brezillonaa2670c2020-09-05 18:14:17 +020060#define DUMP_UNPACKED(T, var, ...) { \
Boris Brezillon670e8182020-09-09 17:56:53 +020061 pandecode_log(__VA_ARGS__); \
Boris Brezillonaa2670c2020-09-05 18:14:17 +020062 pan_print(pandecode_dump_stream, T, var, (pandecode_indent + 1) * 2); \
63}
64
65#define DUMP_CL(T, cl, ...) {\
Boris Brezillon62c0ef02020-09-05 18:04:43 +020066 pan_unpack(cl, T, temp); \
Boris Brezillonaa2670c2020-09-05 18:14:17 +020067 DUMP_UNPACKED(T, temp, __VA_ARGS__); \
Alyssa Rosenzweigd2ddd4d2020-08-05 19:43:58 -040068}
69
Alyssa Rosenzweig4e3fe542020-08-14 16:03:12 -040070#define MAP_ADDR(T, addr, cl) \
71 const uint8_t *cl = 0; \
72 { \
73 struct pandecode_mapped_memory *mapped_mem = pandecode_find_mapped_gpu_mem_containing(addr); \
74 cl = pandecode_fetch_gpu_mem(mapped_mem, addr, MALI_ ## T ## _LENGTH); \
75 }
76
Boris Brezillon670e8182020-09-09 17:56:53 +020077#define DUMP_ADDR(T, addr, ...) {\
Alyssa Rosenzweig4e3fe542020-08-14 16:03:12 -040078 MAP_ADDR(T, addr, cl) \
Boris Brezillon670e8182020-09-09 17:56:53 +020079 DUMP_CL(T, cl, __VA_ARGS__); \
Alyssa Rosenzweigd2ddd4d2020-08-05 19:43:58 -040080}
81
Icecream95be22c072020-01-23 10:14:35 +130082FILE *pandecode_dump_stream;
83
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +000084/* Semantic logging type.
85 *
86 * Raw: for raw messages to be printed as is.
87 * Message: for helpful information to be commented out in replays.
88 * Property: for properties of a struct
89 *
90 * Use one of pandecode_log, pandecode_msg, or pandecode_prop as syntax sugar.
91 */
92
93enum pandecode_log_type {
94 PANDECODE_RAW,
95 PANDECODE_MESSAGE,
96 PANDECODE_PROPERTY
97};
98
99#define pandecode_log(...) pandecode_log_typed(PANDECODE_RAW, __VA_ARGS__)
100#define pandecode_msg(...) pandecode_log_typed(PANDECODE_MESSAGE, __VA_ARGS__)
101#define pandecode_prop(...) pandecode_log_typed(PANDECODE_PROPERTY, __VA_ARGS__)
102
103unsigned pandecode_indent = 0;
104
105static void
106pandecode_make_indent(void)
107{
108 for (unsigned i = 0; i < pandecode_indent; ++i)
Boris Brezillon6249ae72020-09-09 17:52:23 +0200109 fprintf(pandecode_dump_stream, " ");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000110}
111
112static void
113pandecode_log_typed(enum pandecode_log_type type, const char *format, ...)
114{
115 va_list ap;
116
117 pandecode_make_indent();
118
119 if (type == PANDECODE_MESSAGE)
Icecream95be22c072020-01-23 10:14:35 +1300120 fprintf(pandecode_dump_stream, "// ");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000121 else if (type == PANDECODE_PROPERTY)
Icecream95be22c072020-01-23 10:14:35 +1300122 fprintf(pandecode_dump_stream, ".");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000123
124 va_start(ap, format);
Icecream95be22c072020-01-23 10:14:35 +1300125 vfprintf(pandecode_dump_stream, format, ap);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000126 va_end(ap);
127
128 if (type == PANDECODE_PROPERTY)
Icecream95be22c072020-01-23 10:14:35 +1300129 fprintf(pandecode_dump_stream, ",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000130}
131
132static void
133pandecode_log_cont(const char *format, ...)
134{
135 va_list ap;
136
137 va_start(ap, format);
Icecream95be22c072020-01-23 10:14:35 +1300138 vfprintf(pandecode_dump_stream, format, ap);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000139 va_end(ap);
140}
141
Alyssa Rosenzweig4391c652019-08-19 15:14:48 -0700142/* To check for memory safety issues, validates that the given pointer in GPU
143 * memory is valid, containing at least sz bytes. The goal is to eliminate
144 * GPU-side memory bugs (NULL pointer dereferences, buffer overflows, or buffer
145 * overruns) by statically validating pointers.
146 */
147
148static void
149pandecode_validate_buffer(mali_ptr addr, size_t sz)
150{
151 if (!addr) {
152 pandecode_msg("XXX: null pointer deref");
153 return;
154 }
155
156 /* Find a BO */
157
158 struct pandecode_mapped_memory *bo =
159 pandecode_find_mapped_gpu_mem_containing(addr);
160
161 if (!bo) {
162 pandecode_msg("XXX: invalid memory dereference\n");
163 return;
164 }
165
166 /* Bounds check */
167
168 unsigned offset = addr - bo->gpu_va;
169 unsigned total = offset + sz;
170
171 if (total > bo->length) {
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -0700172 pandecode_msg("XXX: buffer overrun. "
Alyssa Rosenzweigbcfcb7e2019-08-30 17:02:43 -0700173 "Chunk of size %zu at offset %d in buffer of size %zu. "
174 "Overrun by %zu bytes. \n",
Alyssa Rosenzweig4391c652019-08-19 15:14:48 -0700175 sz, offset, bo->length, total - bo->length);
176 return;
177 }
178}
179
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000180struct pandecode_flag_info {
181 u64 flag;
182 const char *name;
183};
184
185static void
186pandecode_log_decoded_flags(const struct pandecode_flag_info *flag_info,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700187 u64 flags)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000188{
189 bool decodable_flags_found = false;
190
191 for (int i = 0; flag_info[i].name; i++) {
192 if ((flags & flag_info[i].flag) != flag_info[i].flag)
193 continue;
194
195 if (!decodable_flags_found) {
196 decodable_flags_found = true;
197 } else {
198 pandecode_log_cont(" | ");
199 }
200
201 pandecode_log_cont("%s", flag_info[i].name);
202
203 flags &= ~flag_info[i].flag;
204 }
205
206 if (decodable_flags_found) {
207 if (flags)
208 pandecode_log_cont(" | 0x%" PRIx64, flags);
209 } else {
210 pandecode_log_cont("0x%" PRIx64, flags);
211 }
212}
213
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000214#define FLAG_INFO(flag) { MALI_CLEAR_##flag, "MALI_CLEAR_" #flag }
215static const struct pandecode_flag_info clear_flag_info[] = {
216 FLAG_INFO(FAST),
217 FLAG_INFO(SLOW),
218 FLAG_INFO(SLOW_STENCIL),
219 {}
220};
221#undef FLAG_INFO
222
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000223#define FLAG_INFO(flag) { MALI_MFBD_FORMAT_##flag, "MALI_MFBD_FORMAT_" #flag }
224static const struct pandecode_flag_info mfbd_fmt_flag_info[] = {
Alyssa Rosenzweig31a4ef82019-06-17 16:01:24 -0700225 FLAG_INFO(SRGB),
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000226 {}
227};
228#undef FLAG_INFO
229
Icecream959ac106d2020-06-02 14:13:03 +1200230#define FLAG_INFO(flag) { MALI_AFBC_##flag, "MALI_AFBC_" #flag }
231static const struct pandecode_flag_info afbc_fmt_flag_info[] = {
232 FLAG_INFO(YTR),
233 {}
234};
235#undef FLAG_INFO
236
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000237#define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag }
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500238static const struct pandecode_flag_info mfbd_extra_flag_hi_info[] = {
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000239 FLAG_INFO(PRESENT),
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500240 {}
241};
242#undef FLAG_INFO
243
244#define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag }
245static const struct pandecode_flag_info mfbd_extra_flag_lo_info[] = {
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000246 FLAG_INFO(ZS),
247 {}
248};
249#undef FLAG_INFO
250
Alyssa Rosenzweigac689462019-06-14 11:14:01 -0700251#define FLAG_INFO(flag) { MALI_MFBD_##flag, "MALI_MFBD_" #flag }
252static const struct pandecode_flag_info mfbd_flag_info [] = {
253 FLAG_INFO(DEPTH_WRITE),
254 FLAG_INFO(EXTRA),
255 {}
256};
257#undef FLAG_INFO
258
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100259#define FLAG_INFO(flag) { MALI_SFBD_FORMAT_##flag, "MALI_SFBD_FORMAT_" #flag }
260static const struct pandecode_flag_info sfbd_unk1_info [] = {
261 FLAG_INFO(MSAA_8),
262 FLAG_INFO(MSAA_A),
263 {}
264};
265#undef FLAG_INFO
266
267#define FLAG_INFO(flag) { MALI_SFBD_FORMAT_##flag, "MALI_SFBD_FORMAT_" #flag }
268static const struct pandecode_flag_info sfbd_unk2_info [] = {
269 FLAG_INFO(MSAA_B),
270 FLAG_INFO(SRGB),
271 {}
272};
273#undef FLAG_INFO
274
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700275/* Midgard's tiler descriptor is embedded within the
276 * larger FBD */
277
278static void
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700279pandecode_midgard_tiler_descriptor(
280 const struct midgard_tiler_descriptor *t,
281 unsigned width,
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700282 unsigned height,
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500283 bool is_fragment,
284 bool has_hierarchy)
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700285{
286 pandecode_log(".tiler = {\n");
287 pandecode_indent++;
288
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700289 if (t->hierarchy_mask == MALI_TILER_DISABLED)
290 pandecode_prop("hierarchy_mask = MALI_TILER_DISABLED");
291 else
292 pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask);
293
294 /* We know this name from the kernel, but we never see it nonzero */
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -0700295
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700296 if (t->flags)
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -0700297 pandecode_msg("XXX: unexpected tiler flags 0x%" PRIx16, t->flags);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700298
299 MEMORY_PROP(t, polygon_list);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700300
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700301 /* The body is offset from the base of the polygon list */
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -0400302 //assert(t->polygon_list_body > t->polygon_list);
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700303 unsigned body_offset = t->polygon_list_body - t->polygon_list;
304
305 /* It needs to fit inside the reported size */
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -0400306 //assert(t->polygon_list_size >= body_offset);
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700307
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700308 /* Now that we've sanity checked, we'll try to calculate the sizes
309 * ourselves for comparison */
310
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500311 unsigned ref_header = panfrost_tiler_header_size(width, height, t->hierarchy_mask, has_hierarchy);
312 unsigned ref_size = panfrost_tiler_full_size(width, height, t->hierarchy_mask, has_hierarchy);
Alyssa Rosenzweiga8bd3ad2019-08-19 11:48:32 -0700313
314 if (!((ref_header == body_offset) && (ref_size == t->polygon_list_size))) {
315 pandecode_msg("XXX: bad polygon list size (expected %d / 0x%x)\n",
316 ref_header, ref_size);
317 pandecode_prop("polygon_list_size = 0x%x", t->polygon_list_size);
318 pandecode_msg("body offset %d\n", body_offset);
319 }
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700320
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700321 /* The tiler heap has a start and end specified -- it should be
322 * identical to what we have in the BO. The exception is if tiling is
323 * disabled. */
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700324
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700325 MEMORY_PROP(t, heap_start);
Alyssa Rosenzweig52101e42019-08-19 10:38:25 -0700326 assert(t->heap_end >= t->heap_start);
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700327
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700328 unsigned heap_size = t->heap_end - t->heap_start;
Alyssa Rosenzweig13d07972019-08-19 10:56:23 -0700329
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700330 /* Tiling is enabled with a special flag */
331 unsigned hierarchy_mask = t->hierarchy_mask & MALI_HIERARCHY_MASK;
332 unsigned tiler_flags = t->hierarchy_mask ^ hierarchy_mask;
333
334 bool tiling_enabled = hierarchy_mask;
335
336 if (tiling_enabled) {
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700337 /* We should also have no other flags */
338 if (tiler_flags)
339 pandecode_msg("XXX: unexpected tiler %X\n", tiler_flags);
340 } else {
341 /* When tiling is disabled, we should have that flag and no others */
342
343 if (tiler_flags != MALI_TILER_DISABLED) {
344 pandecode_msg("XXX: unexpected tiler flag %X, expected MALI_TILER_DISABLED\n",
345 tiler_flags);
346 }
347
348 /* We should also have an empty heap */
349 if (heap_size) {
350 pandecode_msg("XXX: tiler heap size %d given, expected empty\n",
351 heap_size);
352 }
353
354 /* Disabled tiling is used only for clear-only jobs, which are
355 * purely FRAGMENT, so we should never see this for
356 * non-FRAGMENT descriptors. */
357
358 if (!is_fragment)
359 pandecode_msg("XXX: tiler disabled for non-FRAGMENT job\n");
360 }
361
362 /* We've never seen weights used in practice, but we know from the
363 * kernel these fields is there */
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700364
365 bool nonzero_weights = false;
366
367 for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
368 nonzero_weights |= t->weights[w] != 0x0;
369 }
370
371 if (nonzero_weights) {
Alyssa Rosenzweigacd140c2020-02-28 07:25:07 -0500372 pandecode_log(".weights = { ");
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700373
374 for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
Alyssa Rosenzweigacd140c2020-02-28 07:25:07 -0500375 pandecode_log_cont("%d, ", t->weights[w]);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700376 }
377
378 pandecode_log("},");
379 }
380
381 pandecode_indent--;
382 pandecode_log("}\n");
383}
384
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500385/* TODO: The Bifrost tiler is not understood at all yet */
386
387static void
Tomeu Vizoso46e42462020-04-08 15:58:42 +0200388pandecode_bifrost_tiler_descriptor(const struct mali_framebuffer *fb)
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500389{
390 pandecode_log(".tiler = {\n");
391 pandecode_indent++;
392
Tomeu Vizoso46e42462020-04-08 15:58:42 +0200393 MEMORY_PROP(fb, tiler_meta);
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500394
Tomeu Vizoso46e42462020-04-08 15:58:42 +0200395 for (int i = 0; i < 16; i++) {
396 if (fb->zeros[i] != 0) {
397 pandecode_msg("XXX: tiler descriptor zero %d tripped, value %x\n",
398 i, fb->zeros[i]);
399 }
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500400 }
401
402 pandecode_log("},\n");
403
404 pandecode_indent--;
405 pandecode_log("}\n");
406
407}
408
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700409/* Information about the framebuffer passed back for
410 * additional analysis */
411
412struct pandecode_fbd {
413 unsigned width;
414 unsigned height;
415 unsigned rt_count;
416 bool has_extra;
417};
418
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100419static void
420pandecode_sfbd_format(struct mali_sfbd_format format)
421{
422 pandecode_log(".format = {\n");
423 pandecode_indent++;
424
425 pandecode_log(".unk1 = ");
426 pandecode_log_decoded_flags(sfbd_unk1_info, format.unk1);
427 pandecode_log_cont(",\n");
428
429 /* TODO: Map formats so we can check swizzles and print nicely */
430 pandecode_log("swizzle");
431 pandecode_swizzle(format.swizzle, MALI_RGBA8_UNORM);
432 pandecode_log_cont(",\n");
433
434 pandecode_prop("nr_channels = MALI_POSITIVE(%d)",
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -0500435 (format.nr_channels + 1));
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100436
437 pandecode_log(".unk2 = ");
438 pandecode_log_decoded_flags(sfbd_unk2_info, format.unk2);
439 pandecode_log_cont(",\n");
440
Alyssa Rosenzweigc9bdba22020-08-11 21:00:47 -0400441 pandecode_prop("block = %s", mali_block_format_as_str(format.block));
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100442
443 pandecode_prop("unk3 = 0x%" PRIx32, format.unk3);
444
445 pandecode_indent--;
446 pandecode_log("},\n");
447}
448
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500449static void
450pandecode_shared_memory(const struct mali_shared_memory *desc, bool is_compute)
451{
452 pandecode_prop("stack_shift = 0x%x", desc->stack_shift);
453
454 if (desc->unk0)
455 pandecode_prop("unk0 = 0x%x", desc->unk0);
456
457 if (desc->shared_workgroup_count != 0x1F) {
458 pandecode_prop("shared_workgroup_count = %d", desc->shared_workgroup_count);
459 if (!is_compute)
460 pandecode_msg("XXX: wrong workgroup count for noncompute\n");
461 }
462
463 if (desc->shared_unk1 || desc->shared_shift) {
464 pandecode_prop("shared_unk1 = %X", desc->shared_unk1);
465 pandecode_prop("shared_shift = %X", desc->shared_shift);
466
467 if (!is_compute)
468 pandecode_msg("XXX: shared memory configured in noncompute shader");
469 }
470
471 if (desc->shared_zero) {
472 pandecode_msg("XXX: shared memory zero tripped\n");
473 pandecode_prop("shared_zero = 0x%" PRIx32, desc->shared_zero);
474 }
475
476 if (desc->shared_memory && !is_compute)
477 pandecode_msg("XXX: shared memory used in noncompute shader\n");
478
479 MEMORY_PROP(desc, scratchpad);
480 MEMORY_PROP(desc, shared_memory);
481 MEMORY_PROP(desc, unknown1);
482}
483
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700484static struct pandecode_fbd
Tomeu Vizoso697f02c2019-11-12 12:15:02 +0100485pandecode_sfbd(uint64_t gpu_va, int job_no, bool is_fragment, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000486{
487 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
488 const struct mali_single_framebuffer *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va);
489
Alyssa Rosenzweigd6d6d632019-08-30 17:00:09 -0700490 struct pandecode_fbd info = {
491 .has_extra = false,
492 .rt_count = 1
493 };
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700494
Tomeu Vizoso9bef1f12019-06-25 09:20:51 +0200495 pandecode_log("struct mali_single_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000496 pandecode_indent++;
497
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500498 pandecode_log(".shared_memory = {\n");
499 pandecode_indent++;
500 pandecode_shared_memory(&s->shared_memory, false);
501 pandecode_indent--;
502 pandecode_log("},\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000503
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100504 pandecode_sfbd_format(s->format);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000505
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700506 info.width = s->width + 1;
507 info.height = s->height + 1;
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700508
509 pandecode_prop("width = MALI_POSITIVE(%" PRId16 ")", info.width);
510 pandecode_prop("height = MALI_POSITIVE(%" PRId16 ")", info.height);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000511
Tomeu Vizoso23fe7cd2019-07-12 12:38:50 +0200512 MEMORY_PROP(s, checksum);
513
514 if (s->checksum_stride)
515 pandecode_prop("checksum_stride = %d", s->checksum_stride);
516
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000517 MEMORY_PROP(s, framebuffer);
518 pandecode_prop("stride = %d", s->stride);
519
520 /* Earlier in the actual commandstream -- right before width -- but we
521 * delay to flow nicer */
522
523 pandecode_log(".clear_flags = ");
524 pandecode_log_decoded_flags(clear_flag_info, s->clear_flags);
525 pandecode_log_cont(",\n");
526
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100527 if (s->depth_buffer) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000528 MEMORY_PROP(s, depth_buffer);
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100529 pandecode_prop("depth_stride = %d", s->depth_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000530 }
531
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100532 if (s->stencil_buffer) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000533 MEMORY_PROP(s, stencil_buffer);
Tomeu Vizoso9447a842019-10-30 12:05:30 +0100534 pandecode_prop("stencil_stride = %d", s->stencil_stride);
535 }
536
537 if (s->depth_stride_zero ||
538 s->stencil_stride_zero ||
539 s->zero7 || s->zero8) {
540 pandecode_msg("XXX: Depth/stencil zeros tripped\n");
541 pandecode_prop("depth_stride_zero = 0x%x",
542 s->depth_stride_zero);
543 pandecode_prop("stencil_stride_zero = 0x%x",
544 s->stencil_stride_zero);
545 pandecode_prop("zero7 = 0x%" PRIx32,
546 s->zero7);
547 pandecode_prop("zero8 = 0x%" PRIx32,
548 s->zero8);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000549 }
550
551 if (s->clear_color_1 | s->clear_color_2 | s->clear_color_3 | s->clear_color_4) {
552 pandecode_prop("clear_color_1 = 0x%" PRIx32, s->clear_color_1);
553 pandecode_prop("clear_color_2 = 0x%" PRIx32, s->clear_color_2);
554 pandecode_prop("clear_color_3 = 0x%" PRIx32, s->clear_color_3);
555 pandecode_prop("clear_color_4 = 0x%" PRIx32, s->clear_color_4);
556 }
557
558 if (s->clear_depth_1 != 0 || s->clear_depth_2 != 0 || s->clear_depth_3 != 0 || s->clear_depth_4 != 0) {
559 pandecode_prop("clear_depth_1 = %f", s->clear_depth_1);
560 pandecode_prop("clear_depth_2 = %f", s->clear_depth_2);
561 pandecode_prop("clear_depth_3 = %f", s->clear_depth_3);
562 pandecode_prop("clear_depth_4 = %f", s->clear_depth_4);
563 }
564
565 if (s->clear_stencil) {
566 pandecode_prop("clear_stencil = 0x%x", s->clear_stencil);
567 }
568
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -0700569 const struct midgard_tiler_descriptor t = s->tiler;
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500570
571 bool has_hierarchy = !(gpu_id == 0x0720 || gpu_id == 0x0820 || gpu_id == 0x0830);
572 pandecode_midgard_tiler_descriptor(&t, s->width + 1, s->height + 1, is_fragment, has_hierarchy);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000573
574 pandecode_indent--;
575 pandecode_log("};\n");
576
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000577 pandecode_prop("zero2 = 0x%" PRIx32, s->zero2);
578 pandecode_prop("zero4 = 0x%" PRIx32, s->zero4);
Tomeu Vizoso94e6d172019-11-06 17:30:54 +0100579 pandecode_prop("zero5 = 0x%" PRIx32, s->zero5);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000580
Icecream95be22c072020-01-23 10:14:35 +1300581 pandecode_log_cont(".zero3 = {");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000582
583 for (int i = 0; i < sizeof(s->zero3) / sizeof(s->zero3[0]); ++i)
Icecream95be22c072020-01-23 10:14:35 +1300584 pandecode_log_cont("%X, ", s->zero3[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000585
Icecream95be22c072020-01-23 10:14:35 +1300586 pandecode_log_cont("},\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000587
Icecream95be22c072020-01-23 10:14:35 +1300588 pandecode_log_cont(".zero6 = {");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000589
590 for (int i = 0; i < sizeof(s->zero6) / sizeof(s->zero6[0]); ++i)
Icecream95be22c072020-01-23 10:14:35 +1300591 pandecode_log_cont("%X, ", s->zero6[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000592
Icecream95be22c072020-01-23 10:14:35 +1300593 pandecode_log_cont("},\n");
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700594
595 return info;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000596}
597
598static void
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700599pandecode_compute_fbd(uint64_t gpu_va, int job_no)
600{
601 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500602 const struct mali_shared_memory *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700603
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500604 pandecode_log("struct mali_shared_memory shared_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700605 pandecode_indent++;
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500606 pandecode_shared_memory(s, true);
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700607 pandecode_indent--;
Alyssa Rosenzweig254f40f2020-02-05 15:58:28 -0500608 pandecode_log("},\n");
Alyssa Rosenzweig0aa5d892019-06-19 08:41:51 -0700609}
610
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700611/* Extracts the number of components associated with a Mali format */
612
613static unsigned
614pandecode_format_component_count(enum mali_format fmt)
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000615{
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700616 /* Mask out the format class */
617 unsigned top = fmt & 0b11100000;
618
619 switch (top) {
620 case MALI_FORMAT_SNORM:
621 case MALI_FORMAT_UINT:
622 case MALI_FORMAT_UNORM:
623 case MALI_FORMAT_SINT:
624 return ((fmt >> 3) & 3) + 1;
625 default:
626 /* TODO: Validate */
627 return 4;
628 }
629}
630
631/* Extracts a mask of accessed components from a 12-bit Mali swizzle */
632
633static unsigned
634pandecode_access_mask_from_channel_swizzle(unsigned swizzle)
635{
636 unsigned mask = 0;
Alyssa Rosenzweigcdc32762020-08-12 16:46:07 -0400637 assert(MALI_CHANNEL_R == 0);
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700638
639 for (unsigned c = 0; c < 4; ++c) {
640 enum mali_channel chan = (swizzle >> (3*c)) & 0x7;
641
Alyssa Rosenzweigcdc32762020-08-12 16:46:07 -0400642 if (chan <= MALI_CHANNEL_A)
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700643 mask |= (1 << chan);
644 }
645
646 return mask;
647}
648
649/* Validates that a (format, swizzle) pair is valid, in the sense that the
650 * swizzle doesn't access any components that are undefined in the format.
651 * Returns whether the swizzle is trivial (doesn't do any swizzling) and can be
652 * omitted */
653
654static bool
655pandecode_validate_format_swizzle(enum mali_format fmt, unsigned swizzle)
656{
657 unsigned nr_comp = pandecode_format_component_count(fmt);
658 unsigned access_mask = pandecode_access_mask_from_channel_swizzle(swizzle);
659 unsigned valid_mask = (1 << nr_comp) - 1;
660 unsigned invalid_mask = ~valid_mask;
661
662 if (access_mask & invalid_mask) {
663 pandecode_msg("XXX: invalid components accessed\n");
664 return false;
665 }
666
667 /* Check for the default non-swizzling swizzle so we can suppress
668 * useless printing for the defaults */
669
670 unsigned default_swizzles[4] = {
Alyssa Rosenzweigcdc32762020-08-12 16:46:07 -0400671 MALI_CHANNEL_R | (MALI_CHANNEL_0 << 3) | (MALI_CHANNEL_0 << 6) | (MALI_CHANNEL_1 << 9),
672 MALI_CHANNEL_R | (MALI_CHANNEL_G << 3) | (MALI_CHANNEL_0 << 6) | (MALI_CHANNEL_1 << 9),
673 MALI_CHANNEL_R | (MALI_CHANNEL_G << 3) | (MALI_CHANNEL_B << 6) | (MALI_CHANNEL_1 << 9),
674 MALI_CHANNEL_R | (MALI_CHANNEL_G << 3) | (MALI_CHANNEL_B << 6) | (MALI_CHANNEL_A << 9)
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700675 };
676
677 return (swizzle == default_swizzles[nr_comp - 1]);
678}
679
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700680static void
681pandecode_swizzle(unsigned swizzle, enum mali_format format)
682{
683 /* First, do some validation */
684 bool trivial_swizzle = pandecode_validate_format_swizzle(
685 format, swizzle);
686
687 if (trivial_swizzle)
688 return;
689
690 /* Next, print the swizzle */
691 pandecode_log_cont(".");
692
693 static const char components[] = "rgba01";
694
695 for (unsigned c = 0; c < 4; ++c) {
696 enum mali_channel chan = (swizzle >> (3 * c)) & 0x7;
697
Alyssa Rosenzweigcdc32762020-08-12 16:46:07 -0400698 if (chan > MALI_CHANNEL_1) {
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700699 pandecode_log("XXX: invalid swizzle channel %d\n", chan);
700 continue;
701 }
702 pandecode_log_cont("%c", components[chan]);
703 }
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000704}
705
706static void
707pandecode_rt_format(struct mali_rt_format format)
708{
709 pandecode_log(".format = {\n");
710 pandecode_indent++;
711
712 pandecode_prop("unk1 = 0x%" PRIx32, format.unk1);
713 pandecode_prop("unk2 = 0x%" PRIx32, format.unk2);
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -0700714 pandecode_prop("unk3 = 0x%" PRIx32, format.unk3);
Tomeu Vizoso28902ba2020-04-24 11:30:03 +0200715 pandecode_prop("unk4 = 0x%" PRIx32, format.unk4);
Alyssa Rosenzweigd5079512019-06-17 15:53:09 -0700716
Alyssa Rosenzweigc9bdba22020-08-11 21:00:47 -0400717 pandecode_prop("block = %s", mali_block_format_as_str(format.block));
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000718
Alyssa Rosenzweige09392f2019-08-20 14:34:09 -0700719 /* TODO: Map formats so we can check swizzles and print nicely */
720 pandecode_log("swizzle");
721 pandecode_swizzle(format.swizzle, MALI_RGBA8_UNORM);
722 pandecode_log_cont(",\n");
723
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000724 pandecode_prop("nr_channels = MALI_POSITIVE(%d)",
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -0500725 (format.nr_channels + 1));
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000726
727 pandecode_log(".flags = ");
728 pandecode_log_decoded_flags(mfbd_fmt_flag_info, format.flags);
729 pandecode_log_cont(",\n");
730
Alyssa Rosenzweig99d17fb2020-08-11 21:04:01 -0400731 pandecode_prop("msaa = %s", mali_msaa_as_str(format.msaa));
Alyssa Rosenzweig2c479932020-07-21 18:51:07 -0400732
Alyssa Rosenzweige49204c2019-08-20 11:11:46 -0700733 /* In theory, the no_preload bit can be cleared to enable MFBD preload,
734 * which is a faster hardware-based alternative to the wallpaper method
735 * to preserve framebuffer contents across frames. In practice, MFBD
736 * preload is buggy on Midgard, and so this is a chicken bit. If this
737 * bit isn't set, most likely something broke unrelated to preload */
738
739 if (!format.no_preload) {
740 pandecode_msg("XXX: buggy MFBD preload enabled - chicken bit should be clear\n");
741 pandecode_prop("no_preload = 0x%" PRIx32, format.no_preload);
742 }
Alyssa Rosenzweigb78e04c2019-08-14 16:01:38 -0700743
744 if (format.zero)
745 pandecode_prop("zero = 0x%" PRIx32, format.zero);
Alyssa Rosenzweigf9430472019-02-24 06:22:23 +0000746
747 pandecode_indent--;
748 pandecode_log("},\n");
749}
750
751static void
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500752pandecode_render_target(uint64_t gpu_va, unsigned job_no, const struct mali_framebuffer *fb)
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700753{
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500754 pandecode_log("struct mali_render_target rts_list_%"PRIx64"_%d[] = {\n", gpu_va, job_no);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700755 pandecode_indent++;
756
Alyssa Rosenzweig4ccd42e2019-12-27 12:16:09 -0500757 for (int i = 0; i < (fb->rt_count_1 + 1); i++) {
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500758 mali_ptr rt_va = gpu_va + i * sizeof(struct mali_render_target);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700759 struct pandecode_mapped_memory *mem =
760 pandecode_find_mapped_gpu_mem_containing(rt_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500761 const struct mali_render_target *PANDECODE_PTR_VAR(rt, mem, (mali_ptr) rt_va);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700762
763 pandecode_log("{\n");
764 pandecode_indent++;
765
766 pandecode_rt_format(rt->format);
767
Alyssa Rosenzweigc9bdba22020-08-11 21:00:47 -0400768 if (rt->format.block == MALI_BLOCK_FORMAT_AFBC) {
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700769 pandecode_log(".afbc = {\n");
770 pandecode_indent++;
771
772 char *a = pointer_as_memory_reference(rt->afbc.metadata);
773 pandecode_prop("metadata = %s", a);
774 free(a);
775
776 pandecode_prop("stride = %d", rt->afbc.stride);
Icecream959ac106d2020-06-02 14:13:03 +1200777
778 pandecode_log(".flags = ");
779 pandecode_log_decoded_flags(afbc_fmt_flag_info, rt->afbc.flags);
780 pandecode_log_cont(",\n");
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700781
782 pandecode_indent--;
783 pandecode_log("},\n");
Icecream959ac106d2020-06-02 14:13:03 +1200784 } else if (rt->afbc.metadata || rt->afbc.stride || rt->afbc.flags) {
Alyssa Rosenzweigc9b62332019-08-20 11:06:07 -0700785 pandecode_msg("XXX: AFBC disabled but AFBC field set (0x%lX, 0x%x, 0x%x)\n",
786 rt->afbc.metadata,
787 rt->afbc.stride,
Icecream959ac106d2020-06-02 14:13:03 +1200788 rt->afbc.flags);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700789 }
790
791 MEMORY_PROP(rt, framebuffer);
792 pandecode_prop("framebuffer_stride = %d", rt->framebuffer_stride);
793
Alyssa Rosenzweig37204582020-06-30 16:21:18 -0400794 if (rt->layer_stride)
795 pandecode_prop("layer_stride = %d", rt->layer_stride);
796
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700797 if (rt->clear_color_1 | rt->clear_color_2 | rt->clear_color_3 | rt->clear_color_4) {
798 pandecode_prop("clear_color_1 = 0x%" PRIx32, rt->clear_color_1);
799 pandecode_prop("clear_color_2 = 0x%" PRIx32, rt->clear_color_2);
800 pandecode_prop("clear_color_3 = 0x%" PRIx32, rt->clear_color_3);
801 pandecode_prop("clear_color_4 = 0x%" PRIx32, rt->clear_color_4);
802 }
803
Alyssa Rosenzweig37204582020-06-30 16:21:18 -0400804 if (rt->zero1 || rt->zero2) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -0700805 pandecode_msg("XXX: render target zeros tripped\n");
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700806 pandecode_prop("zero1 = 0x%" PRIx64, rt->zero1);
807 pandecode_prop("zero2 = 0x%" PRIx32, rt->zero2);
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -0700808 }
809
810 pandecode_indent--;
811 pandecode_log("},\n");
812 }
813
814 pandecode_indent--;
815 pandecode_log("};\n");
816}
817
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700818static struct pandecode_fbd
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -0500819pandecode_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 +0000820{
821 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500822 const struct mali_framebuffer *PANDECODE_PTR_VAR(fb, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000823
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700824 struct pandecode_fbd info;
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -0500825
826 if (is_bifrost && fb->msaa.sample_locations) {
827 /* The blob stores all possible sample locations in a single buffer
828 * allocated on startup, and just switches the pointer when switching
829 * MSAA state. For now, we just put the data into the cmdstream, but we
830 * should do something like what the blob does with a real driver.
831 *
832 * There seem to be 32 slots for sample locations, followed by another
833 * 16. The second 16 is just the center location followed by 15 zeros
834 * in all the cases I've identified (maybe shader vs. depth/color
835 * samples?).
836 */
837
838 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(fb->msaa.sample_locations);
839
840 const u16 *PANDECODE_PTR_VAR(samples, smem, fb->msaa.sample_locations);
841
842 pandecode_log("uint16_t sample_locations_%d[] = {\n", job_no);
843 pandecode_indent++;
844
845 for (int i = 0; i < 32 + 16; i++) {
846 pandecode_log("%d, %d,\n", samples[2 * i], samples[2 * i + 1]);
847 }
848
849 pandecode_indent--;
850 pandecode_log("};\n");
851 }
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700852
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500853 pandecode_log("struct mali_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000854 pandecode_indent++;
855
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -0500856 if (is_bifrost) {
857 pandecode_log(".msaa = {\n");
858 pandecode_indent++;
859
860 if (fb->msaa.sample_locations)
861 pandecode_prop("sample_locations = sample_locations_%d", job_no);
862 else
863 pandecode_msg("XXX: sample_locations missing\n");
864
865 if (fb->msaa.zero1 || fb->msaa.zero2 || fb->msaa.zero4) {
866 pandecode_msg("XXX: multisampling zero tripped\n");
867 pandecode_prop("zero1 = %" PRIx64, fb->msaa.zero1);
868 pandecode_prop("zero2 = %" PRIx64, fb->msaa.zero2);
869 pandecode_prop("zero4 = %" PRIx64, fb->msaa.zero4);
870 }
871
872 pandecode_indent--;
873 pandecode_log("},\n");
874 } else {
875 pandecode_log(".shared_memory = {\n");
876 pandecode_indent++;
877 pandecode_shared_memory(&fb->shared_memory, is_compute);
878 pandecode_indent--;
879 pandecode_log("},\n");
880 }
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -0700881
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700882 info.width = fb->width1 + 1;
883 info.height = fb->height1 + 1;
884 info.rt_count = fb->rt_count_1 + 1;
885
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000886 pandecode_prop("width1 = MALI_POSITIVE(%d)", fb->width1 + 1);
887 pandecode_prop("height1 = MALI_POSITIVE(%d)", fb->height1 + 1);
888 pandecode_prop("width2 = MALI_POSITIVE(%d)", fb->width2 + 1);
889 pandecode_prop("height2 = MALI_POSITIVE(%d)", fb->height2 + 1);
890
891 pandecode_prop("unk1 = 0x%x", fb->unk1);
892 pandecode_prop("unk2 = 0x%x", fb->unk2);
893 pandecode_prop("rt_count_1 = MALI_POSITIVE(%d)", fb->rt_count_1 + 1);
894 pandecode_prop("rt_count_2 = %d", fb->rt_count_2);
895
Alyssa Rosenzweigac689462019-06-14 11:14:01 -0700896 pandecode_log(".mfbd_flags = ");
897 pandecode_log_decoded_flags(mfbd_flag_info, fb->mfbd_flags);
898 pandecode_log_cont(",\n");
899
Alyssa Rosenzweig3752f762019-08-20 11:25:29 -0700900 if (fb->clear_stencil)
901 pandecode_prop("clear_stencil = 0x%x", fb->clear_stencil);
902
903 if (fb->clear_depth)
904 pandecode_prop("clear_depth = %f", fb->clear_depth);
905
Alyssa Rosenzweig39939692020-01-22 08:51:19 -0500906 if (!is_compute)
Alyssa Rosenzweig3044a372020-02-28 07:25:25 -0500907 if (is_bifrost)
Tomeu Vizoso46e42462020-04-08 15:58:42 +0200908 pandecode_bifrost_tiler_descriptor(fb);
Alyssa Rosenzweigc2c8b1a2020-05-26 18:10:39 -0400909 else {
910 const struct midgard_tiler_descriptor t = fb->tiler;
911 pandecode_midgard_tiler_descriptor(&t, fb->width1 + 1, fb->height1 + 1, is_fragment, true);
912 }
Alyssa Rosenzweig39939692020-01-22 08:51:19 -0500913 else
914 pandecode_msg("XXX: skipping compute MFBD, fixme\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000915
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -0700916 if (fb->zero3 || fb->zero4) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -0700917 pandecode_msg("XXX: framebuffer zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000918 pandecode_prop("zero3 = 0x%" PRIx32, fb->zero3);
919 pandecode_prop("zero4 = 0x%" PRIx32, fb->zero4);
Alyssa Rosenzweig85e745f2019-06-12 09:33:06 -0700920 }
921
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000922 pandecode_indent--;
923 pandecode_log("};\n");
924
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500925 gpu_va += sizeof(struct mali_framebuffer);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000926
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -0700927 info.has_extra = (fb->mfbd_flags & MALI_MFBD_EXTRA) && is_fragment;
928
929 if (info.has_extra) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000930 mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500931 const struct mali_framebuffer_extra *PANDECODE_PTR_VAR(fbx, mem, (mali_ptr) gpu_va);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000932
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -0500933 pandecode_log("struct mali_framebuffer_extra fb_extra_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000934 pandecode_indent++;
935
936 MEMORY_PROP(fbx, checksum);
937
938 if (fbx->checksum_stride)
939 pandecode_prop("checksum_stride = %d", fbx->checksum_stride);
940
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500941 pandecode_log(".flags_hi = ");
Alyssa Rosenzweig7e53cce2020-05-04 12:48:34 -0400942 pandecode_log_decoded_flags(mfbd_extra_flag_hi_info, fbx->flags_hi);
Alyssa Rosenzweig587ad372019-03-09 00:45:23 +0000943 pandecode_log_cont(",\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000944
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500945 pandecode_log(".flags_lo = ");
946 pandecode_log_decoded_flags(mfbd_extra_flag_lo_info, fbx->flags_lo);
947 pandecode_log_cont(",\n");
948
Alyssa Rosenzweigc9bdba22020-08-11 21:00:47 -0400949 pandecode_prop("zs_block = %s", mali_block_format_as_str(fbx->zs_block));
Alyssa Rosenzweige061bf02020-07-15 11:57:35 -0400950 pandecode_prop("zs_samples = MALI_POSITIVE(%u)", fbx->zs_samples + 1);
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500951
Alyssa Rosenzweigc9bdba22020-08-11 21:00:47 -0400952 if (fbx->zs_block == MALI_BLOCK_FORMAT_AFBC) {
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000953 pandecode_log(".ds_afbc = {\n");
954 pandecode_indent++;
955
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -0700956 MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil_afbc_metadata);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000957 pandecode_prop("depth_stencil_afbc_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700958 fbx->ds_afbc.depth_stencil_afbc_stride);
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -0700959 MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000960
Icecream959ac106d2020-06-02 14:13:03 +1200961 pandecode_log(".flags = ");
962 pandecode_log_decoded_flags(afbc_fmt_flag_info, fbx->ds_afbc.flags);
963 pandecode_log_cont(",\n");
964
965 if (fbx->ds_afbc.padding) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -0700966 pandecode_msg("XXX: Depth/stencil AFBC zeros tripped\n");
Icecream959ac106d2020-06-02 14:13:03 +1200967 pandecode_prop("padding = 0x%" PRIx64, fbx->ds_afbc.padding);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000968 }
969
970 pandecode_indent--;
971 pandecode_log("},\n");
972 } else {
973 pandecode_log(".ds_linear = {\n");
974 pandecode_indent++;
975
976 if (fbx->ds_linear.depth) {
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -0700977 MEMORY_PROP_DIR(fbx->ds_linear, depth);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000978 pandecode_prop("depth_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700979 fbx->ds_linear.depth_stride);
Alyssa Rosenzweig5e38d952020-07-03 11:27:48 -0400980 pandecode_prop("depth_layer_stride = %d",
981 fbx->ds_linear.depth_layer_stride);
982 } else if (fbx->ds_linear.depth_stride || fbx->ds_linear.depth_layer_stride) {
983 pandecode_msg("XXX: depth stride zero tripped %d %d\n", fbx->ds_linear.depth_stride, fbx->ds_linear.depth_layer_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000984 }
985
986 if (fbx->ds_linear.stencil) {
Alyssa Rosenzweig0c1874a2019-07-12 08:47:35 -0700987 MEMORY_PROP_DIR(fbx->ds_linear, stencil);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000988 pandecode_prop("stencil_stride = %d",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -0700989 fbx->ds_linear.stencil_stride);
Alyssa Rosenzweig5e38d952020-07-03 11:27:48 -0400990 pandecode_prop("stencil_layer_stride = %d",
991 fbx->ds_linear.stencil_layer_stride);
992 } else if (fbx->ds_linear.stencil_stride || fbx->ds_linear.stencil_layer_stride) {
993 pandecode_msg("XXX: stencil stride zero tripped %d %d\n", fbx->ds_linear.stencil_stride, fbx->ds_linear.stencil_layer_stride);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000994 }
995
996 if (fbx->ds_linear.depth_stride_zero ||
Alyssa Rosenzweig5e38d952020-07-03 11:27:48 -0400997 fbx->ds_linear.stencil_stride_zero) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -0700998 pandecode_msg("XXX: Depth/stencil zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +0000999 pandecode_prop("depth_stride_zero = 0x%x",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001000 fbx->ds_linear.depth_stride_zero);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001001 pandecode_prop("stencil_stride_zero = 0x%x",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001002 fbx->ds_linear.stencil_stride_zero);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001003 }
1004
1005 pandecode_indent--;
1006 pandecode_log("},\n");
1007 }
1008
Alyssa Rosenzweig81a31912020-04-06 19:45:30 -04001009 if (fbx->clear_color_1 | fbx->clear_color_2) {
1010 pandecode_prop("clear_color_1 = 0x%" PRIx32, fbx->clear_color_1);
1011 pandecode_prop("clear_color_2 = 0x%" PRIx32, fbx->clear_color_2);
1012 }
1013
1014 if (fbx->zero3) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001015 pandecode_msg("XXX: fb_extra zeros tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001016 pandecode_prop("zero3 = 0x%" PRIx64, fbx->zero3);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001017 }
1018
1019 pandecode_indent--;
1020 pandecode_log("};\n");
1021
Alyssa Rosenzweig6d9ee3e2020-02-10 08:51:37 -05001022 gpu_va += sizeof(struct mali_framebuffer_extra);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001023 }
1024
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -07001025 if (is_fragment)
Alyssa Rosenzweig8c88bd02019-06-11 14:56:30 -07001026 pandecode_render_target(gpu_va, job_no, fb);
Alyssa Rosenzweiga9fc1c82019-06-23 11:29:46 -07001027
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001028 return info;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001029}
1030
1031static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001032pandecode_attributes(const struct pandecode_mapped_memory *mem,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001033 mali_ptr addr, int job_no, char *suffix,
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001034 int count, bool varying, enum mali_job_type job_type)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001035{
Alyssa Rosenzweig4e3fe542020-08-14 16:03:12 -04001036 char *prefix = varying ? "Varying" : "Attribute";
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07001037 assert(addr);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001038
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07001039 if (!count) {
1040 pandecode_msg("warn: No %s records\n", prefix);
Alyssa Rosenzweig5ad83012019-08-08 09:23:29 -07001041 return;
1042 }
1043
Alyssa Rosenzweig4e3fe542020-08-14 16:03:12 -04001044 MAP_ADDR(ATTRIBUTE_BUFFER, addr, cl);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001045
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001046 for (int i = 0; i < count; ++i) {
Boris Brezillon706974c2020-09-15 09:25:18 +02001047 pan_unpack(cl + i * MALI_ATTRIBUTE_BUFFER_LENGTH, ATTRIBUTE_BUFFER, temp);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001048 DUMP_UNPACKED(ATTRIBUTE_BUFFER, temp, "%s:\n", prefix);
Alyssa Rosenzweigf4678f32019-08-22 13:27:38 -07001049
Boris Brezillon706974c2020-09-15 09:25:18 +02001050 if (temp.type != MALI_ATTRIBUTE_TYPE_1D_NPOT_DIVISOR)
1051 continue;
1052
1053 pan_unpack(cl + (i + 1) * MALI_ATTRIBUTE_BUFFER_LENGTH,
1054 ATTRIBUTE_BUFFER_CONTINUATION_NPOT, temp2);
1055 pan_print(pandecode_dump_stream, ATTRIBUTE_BUFFER_CONTINUATION_NPOT,
1056 temp2, (pandecode_indent + 1) * 2);
Alyssa Rosenzweig3b3d9652019-12-19 12:28:42 -05001057 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001058}
1059
1060static mali_ptr
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001061pandecode_shader_address(const char *name, mali_ptr ptr)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001062{
1063 /* TODO: Decode flags */
1064 mali_ptr shader_ptr = ptr & ~15;
1065
1066 char *a = pointer_as_memory_reference(shader_ptr);
1067 pandecode_prop("%s = (%s) | %d", name, a, (int) (ptr & 15));
1068 free(a);
1069
1070 return shader_ptr;
1071}
1072
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001073/* Decodes a Bifrost blend constant. See the notes in bifrost_blend_rt */
1074
1075static unsigned
1076decode_bifrost_constant(u16 constant)
1077{
1078 float lo = (float) (constant & 0xFF);
1079 float hi = (float) (constant >> 8);
1080
1081 return (hi / 255.0) + (lo / 65535.0);
1082}
1083
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001084static mali_ptr
1085pandecode_bifrost_blend(void *descs, int job_no, int rt_no)
1086{
1087 struct bifrost_blend_rt *b =
1088 ((struct bifrost_blend_rt *) descs) + rt_no;
1089
1090 pandecode_log("struct bifrost_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no);
1091 pandecode_indent++;
1092
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001093 pandecode_prop("flags = 0x%" PRIx16, b->flags);
1094 pandecode_prop("constant = 0x%" PRIx8 " /* %f */",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001095 b->constant, decode_bifrost_constant(b->constant));
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001096
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001097 /* TODO figure out blend shader enable bit */
Boris Brezillon670e8182020-09-09 17:56:53 +02001098 DUMP_CL(BLEND_EQUATION, &b->equation, "Equation:\n");
Tomeu Vizoso3c98c452020-04-24 08:40:51 +02001099
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001100 pandecode_prop("unk2 = 0x%" PRIx16, b->unk2);
1101 pandecode_prop("index = 0x%" PRIx16, b->index);
Tomeu Vizoso3c98c452020-04-24 08:40:51 +02001102
Alyssa Rosenzweig0c621dc2020-08-11 21:30:46 -04001103 pandecode_log(".format = %s", mali_format_as_str(b->format));
Tomeu Vizoso3c98c452020-04-24 08:40:51 +02001104 pandecode_swizzle(b->swizzle, b->format);
1105 pandecode_log_cont(",\n");
1106
1107 pandecode_prop("swizzle = 0x%" PRIx32, b->swizzle);
1108 pandecode_prop("format = 0x%" PRIx32, b->format);
1109
1110 if (b->zero1) {
1111 pandecode_msg("XXX: pandecode_bifrost_blend zero1 tripped\n");
1112 pandecode_prop("zero1 = 0x%" PRIx32, b->zero1);
1113 }
1114
1115 pandecode_log(".shader_type = ");
1116 switch(b->shader_type) {
1117 case BIFROST_BLEND_F16:
1118 pandecode_log_cont("BIFROST_BLEND_F16");
1119 break;
1120 case BIFROST_BLEND_F32:
1121 pandecode_log_cont("BIFROST_BLEND_F32");
1122 break;
1123 case BIFROST_BLEND_I32:
1124 pandecode_log_cont("BIFROST_BLEND_I32");
1125 break;
1126 case BIFROST_BLEND_U32:
1127 pandecode_log_cont("BIFROST_BLEND_U32");
1128 break;
1129 case BIFROST_BLEND_I16:
1130 pandecode_log_cont("BIFROST_BLEND_I16");
1131 break;
1132 case BIFROST_BLEND_U16:
1133 pandecode_log_cont("BIFROST_BLEND_U16");
1134 break;
1135 }
1136 pandecode_log_cont(",\n");
1137
1138 if (b->zero2) {
1139 pandecode_msg("XXX: pandecode_bifrost_blend zero2 tripped\n");
1140 pandecode_prop("zero2 = 0x%" PRIx32, b->zero2);
1141 }
1142
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001143 pandecode_prop("shader = 0x%" PRIx32, b->shader);
1144
1145 pandecode_indent--;
1146 pandecode_log("},\n");
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001147
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001148 return 0;
1149}
1150
1151static mali_ptr
1152pandecode_midgard_blend(union midgard_blend *blend, bool is_shader)
1153{
Alyssa Rosenzweig9ce45ac2019-08-21 08:59:57 -07001154 /* constant/equation is in a union */
1155 if (!blend->shader)
Alyssa Rosenzweigb6d46d02019-06-19 09:31:16 -07001156 return 0;
1157
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001158 pandecode_log(".blend = {\n");
1159 pandecode_indent++;
1160
1161 if (is_shader) {
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001162 pandecode_shader_address("shader", blend->shader);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001163 } else {
Boris Brezillon670e8182020-09-09 17:56:53 +02001164 DUMP_CL(BLEND_EQUATION, &blend->equation, "Equation:\n");
Alyssa Rosenzweigae705382019-05-18 20:48:43 +00001165 pandecode_prop("constant = %f", blend->constant);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001166 }
1167
1168 pandecode_indent--;
1169 pandecode_log("},\n");
1170
1171 /* Return blend shader to disassemble if present */
1172 return is_shader ? (blend->shader & ~0xF) : 0;
1173}
1174
1175static mali_ptr
1176pandecode_midgard_blend_mrt(void *descs, int job_no, int rt_no)
1177{
1178 struct midgard_blend_rt *b =
1179 ((struct midgard_blend_rt *) descs) + rt_no;
1180
1181 /* Flags determine presence of blend shader */
Alyssa Rosenzweig94c9f872020-08-18 17:06:01 -04001182 bool is_shader = b->flags.opaque[0] & 0x2;
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001183
1184 pandecode_log("struct midgard_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no);
1185 pandecode_indent++;
1186
Boris Brezillon670e8182020-09-09 17:56:53 +02001187 DUMP_CL(BLEND_FLAGS, &b->flags, "Flags:\n");
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001188
Alyssa Rosenzweig9ffe0612019-07-12 08:45:51 -07001189 union midgard_blend blend = b->blend;
1190 mali_ptr shader = pandecode_midgard_blend(&blend, is_shader);
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001191
1192 pandecode_indent--;
1193 pandecode_log("};\n");
1194
1195 return shader;
1196}
1197
Alyssa Rosenzweig2208eb92019-08-20 13:59:26 -07001198/* Attributes and varyings have descriptor records, which contain information
1199 * about their format and ordering with the attribute/varying buffers. We'll
1200 * want to validate that the combinations specified are self-consistent.
1201 */
1202
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001203static int
Alyssa Rosenzweig68552282020-08-26 16:50:16 -04001204pandecode_attribute_meta(int count, mali_ptr attribute, bool varying, char *suffix)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001205{
Alyssa Rosenzweig68552282020-08-26 16:50:16 -04001206 for (int i = 0; i < count; ++i, attribute += MALI_ATTRIBUTE_LENGTH)
Boris Brezillon670e8182020-09-09 17:56:53 +02001207 DUMP_ADDR(ATTRIBUTE, attribute, "%s:\n", varying ? "Varying" : "Attribute");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001208
Alyssa Rosenzweig2c8a7222020-08-13 13:27:16 -04001209 return count;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001210}
1211
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001212/* return bits [lo, hi) of word */
1213static u32
1214bits(u32 word, u32 lo, u32 hi)
1215{
1216 if (hi - lo >= 32)
1217 return word; // avoid undefined behavior with the shift
1218
1219 return (word >> lo) & ((1 << (hi - lo)) - 1);
1220}
1221
1222static void
Alyssa Rosenzweig385a4f72019-12-24 22:33:47 -05001223pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bool graphics)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001224{
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001225 /* Decode invocation_count. See the comment before the definition of
1226 * invocation_count for an explanation.
1227 */
Alyssa Rosenzweig02e768e2020-08-26 13:04:17 -04001228 struct mali_invocation_packed invocation_packed = p->invocation;
Boris Brezillon706974c2020-09-15 09:25:18 +02001229 pan_unpack(&invocation_packed, INVOCATION, invocation);
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001230
Alyssa Rosenzweig02e768e2020-08-26 13:04:17 -04001231 unsigned size_x = bits(invocation.invocations, 0, invocation.size_y_shift) + 1;
1232 unsigned size_y = bits(invocation.invocations, invocation.size_y_shift, invocation.size_z_shift) + 1;
1233 unsigned size_z = bits(invocation.invocations, invocation.size_z_shift, invocation.workgroups_x_shift) + 1;
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001234
Alyssa Rosenzweig02e768e2020-08-26 13:04:17 -04001235 unsigned groups_x = bits(invocation.invocations, invocation.workgroups_x_shift, invocation.workgroups_y_shift) + 1;
1236 unsigned groups_y = bits(invocation.invocations, invocation.workgroups_y_shift, invocation.workgroups_z_shift) + 1;
1237 unsigned groups_z = bits(invocation.invocations, invocation.workgroups_z_shift, 32) + 1;
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001238
1239 /* Even though we have this decoded, we want to ensure that the
1240 * representation is "unique" so we don't lose anything by printing only
1241 * the final result. More specifically, we need to check that we were
1242 * passed something in canonical form, since the definition per the
1243 * hardware is inherently not unique. How? Well, take the resulting
1244 * decode and pack it ourselves! If it is bit exact with what we
1245 * decoded, we're good to go. */
1246
Alyssa Rosenzweig02e768e2020-08-26 13:04:17 -04001247 struct mali_invocation_packed ref;
Alyssa Rosenzweig385a4f72019-12-24 22:33:47 -05001248 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 -07001249
Alyssa Rosenzweig02e768e2020-08-26 13:04:17 -04001250 if (memcmp(&ref, &invocation_packed, sizeof(ref))) {
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001251 pandecode_msg("XXX: non-canonical workgroups packing\n");
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001252 DUMP_UNPACKED(INVOCATION, invocation, "Invocation:\n")
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001253 }
1254
1255 /* Regardless, print the decode */
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001256 pandecode_log("Invocation (%d, %d, %d) x (%d, %d, %d)\n",
1257 size_x, size_y, size_z,
1258 groups_x, groups_y, groups_z);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001259
Alyssa Rosenzweigb60d5672020-08-25 16:59:14 -04001260 struct mali_primitive_packed prim_packed = p->primitive;
Boris Brezillon706974c2020-09-15 09:25:18 +02001261 pan_unpack(&prim_packed, PRIMITIVE, primitive);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001262 DUMP_UNPACKED(PRIMITIVE, primitive, "Primitive:\n");
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -07001263
1264 /* Validate an index buffer is present if we need one. TODO: verify
1265 * relationship between invocation_count and index_count */
1266
Alyssa Rosenzweigb60d5672020-08-25 16:59:14 -04001267 if (primitive.indices) {
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -07001268 /* Grab the size */
Alyssa Rosenzweigb60d5672020-08-25 16:59:14 -04001269 unsigned size = (primitive.index_type == MALI_INDEX_TYPE_UINT32) ?
1270 sizeof(uint32_t) : primitive.index_type;
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -07001271
1272 /* Ensure we got a size, and if so, validate the index buffer
1273 * is large enough to hold a full set of indices of the given
1274 * size */
1275
Alyssa Rosenzweigb60d5672020-08-25 16:59:14 -04001276 if (!size)
Alyssa Rosenzweigf38ce6e2019-08-21 16:06:23 -07001277 pandecode_msg("XXX: index size missing\n");
1278 else
Alyssa Rosenzweigb60d5672020-08-25 16:59:14 -04001279 pandecode_validate_buffer(primitive.indices, primitive.index_count * size);
1280 } else if (primitive.index_type)
1281 pandecode_msg("XXX: unexpected index size\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001282}
1283
1284static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001285pandecode_uniform_buffers(mali_ptr pubufs, int ubufs_count, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001286{
1287 struct pandecode_mapped_memory *umem = pandecode_find_mapped_gpu_mem_containing(pubufs);
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05001288 uint64_t *PANDECODE_PTR_VAR(ubufs, umem, pubufs);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001289
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001290 for (int i = 0; i < ubufs_count; i++) {
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05001291 unsigned size = (ubufs[i] & ((1 << 10) - 1)) * 16;
1292 mali_ptr addr = (ubufs[i] >> 10) << 2;
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001293
1294 pandecode_validate_buffer(addr, size);
1295
Alyssa Rosenzweig7d3c48f2020-02-16 17:01:02 -05001296 char *ptr = pointer_as_memory_reference(addr);
Alyssa Rosenzweig6ec33b42019-08-21 11:46:06 -07001297 pandecode_log("ubuf_%d[%u] = %s;\n", i, size, ptr);
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001298 free(ptr);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001299 }
1300
Alyssa Rosenzweig6ec33b42019-08-21 11:46:06 -07001301 pandecode_log("\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001302}
1303
1304static void
Alyssa Rosenzweigae84f162019-08-22 11:30:13 -07001305pandecode_uniforms(mali_ptr uniforms, unsigned uniform_count)
1306{
1307 pandecode_validate_buffer(uniforms, uniform_count * 16);
1308
1309 char *ptr = pointer_as_memory_reference(uniforms);
1310 pandecode_log("vec4 uniforms[%u] = %s;\n", uniform_count, ptr);
1311 free(ptr);
1312}
1313
Alyssa Rosenzweig09671c82019-12-23 11:40:40 -05001314static const char *
1315shader_type_for_job(unsigned type)
1316{
1317 switch (type) {
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04001318 case MALI_JOB_TYPE_VERTEX: return "VERTEX";
1319 case MALI_JOB_TYPE_TILER: return "FRAGMENT";
1320 case MALI_JOB_TYPE_COMPUTE: return "COMPUTE";
Alyssa Rosenzweig80049062020-08-26 16:52:53 -04001321 default: return "UNKNOWN";
Alyssa Rosenzweig09671c82019-12-23 11:40:40 -05001322 }
1323}
1324
Alyssa Rosenzweigc4a4f3d2019-08-14 09:19:54 -07001325static unsigned shader_id = 0;
1326
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001327static struct midgard_disasm_stats
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001328pandecode_shader_disassemble(mali_ptr shader_ptr, int shader_no, int type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001329 bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001330{
1331 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(shader_ptr);
1332 uint8_t *PANDECODE_PTR_VAR(code, mem, shader_ptr);
1333
1334 /* Compute maximum possible size */
1335 size_t sz = mem->length - (shader_ptr - mem->gpu_va);
1336
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001337 /* Print some boilerplate to clearly denote the assembly (which doesn't
1338 * obey indentation rules), and actually do the disassembly! */
1339
Icecream95be22c072020-01-23 10:14:35 +13001340 pandecode_log_cont("\n\n");
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00001341
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001342 struct midgard_disasm_stats stats;
Alyssa Rosenzweigc4a4f3d2019-08-14 09:19:54 -07001343
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00001344 if (is_bifrost) {
Alyssa Rosenzweigc88f8162020-03-27 22:34:15 -04001345 disassemble_bifrost(pandecode_dump_stream, code, sz, true);
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001346
1347 /* TODO: Extend stats to Bifrost */
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001348 stats.texture_count = -128;
1349 stats.sampler_count = -128;
1350 stats.attribute_count = -128;
1351 stats.varying_count = -128;
1352 stats.uniform_count = -128;
1353 stats.uniform_buffer_count = -128;
1354 stats.work_count = -128;
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001355
1356 stats.instruction_count = 0;
1357 stats.bundle_count = 0;
1358 stats.quadword_count = 0;
Alyssa Rosenzweigd6d6d632019-08-30 17:00:09 -07001359 stats.helper_invocations = false;
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00001360 } else {
Icecream95be22c072020-01-23 10:14:35 +13001361 stats = disassemble_midgard(pandecode_dump_stream,
1362 code, sz, gpu_id,
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04001363 type == MALI_JOB_TYPE_TILER ?
Alyssa Rosenzweigac14fac2019-11-07 09:31:02 -05001364 MESA_SHADER_FRAGMENT : MESA_SHADER_VERTEX);
Alyssa Rosenzweig50382df2019-05-18 18:58:56 +00001365 }
1366
Alyssa Rosenzweigc088a3b2020-08-26 16:52:23 -04001367 unsigned nr_threads =
1368 (stats.work_count <= 4) ? 4 :
1369 (stats.work_count <= 8) ? 2 :
1370 1;
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001371
Alyssa Rosenzweigc088a3b2020-08-26 16:52:23 -04001372 pandecode_log_cont("shader%d - MESA_SHADER_%s shader: "
1373 "%u inst, %u bundles, %u quadwords, "
1374 "%u registers, %u threads, 0 loops, 0:0 spills:fills\n\n\n",
1375 shader_id++,
1376 shader_type_for_job(type),
1377 stats.instruction_count, stats.bundle_count, stats.quadword_count,
1378 stats.work_count, nr_threads);
Alyssa Rosenzweig58fc2602019-08-21 14:00:46 -07001379
1380 return stats;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001381}
1382
1383static void
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04001384pandecode_texture_payload(mali_ptr payload,
Alyssa Rosenzweigf008a632020-08-11 17:27:36 -04001385 enum mali_texture_dimension dim,
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04001386 enum mali_texture_layout layout,
1387 bool manual_stride,
1388 uint8_t levels,
1389 uint16_t depth,
1390 uint16_t array_size,
1391 struct pandecode_mapped_memory *tmem)
1392{
1393 pandecode_log(".payload = {\n");
1394 pandecode_indent++;
1395
1396 /* A bunch of bitmap pointers follow.
1397 * We work out the correct number,
1398 * based on the mipmap/cubemap
1399 * properties, but dump extra
1400 * possibilities to futureproof */
1401
1402 int bitmap_count = levels + 1;
1403
1404 /* Miptree for each face */
Alyssa Rosenzweigf008a632020-08-11 17:27:36 -04001405 if (dim == MALI_TEXTURE_DIMENSION_CUBE)
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04001406 bitmap_count *= 6;
Alyssa Rosenzweigeba9bcd2020-06-30 16:21:30 -04001407
1408 /* Array of layers */
Alyssa Rosenzweigf008a632020-08-11 17:27:36 -04001409 bitmap_count *= depth;
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04001410
1411 /* Array of textures */
Alyssa Rosenzweigf008a632020-08-11 17:27:36 -04001412 bitmap_count *= array_size;
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04001413
1414 /* Stride for each element */
1415 if (manual_stride)
1416 bitmap_count *= 2;
1417
1418 mali_ptr *pointers_and_strides = pandecode_fetch_gpu_mem(tmem,
1419 payload, sizeof(mali_ptr) * bitmap_count);
1420 for (int i = 0; i < bitmap_count; ++i) {
1421 /* How we dump depends if this is a stride or a pointer */
1422
1423 if (manual_stride && (i & 1)) {
1424 /* signed 32-bit snuck in as a 64-bit pointer */
1425 uint64_t stride_set = pointers_and_strides[i];
1426 uint32_t clamped_stride = stride_set;
1427 int32_t stride = clamped_stride;
1428 assert(stride_set == clamped_stride);
1429 pandecode_log("(mali_ptr) %d /* stride */, \n", stride);
1430 } else {
1431 char *a = pointer_as_memory_reference(pointers_and_strides[i]);
1432 pandecode_log("%s, \n", a);
1433 free(a);
1434 }
1435 }
1436
1437 pandecode_indent--;
1438 pandecode_log("},\n");
1439}
1440
1441static void
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07001442pandecode_texture(mali_ptr u,
1443 struct pandecode_mapped_memory *tmem,
1444 unsigned job_no, unsigned tex)
1445{
Alyssa Rosenzweigf008a632020-08-11 17:27:36 -04001446 struct pandecode_mapped_memory *mapped_mem = pandecode_find_mapped_gpu_mem_containing(u);
1447 const uint8_t *cl = pandecode_fetch_gpu_mem(mapped_mem, u, MALI_MIDGARD_TEXTURE_LENGTH);
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07001448
Boris Brezillon706974c2020-09-15 09:25:18 +02001449 pan_unpack(cl, MIDGARD_TEXTURE, temp);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001450 DUMP_UNPACKED(MIDGARD_TEXTURE, temp, "Texture:\n")
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07001451
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001452 pandecode_indent++;
Alyssa Rosenzweigf008a632020-08-11 17:27:36 -04001453 pandecode_texture_payload(u + MALI_MIDGARD_TEXTURE_LENGTH,
1454 temp.dimension, temp.texel_ordering, temp.manual_stride,
1455 temp.levels, temp.depth, temp.array_size, mapped_mem);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001456 pandecode_indent--;
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07001457}
1458
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001459static void
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04001460pandecode_bifrost_texture(
Alyssa Rosenzweigad0b32c2020-08-06 18:12:28 -04001461 const void *cl,
Alyssa Rosenzweiga3d29362020-04-21 16:08:07 -04001462 unsigned job_no,
1463 unsigned tex)
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001464{
Boris Brezillon706974c2020-09-15 09:25:18 +02001465 pan_unpack(cl, BIFROST_TEXTURE, temp);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001466 DUMP_UNPACKED(BIFROST_TEXTURE, temp, "Texture:\n")
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001467
Alyssa Rosenzweigad0b32c2020-08-06 18:12:28 -04001468 struct pandecode_mapped_memory *tmem = pandecode_find_mapped_gpu_mem_containing(temp.surfaces);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001469 pandecode_indent++;
Alyssa Rosenzweigad0b32c2020-08-06 18:12:28 -04001470 pandecode_texture_payload(temp.surfaces, temp.dimension, temp.texel_ordering,
1471 true, temp.levels, 1, 1, tmem);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001472 pandecode_indent--;
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001473}
1474
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001475/* 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 */
1476
1477static void
1478pandecode_shader_prop(const char *name, unsigned claim, signed truth, bool fuzzy)
1479{
1480 /* Nothing to do */
1481 if (claim == truth)
1482 return;
1483
Alyssa Rosenzweig5815f332020-02-25 17:29:55 -05001484 if (fuzzy && (truth < 0))
1485 pandecode_msg("XXX: fuzzy %s, claimed %d, expected %d\n", name, claim, truth);
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001486
1487 if ((truth >= 0) && !fuzzy) {
Alyssa Rosenzweigf48136e2019-08-22 09:02:48 -07001488 pandecode_msg("%s: expected %s = %d, claimed %u\n",
1489 (truth < claim) ? "warn" : "XXX",
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001490 name, truth, claim);
1491 } else if ((claim > -truth) && !fuzzy) {
1492 pandecode_msg("XXX: expected %s <= %u, claimed %u\n",
1493 name, -truth, claim);
1494 } else if (fuzzy && (claim < truth))
1495 pandecode_msg("XXX: expected %s >= %u, claimed %u\n",
1496 name, truth, claim);
1497
1498 pandecode_log(".%s = %" PRId16, name, claim);
1499
1500 if (fuzzy)
1501 pandecode_log_cont(" /* %u used */", truth);
1502
1503 pandecode_log_cont(",\n");
1504}
1505
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07001506static void
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01001507pandecode_blend_shader_disassemble(mali_ptr shader, int job_no, int job_type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001508 bool is_bifrost, unsigned gpu_id)
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01001509{
1510 struct midgard_disasm_stats stats =
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001511 pandecode_shader_disassemble(shader, job_no, job_type, is_bifrost, gpu_id);
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01001512
1513 bool has_texture = (stats.texture_count > 0);
1514 bool has_sampler = (stats.sampler_count > 0);
1515 bool has_attribute = (stats.attribute_count > 0);
1516 bool has_varying = (stats.varying_count > 0);
1517 bool has_uniform = (stats.uniform_count > 0);
1518 bool has_ubo = (stats.uniform_buffer_count > 0);
1519
1520 if (has_texture || has_sampler)
1521 pandecode_msg("XXX: blend shader accessing textures\n");
1522
1523 if (has_attribute || has_varying)
1524 pandecode_msg("XXX: blend shader accessing interstage\n");
1525
1526 if (has_uniform || has_ubo)
1527 pandecode_msg("XXX: blend shader accessing uniforms\n");
1528}
1529
1530static void
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001531pandecode_textures(mali_ptr textures, unsigned texture_count, int job_no, bool is_bifrost)
1532{
1533 struct pandecode_mapped_memory *mmem = pandecode_find_mapped_gpu_mem_containing(textures);
1534
1535 if (!mmem)
1536 return;
1537
Alyssa Rosenzweigad0b32c2020-08-06 18:12:28 -04001538 pandecode_log("Textures (%"PRIx64"):\n", textures);
1539
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001540 if (is_bifrost) {
Alyssa Rosenzweigad0b32c2020-08-06 18:12:28 -04001541 const void *cl = pandecode_fetch_gpu_mem(mmem,
1542 textures, MALI_BIFROST_TEXTURE_LENGTH *
1543 texture_count);
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001544
Alyssa Rosenzweigad0b32c2020-08-06 18:12:28 -04001545 for (unsigned tex = 0; tex < texture_count; ++tex) {
1546 pandecode_bifrost_texture(cl +
1547 MALI_BIFROST_TEXTURE_LENGTH * tex,
1548 job_no, tex);
1549 }
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001550 } else {
1551 mali_ptr *PANDECODE_PTR_VAR(u, mmem, textures);
1552
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001553 for (int tex = 0; tex < texture_count; ++tex) {
1554 mali_ptr *PANDECODE_PTR_VAR(u, mmem, textures + tex * sizeof(mali_ptr));
1555 char *a = pointer_as_memory_reference(*u);
1556 pandecode_log("%s,\n", a);
1557 free(a);
1558 }
1559
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001560 /* Now, finally, descend down into the texture descriptor */
1561 for (unsigned tex = 0; tex < texture_count; ++tex) {
1562 mali_ptr *PANDECODE_PTR_VAR(u, mmem, textures + tex * sizeof(mali_ptr));
1563 struct pandecode_mapped_memory *tmem = pandecode_find_mapped_gpu_mem_containing(*u);
1564 if (tmem)
1565 pandecode_texture(*u, tmem, job_no, tex);
1566 }
1567 }
1568}
1569
1570static void
1571pandecode_samplers(mali_ptr samplers, unsigned sampler_count, int job_no, bool is_bifrost)
1572{
Alyssa Rosenzweigb10c3c82020-08-11 18:25:03 -04001573 for (int i = 0; i < sampler_count; ++i) {
1574 if (is_bifrost) {
Boris Brezillon670e8182020-09-09 17:56:53 +02001575 DUMP_ADDR(BIFROST_SAMPLER, samplers + (MALI_BIFROST_SAMPLER_LENGTH * i), "Sampler:\n");
Alyssa Rosenzweigb10c3c82020-08-11 18:25:03 -04001576 } else {
Boris Brezillon670e8182020-09-09 17:56:53 +02001577 DUMP_ADDR(MIDGARD_SAMPLER, samplers + (MALI_MIDGARD_SAMPLER_LENGTH * i), "Sampler:\n");
Alyssa Rosenzweigb10c3c82020-08-11 18:25:03 -04001578 }
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001579 }
1580}
1581
1582static void
Alyssa Rosenzweig8fc4ca82019-08-20 14:48:55 -07001583pandecode_vertex_tiler_postfix_pre(
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001584 const struct MALI_DRAW *p,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001585 int job_no, enum mali_job_type job_type,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001586 char *suffix, bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001587{
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001588 struct pandecode_mapped_memory *attr_mem;
1589
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001590 struct pandecode_fbd fbd_info = {
1591 /* Default for Bifrost */
1592 .rt_count = 1
1593 };
1594
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001595 if (is_bifrost)
1596 pandecode_compute_fbd(p->shared & ~1, job_no);
1597 else if (p->shared & MALI_MFBD)
1598 fbd_info = pandecode_mfbd_bfr((u64) ((uintptr_t) p->shared) & FBD_MASK, job_no, false, job_type == MALI_JOB_TYPE_COMPUTE, false);
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04001599 else if (job_type == MALI_JOB_TYPE_COMPUTE)
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001600 pandecode_compute_fbd((u64) (uintptr_t) p->shared, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001601 else
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001602 fbd_info = pandecode_sfbd((u64) (uintptr_t) p->shared, job_no, false, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001603
1604 int varying_count = 0, attribute_count = 0, uniform_count = 0, uniform_buffer_count = 0;
1605 int texture_count = 0, sampler_count = 0;
1606
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001607 if (p->state) {
1608 struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(p->state);
1609 uint32_t *cl = pandecode_fetch_gpu_mem(smem, p->state, MALI_STATE_LENGTH);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001610
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001611 /* Disassemble ahead-of-time to get stats. Initialize with
1612 * stats for the missing-shader case so we get validation
1613 * there, too */
1614
1615 struct midgard_disasm_stats info = {
1616 .texture_count = 0,
1617 .sampler_count = 0,
1618 .attribute_count = 0,
1619 .varying_count = 0,
1620 .work_count = 1,
1621
1622 .uniform_count = -128,
1623 .uniform_buffer_count = 0
1624 };
Alyssa Rosenzweig9b067d92019-08-21 14:28:36 -07001625
Boris Brezillon706974c2020-09-15 09:25:18 +02001626 pan_unpack(cl, STATE, state);
Alyssa Rosenzweig661b4692020-08-21 10:34:06 -04001627
Alyssa Rosenzweig3d7ce132020-08-21 19:59:22 -04001628 if (state.shader.shader & ~0xF)
1629 info = pandecode_shader_disassemble(state.shader.shader & ~0xF, job_no, job_type, is_bifrost, gpu_id);
Alyssa Rosenzweig661b4692020-08-21 10:34:06 -04001630
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001631 DUMP_UNPACKED(STATE, state, "State:\n");
1632 pandecode_indent++;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001633
1634 /* Save for dumps */
Alyssa Rosenzweig3d7ce132020-08-21 19:59:22 -04001635 attribute_count = state.shader.attribute_count;
1636 varying_count = state.shader.varying_count;
1637 texture_count = state.shader.texture_count;
1638 sampler_count = state.shader.sampler_count;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001639
Alyssa Rosenzweig3d7ce132020-08-21 19:59:22 -04001640 fprintf(pandecode_dump_stream, " Properties\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001641 if (is_bifrost) {
Boris Brezillon706974c2020-09-15 09:25:18 +02001642 pan_unpack(&state.properties, BIFROST_PROPERTIES, bi_props);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001643 DUMP_UNPACKED(BIFROST_PROPERTIES, bi_props, "Properties:\n");
Alyssa Rosenzweigacf77cb2020-08-20 16:41:41 -04001644
Alyssa Rosenzweig3d7ce132020-08-21 19:59:22 -04001645 uniform_count = state.preload.uniform_count;
Alyssa Rosenzweigacf77cb2020-08-20 16:41:41 -04001646 uniform_buffer_count = bi_props.uniform_buffer_count;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001647 } else {
Boris Brezillon706974c2020-09-15 09:25:18 +02001648 pan_unpack(&state.properties, MIDGARD_PROPERTIES, midg_props);
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001649 DUMP_UNPACKED(MIDGARD_PROPERTIES, midg_props, "Properties:\n")
Alyssa Rosenzweig1b7d4f12020-08-20 16:25:14 -04001650
1651 uniform_count = midg_props.uniform_count;
1652 uniform_buffer_count = midg_props.uniform_buffer_count;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001653 }
1654
Alyssa Rosenzweig661b4692020-08-21 10:34:06 -04001655 pandecode_shader_prop("texture_count", texture_count, info.texture_count, false);
1656 pandecode_shader_prop("sampler_count", sampler_count, info.sampler_count, false);
1657 pandecode_shader_prop("attribute_count", attribute_count, info.attribute_count, false);
1658 pandecode_shader_prop("varying_count", varying_count, info.varying_count, false);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001659
Alyssa Rosenzweig7a95ed22020-08-20 20:42:32 -04001660 if (is_bifrost) {
Alyssa Rosenzweig3d7ce132020-08-21 19:59:22 -04001661 uint32_t opaque = state.preload.uniform_count << 15
1662 | state.preload.untyped;
1663
Alyssa Rosenzweig7a95ed22020-08-20 20:42:32 -04001664 switch (job_type) {
1665 case MALI_JOB_TYPE_VERTEX:
Boris Brezillon670e8182020-09-09 17:56:53 +02001666 DUMP_CL(PRELOAD_VERTEX, &opaque, "Preload:\n");
Alyssa Rosenzweig7a95ed22020-08-20 20:42:32 -04001667 break;
1668 case MALI_JOB_TYPE_TILER:
Boris Brezillon670e8182020-09-09 17:56:53 +02001669 DUMP_CL(PRELOAD_FRAGMENT, &opaque, "Preload:\n");
Alyssa Rosenzweig7a95ed22020-08-20 20:42:32 -04001670 break;
1671 case MALI_JOB_TYPE_COMPUTE:
Boris Brezillon670e8182020-09-09 17:56:53 +02001672 DUMP_CL(PRELOAD_COMPUTE, &opaque, "Preload:\n");
Alyssa Rosenzweig7a95ed22020-08-20 20:42:32 -04001673 break;
1674 default:
Boris Brezillon670e8182020-09-09 17:56:53 +02001675 DUMP_CL(PRELOAD, &opaque, "Preload:\n");
Alyssa Rosenzweig7a95ed22020-08-20 20:42:32 -04001676 break;
1677 }
1678 }
1679
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001680 if (!is_bifrost) {
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001681 /* TODO: Blend shaders routing/disasm */
Alyssa Rosenzweig3d7ce132020-08-21 19:59:22 -04001682 union midgard_blend blend;
1683 memcpy(&blend, &state.sfbd_blend, sizeof(blend));
1684 mali_ptr shader = pandecode_midgard_blend(&blend, state.multisample_misc.sfbd_blend_shader);
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01001685 if (shader & ~0xF)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001686 pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001687 }
Boris Brezillonaa2670c2020-09-05 18:14:17 +02001688 pandecode_indent--;
1689 pandecode_msg("\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001690
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001691 /* MRT blend fields are used whenever MFBD is used, with
1692 * per-RT descriptors */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001693
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001694 if (job_type == MALI_JOB_TYPE_TILER && (is_bifrost || p->shared & MALI_MFBD)) {
Alyssa Rosenzweig3d7ce132020-08-21 19:59:22 -04001695 void* blend_base = ((void *) cl) + MALI_STATE_LENGTH;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001696
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001697 for (unsigned i = 0; i < fbd_info.rt_count; i++) {
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001698 mali_ptr shader = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001699
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001700 if (is_bifrost)
1701 shader = pandecode_bifrost_blend(blend_base, job_no, i);
1702 else
1703 shader = pandecode_midgard_blend_mrt(blend_base, job_no, i);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001704
Tomeu Vizoso8e1ae5f2019-11-05 15:31:42 +01001705 if (shader & ~0xF)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001706 pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id);
Alyssa Rosenzweig139708b2019-08-21 14:04:05 -07001707
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001708 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001709 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001710 } else
Alyssa Rosenzweig5f9a1c72019-08-21 14:16:32 -07001711 pandecode_msg("XXX: missing shader descriptor\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001712
Alyssa Rosenzweig7f487e02020-08-05 19:33:20 -04001713 if (p->viewport)
Boris Brezillon670e8182020-09-09 17:56:53 +02001714 DUMP_ADDR(VIEWPORT, p->viewport, "Viewport:\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001715
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07001716 unsigned max_attr_index = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001717
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001718 if (p->attributes)
1719 max_attr_index = pandecode_attribute_meta(attribute_count, p->attributes, false, suffix);
Alyssa Rosenzweiged464e02019-08-22 13:07:01 -07001720
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001721 if (p->attribute_buffers) {
1722 attr_mem = pandecode_find_mapped_gpu_mem_containing(p->attribute_buffers);
1723 pandecode_attributes(attr_mem, p->attribute_buffers, job_no, suffix, max_attr_index, false, job_type);
Alyssa Rosenzweig9e66ff32019-07-31 11:52:52 -07001724 }
1725
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001726 if (p->varyings) {
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001727 varying_count = pandecode_attribute_meta(varying_count, p->varyings, true, suffix);
1728 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001729
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001730 if (p->varying_buffers) {
1731 attr_mem = pandecode_find_mapped_gpu_mem_containing(p->varying_buffers);
1732 pandecode_attributes(attr_mem, p->varying_buffers, job_no, suffix, varying_count, true, job_type);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001733 }
1734
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001735 if (p->uniform_buffers) {
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001736 if (uniform_buffer_count)
1737 pandecode_uniform_buffers(p->uniform_buffers, uniform_buffer_count, job_no);
1738 else
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001739 pandecode_msg("warn: UBOs specified but not referenced\n");
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001740 } else if (uniform_buffer_count)
1741 pandecode_msg("XXX: UBOs referenced but not specified\n");
1742
1743 /* We don't want to actually dump uniforms, but we do need to validate
1744 * that the counts we were given are sane */
1745
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001746 if (p->push_uniforms) {
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001747 if (uniform_count)
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001748 pandecode_uniforms(p->push_uniforms, uniform_count);
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001749 else
Alyssa Rosenzweigcbbf7542019-08-21 14:57:23 -07001750 pandecode_msg("warn: Uniforms specified but not referenced\n");
Alyssa Rosenzweig4aeb6942019-08-19 15:16:01 -07001751 } else if (uniform_count)
Alyssa Rosenzweigd7473e22019-08-21 14:15:05 -07001752 pandecode_msg("XXX: Uniforms referenced but not specified\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001753
Alyssa Rosenzweig497977b2020-03-09 13:51:39 -04001754 if (p->textures)
1755 pandecode_textures(p->textures, texture_count, job_no, is_bifrost);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001756
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001757 if (p->samplers)
1758 pandecode_samplers(p->samplers, sampler_count, job_no, is_bifrost);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001759}
1760
1761static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001762pandecode_tiler_heap_meta(mali_ptr gpu_va, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001763{
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001764 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
1765 const struct bifrost_tiler_heap_meta *PANDECODE_PTR_VAR(h, mem, gpu_va);
1766
Tomeu Vizoso46e42462020-04-08 15:58:42 +02001767 pandecode_log("struct bifrost_tiler_heap_meta tiler_heap_meta_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001768 pandecode_indent++;
1769
1770 if (h->zero) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001771 pandecode_msg("XXX: tiler heap zero tripped\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001772 pandecode_prop("zero = 0x%x", h->zero);
1773 }
1774
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001775 pandecode_prop("heap_size = 0x%x", h->heap_size);
1776 MEMORY_PROP(h, tiler_heap_start);
1777 MEMORY_PROP(h, tiler_heap_free);
1778
1779 /* this might point to the beginning of another buffer, when it's
1780 * really the end of the tiler heap buffer, so we have to be careful
Alyssa Rosenzweig17752ba2019-07-18 12:28:56 -07001781 * here. but for zero length, we need the same pointer.
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001782 */
Alyssa Rosenzweig17752ba2019-07-18 12:28:56 -07001783
1784 if (h->tiler_heap_end == h->tiler_heap_start) {
1785 MEMORY_PROP(h, tiler_heap_start);
1786 } else {
1787 char *a = pointer_as_memory_reference(h->tiler_heap_end - 1);
1788 pandecode_prop("tiler_heap_end = %s + 1", a);
1789 free(a);
1790 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001791
Tomeu Vizoso0a0b6702020-04-09 09:39:17 +02001792 for (int i = 0; i < 10; i++) {
1793 if (h->zeros[i] != 0) {
1794 pandecode_msg("XXX: tiler heap zero %d tripped, value %x\n",
1795 i, h->zeros[i]);
1796 }
1797 }
1798
1799 if (h->unk1 != 0x1) {
1800 pandecode_msg("XXX: tiler heap unk1 tripped\n");
1801 pandecode_prop("unk1 = 0x%x", h->unk1);
1802 }
1803
1804 if (h->unk7e007e != 0x7e007e) {
1805 pandecode_msg("XXX: tiler heap unk7e007e tripped\n");
1806 pandecode_prop("unk7e007e = 0x%x", h->unk7e007e);
1807 }
1808
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001809 pandecode_indent--;
1810 pandecode_log("};\n");
1811}
1812
1813static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001814pandecode_tiler_meta(mali_ptr gpu_va, int job_no)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001815{
1816 struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
1817 const struct bifrost_tiler_meta *PANDECODE_PTR_VAR(t, mem, gpu_va);
1818
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001819 pandecode_tiler_heap_meta(t->tiler_heap_meta, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001820
Tomeu Vizoso46e42462020-04-08 15:58:42 +02001821 pandecode_log("struct bifrost_tiler_meta tiler_meta_%"PRIx64"_%d = {\n", gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001822 pandecode_indent++;
1823
Tomeu Vizoso7104e282020-04-27 17:09:39 +02001824 pandecode_prop("tiler_heap_next_start = 0x%" PRIx32, t->tiler_heap_next_start);
1825 pandecode_prop("used_hierarchy_mask = 0x%" PRIx32, t->used_hierarchy_mask);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001826
Tomeu Vizoso0a0b6702020-04-09 09:39:17 +02001827 if (t->hierarchy_mask != 0xa &&
1828 t->hierarchy_mask != 0x14 &&
1829 t->hierarchy_mask != 0x28 &&
1830 t->hierarchy_mask != 0x50 &&
1831 t->hierarchy_mask != 0xa0)
1832 pandecode_prop("XXX: Unexpected hierarchy_mask (not 0xa, 0x14, 0x28, 0x50 or 0xa0)!");
1833
Alyssa Rosenzweig7f26bb32019-06-13 10:25:32 -07001834 pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask);
Tomeu Vizoso0a0b6702020-04-09 09:39:17 +02001835
Alyssa Rosenzweig7f26bb32019-06-13 10:25:32 -07001836 pandecode_prop("flags = 0x%" PRIx16, t->flags);
1837
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001838 pandecode_prop("width = MALI_POSITIVE(%d)", t->width + 1);
1839 pandecode_prop("height = MALI_POSITIVE(%d)", t->height + 1);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001840
Tomeu Vizoso7104e282020-04-27 17:09:39 +02001841 if (t->zero0) {
1842 pandecode_msg("XXX: tiler meta zero tripped\n");
1843 pandecode_prop("zero0 = 0x%" PRIx64, t->zero0);
1844 }
1845
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001846 for (int i = 0; i < 12; i++) {
1847 if (t->zeros[i] != 0) {
Alyssa Rosenzweig89c53702019-08-20 11:18:46 -07001848 pandecode_msg("XXX: tiler heap zero %d tripped, value %" PRIx64 "\n",
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001849 i, t->zeros[i]);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001850 }
1851 }
1852
1853 pandecode_indent--;
1854 pandecode_log("};\n");
1855}
1856
1857static void
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001858pandecode_primitive_size(union midgard_primitive_size u, bool constant)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001859{
Alyssa Rosenzweig2608da12019-06-19 09:35:57 -07001860 if (u.pointer == 0x0)
1861 return;
1862
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001863 pandecode_log(".primitive_size = {\n");
1864 pandecode_indent++;
1865
Alyssa Rosenzweigb517e362019-03-15 03:21:27 +00001866 if (constant) {
1867 pandecode_prop("constant = %f", u.constant);
1868 } else {
1869 MEMORY_PROP((&u), pointer);
1870 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001871
1872 pandecode_indent--;
1873 pandecode_log("},\n");
1874}
1875
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001876static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001877pandecode_vertex_job_bfr(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001878 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001879 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001880{
1881 struct bifrost_payload_vertex *PANDECODE_PTR_VAR(v, mem, payload);
1882
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001883 struct mali_draw_packed draw_packed;
1884 memcpy(&draw_packed, &v->postfix, sizeof(draw_packed));
Boris Brezillon706974c2020-09-15 09:25:18 +02001885 pan_unpack(&draw_packed, DRAW, draw);
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001886 pandecode_vertex_tiler_postfix_pre(&draw, job_no, h->job_type, "", true, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001887
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001888 pandecode_vertex_tiler_prefix(&v->prefix, job_no, false);
Boris Brezillon670e8182020-09-09 17:56:53 +02001889 DUMP_CL(DRAW, &draw_packed, "Draw:\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001890
1891 return sizeof(*v);
1892}
1893
1894static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001895pandecode_tiler_job_bfr(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001896 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001897 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001898{
1899 struct bifrost_payload_tiler *PANDECODE_PTR_VAR(t, mem, payload);
1900
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001901 struct mali_draw_packed draw_packed;
1902 memcpy(&draw_packed, &t->postfix, sizeof(draw_packed));
Boris Brezillon706974c2020-09-15 09:25:18 +02001903 pan_unpack(&draw_packed, DRAW, draw);
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001904 pandecode_vertex_tiler_postfix_pre(&draw, job_no, h->job_type, "", true, gpu_id);
Alyssa Rosenzweig4467e792020-08-26 13:21:06 -04001905 pandecode_tiler_meta(t->tiler_meta, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001906
Alyssa Rosenzweig25ed9302019-08-16 16:22:38 -07001907 pandecode_vertex_tiler_prefix(&t->prefix, job_no, false);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001908
Alyssa Rosenzweig4467e792020-08-26 13:21:06 -04001909 /* TODO: gl_PointSize on Bifrost */
1910 pandecode_primitive_size(t->primitive_size, true);
1911
1912 if (t->zero1 || t->zero2 || t->zero3 || t->zero4 || t->zero5
1913 || t->zero6) {
1914 pandecode_msg("XXX: tiler only zero tripped\n");
1915 pandecode_prop("zero1 = 0x%" PRIx64, t->zero1);
1916 pandecode_prop("zero2 = 0x%" PRIx64, t->zero2);
1917 pandecode_prop("zero3 = 0x%" PRIx64, t->zero3);
1918 pandecode_prop("zero4 = 0x%" PRIx64, t->zero4);
1919 pandecode_prop("zero5 = 0x%" PRIx64, t->zero5);
1920 pandecode_prop("zero6 = 0x%" PRIx64, t->zero6);
1921 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001922
Boris Brezillon670e8182020-09-09 17:56:53 +02001923 DUMP_CL(DRAW, &draw_packed, "Draw:\n");
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001924
1925 return sizeof(*t);
1926}
1927
1928static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001929pandecode_vertex_or_tiler_job_mdg(const struct mali_job_descriptor_header *h,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001930 const struct pandecode_mapped_memory *mem,
Tomeu Vizoso072207b2019-11-07 08:27:53 +01001931 mali_ptr payload, int job_no, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001932{
1933 struct midgard_payload_vertex_tiler *PANDECODE_PTR_VAR(v, mem, payload);
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04001934 bool is_graphics = (h->job_type == MALI_JOB_TYPE_VERTEX) || (h->job_type == MALI_JOB_TYPE_TILER);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001935
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001936 struct mali_draw_packed draw_packed;
1937 memcpy(&draw_packed, &v->postfix, sizeof(draw_packed));
Boris Brezillon706974c2020-09-15 09:25:18 +02001938 pan_unpack(&draw_packed, DRAW, draw);
Alyssa Rosenzweig76028912020-08-26 17:05:41 -04001939 pandecode_vertex_tiler_postfix_pre(&draw, job_no, h->job_type, "", false, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001940
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -04001941 pandecode_vertex_tiler_prefix(&v->prefix, job_no, is_graphics);
Boris Brezillon670e8182020-09-09 17:56:53 +02001942 DUMP_CL(DRAW, &draw_packed, "Draw:\n");
Alyssa Rosenzweigb010a6d2020-04-06 20:31:32 -04001943
Alyssa Rosenzweigb60d5672020-08-25 16:59:14 -04001944 struct mali_primitive_packed prim_packed = v->prefix.primitive;
Boris Brezillon706974c2020-09-15 09:25:18 +02001945 pan_unpack(&prim_packed, PRIMITIVE, primitive);
Alyssa Rosenzweigb60d5672020-08-25 16:59:14 -04001946
1947 pandecode_primitive_size(v->primitive_size, primitive.point_size_array == 0);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001948
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001949 return sizeof(*v);
1950}
1951
1952static int
Alyssa Rosenzweig7103baf2019-07-12 08:57:10 -07001953pandecode_fragment_job(const struct pandecode_mapped_memory *mem,
Alyssa Rosenzweig7318b522019-07-10 10:36:16 -07001954 mali_ptr payload, int job_no,
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01001955 bool is_bifrost, unsigned gpu_id)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001956{
1957 const struct mali_payload_fragment *PANDECODE_PTR_VAR(s, mem, payload);
1958
Alyssa Rosenzweig89593642019-12-16 12:05:45 -05001959 bool is_mfbd = s->framebuffer & MALI_MFBD;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001960
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001961 if (!is_mfbd && is_bifrost)
1962 pandecode_msg("XXX: Bifrost fragment must use MFBD\n");
1963
1964 struct pandecode_fbd info;
1965
1966 if (is_mfbd)
Alyssa Rosenzweig3f5cd442020-02-28 07:17:53 -05001967 info = pandecode_mfbd_bfr(s->framebuffer & FBD_MASK, job_no, true, false, is_bifrost);
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001968 else
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01001969 info = pandecode_sfbd(s->framebuffer & FBD_MASK, job_no, true, gpu_id);
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001970
1971 /* Compute the tag for the tagged pointer. This contains the type of
1972 * FBD (MFBD/SFBD), and in the case of an MFBD, information about which
1973 * additional structures follow the MFBD header (an extra payload or
1974 * not, as well as a count of render targets) */
1975
Alyssa Rosenzweig89593642019-12-16 12:05:45 -05001976 unsigned expected_tag = is_mfbd ? MALI_MFBD : 0;
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001977
1978 if (is_mfbd) {
1979 if (info.has_extra)
1980 expected_tag |= MALI_MFBD_TAG_EXTRA;
1981
1982 expected_tag |= (MALI_POSITIVE(info.rt_count) << 2);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001983 }
1984
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001985 if ((s->min_tile_coord | s->max_tile_coord) & ~(MALI_X_COORD_MASK | MALI_Y_COORD_MASK)) {
1986 pandecode_msg("XXX: unexpected tile coordinate bits\n");
1987 pandecode_prop("min_tile_coord = 0x%X\n", s->min_tile_coord);
Alyssa Rosenzweig52d6b4d2020-05-11 18:54:05 -04001988 pandecode_prop("max_tile_coord = 0x%X\n", s->max_tile_coord);
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07001989 }
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001990
Alyssa Rosenzweigded9a682019-08-21 12:29:47 -07001991 /* Extract tile coordinates */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00001992
Alyssa Rosenzweigded9a682019-08-21 12:29:47 -07001993 unsigned min_x = MALI_TILE_COORD_X(s->min_tile_coord) << MALI_TILE_SHIFT;
1994 unsigned min_y = MALI_TILE_COORD_Y(s->min_tile_coord) << MALI_TILE_SHIFT;
1995
1996 unsigned max_x = (MALI_TILE_COORD_X(s->max_tile_coord) + 1) << MALI_TILE_SHIFT;
1997 unsigned max_y = (MALI_TILE_COORD_Y(s->max_tile_coord) + 1) << MALI_TILE_SHIFT;
1998
1999 /* For the max, we also want the floored (rather than ceiled) version for checking */
2000
2001 unsigned max_x_f = (MALI_TILE_COORD_X(s->max_tile_coord)) << MALI_TILE_SHIFT;
2002 unsigned max_y_f = (MALI_TILE_COORD_Y(s->max_tile_coord)) << MALI_TILE_SHIFT;
2003
2004 /* Validate the coordinates are well-ordered */
2005
2006 if (min_x == max_x)
2007 pandecode_msg("XXX: empty X coordinates (%u = %u)\n", min_x, max_x);
2008 else if (min_x > max_x)
2009 pandecode_msg("XXX: misordered X coordinates (%u > %u)\n", min_x, max_x);
2010
2011 if (min_y == max_y)
2012 pandecode_msg("XXX: empty X coordinates (%u = %u)\n", min_x, max_x);
2013 else if (min_y > max_y)
2014 pandecode_msg("XXX: misordered X coordinates (%u > %u)\n", min_x, max_x);
2015
2016 /* Validate the coordinates fit inside the framebuffer. We use floor,
2017 * rather than ceil, for the max coordinates, since the tile
2018 * coordinates for something like an 800x600 framebuffer will actually
2019 * resolve to 800x608, which would otherwise trigger a Y-overflow */
2020
2021 if ((min_x > info.width) || (max_x_f > info.width))
2022 pandecode_msg("XXX: tile coordinates overflow in X direction\n");
2023
2024 if ((min_y > info.height) || (max_y_f > info.height))
2025 pandecode_msg("XXX: tile coordinates overflow in Y direction\n");
2026
2027 /* After validation, we print */
2028
2029 pandecode_log("fragment (%u, %u) ... (%u, %u)\n\n", min_x, min_y, max_x, max_y);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002030
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002031 /* The FBD is a tagged pointer */
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002032
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002033 unsigned tag = (s->framebuffer & ~FBD_MASK);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002034
Alyssa Rosenzweigf06e8f72019-08-21 12:06:50 -07002035 if (tag != expected_tag)
2036 pandecode_msg("XXX: expected FBD tag %X but got %X\n", expected_tag, tag);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002037
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002038 return sizeof(*s);
2039}
2040
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05002041/* Entrypoint to start tracing. jc_gpu_va is the GPU address for the first job
2042 * in the chain; later jobs are found by walking the chain. Bifrost is, well,
2043 * if it's bifrost or not. GPU ID is the more finegrained ID (at some point, we
2044 * might wish to combine this with the bifrost parameter) because some details
2045 * are model-specific even within a particular architecture. Minimal traces
2046 * *only* examine the job descriptors, skipping printing entirely if there is
2047 * no faults, and only descends into the payload if there are faults. This is
2048 * useful for looking for faults without the overhead of invasive traces. */
2049
Alyssa Rosenzweig59986462020-02-18 07:46:03 -05002050void
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05002051pandecode_jc(mali_ptr jc_gpu_va, bool bifrost, unsigned gpu_id, bool minimal)
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002052{
Icecream9501d60d32020-07-16 16:12:13 +12002053 pandecode_dump_file_open();
2054
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002055 struct mali_job_descriptor_header *h;
Alyssa Rosenzweig59986462020-02-18 07:46:03 -05002056 unsigned job_descriptor_number = 0;
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002057
2058 do {
2059 struct pandecode_mapped_memory *mem =
2060 pandecode_find_mapped_gpu_mem_containing(jc_gpu_va);
2061
2062 void *payload;
2063
2064 h = PANDECODE_PTR(mem, jc_gpu_va, struct mali_job_descriptor_header);
2065
Alyssa Rosenzweigaac5a552020-08-21 09:31:43 -04002066 mali_ptr payload_ptr = jc_gpu_va + sizeof(*h);
Alyssa Rosenzweigd353b152020-08-21 09:36:14 -04002067 payload = pandecode_fetch_gpu_mem(mem, payload_ptr, 64);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002068
2069 int job_no = job_descriptor_number++;
2070
Alyssa Rosenzweig4122f742020-02-18 07:43:51 -05002071 /* If the job is good to go, skip it in minimal mode */
2072 if (minimal && (h->exception_status == 0x0 || h->exception_status == 0x1))
2073 continue;
2074
Tomeu Vizoso9bef1f12019-06-25 09:20:51 +02002075 pandecode_log("struct mali_job_descriptor_header job_%"PRIx64"_%d = {\n", jc_gpu_va, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002076 pandecode_indent++;
2077
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002078 pandecode_prop("job_type = %s", mali_job_type_as_str(h->job_type));
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002079
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002080 if (h->job_descriptor_size)
2081 pandecode_prop("job_descriptor_size = %d", h->job_descriptor_size);
2082
Alyssa Rosenzweige918dd82019-08-16 16:36:39 -07002083 if (h->exception_status && h->exception_status != 0x1)
Alyssa Rosenzweig358372b2019-08-09 16:04:24 -07002084 pandecode_prop("exception_status = %x (source ID: 0x%x access: %s exception: 0x%x)",
Tomeu Vizosofa36c192019-06-25 08:22:30 +02002085 h->exception_status,
2086 (h->exception_status >> 16) & 0xFFFF,
Alyssa Rosenzweig78445ce2020-08-11 21:19:52 -04002087 mali_exception_access_as_str((h->exception_status >> 8) & 0x3),
Tomeu Vizosofa36c192019-06-25 08:22:30 +02002088 h->exception_status & 0xFF);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002089
2090 if (h->first_incomplete_task)
2091 pandecode_prop("first_incomplete_task = %d", h->first_incomplete_task);
2092
2093 if (h->fault_pointer)
2094 pandecode_prop("fault_pointer = 0x%" PRIx64, h->fault_pointer);
2095
2096 if (h->job_barrier)
2097 pandecode_prop("job_barrier = %d", h->job_barrier);
2098
2099 pandecode_prop("job_index = %d", h->job_index);
2100
2101 if (h->unknown_flags)
2102 pandecode_prop("unknown_flags = %d", h->unknown_flags);
2103
2104 if (h->job_dependency_index_1)
2105 pandecode_prop("job_dependency_index_1 = %d", h->job_dependency_index_1);
2106
2107 if (h->job_dependency_index_2)
2108 pandecode_prop("job_dependency_index_2 = %d", h->job_dependency_index_2);
2109
2110 pandecode_indent--;
2111 pandecode_log("};\n");
2112
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002113 switch (h->job_type) {
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002114 case MALI_JOB_TYPE_WRITE_VALUE: {
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -05002115 struct mali_payload_write_value *s = payload;
2116 pandecode_log("struct mali_payload_write_value payload_%"PRIx64"_%d = {\n", payload_ptr, job_no);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002117 pandecode_indent++;
Alyssa Rosenzweig9eae9502019-12-04 08:59:29 -05002118 MEMORY_PROP(s, address);
2119
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -05002120 if (s->value_descriptor != MALI_WRITE_VALUE_ZERO) {
Alyssa Rosenzweig9eae9502019-12-04 08:59:29 -05002121 pandecode_msg("XXX: unknown value descriptor\n");
2122 pandecode_prop("value_descriptor = 0x%" PRIX32, s->value_descriptor);
2123 }
2124
2125 if (s->reserved) {
2126 pandecode_msg("XXX: set value tripped\n");
2127 pandecode_prop("reserved = 0x%" PRIX32, s->reserved);
2128 }
2129
2130 pandecode_prop("immediate = 0x%" PRIX64, s->immediate);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002131 pandecode_indent--;
2132 pandecode_log("};\n");
2133
2134 break;
2135 }
2136
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002137 case MALI_JOB_TYPE_TILER:
2138 case MALI_JOB_TYPE_VERTEX:
2139 case MALI_JOB_TYPE_COMPUTE:
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002140 if (bifrost) {
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002141 if (h->job_type == MALI_JOB_TYPE_TILER)
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002142 pandecode_tiler_job_bfr(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002143 else
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002144 pandecode_vertex_job_bfr(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002145 } else
Tomeu Vizoso072207b2019-11-07 08:27:53 +01002146 pandecode_vertex_or_tiler_job_mdg(h, mem, payload_ptr, job_no, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002147
2148 break;
2149
Alyssa Rosenzweig4b7056b2020-08-05 18:40:44 -04002150 case MALI_JOB_TYPE_FRAGMENT:
Tomeu Vizoso697f02c2019-11-12 12:15:02 +01002151 pandecode_fragment_job(mem, payload_ptr, job_no, bifrost, gpu_id);
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002152 break;
2153
2154 default:
2155 break;
2156 }
Alyssa Rosenzweig65e5c192019-12-27 13:03:22 -05002157 } while ((jc_gpu_va = h->next_job));
Icecream95ef672182020-06-22 22:49:53 +12002158
2159 pandecode_map_read_write();
Alyssa Rosenzweigf6117822019-02-19 05:50:14 +00002160}