Commit 15cbe5d0 authored by Maarten Lankhorst's avatar Maarten Lankhorst

drm/i915: Make skl_detach_scalers take crtc_state

Rename intel_crtc to crtc, and pass crtc_state instead of looking at
crtc->config.
Signed-off-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20181004094604.2646-6-maarten.lankhorst@linux.intel.com
parent 7efd90fb
...@@ -3511,13 +3511,13 @@ static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id) ...@@ -3511,13 +3511,13 @@ static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
/* /*
* This function detaches (aka. unbinds) unused scalers in hardware * This function detaches (aka. unbinds) unused scalers in hardware
*/ */
static void skl_detach_scalers(struct intel_crtc *intel_crtc) static void skl_detach_scalers(const struct intel_crtc_state *crtc_state)
{ {
struct intel_crtc_scaler_state *scaler_state; struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
const struct intel_crtc_scaler_state *scaler_state =
&crtc_state->scaler_state;
int i; int i;
scaler_state = &intel_crtc->config->scaler_state;
/* loop through and disable scalers that aren't in use */ /* loop through and disable scalers that aren't in use */
for (i = 0; i < intel_crtc->num_scalers; i++) { for (i = 0; i < intel_crtc->num_scalers; i++) {
if (!scaler_state->scalers[i].in_use) if (!scaler_state->scalers[i].in_use)
...@@ -3925,7 +3925,7 @@ static void intel_update_pipe_config(const struct intel_crtc_state *old_crtc_sta ...@@ -3925,7 +3925,7 @@ static void intel_update_pipe_config(const struct intel_crtc_state *old_crtc_sta
/* on skylake this is done by detaching scalers */ /* on skylake this is done by detaching scalers */
if (INTEL_GEN(dev_priv) >= 9) { if (INTEL_GEN(dev_priv) >= 9) {
skl_detach_scalers(crtc); skl_detach_scalers(new_crtc_state);
if (new_crtc_state->pch_pfit.enabled) if (new_crtc_state->pch_pfit.enabled)
skylake_pfit_enable(new_crtc_state); skylake_pfit_enable(new_crtc_state);
...@@ -13344,7 +13344,7 @@ static void intel_begin_crtc_commit(struct drm_crtc *crtc, ...@@ -13344,7 +13344,7 @@ static void intel_begin_crtc_commit(struct drm_crtc *crtc,
if (intel_cstate->update_pipe) if (intel_cstate->update_pipe)
intel_update_pipe_config(old_intel_cstate, intel_cstate); intel_update_pipe_config(old_intel_cstate, intel_cstate);
else if (INTEL_GEN(dev_priv) >= 9) else if (INTEL_GEN(dev_priv) >= 9)
skl_detach_scalers(intel_crtc); skl_detach_scalers(intel_cstate);
out: out:
if (dev_priv->display.atomic_update_watermarks) if (dev_priv->display.atomic_update_watermarks)
......
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