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

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

drm/i915: Eliminate pll->state usage from bxt_calc_pll_link()



We should be using the DPLL hw state we got from the current crtc state
to determine the corresponding port clock frequency rather than getting
it via the current state programmed into the DPLL.

v2: Rebase due to intel_dpll_id changes

Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20171027193128.14483-5-ville.syrjala@linux.intel.com
parent 0fce04c8
Loading
Loading
Loading
Loading
+5 −12
Original line number Diff line number Diff line
@@ -1423,19 +1423,16 @@ static void hsw_ddi_clock_get(struct intel_encoder *encoder,
	ddi_dotclock_get(pipe_config);
}

static int bxt_calc_pll_link(struct drm_i915_private *dev_priv,
			     enum intel_dpll_id pll_id)
static int bxt_calc_pll_link(struct intel_crtc_state *crtc_state)
{
	struct intel_shared_dpll *pll;
	struct intel_dpll_hw_state *state;
	struct dpll clock;

	/* For DDI ports we always use a shared PLL. */
	if (WARN_ON(pll_id == DPLL_ID_PRIVATE))
	if (WARN_ON(!crtc_state->shared_dpll))
		return 0;

	pll = &dev_priv->shared_dplls[pll_id];
	state = &pll->state.hw_state;
	state = &crtc_state->dpll_hw_state;

	clock.m1 = 2;
	clock.m2 = (state->pll0 & PORT_PLL_M2_MASK) << 22;
@@ -1451,11 +1448,7 @@ static int bxt_calc_pll_link(struct drm_i915_private *dev_priv,
static void bxt_ddi_clock_get(struct intel_encoder *encoder,
			      struct intel_crtc_state *pipe_config)
{
	struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
	enum port port = encoder->port;
	enum intel_dpll_id pll_id = port;

	pipe_config->port_clock = bxt_calc_pll_link(dev_priv, pll_id);
	pipe_config->port_clock = bxt_calc_pll_link(pipe_config);

	ddi_dotclock_get(pipe_config);
}