]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/i915: Add debugs to distingiush a cd2x update from a full cdclk pll update
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Tue, 15 Oct 2019 19:30:23 +0000 (22:30 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 24 Oct 2019 18:22:25 +0000 (21:22 +0300)
To make the logs a bit less confusing let's toss in some
debug prints to indicate whether the cdclk reprogramming
is going to happen with a single pipe active or whether we
need to turn all pipes off for the duration.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191015193035.25982-2-ville.syrjala@linux.intel.com
Reviewed-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
drivers/gpu/drm/i915/display/intel_cdclk.c

index 3d867963a6d1678dd8e890cadea2af899f0f91c2..6eaebc38ee01dffa20800a8842b0fa6160395af3 100644 (file)
@@ -2343,6 +2343,9 @@ int intel_modeset_calc_cdclk(struct intel_atomic_state *state)
                        return ret;
 
                state->cdclk.pipe = pipe;
+
+               DRM_DEBUG_KMS("Can change cdclk with pipe %c active\n",
+                             pipe_name(pipe));
        } else if (intel_cdclk_needs_modeset(&dev_priv->cdclk.actual,
                                             &state->cdclk.actual)) {
                ret = intel_modeset_all_pipes(state);
@@ -2350,6 +2353,8 @@ int intel_modeset_calc_cdclk(struct intel_atomic_state *state)
                        return ret;
 
                state->cdclk.pipe = INVALID_PIPE;
+
+               DRM_DEBUG_KMS("Modeset required for cdclk change\n");
        }
 
        DRM_DEBUG_KMS("New cdclk calculated to be logical %u kHz, actual %u kHz\n",