drm/i915: Update i915_gpu_idle() to manage its own request
authorJohn Harrison <John.C.Harrison@Intel.com>
Fri, 29 May 2015 16:43:35 +0000 (17:43 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 23 Jun 2015 12:02:05 +0000 (14:02 +0200)
Added explicit request creation and submission to the GPU idle code path.

For: VIZ-5115
Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
Reviewed-by: Tomas Elf <tomas.elf@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_gem.c

index 74c3193..1a3a65d 100644 (file)
@@ -3305,11 +3305,23 @@ int i915_gpu_idle(struct drm_device *dev)
        /* Flush everything onto the inactive list. */
        for_each_ring(ring, dev_priv, i) {
                if (!i915.enable_execlists) {
-                       ret = i915_switch_context(ring, ring->default_context);
+                       struct drm_i915_gem_request *req;
+
+                       ret = i915_gem_request_alloc(ring, ring->default_context, &req);
                        if (ret)
                                return ret;
+
+                       ret = i915_switch_context(req->ring, ring->default_context);
+                       if (ret) {
+                               i915_gem_request_cancel(req);
+                               return ret;
+                       }
+
+                       i915_add_request_no_flush(req->ring);
                }
 
+               WARN_ON(ring->outstanding_lazy_request);
+
                ret = intel_ring_idle(ring);
                if (ret)
                        return ret;