From f9e3ae6a019dd8c8fece3f699ae9a66201d1f19d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marcin=20=C5=9Alusarz?= Date: Mon, 19 Jul 2021 17:53:14 +0200 Subject: [PATCH] intel/error-decode: printout INSTDONE_GEOM register for Gfx12.5 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Ślusarz Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/tools/aubinator_error_decode.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/intel/tools/aubinator_error_decode.c b/src/intel/tools/aubinator_error_decode.c index cf21928..155e99d 100644 --- a/src/intel/tools/aubinator_error_decode.c +++ b/src/intel/tools/aubinator_error_decode.c @@ -580,6 +580,10 @@ read_data_file(FILE *file) if (matched == 1) print_register(spec, "ROW_INSTDONE", reg); + matched = sscanf(line, " GEOM_SVGUNIT_INSTDONE[%*d][%*d]: 0x%08x\n", ®); + if (matched == 1) + print_register(spec, "INSTDONE_GEOM", reg); + matched = sscanf(line, " INSTDONE1: 0x%08x\n", ®); if (matched == 1) print_register(spec, "INSTDONE_1", reg); -- 2.7.4