OSDN Git Service

drm/i915/gt: Push the flush_pd before the set-context
authorChris Wilson <chris@chris-wilson.co.uk>
Sat, 30 Nov 2019 12:05:03 +0000 (12:05 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Sat, 30 Nov 2019 15:25:25 +0000 (15:25 +0000)
Move our "wait for the PD load to complete" paranoia before the
MI_SET_CONTEXT just in case the context restore tries to access local
addresses.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191130120503.1609483-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/gt/intel_ring_submission.c

index f977fc2..dcdeef0 100644 (file)
@@ -1591,24 +1591,11 @@ static int switch_context(struct i915_request *rq)
        GEM_BUG_ON(HAS_EXECLISTS(rq->i915));
 
        if (vm) {
-               ret = load_pd_dir(rq, i915_vm_to_ppgtt(vm));
-               if (ret)
-                       return ret;
-       }
-
-       if (ce->state) {
-               GEM_BUG_ON(rq->engine->id != RCS0);
-
-               if (!rq->engine->default_state)
-                       hw_flags = MI_RESTORE_INHIBIT;
+               struct intel_engine_cs *engine = rq->engine;
 
-               ret = mi_set_context(rq, hw_flags);
+               ret = load_pd_dir(rq, i915_vm_to_ppgtt(vm));
                if (ret)
                        return ret;
-       }
-
-       if (vm) {
-               struct intel_engine_cs *engine = rq->engine;
 
                ret = engine->emit_flush(rq, EMIT_INVALIDATE);
                if (ret)
@@ -1635,6 +1622,17 @@ static int switch_context(struct i915_request *rq)
                        return ret;
        }
 
+       if (ce->state) {
+               GEM_BUG_ON(rq->engine->id != RCS0);
+
+               if (!rq->engine->default_state)
+                       hw_flags = MI_RESTORE_INHIBIT;
+
+               ret = mi_set_context(rq, hw_flags);
+               if (ret)
+                       return ret;
+       }
+
        ret = remap_l3(rq);
        if (ret)
                return ret;