Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aca1ebf4 authored by Ville Syrjälä's avatar Ville Syrjälä
Browse files

drm/i915: Move the min_pixclk[] handling to the end of readout



Trying to determine the pixel rate of the pipe can't be done until we
know the clock, which means it can't be done until the encoder
.get_config() hooks have been called. So let's move the min_pixclk[]
stuff to the end of intel_modeset_readout_hw_state() when we actually
have gathered all the required infromation.

Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Mika Kahola <mika.kahola@intel.com>
Cc: Ander Conselvan de Oliveira <ander.conselvan.de.oliveira@intel.com>
Fixes: 565602d7 ("drm/i915: Do not acquire crtc state to check clock during modeset, v4.")
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161220153902.15621-1-ville.syrjala@linux.intel.com


Reviewed-by: default avatarAnder Conselvan de Oliveira <conselvan2@gmail.com>
Reviewed-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
parent 5d5ab2d2
Loading
Loading
Loading
Loading
+16 −16
Original line number Original line Diff line number Diff line
@@ -16901,7 +16901,6 @@ static void intel_modeset_readout_hw_state(struct drm_device *dev)


	for_each_intel_crtc(dev, crtc) {
	for_each_intel_crtc(dev, crtc) {
		struct intel_crtc_state *crtc_state = crtc->config;
		struct intel_crtc_state *crtc_state = crtc->config;
		int pixclk = 0;


		__drm_atomic_helper_crtc_destroy_state(&crtc_state->base);
		__drm_atomic_helper_crtc_destroy_state(&crtc_state->base);
		memset(crtc_state, 0, sizeof(*crtc_state));
		memset(crtc_state, 0, sizeof(*crtc_state));
@@ -16913,23 +16912,9 @@ static void intel_modeset_readout_hw_state(struct drm_device *dev)
		crtc->base.enabled = crtc_state->base.enable;
		crtc->base.enabled = crtc_state->base.enable;
		crtc->active = crtc_state->base.active;
		crtc->active = crtc_state->base.active;


		if (crtc_state->base.active) {
		if (crtc_state->base.active)
			dev_priv->active_crtcs |= 1 << crtc->pipe;
			dev_priv->active_crtcs |= 1 << crtc->pipe;


			if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
				pixclk = ilk_pipe_pixel_rate(crtc_state);
			else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
				pixclk = crtc_state->base.adjusted_mode.crtc_clock;
			else
				WARN_ON(dev_priv->display.modeset_calc_cdclk);

			/* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
			if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
				pixclk = DIV_ROUND_UP(pixclk * 100, 95);
		}

		dev_priv->min_pixclk[crtc->pipe] = pixclk;

		readout_plane_state(crtc);
		readout_plane_state(crtc);


		DRM_DEBUG_KMS("[CRTC:%d:%s] hw state readout: %s\n",
		DRM_DEBUG_KMS("[CRTC:%d:%s] hw state readout: %s\n",
@@ -17002,6 +16987,8 @@ static void intel_modeset_readout_hw_state(struct drm_device *dev)
	}
	}


	for_each_intel_crtc(dev, crtc) {
	for_each_intel_crtc(dev, crtc) {
		int pixclk = 0;

		crtc->base.hwmode = crtc->config->base.adjusted_mode;
		crtc->base.hwmode = crtc->config->base.adjusted_mode;


		memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
		memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
@@ -17029,10 +17016,23 @@ static void intel_modeset_readout_hw_state(struct drm_device *dev)
			 */
			 */
			crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
			crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;


			if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
				pixclk = ilk_pipe_pixel_rate(crtc->config);
			else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
				pixclk = crtc->config->base.adjusted_mode.crtc_clock;
			else
				WARN_ON(dev_priv->display.modeset_calc_cdclk);

			/* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
			if (IS_BROADWELL(dev_priv) && crtc->config->ips_enabled)
				pixclk = DIV_ROUND_UP(pixclk * 100, 95);

			drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
			drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
			update_scanline_offset(crtc);
			update_scanline_offset(crtc);
		}
		}


		dev_priv->min_pixclk[crtc->pipe] = pixclk;

		intel_pipe_config_sanity_check(dev_priv, crtc->config);
		intel_pipe_config_sanity_check(dev_priv, crtc->config);
	}
	}
}
}