mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 07:02:29 -04:00
drm/i915: s/intel_crtc/crtc/ in .crtc_enable() and .crtc_disable()
Get rid of the horrible aliasing drm_crtc and intel_crtc variables in the crtc enable/disable hooks. Reviewed-by: Manasi Navare <manasi.d.navare@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191118164430.27265-9-ville.syrjala@linux.intel.com
This commit is contained in:
@@ -6475,13 +6475,11 @@ static void intel_disable_primary_plane(const struct intel_crtc_state *crtc_stat
|
||||
static void ironlake_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
struct intel_atomic_state *state)
|
||||
{
|
||||
struct drm_crtc *crtc = pipe_config->uapi.crtc;
|
||||
struct drm_device *dev = crtc->dev;
|
||||
struct drm_i915_private *dev_priv = to_i915(dev);
|
||||
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
||||
enum pipe pipe = intel_crtc->pipe;
|
||||
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
|
||||
enum pipe pipe = crtc->pipe;
|
||||
|
||||
if (WARN_ON(intel_crtc->active))
|
||||
if (WARN_ON(crtc->active))
|
||||
return;
|
||||
|
||||
/*
|
||||
@@ -6513,9 +6511,9 @@ static void ironlake_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
|
||||
ironlake_set_pipeconf(pipe_config);
|
||||
|
||||
intel_crtc->active = true;
|
||||
crtc->active = true;
|
||||
|
||||
intel_encoders_pre_enable(state, intel_crtc);
|
||||
intel_encoders_pre_enable(state, crtc);
|
||||
|
||||
if (pipe_config->has_pch_encoder) {
|
||||
/* Note: FDI PLL enabling _must_ be done before we enable the
|
||||
@@ -6539,7 +6537,7 @@ static void ironlake_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
intel_disable_primary_plane(pipe_config);
|
||||
|
||||
if (dev_priv->display.initial_watermarks)
|
||||
dev_priv->display.initial_watermarks(state, intel_crtc);
|
||||
dev_priv->display.initial_watermarks(state, crtc);
|
||||
intel_enable_pipe(pipe_config);
|
||||
|
||||
if (pipe_config->has_pch_encoder)
|
||||
@@ -6547,7 +6545,7 @@ static void ironlake_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
|
||||
intel_crtc_vblank_on(pipe_config);
|
||||
|
||||
intel_encoders_enable(state, intel_crtc);
|
||||
intel_encoders_enable(state, crtc);
|
||||
|
||||
if (HAS_PCH_CPT(dev_priv))
|
||||
cpt_verify_modeset(dev_priv, pipe);
|
||||
@@ -6621,22 +6619,21 @@ static void hsw_set_frame_start_delay(const struct intel_crtc_state *crtc_state)
|
||||
static void haswell_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
struct intel_atomic_state *state)
|
||||
{
|
||||
struct drm_crtc *crtc = pipe_config->uapi.crtc;
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->dev);
|
||||
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
||||
enum pipe pipe = intel_crtc->pipe, hsw_workaround_pipe;
|
||||
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
|
||||
enum pipe pipe = crtc->pipe, hsw_workaround_pipe;
|
||||
enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
|
||||
bool psl_clkgate_wa;
|
||||
|
||||
if (WARN_ON(intel_crtc->active))
|
||||
if (WARN_ON(crtc->active))
|
||||
return;
|
||||
|
||||
intel_encoders_pre_pll_enable(state, intel_crtc);
|
||||
intel_encoders_pre_pll_enable(state, crtc);
|
||||
|
||||
if (pipe_config->shared_dpll)
|
||||
intel_enable_shared_dpll(pipe_config);
|
||||
|
||||
intel_encoders_pre_enable(state, intel_crtc);
|
||||
intel_encoders_pre_enable(state, crtc);
|
||||
|
||||
if (intel_crtc_has_dp_encoder(pipe_config))
|
||||
intel_dp_set_m_n(pipe_config, M1_N1);
|
||||
@@ -6668,7 +6665,7 @@ static void haswell_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
|
||||
bdw_set_pipemisc(pipe_config);
|
||||
|
||||
intel_crtc->active = true;
|
||||
crtc->active = true;
|
||||
|
||||
/* Display WA #1180: WaDisableScalarClockGating: glk, cnl */
|
||||
psl_clkgate_wa = (IS_GEMINILAKE(dev_priv) || IS_CANNONLAKE(dev_priv)) &&
|
||||
@@ -6692,16 +6689,16 @@ static void haswell_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
intel_disable_primary_plane(pipe_config);
|
||||
|
||||
if (INTEL_GEN(dev_priv) >= 11)
|
||||
icl_set_pipe_chicken(intel_crtc);
|
||||
icl_set_pipe_chicken(crtc);
|
||||
|
||||
if (!transcoder_is_dsi(cpu_transcoder))
|
||||
intel_ddi_enable_transcoder_func(pipe_config);
|
||||
|
||||
if (dev_priv->display.initial_watermarks)
|
||||
dev_priv->display.initial_watermarks(state, intel_crtc);
|
||||
dev_priv->display.initial_watermarks(state, crtc);
|
||||
|
||||
if (INTEL_GEN(dev_priv) >= 11)
|
||||
icl_pipe_mbus_enable(intel_crtc);
|
||||
icl_pipe_mbus_enable(crtc);
|
||||
|
||||
/* XXX: Do the pipe assertions at the right place for BXT DSI. */
|
||||
if (!transcoder_is_dsi(cpu_transcoder))
|
||||
@@ -6712,7 +6709,7 @@ static void haswell_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
|
||||
intel_crtc_vblank_on(pipe_config);
|
||||
|
||||
intel_encoders_enable(state, intel_crtc);
|
||||
intel_encoders_enable(state, crtc);
|
||||
|
||||
if (psl_clkgate_wa) {
|
||||
intel_wait_for_vblank(dev_priv, pipe);
|
||||
@@ -6746,11 +6743,9 @@ static void ironlake_pfit_disable(const struct intel_crtc_state *old_crtc_state)
|
||||
static void ironlake_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
struct intel_atomic_state *state)
|
||||
{
|
||||
struct drm_crtc *crtc = old_crtc_state->uapi.crtc;
|
||||
struct drm_device *dev = crtc->dev;
|
||||
struct drm_i915_private *dev_priv = to_i915(dev);
|
||||
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
||||
enum pipe pipe = intel_crtc->pipe;
|
||||
struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->uapi.crtc);
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
|
||||
enum pipe pipe = crtc->pipe;
|
||||
|
||||
/*
|
||||
* Sometimes spurious CPU pipe underruns happen when the
|
||||
@@ -6760,18 +6755,18 @@ static void ironlake_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
|
||||
intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
|
||||
|
||||
intel_encoders_disable(state, intel_crtc);
|
||||
intel_encoders_disable(state, crtc);
|
||||
|
||||
intel_crtc_vblank_off(intel_crtc);
|
||||
intel_crtc_vblank_off(crtc);
|
||||
|
||||
intel_disable_pipe(old_crtc_state);
|
||||
|
||||
ironlake_pfit_disable(old_crtc_state);
|
||||
|
||||
if (old_crtc_state->has_pch_encoder)
|
||||
ironlake_fdi_disable(intel_crtc);
|
||||
ironlake_fdi_disable(crtc);
|
||||
|
||||
intel_encoders_post_disable(state, intel_crtc);
|
||||
intel_encoders_post_disable(state, crtc);
|
||||
|
||||
if (old_crtc_state->has_pch_encoder) {
|
||||
ironlake_disable_pch_transcoder(dev_priv, pipe);
|
||||
@@ -6794,7 +6789,7 @@ static void ironlake_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
I915_WRITE(PCH_DPLL_SEL, temp);
|
||||
}
|
||||
|
||||
ironlake_fdi_pll_disable(intel_crtc);
|
||||
ironlake_fdi_pll_disable(crtc);
|
||||
}
|
||||
|
||||
intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
|
||||
@@ -6804,14 +6799,13 @@ static void ironlake_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
static void haswell_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
struct intel_atomic_state *state)
|
||||
{
|
||||
struct drm_crtc *crtc = old_crtc_state->uapi.crtc;
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->dev);
|
||||
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
||||
struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->uapi.crtc);
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
|
||||
enum transcoder cpu_transcoder = old_crtc_state->cpu_transcoder;
|
||||
|
||||
intel_encoders_disable(state, intel_crtc);
|
||||
intel_encoders_disable(state, crtc);
|
||||
|
||||
intel_crtc_vblank_off(intel_crtc);
|
||||
intel_crtc_vblank_off(crtc);
|
||||
|
||||
/* XXX: Do the pipe assertions at the right place for BXT DSI. */
|
||||
if (!transcoder_is_dsi(cpu_transcoder))
|
||||
@@ -6826,13 +6820,13 @@ static void haswell_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
intel_dsc_disable(old_crtc_state);
|
||||
|
||||
if (INTEL_GEN(dev_priv) >= 9)
|
||||
skylake_scaler_disable(intel_crtc);
|
||||
skylake_scaler_disable(crtc);
|
||||
else
|
||||
ironlake_pfit_disable(old_crtc_state);
|
||||
|
||||
intel_encoders_post_disable(state, intel_crtc);
|
||||
intel_encoders_post_disable(state, crtc);
|
||||
|
||||
intel_encoders_post_pll_disable(state, intel_crtc);
|
||||
intel_encoders_post_pll_disable(state, crtc);
|
||||
}
|
||||
|
||||
static void i9xx_pfit_enable(const struct intel_crtc_state *crtc_state)
|
||||
@@ -7037,13 +7031,11 @@ static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
|
||||
static void valleyview_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
struct intel_atomic_state *state)
|
||||
{
|
||||
struct drm_crtc *crtc = pipe_config->uapi.crtc;
|
||||
struct drm_device *dev = crtc->dev;
|
||||
struct drm_i915_private *dev_priv = to_i915(dev);
|
||||
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
||||
enum pipe pipe = intel_crtc->pipe;
|
||||
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
|
||||
enum pipe pipe = crtc->pipe;
|
||||
|
||||
if (WARN_ON(intel_crtc->active))
|
||||
if (WARN_ON(crtc->active))
|
||||
return;
|
||||
|
||||
if (intel_crtc_has_dp_encoder(pipe_config))
|
||||
@@ -7059,21 +7051,21 @@ static void valleyview_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
|
||||
i9xx_set_pipeconf(pipe_config);
|
||||
|
||||
intel_crtc->active = true;
|
||||
crtc->active = true;
|
||||
|
||||
intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
|
||||
|
||||
intel_encoders_pre_pll_enable(state, intel_crtc);
|
||||
intel_encoders_pre_pll_enable(state, crtc);
|
||||
|
||||
if (IS_CHERRYVIEW(dev_priv)) {
|
||||
chv_prepare_pll(intel_crtc, pipe_config);
|
||||
chv_enable_pll(intel_crtc, pipe_config);
|
||||
chv_prepare_pll(crtc, pipe_config);
|
||||
chv_enable_pll(crtc, pipe_config);
|
||||
} else {
|
||||
vlv_prepare_pll(intel_crtc, pipe_config);
|
||||
vlv_enable_pll(intel_crtc, pipe_config);
|
||||
vlv_prepare_pll(crtc, pipe_config);
|
||||
vlv_enable_pll(crtc, pipe_config);
|
||||
}
|
||||
|
||||
intel_encoders_pre_enable(state, intel_crtc);
|
||||
intel_encoders_pre_enable(state, crtc);
|
||||
|
||||
i9xx_pfit_enable(pipe_config);
|
||||
|
||||
@@ -7082,12 +7074,12 @@ static void valleyview_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
/* update DSPCNTR to configure gamma for pipe bottom color */
|
||||
intel_disable_primary_plane(pipe_config);
|
||||
|
||||
dev_priv->display.initial_watermarks(state, intel_crtc);
|
||||
dev_priv->display.initial_watermarks(state, crtc);
|
||||
intel_enable_pipe(pipe_config);
|
||||
|
||||
intel_crtc_vblank_on(pipe_config);
|
||||
|
||||
intel_encoders_enable(state, intel_crtc);
|
||||
intel_encoders_enable(state, crtc);
|
||||
}
|
||||
|
||||
static void i9xx_set_pll_dividers(const struct intel_crtc_state *crtc_state)
|
||||
@@ -7102,13 +7094,11 @@ static void i9xx_set_pll_dividers(const struct intel_crtc_state *crtc_state)
|
||||
static void i9xx_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
struct intel_atomic_state *state)
|
||||
{
|
||||
struct drm_crtc *crtc = pipe_config->uapi.crtc;
|
||||
struct drm_device *dev = crtc->dev;
|
||||
struct drm_i915_private *dev_priv = to_i915(dev);
|
||||
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
||||
enum pipe pipe = intel_crtc->pipe;
|
||||
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
|
||||
enum pipe pipe = crtc->pipe;
|
||||
|
||||
if (WARN_ON(intel_crtc->active))
|
||||
if (WARN_ON(crtc->active))
|
||||
return;
|
||||
|
||||
i9xx_set_pll_dividers(pipe_config);
|
||||
@@ -7121,14 +7111,14 @@ static void i9xx_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
|
||||
i9xx_set_pipeconf(pipe_config);
|
||||
|
||||
intel_crtc->active = true;
|
||||
crtc->active = true;
|
||||
|
||||
if (!IS_GEN(dev_priv, 2))
|
||||
intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
|
||||
|
||||
intel_encoders_pre_enable(state, intel_crtc);
|
||||
intel_encoders_pre_enable(state, crtc);
|
||||
|
||||
i9xx_enable_pll(intel_crtc, pipe_config);
|
||||
i9xx_enable_pll(crtc, pipe_config);
|
||||
|
||||
i9xx_pfit_enable(pipe_config);
|
||||
|
||||
@@ -7138,14 +7128,14 @@ static void i9xx_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||
intel_disable_primary_plane(pipe_config);
|
||||
|
||||
if (dev_priv->display.initial_watermarks)
|
||||
dev_priv->display.initial_watermarks(state, intel_crtc);
|
||||
dev_priv->display.initial_watermarks(state, crtc);
|
||||
else
|
||||
intel_update_watermarks(intel_crtc);
|
||||
intel_update_watermarks(crtc);
|
||||
intel_enable_pipe(pipe_config);
|
||||
|
||||
intel_crtc_vblank_on(pipe_config);
|
||||
|
||||
intel_encoders_enable(state, intel_crtc);
|
||||
intel_encoders_enable(state, crtc);
|
||||
}
|
||||
|
||||
static void i9xx_pfit_disable(const struct intel_crtc_state *old_crtc_state)
|
||||
@@ -7166,11 +7156,9 @@ static void i9xx_pfit_disable(const struct intel_crtc_state *old_crtc_state)
|
||||
static void i9xx_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
struct intel_atomic_state *state)
|
||||
{
|
||||
struct drm_crtc *crtc = old_crtc_state->uapi.crtc;
|
||||
struct drm_device *dev = crtc->dev;
|
||||
struct drm_i915_private *dev_priv = to_i915(dev);
|
||||
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
||||
enum pipe pipe = intel_crtc->pipe;
|
||||
struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->uapi.crtc);
|
||||
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
|
||||
enum pipe pipe = crtc->pipe;
|
||||
|
||||
/*
|
||||
* On gen2 planes are double buffered but the pipe isn't, so we must
|
||||
@@ -7179,15 +7167,15 @@ static void i9xx_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
if (IS_GEN(dev_priv, 2))
|
||||
intel_wait_for_vblank(dev_priv, pipe);
|
||||
|
||||
intel_encoders_disable(state, intel_crtc);
|
||||
intel_encoders_disable(state, crtc);
|
||||
|
||||
intel_crtc_vblank_off(intel_crtc);
|
||||
intel_crtc_vblank_off(crtc);
|
||||
|
||||
intel_disable_pipe(old_crtc_state);
|
||||
|
||||
i9xx_pfit_disable(old_crtc_state);
|
||||
|
||||
intel_encoders_post_disable(state, intel_crtc);
|
||||
intel_encoders_post_disable(state, crtc);
|
||||
|
||||
if (!intel_crtc_has_type(old_crtc_state, INTEL_OUTPUT_DSI)) {
|
||||
if (IS_CHERRYVIEW(dev_priv))
|
||||
@@ -7198,13 +7186,13 @@ static void i9xx_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||
i9xx_disable_pll(old_crtc_state);
|
||||
}
|
||||
|
||||
intel_encoders_post_pll_disable(state, intel_crtc);
|
||||
intel_encoders_post_pll_disable(state, crtc);
|
||||
|
||||
if (!IS_GEN(dev_priv, 2))
|
||||
intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
|
||||
|
||||
if (!dev_priv->display.initial_watermarks)
|
||||
intel_update_watermarks(intel_crtc);
|
||||
intel_update_watermarks(crtc);
|
||||
|
||||
/* clock the pipe down to 640x480@60 to potentially save power */
|
||||
if (IS_I830(dev_priv))
|
||||
|
||||
Reference in New Issue
Block a user