Mesa (main): intel/error-decode: printout INSTDONE_GEOM register for Gfx12.5

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Aug 17 08:17:03 UTC 2021


Module: Mesa
Branch: main
Commit: f9e3ae6a019dd8c8fece3f699ae9a66201d1f19d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f9e3ae6a019dd8c8fece3f699ae9a66201d1f19d

Author: Marcin Ślusarz <marcin.slusarz at intel.com>
Date:   Mon Jul 19 17:53:14 2021 +0200

intel/error-decode: printout INSTDONE_GEOM register for Gfx12.5

Signed-off-by: Marcin Ślusarz <marcin.slusarz at intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12392>

---

 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 cf219282358..155e99d7abd 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", &reg);
+         if (matched == 1)
+            print_register(spec, "INSTDONE_GEOM", reg);
+
          matched = sscanf(line, "  INSTDONE1: 0x%08x\n", &reg);
          if (matched == 1)
             print_register(spec, "INSTDONE_1", reg);



More information about the mesa-commit mailing list