Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017-2019 Alyssa Rosenzweig |
| 3 | * Copyright (C) 2017-2019 Connor Abbott |
Alyssa Rosenzweig | d4575c3 | 2019-06-25 13:30:17 -0700 | [diff] [blame] | 4 | * Copyright (C) 2019 Collabora, Ltd. |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | * copy of this software and associated documentation files (the "Software"), |
| 8 | * to deal in the Software without restriction, including without limitation |
| 9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 10 | * and/or sell copies of the Software, and to permit persons to whom the |
| 11 | * Software is furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice (including the next |
| 14 | * paragraph) shall be included in all copies or substantial portions of the |
| 15 | * Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 23 | * SOFTWARE. |
| 24 | */ |
| 25 | |
| 26 | #include <panfrost-job.h> |
| 27 | #include <stdio.h> |
| 28 | #include <stdlib.h> |
| 29 | #include <memory.h> |
| 30 | #include <stdbool.h> |
| 31 | #include <stdarg.h> |
Alyssa Rosenzweig | e09392f | 2019-08-20 14:34:09 -0700 | [diff] [blame] | 32 | #include <ctype.h> |
Alyssa Rosenzweig | fc7bcee | 2019-06-11 12:25:35 -0700 | [diff] [blame] | 33 | #include "decode.h" |
Lionel Landwerlin | 6637395 | 2019-08-09 16:39:58 +0300 | [diff] [blame] | 34 | #include "util/macros.h" |
Alyssa Rosenzweig | d699ffb | 2019-05-14 22:21:39 +0000 | [diff] [blame] | 35 | #include "util/u_math.h" |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 36 | |
Alyssa Rosenzweig | ec2a59c | 2019-07-10 10:33:24 -0700 | [diff] [blame] | 37 | #include "pan_pretty_print.h" |
| 38 | #include "midgard/disassemble.h" |
| 39 | #include "bifrost/disassemble.h" |
| 40 | |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 41 | #include "pan_encoder.h" |
| 42 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 43 | static void pandecode_swizzle(unsigned swizzle, enum mali_format format); |
| 44 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 45 | #define MEMORY_PROP(obj, p) {\ |
Alyssa Rosenzweig | 2608da1 | 2019-06-19 09:35:57 -0700 | [diff] [blame] | 46 | if (obj->p) { \ |
| 47 | char *a = pointer_as_memory_reference(obj->p); \ |
| 48 | pandecode_prop("%s = %s", #p, a); \ |
| 49 | free(a); \ |
| 50 | } \ |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Alyssa Rosenzweig | 0c1874a | 2019-07-12 08:47:35 -0700 | [diff] [blame] | 53 | #define MEMORY_PROP_DIR(obj, p) {\ |
| 54 | if (obj.p) { \ |
| 55 | char *a = pointer_as_memory_reference(obj.p); \ |
| 56 | pandecode_prop("%s = %s", #p, a); \ |
| 57 | free(a); \ |
| 58 | } \ |
| 59 | } |
| 60 | |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 61 | FILE *pandecode_dump_stream; |
| 62 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 63 | /* Semantic logging type. |
| 64 | * |
| 65 | * Raw: for raw messages to be printed as is. |
| 66 | * Message: for helpful information to be commented out in replays. |
| 67 | * Property: for properties of a struct |
| 68 | * |
| 69 | * Use one of pandecode_log, pandecode_msg, or pandecode_prop as syntax sugar. |
| 70 | */ |
| 71 | |
| 72 | enum pandecode_log_type { |
| 73 | PANDECODE_RAW, |
| 74 | PANDECODE_MESSAGE, |
| 75 | PANDECODE_PROPERTY |
| 76 | }; |
| 77 | |
| 78 | #define pandecode_log(...) pandecode_log_typed(PANDECODE_RAW, __VA_ARGS__) |
| 79 | #define pandecode_msg(...) pandecode_log_typed(PANDECODE_MESSAGE, __VA_ARGS__) |
| 80 | #define pandecode_prop(...) pandecode_log_typed(PANDECODE_PROPERTY, __VA_ARGS__) |
| 81 | |
| 82 | unsigned pandecode_indent = 0; |
| 83 | |
| 84 | static void |
| 85 | pandecode_make_indent(void) |
| 86 | { |
| 87 | for (unsigned i = 0; i < pandecode_indent; ++i) |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 88 | fprintf(pandecode_dump_stream, " "); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | static void |
| 92 | pandecode_log_typed(enum pandecode_log_type type, const char *format, ...) |
| 93 | { |
| 94 | va_list ap; |
| 95 | |
| 96 | pandecode_make_indent(); |
| 97 | |
| 98 | if (type == PANDECODE_MESSAGE) |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 99 | fprintf(pandecode_dump_stream, "// "); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 100 | else if (type == PANDECODE_PROPERTY) |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 101 | fprintf(pandecode_dump_stream, "."); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 102 | |
| 103 | va_start(ap, format); |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 104 | vfprintf(pandecode_dump_stream, format, ap); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 105 | va_end(ap); |
| 106 | |
| 107 | if (type == PANDECODE_PROPERTY) |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 108 | fprintf(pandecode_dump_stream, ",\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | static void |
| 112 | pandecode_log_cont(const char *format, ...) |
| 113 | { |
| 114 | va_list ap; |
| 115 | |
| 116 | va_start(ap, format); |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 117 | vfprintf(pandecode_dump_stream, format, ap); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 118 | va_end(ap); |
| 119 | } |
| 120 | |
Alyssa Rosenzweig | 4391c65 | 2019-08-19 15:14:48 -0700 | [diff] [blame] | 121 | /* To check for memory safety issues, validates that the given pointer in GPU |
| 122 | * memory is valid, containing at least sz bytes. The goal is to eliminate |
| 123 | * GPU-side memory bugs (NULL pointer dereferences, buffer overflows, or buffer |
| 124 | * overruns) by statically validating pointers. |
| 125 | */ |
| 126 | |
| 127 | static void |
| 128 | pandecode_validate_buffer(mali_ptr addr, size_t sz) |
| 129 | { |
| 130 | if (!addr) { |
| 131 | pandecode_msg("XXX: null pointer deref"); |
| 132 | return; |
| 133 | } |
| 134 | |
| 135 | /* Find a BO */ |
| 136 | |
| 137 | struct pandecode_mapped_memory *bo = |
| 138 | pandecode_find_mapped_gpu_mem_containing(addr); |
| 139 | |
| 140 | if (!bo) { |
| 141 | pandecode_msg("XXX: invalid memory dereference\n"); |
| 142 | return; |
| 143 | } |
| 144 | |
| 145 | /* Bounds check */ |
| 146 | |
| 147 | unsigned offset = addr - bo->gpu_va; |
| 148 | unsigned total = offset + sz; |
| 149 | |
| 150 | if (total > bo->length) { |
Alyssa Rosenzweig | f38ce6e | 2019-08-21 16:06:23 -0700 | [diff] [blame] | 151 | pandecode_msg("XXX: buffer overrun. " |
Alyssa Rosenzweig | bcfcb7e | 2019-08-30 17:02:43 -0700 | [diff] [blame] | 152 | "Chunk of size %zu at offset %d in buffer of size %zu. " |
| 153 | "Overrun by %zu bytes. \n", |
Alyssa Rosenzweig | 4391c65 | 2019-08-19 15:14:48 -0700 | [diff] [blame] | 154 | sz, offset, bo->length, total - bo->length); |
| 155 | return; |
| 156 | } |
| 157 | } |
| 158 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 159 | struct pandecode_flag_info { |
| 160 | u64 flag; |
| 161 | const char *name; |
| 162 | }; |
| 163 | |
| 164 | static void |
| 165 | pandecode_log_decoded_flags(const struct pandecode_flag_info *flag_info, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 166 | u64 flags) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 167 | { |
| 168 | bool decodable_flags_found = false; |
| 169 | |
| 170 | for (int i = 0; flag_info[i].name; i++) { |
| 171 | if ((flags & flag_info[i].flag) != flag_info[i].flag) |
| 172 | continue; |
| 173 | |
| 174 | if (!decodable_flags_found) { |
| 175 | decodable_flags_found = true; |
| 176 | } else { |
| 177 | pandecode_log_cont(" | "); |
| 178 | } |
| 179 | |
| 180 | pandecode_log_cont("%s", flag_info[i].name); |
| 181 | |
| 182 | flags &= ~flag_info[i].flag; |
| 183 | } |
| 184 | |
| 185 | if (decodable_flags_found) { |
| 186 | if (flags) |
| 187 | pandecode_log_cont(" | 0x%" PRIx64, flags); |
| 188 | } else { |
| 189 | pandecode_log_cont("0x%" PRIx64, flags); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | #define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag } |
| 194 | static const struct pandecode_flag_info gl_enable_flag_info[] = { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 195 | FLAG_INFO(OCCLUSION_QUERY), |
| 196 | FLAG_INFO(OCCLUSION_PRECISE), |
Alyssa Rosenzweig | 2adf35e | 2019-05-23 03:01:32 +0000 | [diff] [blame] | 197 | FLAG_INFO(FRONT_CCW_TOP), |
| 198 | FLAG_INFO(CULL_FACE_FRONT), |
| 199 | FLAG_INFO(CULL_FACE_BACK), |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 200 | {} |
| 201 | }; |
| 202 | #undef FLAG_INFO |
| 203 | |
| 204 | #define FLAG_INFO(flag) { MALI_CLEAR_##flag, "MALI_CLEAR_" #flag } |
| 205 | static const struct pandecode_flag_info clear_flag_info[] = { |
| 206 | FLAG_INFO(FAST), |
| 207 | FLAG_INFO(SLOW), |
| 208 | FLAG_INFO(SLOW_STENCIL), |
| 209 | {} |
| 210 | }; |
| 211 | #undef FLAG_INFO |
| 212 | |
| 213 | #define FLAG_INFO(flag) { MALI_MASK_##flag, "MALI_MASK_" #flag } |
| 214 | static const struct pandecode_flag_info mask_flag_info[] = { |
| 215 | FLAG_INFO(R), |
| 216 | FLAG_INFO(G), |
| 217 | FLAG_INFO(B), |
| 218 | FLAG_INFO(A), |
| 219 | {} |
| 220 | }; |
| 221 | #undef FLAG_INFO |
| 222 | |
| 223 | #define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag } |
| 224 | static const struct pandecode_flag_info u3_flag_info[] = { |
| 225 | FLAG_INFO(HAS_MSAA), |
| 226 | FLAG_INFO(CAN_DISCARD), |
| 227 | FLAG_INFO(HAS_BLEND_SHADER), |
Boris Brezillon | 2844082 | 2019-11-04 11:57:22 +0100 | [diff] [blame] | 228 | FLAG_INFO(DEPTH_WRITEMASK), |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 229 | {} |
| 230 | }; |
| 231 | |
| 232 | static const struct pandecode_flag_info u4_flag_info[] = { |
| 233 | FLAG_INFO(NO_MSAA), |
| 234 | FLAG_INFO(NO_DITHER), |
| 235 | FLAG_INFO(DEPTH_RANGE_A), |
| 236 | FLAG_INFO(DEPTH_RANGE_B), |
| 237 | FLAG_INFO(STENCIL_TEST), |
| 238 | FLAG_INFO(SAMPLE_ALPHA_TO_COVERAGE_NO_BLEND_SHADER), |
| 239 | {} |
| 240 | }; |
| 241 | #undef FLAG_INFO |
| 242 | |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 243 | #define FLAG_INFO(flag) { MALI_MFBD_FORMAT_##flag, "MALI_MFBD_FORMAT_" #flag } |
| 244 | static const struct pandecode_flag_info mfbd_fmt_flag_info[] = { |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 245 | FLAG_INFO(MSAA), |
Alyssa Rosenzweig | 31a4ef8 | 2019-06-17 16:01:24 -0700 | [diff] [blame] | 246 | FLAG_INFO(SRGB), |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 247 | {} |
| 248 | }; |
| 249 | #undef FLAG_INFO |
| 250 | |
Alyssa Rosenzweig | 587ad37 | 2019-03-09 00:45:23 +0000 | [diff] [blame] | 251 | #define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag } |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 252 | static const struct pandecode_flag_info mfbd_extra_flag_hi_info[] = { |
Alyssa Rosenzweig | 587ad37 | 2019-03-09 00:45:23 +0000 | [diff] [blame] | 253 | FLAG_INFO(PRESENT), |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 254 | {} |
| 255 | }; |
| 256 | #undef FLAG_INFO |
| 257 | |
| 258 | #define FLAG_INFO(flag) { MALI_EXTRA_##flag, "MALI_EXTRA_" #flag } |
| 259 | static const struct pandecode_flag_info mfbd_extra_flag_lo_info[] = { |
Alyssa Rosenzweig | 587ad37 | 2019-03-09 00:45:23 +0000 | [diff] [blame] | 260 | FLAG_INFO(ZS), |
| 261 | {} |
| 262 | }; |
| 263 | #undef FLAG_INFO |
| 264 | |
Alyssa Rosenzweig | 7cccc89 | 2019-04-05 01:17:21 +0000 | [diff] [blame] | 265 | #define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag } |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 266 | static const struct pandecode_flag_info shader_midgard1_flag_lo_info [] = { |
| 267 | FLAG_INFO(WRITES_Z), |
Alyssa Rosenzweig | 8d1adc0 | 2019-06-07 16:00:49 -0700 | [diff] [blame] | 268 | FLAG_INFO(EARLY_Z), |
Alyssa Rosenzweig | 7cccc89 | 2019-04-05 01:17:21 +0000 | [diff] [blame] | 269 | FLAG_INFO(READS_TILEBUFFER), |
| 270 | FLAG_INFO(READS_ZS), |
| 271 | {} |
| 272 | }; |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 273 | |
| 274 | static const struct pandecode_flag_info shader_midgard1_flag_hi_info [] = { |
| 275 | FLAG_INFO(WRITES_S), |
| 276 | {} |
| 277 | }; |
Alyssa Rosenzweig | 7cccc89 | 2019-04-05 01:17:21 +0000 | [diff] [blame] | 278 | #undef FLAG_INFO |
| 279 | |
Alyssa Rosenzweig | ac68946 | 2019-06-14 11:14:01 -0700 | [diff] [blame] | 280 | #define FLAG_INFO(flag) { MALI_MFBD_##flag, "MALI_MFBD_" #flag } |
| 281 | static const struct pandecode_flag_info mfbd_flag_info [] = { |
| 282 | FLAG_INFO(DEPTH_WRITE), |
| 283 | FLAG_INFO(EXTRA), |
| 284 | {} |
| 285 | }; |
| 286 | #undef FLAG_INFO |
| 287 | |
Alyssa Rosenzweig | cf6cad3 | 2019-07-31 08:50:02 -0700 | [diff] [blame] | 288 | #define FLAG_INFO(flag) { MALI_SAMP_##flag, "MALI_SAMP_" #flag } |
| 289 | static const struct pandecode_flag_info sampler_flag_info [] = { |
| 290 | FLAG_INFO(MAG_NEAREST), |
| 291 | FLAG_INFO(MIN_NEAREST), |
| 292 | FLAG_INFO(MIP_LINEAR_1), |
| 293 | FLAG_INFO(MIP_LINEAR_2), |
Alyssa Rosenzweig | 3e47a11 | 2019-07-31 09:08:07 -0700 | [diff] [blame] | 294 | FLAG_INFO(NORM_COORDS), |
Alyssa Rosenzweig | cf6cad3 | 2019-07-31 08:50:02 -0700 | [diff] [blame] | 295 | {} |
| 296 | }; |
| 297 | #undef FLAG_INFO |
Alyssa Rosenzweig | ac68946 | 2019-06-14 11:14:01 -0700 | [diff] [blame] | 298 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 299 | #define FLAG_INFO(flag) { MALI_SFBD_FORMAT_##flag, "MALI_SFBD_FORMAT_" #flag } |
| 300 | static const struct pandecode_flag_info sfbd_unk1_info [] = { |
| 301 | FLAG_INFO(MSAA_8), |
| 302 | FLAG_INFO(MSAA_A), |
| 303 | {} |
| 304 | }; |
| 305 | #undef FLAG_INFO |
| 306 | |
| 307 | #define FLAG_INFO(flag) { MALI_SFBD_FORMAT_##flag, "MALI_SFBD_FORMAT_" #flag } |
| 308 | static const struct pandecode_flag_info sfbd_unk2_info [] = { |
| 309 | FLAG_INFO(MSAA_B), |
| 310 | FLAG_INFO(SRGB), |
| 311 | {} |
| 312 | }; |
| 313 | #undef FLAG_INFO |
| 314 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 315 | extern char *replace_fragment; |
| 316 | extern char *replace_vertex; |
| 317 | |
| 318 | static char * |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 319 | pandecode_job_type(enum mali_job_type type) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 320 | { |
| 321 | #define DEFINE_CASE(name) case JOB_TYPE_ ## name: return "JOB_TYPE_" #name |
| 322 | |
| 323 | switch (type) { |
| 324 | DEFINE_CASE(NULL); |
Alyssa Rosenzweig | adf716d | 2019-12-05 09:06:53 -0500 | [diff] [blame] | 325 | DEFINE_CASE(WRITE_VALUE); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 326 | DEFINE_CASE(CACHE_FLUSH); |
| 327 | DEFINE_CASE(COMPUTE); |
| 328 | DEFINE_CASE(VERTEX); |
| 329 | DEFINE_CASE(TILER); |
| 330 | DEFINE_CASE(FUSED); |
| 331 | DEFINE_CASE(FRAGMENT); |
| 332 | |
| 333 | case JOB_NOT_STARTED: |
| 334 | return "NOT_STARTED"; |
| 335 | |
| 336 | default: |
| 337 | pandecode_log("Warning! Unknown job type %x\n", type); |
| 338 | return "!?!?!?"; |
| 339 | } |
| 340 | |
| 341 | #undef DEFINE_CASE |
| 342 | } |
| 343 | |
| 344 | static char * |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 345 | pandecode_draw_mode(enum mali_draw_mode mode) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 346 | { |
| 347 | #define DEFINE_CASE(name) case MALI_ ## name: return "MALI_" #name |
| 348 | |
| 349 | switch (mode) { |
| 350 | DEFINE_CASE(DRAW_NONE); |
| 351 | DEFINE_CASE(POINTS); |
| 352 | DEFINE_CASE(LINES); |
| 353 | DEFINE_CASE(TRIANGLES); |
| 354 | DEFINE_CASE(TRIANGLE_STRIP); |
| 355 | DEFINE_CASE(TRIANGLE_FAN); |
| 356 | DEFINE_CASE(LINE_STRIP); |
| 357 | DEFINE_CASE(LINE_LOOP); |
| 358 | DEFINE_CASE(POLYGON); |
| 359 | DEFINE_CASE(QUADS); |
| 360 | DEFINE_CASE(QUAD_STRIP); |
| 361 | |
| 362 | default: |
Alyssa Rosenzweig | dcde5bd | 2019-08-20 11:24:32 -0700 | [diff] [blame] | 363 | pandecode_msg("XXX: invalid draw mode %X\n", mode); |
| 364 | return ""; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | #undef DEFINE_CASE |
| 368 | } |
| 369 | |
| 370 | #define DEFINE_CASE(name) case MALI_FUNC_ ## name: return "MALI_FUNC_" #name |
| 371 | static char * |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 372 | pandecode_func(enum mali_func mode) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 373 | { |
| 374 | switch (mode) { |
| 375 | DEFINE_CASE(NEVER); |
| 376 | DEFINE_CASE(LESS); |
| 377 | DEFINE_CASE(EQUAL); |
| 378 | DEFINE_CASE(LEQUAL); |
| 379 | DEFINE_CASE(GREATER); |
| 380 | DEFINE_CASE(NOTEQUAL); |
| 381 | DEFINE_CASE(GEQUAL); |
| 382 | DEFINE_CASE(ALWAYS); |
| 383 | |
| 384 | default: |
Alyssa Rosenzweig | dcde5bd | 2019-08-20 11:24:32 -0700 | [diff] [blame] | 385 | pandecode_msg("XXX: invalid func %X\n", mode); |
| 386 | return ""; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 387 | } |
| 388 | } |
| 389 | #undef DEFINE_CASE |
| 390 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 391 | #define DEFINE_CASE(name) case MALI_STENCIL_ ## name: return "MALI_STENCIL_" #name |
| 392 | static char * |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 393 | pandecode_stencil_op(enum mali_stencil_op op) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 394 | { |
| 395 | switch (op) { |
| 396 | DEFINE_CASE(KEEP); |
| 397 | DEFINE_CASE(REPLACE); |
| 398 | DEFINE_CASE(ZERO); |
| 399 | DEFINE_CASE(INVERT); |
| 400 | DEFINE_CASE(INCR_WRAP); |
| 401 | DEFINE_CASE(DECR_WRAP); |
| 402 | DEFINE_CASE(INCR); |
| 403 | DEFINE_CASE(DECR); |
| 404 | |
| 405 | default: |
Alyssa Rosenzweig | dcde5bd | 2019-08-20 11:24:32 -0700 | [diff] [blame] | 406 | pandecode_msg("XXX: invalid stencil op %X\n", op); |
| 407 | return ""; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 408 | } |
| 409 | } |
| 410 | |
| 411 | #undef DEFINE_CASE |
| 412 | |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 413 | static char *pandecode_attr_mode_short(enum mali_attr_mode mode) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 414 | { |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 415 | switch(mode) { |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 416 | /* TODO: Combine to just "instanced" once this can be done |
| 417 | * unambiguously in all known cases */ |
| 418 | case MALI_ATTR_POT_DIVIDE: |
| 419 | return "instanced_pot"; |
| 420 | case MALI_ATTR_MODULO: |
| 421 | return "instanced_mod"; |
| 422 | case MALI_ATTR_NPOT_DIVIDE: |
| 423 | return "instanced_npot"; |
| 424 | case MALI_ATTR_IMAGE: |
| 425 | return "image"; |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 426 | default: |
Alyssa Rosenzweig | dcde5bd | 2019-08-20 11:24:32 -0700 | [diff] [blame] | 427 | pandecode_msg("XXX: invalid attribute mode %X\n", mode); |
| 428 | return ""; |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 429 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 430 | } |
| 431 | |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 432 | static const char * |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 433 | pandecode_special_record(uint64_t v, bool* attribute) |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 434 | { |
| 435 | switch(v) { |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 436 | case MALI_ATTR_VERTEXID: |
| 437 | *attribute = true; |
| 438 | return "gl_VertexID"; |
| 439 | case MALI_ATTR_INSTANCEID: |
| 440 | *attribute = true; |
| 441 | return "gl_InstanceID"; |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 442 | case MALI_VARYING_FRAG_COORD: |
| 443 | return "gl_FragCoord"; |
| 444 | case MALI_VARYING_FRONT_FACING: |
| 445 | return "gl_FrontFacing"; |
| 446 | case MALI_VARYING_POINT_COORD: |
| 447 | return "gl_PointCoord"; |
| 448 | default: |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 449 | pandecode_msg("XXX: invalid special record %" PRIx64 "\n", v); |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 450 | return ""; |
| 451 | } |
| 452 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 453 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 454 | #define DEFINE_CASE(name) case MALI_WRAP_## name: return "MALI_WRAP_" #name |
| 455 | static char * |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 456 | pandecode_wrap_mode(enum mali_wrap_mode op) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 457 | { |
| 458 | switch (op) { |
| 459 | DEFINE_CASE(REPEAT); |
| 460 | DEFINE_CASE(CLAMP_TO_EDGE); |
| 461 | DEFINE_CASE(CLAMP_TO_BORDER); |
| 462 | DEFINE_CASE(MIRRORED_REPEAT); |
| 463 | |
| 464 | default: |
Alyssa Rosenzweig | dcde5bd | 2019-08-20 11:24:32 -0700 | [diff] [blame] | 465 | pandecode_msg("XXX: invalid wrap mode %X\n", op); |
| 466 | return ""; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 467 | } |
| 468 | } |
| 469 | #undef DEFINE_CASE |
| 470 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 471 | #define DEFINE_CASE(name) case MALI_BLOCK_## name: return "MALI_BLOCK_" #name |
Alyssa Rosenzweig | d507951 | 2019-06-17 15:53:09 -0700 | [diff] [blame] | 472 | static char * |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 473 | pandecode_block_format(enum mali_block_format fmt) |
Alyssa Rosenzweig | d507951 | 2019-06-17 15:53:09 -0700 | [diff] [blame] | 474 | { |
| 475 | switch (fmt) { |
| 476 | DEFINE_CASE(TILED); |
| 477 | DEFINE_CASE(UNKNOWN); |
| 478 | DEFINE_CASE(LINEAR); |
| 479 | DEFINE_CASE(AFBC); |
| 480 | |
| 481 | default: |
| 482 | unreachable("Invalid case"); |
| 483 | } |
| 484 | } |
| 485 | #undef DEFINE_CASE |
| 486 | |
Alyssa Rosenzweig | 358372b | 2019-08-09 16:04:24 -0700 | [diff] [blame] | 487 | #define DEFINE_CASE(name) case MALI_EXCEPTION_ACCESS_## name: return ""#name |
Tomeu Vizoso | 63ae9e6 | 2019-12-09 08:39:59 +0100 | [diff] [blame] | 488 | char * |
Alyssa Rosenzweig | d126515 | 2020-01-23 15:28:09 -0500 | [diff] [blame] | 489 | pandecode_exception_access(unsigned access) |
Alyssa Rosenzweig | 358372b | 2019-08-09 16:04:24 -0700 | [diff] [blame] | 490 | { |
Alyssa Rosenzweig | dcde5bd | 2019-08-20 11:24:32 -0700 | [diff] [blame] | 491 | switch (access) { |
Alyssa Rosenzweig | 358372b | 2019-08-09 16:04:24 -0700 | [diff] [blame] | 492 | DEFINE_CASE(NONE); |
| 493 | DEFINE_CASE(EXECUTE); |
| 494 | DEFINE_CASE(READ); |
| 495 | DEFINE_CASE(WRITE); |
| 496 | |
| 497 | default: |
| 498 | unreachable("Invalid case"); |
| 499 | } |
| 500 | } |
| 501 | #undef DEFINE_CASE |
| 502 | |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 503 | /* Midgard's tiler descriptor is embedded within the |
| 504 | * larger FBD */ |
| 505 | |
| 506 | static void |
Alyssa Rosenzweig | a8bd3ad | 2019-08-19 11:48:32 -0700 | [diff] [blame] | 507 | pandecode_midgard_tiler_descriptor( |
| 508 | const struct midgard_tiler_descriptor *t, |
| 509 | unsigned width, |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 510 | unsigned height, |
Alyssa Rosenzweig | 9fb0904 | 2019-11-27 08:31:16 -0500 | [diff] [blame] | 511 | bool is_fragment, |
| 512 | bool has_hierarchy) |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 513 | { |
| 514 | pandecode_log(".tiler = {\n"); |
| 515 | pandecode_indent++; |
| 516 | |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 517 | if (t->hierarchy_mask == MALI_TILER_DISABLED) |
| 518 | pandecode_prop("hierarchy_mask = MALI_TILER_DISABLED"); |
| 519 | else |
| 520 | pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask); |
| 521 | |
| 522 | /* We know this name from the kernel, but we never see it nonzero */ |
Alyssa Rosenzweig | 3752f76 | 2019-08-20 11:25:29 -0700 | [diff] [blame] | 523 | |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 524 | if (t->flags) |
Alyssa Rosenzweig | 3752f76 | 2019-08-20 11:25:29 -0700 | [diff] [blame] | 525 | pandecode_msg("XXX: unexpected tiler flags 0x%" PRIx16, t->flags); |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 526 | |
| 527 | MEMORY_PROP(t, polygon_list); |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 528 | |
Alyssa Rosenzweig | 52101e4 | 2019-08-19 10:38:25 -0700 | [diff] [blame] | 529 | /* The body is offset from the base of the polygon list */ |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 530 | //assert(t->polygon_list_body > t->polygon_list); |
Alyssa Rosenzweig | 52101e4 | 2019-08-19 10:38:25 -0700 | [diff] [blame] | 531 | unsigned body_offset = t->polygon_list_body - t->polygon_list; |
| 532 | |
| 533 | /* It needs to fit inside the reported size */ |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 534 | //assert(t->polygon_list_size >= body_offset); |
Alyssa Rosenzweig | 52101e4 | 2019-08-19 10:38:25 -0700 | [diff] [blame] | 535 | |
Alyssa Rosenzweig | 13d0797 | 2019-08-19 10:56:23 -0700 | [diff] [blame] | 536 | /* Check that we fit */ |
| 537 | struct pandecode_mapped_memory *plist = |
| 538 | pandecode_find_mapped_gpu_mem_containing(t->polygon_list); |
| 539 | |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 540 | //assert(t->polygon_list_size <= plist->length); |
Alyssa Rosenzweig | 13d0797 | 2019-08-19 10:56:23 -0700 | [diff] [blame] | 541 | |
Alyssa Rosenzweig | a8bd3ad | 2019-08-19 11:48:32 -0700 | [diff] [blame] | 542 | /* Now that we've sanity checked, we'll try to calculate the sizes |
| 543 | * ourselves for comparison */ |
| 544 | |
Alyssa Rosenzweig | 9fb0904 | 2019-11-27 08:31:16 -0500 | [diff] [blame] | 545 | unsigned ref_header = panfrost_tiler_header_size(width, height, t->hierarchy_mask, has_hierarchy); |
| 546 | unsigned ref_size = panfrost_tiler_full_size(width, height, t->hierarchy_mask, has_hierarchy); |
Alyssa Rosenzweig | a8bd3ad | 2019-08-19 11:48:32 -0700 | [diff] [blame] | 547 | |
| 548 | if (!((ref_header == body_offset) && (ref_size == t->polygon_list_size))) { |
| 549 | pandecode_msg("XXX: bad polygon list size (expected %d / 0x%x)\n", |
| 550 | ref_header, ref_size); |
| 551 | pandecode_prop("polygon_list_size = 0x%x", t->polygon_list_size); |
| 552 | pandecode_msg("body offset %d\n", body_offset); |
| 553 | } |
Alyssa Rosenzweig | 52101e4 | 2019-08-19 10:38:25 -0700 | [diff] [blame] | 554 | |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 555 | /* The tiler heap has a start and end specified -- it should be |
| 556 | * identical to what we have in the BO. The exception is if tiling is |
| 557 | * disabled. */ |
Alyssa Rosenzweig | 13d0797 | 2019-08-19 10:56:23 -0700 | [diff] [blame] | 558 | |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 559 | MEMORY_PROP(t, heap_start); |
Alyssa Rosenzweig | 52101e4 | 2019-08-19 10:38:25 -0700 | [diff] [blame] | 560 | assert(t->heap_end >= t->heap_start); |
Alyssa Rosenzweig | 13d0797 | 2019-08-19 10:56:23 -0700 | [diff] [blame] | 561 | |
| 562 | struct pandecode_mapped_memory *heap = |
| 563 | pandecode_find_mapped_gpu_mem_containing(t->heap_start); |
| 564 | |
| 565 | unsigned heap_size = t->heap_end - t->heap_start; |
Alyssa Rosenzweig | 13d0797 | 2019-08-19 10:56:23 -0700 | [diff] [blame] | 566 | |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 567 | /* Tiling is enabled with a special flag */ |
| 568 | unsigned hierarchy_mask = t->hierarchy_mask & MALI_HIERARCHY_MASK; |
| 569 | unsigned tiler_flags = t->hierarchy_mask ^ hierarchy_mask; |
| 570 | |
| 571 | bool tiling_enabled = hierarchy_mask; |
| 572 | |
| 573 | if (tiling_enabled) { |
| 574 | /* When tiling is enabled, the heap should be a tight fit */ |
| 575 | unsigned heap_offset = t->heap_start - heap->gpu_va; |
| 576 | if ((heap_offset + heap_size) != heap->length) { |
Alyssa Rosenzweig | bcfcb7e | 2019-08-30 17:02:43 -0700 | [diff] [blame] | 577 | pandecode_msg("XXX: heap size %u (expected %zu)\n", |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 578 | heap_size, heap->length - heap_offset); |
| 579 | } |
| 580 | |
| 581 | /* We should also have no other flags */ |
| 582 | if (tiler_flags) |
| 583 | pandecode_msg("XXX: unexpected tiler %X\n", tiler_flags); |
| 584 | } else { |
| 585 | /* When tiling is disabled, we should have that flag and no others */ |
| 586 | |
| 587 | if (tiler_flags != MALI_TILER_DISABLED) { |
| 588 | pandecode_msg("XXX: unexpected tiler flag %X, expected MALI_TILER_DISABLED\n", |
| 589 | tiler_flags); |
| 590 | } |
| 591 | |
| 592 | /* We should also have an empty heap */ |
| 593 | if (heap_size) { |
| 594 | pandecode_msg("XXX: tiler heap size %d given, expected empty\n", |
| 595 | heap_size); |
| 596 | } |
| 597 | |
| 598 | /* Disabled tiling is used only for clear-only jobs, which are |
| 599 | * purely FRAGMENT, so we should never see this for |
| 600 | * non-FRAGMENT descriptors. */ |
| 601 | |
| 602 | if (!is_fragment) |
| 603 | pandecode_msg("XXX: tiler disabled for non-FRAGMENT job\n"); |
| 604 | } |
| 605 | |
| 606 | /* We've never seen weights used in practice, but we know from the |
| 607 | * kernel these fields is there */ |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 608 | |
| 609 | bool nonzero_weights = false; |
| 610 | |
| 611 | for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) { |
| 612 | nonzero_weights |= t->weights[w] != 0x0; |
| 613 | } |
| 614 | |
| 615 | if (nonzero_weights) { |
Alyssa Rosenzweig | acd140c | 2020-02-28 07:25:07 -0500 | [diff] [blame] | 616 | pandecode_log(".weights = { "); |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 617 | |
| 618 | for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) { |
Alyssa Rosenzweig | acd140c | 2020-02-28 07:25:07 -0500 | [diff] [blame] | 619 | pandecode_log_cont("%d, ", t->weights[w]); |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | pandecode_log("},"); |
| 623 | } |
| 624 | |
| 625 | pandecode_indent--; |
| 626 | pandecode_log("}\n"); |
| 627 | } |
| 628 | |
Alyssa Rosenzweig | 3044a37 | 2020-02-28 07:25:25 -0500 | [diff] [blame] | 629 | /* TODO: The Bifrost tiler is not understood at all yet */ |
| 630 | |
| 631 | static void |
Tomeu Vizoso | 46e4246 | 2020-04-08 15:58:42 +0200 | [diff] [blame] | 632 | pandecode_bifrost_tiler_descriptor(const struct mali_framebuffer *fb) |
Alyssa Rosenzweig | 3044a37 | 2020-02-28 07:25:25 -0500 | [diff] [blame] | 633 | { |
| 634 | pandecode_log(".tiler = {\n"); |
| 635 | pandecode_indent++; |
| 636 | |
Tomeu Vizoso | 46e4246 | 2020-04-08 15:58:42 +0200 | [diff] [blame] | 637 | MEMORY_PROP(fb, tiler_meta); |
Alyssa Rosenzweig | 3044a37 | 2020-02-28 07:25:25 -0500 | [diff] [blame] | 638 | |
Tomeu Vizoso | 46e4246 | 2020-04-08 15:58:42 +0200 | [diff] [blame] | 639 | for (int i = 0; i < 16; i++) { |
| 640 | if (fb->zeros[i] != 0) { |
| 641 | pandecode_msg("XXX: tiler descriptor zero %d tripped, value %x\n", |
| 642 | i, fb->zeros[i]); |
| 643 | } |
Alyssa Rosenzweig | 3044a37 | 2020-02-28 07:25:25 -0500 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | pandecode_log("},\n"); |
| 647 | |
| 648 | pandecode_indent--; |
| 649 | pandecode_log("}\n"); |
| 650 | |
| 651 | } |
| 652 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 653 | /* Information about the framebuffer passed back for |
| 654 | * additional analysis */ |
| 655 | |
| 656 | struct pandecode_fbd { |
| 657 | unsigned width; |
| 658 | unsigned height; |
| 659 | unsigned rt_count; |
| 660 | bool has_extra; |
| 661 | }; |
| 662 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 663 | static void |
| 664 | pandecode_sfbd_format(struct mali_sfbd_format format) |
| 665 | { |
| 666 | pandecode_log(".format = {\n"); |
| 667 | pandecode_indent++; |
| 668 | |
| 669 | pandecode_log(".unk1 = "); |
| 670 | pandecode_log_decoded_flags(sfbd_unk1_info, format.unk1); |
| 671 | pandecode_log_cont(",\n"); |
| 672 | |
| 673 | /* TODO: Map formats so we can check swizzles and print nicely */ |
| 674 | pandecode_log("swizzle"); |
| 675 | pandecode_swizzle(format.swizzle, MALI_RGBA8_UNORM); |
| 676 | pandecode_log_cont(",\n"); |
| 677 | |
| 678 | pandecode_prop("nr_channels = MALI_POSITIVE(%d)", |
Alyssa Rosenzweig | 4ccd42e | 2019-12-27 12:16:09 -0500 | [diff] [blame] | 679 | (format.nr_channels + 1)); |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 680 | |
| 681 | pandecode_log(".unk2 = "); |
| 682 | pandecode_log_decoded_flags(sfbd_unk2_info, format.unk2); |
| 683 | pandecode_log_cont(",\n"); |
| 684 | |
| 685 | pandecode_prop("block = %s", pandecode_block_format(format.block)); |
| 686 | |
| 687 | pandecode_prop("unk3 = 0x%" PRIx32, format.unk3); |
| 688 | |
| 689 | pandecode_indent--; |
| 690 | pandecode_log("},\n"); |
| 691 | } |
| 692 | |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 693 | static void |
| 694 | pandecode_shared_memory(const struct mali_shared_memory *desc, bool is_compute) |
| 695 | { |
| 696 | pandecode_prop("stack_shift = 0x%x", desc->stack_shift); |
| 697 | |
| 698 | if (desc->unk0) |
| 699 | pandecode_prop("unk0 = 0x%x", desc->unk0); |
| 700 | |
| 701 | if (desc->shared_workgroup_count != 0x1F) { |
| 702 | pandecode_prop("shared_workgroup_count = %d", desc->shared_workgroup_count); |
| 703 | if (!is_compute) |
| 704 | pandecode_msg("XXX: wrong workgroup count for noncompute\n"); |
| 705 | } |
| 706 | |
| 707 | if (desc->shared_unk1 || desc->shared_shift) { |
| 708 | pandecode_prop("shared_unk1 = %X", desc->shared_unk1); |
| 709 | pandecode_prop("shared_shift = %X", desc->shared_shift); |
| 710 | |
| 711 | if (!is_compute) |
| 712 | pandecode_msg("XXX: shared memory configured in noncompute shader"); |
| 713 | } |
| 714 | |
| 715 | if (desc->shared_zero) { |
| 716 | pandecode_msg("XXX: shared memory zero tripped\n"); |
| 717 | pandecode_prop("shared_zero = 0x%" PRIx32, desc->shared_zero); |
| 718 | } |
| 719 | |
| 720 | if (desc->shared_memory && !is_compute) |
| 721 | pandecode_msg("XXX: shared memory used in noncompute shader\n"); |
| 722 | |
| 723 | MEMORY_PROP(desc, scratchpad); |
| 724 | MEMORY_PROP(desc, shared_memory); |
| 725 | MEMORY_PROP(desc, unknown1); |
Alyssa Rosenzweig | ed52855 | 2020-02-25 15:40:46 -0500 | [diff] [blame] | 726 | |
| 727 | if (desc->scratchpad) { |
| 728 | struct pandecode_mapped_memory *smem = |
| 729 | pandecode_find_mapped_gpu_mem_containing(desc->scratchpad); |
| 730 | |
| 731 | pandecode_msg("scratchpad size %u\n", smem->length); |
| 732 | } |
| 733 | |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 734 | } |
| 735 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 736 | static struct pandecode_fbd |
Tomeu Vizoso | 697f02c | 2019-11-12 12:15:02 +0100 | [diff] [blame] | 737 | pandecode_sfbd(uint64_t gpu_va, int job_no, bool is_fragment, unsigned gpu_id) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 738 | { |
| 739 | struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va); |
| 740 | const struct mali_single_framebuffer *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va); |
| 741 | |
Alyssa Rosenzweig | d6d6d63 | 2019-08-30 17:00:09 -0700 | [diff] [blame] | 742 | struct pandecode_fbd info = { |
| 743 | .has_extra = false, |
| 744 | .rt_count = 1 |
| 745 | }; |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 746 | |
Tomeu Vizoso | 9bef1f1 | 2019-06-25 09:20:51 +0200 | [diff] [blame] | 747 | pandecode_log("struct mali_single_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 748 | pandecode_indent++; |
| 749 | |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 750 | pandecode_log(".shared_memory = {\n"); |
| 751 | pandecode_indent++; |
| 752 | pandecode_shared_memory(&s->shared_memory, false); |
| 753 | pandecode_indent--; |
| 754 | pandecode_log("},\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 755 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 756 | pandecode_sfbd_format(s->format); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 757 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 758 | info.width = s->width + 1; |
| 759 | info.height = s->height + 1; |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 760 | |
| 761 | pandecode_prop("width = MALI_POSITIVE(%" PRId16 ")", info.width); |
| 762 | pandecode_prop("height = MALI_POSITIVE(%" PRId16 ")", info.height); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 763 | |
Tomeu Vizoso | 23fe7cd | 2019-07-12 12:38:50 +0200 | [diff] [blame] | 764 | MEMORY_PROP(s, checksum); |
| 765 | |
| 766 | if (s->checksum_stride) |
| 767 | pandecode_prop("checksum_stride = %d", s->checksum_stride); |
| 768 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 769 | MEMORY_PROP(s, framebuffer); |
| 770 | pandecode_prop("stride = %d", s->stride); |
| 771 | |
| 772 | /* Earlier in the actual commandstream -- right before width -- but we |
| 773 | * delay to flow nicer */ |
| 774 | |
| 775 | pandecode_log(".clear_flags = "); |
| 776 | pandecode_log_decoded_flags(clear_flag_info, s->clear_flags); |
| 777 | pandecode_log_cont(",\n"); |
| 778 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 779 | if (s->depth_buffer) { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 780 | MEMORY_PROP(s, depth_buffer); |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 781 | pandecode_prop("depth_stride = %d", s->depth_stride); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 782 | } |
| 783 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 784 | if (s->stencil_buffer) { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 785 | MEMORY_PROP(s, stencil_buffer); |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 786 | pandecode_prop("stencil_stride = %d", s->stencil_stride); |
| 787 | } |
| 788 | |
| 789 | if (s->depth_stride_zero || |
| 790 | s->stencil_stride_zero || |
| 791 | s->zero7 || s->zero8) { |
| 792 | pandecode_msg("XXX: Depth/stencil zeros tripped\n"); |
| 793 | pandecode_prop("depth_stride_zero = 0x%x", |
| 794 | s->depth_stride_zero); |
| 795 | pandecode_prop("stencil_stride_zero = 0x%x", |
| 796 | s->stencil_stride_zero); |
| 797 | pandecode_prop("zero7 = 0x%" PRIx32, |
| 798 | s->zero7); |
| 799 | pandecode_prop("zero8 = 0x%" PRIx32, |
| 800 | s->zero8); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | if (s->clear_color_1 | s->clear_color_2 | s->clear_color_3 | s->clear_color_4) { |
| 804 | pandecode_prop("clear_color_1 = 0x%" PRIx32, s->clear_color_1); |
| 805 | pandecode_prop("clear_color_2 = 0x%" PRIx32, s->clear_color_2); |
| 806 | pandecode_prop("clear_color_3 = 0x%" PRIx32, s->clear_color_3); |
| 807 | pandecode_prop("clear_color_4 = 0x%" PRIx32, s->clear_color_4); |
| 808 | } |
| 809 | |
| 810 | if (s->clear_depth_1 != 0 || s->clear_depth_2 != 0 || s->clear_depth_3 != 0 || s->clear_depth_4 != 0) { |
| 811 | pandecode_prop("clear_depth_1 = %f", s->clear_depth_1); |
| 812 | pandecode_prop("clear_depth_2 = %f", s->clear_depth_2); |
| 813 | pandecode_prop("clear_depth_3 = %f", s->clear_depth_3); |
| 814 | pandecode_prop("clear_depth_4 = %f", s->clear_depth_4); |
| 815 | } |
| 816 | |
| 817 | if (s->clear_stencil) { |
| 818 | pandecode_prop("clear_stencil = 0x%x", s->clear_stencil); |
| 819 | } |
| 820 | |
Alyssa Rosenzweig | 9ffe061 | 2019-07-12 08:45:51 -0700 | [diff] [blame] | 821 | const struct midgard_tiler_descriptor t = s->tiler; |
Alyssa Rosenzweig | 9fb0904 | 2019-11-27 08:31:16 -0500 | [diff] [blame] | 822 | |
| 823 | bool has_hierarchy = !(gpu_id == 0x0720 || gpu_id == 0x0820 || gpu_id == 0x0830); |
| 824 | pandecode_midgard_tiler_descriptor(&t, s->width + 1, s->height + 1, is_fragment, has_hierarchy); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 825 | |
| 826 | pandecode_indent--; |
| 827 | pandecode_log("};\n"); |
| 828 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 829 | pandecode_prop("zero2 = 0x%" PRIx32, s->zero2); |
| 830 | pandecode_prop("zero4 = 0x%" PRIx32, s->zero4); |
Tomeu Vizoso | 94e6d17 | 2019-11-06 17:30:54 +0100 | [diff] [blame] | 831 | pandecode_prop("zero5 = 0x%" PRIx32, s->zero5); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 832 | |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 833 | pandecode_log_cont(".zero3 = {"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 834 | |
| 835 | for (int i = 0; i < sizeof(s->zero3) / sizeof(s->zero3[0]); ++i) |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 836 | pandecode_log_cont("%X, ", s->zero3[i]); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 837 | |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 838 | pandecode_log_cont("},\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 839 | |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 840 | pandecode_log_cont(".zero6 = {"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 841 | |
| 842 | for (int i = 0; i < sizeof(s->zero6) / sizeof(s->zero6[0]); ++i) |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 843 | pandecode_log_cont("%X, ", s->zero6[i]); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 844 | |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 845 | pandecode_log_cont("},\n"); |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 846 | |
| 847 | return info; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | static void |
Alyssa Rosenzweig | 0aa5d89 | 2019-06-19 08:41:51 -0700 | [diff] [blame] | 851 | pandecode_compute_fbd(uint64_t gpu_va, int job_no) |
| 852 | { |
| 853 | struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va); |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 854 | const struct mali_shared_memory *PANDECODE_PTR_VAR(s, mem, (mali_ptr) gpu_va); |
Alyssa Rosenzweig | 0aa5d89 | 2019-06-19 08:41:51 -0700 | [diff] [blame] | 855 | |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 856 | pandecode_log("struct mali_shared_memory shared_%"PRIx64"_%d = {\n", gpu_va, job_no); |
Alyssa Rosenzweig | 0aa5d89 | 2019-06-19 08:41:51 -0700 | [diff] [blame] | 857 | pandecode_indent++; |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 858 | pandecode_shared_memory(s, true); |
Alyssa Rosenzweig | 0aa5d89 | 2019-06-19 08:41:51 -0700 | [diff] [blame] | 859 | pandecode_indent--; |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 860 | pandecode_log("},\n"); |
Alyssa Rosenzweig | 0aa5d89 | 2019-06-19 08:41:51 -0700 | [diff] [blame] | 861 | } |
| 862 | |
Alyssa Rosenzweig | e09392f | 2019-08-20 14:34:09 -0700 | [diff] [blame] | 863 | /* Extracts the number of components associated with a Mali format */ |
| 864 | |
| 865 | static unsigned |
| 866 | pandecode_format_component_count(enum mali_format fmt) |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 867 | { |
Alyssa Rosenzweig | e09392f | 2019-08-20 14:34:09 -0700 | [diff] [blame] | 868 | /* Mask out the format class */ |
| 869 | unsigned top = fmt & 0b11100000; |
| 870 | |
| 871 | switch (top) { |
| 872 | case MALI_FORMAT_SNORM: |
| 873 | case MALI_FORMAT_UINT: |
| 874 | case MALI_FORMAT_UNORM: |
| 875 | case MALI_FORMAT_SINT: |
| 876 | return ((fmt >> 3) & 3) + 1; |
| 877 | default: |
| 878 | /* TODO: Validate */ |
| 879 | return 4; |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | /* Extracts a mask of accessed components from a 12-bit Mali swizzle */ |
| 884 | |
| 885 | static unsigned |
| 886 | pandecode_access_mask_from_channel_swizzle(unsigned swizzle) |
| 887 | { |
| 888 | unsigned mask = 0; |
| 889 | assert(MALI_CHANNEL_RED == 0); |
| 890 | |
| 891 | for (unsigned c = 0; c < 4; ++c) { |
| 892 | enum mali_channel chan = (swizzle >> (3*c)) & 0x7; |
| 893 | |
| 894 | if (chan <= MALI_CHANNEL_ALPHA) |
| 895 | mask |= (1 << chan); |
| 896 | } |
| 897 | |
| 898 | return mask; |
| 899 | } |
| 900 | |
| 901 | /* Validates that a (format, swizzle) pair is valid, in the sense that the |
| 902 | * swizzle doesn't access any components that are undefined in the format. |
| 903 | * Returns whether the swizzle is trivial (doesn't do any swizzling) and can be |
| 904 | * omitted */ |
| 905 | |
| 906 | static bool |
| 907 | pandecode_validate_format_swizzle(enum mali_format fmt, unsigned swizzle) |
| 908 | { |
| 909 | unsigned nr_comp = pandecode_format_component_count(fmt); |
| 910 | unsigned access_mask = pandecode_access_mask_from_channel_swizzle(swizzle); |
| 911 | unsigned valid_mask = (1 << nr_comp) - 1; |
| 912 | unsigned invalid_mask = ~valid_mask; |
| 913 | |
| 914 | if (access_mask & invalid_mask) { |
| 915 | pandecode_msg("XXX: invalid components accessed\n"); |
| 916 | return false; |
| 917 | } |
| 918 | |
| 919 | /* Check for the default non-swizzling swizzle so we can suppress |
| 920 | * useless printing for the defaults */ |
| 921 | |
| 922 | unsigned default_swizzles[4] = { |
| 923 | MALI_CHANNEL_RED | (MALI_CHANNEL_ZERO << 3) | (MALI_CHANNEL_ZERO << 6) | (MALI_CHANNEL_ONE << 9), |
| 924 | MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_ZERO << 6) | (MALI_CHANNEL_ONE << 9), |
| 925 | MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_BLUE << 6) | (MALI_CHANNEL_ONE << 9), |
| 926 | MALI_CHANNEL_RED | (MALI_CHANNEL_GREEN << 3) | (MALI_CHANNEL_BLUE << 6) | (MALI_CHANNEL_ALPHA << 9) |
| 927 | }; |
| 928 | |
| 929 | return (swizzle == default_swizzles[nr_comp - 1]); |
| 930 | } |
| 931 | |
| 932 | /* Maps MALI_RGBA32F to rgba32f, etc */ |
| 933 | |
| 934 | static void |
Alyssa Rosenzweig | 9b20395 | 2019-08-20 15:24:45 -0700 | [diff] [blame] | 935 | pandecode_format_short(enum mali_format fmt, bool srgb) |
Alyssa Rosenzweig | e09392f | 2019-08-20 14:34:09 -0700 | [diff] [blame] | 936 | { |
| 937 | /* We want a type-like format, so cut off the initial MALI_ */ |
| 938 | char *format = pandecode_format(fmt); |
| 939 | format += strlen("MALI_"); |
| 940 | |
| 941 | unsigned len = strlen(format); |
| 942 | char *lower_format = calloc(1, len + 1); |
| 943 | |
| 944 | for (unsigned i = 0; i < len; ++i) |
| 945 | lower_format[i] = tolower(format[i]); |
| 946 | |
Alyssa Rosenzweig | 9b20395 | 2019-08-20 15:24:45 -0700 | [diff] [blame] | 947 | /* Sanity check sRGB flag is applied to RGB, per the name */ |
| 948 | if (srgb && lower_format[0] != 'r') |
| 949 | pandecode_msg("XXX: sRGB applied to non-colour format\n"); |
| 950 | |
| 951 | /* Just prefix with an s, so you get formats like srgba8_unorm */ |
| 952 | if (srgb) |
| 953 | pandecode_log_cont("s"); |
| 954 | |
Alyssa Rosenzweig | e09392f | 2019-08-20 14:34:09 -0700 | [diff] [blame] | 955 | pandecode_log_cont("%s", lower_format); |
| 956 | free(lower_format); |
| 957 | } |
| 958 | |
| 959 | static void |
| 960 | pandecode_swizzle(unsigned swizzle, enum mali_format format) |
| 961 | { |
| 962 | /* First, do some validation */ |
| 963 | bool trivial_swizzle = pandecode_validate_format_swizzle( |
| 964 | format, swizzle); |
| 965 | |
| 966 | if (trivial_swizzle) |
| 967 | return; |
| 968 | |
| 969 | /* Next, print the swizzle */ |
| 970 | pandecode_log_cont("."); |
| 971 | |
| 972 | static const char components[] = "rgba01"; |
| 973 | |
| 974 | for (unsigned c = 0; c < 4; ++c) { |
| 975 | enum mali_channel chan = (swizzle >> (3 * c)) & 0x7; |
| 976 | |
| 977 | if (chan >= MALI_CHANNEL_RESERVED_0) { |
| 978 | pandecode_log("XXX: invalid swizzle channel %d\n", chan); |
| 979 | continue; |
| 980 | } |
| 981 | pandecode_log_cont("%c", components[chan]); |
| 982 | } |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 983 | } |
| 984 | |
| 985 | static void |
| 986 | pandecode_rt_format(struct mali_rt_format format) |
| 987 | { |
| 988 | pandecode_log(".format = {\n"); |
| 989 | pandecode_indent++; |
| 990 | |
| 991 | pandecode_prop("unk1 = 0x%" PRIx32, format.unk1); |
| 992 | pandecode_prop("unk2 = 0x%" PRIx32, format.unk2); |
Alyssa Rosenzweig | d507951 | 2019-06-17 15:53:09 -0700 | [diff] [blame] | 993 | pandecode_prop("unk3 = 0x%" PRIx32, format.unk3); |
| 994 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 995 | pandecode_prop("block = %s", pandecode_block_format(format.block)); |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 996 | |
Alyssa Rosenzweig | e09392f | 2019-08-20 14:34:09 -0700 | [diff] [blame] | 997 | /* TODO: Map formats so we can check swizzles and print nicely */ |
| 998 | pandecode_log("swizzle"); |
| 999 | pandecode_swizzle(format.swizzle, MALI_RGBA8_UNORM); |
| 1000 | pandecode_log_cont(",\n"); |
| 1001 | |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 1002 | pandecode_prop("nr_channels = MALI_POSITIVE(%d)", |
Alyssa Rosenzweig | 4ccd42e | 2019-12-27 12:16:09 -0500 | [diff] [blame] | 1003 | (format.nr_channels + 1)); |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 1004 | |
| 1005 | pandecode_log(".flags = "); |
| 1006 | pandecode_log_decoded_flags(mfbd_fmt_flag_info, format.flags); |
| 1007 | pandecode_log_cont(",\n"); |
| 1008 | |
Alyssa Rosenzweig | e49204c | 2019-08-20 11:11:46 -0700 | [diff] [blame] | 1009 | /* In theory, the no_preload bit can be cleared to enable MFBD preload, |
| 1010 | * which is a faster hardware-based alternative to the wallpaper method |
| 1011 | * to preserve framebuffer contents across frames. In practice, MFBD |
| 1012 | * preload is buggy on Midgard, and so this is a chicken bit. If this |
| 1013 | * bit isn't set, most likely something broke unrelated to preload */ |
| 1014 | |
| 1015 | if (!format.no_preload) { |
| 1016 | pandecode_msg("XXX: buggy MFBD preload enabled - chicken bit should be clear\n"); |
| 1017 | pandecode_prop("no_preload = 0x%" PRIx32, format.no_preload); |
| 1018 | } |
Alyssa Rosenzweig | b78e04c | 2019-08-14 16:01:38 -0700 | [diff] [blame] | 1019 | |
| 1020 | if (format.zero) |
| 1021 | pandecode_prop("zero = 0x%" PRIx32, format.zero); |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 1022 | |
| 1023 | pandecode_indent--; |
| 1024 | pandecode_log("},\n"); |
| 1025 | } |
| 1026 | |
| 1027 | static void |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1028 | pandecode_render_target(uint64_t gpu_va, unsigned job_no, const struct mali_framebuffer *fb) |
Alyssa Rosenzweig | 8c88bd0 | 2019-06-11 14:56:30 -0700 | [diff] [blame] | 1029 | { |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1030 | pandecode_log("struct mali_render_target rts_list_%"PRIx64"_%d[] = {\n", gpu_va, job_no); |
Alyssa Rosenzweig | 8c88bd0 | 2019-06-11 14:56:30 -0700 | [diff] [blame] | 1031 | pandecode_indent++; |
| 1032 | |
Alyssa Rosenzweig | 4ccd42e | 2019-12-27 12:16:09 -0500 | [diff] [blame] | 1033 | for (int i = 0; i < (fb->rt_count_1 + 1); i++) { |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1034 | mali_ptr rt_va = gpu_va + i * sizeof(struct mali_render_target); |
Alyssa Rosenzweig | 8c88bd0 | 2019-06-11 14:56:30 -0700 | [diff] [blame] | 1035 | struct pandecode_mapped_memory *mem = |
| 1036 | pandecode_find_mapped_gpu_mem_containing(rt_va); |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1037 | const struct mali_render_target *PANDECODE_PTR_VAR(rt, mem, (mali_ptr) rt_va); |
Alyssa Rosenzweig | 8c88bd0 | 2019-06-11 14:56:30 -0700 | [diff] [blame] | 1038 | |
| 1039 | pandecode_log("{\n"); |
| 1040 | pandecode_indent++; |
| 1041 | |
| 1042 | pandecode_rt_format(rt->format); |
| 1043 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 1044 | if (rt->format.block == MALI_BLOCK_AFBC) { |
Alyssa Rosenzweig | 8c88bd0 | 2019-06-11 14:56:30 -0700 | [diff] [blame] | 1045 | pandecode_log(".afbc = {\n"); |
| 1046 | pandecode_indent++; |
| 1047 | |
| 1048 | char *a = pointer_as_memory_reference(rt->afbc.metadata); |
| 1049 | pandecode_prop("metadata = %s", a); |
| 1050 | free(a); |
| 1051 | |
| 1052 | pandecode_prop("stride = %d", rt->afbc.stride); |
| 1053 | pandecode_prop("unk = 0x%" PRIx32, rt->afbc.unk); |
| 1054 | |
| 1055 | pandecode_indent--; |
| 1056 | pandecode_log("},\n"); |
Alyssa Rosenzweig | c9b6233 | 2019-08-20 11:06:07 -0700 | [diff] [blame] | 1057 | } else if (rt->afbc.metadata || rt->afbc.stride || rt->afbc.unk) { |
| 1058 | pandecode_msg("XXX: AFBC disabled but AFBC field set (0x%lX, 0x%x, 0x%x)\n", |
| 1059 | rt->afbc.metadata, |
| 1060 | rt->afbc.stride, |
| 1061 | rt->afbc.unk); |
Alyssa Rosenzweig | 8c88bd0 | 2019-06-11 14:56:30 -0700 | [diff] [blame] | 1062 | } |
| 1063 | |
| 1064 | MEMORY_PROP(rt, framebuffer); |
| 1065 | pandecode_prop("framebuffer_stride = %d", rt->framebuffer_stride); |
| 1066 | |
| 1067 | if (rt->clear_color_1 | rt->clear_color_2 | rt->clear_color_3 | rt->clear_color_4) { |
| 1068 | pandecode_prop("clear_color_1 = 0x%" PRIx32, rt->clear_color_1); |
| 1069 | pandecode_prop("clear_color_2 = 0x%" PRIx32, rt->clear_color_2); |
| 1070 | pandecode_prop("clear_color_3 = 0x%" PRIx32, rt->clear_color_3); |
| 1071 | pandecode_prop("clear_color_4 = 0x%" PRIx32, rt->clear_color_4); |
| 1072 | } |
| 1073 | |
| 1074 | if (rt->zero1 || rt->zero2 || rt->zero3) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 1075 | pandecode_msg("XXX: render target zeros tripped\n"); |
Alyssa Rosenzweig | 8c88bd0 | 2019-06-11 14:56:30 -0700 | [diff] [blame] | 1076 | pandecode_prop("zero1 = 0x%" PRIx64, rt->zero1); |
| 1077 | pandecode_prop("zero2 = 0x%" PRIx32, rt->zero2); |
| 1078 | pandecode_prop("zero3 = 0x%" PRIx32, rt->zero3); |
| 1079 | } |
| 1080 | |
| 1081 | pandecode_indent--; |
| 1082 | pandecode_log("},\n"); |
| 1083 | } |
| 1084 | |
| 1085 | pandecode_indent--; |
| 1086 | pandecode_log("};\n"); |
| 1087 | } |
| 1088 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 1089 | static struct pandecode_fbd |
Alyssa Rosenzweig | 3f5cd44 | 2020-02-28 07:17:53 -0500 | [diff] [blame] | 1090 | pandecode_mfbd_bfr(uint64_t gpu_va, int job_no, bool is_fragment, bool is_compute, bool is_bifrost) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1091 | { |
| 1092 | struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va); |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1093 | const struct mali_framebuffer *PANDECODE_PTR_VAR(fb, mem, (mali_ptr) gpu_va); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1094 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 1095 | struct pandecode_fbd info; |
Alyssa Rosenzweig | 3f5cd44 | 2020-02-28 07:17:53 -0500 | [diff] [blame] | 1096 | |
| 1097 | if (is_bifrost && fb->msaa.sample_locations) { |
| 1098 | /* The blob stores all possible sample locations in a single buffer |
| 1099 | * allocated on startup, and just switches the pointer when switching |
| 1100 | * MSAA state. For now, we just put the data into the cmdstream, but we |
| 1101 | * should do something like what the blob does with a real driver. |
| 1102 | * |
| 1103 | * There seem to be 32 slots for sample locations, followed by another |
| 1104 | * 16. The second 16 is just the center location followed by 15 zeros |
| 1105 | * in all the cases I've identified (maybe shader vs. depth/color |
| 1106 | * samples?). |
| 1107 | */ |
| 1108 | |
| 1109 | struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(fb->msaa.sample_locations); |
| 1110 | |
| 1111 | const u16 *PANDECODE_PTR_VAR(samples, smem, fb->msaa.sample_locations); |
| 1112 | |
| 1113 | pandecode_log("uint16_t sample_locations_%d[] = {\n", job_no); |
| 1114 | pandecode_indent++; |
| 1115 | |
| 1116 | for (int i = 0; i < 32 + 16; i++) { |
| 1117 | pandecode_log("%d, %d,\n", samples[2 * i], samples[2 * i + 1]); |
| 1118 | } |
| 1119 | |
| 1120 | pandecode_indent--; |
| 1121 | pandecode_log("};\n"); |
| 1122 | } |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 1123 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1124 | pandecode_log("struct mali_framebuffer framebuffer_%"PRIx64"_%d = {\n", gpu_va, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1125 | pandecode_indent++; |
| 1126 | |
Alyssa Rosenzweig | 3f5cd44 | 2020-02-28 07:17:53 -0500 | [diff] [blame] | 1127 | if (is_bifrost) { |
| 1128 | pandecode_log(".msaa = {\n"); |
| 1129 | pandecode_indent++; |
| 1130 | |
| 1131 | if (fb->msaa.sample_locations) |
| 1132 | pandecode_prop("sample_locations = sample_locations_%d", job_no); |
| 1133 | else |
| 1134 | pandecode_msg("XXX: sample_locations missing\n"); |
| 1135 | |
| 1136 | if (fb->msaa.zero1 || fb->msaa.zero2 || fb->msaa.zero4) { |
| 1137 | pandecode_msg("XXX: multisampling zero tripped\n"); |
| 1138 | pandecode_prop("zero1 = %" PRIx64, fb->msaa.zero1); |
| 1139 | pandecode_prop("zero2 = %" PRIx64, fb->msaa.zero2); |
| 1140 | pandecode_prop("zero4 = %" PRIx64, fb->msaa.zero4); |
| 1141 | } |
| 1142 | |
| 1143 | pandecode_indent--; |
| 1144 | pandecode_log("},\n"); |
| 1145 | } else { |
| 1146 | pandecode_log(".shared_memory = {\n"); |
| 1147 | pandecode_indent++; |
| 1148 | pandecode_shared_memory(&fb->shared_memory, is_compute); |
| 1149 | pandecode_indent--; |
| 1150 | pandecode_log("},\n"); |
| 1151 | } |
Alyssa Rosenzweig | 85e745f | 2019-06-12 09:33:06 -0700 | [diff] [blame] | 1152 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 1153 | info.width = fb->width1 + 1; |
| 1154 | info.height = fb->height1 + 1; |
| 1155 | info.rt_count = fb->rt_count_1 + 1; |
| 1156 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1157 | pandecode_prop("width1 = MALI_POSITIVE(%d)", fb->width1 + 1); |
| 1158 | pandecode_prop("height1 = MALI_POSITIVE(%d)", fb->height1 + 1); |
| 1159 | pandecode_prop("width2 = MALI_POSITIVE(%d)", fb->width2 + 1); |
| 1160 | pandecode_prop("height2 = MALI_POSITIVE(%d)", fb->height2 + 1); |
| 1161 | |
| 1162 | pandecode_prop("unk1 = 0x%x", fb->unk1); |
| 1163 | pandecode_prop("unk2 = 0x%x", fb->unk2); |
| 1164 | pandecode_prop("rt_count_1 = MALI_POSITIVE(%d)", fb->rt_count_1 + 1); |
| 1165 | pandecode_prop("rt_count_2 = %d", fb->rt_count_2); |
| 1166 | |
Alyssa Rosenzweig | ac68946 | 2019-06-14 11:14:01 -0700 | [diff] [blame] | 1167 | pandecode_log(".mfbd_flags = "); |
| 1168 | pandecode_log_decoded_flags(mfbd_flag_info, fb->mfbd_flags); |
| 1169 | pandecode_log_cont(",\n"); |
| 1170 | |
Alyssa Rosenzweig | 3752f76 | 2019-08-20 11:25:29 -0700 | [diff] [blame] | 1171 | if (fb->clear_stencil) |
| 1172 | pandecode_prop("clear_stencil = 0x%x", fb->clear_stencil); |
| 1173 | |
| 1174 | if (fb->clear_depth) |
| 1175 | pandecode_prop("clear_depth = %f", fb->clear_depth); |
| 1176 | |
Alyssa Rosenzweig | 3993969 | 2020-01-22 08:51:19 -0500 | [diff] [blame] | 1177 | if (!is_compute) |
Alyssa Rosenzweig | 3044a37 | 2020-02-28 07:25:25 -0500 | [diff] [blame] | 1178 | if (is_bifrost) |
Tomeu Vizoso | 46e4246 | 2020-04-08 15:58:42 +0200 | [diff] [blame] | 1179 | pandecode_bifrost_tiler_descriptor(fb); |
Alyssa Rosenzweig | 3044a37 | 2020-02-28 07:25:25 -0500 | [diff] [blame] | 1180 | else |
Tomeu Vizoso | 46e4246 | 2020-04-08 15:58:42 +0200 | [diff] [blame] | 1181 | pandecode_midgard_tiler_descriptor(&fb->tiler, fb->width1 + 1, fb->height1 + 1, is_fragment, true); |
Alyssa Rosenzweig | 3993969 | 2020-01-22 08:51:19 -0500 | [diff] [blame] | 1182 | else |
| 1183 | pandecode_msg("XXX: skipping compute MFBD, fixme\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1184 | |
Alyssa Rosenzweig | 85e745f | 2019-06-12 09:33:06 -0700 | [diff] [blame] | 1185 | if (fb->zero3 || fb->zero4) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 1186 | pandecode_msg("XXX: framebuffer zeros tripped\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1187 | pandecode_prop("zero3 = 0x%" PRIx32, fb->zero3); |
| 1188 | pandecode_prop("zero4 = 0x%" PRIx32, fb->zero4); |
Alyssa Rosenzweig | 85e745f | 2019-06-12 09:33:06 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1191 | pandecode_indent--; |
| 1192 | pandecode_log("};\n"); |
| 1193 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1194 | gpu_va += sizeof(struct mali_framebuffer); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1195 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 1196 | info.has_extra = (fb->mfbd_flags & MALI_MFBD_EXTRA) && is_fragment; |
| 1197 | |
| 1198 | if (info.has_extra) { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1199 | mem = pandecode_find_mapped_gpu_mem_containing(gpu_va); |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1200 | const struct mali_framebuffer_extra *PANDECODE_PTR_VAR(fbx, mem, (mali_ptr) gpu_va); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1201 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1202 | pandecode_log("struct mali_framebuffer_extra fb_extra_%"PRIx64"_%d = {\n", gpu_va, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1203 | pandecode_indent++; |
| 1204 | |
| 1205 | MEMORY_PROP(fbx, checksum); |
| 1206 | |
| 1207 | if (fbx->checksum_stride) |
| 1208 | pandecode_prop("checksum_stride = %d", fbx->checksum_stride); |
| 1209 | |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 1210 | pandecode_log(".flags_hi = "); |
| 1211 | pandecode_log_decoded_flags(mfbd_extra_flag_hi_info, fbx->flags_lo); |
Alyssa Rosenzweig | 587ad37 | 2019-03-09 00:45:23 +0000 | [diff] [blame] | 1212 | pandecode_log_cont(",\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1213 | |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 1214 | pandecode_log(".flags_lo = "); |
| 1215 | pandecode_log_decoded_flags(mfbd_extra_flag_lo_info, fbx->flags_lo); |
| 1216 | pandecode_log_cont(",\n"); |
| 1217 | |
Alyssa Rosenzweig | 0c4a70b | 2020-02-11 21:50:04 -0500 | [diff] [blame] | 1218 | pandecode_prop("zs_block = %s", pandecode_block_format(fbx->zs_block)); |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 1219 | |
| 1220 | if (fbx->zs_block == MALI_BLOCK_AFBC) { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1221 | pandecode_log(".ds_afbc = {\n"); |
| 1222 | pandecode_indent++; |
| 1223 | |
Alyssa Rosenzweig | 0c1874a | 2019-07-12 08:47:35 -0700 | [diff] [blame] | 1224 | MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil_afbc_metadata); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1225 | pandecode_prop("depth_stencil_afbc_stride = %d", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1226 | fbx->ds_afbc.depth_stencil_afbc_stride); |
Alyssa Rosenzweig | 0c1874a | 2019-07-12 08:47:35 -0700 | [diff] [blame] | 1227 | MEMORY_PROP_DIR(fbx->ds_afbc, depth_stencil); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1228 | |
| 1229 | if (fbx->ds_afbc.zero1 || fbx->ds_afbc.padding) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 1230 | pandecode_msg("XXX: Depth/stencil AFBC zeros tripped\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1231 | pandecode_prop("zero1 = 0x%" PRIx32, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1232 | fbx->ds_afbc.zero1); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1233 | pandecode_prop("padding = 0x%" PRIx64, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1234 | fbx->ds_afbc.padding); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1235 | } |
| 1236 | |
| 1237 | pandecode_indent--; |
| 1238 | pandecode_log("},\n"); |
| 1239 | } else { |
| 1240 | pandecode_log(".ds_linear = {\n"); |
| 1241 | pandecode_indent++; |
| 1242 | |
| 1243 | if (fbx->ds_linear.depth) { |
Alyssa Rosenzweig | 0c1874a | 2019-07-12 08:47:35 -0700 | [diff] [blame] | 1244 | MEMORY_PROP_DIR(fbx->ds_linear, depth); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1245 | pandecode_prop("depth_stride = %d", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1246 | fbx->ds_linear.depth_stride); |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 1247 | } else if (fbx->ds_linear.depth_stride) { |
| 1248 | pandecode_msg("XXX: depth stride zero tripped %d\n", fbx->ds_linear.depth_stride); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1249 | } |
| 1250 | |
| 1251 | if (fbx->ds_linear.stencil) { |
Alyssa Rosenzweig | 0c1874a | 2019-07-12 08:47:35 -0700 | [diff] [blame] | 1252 | MEMORY_PROP_DIR(fbx->ds_linear, stencil); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1253 | pandecode_prop("stencil_stride = %d", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1254 | fbx->ds_linear.stencil_stride); |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 1255 | } else if (fbx->ds_linear.stencil_stride) { |
| 1256 | pandecode_msg("XXX: stencil stride zero tripped %d\n", fbx->ds_linear.stencil_stride); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1257 | } |
| 1258 | |
| 1259 | if (fbx->ds_linear.depth_stride_zero || |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1260 | fbx->ds_linear.stencil_stride_zero || |
| 1261 | fbx->ds_linear.zero1 || fbx->ds_linear.zero2) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 1262 | pandecode_msg("XXX: Depth/stencil zeros tripped\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1263 | pandecode_prop("depth_stride_zero = 0x%x", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1264 | fbx->ds_linear.depth_stride_zero); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1265 | pandecode_prop("stencil_stride_zero = 0x%x", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1266 | fbx->ds_linear.stencil_stride_zero); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1267 | pandecode_prop("zero1 = 0x%" PRIx32, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1268 | fbx->ds_linear.zero1); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1269 | pandecode_prop("zero2 = 0x%" PRIx32, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1270 | fbx->ds_linear.zero2); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1271 | } |
| 1272 | |
| 1273 | pandecode_indent--; |
| 1274 | pandecode_log("},\n"); |
| 1275 | } |
| 1276 | |
| 1277 | if (fbx->zero3 || fbx->zero4) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 1278 | pandecode_msg("XXX: fb_extra zeros tripped\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1279 | pandecode_prop("zero3 = 0x%" PRIx64, fbx->zero3); |
| 1280 | pandecode_prop("zero4 = 0x%" PRIx64, fbx->zero4); |
| 1281 | } |
| 1282 | |
| 1283 | pandecode_indent--; |
| 1284 | pandecode_log("};\n"); |
| 1285 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1286 | gpu_va += sizeof(struct mali_framebuffer_extra); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1287 | } |
| 1288 | |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 1289 | if (is_fragment) |
Alyssa Rosenzweig | 8c88bd0 | 2019-06-11 14:56:30 -0700 | [diff] [blame] | 1290 | pandecode_render_target(gpu_va, job_no, fb); |
Alyssa Rosenzweig | a9fc1c8 | 2019-06-23 11:29:46 -0700 | [diff] [blame] | 1291 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 1292 | return info; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1293 | } |
| 1294 | |
Alyssa Rosenzweig | 8d74749 | 2019-06-27 14:13:10 -0700 | [diff] [blame] | 1295 | /* Just add a comment decoding the shift/odd fields forming the padded vertices |
| 1296 | * count */ |
| 1297 | |
| 1298 | static void |
| 1299 | pandecode_padded_vertices(unsigned shift, unsigned k) |
| 1300 | { |
| 1301 | unsigned odd = 2*k + 1; |
| 1302 | unsigned pot = 1 << shift; |
| 1303 | pandecode_msg("padded_num_vertices = %d\n", odd * pot); |
| 1304 | } |
| 1305 | |
| 1306 | /* Given a magic divisor, recover what we were trying to divide by. |
| 1307 | * |
| 1308 | * Let m represent the magic divisor. By definition, m is an element on Z, whre |
| 1309 | * 0 <= m < 2^N, for N bits in m. |
| 1310 | * |
| 1311 | * Let q represent the number we would like to divide by. |
| 1312 | * |
| 1313 | * By definition of a magic divisor for N-bit unsigned integers (a number you |
| 1314 | * multiply by to magically get division), m is a number such that: |
| 1315 | * |
| 1316 | * (m * x) & (2^N - 1) = floor(x/q). |
| 1317 | * for all x on Z where 0 <= x < 2^N |
| 1318 | * |
| 1319 | * Ignore the case where any of the above values equals zero; it is irrelevant |
| 1320 | * for our purposes (instanced arrays). |
| 1321 | * |
| 1322 | * Choose x = q. Then: |
| 1323 | * |
| 1324 | * (m * x) & (2^N - 1) = floor(x/q). |
| 1325 | * (m * q) & (2^N - 1) = floor(q/q). |
| 1326 | * |
| 1327 | * floor(q/q) = floor(1) = 1, therefore: |
| 1328 | * |
| 1329 | * (m * q) & (2^N - 1) = 1 |
| 1330 | * |
| 1331 | * Recall the identity that the bitwise AND of one less than a power-of-two |
| 1332 | * equals the modulo with that power of two, i.e. for all x: |
| 1333 | * |
| 1334 | * x & (2^N - 1) = x % N |
| 1335 | * |
| 1336 | * Therefore: |
| 1337 | * |
| 1338 | * mq % (2^N) = 1 |
| 1339 | * |
| 1340 | * By definition, a modular multiplicative inverse of a number m is the number |
| 1341 | * q such that with respect to a modulos M: |
| 1342 | * |
| 1343 | * mq % M = 1 |
| 1344 | * |
| 1345 | * Therefore, q is the modular multiplicative inverse of m with modulus 2^N. |
| 1346 | * |
| 1347 | */ |
| 1348 | |
| 1349 | static void |
| 1350 | pandecode_magic_divisor(uint32_t magic, unsigned shift, unsigned orig_divisor, unsigned extra) |
| 1351 | { |
Alyssa Rosenzweig | d07c846 | 2019-07-22 08:34:26 -0700 | [diff] [blame] | 1352 | #if 0 |
Alyssa Rosenzweig | 8d74749 | 2019-06-27 14:13:10 -0700 | [diff] [blame] | 1353 | /* Compute the modular inverse of `magic` with respect to 2^(32 - |
| 1354 | * shift) the most lame way possible... just repeatedly add. |
| 1355 | * Asymptoptically slow but nobody cares in practice, unless you have |
| 1356 | * massive numbers of vertices or high divisors. */ |
| 1357 | |
| 1358 | unsigned inverse = 0; |
| 1359 | |
| 1360 | /* Magic implicitly has the highest bit set */ |
| 1361 | magic |= (1 << 31); |
| 1362 | |
| 1363 | /* Depending on rounding direction */ |
| 1364 | if (extra) |
| 1365 | magic++; |
| 1366 | |
| 1367 | for (;;) { |
| 1368 | uint32_t product = magic * inverse; |
| 1369 | |
| 1370 | if (shift) { |
| 1371 | product >>= shift; |
| 1372 | } |
| 1373 | |
| 1374 | if (product == 1) |
| 1375 | break; |
| 1376 | |
| 1377 | ++inverse; |
| 1378 | } |
| 1379 | |
| 1380 | pandecode_msg("dividing by %d (maybe off by two)\n", inverse); |
| 1381 | |
| 1382 | /* Recall we're supposed to divide by (gl_level_divisor * |
| 1383 | * padded_num_vertices) */ |
| 1384 | |
| 1385 | unsigned padded_num_vertices = inverse / orig_divisor; |
| 1386 | |
| 1387 | pandecode_msg("padded_num_vertices = %d\n", padded_num_vertices); |
Alyssa Rosenzweig | d07c846 | 2019-07-22 08:34:26 -0700 | [diff] [blame] | 1388 | #endif |
Alyssa Rosenzweig | 8d74749 | 2019-06-27 14:13:10 -0700 | [diff] [blame] | 1389 | } |
| 1390 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1391 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1392 | pandecode_attributes(const struct pandecode_mapped_memory *mem, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1393 | mali_ptr addr, int job_no, char *suffix, |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 1394 | int count, bool varying, enum mali_job_type job_type) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1395 | { |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 1396 | char *prefix = varying ? "varying" : "attribute"; |
Alyssa Rosenzweig | ed464e0 | 2019-08-22 13:07:01 -0700 | [diff] [blame] | 1397 | assert(addr); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1398 | |
Alyssa Rosenzweig | ed464e0 | 2019-08-22 13:07:01 -0700 | [diff] [blame] | 1399 | if (!count) { |
| 1400 | pandecode_msg("warn: No %s records\n", prefix); |
Alyssa Rosenzweig | 5ad8301 | 2019-08-08 09:23:29 -0700 | [diff] [blame] | 1401 | return; |
| 1402 | } |
| 1403 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1404 | union mali_attr *attr = pandecode_fetch_gpu_mem(mem, addr, sizeof(union mali_attr) * count); |
| 1405 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1406 | for (int i = 0; i < count; ++i) { |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 1407 | /* First, check for special records */ |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 1408 | if (attr[i].elements < MALI_RECORD_SPECIAL) { |
| 1409 | if (attr[i].size) |
| 1410 | pandecode_msg("XXX: tripped size=%d\n", attr[i].size); |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 1411 | |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 1412 | if (attr[i].stride) { |
| 1413 | /* gl_InstanceID passes a magic divisor in the |
| 1414 | * stride field to divide by the padded vertex |
| 1415 | * count. No other records should do so, so |
| 1416 | * stride should otherwise be zero. Note that |
| 1417 | * stride in the usual attribute sense doesn't |
| 1418 | * apply to special records. */ |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 1419 | |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 1420 | bool has_divisor = attr[i].elements == MALI_ATTR_INSTANCEID; |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 1421 | |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 1422 | pandecode_log_cont("/* %smagic divisor = %X */ ", |
| 1423 | has_divisor ? "" : "XXX: ", attr[i].stride); |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 1424 | } |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 1425 | |
| 1426 | if (attr[i].shift || attr[i].extra_flags) { |
| 1427 | /* Attributes use these fields for |
| 1428 | * instancing/padding/etc type issues, but |
| 1429 | * varyings don't */ |
| 1430 | |
| 1431 | pandecode_log_cont("/* %sshift=%d, extra=%d */ ", |
| 1432 | varying ? "XXX: " : "", |
| 1433 | attr[i].shift, attr[i].extra_flags); |
| 1434 | } |
| 1435 | |
| 1436 | /* Print the special record name */ |
| 1437 | bool attribute = false; |
| 1438 | pandecode_log("%s_%d = %s;\n", prefix, i, pandecode_special_record(attr[i].elements, &attribute)); |
| 1439 | |
| 1440 | /* Sanity check */ |
| 1441 | if (attribute == varying) |
| 1442 | pandecode_msg("XXX: mismatched special record\n"); |
| 1443 | |
| 1444 | continue; |
| 1445 | } |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 1446 | |
Alyssa Rosenzweig | be5e30c | 2019-08-20 15:59:03 -0700 | [diff] [blame] | 1447 | enum mali_attr_mode mode = attr[i].elements & 7; |
| 1448 | |
| 1449 | if (mode == MALI_ATTR_UNUSED) |
| 1450 | pandecode_msg("XXX: unused attribute record\n"); |
| 1451 | |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 1452 | /* For non-linear records, we need to print the type of record */ |
| 1453 | if (mode != MALI_ATTR_LINEAR) |
| 1454 | pandecode_log_cont("%s ", pandecode_attr_mode_short(mode)); |
| 1455 | |
| 1456 | /* Print the name to link with attr_meta */ |
| 1457 | pandecode_log_cont("%s_%d", prefix, i); |
| 1458 | |
| 1459 | /* Print the stride and size */ |
| 1460 | pandecode_log_cont("<%u>[%u]", attr[i].stride, attr[i].size); |
| 1461 | |
Alyssa Rosenzweig | caec0b3 | 2019-08-22 13:09:00 -0700 | [diff] [blame] | 1462 | /* TODO: Sanity check the quotient itself. It must be equal to |
| 1463 | * (or be greater than, if the driver added padding) the padded |
| 1464 | * vertex count. */ |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 1465 | |
| 1466 | /* Finally, print the pointer */ |
Alyssa Rosenzweig | be5e30c | 2019-08-20 15:59:03 -0700 | [diff] [blame] | 1467 | mali_ptr raw_elements = attr[i].elements & ~7; |
| 1468 | char *a = pointer_as_memory_reference(raw_elements); |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 1469 | pandecode_log_cont(" = (%s);\n", a); |
Alyssa Rosenzweig | be5e30c | 2019-08-20 15:59:03 -0700 | [diff] [blame] | 1470 | free(a); |
| 1471 | |
Alyssa Rosenzweig | 62e6673 | 2019-08-20 16:02:38 -0700 | [diff] [blame] | 1472 | /* Check the pointer */ |
| 1473 | pandecode_validate_buffer(raw_elements, attr[i].size); |
| 1474 | |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 1475 | /* shift/extra_flags exist only for instanced */ |
| 1476 | if (attr[i].shift | attr[i].extra_flags) { |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 1477 | /* These are set to random values by the blob for |
| 1478 | * varyings, most likely a symptom of uninitialized |
| 1479 | * memory where the hardware masked the bug. As such we |
| 1480 | * put this at a warning, not an error. */ |
| 1481 | |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 1482 | if (mode == MALI_ATTR_LINEAR) |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 1483 | pandecode_msg("warn: instancing fields set for linear\n"); |
Alyssa Rosenzweig | fc69a5c | 2019-08-21 08:05:02 -0700 | [diff] [blame] | 1484 | |
| 1485 | pandecode_prop("shift = %d", attr[i].shift); |
| 1486 | pandecode_prop("extra_flags = %d", attr[i].extra_flags); |
| 1487 | } |
Alyssa Rosenzweig | e9e2254 | 2019-06-27 10:18:22 -0700 | [diff] [blame] | 1488 | |
| 1489 | /* Decode further where possible */ |
| 1490 | |
| 1491 | if (mode == MALI_ATTR_MODULO) { |
Alyssa Rosenzweig | 8d74749 | 2019-06-27 14:13:10 -0700 | [diff] [blame] | 1492 | pandecode_padded_vertices( |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1493 | attr[i].shift, |
| 1494 | attr[i].extra_flags); |
Alyssa Rosenzweig | e9e2254 | 2019-06-27 10:18:22 -0700 | [diff] [blame] | 1495 | } |
| 1496 | |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1497 | if (mode == MALI_ATTR_NPOT_DIVIDE) { |
| 1498 | i++; |
| 1499 | pandecode_log("{\n"); |
| 1500 | pandecode_indent++; |
| 1501 | pandecode_prop("unk = 0x%x", attr[i].unk); |
| 1502 | pandecode_prop("magic_divisor = 0x%08x", attr[i].magic_divisor); |
| 1503 | if (attr[i].zero != 0) |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 1504 | pandecode_prop("XXX: zero tripped (0x%x)\n", attr[i].zero); |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1505 | pandecode_prop("divisor = %d", attr[i].divisor); |
Alyssa Rosenzweig | 8d74749 | 2019-06-27 14:13:10 -0700 | [diff] [blame] | 1506 | pandecode_magic_divisor(attr[i].magic_divisor, attr[i - 1].shift, attr[i].divisor, attr[i - 1].extra_flags); |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1507 | pandecode_indent--; |
| 1508 | pandecode_log("}, \n"); |
| 1509 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1510 | |
| 1511 | } |
| 1512 | |
Alyssa Rosenzweig | a68fe4b | 2019-08-21 11:43:13 -0700 | [diff] [blame] | 1513 | pandecode_log("\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1514 | } |
| 1515 | |
| 1516 | static mali_ptr |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1517 | pandecode_shader_address(const char *name, mali_ptr ptr) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1518 | { |
| 1519 | /* TODO: Decode flags */ |
| 1520 | mali_ptr shader_ptr = ptr & ~15; |
| 1521 | |
| 1522 | char *a = pointer_as_memory_reference(shader_ptr); |
| 1523 | pandecode_prop("%s = (%s) | %d", name, a, (int) (ptr & 15)); |
| 1524 | free(a); |
| 1525 | |
| 1526 | return shader_ptr; |
| 1527 | } |
| 1528 | |
| 1529 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1530 | pandecode_stencil(const char *name, const struct mali_stencil_test *stencil) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1531 | { |
Alyssa Rosenzweig | 9ce45ac | 2019-08-21 08:59:57 -0700 | [diff] [blame] | 1532 | unsigned any_nonzero = |
| 1533 | stencil->ref | stencil->mask | stencil->func | |
| 1534 | stencil->sfail | stencil->dpfail | stencil->dppass; |
| 1535 | |
| 1536 | if (any_nonzero == 0) |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 1537 | return; |
| 1538 | |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 1539 | const char *func = pandecode_func(stencil->func); |
| 1540 | const char *sfail = pandecode_stencil_op(stencil->sfail); |
| 1541 | const char *dpfail = pandecode_stencil_op(stencil->dpfail); |
| 1542 | const char *dppass = pandecode_stencil_op(stencil->dppass); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1543 | |
| 1544 | if (stencil->zero) |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 1545 | pandecode_msg("XXX: stencil zero tripped: %X\n", stencil->zero); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1546 | |
| 1547 | pandecode_log(".stencil_%s = {\n", name); |
| 1548 | pandecode_indent++; |
| 1549 | pandecode_prop("ref = %d", stencil->ref); |
| 1550 | pandecode_prop("mask = 0x%02X", stencil->mask); |
| 1551 | pandecode_prop("func = %s", func); |
| 1552 | pandecode_prop("sfail = %s", sfail); |
| 1553 | pandecode_prop("dpfail = %s", dpfail); |
| 1554 | pandecode_prop("dppass = %s", dppass); |
| 1555 | pandecode_indent--; |
| 1556 | pandecode_log("},\n"); |
| 1557 | } |
| 1558 | |
| 1559 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1560 | pandecode_blend_equation(const struct mali_blend_equation *blend) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1561 | { |
| 1562 | if (blend->zero1) |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 1563 | pandecode_msg("XXX: blend zero tripped: %X\n", blend->zero1); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1564 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1565 | pandecode_log(".equation = {\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1566 | pandecode_indent++; |
| 1567 | |
| 1568 | pandecode_prop("rgb_mode = 0x%X", blend->rgb_mode); |
| 1569 | pandecode_prop("alpha_mode = 0x%X", blend->alpha_mode); |
| 1570 | |
| 1571 | pandecode_log(".color_mask = "); |
| 1572 | pandecode_log_decoded_flags(mask_flag_info, blend->color_mask); |
| 1573 | pandecode_log_cont(",\n"); |
| 1574 | |
| 1575 | pandecode_indent--; |
| 1576 | pandecode_log("},\n"); |
| 1577 | } |
| 1578 | |
Alyssa Rosenzweig | ae70538 | 2019-05-18 20:48:43 +0000 | [diff] [blame] | 1579 | /* Decodes a Bifrost blend constant. See the notes in bifrost_blend_rt */ |
| 1580 | |
| 1581 | static unsigned |
| 1582 | decode_bifrost_constant(u16 constant) |
| 1583 | { |
| 1584 | float lo = (float) (constant & 0xFF); |
| 1585 | float hi = (float) (constant >> 8); |
| 1586 | |
| 1587 | return (hi / 255.0) + (lo / 65535.0); |
| 1588 | } |
| 1589 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1590 | static mali_ptr |
| 1591 | pandecode_bifrost_blend(void *descs, int job_no, int rt_no) |
| 1592 | { |
| 1593 | struct bifrost_blend_rt *b = |
| 1594 | ((struct bifrost_blend_rt *) descs) + rt_no; |
| 1595 | |
| 1596 | pandecode_log("struct bifrost_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no); |
| 1597 | pandecode_indent++; |
| 1598 | |
Alyssa Rosenzweig | ae70538 | 2019-05-18 20:48:43 +0000 | [diff] [blame] | 1599 | pandecode_prop("flags = 0x%" PRIx16, b->flags); |
| 1600 | pandecode_prop("constant = 0x%" PRIx8 " /* %f */", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1601 | b->constant, decode_bifrost_constant(b->constant)); |
Alyssa Rosenzweig | ae70538 | 2019-05-18 20:48:43 +0000 | [diff] [blame] | 1602 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1603 | /* TODO figure out blend shader enable bit */ |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1604 | pandecode_blend_equation(&b->equation); |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1605 | pandecode_prop("unk2 = 0x%" PRIx16, b->unk2); |
| 1606 | pandecode_prop("index = 0x%" PRIx16, b->index); |
| 1607 | pandecode_prop("shader = 0x%" PRIx32, b->shader); |
| 1608 | |
| 1609 | pandecode_indent--; |
| 1610 | pandecode_log("},\n"); |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1611 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1612 | return 0; |
| 1613 | } |
| 1614 | |
| 1615 | static mali_ptr |
| 1616 | pandecode_midgard_blend(union midgard_blend *blend, bool is_shader) |
| 1617 | { |
Alyssa Rosenzweig | 9ce45ac | 2019-08-21 08:59:57 -0700 | [diff] [blame] | 1618 | /* constant/equation is in a union */ |
| 1619 | if (!blend->shader) |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 1620 | return 0; |
| 1621 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1622 | pandecode_log(".blend = {\n"); |
| 1623 | pandecode_indent++; |
| 1624 | |
| 1625 | if (is_shader) { |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1626 | pandecode_shader_address("shader", blend->shader); |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1627 | } else { |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1628 | pandecode_blend_equation(&blend->equation); |
Alyssa Rosenzweig | ae70538 | 2019-05-18 20:48:43 +0000 | [diff] [blame] | 1629 | pandecode_prop("constant = %f", blend->constant); |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1630 | } |
| 1631 | |
| 1632 | pandecode_indent--; |
| 1633 | pandecode_log("},\n"); |
| 1634 | |
| 1635 | /* Return blend shader to disassemble if present */ |
| 1636 | return is_shader ? (blend->shader & ~0xF) : 0; |
| 1637 | } |
| 1638 | |
| 1639 | static mali_ptr |
| 1640 | pandecode_midgard_blend_mrt(void *descs, int job_no, int rt_no) |
| 1641 | { |
| 1642 | struct midgard_blend_rt *b = |
| 1643 | ((struct midgard_blend_rt *) descs) + rt_no; |
| 1644 | |
| 1645 | /* Flags determine presence of blend shader */ |
| 1646 | bool is_shader = (b->flags & 0xF) >= 0x2; |
| 1647 | |
| 1648 | pandecode_log("struct midgard_blend_rt blend_rt_%d_%d = {\n", job_no, rt_no); |
| 1649 | pandecode_indent++; |
| 1650 | |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1651 | pandecode_prop("flags = 0x%" PRIx64, b->flags); |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1652 | |
Alyssa Rosenzweig | 9ffe061 | 2019-07-12 08:45:51 -0700 | [diff] [blame] | 1653 | union midgard_blend blend = b->blend; |
| 1654 | mali_ptr shader = pandecode_midgard_blend(&blend, is_shader); |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 1655 | |
| 1656 | pandecode_indent--; |
| 1657 | pandecode_log("};\n"); |
| 1658 | |
| 1659 | return shader; |
| 1660 | } |
| 1661 | |
Alyssa Rosenzweig | 2208eb9 | 2019-08-20 13:59:26 -0700 | [diff] [blame] | 1662 | /* Attributes and varyings have descriptor records, which contain information |
| 1663 | * about their format and ordering with the attribute/varying buffers. We'll |
| 1664 | * want to validate that the combinations specified are self-consistent. |
| 1665 | */ |
| 1666 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1667 | static int |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1668 | pandecode_attribute_meta(int job_no, int count, const struct mali_vertex_tiler_postfix *v, bool varying, char *suffix) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1669 | { |
| 1670 | char base[128]; |
| 1671 | char *prefix = varying ? "varying" : "attribute"; |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1672 | unsigned max_index = 0; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1673 | snprintf(base, sizeof(base), "%s_meta", prefix); |
| 1674 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1675 | struct mali_attr_meta *attr_meta; |
Alyssa Rosenzweig | 26ed431 | 2019-08-22 11:21:35 -0700 | [diff] [blame] | 1676 | mali_ptr p = varying ? v->varying_meta : v->attribute_meta; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1677 | |
| 1678 | struct pandecode_mapped_memory *attr_mem = pandecode_find_mapped_gpu_mem_containing(p); |
| 1679 | |
| 1680 | for (int i = 0; i < count; ++i, p += sizeof(struct mali_attr_meta)) { |
| 1681 | attr_meta = pandecode_fetch_gpu_mem(attr_mem, p, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1682 | sizeof(*attr_mem)); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1683 | |
Alyssa Rosenzweig | a94fb78 | 2019-08-20 13:33:39 -0700 | [diff] [blame] | 1684 | /* If the record is discard, it should be zero for everything else */ |
| 1685 | |
| 1686 | if (attr_meta->format == MALI_VARYING_DISCARD) { |
| 1687 | uint64_t zero = |
| 1688 | attr_meta->index | |
| 1689 | attr_meta->unknown1 | |
| 1690 | attr_meta->unknown3 | |
| 1691 | attr_meta->src_offset; |
| 1692 | |
| 1693 | if (zero) |
| 1694 | pandecode_msg("XXX: expected empty record for varying discard\n"); |
| 1695 | |
| 1696 | /* We want to look for a literal 0000 swizzle -- this |
| 1697 | * is not encoded with all zeroes, however */ |
| 1698 | |
| 1699 | enum mali_channel z = MALI_CHANNEL_ZERO; |
| 1700 | unsigned zero_swizzle = z | (z << 3) | (z << 6) | (z << 9); |
| 1701 | bool good_swizzle = attr_meta->swizzle == zero_swizzle; |
| 1702 | |
| 1703 | if (!good_swizzle) |
| 1704 | pandecode_msg("XXX: expected zero swizzle for discard\n"); |
| 1705 | |
| 1706 | if (!varying) |
| 1707 | pandecode_msg("XXX: cannot discard attribute\n"); |
| 1708 | |
| 1709 | /* If we're all good, omit the record */ |
| 1710 | if (!zero && varying && good_swizzle) { |
| 1711 | pandecode_log("/* discarded varying */\n"); |
| 1712 | continue; |
| 1713 | } |
| 1714 | } |
| 1715 | |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 1716 | if (attr_meta->index > max_index) |
| 1717 | max_index = attr_meta->index; |
Alyssa Rosenzweig | 2208eb9 | 2019-08-20 13:59:26 -0700 | [diff] [blame] | 1718 | |
Alyssa Rosenzweig | 00be5d7 | 2019-08-20 13:19:40 -0700 | [diff] [blame] | 1719 | if (attr_meta->unknown1 != 0x2) { |
| 1720 | pandecode_msg("XXX: expected unknown1 = 0x2\n"); |
| 1721 | pandecode_prop("unknown1 = 0x%" PRIx64, (u64) attr_meta->unknown1); |
| 1722 | } |
| 1723 | |
| 1724 | if (attr_meta->unknown3) { |
| 1725 | pandecode_msg("XXX: unexpected unknown3 set\n"); |
| 1726 | pandecode_prop("unknown3 = 0x%" PRIx64, (u64) attr_meta->unknown3); |
| 1727 | } |
| 1728 | |
Alyssa Rosenzweig | 9b20395 | 2019-08-20 15:24:45 -0700 | [diff] [blame] | 1729 | pandecode_format_short(attr_meta->format, false); |
Alyssa Rosenzweig | e09392f | 2019-08-20 14:34:09 -0700 | [diff] [blame] | 1730 | pandecode_log_cont(" %s_%u", prefix, attr_meta->index); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1731 | |
Alyssa Rosenzweig | e09392f | 2019-08-20 14:34:09 -0700 | [diff] [blame] | 1732 | if (attr_meta->src_offset) |
| 1733 | pandecode_log_cont("[%u]", attr_meta->src_offset); |
| 1734 | |
| 1735 | pandecode_swizzle(attr_meta->swizzle, attr_meta->format); |
| 1736 | |
| 1737 | pandecode_log_cont(";\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1738 | } |
| 1739 | |
Alyssa Rosenzweig | a68fe4b | 2019-08-21 11:43:13 -0700 | [diff] [blame] | 1740 | pandecode_log("\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1741 | |
Alyssa Rosenzweig | 9e66ff3 | 2019-07-31 11:52:52 -0700 | [diff] [blame] | 1742 | return count ? (max_index + 1) : 0; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1743 | } |
| 1744 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1745 | /* return bits [lo, hi) of word */ |
| 1746 | static u32 |
| 1747 | bits(u32 word, u32 lo, u32 hi) |
| 1748 | { |
| 1749 | if (hi - lo >= 32) |
| 1750 | return word; // avoid undefined behavior with the shift |
| 1751 | |
| 1752 | return (word >> lo) & ((1 << (hi - lo)) - 1); |
| 1753 | } |
| 1754 | |
| 1755 | static void |
Alyssa Rosenzweig | 385a4f7 | 2019-12-24 22:33:47 -0500 | [diff] [blame] | 1756 | pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bool graphics) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1757 | { |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 1758 | pandecode_log(".prefix = {\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1759 | pandecode_indent++; |
| 1760 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1761 | /* Decode invocation_count. See the comment before the definition of |
| 1762 | * invocation_count for an explanation. |
| 1763 | */ |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 1764 | |
Alyssa Rosenzweig | 6378797 | 2019-12-12 11:28:08 -0500 | [diff] [blame] | 1765 | unsigned size_y_shift = bits(p->invocation_shifts, 0, 5); |
| 1766 | unsigned size_z_shift = bits(p->invocation_shifts, 5, 10); |
| 1767 | unsigned workgroups_x_shift = bits(p->invocation_shifts, 10, 16); |
| 1768 | unsigned workgroups_y_shift = bits(p->invocation_shifts, 16, 22); |
| 1769 | unsigned workgroups_z_shift = bits(p->invocation_shifts, 22, 28); |
| 1770 | unsigned workgroups_x_shift_2 = bits(p->invocation_shifts, 28, 32); |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 1771 | |
Alyssa Rosenzweig | 6378797 | 2019-12-12 11:28:08 -0500 | [diff] [blame] | 1772 | unsigned size_x = bits(p->invocation_count, 0, size_y_shift) + 1; |
| 1773 | unsigned size_y = bits(p->invocation_count, size_y_shift, size_z_shift) + 1; |
| 1774 | unsigned size_z = bits(p->invocation_count, size_z_shift, workgroups_x_shift) + 1; |
| 1775 | |
| 1776 | unsigned groups_x = bits(p->invocation_count, workgroups_x_shift, workgroups_y_shift) + 1; |
| 1777 | unsigned groups_y = bits(p->invocation_count, workgroups_y_shift, workgroups_z_shift) + 1; |
| 1778 | unsigned groups_z = bits(p->invocation_count, workgroups_z_shift, 32) + 1; |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 1779 | |
| 1780 | /* Even though we have this decoded, we want to ensure that the |
| 1781 | * representation is "unique" so we don't lose anything by printing only |
| 1782 | * the final result. More specifically, we need to check that we were |
| 1783 | * passed something in canonical form, since the definition per the |
| 1784 | * hardware is inherently not unique. How? Well, take the resulting |
| 1785 | * decode and pack it ourselves! If it is bit exact with what we |
| 1786 | * decoded, we're good to go. */ |
| 1787 | |
| 1788 | struct mali_vertex_tiler_prefix ref; |
Alyssa Rosenzweig | 385a4f7 | 2019-12-24 22:33:47 -0500 | [diff] [blame] | 1789 | panfrost_pack_work_groups_compute(&ref, groups_x, groups_y, groups_z, size_x, size_y, size_z, graphics); |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 1790 | |
| 1791 | bool canonical = |
| 1792 | (p->invocation_count == ref.invocation_count) && |
Alyssa Rosenzweig | 6378797 | 2019-12-12 11:28:08 -0500 | [diff] [blame] | 1793 | (p->invocation_shifts == ref.invocation_shifts); |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 1794 | |
| 1795 | if (!canonical) { |
| 1796 | pandecode_msg("XXX: non-canonical workgroups packing\n"); |
Alyssa Rosenzweig | 6378797 | 2019-12-12 11:28:08 -0500 | [diff] [blame] | 1797 | pandecode_msg("expected: %X, %X", |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 1798 | ref.invocation_count, |
Alyssa Rosenzweig | 6378797 | 2019-12-12 11:28:08 -0500 | [diff] [blame] | 1799 | ref.invocation_shifts); |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 1800 | |
| 1801 | pandecode_prop("invocation_count = 0x%" PRIx32, p->invocation_count); |
Alyssa Rosenzweig | 6378797 | 2019-12-12 11:28:08 -0500 | [diff] [blame] | 1802 | pandecode_prop("size_y_shift = %d", size_y_shift); |
| 1803 | pandecode_prop("size_z_shift = %d", size_z_shift); |
| 1804 | pandecode_prop("workgroups_x_shift = %d", workgroups_x_shift); |
| 1805 | pandecode_prop("workgroups_y_shift = %d", workgroups_y_shift); |
| 1806 | pandecode_prop("workgroups_z_shift = %d", workgroups_z_shift); |
| 1807 | pandecode_prop("workgroups_x_shift_2 = %d", workgroups_x_shift_2); |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | /* Regardless, print the decode */ |
| 1811 | pandecode_msg("size (%d, %d, %d), count (%d, %d, %d)\n", |
| 1812 | size_x, size_y, size_z, |
| 1813 | groups_x, groups_y, groups_z); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1814 | |
| 1815 | /* TODO: Decode */ |
Alyssa Rosenzweig | 2608da1 | 2019-06-19 09:35:57 -0700 | [diff] [blame] | 1816 | if (p->unknown_draw) |
| 1817 | pandecode_prop("unknown_draw = 0x%" PRIx32, p->unknown_draw); |
| 1818 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1819 | pandecode_prop("workgroups_x_shift_3 = 0x%" PRIx32, p->workgroups_x_shift_3); |
| 1820 | |
Alyssa Rosenzweig | d9f3395 | 2019-08-16 13:30:39 -0700 | [diff] [blame] | 1821 | if (p->draw_mode != MALI_DRAW_NONE) |
| 1822 | pandecode_prop("draw_mode = %s", pandecode_draw_mode(p->draw_mode)); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1823 | |
| 1824 | /* Index count only exists for tiler jobs anyway */ |
| 1825 | |
| 1826 | if (p->index_count) |
| 1827 | pandecode_prop("index_count = MALI_POSITIVE(%" PRId32 ")", p->index_count + 1); |
| 1828 | |
Alyssa Rosenzweig | f38ce6e | 2019-08-21 16:06:23 -0700 | [diff] [blame] | 1829 | |
| 1830 | unsigned index_raw_size = (p->unknown_draw & MALI_DRAW_INDEXED_SIZE); |
| 1831 | index_raw_size >>= MALI_DRAW_INDEXED_SHIFT; |
| 1832 | |
| 1833 | /* Validate an index buffer is present if we need one. TODO: verify |
| 1834 | * relationship between invocation_count and index_count */ |
| 1835 | |
| 1836 | if (p->indices) { |
| 1837 | unsigned count = p->index_count; |
| 1838 | |
| 1839 | /* Grab the size */ |
| 1840 | unsigned size = (index_raw_size == 0x3) ? 4 : index_raw_size; |
| 1841 | |
| 1842 | /* Ensure we got a size, and if so, validate the index buffer |
| 1843 | * is large enough to hold a full set of indices of the given |
| 1844 | * size */ |
| 1845 | |
| 1846 | if (!index_raw_size) |
| 1847 | pandecode_msg("XXX: index size missing\n"); |
| 1848 | else |
| 1849 | pandecode_validate_buffer(p->indices, count * size); |
| 1850 | } else if (index_raw_size) |
| 1851 | pandecode_msg("XXX: unexpected index size %u\n", index_raw_size); |
| 1852 | |
Rohan Garg | 16edd56 | 2019-07-17 18:50:13 +0200 | [diff] [blame] | 1853 | if (p->offset_bias_correction) |
| 1854 | pandecode_prop("offset_bias_correction = %d", p->offset_bias_correction); |
Alyssa Rosenzweig | 4fcd318 | 2019-03-31 04:15:46 +0000 | [diff] [blame] | 1855 | |
Alyssa Rosenzweig | c0642eb | 2019-08-20 13:21:28 -0700 | [diff] [blame] | 1856 | /* TODO: Figure out what this is. It's not zero */ |
| 1857 | pandecode_prop("zero1 = 0x%" PRIx32, p->zero1); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1858 | |
| 1859 | pandecode_indent--; |
| 1860 | pandecode_log("},\n"); |
| 1861 | } |
| 1862 | |
| 1863 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 1864 | pandecode_uniform_buffers(mali_ptr pubufs, int ubufs_count, int job_no) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1865 | { |
| 1866 | struct pandecode_mapped_memory *umem = pandecode_find_mapped_gpu_mem_containing(pubufs); |
Alyssa Rosenzweig | 7d3c48f | 2020-02-16 17:01:02 -0500 | [diff] [blame] | 1867 | uint64_t *PANDECODE_PTR_VAR(ubufs, umem, pubufs); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1868 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1869 | for (int i = 0; i < ubufs_count; i++) { |
Alyssa Rosenzweig | 7d3c48f | 2020-02-16 17:01:02 -0500 | [diff] [blame] | 1870 | unsigned size = (ubufs[i] & ((1 << 10) - 1)) * 16; |
| 1871 | mali_ptr addr = (ubufs[i] >> 10) << 2; |
Alyssa Rosenzweig | 4aeb694 | 2019-08-19 15:16:01 -0700 | [diff] [blame] | 1872 | |
| 1873 | pandecode_validate_buffer(addr, size); |
| 1874 | |
Alyssa Rosenzweig | 7d3c48f | 2020-02-16 17:01:02 -0500 | [diff] [blame] | 1875 | char *ptr = pointer_as_memory_reference(addr); |
Alyssa Rosenzweig | 6ec33b4 | 2019-08-21 11:46:06 -0700 | [diff] [blame] | 1876 | pandecode_log("ubuf_%d[%u] = %s;\n", i, size, ptr); |
Alyssa Rosenzweig | 4aeb694 | 2019-08-19 15:16:01 -0700 | [diff] [blame] | 1877 | free(ptr); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1878 | } |
| 1879 | |
Alyssa Rosenzweig | 6ec33b4 | 2019-08-21 11:46:06 -0700 | [diff] [blame] | 1880 | pandecode_log("\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1881 | } |
| 1882 | |
| 1883 | static void |
Alyssa Rosenzweig | ae84f16 | 2019-08-22 11:30:13 -0700 | [diff] [blame] | 1884 | pandecode_uniforms(mali_ptr uniforms, unsigned uniform_count) |
| 1885 | { |
| 1886 | pandecode_validate_buffer(uniforms, uniform_count * 16); |
| 1887 | |
| 1888 | char *ptr = pointer_as_memory_reference(uniforms); |
| 1889 | pandecode_log("vec4 uniforms[%u] = %s;\n", uniform_count, ptr); |
| 1890 | free(ptr); |
| 1891 | } |
| 1892 | |
Alyssa Rosenzweig | 09671c8 | 2019-12-23 11:40:40 -0500 | [diff] [blame] | 1893 | static const char * |
| 1894 | shader_type_for_job(unsigned type) |
| 1895 | { |
| 1896 | switch (type) { |
| 1897 | case JOB_TYPE_VERTEX: return "VERTEX"; |
| 1898 | case JOB_TYPE_TILER: return "FRAGMENT"; |
| 1899 | case JOB_TYPE_COMPUTE: return "COMPUTE"; |
| 1900 | default: |
| 1901 | return "UNKNOWN"; |
| 1902 | } |
| 1903 | } |
| 1904 | |
Alyssa Rosenzweig | c4a4f3d | 2019-08-14 09:19:54 -0700 | [diff] [blame] | 1905 | static unsigned shader_id = 0; |
| 1906 | |
Alyssa Rosenzweig | 58fc260 | 2019-08-21 14:00:46 -0700 | [diff] [blame] | 1907 | static struct midgard_disasm_stats |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1908 | pandecode_shader_disassemble(mali_ptr shader_ptr, int shader_no, int type, |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 1909 | bool is_bifrost, unsigned gpu_id) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1910 | { |
| 1911 | struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(shader_ptr); |
| 1912 | uint8_t *PANDECODE_PTR_VAR(code, mem, shader_ptr); |
| 1913 | |
| 1914 | /* Compute maximum possible size */ |
| 1915 | size_t sz = mem->length - (shader_ptr - mem->gpu_va); |
| 1916 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1917 | /* Print some boilerplate to clearly denote the assembly (which doesn't |
| 1918 | * obey indentation rules), and actually do the disassembly! */ |
| 1919 | |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 1920 | pandecode_log_cont("\n\n"); |
Alyssa Rosenzweig | 50382df | 2019-05-18 18:58:56 +0000 | [diff] [blame] | 1921 | |
Alyssa Rosenzweig | 58fc260 | 2019-08-21 14:00:46 -0700 | [diff] [blame] | 1922 | struct midgard_disasm_stats stats; |
Alyssa Rosenzweig | c4a4f3d | 2019-08-14 09:19:54 -0700 | [diff] [blame] | 1923 | |
Alyssa Rosenzweig | 50382df | 2019-05-18 18:58:56 +0000 | [diff] [blame] | 1924 | if (is_bifrost) { |
Alyssa Rosenzweig | c88f816 | 2020-03-27 22:34:15 -0400 | [diff] [blame] | 1925 | disassemble_bifrost(pandecode_dump_stream, code, sz, true); |
Alyssa Rosenzweig | 58fc260 | 2019-08-21 14:00:46 -0700 | [diff] [blame] | 1926 | |
| 1927 | /* TODO: Extend stats to Bifrost */ |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 1928 | stats.texture_count = -128; |
| 1929 | stats.sampler_count = -128; |
| 1930 | stats.attribute_count = -128; |
| 1931 | stats.varying_count = -128; |
| 1932 | stats.uniform_count = -128; |
| 1933 | stats.uniform_buffer_count = -128; |
| 1934 | stats.work_count = -128; |
Alyssa Rosenzweig | 58fc260 | 2019-08-21 14:00:46 -0700 | [diff] [blame] | 1935 | |
| 1936 | stats.instruction_count = 0; |
| 1937 | stats.bundle_count = 0; |
| 1938 | stats.quadword_count = 0; |
Alyssa Rosenzweig | d6d6d63 | 2019-08-30 17:00:09 -0700 | [diff] [blame] | 1939 | stats.helper_invocations = false; |
Alyssa Rosenzweig | 50382df | 2019-05-18 18:58:56 +0000 | [diff] [blame] | 1940 | } else { |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 1941 | stats = disassemble_midgard(pandecode_dump_stream, |
| 1942 | code, sz, gpu_id, |
Alyssa Rosenzweig | ac14fac | 2019-11-07 09:31:02 -0500 | [diff] [blame] | 1943 | type == JOB_TYPE_TILER ? |
| 1944 | MESA_SHADER_FRAGMENT : MESA_SHADER_VERTEX); |
Alyssa Rosenzweig | 50382df | 2019-05-18 18:58:56 +0000 | [diff] [blame] | 1945 | } |
| 1946 | |
Alyssa Rosenzweig | ead35f5 | 2019-12-23 11:48:23 -0500 | [diff] [blame] | 1947 | /* Print shader-db stats. Skip COMPUTE jobs since they are used for |
| 1948 | * driver-internal purposes with the blob and interfere */ |
Alyssa Rosenzweig | 58fc260 | 2019-08-21 14:00:46 -0700 | [diff] [blame] | 1949 | |
Alyssa Rosenzweig | ead35f5 | 2019-12-23 11:48:23 -0500 | [diff] [blame] | 1950 | bool should_shaderdb = type != JOB_TYPE_COMPUTE; |
Alyssa Rosenzweig | 58fc260 | 2019-08-21 14:00:46 -0700 | [diff] [blame] | 1951 | |
Alyssa Rosenzweig | ead35f5 | 2019-12-23 11:48:23 -0500 | [diff] [blame] | 1952 | if (should_shaderdb) { |
| 1953 | unsigned nr_threads = |
| 1954 | (stats.work_count <= 4) ? 4 : |
| 1955 | (stats.work_count <= 8) ? 2 : |
| 1956 | 1; |
| 1957 | |
Icecream95 | be22c07 | 2020-01-23 10:14:35 +1300 | [diff] [blame] | 1958 | pandecode_log_cont("shader%d - MESA_SHADER_%s shader: " |
Alyssa Rosenzweig | ead35f5 | 2019-12-23 11:48:23 -0500 | [diff] [blame] | 1959 | "%u inst, %u bundles, %u quadwords, " |
Alyssa Rosenzweig | 0cc6e33 | 2019-12-23 11:50:28 -0500 | [diff] [blame] | 1960 | "%u registers, %u threads, 0 loops, 0:0 spills:fills\n\n\n", |
Alyssa Rosenzweig | ead35f5 | 2019-12-23 11:48:23 -0500 | [diff] [blame] | 1961 | shader_id++, |
| 1962 | shader_type_for_job(type), |
| 1963 | stats.instruction_count, stats.bundle_count, stats.quadword_count, |
| 1964 | stats.work_count, nr_threads); |
| 1965 | } |
Alyssa Rosenzweig | 58fc260 | 2019-08-21 14:00:46 -0700 | [diff] [blame] | 1966 | |
| 1967 | |
| 1968 | return stats; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 1969 | } |
| 1970 | |
| 1971 | static void |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 1972 | pandecode_texture(mali_ptr u, |
| 1973 | struct pandecode_mapped_memory *tmem, |
| 1974 | unsigned job_no, unsigned tex) |
| 1975 | { |
| 1976 | struct mali_texture_descriptor *PANDECODE_PTR_VAR(t, tmem, u); |
| 1977 | |
| 1978 | pandecode_log("struct mali_texture_descriptor texture_descriptor_%"PRIx64"_%d_%d = {\n", u, job_no, tex); |
| 1979 | pandecode_indent++; |
| 1980 | |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 1981 | struct mali_texture_format f = t->format; |
| 1982 | |
Alyssa Rosenzweig | 024f9cf | 2019-08-20 14:58:46 -0700 | [diff] [blame] | 1983 | /* See the definiton of enum mali_texture_type */ |
| 1984 | |
Alyssa Rosenzweig | 68b9030 | 2019-08-20 15:46:39 -0700 | [diff] [blame] | 1985 | bool is_cube = f.type == MALI_TEX_CUBE; |
| 1986 | unsigned dimension = is_cube ? 2 : f.type; |
| 1987 | |
| 1988 | pandecode_make_indent(); |
| 1989 | |
| 1990 | /* TODO: Are there others? */ |
| 1991 | bool is_zs = f.format == MALI_Z32_UNORM; |
| 1992 | |
| 1993 | /* Recall Z/S switched the meaning of linear/tiled .. */ |
| 1994 | if (is_zs && f.layout == MALI_TEXTURE_LINEAR) |
| 1995 | pandecode_msg("XXX: depth/stencil cannot be tiled\n"); |
| 1996 | |
| 1997 | /* Print the layout. Default is linear; a modifier can denote AFBC or |
| 1998 | * u-interleaved/tiled modes */ |
| 1999 | |
| 2000 | if (f.layout == MALI_TEXTURE_AFBC) |
| 2001 | pandecode_log_cont("afbc"); |
| 2002 | else if (f.layout == MALI_TEXTURE_TILED) |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 2003 | pandecode_log_cont("tiled"); |
Alyssa Rosenzweig | 68b9030 | 2019-08-20 15:46:39 -0700 | [diff] [blame] | 2004 | else if (f.layout == MALI_TEXTURE_LINEAR) |
| 2005 | pandecode_log_cont("linear"); |
| 2006 | else |
| 2007 | pandecode_msg("XXX: invalid texture layout 0x%X\n", f.layout); |
| 2008 | |
| 2009 | pandecode_swizzle(t->swizzle, f.format); |
| 2010 | pandecode_log_cont(" "); |
| 2011 | |
| 2012 | /* Distinguish cube/2D with modifier */ |
| 2013 | |
| 2014 | if (is_cube) |
| 2015 | pandecode_log_cont("cube "); |
| 2016 | |
| 2017 | pandecode_format_short(f.format, f.srgb); |
| 2018 | pandecode_swizzle(f.swizzle, f.format); |
Alyssa Rosenzweig | 024f9cf | 2019-08-20 14:58:46 -0700 | [diff] [blame] | 2019 | |
| 2020 | /* All four width/height/depth/array_size dimensions are present |
| 2021 | * regardless of the type of texture, but it is an error to have |
| 2022 | * non-zero dimensions for unused dimensions. Verify this. array_size |
| 2023 | * can always be set, as can width. */ |
| 2024 | |
| 2025 | if (t->height && dimension < 2) |
| 2026 | pandecode_msg("XXX: nonzero height for <2D texture\n"); |
| 2027 | |
| 2028 | if (t->depth && dimension < 3) |
| 2029 | pandecode_msg("XXX: nonzero depth for <2D texture\n"); |
| 2030 | |
| 2031 | /* Print only the dimensions that are actually there */ |
| 2032 | |
Alyssa Rosenzweig | 68b9030 | 2019-08-20 15:46:39 -0700 | [diff] [blame] | 2033 | pandecode_log_cont(": %d", t->width + 1); |
Alyssa Rosenzweig | 024f9cf | 2019-08-20 14:58:46 -0700 | [diff] [blame] | 2034 | |
| 2035 | if (dimension >= 2) |
| 2036 | pandecode_log_cont("x%u", t->height + 1); |
| 2037 | |
| 2038 | if (dimension >= 3) |
| 2039 | pandecode_log_cont("x%u", t->depth + 1); |
| 2040 | |
| 2041 | if (t->array_size) |
| 2042 | pandecode_log_cont("[%u]", t->array_size + 1); |
| 2043 | |
Alyssa Rosenzweig | 96f6b8a | 2019-08-20 15:24:18 -0700 | [diff] [blame] | 2044 | if (t->levels) |
| 2045 | pandecode_log_cont(" mip %u", t->levels); |
Alyssa Rosenzweig | 024f9cf | 2019-08-20 14:58:46 -0700 | [diff] [blame] | 2046 | |
Alyssa Rosenzweig | 96f6b8a | 2019-08-20 15:24:18 -0700 | [diff] [blame] | 2047 | pandecode_log_cont("\n"); |
Alyssa Rosenzweig | 024f9cf | 2019-08-20 14:58:46 -0700 | [diff] [blame] | 2048 | |
Alyssa Rosenzweig | 9f15f4d | 2019-08-20 15:36:00 -0700 | [diff] [blame] | 2049 | if (f.unknown1 | f.zero) { |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2050 | pandecode_msg("XXX: texture format zero tripped\n"); |
| 2051 | pandecode_prop("unknown1 = %" PRId32, f.unknown1); |
Alyssa Rosenzweig | 9f15f4d | 2019-08-20 15:36:00 -0700 | [diff] [blame] | 2052 | pandecode_prop("zero = %" PRId32, f.zero); |
| 2053 | } |
| 2054 | |
| 2055 | if (!f.unknown2) { |
| 2056 | pandecode_msg("XXX: expected unknown texture bit set\n"); |
Tomeu Vizoso | 2d5c433 | 2019-12-19 14:02:54 +0100 | [diff] [blame] | 2057 | pandecode_prop("unknown2 = %" PRId32, f.unknown2); |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2058 | } |
| 2059 | |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2060 | if (t->swizzle_zero) { |
| 2061 | pandecode_msg("XXX: swizzle zero tripped\n"); |
| 2062 | pandecode_prop("swizzle_zero = %d", t->swizzle_zero); |
| 2063 | } |
| 2064 | |
| 2065 | if (t->unknown3 | t->unknown3A | t->unknown5 | t->unknown6 | t->unknown7) { |
| 2066 | pandecode_msg("XXX: texture zero tripped\n"); |
| 2067 | pandecode_prop("unknown3 = %" PRId16, t->unknown3); |
| 2068 | pandecode_prop("unknown3A = %" PRId8, t->unknown3A); |
| 2069 | pandecode_prop("unknown5 = 0x%" PRIx32, t->unknown5); |
| 2070 | pandecode_prop("unknown6 = 0x%" PRIx32, t->unknown6); |
| 2071 | pandecode_prop("unknown7 = 0x%" PRIx32, t->unknown7); |
| 2072 | } |
| 2073 | |
| 2074 | pandecode_log(".payload = {\n"); |
| 2075 | pandecode_indent++; |
| 2076 | |
| 2077 | /* A bunch of bitmap pointers follow. |
| 2078 | * We work out the correct number, |
| 2079 | * based on the mipmap/cubemap |
| 2080 | * properties, but dump extra |
| 2081 | * possibilities to futureproof */ |
| 2082 | |
Alyssa Rosenzweig | 4ccd42e | 2019-12-27 12:16:09 -0500 | [diff] [blame] | 2083 | int bitmap_count = t->levels + 1; |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2084 | |
| 2085 | /* Miptree for each face */ |
| 2086 | if (f.type == MALI_TEX_CUBE) |
| 2087 | bitmap_count *= 6; |
Tomeu Vizoso | 255227e | 2020-02-04 08:29:50 +0100 | [diff] [blame] | 2088 | else if (f.type == MALI_TEX_3D && f.layout == MALI_TEXTURE_LINEAR) |
| 2089 | bitmap_count *= (t->depth + 1); |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2090 | |
| 2091 | /* Array of textures */ |
Alyssa Rosenzweig | 4ccd42e | 2019-12-27 12:16:09 -0500 | [diff] [blame] | 2092 | bitmap_count *= (t->array_size + 1); |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2093 | |
| 2094 | /* Stride for each element */ |
Alyssa Rosenzweig | 9f15f4d | 2019-08-20 15:36:00 -0700 | [diff] [blame] | 2095 | if (f.manual_stride) |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2096 | bitmap_count *= 2; |
| 2097 | |
Tomeu Vizoso | ed3eede | 2020-01-02 11:24:19 +0100 | [diff] [blame] | 2098 | mali_ptr *pointers_and_strides = pandecode_fetch_gpu_mem(tmem, |
| 2099 | u + sizeof(*t), sizeof(mali_ptr) * bitmap_count); |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2100 | for (int i = 0; i < bitmap_count; ++i) { |
| 2101 | /* How we dump depends if this is a stride or a pointer */ |
| 2102 | |
Alyssa Rosenzweig | 9f15f4d | 2019-08-20 15:36:00 -0700 | [diff] [blame] | 2103 | if (f.manual_stride && (i & 1)) { |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2104 | /* signed 32-bit snuck in as a 64-bit pointer */ |
Tomeu Vizoso | ed3eede | 2020-01-02 11:24:19 +0100 | [diff] [blame] | 2105 | uint64_t stride_set = pointers_and_strides[i]; |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2106 | uint32_t clamped_stride = stride_set; |
| 2107 | int32_t stride = clamped_stride; |
| 2108 | assert(stride_set == clamped_stride); |
| 2109 | pandecode_log("(mali_ptr) %d /* stride */, \n", stride); |
| 2110 | } else { |
Tomeu Vizoso | ed3eede | 2020-01-02 11:24:19 +0100 | [diff] [blame] | 2111 | char *a = pointer_as_memory_reference(pointers_and_strides[i]); |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2112 | pandecode_log("%s, \n", a); |
| 2113 | free(a); |
| 2114 | } |
| 2115 | } |
| 2116 | |
| 2117 | pandecode_indent--; |
| 2118 | pandecode_log("},\n"); |
| 2119 | |
| 2120 | pandecode_indent--; |
| 2121 | pandecode_log("};\n"); |
| 2122 | } |
| 2123 | |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 2124 | /* 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 */ |
| 2125 | |
| 2126 | static void |
| 2127 | pandecode_shader_prop(const char *name, unsigned claim, signed truth, bool fuzzy) |
| 2128 | { |
| 2129 | /* Nothing to do */ |
| 2130 | if (claim == truth) |
| 2131 | return; |
| 2132 | |
Alyssa Rosenzweig | 5815f33 | 2020-02-25 17:29:55 -0500 | [diff] [blame] | 2133 | if (fuzzy && (truth < 0)) |
| 2134 | pandecode_msg("XXX: fuzzy %s, claimed %d, expected %d\n", name, claim, truth); |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 2135 | |
| 2136 | if ((truth >= 0) && !fuzzy) { |
Alyssa Rosenzweig | f48136e | 2019-08-22 09:02:48 -0700 | [diff] [blame] | 2137 | pandecode_msg("%s: expected %s = %d, claimed %u\n", |
| 2138 | (truth < claim) ? "warn" : "XXX", |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 2139 | name, truth, claim); |
| 2140 | } else if ((claim > -truth) && !fuzzy) { |
| 2141 | pandecode_msg("XXX: expected %s <= %u, claimed %u\n", |
| 2142 | name, -truth, claim); |
| 2143 | } else if (fuzzy && (claim < truth)) |
| 2144 | pandecode_msg("XXX: expected %s >= %u, claimed %u\n", |
| 2145 | name, truth, claim); |
| 2146 | |
| 2147 | pandecode_log(".%s = %" PRId16, name, claim); |
| 2148 | |
| 2149 | if (fuzzy) |
| 2150 | pandecode_log_cont(" /* %u used */", truth); |
| 2151 | |
| 2152 | pandecode_log_cont(",\n"); |
| 2153 | } |
| 2154 | |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2155 | static void |
Tomeu Vizoso | 8e1ae5f | 2019-11-05 15:31:42 +0100 | [diff] [blame] | 2156 | pandecode_blend_shader_disassemble(mali_ptr shader, int job_no, int job_type, |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2157 | bool is_bifrost, unsigned gpu_id) |
Tomeu Vizoso | 8e1ae5f | 2019-11-05 15:31:42 +0100 | [diff] [blame] | 2158 | { |
| 2159 | struct midgard_disasm_stats stats = |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2160 | pandecode_shader_disassemble(shader, job_no, job_type, is_bifrost, gpu_id); |
Tomeu Vizoso | 8e1ae5f | 2019-11-05 15:31:42 +0100 | [diff] [blame] | 2161 | |
| 2162 | bool has_texture = (stats.texture_count > 0); |
| 2163 | bool has_sampler = (stats.sampler_count > 0); |
| 2164 | bool has_attribute = (stats.attribute_count > 0); |
| 2165 | bool has_varying = (stats.varying_count > 0); |
| 2166 | bool has_uniform = (stats.uniform_count > 0); |
| 2167 | bool has_ubo = (stats.uniform_buffer_count > 0); |
| 2168 | |
| 2169 | if (has_texture || has_sampler) |
| 2170 | pandecode_msg("XXX: blend shader accessing textures\n"); |
| 2171 | |
| 2172 | if (has_attribute || has_varying) |
| 2173 | pandecode_msg("XXX: blend shader accessing interstage\n"); |
| 2174 | |
| 2175 | if (has_uniform || has_ubo) |
| 2176 | pandecode_msg("XXX: blend shader accessing uniforms\n"); |
| 2177 | } |
| 2178 | |
| 2179 | static void |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2180 | pandecode_vertex_tiler_postfix_pre( |
| 2181 | const struct mali_vertex_tiler_postfix *p, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2182 | int job_no, enum mali_job_type job_type, |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2183 | char *suffix, bool is_bifrost, unsigned gpu_id) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2184 | { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2185 | struct pandecode_mapped_memory *attr_mem; |
| 2186 | |
| 2187 | /* On Bifrost, since the tiler heap (for tiler jobs) and the scratchpad |
| 2188 | * are the only things actually needed from the FBD, vertex/tiler jobs |
| 2189 | * no longer reference the FBD -- instead, this field points to some |
| 2190 | * info about the scratchpad. |
| 2191 | */ |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2192 | |
| 2193 | struct pandecode_fbd fbd_info = { |
| 2194 | /* Default for Bifrost */ |
| 2195 | .rt_count = 1 |
| 2196 | }; |
| 2197 | |
Alyssa Rosenzweig | 6dc1055 | 2020-02-10 08:47:09 -0500 | [diff] [blame] | 2198 | if (is_bifrost) { |
| 2199 | pandecode_log_cont("\t/* %X %/\n", p->shared_memory & 1); |
| 2200 | pandecode_compute_fbd(p->shared_memory & ~1, job_no); |
| 2201 | } else if (p->shared_memory & MALI_MFBD) |
Alyssa Rosenzweig | 3f5cd44 | 2020-02-28 07:17:53 -0500 | [diff] [blame] | 2202 | fbd_info = pandecode_mfbd_bfr((u64) ((uintptr_t) p->shared_memory) & FBD_MASK, job_no, false, job_type == JOB_TYPE_COMPUTE, false); |
Alyssa Rosenzweig | 0aa5d89 | 2019-06-19 08:41:51 -0700 | [diff] [blame] | 2203 | else if (job_type == JOB_TYPE_COMPUTE) |
Alyssa Rosenzweig | 6dc1055 | 2020-02-10 08:47:09 -0500 | [diff] [blame] | 2204 | pandecode_compute_fbd((u64) (uintptr_t) p->shared_memory, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2205 | else |
Alyssa Rosenzweig | 6dc1055 | 2020-02-10 08:47:09 -0500 | [diff] [blame] | 2206 | fbd_info = pandecode_sfbd((u64) (uintptr_t) p->shared_memory, job_no, false, gpu_id); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2207 | |
| 2208 | int varying_count = 0, attribute_count = 0, uniform_count = 0, uniform_buffer_count = 0; |
| 2209 | int texture_count = 0, sampler_count = 0; |
| 2210 | |
Alyssa Rosenzweig | fa14cdf | 2019-10-27 19:46:21 -0400 | [diff] [blame] | 2211 | if (p->shader) { |
| 2212 | struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(p->shader); |
| 2213 | struct mali_shader_meta *PANDECODE_PTR_VAR(s, smem, p->shader); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2214 | |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 2215 | /* Disassemble ahead-of-time to get stats. Initialize with |
| 2216 | * stats for the missing-shader case so we get validation |
| 2217 | * there, too */ |
| 2218 | |
| 2219 | struct midgard_disasm_stats info = { |
| 2220 | .texture_count = 0, |
| 2221 | .sampler_count = 0, |
| 2222 | .attribute_count = 0, |
| 2223 | .varying_count = 0, |
| 2224 | .work_count = 1, |
| 2225 | |
| 2226 | .uniform_count = -128, |
| 2227 | .uniform_buffer_count = 0 |
| 2228 | }; |
Alyssa Rosenzweig | 9b067d9 | 2019-08-21 14:28:36 -0700 | [diff] [blame] | 2229 | |
| 2230 | if (s->shader & ~0xF) |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2231 | info = pandecode_shader_disassemble(s->shader & ~0xF, job_no, job_type, is_bifrost, gpu_id); |
Alyssa Rosenzweig | 9b067d9 | 2019-08-21 14:28:36 -0700 | [diff] [blame] | 2232 | |
Alyssa Rosenzweig | fa14cdf | 2019-10-27 19:46:21 -0400 | [diff] [blame] | 2233 | pandecode_log("struct mali_shader_meta shader_meta_%"PRIx64"_%d%s = {\n", p->shader, job_no, suffix); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2234 | pandecode_indent++; |
| 2235 | |
| 2236 | /* Save for dumps */ |
| 2237 | attribute_count = s->attribute_count; |
| 2238 | varying_count = s->varying_count; |
| 2239 | texture_count = s->texture_count; |
| 2240 | sampler_count = s->sampler_count; |
| 2241 | |
| 2242 | if (is_bifrost) { |
| 2243 | uniform_count = s->bifrost2.uniform_count; |
| 2244 | uniform_buffer_count = s->bifrost1.uniform_buffer_count; |
| 2245 | } else { |
Alyssa Rosenzweig | d7473e2 | 2019-08-21 14:15:05 -0700 | [diff] [blame] | 2246 | uniform_count = s->midgard1.uniform_count; |
Alyssa Rosenzweig | bd2fc60 | 2019-06-20 16:41:39 -0700 | [diff] [blame] | 2247 | uniform_buffer_count = s->midgard1.uniform_buffer_count; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2248 | } |
| 2249 | |
Alyssa Rosenzweig | 9b067d9 | 2019-08-21 14:28:36 -0700 | [diff] [blame] | 2250 | pandecode_shader_address("shader", s->shader); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2251 | |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 2252 | pandecode_shader_prop("texture_count", s->texture_count, info.texture_count, false); |
| 2253 | pandecode_shader_prop("sampler_count", s->sampler_count, info.sampler_count, false); |
| 2254 | pandecode_shader_prop("attribute_count", s->attribute_count, info.attribute_count, false); |
| 2255 | pandecode_shader_prop("varying_count", s->varying_count, info.varying_count, false); |
| 2256 | pandecode_shader_prop("uniform_buffer_count", |
| 2257 | uniform_buffer_count, |
| 2258 | info.uniform_buffer_count, true); |
| 2259 | |
| 2260 | if (!is_bifrost) { |
| 2261 | pandecode_shader_prop("uniform_count", |
| 2262 | uniform_count, |
| 2263 | info.uniform_count, false); |
| 2264 | |
| 2265 | pandecode_shader_prop("work_count", |
| 2266 | s->midgard1.work_count, info.work_count, false); |
| 2267 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2268 | |
| 2269 | if (is_bifrost) { |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 2270 | pandecode_prop("bifrost1.unk1 = 0x%" PRIx32, s->bifrost1.unk1); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2271 | } else { |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 2272 | bool helpers = s->midgard1.flags_lo & MALI_HELPER_INVOCATIONS; |
| 2273 | s->midgard1.flags_lo &= ~MALI_HELPER_INVOCATIONS; |
Alyssa Rosenzweig | 21a85fd | 2019-08-22 16:36:10 -0700 | [diff] [blame] | 2274 | |
| 2275 | if (helpers != info.helper_invocations) { |
| 2276 | pandecode_msg("XXX: expected helpers %u but got %u\n", |
| 2277 | info.helper_invocations, helpers); |
| 2278 | } |
| 2279 | |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 2280 | pandecode_log(".midgard1.flags_lo = "); |
| 2281 | pandecode_log_decoded_flags(shader_midgard1_flag_lo_info, s->midgard1.flags_lo); |
Alyssa Rosenzweig | 7cccc89 | 2019-04-05 01:17:21 +0000 | [diff] [blame] | 2282 | pandecode_log_cont(",\n"); |
| 2283 | |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 2284 | pandecode_log(".midgard1.flags_hi = "); |
| 2285 | pandecode_log_decoded_flags(shader_midgard1_flag_hi_info, s->midgard1.flags_hi); |
| 2286 | pandecode_log_cont(",\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2287 | } |
| 2288 | |
| 2289 | if (s->depth_units || s->depth_factor) { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2290 | pandecode_prop("depth_factor = %f", s->depth_factor); |
Alyssa Rosenzweig | 7a36c72 | 2019-07-11 07:01:56 -0700 | [diff] [blame] | 2291 | pandecode_prop("depth_units = %f", s->depth_units); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2292 | } |
| 2293 | |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 2294 | if (s->alpha_coverage) { |
| 2295 | bool invert_alpha_coverage = s->alpha_coverage & 0xFFF0; |
| 2296 | uint16_t inverted_coverage = invert_alpha_coverage ? ~s->alpha_coverage : s->alpha_coverage; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2297 | |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 2298 | pandecode_prop("alpha_coverage = %sMALI_ALPHA_COVERAGE(%f)", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2299 | invert_alpha_coverage ? "~" : "", |
| 2300 | MALI_GET_ALPHA_COVERAGE(inverted_coverage)); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2301 | } |
| 2302 | |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 2303 | if (s->unknown2_3 || s->unknown2_4) { |
| 2304 | pandecode_log(".unknown2_3 = "); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2305 | |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 2306 | int unknown2_3 = s->unknown2_3; |
| 2307 | int unknown2_4 = s->unknown2_4; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2308 | |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 2309 | /* We're not quite sure what these flags mean without the depth test, if anything */ |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2310 | |
Boris Brezillon | 2844082 | 2019-11-04 11:57:22 +0100 | [diff] [blame] | 2311 | if (unknown2_3 & (MALI_DEPTH_WRITEMASK | MALI_DEPTH_FUNC_MASK)) { |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 2312 | const char *func = pandecode_func(MALI_GET_DEPTH_FUNC(unknown2_3)); |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 2313 | unknown2_3 &= ~MALI_DEPTH_FUNC_MASK; |
| 2314 | |
| 2315 | pandecode_log_cont("MALI_DEPTH_FUNC(%s) | ", func); |
| 2316 | } |
| 2317 | |
| 2318 | pandecode_log_decoded_flags(u3_flag_info, unknown2_3); |
| 2319 | pandecode_log_cont(",\n"); |
| 2320 | |
| 2321 | pandecode_log(".unknown2_4 = "); |
| 2322 | pandecode_log_decoded_flags(u4_flag_info, unknown2_4); |
| 2323 | pandecode_log_cont(",\n"); |
| 2324 | } |
| 2325 | |
| 2326 | if (s->stencil_mask_front || s->stencil_mask_back) { |
| 2327 | pandecode_prop("stencil_mask_front = 0x%02X", s->stencil_mask_front); |
| 2328 | pandecode_prop("stencil_mask_back = 0x%02X", s->stencil_mask_back); |
| 2329 | } |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2330 | |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2331 | pandecode_stencil("front", &s->stencil_front); |
| 2332 | pandecode_stencil("back", &s->stencil_back); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2333 | |
| 2334 | if (is_bifrost) { |
| 2335 | pandecode_log(".bifrost2 = {\n"); |
| 2336 | pandecode_indent++; |
| 2337 | |
| 2338 | pandecode_prop("unk3 = 0x%" PRIx32, s->bifrost2.unk3); |
| 2339 | pandecode_prop("preload_regs = 0x%" PRIx32, s->bifrost2.preload_regs); |
| 2340 | pandecode_prop("uniform_count = %" PRId32, s->bifrost2.uniform_count); |
| 2341 | pandecode_prop("unk4 = 0x%" PRIx32, s->bifrost2.unk4); |
| 2342 | |
| 2343 | pandecode_indent--; |
| 2344 | pandecode_log("},\n"); |
Alyssa Rosenzweig | b6d46d0 | 2019-06-19 09:31:16 -0700 | [diff] [blame] | 2345 | } else if (s->midgard2.unknown2_7) { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2346 | pandecode_log(".midgard2 = {\n"); |
| 2347 | pandecode_indent++; |
| 2348 | |
| 2349 | pandecode_prop("unknown2_7 = 0x%" PRIx32, s->midgard2.unknown2_7); |
| 2350 | pandecode_indent--; |
| 2351 | pandecode_log("},\n"); |
| 2352 | } |
| 2353 | |
Alyssa Rosenzweig | 50138ab | 2020-02-10 08:56:33 -0500 | [diff] [blame] | 2354 | if (s->padding) { |
| 2355 | pandecode_msg("XXX: shader padding tripped\n"); |
| 2356 | pandecode_prop("padding = 0x%" PRIx32, s->padding); |
| 2357 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2358 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2359 | if (!is_bifrost) { |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 2360 | /* TODO: Blend shaders routing/disasm */ |
Alyssa Rosenzweig | 9ffe061 | 2019-07-12 08:45:51 -0700 | [diff] [blame] | 2361 | union midgard_blend blend = s->blend; |
Tomeu Vizoso | 8e1ae5f | 2019-11-05 15:31:42 +0100 | [diff] [blame] | 2362 | mali_ptr shader = pandecode_midgard_blend(&blend, s->unknown2_3 & MALI_HAS_BLEND_SHADER); |
| 2363 | if (shader & ~0xF) |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2364 | pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2365 | } |
| 2366 | |
| 2367 | pandecode_indent--; |
| 2368 | pandecode_log("};\n"); |
| 2369 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 2370 | /* MRT blend fields are used whenever MFBD is used, with |
| 2371 | * per-RT descriptors */ |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2372 | |
Alyssa Rosenzweig | 65e2eaa | 2020-04-10 00:26:11 -0400 | [diff] [blame^] | 2373 | if (job_type == JOB_TYPE_TILER && (is_bifrost || p->shared_memory & MALI_MFBD)) { |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 2374 | void* blend_base = (void *) (s + 1); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2375 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2376 | for (unsigned i = 0; i < fbd_info.rt_count; i++) { |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 2377 | mali_ptr shader = 0; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2378 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 2379 | if (is_bifrost) |
| 2380 | shader = pandecode_bifrost_blend(blend_base, job_no, i); |
| 2381 | else |
| 2382 | shader = pandecode_midgard_blend_mrt(blend_base, job_no, i); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2383 | |
Tomeu Vizoso | 8e1ae5f | 2019-11-05 15:31:42 +0100 | [diff] [blame] | 2384 | if (shader & ~0xF) |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2385 | pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id); |
Alyssa Rosenzweig | 139708b | 2019-08-21 14:04:05 -0700 | [diff] [blame] | 2386 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2387 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2388 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2389 | } else |
Alyssa Rosenzweig | 5f9a1c7 | 2019-08-21 14:16:32 -0700 | [diff] [blame] | 2390 | pandecode_msg("XXX: missing shader descriptor\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2391 | |
| 2392 | if (p->viewport) { |
| 2393 | struct pandecode_mapped_memory *fmem = pandecode_find_mapped_gpu_mem_containing(p->viewport); |
| 2394 | struct mali_viewport *PANDECODE_PTR_VAR(f, fmem, p->viewport); |
| 2395 | |
Tomeu Vizoso | 75b53a1 | 2019-07-12 16:42:52 +0200 | [diff] [blame] | 2396 | pandecode_log("struct mali_viewport viewport_%"PRIx64"_%d%s = {\n", p->viewport, job_no, suffix); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2397 | pandecode_indent++; |
| 2398 | |
| 2399 | pandecode_prop("clip_minx = %f", f->clip_minx); |
| 2400 | pandecode_prop("clip_miny = %f", f->clip_miny); |
| 2401 | pandecode_prop("clip_minz = %f", f->clip_minz); |
| 2402 | pandecode_prop("clip_maxx = %f", f->clip_maxx); |
| 2403 | pandecode_prop("clip_maxy = %f", f->clip_maxy); |
| 2404 | pandecode_prop("clip_maxz = %f", f->clip_maxz); |
| 2405 | |
| 2406 | /* Only the higher coordinates are MALI_POSITIVE scaled */ |
| 2407 | |
| 2408 | pandecode_prop("viewport0 = { %d, %d }", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2409 | f->viewport0[0], f->viewport0[1]); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2410 | |
| 2411 | pandecode_prop("viewport1 = { MALI_POSITIVE(%d), MALI_POSITIVE(%d) }", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2412 | f->viewport1[0] + 1, f->viewport1[1] + 1); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2413 | |
| 2414 | pandecode_indent--; |
| 2415 | pandecode_log("};\n"); |
| 2416 | } |
| 2417 | |
Alyssa Rosenzweig | ed464e0 | 2019-08-22 13:07:01 -0700 | [diff] [blame] | 2418 | unsigned max_attr_index = 0; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2419 | |
Alyssa Rosenzweig | ed464e0 | 2019-08-22 13:07:01 -0700 | [diff] [blame] | 2420 | if (p->attribute_meta) |
| 2421 | max_attr_index = pandecode_attribute_meta(job_no, attribute_count, p, false, suffix); |
| 2422 | |
| 2423 | if (p->attributes) { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2424 | attr_mem = pandecode_find_mapped_gpu_mem_containing(p->attributes); |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 2425 | pandecode_attributes(attr_mem, p->attributes, job_no, suffix, max_attr_index, false, job_type); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2426 | } |
| 2427 | |
| 2428 | /* Varyings are encoded like attributes but not actually sent; we just |
| 2429 | * pass a zero buffer with the right stride/size set, (or whatever) |
| 2430 | * since the GPU will write to it itself */ |
| 2431 | |
Alyssa Rosenzweig | 9e66ff3 | 2019-07-31 11:52:52 -0700 | [diff] [blame] | 2432 | if (p->varying_meta) { |
| 2433 | varying_count = pandecode_attribute_meta(job_no, varying_count, p, true, suffix); |
| 2434 | } |
| 2435 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2436 | if (p->varyings) { |
| 2437 | attr_mem = pandecode_find_mapped_gpu_mem_containing(p->varyings); |
| 2438 | |
| 2439 | /* Number of descriptors depends on whether there are |
| 2440 | * non-internal varyings */ |
| 2441 | |
Alyssa Rosenzweig | f4678f3 | 2019-08-22 13:27:38 -0700 | [diff] [blame] | 2442 | pandecode_attributes(attr_mem, p->varyings, job_no, suffix, varying_count, true, job_type); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2443 | } |
| 2444 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2445 | if (p->uniform_buffers) { |
Alyssa Rosenzweig | 4aeb694 | 2019-08-19 15:16:01 -0700 | [diff] [blame] | 2446 | if (uniform_buffer_count) |
| 2447 | pandecode_uniform_buffers(p->uniform_buffers, uniform_buffer_count, job_no); |
| 2448 | else |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 2449 | pandecode_msg("warn: UBOs specified but not referenced\n"); |
Alyssa Rosenzweig | 4aeb694 | 2019-08-19 15:16:01 -0700 | [diff] [blame] | 2450 | } else if (uniform_buffer_count) |
| 2451 | pandecode_msg("XXX: UBOs referenced but not specified\n"); |
| 2452 | |
| 2453 | /* We don't want to actually dump uniforms, but we do need to validate |
| 2454 | * that the counts we were given are sane */ |
| 2455 | |
| 2456 | if (p->uniforms) { |
| 2457 | if (uniform_count) |
Alyssa Rosenzweig | ae84f16 | 2019-08-22 11:30:13 -0700 | [diff] [blame] | 2458 | pandecode_uniforms(p->uniforms, uniform_count); |
Alyssa Rosenzweig | 4aeb694 | 2019-08-19 15:16:01 -0700 | [diff] [blame] | 2459 | else |
Alyssa Rosenzweig | cbbf754 | 2019-08-21 14:57:23 -0700 | [diff] [blame] | 2460 | pandecode_msg("warn: Uniforms specified but not referenced\n"); |
Alyssa Rosenzweig | 4aeb694 | 2019-08-19 15:16:01 -0700 | [diff] [blame] | 2461 | } else if (uniform_count) |
Alyssa Rosenzweig | d7473e2 | 2019-08-21 14:15:05 -0700 | [diff] [blame] | 2462 | pandecode_msg("XXX: Uniforms referenced but not specified\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2463 | |
| 2464 | if (p->texture_trampoline) { |
| 2465 | struct pandecode_mapped_memory *mmem = pandecode_find_mapped_gpu_mem_containing(p->texture_trampoline); |
| 2466 | |
| 2467 | if (mmem) { |
| 2468 | mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline); |
| 2469 | |
Tomeu Vizoso | 75b53a1 | 2019-07-12 16:42:52 +0200 | [diff] [blame] | 2470 | pandecode_log("uint64_t texture_trampoline_%"PRIx64"_%d[] = {\n", p->texture_trampoline, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2471 | pandecode_indent++; |
| 2472 | |
| 2473 | for (int tex = 0; tex < texture_count; ++tex) { |
| 2474 | mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline + tex * sizeof(mali_ptr)); |
| 2475 | char *a = pointer_as_memory_reference(*u); |
| 2476 | pandecode_log("%s,\n", a); |
| 2477 | free(a); |
| 2478 | } |
| 2479 | |
| 2480 | pandecode_indent--; |
| 2481 | pandecode_log("};\n"); |
| 2482 | |
| 2483 | /* Now, finally, descend down into the texture descriptor */ |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2484 | for (unsigned tex = 0; tex < texture_count; ++tex) { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2485 | mali_ptr *PANDECODE_PTR_VAR(u, mmem, p->texture_trampoline + tex * sizeof(mali_ptr)); |
| 2486 | struct pandecode_mapped_memory *tmem = pandecode_find_mapped_gpu_mem_containing(*u); |
Alyssa Rosenzweig | 8fc4ca8 | 2019-08-20 14:48:55 -0700 | [diff] [blame] | 2487 | if (tmem) |
| 2488 | pandecode_texture(*u, tmem, job_no, tex); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2489 | } |
| 2490 | } |
| 2491 | } |
| 2492 | |
| 2493 | if (p->sampler_descriptor) { |
| 2494 | struct pandecode_mapped_memory *smem = pandecode_find_mapped_gpu_mem_containing(p->sampler_descriptor); |
| 2495 | |
| 2496 | if (smem) { |
| 2497 | struct mali_sampler_descriptor *s; |
| 2498 | |
| 2499 | mali_ptr d = p->sampler_descriptor; |
| 2500 | |
| 2501 | for (int i = 0; i < sampler_count; ++i) { |
| 2502 | s = pandecode_fetch_gpu_mem(smem, d + sizeof(*s) * i, sizeof(*s)); |
| 2503 | |
Tomeu Vizoso | 75b53a1 | 2019-07-12 16:42:52 +0200 | [diff] [blame] | 2504 | pandecode_log("struct mali_sampler_descriptor sampler_descriptor_%"PRIx64"_%d_%d = {\n", d + sizeof(*s) * i, job_no, i); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2505 | pandecode_indent++; |
| 2506 | |
Alyssa Rosenzweig | cf6cad3 | 2019-07-31 08:50:02 -0700 | [diff] [blame] | 2507 | pandecode_log(".filter_mode = "); |
| 2508 | pandecode_log_decoded_flags(sampler_flag_info, s->filter_mode); |
| 2509 | pandecode_log_cont(",\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2510 | |
| 2511 | pandecode_prop("min_lod = FIXED_16(%f)", DECODE_FIXED_16(s->min_lod)); |
| 2512 | pandecode_prop("max_lod = FIXED_16(%f)", DECODE_FIXED_16(s->max_lod)); |
| 2513 | |
Alyssa Rosenzweig | 046097c | 2019-11-20 09:26:48 -0500 | [diff] [blame] | 2514 | if (s->lod_bias) |
| 2515 | pandecode_prop("lod_bias = FIXED_16(%f)", DECODE_FIXED_16(s->lod_bias)); |
| 2516 | |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 2517 | pandecode_prop("wrap_s = %s", pandecode_wrap_mode(s->wrap_s)); |
| 2518 | pandecode_prop("wrap_t = %s", pandecode_wrap_mode(s->wrap_t)); |
| 2519 | pandecode_prop("wrap_r = %s", pandecode_wrap_mode(s->wrap_r)); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2520 | |
Alyssa Rosenzweig | de077c2 | 2019-12-27 12:56:03 -0500 | [diff] [blame] | 2521 | pandecode_prop("compare_func = %s", pandecode_func(s->compare_func)); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2522 | |
| 2523 | if (s->zero || s->zero2) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 2524 | pandecode_msg("XXX: sampler zero tripped\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2525 | pandecode_prop("zero = 0x%X, 0x%X\n", s->zero, s->zero2); |
| 2526 | } |
| 2527 | |
Alyssa Rosenzweig | 17adcfc | 2019-06-24 09:16:11 -0700 | [diff] [blame] | 2528 | pandecode_prop("seamless_cube_map = %d", s->seamless_cube_map); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2529 | |
| 2530 | pandecode_prop("border_color = { %f, %f, %f, %f }", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2531 | s->border_color[0], |
| 2532 | s->border_color[1], |
| 2533 | s->border_color[2], |
| 2534 | s->border_color[3]); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2535 | |
| 2536 | pandecode_indent--; |
| 2537 | pandecode_log("};\n"); |
| 2538 | } |
| 2539 | } |
| 2540 | } |
| 2541 | } |
| 2542 | |
| 2543 | static void |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 2544 | pandecode_gl_enables(uint32_t gl_enables, int job_type) |
| 2545 | { |
| 2546 | pandecode_log(".gl_enables = "); |
| 2547 | |
| 2548 | pandecode_log_decoded_flags(gl_enable_flag_info, gl_enables); |
| 2549 | |
| 2550 | pandecode_log_cont(",\n"); |
| 2551 | } |
| 2552 | |
| 2553 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2554 | pandecode_vertex_tiler_postfix(const struct mali_vertex_tiler_postfix *p, int job_no, bool is_bifrost) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2555 | { |
Alyssa Rosenzweig | fa14cdf | 2019-10-27 19:46:21 -0400 | [diff] [blame] | 2556 | if (p->shader & 0xF) |
Alyssa Rosenzweig | ddbbb2d | 2019-12-13 10:22:06 -0500 | [diff] [blame] | 2557 | pandecode_msg("warn: shader tagged %X\n", (unsigned) (p->shader & 0xF)); |
Alyssa Rosenzweig | fa14cdf | 2019-10-27 19:46:21 -0400 | [diff] [blame] | 2558 | |
Alyssa Rosenzweig | 740f86c | 2019-08-16 13:28:06 -0700 | [diff] [blame] | 2559 | pandecode_log(".postfix = {\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2560 | pandecode_indent++; |
| 2561 | |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 2562 | pandecode_gl_enables(p->gl_enables, JOB_TYPE_TILER); |
| 2563 | pandecode_prop("instance_shift = 0x%x", p->instance_shift); |
| 2564 | pandecode_prop("instance_odd = 0x%x", p->instance_odd); |
| 2565 | |
| 2566 | if (p->zero4) { |
| 2567 | pandecode_msg("XXX: vertex only zero tripped"); |
| 2568 | pandecode_prop("zero4 = 0x%" PRIx32, p->zero4); |
| 2569 | } |
| 2570 | |
| 2571 | pandecode_prop("offset_start = 0x%x", p->offset_start); |
| 2572 | |
| 2573 | if (p->zero5) { |
| 2574 | pandecode_msg("XXX: vertex only zero tripped"); |
| 2575 | pandecode_prop("zero5 = 0x%" PRIx32, p->zero5); |
| 2576 | } |
| 2577 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2578 | MEMORY_PROP(p, position_varying); |
Alyssa Rosenzweig | 740f86c | 2019-08-16 13:28:06 -0700 | [diff] [blame] | 2579 | MEMORY_PROP(p, occlusion_counter); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2580 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2581 | pandecode_indent--; |
| 2582 | pandecode_log("},\n"); |
| 2583 | } |
| 2584 | |
| 2585 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2586 | pandecode_tiler_heap_meta(mali_ptr gpu_va, int job_no) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2587 | { |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2588 | struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va); |
| 2589 | const struct bifrost_tiler_heap_meta *PANDECODE_PTR_VAR(h, mem, gpu_va); |
| 2590 | |
Tomeu Vizoso | 46e4246 | 2020-04-08 15:58:42 +0200 | [diff] [blame] | 2591 | pandecode_log("struct bifrost_tiler_heap_meta tiler_heap_meta_%"PRIx64"_%d = {\n", gpu_va, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2592 | pandecode_indent++; |
| 2593 | |
| 2594 | if (h->zero) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 2595 | pandecode_msg("XXX: tiler heap zero tripped\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2596 | pandecode_prop("zero = 0x%x", h->zero); |
| 2597 | } |
| 2598 | |
| 2599 | for (int i = 0; i < 12; i++) { |
| 2600 | if (h->zeros[i] != 0) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 2601 | pandecode_msg("XXX: tiler heap zero %d tripped, value %x\n", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2602 | i, h->zeros[i]); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2603 | } |
| 2604 | } |
| 2605 | |
| 2606 | pandecode_prop("heap_size = 0x%x", h->heap_size); |
| 2607 | MEMORY_PROP(h, tiler_heap_start); |
| 2608 | MEMORY_PROP(h, tiler_heap_free); |
| 2609 | |
| 2610 | /* this might point to the beginning of another buffer, when it's |
| 2611 | * really the end of the tiler heap buffer, so we have to be careful |
Alyssa Rosenzweig | 17752ba | 2019-07-18 12:28:56 -0700 | [diff] [blame] | 2612 | * here. but for zero length, we need the same pointer. |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2613 | */ |
Alyssa Rosenzweig | 17752ba | 2019-07-18 12:28:56 -0700 | [diff] [blame] | 2614 | |
| 2615 | if (h->tiler_heap_end == h->tiler_heap_start) { |
| 2616 | MEMORY_PROP(h, tiler_heap_start); |
| 2617 | } else { |
| 2618 | char *a = pointer_as_memory_reference(h->tiler_heap_end - 1); |
| 2619 | pandecode_prop("tiler_heap_end = %s + 1", a); |
| 2620 | free(a); |
| 2621 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2622 | |
| 2623 | pandecode_indent--; |
| 2624 | pandecode_log("};\n"); |
| 2625 | } |
| 2626 | |
| 2627 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2628 | pandecode_tiler_meta(mali_ptr gpu_va, int job_no) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2629 | { |
| 2630 | struct pandecode_mapped_memory *mem = pandecode_find_mapped_gpu_mem_containing(gpu_va); |
| 2631 | const struct bifrost_tiler_meta *PANDECODE_PTR_VAR(t, mem, gpu_va); |
| 2632 | |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2633 | pandecode_tiler_heap_meta(t->tiler_heap_meta, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2634 | |
Tomeu Vizoso | 46e4246 | 2020-04-08 15:58:42 +0200 | [diff] [blame] | 2635 | pandecode_log("struct bifrost_tiler_meta tiler_meta_%"PRIx64"_%d = {\n", gpu_va, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2636 | pandecode_indent++; |
| 2637 | |
| 2638 | if (t->zero0 || t->zero1) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 2639 | pandecode_msg("XXX: tiler meta zero tripped\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2640 | pandecode_prop("zero0 = 0x%" PRIx64, t->zero0); |
| 2641 | pandecode_prop("zero1 = 0x%" PRIx64, t->zero1); |
| 2642 | } |
| 2643 | |
Alyssa Rosenzweig | 7f26bb3 | 2019-06-13 10:25:32 -0700 | [diff] [blame] | 2644 | pandecode_prop("hierarchy_mask = 0x%" PRIx16, t->hierarchy_mask); |
| 2645 | pandecode_prop("flags = 0x%" PRIx16, t->flags); |
| 2646 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2647 | pandecode_prop("width = MALI_POSITIVE(%d)", t->width + 1); |
| 2648 | pandecode_prop("height = MALI_POSITIVE(%d)", t->height + 1); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2649 | |
| 2650 | for (int i = 0; i < 12; i++) { |
| 2651 | if (t->zeros[i] != 0) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 2652 | pandecode_msg("XXX: tiler heap zero %d tripped, value %" PRIx64 "\n", |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2653 | i, t->zeros[i]); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2654 | } |
| 2655 | } |
| 2656 | |
| 2657 | pandecode_indent--; |
| 2658 | pandecode_log("};\n"); |
| 2659 | } |
| 2660 | |
| 2661 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2662 | pandecode_primitive_size(union midgard_primitive_size u, bool constant) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2663 | { |
Alyssa Rosenzweig | 2608da1 | 2019-06-19 09:35:57 -0700 | [diff] [blame] | 2664 | if (u.pointer == 0x0) |
| 2665 | return; |
| 2666 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2667 | pandecode_log(".primitive_size = {\n"); |
| 2668 | pandecode_indent++; |
| 2669 | |
Alyssa Rosenzweig | b517e36 | 2019-03-15 03:21:27 +0000 | [diff] [blame] | 2670 | if (constant) { |
| 2671 | pandecode_prop("constant = %f", u.constant); |
| 2672 | } else { |
| 2673 | MEMORY_PROP((&u), pointer); |
| 2674 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2675 | |
| 2676 | pandecode_indent--; |
| 2677 | pandecode_log("},\n"); |
| 2678 | } |
| 2679 | |
| 2680 | static void |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2681 | pandecode_tiler_only_bfr(const struct bifrost_tiler_only *t, int job_no) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2682 | { |
| 2683 | pandecode_log_cont("{\n"); |
| 2684 | pandecode_indent++; |
| 2685 | |
| 2686 | /* TODO: gl_PointSize on Bifrost */ |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2687 | pandecode_primitive_size(t->primitive_size, true); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2688 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2689 | if (t->zero1 || t->zero2 || t->zero3 || t->zero4 || t->zero5 |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 2690 | || t->zero6) { |
Alyssa Rosenzweig | 89c5370 | 2019-08-20 11:18:46 -0700 | [diff] [blame] | 2691 | pandecode_msg("XXX: tiler only zero tripped\n"); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2692 | pandecode_prop("zero1 = 0x%" PRIx64, t->zero1); |
| 2693 | pandecode_prop("zero2 = 0x%" PRIx64, t->zero2); |
| 2694 | pandecode_prop("zero3 = 0x%" PRIx64, t->zero3); |
| 2695 | pandecode_prop("zero4 = 0x%" PRIx64, t->zero4); |
| 2696 | pandecode_prop("zero5 = 0x%" PRIx64, t->zero5); |
| 2697 | pandecode_prop("zero6 = 0x%" PRIx64, t->zero6); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2698 | } |
| 2699 | |
| 2700 | pandecode_indent--; |
| 2701 | pandecode_log("},\n"); |
| 2702 | } |
| 2703 | |
| 2704 | static int |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2705 | pandecode_vertex_job_bfr(const struct mali_job_descriptor_header *h, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2706 | const struct pandecode_mapped_memory *mem, |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2707 | mali_ptr payload, int job_no, unsigned gpu_id) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2708 | { |
| 2709 | struct bifrost_payload_vertex *PANDECODE_PTR_VAR(v, mem, payload); |
| 2710 | |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2711 | pandecode_vertex_tiler_postfix_pre(&v->postfix, job_no, h->job_type, "", true, gpu_id); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2712 | |
Tomeu Vizoso | 7b10d4e | 2020-04-08 10:55:28 +0200 | [diff] [blame] | 2713 | pandecode_log("struct bifrost_payload_vertex payload_%"PRIx64"_%d = {\n", payload, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2714 | pandecode_indent++; |
| 2715 | |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 2716 | pandecode_vertex_tiler_prefix(&v->prefix, job_no, false); |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2717 | pandecode_vertex_tiler_postfix(&v->postfix, job_no, true); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2718 | |
| 2719 | pandecode_indent--; |
| 2720 | pandecode_log("};\n"); |
| 2721 | |
| 2722 | return sizeof(*v); |
| 2723 | } |
| 2724 | |
| 2725 | static int |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2726 | pandecode_tiler_job_bfr(const struct mali_job_descriptor_header *h, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2727 | const struct pandecode_mapped_memory *mem, |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2728 | mali_ptr payload, int job_no, unsigned gpu_id) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2729 | { |
| 2730 | struct bifrost_payload_tiler *PANDECODE_PTR_VAR(t, mem, payload); |
| 2731 | |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2732 | pandecode_vertex_tiler_postfix_pre(&t->postfix, job_no, h->job_type, "", true, gpu_id); |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2733 | pandecode_tiler_meta(t->tiler.tiler_meta, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2734 | |
Tomeu Vizoso | 46e4246 | 2020-04-08 15:58:42 +0200 | [diff] [blame] | 2735 | pandecode_log("struct bifrost_payload_tiler payload_%"PRIx64"_%d = {\n", payload, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2736 | pandecode_indent++; |
| 2737 | |
Alyssa Rosenzweig | 25ed930 | 2019-08-16 16:22:38 -0700 | [diff] [blame] | 2738 | pandecode_vertex_tiler_prefix(&t->prefix, job_no, false); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2739 | |
| 2740 | pandecode_log(".tiler = "); |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2741 | pandecode_tiler_only_bfr(&t->tiler, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2742 | |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2743 | pandecode_vertex_tiler_postfix(&t->postfix, job_no, true); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2744 | |
| 2745 | pandecode_indent--; |
| 2746 | pandecode_log("};\n"); |
| 2747 | |
| 2748 | return sizeof(*t); |
| 2749 | } |
| 2750 | |
| 2751 | static int |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2752 | pandecode_vertex_or_tiler_job_mdg(const struct mali_job_descriptor_header *h, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2753 | const struct pandecode_mapped_memory *mem, |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2754 | mali_ptr payload, int job_no, unsigned gpu_id) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2755 | { |
| 2756 | struct midgard_payload_vertex_tiler *PANDECODE_PTR_VAR(v, mem, payload); |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 2757 | bool is_graphics = (h->job_type == JOB_TYPE_VERTEX) || (h->job_type == JOB_TYPE_TILER); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2758 | |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2759 | pandecode_vertex_tiler_postfix_pre(&v->postfix, job_no, h->job_type, "", false, gpu_id); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2760 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2761 | pandecode_log("struct midgard_payload_vertex_tiler payload_%d = {\n", job_no); |
| 2762 | pandecode_indent++; |
| 2763 | |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 2764 | pandecode_vertex_tiler_prefix(&v->prefix, job_no, is_graphics); |
| 2765 | pandecode_vertex_tiler_postfix(&v->postfix, job_no, false); |
| 2766 | |
Alyssa Rosenzweig | b517e36 | 2019-03-15 03:21:27 +0000 | [diff] [blame] | 2767 | bool has_primitive_pointer = v->prefix.unknown_draw & MALI_DRAW_VARYING_SIZE; |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2768 | pandecode_primitive_size(v->primitive_size, !has_primitive_pointer); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2769 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2770 | pandecode_indent--; |
| 2771 | pandecode_log("};\n"); |
| 2772 | |
| 2773 | return sizeof(*v); |
| 2774 | } |
| 2775 | |
| 2776 | static int |
Alyssa Rosenzweig | 7103baf | 2019-07-12 08:57:10 -0700 | [diff] [blame] | 2777 | pandecode_fragment_job(const struct pandecode_mapped_memory *mem, |
Alyssa Rosenzweig | 7318b52 | 2019-07-10 10:36:16 -0700 | [diff] [blame] | 2778 | mali_ptr payload, int job_no, |
Tomeu Vizoso | 697f02c | 2019-11-12 12:15:02 +0100 | [diff] [blame] | 2779 | bool is_bifrost, unsigned gpu_id) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2780 | { |
| 2781 | const struct mali_payload_fragment *PANDECODE_PTR_VAR(s, mem, payload); |
| 2782 | |
Alyssa Rosenzweig | 8959364 | 2019-12-16 12:05:45 -0500 | [diff] [blame] | 2783 | bool is_mfbd = s->framebuffer & MALI_MFBD; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2784 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2785 | if (!is_mfbd && is_bifrost) |
| 2786 | pandecode_msg("XXX: Bifrost fragment must use MFBD\n"); |
| 2787 | |
| 2788 | struct pandecode_fbd info; |
| 2789 | |
| 2790 | if (is_mfbd) |
Alyssa Rosenzweig | 3f5cd44 | 2020-02-28 07:17:53 -0500 | [diff] [blame] | 2791 | info = pandecode_mfbd_bfr(s->framebuffer & FBD_MASK, job_no, true, false, is_bifrost); |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2792 | else |
Tomeu Vizoso | 697f02c | 2019-11-12 12:15:02 +0100 | [diff] [blame] | 2793 | info = pandecode_sfbd(s->framebuffer & FBD_MASK, job_no, true, gpu_id); |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2794 | |
| 2795 | /* Compute the tag for the tagged pointer. This contains the type of |
| 2796 | * FBD (MFBD/SFBD), and in the case of an MFBD, information about which |
| 2797 | * additional structures follow the MFBD header (an extra payload or |
| 2798 | * not, as well as a count of render targets) */ |
| 2799 | |
Alyssa Rosenzweig | 8959364 | 2019-12-16 12:05:45 -0500 | [diff] [blame] | 2800 | unsigned expected_tag = is_mfbd ? MALI_MFBD : 0; |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2801 | |
| 2802 | if (is_mfbd) { |
| 2803 | if (info.has_extra) |
| 2804 | expected_tag |= MALI_MFBD_TAG_EXTRA; |
| 2805 | |
| 2806 | expected_tag |= (MALI_POSITIVE(info.rt_count) << 2); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2807 | } |
| 2808 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2809 | if ((s->min_tile_coord | s->max_tile_coord) & ~(MALI_X_COORD_MASK | MALI_Y_COORD_MASK)) { |
| 2810 | pandecode_msg("XXX: unexpected tile coordinate bits\n"); |
| 2811 | pandecode_prop("min_tile_coord = 0x%X\n", s->min_tile_coord); |
| 2812 | pandecode_prop("max_tile_coord = 0x%X\n", s->min_tile_coord); |
| 2813 | } |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2814 | |
Alyssa Rosenzweig | ded9a68 | 2019-08-21 12:29:47 -0700 | [diff] [blame] | 2815 | /* Extract tile coordinates */ |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2816 | |
Alyssa Rosenzweig | ded9a68 | 2019-08-21 12:29:47 -0700 | [diff] [blame] | 2817 | unsigned min_x = MALI_TILE_COORD_X(s->min_tile_coord) << MALI_TILE_SHIFT; |
| 2818 | unsigned min_y = MALI_TILE_COORD_Y(s->min_tile_coord) << MALI_TILE_SHIFT; |
| 2819 | |
| 2820 | unsigned max_x = (MALI_TILE_COORD_X(s->max_tile_coord) + 1) << MALI_TILE_SHIFT; |
| 2821 | unsigned max_y = (MALI_TILE_COORD_Y(s->max_tile_coord) + 1) << MALI_TILE_SHIFT; |
| 2822 | |
| 2823 | /* For the max, we also want the floored (rather than ceiled) version for checking */ |
| 2824 | |
| 2825 | unsigned max_x_f = (MALI_TILE_COORD_X(s->max_tile_coord)) << MALI_TILE_SHIFT; |
| 2826 | unsigned max_y_f = (MALI_TILE_COORD_Y(s->max_tile_coord)) << MALI_TILE_SHIFT; |
| 2827 | |
| 2828 | /* Validate the coordinates are well-ordered */ |
| 2829 | |
| 2830 | if (min_x == max_x) |
| 2831 | pandecode_msg("XXX: empty X coordinates (%u = %u)\n", min_x, max_x); |
| 2832 | else if (min_x > max_x) |
| 2833 | pandecode_msg("XXX: misordered X coordinates (%u > %u)\n", min_x, max_x); |
| 2834 | |
| 2835 | if (min_y == max_y) |
| 2836 | pandecode_msg("XXX: empty X coordinates (%u = %u)\n", min_x, max_x); |
| 2837 | else if (min_y > max_y) |
| 2838 | pandecode_msg("XXX: misordered X coordinates (%u > %u)\n", min_x, max_x); |
| 2839 | |
| 2840 | /* Validate the coordinates fit inside the framebuffer. We use floor, |
| 2841 | * rather than ceil, for the max coordinates, since the tile |
| 2842 | * coordinates for something like an 800x600 framebuffer will actually |
| 2843 | * resolve to 800x608, which would otherwise trigger a Y-overflow */ |
| 2844 | |
| 2845 | if ((min_x > info.width) || (max_x_f > info.width)) |
| 2846 | pandecode_msg("XXX: tile coordinates overflow in X direction\n"); |
| 2847 | |
| 2848 | if ((min_y > info.height) || (max_y_f > info.height)) |
| 2849 | pandecode_msg("XXX: tile coordinates overflow in Y direction\n"); |
| 2850 | |
| 2851 | /* After validation, we print */ |
| 2852 | |
| 2853 | pandecode_log("fragment (%u, %u) ... (%u, %u)\n\n", min_x, min_y, max_x, max_y); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2854 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2855 | /* The FBD is a tagged pointer */ |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2856 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2857 | unsigned tag = (s->framebuffer & ~FBD_MASK); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2858 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 2859 | if (tag != expected_tag) |
| 2860 | pandecode_msg("XXX: expected FBD tag %X but got %X\n", expected_tag, tag); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2861 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2862 | return sizeof(*s); |
| 2863 | } |
| 2864 | |
Alyssa Rosenzweig | 4122f74 | 2020-02-18 07:43:51 -0500 | [diff] [blame] | 2865 | /* Entrypoint to start tracing. jc_gpu_va is the GPU address for the first job |
| 2866 | * in the chain; later jobs are found by walking the chain. Bifrost is, well, |
| 2867 | * if it's bifrost or not. GPU ID is the more finegrained ID (at some point, we |
| 2868 | * might wish to combine this with the bifrost parameter) because some details |
| 2869 | * are model-specific even within a particular architecture. Minimal traces |
| 2870 | * *only* examine the job descriptors, skipping printing entirely if there is |
| 2871 | * no faults, and only descends into the payload if there are faults. This is |
| 2872 | * useful for looking for faults without the overhead of invasive traces. */ |
| 2873 | |
Alyssa Rosenzweig | 5998646 | 2020-02-18 07:46:03 -0500 | [diff] [blame] | 2874 | void |
Alyssa Rosenzweig | 4122f74 | 2020-02-18 07:43:51 -0500 | [diff] [blame] | 2875 | pandecode_jc(mali_ptr jc_gpu_va, bool bifrost, unsigned gpu_id, bool minimal) |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2876 | { |
| 2877 | struct mali_job_descriptor_header *h; |
Alyssa Rosenzweig | 5998646 | 2020-02-18 07:46:03 -0500 | [diff] [blame] | 2878 | unsigned job_descriptor_number = 0; |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2879 | |
| 2880 | do { |
| 2881 | struct pandecode_mapped_memory *mem = |
| 2882 | pandecode_find_mapped_gpu_mem_containing(jc_gpu_va); |
| 2883 | |
| 2884 | void *payload; |
| 2885 | |
| 2886 | h = PANDECODE_PTR(mem, jc_gpu_va, struct mali_job_descriptor_header); |
| 2887 | |
| 2888 | /* On Midgard, for 32-bit jobs except for fragment jobs, the |
| 2889 | * high 32-bits of the 64-bit pointer are reused to store |
| 2890 | * something else. |
| 2891 | */ |
| 2892 | int offset = h->job_descriptor_size == MALI_JOB_32 && |
| 2893 | h->job_type != JOB_TYPE_FRAGMENT ? 4 : 0; |
| 2894 | mali_ptr payload_ptr = jc_gpu_va + sizeof(*h) - offset; |
| 2895 | |
Alyssa Rosenzweig | fa14cdf | 2019-10-27 19:46:21 -0400 | [diff] [blame] | 2896 | payload = pandecode_fetch_gpu_mem(mem, payload_ptr, 256); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2897 | |
| 2898 | int job_no = job_descriptor_number++; |
| 2899 | |
Alyssa Rosenzweig | 4122f74 | 2020-02-18 07:43:51 -0500 | [diff] [blame] | 2900 | /* If the job is good to go, skip it in minimal mode */ |
| 2901 | if (minimal && (h->exception_status == 0x0 || h->exception_status == 0x1)) |
| 2902 | continue; |
| 2903 | |
Tomeu Vizoso | 9bef1f1 | 2019-06-25 09:20:51 +0200 | [diff] [blame] | 2904 | pandecode_log("struct mali_job_descriptor_header job_%"PRIx64"_%d = {\n", jc_gpu_va, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2905 | pandecode_indent++; |
| 2906 | |
Alyssa Rosenzweig | 0d5abfd | 2019-07-12 08:54:49 -0700 | [diff] [blame] | 2907 | pandecode_prop("job_type = %s", pandecode_job_type(h->job_type)); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2908 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2909 | if (h->job_descriptor_size) |
| 2910 | pandecode_prop("job_descriptor_size = %d", h->job_descriptor_size); |
| 2911 | |
Alyssa Rosenzweig | e918dd8 | 2019-08-16 16:36:39 -0700 | [diff] [blame] | 2912 | if (h->exception_status && h->exception_status != 0x1) |
Alyssa Rosenzweig | 358372b | 2019-08-09 16:04:24 -0700 | [diff] [blame] | 2913 | pandecode_prop("exception_status = %x (source ID: 0x%x access: %s exception: 0x%x)", |
Tomeu Vizoso | fa36c19 | 2019-06-25 08:22:30 +0200 | [diff] [blame] | 2914 | h->exception_status, |
| 2915 | (h->exception_status >> 16) & 0xFFFF, |
Alyssa Rosenzweig | 358372b | 2019-08-09 16:04:24 -0700 | [diff] [blame] | 2916 | pandecode_exception_access((h->exception_status >> 8) & 0x3), |
Tomeu Vizoso | fa36c19 | 2019-06-25 08:22:30 +0200 | [diff] [blame] | 2917 | h->exception_status & 0xFF); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2918 | |
| 2919 | if (h->first_incomplete_task) |
| 2920 | pandecode_prop("first_incomplete_task = %d", h->first_incomplete_task); |
| 2921 | |
| 2922 | if (h->fault_pointer) |
| 2923 | pandecode_prop("fault_pointer = 0x%" PRIx64, h->fault_pointer); |
| 2924 | |
| 2925 | if (h->job_barrier) |
| 2926 | pandecode_prop("job_barrier = %d", h->job_barrier); |
| 2927 | |
| 2928 | pandecode_prop("job_index = %d", h->job_index); |
| 2929 | |
| 2930 | if (h->unknown_flags) |
| 2931 | pandecode_prop("unknown_flags = %d", h->unknown_flags); |
| 2932 | |
| 2933 | if (h->job_dependency_index_1) |
| 2934 | pandecode_prop("job_dependency_index_1 = %d", h->job_dependency_index_1); |
| 2935 | |
| 2936 | if (h->job_dependency_index_2) |
| 2937 | pandecode_prop("job_dependency_index_2 = %d", h->job_dependency_index_2); |
| 2938 | |
| 2939 | pandecode_indent--; |
| 2940 | pandecode_log("};\n"); |
| 2941 | |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2942 | switch (h->job_type) { |
Alyssa Rosenzweig | adf716d | 2019-12-05 09:06:53 -0500 | [diff] [blame] | 2943 | case JOB_TYPE_WRITE_VALUE: { |
| 2944 | struct mali_payload_write_value *s = payload; |
| 2945 | pandecode_log("struct mali_payload_write_value payload_%"PRIx64"_%d = {\n", payload_ptr, job_no); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2946 | pandecode_indent++; |
Alyssa Rosenzweig | 9eae950 | 2019-12-04 08:59:29 -0500 | [diff] [blame] | 2947 | MEMORY_PROP(s, address); |
| 2948 | |
Alyssa Rosenzweig | adf716d | 2019-12-05 09:06:53 -0500 | [diff] [blame] | 2949 | if (s->value_descriptor != MALI_WRITE_VALUE_ZERO) { |
Alyssa Rosenzweig | 9eae950 | 2019-12-04 08:59:29 -0500 | [diff] [blame] | 2950 | pandecode_msg("XXX: unknown value descriptor\n"); |
| 2951 | pandecode_prop("value_descriptor = 0x%" PRIX32, s->value_descriptor); |
| 2952 | } |
| 2953 | |
| 2954 | if (s->reserved) { |
| 2955 | pandecode_msg("XXX: set value tripped\n"); |
| 2956 | pandecode_prop("reserved = 0x%" PRIX32, s->reserved); |
| 2957 | } |
| 2958 | |
| 2959 | pandecode_prop("immediate = 0x%" PRIX64, s->immediate); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2960 | pandecode_indent--; |
| 2961 | pandecode_log("};\n"); |
| 2962 | |
| 2963 | break; |
| 2964 | } |
| 2965 | |
| 2966 | case JOB_TYPE_TILER: |
| 2967 | case JOB_TYPE_VERTEX: |
| 2968 | case JOB_TYPE_COMPUTE: |
| 2969 | if (bifrost) { |
| 2970 | if (h->job_type == JOB_TYPE_TILER) |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2971 | pandecode_tiler_job_bfr(h, mem, payload_ptr, job_no, gpu_id); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2972 | else |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2973 | pandecode_vertex_job_bfr(h, mem, payload_ptr, job_no, gpu_id); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2974 | } else |
Tomeu Vizoso | 072207b | 2019-11-07 08:27:53 +0100 | [diff] [blame] | 2975 | pandecode_vertex_or_tiler_job_mdg(h, mem, payload_ptr, job_no, gpu_id); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2976 | |
| 2977 | break; |
| 2978 | |
| 2979 | case JOB_TYPE_FRAGMENT: |
Tomeu Vizoso | 697f02c | 2019-11-12 12:15:02 +0100 | [diff] [blame] | 2980 | pandecode_fragment_job(mem, payload_ptr, job_no, bifrost, gpu_id); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2981 | break; |
| 2982 | |
| 2983 | default: |
| 2984 | break; |
| 2985 | } |
Alyssa Rosenzweig | 65e5c19 | 2019-12-27 13:03:22 -0500 | [diff] [blame] | 2986 | } while ((jc_gpu_va = h->next_job)); |
Alyssa Rosenzweig | f611782 | 2019-02-19 05:50:14 +0000 | [diff] [blame] | 2987 | } |