Commit a73477f8 authored by Dave Airlie's avatar Dave Airlie Committed by Jani Nikula
Browse files

drm/i915: constify the dpll clock vtable

parent 0a108bca
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6833,10 +6833,10 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state,
		crtc_state->update_wm_post = true;

	if (mode_changed && crtc_state->hw.enable &&
	    dev_priv->dpll_funcs.crtc_compute_clock &&
	    dev_priv->dpll_funcs &&
	    !crtc_state->bigjoiner_slave &&
	    !drm_WARN_ON(&dev_priv->drm, crtc_state->shared_dpll)) {
		ret = dev_priv->dpll_funcs.crtc_compute_clock(crtc_state);
		ret = dev_priv->dpll_funcs->crtc_compute_clock(crtc_state);
		if (ret)
			return ret;
	}
@@ -8863,7 +8863,7 @@ static void intel_modeset_clear_plls(struct intel_atomic_state *state)
	struct intel_crtc *crtc;
	int i;

	if (!dev_priv->dpll_funcs.crtc_compute_clock)
	if (!dev_priv->dpll_funcs)
		return;

	for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
+40 −8
Original line number Diff line number Diff line
@@ -1365,25 +1365,57 @@ static int i8xx_crtc_compute_clock(struct intel_crtc_state *crtc_state)
	return 0;
}

static const struct intel_dpll_funcs hsw_dpll_funcs = {
	.crtc_compute_clock = hsw_crtc_compute_clock,
};

static const struct intel_dpll_funcs ilk_dpll_funcs = {
	.crtc_compute_clock = ilk_crtc_compute_clock,
};

static const struct intel_dpll_funcs chv_dpll_funcs = {
	.crtc_compute_clock = chv_crtc_compute_clock,
};

static const struct intel_dpll_funcs vlv_dpll_funcs = {
	.crtc_compute_clock = vlv_crtc_compute_clock,
};

static const struct intel_dpll_funcs g4x_dpll_funcs = {
	.crtc_compute_clock = g4x_crtc_compute_clock,
};

static const struct intel_dpll_funcs pnv_dpll_funcs = {
	.crtc_compute_clock = pnv_crtc_compute_clock,
};

static const struct intel_dpll_funcs i9xx_dpll_funcs = {
	.crtc_compute_clock = i9xx_crtc_compute_clock,
};

static const struct intel_dpll_funcs i8xx_dpll_funcs = {
	.crtc_compute_clock = i8xx_crtc_compute_clock,
};

void
intel_dpll_init_clock_hook(struct drm_i915_private *dev_priv)
{
	if (DISPLAY_VER(dev_priv) >= 9 || HAS_DDI(dev_priv))
		dev_priv->dpll_funcs.crtc_compute_clock = hsw_crtc_compute_clock;
		dev_priv->dpll_funcs = &hsw_dpll_funcs;
	else if (HAS_PCH_SPLIT(dev_priv))
		dev_priv->dpll_funcs.crtc_compute_clock = ilk_crtc_compute_clock;
		dev_priv->dpll_funcs = &ilk_dpll_funcs;
	else if (IS_CHERRYVIEW(dev_priv))
		dev_priv->dpll_funcs.crtc_compute_clock = chv_crtc_compute_clock;
		dev_priv->dpll_funcs = &chv_dpll_funcs;
	else if (IS_VALLEYVIEW(dev_priv))
		dev_priv->dpll_funcs.crtc_compute_clock = vlv_crtc_compute_clock;
		dev_priv->dpll_funcs = &vlv_dpll_funcs;
	else if (IS_G4X(dev_priv))
		dev_priv->dpll_funcs.crtc_compute_clock = g4x_crtc_compute_clock;
		dev_priv->dpll_funcs = &g4x_dpll_funcs;
	else if (IS_PINEVIEW(dev_priv))
		dev_priv->dpll_funcs.crtc_compute_clock = pnv_crtc_compute_clock;
		dev_priv->dpll_funcs = &pnv_dpll_funcs;
	else if (DISPLAY_VER(dev_priv) != 2)
		dev_priv->dpll_funcs.crtc_compute_clock = i9xx_crtc_compute_clock;
		dev_priv->dpll_funcs = &i9xx_dpll_funcs;
	else
		dev_priv->dpll_funcs.crtc_compute_clock = i8xx_crtc_compute_clock;
		dev_priv->dpll_funcs = &i8xx_dpll_funcs;
}

static bool i9xx_has_pps(struct drm_i915_private *dev_priv)
+1 −1
Original line number Diff line number Diff line
@@ -994,7 +994,7 @@ struct drm_i915_private {
	const struct intel_fdi_funcs *fdi_funcs;

	/* display pll funcs */
	struct intel_dpll_funcs dpll_funcs;
	const struct intel_dpll_funcs *dpll_funcs;

	/* Display functions */
	struct drm_i915_display_funcs display;