Commit 903f3806 authored by Dave Airlie's avatar Dave Airlie Committed by Jani Nikula

drm/i915: split the dpll clock compute out from display vtable.

this single function might be possible to merge later, but
for now it's simple to just split it out.
Reviewed-by: default avatarJani Nikula <jani.nikula@intel.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/ba570aa10b694b2e8640e0c58430fd0053c306b7.1632869550.git.jani.nikula@intel.com
parent 5c8c179b
...@@ -6833,10 +6833,10 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state, ...@@ -6833,10 +6833,10 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state,
crtc_state->update_wm_post = true; crtc_state->update_wm_post = true;
if (mode_changed && crtc_state->hw.enable && if (mode_changed && crtc_state->hw.enable &&
dev_priv->display.crtc_compute_clock && dev_priv->dpll_funcs.crtc_compute_clock &&
!crtc_state->bigjoiner_slave && !crtc_state->bigjoiner_slave &&
!drm_WARN_ON(&dev_priv->drm, crtc_state->shared_dpll)) { !drm_WARN_ON(&dev_priv->drm, crtc_state->shared_dpll)) {
ret = dev_priv->display.crtc_compute_clock(crtc_state); ret = dev_priv->dpll_funcs.crtc_compute_clock(crtc_state);
if (ret) if (ret)
return ret; return ret;
} }
...@@ -8863,7 +8863,7 @@ static void intel_modeset_clear_plls(struct intel_atomic_state *state) ...@@ -8863,7 +8863,7 @@ static void intel_modeset_clear_plls(struct intel_atomic_state *state)
struct intel_crtc *crtc; struct intel_crtc *crtc;
int i; int i;
if (!dev_priv->display.crtc_compute_clock) if (!dev_priv->dpll_funcs.crtc_compute_clock)
return; return;
for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) { for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
......
...@@ -1369,21 +1369,21 @@ void ...@@ -1369,21 +1369,21 @@ void
intel_dpll_init_clock_hook(struct drm_i915_private *dev_priv) intel_dpll_init_clock_hook(struct drm_i915_private *dev_priv)
{ {
if (DISPLAY_VER(dev_priv) >= 9 || HAS_DDI(dev_priv)) if (DISPLAY_VER(dev_priv) >= 9 || HAS_DDI(dev_priv))
dev_priv->display.crtc_compute_clock = hsw_crtc_compute_clock; dev_priv->dpll_funcs.crtc_compute_clock = hsw_crtc_compute_clock;
else if (HAS_PCH_SPLIT(dev_priv)) else if (HAS_PCH_SPLIT(dev_priv))
dev_priv->display.crtc_compute_clock = ilk_crtc_compute_clock; dev_priv->dpll_funcs.crtc_compute_clock = ilk_crtc_compute_clock;
else if (IS_CHERRYVIEW(dev_priv)) else if (IS_CHERRYVIEW(dev_priv))
dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock; dev_priv->dpll_funcs.crtc_compute_clock = chv_crtc_compute_clock;
else if (IS_VALLEYVIEW(dev_priv)) else if (IS_VALLEYVIEW(dev_priv))
dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock; dev_priv->dpll_funcs.crtc_compute_clock = vlv_crtc_compute_clock;
else if (IS_G4X(dev_priv)) else if (IS_G4X(dev_priv))
dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock; dev_priv->dpll_funcs.crtc_compute_clock = g4x_crtc_compute_clock;
else if (IS_PINEVIEW(dev_priv)) else if (IS_PINEVIEW(dev_priv))
dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock; dev_priv->dpll_funcs.crtc_compute_clock = pnv_crtc_compute_clock;
else if (DISPLAY_VER(dev_priv) != 2) else if (DISPLAY_VER(dev_priv) != 2)
dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock; dev_priv->dpll_funcs.crtc_compute_clock = i9xx_crtc_compute_clock;
else else
dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock; dev_priv->dpll_funcs.crtc_compute_clock = i8xx_crtc_compute_clock;
} }
static bool i9xx_has_pps(struct drm_i915_private *dev_priv) static bool i9xx_has_pps(struct drm_i915_private *dev_priv)
......
...@@ -393,6 +393,10 @@ struct intel_fdi_funcs { ...@@ -393,6 +393,10 @@ struct intel_fdi_funcs {
const struct intel_crtc_state *crtc_state); const struct intel_crtc_state *crtc_state);
}; };
struct intel_dpll_funcs {
int (*crtc_compute_clock)(struct intel_crtc_state *crtc_state);
};
struct drm_i915_display_funcs { struct drm_i915_display_funcs {
/* Returns the active state of the crtc, and if the crtc is active, /* Returns the active state of the crtc, and if the crtc is active,
* fills out the pipe-config with the hw state. */ * fills out the pipe-config with the hw state. */
...@@ -400,7 +404,6 @@ struct drm_i915_display_funcs { ...@@ -400,7 +404,6 @@ struct drm_i915_display_funcs {
struct intel_crtc_state *); struct intel_crtc_state *);
void (*get_initial_plane_config)(struct intel_crtc *, void (*get_initial_plane_config)(struct intel_crtc *,
struct intel_initial_plane_config *); struct intel_initial_plane_config *);
int (*crtc_compute_clock)(struct intel_crtc_state *crtc_state);
void (*crtc_enable)(struct intel_atomic_state *state, void (*crtc_enable)(struct intel_atomic_state *state,
struct intel_crtc *crtc); struct intel_crtc *crtc);
void (*crtc_disable)(struct intel_atomic_state *state, void (*crtc_disable)(struct intel_atomic_state *state,
...@@ -990,6 +993,9 @@ struct drm_i915_private { ...@@ -990,6 +993,9 @@ struct drm_i915_private {
/* fdi display functions */ /* fdi display functions */
struct intel_fdi_funcs fdi_funcs; struct intel_fdi_funcs fdi_funcs;
/* display pll funcs */
struct intel_dpll_funcs dpll_funcs;
/* Display functions */ /* Display functions */
struct drm_i915_display_funcs display; struct drm_i915_display_funcs display;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment