intel/error2aub: support older style engine names
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>
Fri, 16 Nov 2018 18:13:36 +0000 (18:13 +0000)
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>
Fri, 8 Mar 2019 11:01:14 +0000 (11:01 +0000)
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Rafael Antognolli <rafael.antognolli@intel.com>
src/intel/tools/error2aub.c

index 33d24164b76f87bd8beabf2fff3624faca028977..e4d985543c24e5c09896b1c21b96fc7c0ba31077 100644 (file)
@@ -208,19 +208,27 @@ engine_from_name(const char *engine_name,
    const struct {
       const char *match;
       enum drm_i915_gem_engine_class engine_class;
+      bool parse_instance;
    } rings[] = {
-      { "rcs", I915_ENGINE_CLASS_RENDER },
-      { "vcs", I915_ENGINE_CLASS_VIDEO },
-      { "vecs", I915_ENGINE_CLASS_VIDEO_ENHANCE },
-      { "bcs", I915_ENGINE_CLASS_COPY },
-      { "global", I915_ENGINE_CLASS_INVALID },
+      { "rcs", I915_ENGINE_CLASS_RENDER, true },
+      { "vcs", I915_ENGINE_CLASS_VIDEO, true },
+      { "vecs", I915_ENGINE_CLASS_VIDEO_ENHANCE, true },
+      { "bcs", I915_ENGINE_CLASS_COPY, true },
+      { "global", I915_ENGINE_CLASS_INVALID, false },
+      { "render command stream", I915_ENGINE_CLASS_RENDER, false },
+      { "blt command stream", I915_ENGINE_CLASS_COPY, false },
+      { "bsd command stream", I915_ENGINE_CLASS_VIDEO, false },
+      { "vebox command stream", I915_ENGINE_CLASS_VIDEO_ENHANCE, false },
       { NULL, I915_ENGINE_CLASS_INVALID },
    }, *r;
 
    for (r = rings; r->match; r++) {
       if (strncasecmp(engine_name, r->match, strlen(r->match)) == 0) {
          *engine_class = r->engine_class;
-         *engine_instance = strtol(engine_name + strlen(r->match), NULL, 10);
+         if (r->parse_instance)
+            *engine_instance = strtol(engine_name + strlen(r->match), NULL, 10);
+         else
+            *engine_instance = 0;
          return;
       }
    }