drm/i915: Do not use lock all in hsw_trans_edp_pipe_A_crc_wa
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Tue, 4 Apr 2017 13:24:57 +0000 (15:24 +0200)
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Wed, 12 Apr 2017 09:03:25 +0000 (11:03 +0200)
There is no need to acquire all locks here,
doing a commit after forcing a modeset on the affected crtc
is enough. Any other locks needed will be acquired as needed.

Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1491312297-18673-1-git-send-email-maarten.lankhorst@linux.intel.com
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_pipe_crc.c

index 206ee4f0150e7fc339018611b50dbcda7b2205a7..647426c75b0a1f0a51ea8ee1c68bc235d37b398a 100644 (file)
@@ -513,16 +513,20 @@ static void hsw_trans_edp_pipe_A_crc_wa(struct drm_i915_private *dev_priv,
        struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, PIPE_A);
        struct intel_crtc_state *pipe_config;
        struct drm_atomic_state *state;
+       struct drm_modeset_acquire_ctx ctx;
        int ret = 0;
 
-       drm_modeset_lock_all(dev);
+       drm_modeset_acquire_init(&ctx, 0);
+
        state = drm_atomic_state_alloc(dev);
        if (!state) {
                ret = -ENOMEM;
                goto unlock;
        }
 
-       state->acquire_ctx = crtc->base.dev->mode_config.acquire_ctx;
+       state->acquire_ctx = &ctx;
+
+retry:
        pipe_config = intel_atomic_get_crtc_state(state, crtc);
        if (IS_ERR(pipe_config)) {
                ret = PTR_ERR(pipe_config);
@@ -537,10 +541,17 @@ static void hsw_trans_edp_pipe_A_crc_wa(struct drm_i915_private *dev_priv,
        ret = drm_atomic_commit(state);
 
 put_state:
+       if (ret == -EDEADLK) {
+               drm_atomic_state_clear(state);
+               drm_modeset_backoff(&ctx);
+               goto retry;
+       }
+
        drm_atomic_state_put(state);
 unlock:
        WARN(ret, "Toggling workaround to %i returns %i\n", enable, ret);
-       drm_modeset_unlock_all(dev);
+       drm_modeset_drop_locks(&ctx);
+       drm_modeset_acquire_fini(&ctx);
 }
 
 static int ivb_pipe_crc_ctl_reg(struct drm_i915_private *dev_priv,