From c8ff8a66cf814834c650323b8e292baf67cbc646 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Thu, 20 May 2021 06:54:18 +0000 Subject: [PATCH] intel/error-decode: printout more registers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lionel Landwerlin Reviewed-by: Marcin Ĺšlusarz Part-of: --- src/intel/tools/aubinator_error_decode.c | 8 ++++++++ 1 file changed, 8 insertions(+) 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);