aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/i915/i915_gem_context.c
diff options
context:
space:
mode:
authorGravatar Chris Wilson <chris@chris-wilson.co.uk> 2016-06-24 14:55:54 +0100
committerGravatar Chris Wilson <chris@chris-wilson.co.uk> 2016-06-24 15:02:44 +0100
commitc7c3c07d16dd51faddeb6ae665d360be030b31b0 (patch)
treed84e1a76f8280ab70f5716c19d74c234511f123a /drivers/gpu/drm/i915/i915_gem_context.c
parentdrm/i915: Move legacy kernel context pinning to intel_ringbuffer.c (diff)
downloadlinux-c7c3c07d16dd51faddeb6ae665d360be030b31b0.tar.gz
linux-c7c3c07d16dd51faddeb6ae665d360be030b31b0.tar.bz2
linux-c7c3c07d16dd51faddeb6ae665d360be030b31b0.zip
drm/i915: Treat kernel context as initialised
The kernel context exists simply as a placeholder and should never be executed with a render context. It does not need the golden render state, as that will always be applied to a user context. By skipping the initialisation we can avoid issues in attempting to program the golden render context when trying to make the hardware idle. v2: Rebase Testcase: igt/drm_module_reload_basic #byt Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=95634 Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1466776558-21516-3-git-send-email-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers/gpu/drm/i915/i915_gem_context.c')
-rw-r--r--drivers/gpu/drm/i915/i915_gem_context.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem_context.c b/drivers/gpu/drm/i915/i915_gem_context.c
index 419d2551dc6b..4f4fd65c558b 100644
--- a/drivers/gpu/drm/i915/i915_gem_context.c
+++ b/drivers/gpu/drm/i915/i915_gem_context.c
@@ -472,13 +472,17 @@ void i915_gem_context_lost(struct drm_i915_private *dev_priv)
i915_gem_context_unpin(engine->last_context, engine);
engine->last_context = NULL;
}
-
- /* Force the GPU state to be reinitialised on enabling */
- dev_priv->kernel_context->engine[engine->id].initialised =
- engine->init_context == NULL;
}
- /* Force the GPU state to be reinitialised on enabling */
+ /* Force the GPU state to be restored on enabling */
+ if (!i915.enable_execlists) {
+ for_each_engine(engine, dev_priv) {
+ struct intel_context *kce =
+ &dev_priv->kernel_context->engine[engine->id];
+
+ kce->initialised = true;
+ }
+ }
dev_priv->kernel_context->remap_slice = ALL_L3_SLICES(dev_priv);
}