ac/registers: use better names for disambiguated definitions
[mesa.git] / src / amd / common / ac_debug.c
1 /*
2 * Copyright 2015 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24 #include "ac_debug.h"
25
26 #ifdef HAVE_VALGRIND
27 #include <valgrind.h>
28 #include <memcheck.h>
29 #define VG(x) x
30 #else
31 #define VG(x)
32 #endif
33
34 #include <inttypes.h>
35
36 #include "sid.h"
37 #include "sid_tables.h"
38 #include "util/u_math.h"
39 #include "util/u_memory.h"
40 #include "util/u_string.h"
41
42 #include <assert.h>
43
44 /* Parsed IBs are difficult to read without colors. Use "less -R file" to
45 * read them, or use "aha -b -f file" to convert them to html.
46 */
47 #define COLOR_RESET "\033[0m"
48 #define COLOR_RED "\033[31m"
49 #define COLOR_GREEN "\033[1;32m"
50 #define COLOR_YELLOW "\033[1;33m"
51 #define COLOR_CYAN "\033[1;36m"
52
53 #define INDENT_PKT 8
54
55 struct ac_ib_parser {
56 FILE *f;
57 uint32_t *ib;
58 unsigned num_dw;
59 const int *trace_ids;
60 unsigned trace_id_count;
61 enum chip_class chip_class;
62 ac_debug_addr_callback addr_callback;
63 void *addr_callback_data;
64
65 unsigned cur_dw;
66 };
67
68 static void ac_do_parse_ib(FILE *f, struct ac_ib_parser *ib);
69
70 static void print_spaces(FILE *f, unsigned num)
71 {
72 fprintf(f, "%*s", num, "");
73 }
74
75 static void print_value(FILE *file, uint32_t value, int bits)
76 {
77 /* Guess if it's int or float */
78 if (value <= (1 << 15)) {
79 if (value <= 9)
80 fprintf(file, "%u\n", value);
81 else
82 fprintf(file, "%u (0x%0*x)\n", value, bits / 4, value);
83 } else {
84 float f = uif(value);
85
86 if (fabs(f) < 100000 && f*10 == floor(f*10))
87 fprintf(file, "%.1ff (0x%0*x)\n", f, bits / 4, value);
88 else
89 /* Don't print more leading zeros than there are bits. */
90 fprintf(file, "0x%0*x\n", bits / 4, value);
91 }
92 }
93
94 static void print_named_value(FILE *file, const char *name, uint32_t value,
95 int bits)
96 {
97 print_spaces(file, INDENT_PKT);
98 fprintf(file, COLOR_YELLOW "%s" COLOR_RESET " <- ", name);
99 print_value(file, value, bits);
100 }
101
102 static const struct si_reg *find_register(const struct si_reg *table,
103 unsigned table_size,
104 unsigned offset)
105 {
106 for (unsigned i = 0; i < table_size; i++) {
107 const struct si_reg *reg = &table[i];
108
109 if (reg->offset == offset)
110 return reg;
111 }
112
113 return NULL;
114 }
115
116 void ac_dump_reg(FILE *file, enum chip_class chip_class, unsigned offset,
117 uint32_t value, uint32_t field_mask)
118 {
119 const struct si_reg *reg = NULL;
120
121 if (chip_class >= GFX9)
122 reg = find_register(gfx9_reg_table, ARRAY_SIZE(gfx9_reg_table), offset);
123 else if (chip_class >= GFX8)
124 reg = find_register(gfx8_reg_table, ARRAY_SIZE(gfx8_reg_table), offset);
125 else if (chip_class >= GFX7)
126 reg = find_register(gfx7_reg_table, ARRAY_SIZE(gfx7_reg_table), offset);
127 else
128 reg = find_register(gfx6_reg_table, ARRAY_SIZE(gfx6_reg_table), offset);
129
130 if (reg) {
131 const char *reg_name = sid_strings + reg->name_offset;
132 bool first_field = true;
133
134 print_spaces(file, INDENT_PKT);
135 fprintf(file, COLOR_YELLOW "%s" COLOR_RESET " <- ",
136 reg_name);
137
138 if (!reg->num_fields) {
139 print_value(file, value, 32);
140 return;
141 }
142
143 for (unsigned f = 0; f < reg->num_fields; f++) {
144 const struct si_field *field = sid_fields_table + reg->fields_offset + f;
145 const int *values_offsets = sid_strings_offsets + field->values_offset;
146 uint32_t val = (value & field->mask) >>
147 (ffs(field->mask) - 1);
148
149 if (!(field->mask & field_mask))
150 continue;
151
152 /* Indent the field. */
153 if (!first_field)
154 print_spaces(file,
155 INDENT_PKT + strlen(reg_name) + 4);
156
157 /* Print the field. */
158 fprintf(file, "%s = ", sid_strings + field->name_offset);
159
160 if (val < field->num_values && values_offsets[val] >= 0)
161 fprintf(file, "%s\n", sid_strings + values_offsets[val]);
162 else
163 print_value(file, val,
164 util_bitcount(field->mask));
165
166 first_field = false;
167 }
168 return;
169 }
170
171 print_spaces(file, INDENT_PKT);
172 fprintf(file, COLOR_YELLOW "0x%05x" COLOR_RESET " <- 0x%08x\n", offset, value);
173 }
174
175 static uint32_t ac_ib_get(struct ac_ib_parser *ib)
176 {
177 uint32_t v = 0;
178
179 if (ib->cur_dw < ib->num_dw) {
180 v = ib->ib[ib->cur_dw];
181 #ifdef HAVE_VALGRIND
182 /* Help figure out where garbage data is written to IBs.
183 *
184 * Arguably we should do this already when the IBs are written,
185 * see RADEON_VALGRIND. The problem is that client-requests to
186 * Valgrind have an overhead even when Valgrind isn't running,
187 * and radeon_emit is performance sensitive...
188 */
189 if (VALGRIND_CHECK_VALUE_IS_DEFINED(v))
190 fprintf(ib->f, COLOR_RED "Valgrind: The next DWORD is garbage"
191 COLOR_RESET "\n");
192 #endif
193 fprintf(ib->f, "\n\035#%08x ", v);
194 } else {
195 fprintf(ib->f, "\n\035#???????? ");
196 }
197
198 ib->cur_dw++;
199 return v;
200 }
201
202 static void ac_parse_set_reg_packet(FILE *f, unsigned count, unsigned reg_offset,
203 struct ac_ib_parser *ib)
204 {
205 unsigned reg_dw = ac_ib_get(ib);
206 unsigned reg = ((reg_dw & 0xFFFF) << 2) + reg_offset;
207 unsigned index = reg_dw >> 28;
208 int i;
209
210 if (index != 0) {
211 print_spaces(f, INDENT_PKT);
212 fprintf(f, "INDEX = %u\n", index);
213 }
214
215 for (i = 0; i < count; i++)
216 ac_dump_reg(f, ib->chip_class, reg + i*4, ac_ib_get(ib), ~0);
217 }
218
219 static void ac_parse_packet3(FILE *f, uint32_t header, struct ac_ib_parser *ib,
220 int *current_trace_id)
221 {
222 unsigned first_dw = ib->cur_dw;
223 int count = PKT_COUNT_G(header);
224 unsigned op = PKT3_IT_OPCODE_G(header);
225 const char *predicate = PKT3_PREDICATE(header) ? "(predicate)" : "";
226 int i;
227
228 /* Print the name first. */
229 for (i = 0; i < ARRAY_SIZE(packet3_table); i++)
230 if (packet3_table[i].op == op)
231 break;
232
233 if (i < ARRAY_SIZE(packet3_table)) {
234 const char *name = sid_strings + packet3_table[i].name_offset;
235
236 if (op == PKT3_SET_CONTEXT_REG ||
237 op == PKT3_SET_CONFIG_REG ||
238 op == PKT3_SET_UCONFIG_REG ||
239 op == PKT3_SET_UCONFIG_REG_INDEX ||
240 op == PKT3_SET_SH_REG)
241 fprintf(f, COLOR_CYAN "%s%s" COLOR_CYAN ":\n",
242 name, predicate);
243 else
244 fprintf(f, COLOR_GREEN "%s%s" COLOR_RESET ":\n",
245 name, predicate);
246 } else
247 fprintf(f, COLOR_RED "PKT3_UNKNOWN 0x%x%s" COLOR_RESET ":\n",
248 op, predicate);
249
250 /* Print the contents. */
251 switch (op) {
252 case PKT3_SET_CONTEXT_REG:
253 ac_parse_set_reg_packet(f, count, SI_CONTEXT_REG_OFFSET, ib);
254 break;
255 case PKT3_SET_CONFIG_REG:
256 ac_parse_set_reg_packet(f, count, SI_CONFIG_REG_OFFSET, ib);
257 break;
258 case PKT3_SET_UCONFIG_REG:
259 case PKT3_SET_UCONFIG_REG_INDEX:
260 ac_parse_set_reg_packet(f, count, CIK_UCONFIG_REG_OFFSET, ib);
261 break;
262 case PKT3_SET_SH_REG:
263 ac_parse_set_reg_packet(f, count, SI_SH_REG_OFFSET, ib);
264 break;
265 case PKT3_ACQUIRE_MEM:
266 ac_dump_reg(f, ib->chip_class, R_0301F0_CP_COHER_CNTL, ac_ib_get(ib), ~0);
267 ac_dump_reg(f, ib->chip_class, R_0301F4_CP_COHER_SIZE, ac_ib_get(ib), ~0);
268 ac_dump_reg(f, ib->chip_class, R_030230_CP_COHER_SIZE_HI, ac_ib_get(ib), ~0);
269 ac_dump_reg(f, ib->chip_class, R_0301F8_CP_COHER_BASE, ac_ib_get(ib), ~0);
270 ac_dump_reg(f, ib->chip_class, R_0301E4_CP_COHER_BASE_HI, ac_ib_get(ib), ~0);
271 print_named_value(f, "POLL_INTERVAL", ac_ib_get(ib), 16);
272 break;
273 case PKT3_SURFACE_SYNC:
274 if (ib->chip_class >= GFX7) {
275 ac_dump_reg(f, ib->chip_class, R_0301F0_CP_COHER_CNTL, ac_ib_get(ib), ~0);
276 ac_dump_reg(f, ib->chip_class, R_0301F4_CP_COHER_SIZE, ac_ib_get(ib), ~0);
277 ac_dump_reg(f, ib->chip_class, R_0301F8_CP_COHER_BASE, ac_ib_get(ib), ~0);
278 } else {
279 ac_dump_reg(f, ib->chip_class, R_0085F0_CP_COHER_CNTL, ac_ib_get(ib), ~0);
280 ac_dump_reg(f, ib->chip_class, R_0085F4_CP_COHER_SIZE, ac_ib_get(ib), ~0);
281 ac_dump_reg(f, ib->chip_class, R_0085F8_CP_COHER_BASE, ac_ib_get(ib), ~0);
282 }
283 print_named_value(f, "POLL_INTERVAL", ac_ib_get(ib), 16);
284 break;
285 case PKT3_EVENT_WRITE: {
286 uint32_t event_dw = ac_ib_get(ib);
287 ac_dump_reg(f, ib->chip_class, R_028A90_VGT_EVENT_INITIATOR, event_dw,
288 S_028A90_EVENT_TYPE(~0));
289 print_named_value(f, "EVENT_INDEX", (event_dw >> 8) & 0xf, 4);
290 print_named_value(f, "INV_L2", (event_dw >> 20) & 0x1, 1);
291 if (count > 0) {
292 print_named_value(f, "ADDRESS_LO", ac_ib_get(ib), 32);
293 print_named_value(f, "ADDRESS_HI", ac_ib_get(ib), 16);
294 }
295 break;
296 }
297 case PKT3_EVENT_WRITE_EOP: {
298 uint32_t event_dw = ac_ib_get(ib);
299 ac_dump_reg(f, ib->chip_class, R_028A90_VGT_EVENT_INITIATOR, event_dw,
300 S_028A90_EVENT_TYPE(~0));
301 print_named_value(f, "EVENT_INDEX", (event_dw >> 8) & 0xf, 4);
302 print_named_value(f, "TCL1_VOL_ACTION_ENA", (event_dw >> 12) & 0x1, 1);
303 print_named_value(f, "TC_VOL_ACTION_ENA", (event_dw >> 13) & 0x1, 1);
304 print_named_value(f, "TC_WB_ACTION_ENA", (event_dw >> 15) & 0x1, 1);
305 print_named_value(f, "TCL1_ACTION_ENA", (event_dw >> 16) & 0x1, 1);
306 print_named_value(f, "TC_ACTION_ENA", (event_dw >> 17) & 0x1, 1);
307 print_named_value(f, "ADDRESS_LO", ac_ib_get(ib), 32);
308 uint32_t addr_hi_dw = ac_ib_get(ib);
309 print_named_value(f, "ADDRESS_HI", addr_hi_dw, 16);
310 print_named_value(f, "DST_SEL", (addr_hi_dw >> 16) & 0x3, 2);
311 print_named_value(f, "INT_SEL", (addr_hi_dw >> 24) & 0x7, 3);
312 print_named_value(f, "DATA_SEL", addr_hi_dw >> 29, 3);
313 print_named_value(f, "DATA_LO", ac_ib_get(ib), 32);
314 print_named_value(f, "DATA_HI", ac_ib_get(ib), 32);
315 break;
316 }
317 case PKT3_RELEASE_MEM: {
318 uint32_t event_dw = ac_ib_get(ib);
319 ac_dump_reg(f, ib->chip_class, R_028A90_VGT_EVENT_INITIATOR, event_dw,
320 S_028A90_EVENT_TYPE(~0));
321 print_named_value(f, "EVENT_INDEX", (event_dw >> 8) & 0xf, 4);
322 print_named_value(f, "TCL1_VOL_ACTION_ENA", (event_dw >> 12) & 0x1, 1);
323 print_named_value(f, "TC_VOL_ACTION_ENA", (event_dw >> 13) & 0x1, 1);
324 print_named_value(f, "TC_WB_ACTION_ENA", (event_dw >> 15) & 0x1, 1);
325 print_named_value(f, "TCL1_ACTION_ENA", (event_dw >> 16) & 0x1, 1);
326 print_named_value(f, "TC_ACTION_ENA", (event_dw >> 17) & 0x1, 1);
327 print_named_value(f, "TC_NC_ACTION_ENA", (event_dw >> 19) & 0x1, 1);
328 print_named_value(f, "TC_WC_ACTION_ENA", (event_dw >> 20) & 0x1, 1);
329 print_named_value(f, "TC_MD_ACTION_ENA", (event_dw >> 21) & 0x1, 1);
330 uint32_t sel_dw = ac_ib_get(ib);
331 print_named_value(f, "DST_SEL", (sel_dw >> 16) & 0x3, 2);
332 print_named_value(f, "INT_SEL", (sel_dw >> 24) & 0x7, 3);
333 print_named_value(f, "DATA_SEL", sel_dw >> 29, 3);
334 print_named_value(f, "ADDRESS_LO", ac_ib_get(ib), 32);
335 print_named_value(f, "ADDRESS_HI", ac_ib_get(ib), 32);
336 print_named_value(f, "DATA_LO", ac_ib_get(ib), 32);
337 print_named_value(f, "DATA_HI", ac_ib_get(ib), 32);
338 print_named_value(f, "CTXID", ac_ib_get(ib), 32);
339 break;
340 }
341 case PKT3_WAIT_REG_MEM:
342 print_named_value(f, "OP", ac_ib_get(ib), 32);
343 print_named_value(f, "ADDRESS_LO", ac_ib_get(ib), 32);
344 print_named_value(f, "ADDRESS_HI", ac_ib_get(ib), 32);
345 print_named_value(f, "REF", ac_ib_get(ib), 32);
346 print_named_value(f, "MASK", ac_ib_get(ib), 32);
347 print_named_value(f, "POLL_INTERVAL", ac_ib_get(ib), 16);
348 break;
349 case PKT3_DRAW_INDEX_AUTO:
350 ac_dump_reg(f, ib->chip_class, R_030930_VGT_NUM_INDICES, ac_ib_get(ib), ~0);
351 ac_dump_reg(f, ib->chip_class, R_0287F0_VGT_DRAW_INITIATOR, ac_ib_get(ib), ~0);
352 break;
353 case PKT3_DRAW_INDEX_2:
354 ac_dump_reg(f, ib->chip_class, R_028A78_VGT_DMA_MAX_SIZE, ac_ib_get(ib), ~0);
355 ac_dump_reg(f, ib->chip_class, R_0287E8_VGT_DMA_BASE, ac_ib_get(ib), ~0);
356 ac_dump_reg(f, ib->chip_class, R_0287E4_VGT_DMA_BASE_HI, ac_ib_get(ib), ~0);
357 ac_dump_reg(f, ib->chip_class, R_030930_VGT_NUM_INDICES, ac_ib_get(ib), ~0);
358 ac_dump_reg(f, ib->chip_class, R_0287F0_VGT_DRAW_INITIATOR, ac_ib_get(ib), ~0);
359 break;
360 case PKT3_INDEX_TYPE:
361 ac_dump_reg(f, ib->chip_class, R_028A7C_VGT_DMA_INDEX_TYPE, ac_ib_get(ib), ~0);
362 break;
363 case PKT3_NUM_INSTANCES:
364 ac_dump_reg(f, ib->chip_class, R_030934_VGT_NUM_INSTANCES, ac_ib_get(ib), ~0);
365 break;
366 case PKT3_WRITE_DATA:
367 ac_dump_reg(f, ib->chip_class, R_370_CONTROL, ac_ib_get(ib), ~0);
368 ac_dump_reg(f, ib->chip_class, R_371_DST_ADDR_LO, ac_ib_get(ib), ~0);
369 ac_dump_reg(f, ib->chip_class, R_372_DST_ADDR_HI, ac_ib_get(ib), ~0);
370 /* The payload is written automatically */
371 break;
372 case PKT3_CP_DMA:
373 ac_dump_reg(f, ib->chip_class, R_410_CP_DMA_WORD0, ac_ib_get(ib), ~0);
374 ac_dump_reg(f, ib->chip_class, R_411_CP_DMA_WORD1, ac_ib_get(ib), ~0);
375 ac_dump_reg(f, ib->chip_class, R_412_CP_DMA_WORD2, ac_ib_get(ib), ~0);
376 ac_dump_reg(f, ib->chip_class, R_413_CP_DMA_WORD3, ac_ib_get(ib), ~0);
377 ac_dump_reg(f, ib->chip_class, R_414_COMMAND, ac_ib_get(ib), ~0);
378 break;
379 case PKT3_DMA_DATA:
380 ac_dump_reg(f, ib->chip_class, R_500_DMA_DATA_WORD0, ac_ib_get(ib), ~0);
381 ac_dump_reg(f, ib->chip_class, R_501_SRC_ADDR_LO, ac_ib_get(ib), ~0);
382 ac_dump_reg(f, ib->chip_class, R_502_SRC_ADDR_HI, ac_ib_get(ib), ~0);
383 ac_dump_reg(f, ib->chip_class, R_503_DST_ADDR_LO, ac_ib_get(ib), ~0);
384 ac_dump_reg(f, ib->chip_class, R_504_DST_ADDR_HI, ac_ib_get(ib), ~0);
385 ac_dump_reg(f, ib->chip_class, R_414_COMMAND, ac_ib_get(ib), ~0);
386 break;
387 case PKT3_INDIRECT_BUFFER_SI:
388 case PKT3_INDIRECT_BUFFER_CONST:
389 case PKT3_INDIRECT_BUFFER_CIK: {
390 uint32_t base_lo_dw = ac_ib_get(ib);
391 ac_dump_reg(f, ib->chip_class, R_3F0_IB_BASE_LO, base_lo_dw, ~0);
392 uint32_t base_hi_dw = ac_ib_get(ib);
393 ac_dump_reg(f, ib->chip_class, R_3F1_IB_BASE_HI, base_hi_dw, ~0);
394 uint32_t control_dw = ac_ib_get(ib);
395 ac_dump_reg(f, ib->chip_class, R_3F2_IB_CONTROL, control_dw, ~0);
396
397 if (!ib->addr_callback)
398 break;
399
400 uint64_t addr = ((uint64_t)base_hi_dw << 32) | base_lo_dw;
401 void *data = ib->addr_callback(ib->addr_callback_data, addr);
402 if (!data)
403 break;
404
405 if (G_3F2_CHAIN(control_dw)) {
406 ib->ib = data;
407 ib->num_dw = G_3F2_IB_SIZE(control_dw);
408 ib->cur_dw = 0;
409 return;
410 }
411
412 struct ac_ib_parser ib_recurse;
413 memcpy(&ib_recurse, ib, sizeof(ib_recurse));
414 ib_recurse.ib = data;
415 ib_recurse.num_dw = G_3F2_IB_SIZE(control_dw);
416 ib_recurse.cur_dw = 0;
417 if(ib_recurse.trace_id_count) {
418 if (*current_trace_id == *ib->trace_ids) {
419 ++ib_recurse.trace_ids;
420 --ib_recurse.trace_id_count;
421 } else {
422 ib_recurse.trace_id_count = 0;
423 }
424 }
425
426 fprintf(f, "\n\035>------------------ nested begin ------------------\n");
427 ac_do_parse_ib(f, &ib_recurse);
428 fprintf(f, "\n\035<------------------- nested end -------------------\n");
429 break;
430 }
431 case PKT3_CLEAR_STATE:
432 case PKT3_INCREMENT_DE_COUNTER:
433 case PKT3_PFP_SYNC_ME:
434 break;
435 case PKT3_NOP:
436 if (header == 0xffff1000) {
437 count = -1; /* One dword NOP. */
438 } else if (count == 0 && ib->cur_dw < ib->num_dw &&
439 AC_IS_TRACE_POINT(ib->ib[ib->cur_dw])) {
440 unsigned packet_id = AC_GET_TRACE_POINT_ID(ib->ib[ib->cur_dw]);
441
442 print_spaces(f, INDENT_PKT);
443 fprintf(f, COLOR_RED "Trace point ID: %u\n", packet_id);
444
445 if (!ib->trace_id_count)
446 break; /* tracing was disabled */
447
448 *current_trace_id = packet_id;
449
450 print_spaces(f, INDENT_PKT);
451 if (packet_id < *ib->trace_ids)
452 fprintf(f, COLOR_RED
453 "This trace point was reached by the CP."
454 COLOR_RESET "\n");
455 else if (packet_id == *ib->trace_ids)
456 fprintf(f, COLOR_RED
457 "!!!!! This is the last trace point that "
458 "was reached by the CP !!!!!"
459 COLOR_RESET "\n");
460 else if (packet_id+1 == *ib->trace_ids)
461 fprintf(f, COLOR_RED
462 "!!!!! This is the first trace point that "
463 "was NOT been reached by the CP !!!!!"
464 COLOR_RESET "\n");
465 else
466 fprintf(f, COLOR_RED
467 "!!!!! This trace point was NOT reached "
468 "by the CP !!!!!"
469 COLOR_RESET "\n");
470 break;
471 }
472 break;
473 }
474
475 /* print additional dwords */
476 while (ib->cur_dw <= first_dw + count)
477 ac_ib_get(ib);
478
479 if (ib->cur_dw > first_dw + count + 1)
480 fprintf(f, COLOR_RED "\n!!!!! count in header too low !!!!!"
481 COLOR_RESET "\n");
482 }
483
484 /**
485 * Parse and print an IB into a file.
486 */
487 static void ac_do_parse_ib(FILE *f, struct ac_ib_parser *ib)
488 {
489 int current_trace_id = -1;
490
491 while (ib->cur_dw < ib->num_dw) {
492 uint32_t header = ac_ib_get(ib);
493 unsigned type = PKT_TYPE_G(header);
494
495 switch (type) {
496 case 3:
497 ac_parse_packet3(f, header, ib, &current_trace_id);
498 break;
499 case 2:
500 /* type-2 nop */
501 if (header == 0x80000000) {
502 fprintf(f, COLOR_GREEN "NOP (type 2)" COLOR_RESET "\n");
503 break;
504 }
505 /* fall through */
506 default:
507 fprintf(f, "Unknown packet type %i\n", type);
508 break;
509 }
510 }
511 }
512
513 static void format_ib_output(FILE *f, char *out)
514 {
515 unsigned depth = 0;
516
517 for (;;) {
518 char op = 0;
519
520 if (out[0] == '\n' && out[1] == '\035')
521 out++;
522 if (out[0] == '\035') {
523 op = out[1];
524 out += 2;
525 }
526
527 if (op == '<')
528 depth--;
529
530 unsigned indent = 4 * depth;
531 if (op != '#')
532 indent += 9;
533
534 if (indent)
535 print_spaces(f, indent);
536
537 char *end = util_strchrnul(out, '\n');
538 fwrite(out, end - out, 1, f);
539 fputc('\n', f); /* always end with a new line */
540 if (!*end)
541 break;
542
543 out = end + 1;
544
545 if (op == '>')
546 depth++;
547 }
548 }
549
550 /**
551 * Parse and print an IB into a file.
552 *
553 * \param f file
554 * \param ib_ptr IB
555 * \param num_dw size of the IB
556 * \param chip_class chip class
557 * \param trace_ids the last trace IDs that are known to have been reached
558 * and executed by the CP, typically read from a buffer
559 * \param trace_id_count The number of entries in the trace_ids array.
560 * \param addr_callback Get a mapped pointer of the IB at a given address. Can
561 * be NULL.
562 * \param addr_callback_data user data for addr_callback
563 */
564 void ac_parse_ib_chunk(FILE *f, uint32_t *ib_ptr, int num_dw, const int *trace_ids,
565 unsigned trace_id_count, enum chip_class chip_class,
566 ac_debug_addr_callback addr_callback, void *addr_callback_data)
567 {
568 struct ac_ib_parser ib = {};
569 ib.ib = ib_ptr;
570 ib.num_dw = num_dw;
571 ib.trace_ids = trace_ids;
572 ib.trace_id_count = trace_id_count;
573 ib.chip_class = chip_class;
574 ib.addr_callback = addr_callback;
575 ib.addr_callback_data = addr_callback_data;
576
577 char *out;
578 size_t outsize;
579 FILE *memf = open_memstream(&out, &outsize);
580 ib.f = memf;
581 ac_do_parse_ib(memf, &ib);
582 fclose(memf);
583
584 if (out) {
585 format_ib_output(f, out);
586 free(out);
587 }
588
589 if (ib.cur_dw > ib.num_dw) {
590 printf("\nPacket ends after the end of IB.\n");
591 exit(1);
592 }
593 }
594
595 /**
596 * Parse and print an IB into a file.
597 *
598 * \param f file
599 * \param ib IB
600 * \param num_dw size of the IB
601 * \param chip_class chip class
602 * \param trace_ids the last trace IDs that are known to have been reached
603 * and executed by the CP, typically read from a buffer
604 * \param trace_id_count The number of entries in the trace_ids array.
605 * \param addr_callback Get a mapped pointer of the IB at a given address. Can
606 * be NULL.
607 * \param addr_callback_data user data for addr_callback
608 */
609 void ac_parse_ib(FILE *f, uint32_t *ib, int num_dw, const int *trace_ids,
610 unsigned trace_id_count, const char *name,
611 enum chip_class chip_class, ac_debug_addr_callback addr_callback,
612 void *addr_callback_data)
613 {
614 fprintf(f, "------------------ %s begin ------------------\n", name);
615
616 ac_parse_ib_chunk(f, ib, num_dw, trace_ids, trace_id_count,
617 chip_class, addr_callback, addr_callback_data);
618
619 fprintf(f, "------------------- %s end -------------------\n\n", name);
620 }
621
622 /**
623 * Parse dmesg and return TRUE if a VM fault has been detected.
624 *
625 * \param chip_class chip class
626 * \param old_dmesg_timestamp previous dmesg timestamp parsed at init time
627 * \param out_addr detected VM fault addr
628 */
629 bool ac_vm_fault_occured(enum chip_class chip_class,
630 uint64_t *old_dmesg_timestamp, uint64_t *out_addr)
631 {
632 char line[2000];
633 unsigned sec, usec;
634 int progress = 0;
635 uint64_t dmesg_timestamp = 0;
636 bool fault = false;
637
638 FILE *p = popen("dmesg", "r");
639 if (!p)
640 return false;
641
642 while (fgets(line, sizeof(line), p)) {
643 char *msg, len;
644
645 if (!line[0] || line[0] == '\n')
646 continue;
647
648 /* Get the timestamp. */
649 if (sscanf(line, "[%u.%u]", &sec, &usec) != 2) {
650 static bool hit = false;
651 if (!hit) {
652 fprintf(stderr, "%s: failed to parse line '%s'\n",
653 __func__, line);
654 hit = true;
655 }
656 continue;
657 }
658 dmesg_timestamp = sec * 1000000ull + usec;
659
660 /* If just updating the timestamp. */
661 if (!out_addr)
662 continue;
663
664 /* Process messages only if the timestamp is newer. */
665 if (dmesg_timestamp <= *old_dmesg_timestamp)
666 continue;
667
668 /* Only process the first VM fault. */
669 if (fault)
670 continue;
671
672 /* Remove trailing \n */
673 len = strlen(line);
674 if (len && line[len-1] == '\n')
675 line[len-1] = 0;
676
677 /* Get the message part. */
678 msg = strchr(line, ']');
679 if (!msg)
680 continue;
681 msg++;
682
683 const char *header_line, *addr_line_prefix, *addr_line_format;
684
685 if (chip_class >= GFX9) {
686 /* Match this:
687 * ..: [gfxhub] VMC page fault (src_id:0 ring:158 vm_id:2 pas_id:0)
688 * ..: at page 0x0000000219f8f000 from 27
689 * ..: VM_L2_PROTECTION_FAULT_STATUS:0x0020113C
690 */
691 header_line = "VMC page fault";
692 addr_line_prefix = " at page";
693 addr_line_format = "%"PRIx64;
694 } else {
695 header_line = "GPU fault detected:";
696 addr_line_prefix = "VM_CONTEXT1_PROTECTION_FAULT_ADDR";
697 addr_line_format = "%"PRIX64;
698 }
699
700 switch (progress) {
701 case 0:
702 if (strstr(msg, header_line))
703 progress = 1;
704 break;
705 case 1:
706 msg = strstr(msg, addr_line_prefix);
707 if (msg) {
708 msg = strstr(msg, "0x");
709 if (msg) {
710 msg += 2;
711 if (sscanf(msg, addr_line_format, out_addr) == 1)
712 fault = true;
713 }
714 }
715 progress = 0;
716 break;
717 default:
718 progress = 0;
719 }
720 }
721 pclose(p);
722
723 if (dmesg_timestamp > *old_dmesg_timestamp)
724 *old_dmesg_timestamp = dmesg_timestamp;
725
726 return fault;
727 }
728
729 static int compare_wave(const void *p1, const void *p2)
730 {
731 struct ac_wave_info *w1 = (struct ac_wave_info *)p1;
732 struct ac_wave_info *w2 = (struct ac_wave_info *)p2;
733
734 /* Sort waves according to PC and then SE, SH, CU, etc. */
735 if (w1->pc < w2->pc)
736 return -1;
737 if (w1->pc > w2->pc)
738 return 1;
739 if (w1->se < w2->se)
740 return -1;
741 if (w1->se > w2->se)
742 return 1;
743 if (w1->sh < w2->sh)
744 return -1;
745 if (w1->sh > w2->sh)
746 return 1;
747 if (w1->cu < w2->cu)
748 return -1;
749 if (w1->cu > w2->cu)
750 return 1;
751 if (w1->simd < w2->simd)
752 return -1;
753 if (w1->simd > w2->simd)
754 return 1;
755 if (w1->wave < w2->wave)
756 return -1;
757 if (w1->wave > w2->wave)
758 return 1;
759
760 return 0;
761 }
762
763 /* Return wave information. "waves" should be a large enough array. */
764 unsigned ac_get_wave_info(struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP])
765 {
766 char line[2000];
767 unsigned num_waves = 0;
768
769 FILE *p = popen("umr -O halt_waves -wa", "r");
770 if (!p)
771 return 0;
772
773 if (!fgets(line, sizeof(line), p) ||
774 strncmp(line, "SE", 2) != 0) {
775 pclose(p);
776 return 0;
777 }
778
779 while (fgets(line, sizeof(line), p)) {
780 struct ac_wave_info *w;
781 uint32_t pc_hi, pc_lo, exec_hi, exec_lo;
782
783 assert(num_waves < AC_MAX_WAVES_PER_CHIP);
784 w = &waves[num_waves];
785
786 if (sscanf(line, "%u %u %u %u %u %x %x %x %x %x %x %x",
787 &w->se, &w->sh, &w->cu, &w->simd, &w->wave,
788 &w->status, &pc_hi, &pc_lo, &w->inst_dw0,
789 &w->inst_dw1, &exec_hi, &exec_lo) == 12) {
790 w->pc = ((uint64_t)pc_hi << 32) | pc_lo;
791 w->exec = ((uint64_t)exec_hi << 32) | exec_lo;
792 w->matched = false;
793 num_waves++;
794 }
795 }
796
797 qsort(waves, num_waves, sizeof(struct ac_wave_info), compare_wave);
798
799 pclose(p);
800 return num_waves;
801 }