summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/intel/tools/aubinator_error_decode.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/intel/tools/aubinator_error_decode.c b/src/intel/tools/aubinator_error_decode.c
index db880d74a9e..9abd05fd75a 100644
--- a/src/intel/tools/aubinator_error_decode.c
+++ b/src/intel/tools/aubinator_error_decode.c
@@ -540,6 +540,18 @@ read_data_file(FILE *file)
print_register(spec, reg_name, reg);
}
+ matched = sscanf(line, " SC_INSTDONE: 0x%08x\n", &reg);
+ if (matched == 1)
+ print_register(spec, "SC_INSTDONE", reg);
+
+ matched = sscanf(line, " SAMPLER_INSTDONE[%*d][%*d]: 0x%08x\n", &reg);
+ if (matched == 1)
+ print_register(spec, "SAMPLER_INSTDONE", reg);
+
+ matched = sscanf(line, " ROW_INSTDONE[%*d][%*d]: 0x%08x\n", &reg);
+ if (matched == 1)
+ print_register(spec, "ROW_INSTDONE", reg);
+
matched = sscanf(line, " INSTDONE1: 0x%08x\n", &reg);
if (matched == 1)
print_register(spec, "INSTDONE_1", reg);