From: Chris Wilson Date: Sat, 30 Nov 2019 12:05:03 +0000 (+0000) Subject: drm/i915/gt: Push the flush_pd before the set-context X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f997056d5b17c6b0bdc250d509f384fbd7f8d33a;p=linux.git drm/i915/gt: Push the flush_pd before the set-context 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 Acked-by: Mika Kuoppala Link: https://patchwork.freedesktop.org/patch/msgid/20191130120503.1609483-1-chris@chris-wilson.co.uk --- diff --git a/drivers/gpu/drm/i915/gt/intel_ring_submission.c b/drivers/gpu/drm/i915/gt/intel_ring_submission.c index f977fc27b0016..dcdeef0a776fb 100644 --- a/drivers/gpu/drm/i915/gt/intel_ring_submission.c +++ b/drivers/gpu/drm/i915/gt/intel_ring_submission.c @@ -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;