diff --git a/src/intel/tools/aubinator_error_decode.c b/src/intel/tools/aubinator_error_decode.c index a10265c9b23..cf219282358 100644 --- a/src/intel/tools/aubinator_error_decode.c +++ b/src/intel/tools/aubinator_error_decode.c @@ -564,6 +564,14 @@ read_data_file(FILE *file) if (matched == 1) print_register(spec, "SC_INSTDONE", reg); + matched = sscanf(line, " SC_INSTDONE_EXTRA: 0x%08x\n", ®); + if (matched == 1) + print_register(spec, "SC_INSTDONE_EXTRA", reg); + + matched = sscanf(line, " SC_INSTDONE_EXTRA2: 0x%08x\n", ®); + if (matched == 1) + print_register(spec, "SC_INSTDONE_EXTRA2", reg); + matched = sscanf(line, " SAMPLER_INSTDONE[%*d][%*d]: 0x%08x\n", ®); if (matched == 1) print_register(spec, "SAMPLER_INSTDONE", reg);