]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/i915: Fix up the inverse mapping for default ctx->engines[]
authorChris Wilson <chris@chris-wilson.co.uk>
Thu, 8 Aug 2019 11:06:12 +0000 (12:06 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Thu, 8 Aug 2019 14:45:35 +0000 (15:45 +0100)
The order in which we store the engines inside default_engines() for the
legacy ctx->engines[] has to match the legacy I915_EXEC_RING selector
mapping in execbuf::user_map. If we present VCS2 as being the second
instance of the video engine, legacy userspace calls that I915_EXEC_BSD2
and so we need to insert it into the second video slot.

v2: Record the legacy mapping (hopefully we can remove this need in the
future)

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111328
Fixes: 2edda80db3d0 ("drm/i915: Rename engines to match their user interface")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> #v1
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190808110612.23539-2-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/gem/i915_gem_context.c
drivers/gpu/drm/i915/gem/selftests/igt_gem_utils.c
drivers/gpu/drm/i915/gt/intel_engine_types.h
drivers/gpu/drm/i915/gt/intel_engine_user.c
drivers/gpu/drm/i915/gt/intel_gt_types.h
drivers/gpu/drm/i915/gt/selftest_lrc.c
drivers/gpu/drm/i915/gt/selftest_workarounds.c

index 1c5bc21a80ff1818ff345507944e3fe561f39614..b407baaf0014237af5dfcfdb607522b15ea6d5af 100644 (file)
@@ -159,7 +159,7 @@ lookup_user_engine(struct i915_gem_context *ctx,
                if (!engine)
                        return ERR_PTR(-EINVAL);
 
-               idx = engine->id;
+               idx = engine->legacy_idx;
        } else {
                idx = ci->engine_instance;
        }
@@ -279,6 +279,7 @@ static void free_engines_rcu(struct rcu_head *rcu)
 
 static struct i915_gem_engines *default_engines(struct i915_gem_context *ctx)
 {
+       const struct intel_gt *gt = &ctx->i915->gt;
        struct intel_engine_cs *engine;
        struct i915_gem_engines *e;
        enum intel_engine_id id;
@@ -288,7 +289,7 @@ static struct i915_gem_engines *default_engines(struct i915_gem_context *ctx)
                return ERR_PTR(-ENOMEM);
 
        init_rcu_head(&e->rcu);
-       for_each_engine(engine, ctx->i915, id) {
+       for_each_engine(engine, gt, id) {
                struct intel_context *ce;
 
                ce = intel_context_create(ctx, engine);
@@ -298,8 +299,8 @@ static struct i915_gem_engines *default_engines(struct i915_gem_context *ctx)
                }
 
                e->engines[id] = ce;
+               e->num_engines = id + 1;
        }
-       e->num_engines = id;
 
        return e;
 }
index b232e6d2cd921be4944466e6e36f7537ea25e442..93c636aeae730e87edb15474bf7303c017ae8ae8 100644 (file)
@@ -23,7 +23,7 @@ igt_request_alloc(struct i915_gem_context *ctx, struct intel_engine_cs *engine)
         * GGTT space, so do this first before we reserve a seqno for
         * ourselves.
         */
-       ce = i915_gem_context_get_engine(ctx, engine->id);
+       ce = i915_gem_context_get_engine(ctx, engine->legacy_idx);
        if (IS_ERR(ce))
                return ERR_CAST(ce);
 
index dacaa707c7978a42d8720cbc8d5452b7d1b3790d..c79fd1dafa885e92b86da6bdf6f2ad94b9fb7b5c 100644 (file)
@@ -264,8 +264,11 @@ struct intel_engine_cs {
        char name[INTEL_ENGINE_CS_MAX_NAME];
 
        enum intel_engine_id id;
+       enum intel_engine_id legacy_idx;
+
        unsigned int hw_id;
        unsigned int guc_id;
+
        intel_engine_mask_t mask;
 
        u8 class;
index c41ae05988a58e61213556beb2c510eb2f0e4071..77cd5de8393001a2c77b69cdd95b7b758932764e 100644 (file)
@@ -142,8 +142,57 @@ const char *intel_engine_class_repr(u8 class)
        return uabi_names[class];
 }
 
+struct legacy_ring {
+       struct intel_gt *gt;
+       u8 class;
+       u8 instance;
+};
+
+static int legacy_ring_idx(const struct legacy_ring *ring)
+{
+       static const struct {
+               u8 base, max;
+       } map[] = {
+               [RENDER_CLASS] = { RCS0, 1 },
+               [COPY_ENGINE_CLASS] = { BCS0, 1 },
+               [VIDEO_DECODE_CLASS] = { VCS0, I915_MAX_VCS },
+               [VIDEO_ENHANCEMENT_CLASS] = { VECS0, I915_MAX_VECS },
+       };
+
+       if (GEM_DEBUG_WARN_ON(ring->class >= ARRAY_SIZE(map)))
+               return -1;
+
+       if (GEM_DEBUG_WARN_ON(ring->instance >= map[ring->class].max))
+               return -1;
+
+       return map[ring->class].base + ring->instance;
+}
+
+static void add_legacy_ring(struct legacy_ring *ring,
+                           struct intel_engine_cs *engine)
+{
+       int idx;
+
+       if (engine->gt != ring->gt || engine->class != ring->class) {
+               ring->gt = engine->gt;
+               ring->class = engine->class;
+               ring->instance = 0;
+       }
+
+       idx = legacy_ring_idx(ring);
+       if (unlikely(idx == -1))
+               return;
+
+       GEM_BUG_ON(idx >= ARRAY_SIZE(ring->gt->engine));
+       ring->gt->engine[idx] = engine;
+       ring->instance++;
+
+       engine->legacy_idx = idx;
+}
+
 void intel_engines_driver_register(struct drm_i915_private *i915)
 {
+       struct legacy_ring ring = {};
        u8 uabi_instances[4] = {};
        struct list_head *it, *next;
        struct rb_node **p, *prev;
@@ -179,6 +228,9 @@ void intel_engines_driver_register(struct drm_i915_private *i915)
                                                    engine->uabi_class,
                                                    engine->uabi_instance) != engine);
 
+               /* Fix up the mapping to match default execbuf::user_map[] */
+               add_legacy_ring(&ring, engine);
+
                prev = &engine->uabi_node;
                p = &prev->rb_right;
        }
index 5fd11e361d03ef8f3bbb9a93e4463fb00f7dc4bb..789102f4f46bc7b369ef226c0a313981f076a363 100644 (file)
@@ -78,6 +78,7 @@ struct intel_gt {
 
        u32 pm_guc_events;
 
+       struct intel_engine_cs *engine[I915_NUM_ENGINES];
        struct intel_engine_cs *engine_class[MAX_ENGINE_CLASS + 1]
                                            [MAX_ENGINE_INSTANCE + 1];
 };
index b26225751a54c4ba9c5e16dc674af4ea066c65af..91f1c901248993e6b51e2ad4b893c09b83e00a27 100644 (file)
@@ -490,7 +490,7 @@ spinner_create_request(struct igt_spinner *spin,
        struct intel_context *ce;
        struct i915_request *rq;
 
-       ce = i915_gem_context_get_engine(ctx, engine->id);
+       ce = i915_gem_context_get_engine(ctx, engine->legacy_idx);
        if (IS_ERR(ce))
                return ERR_CAST(ce);
 
index 5efd2bb89d5fbf4c2dd168352d780d4ca0a950e6..eb5da01d0a08297c18cc9f0aa71c2e1c46c80b33 100644 (file)
@@ -250,7 +250,7 @@ switch_to_scratch_context(struct intel_engine_cs *engine,
 
        GEM_BUG_ON(i915_gem_context_is_bannable(ctx));
 
-       ce = i915_gem_context_get_engine(ctx, engine->id);
+       ce = i915_gem_context_get_engine(ctx, engine->legacy_idx);
        GEM_BUG_ON(IS_ERR(ce));
 
        rq = ERR_PTR(-ENODEV);