mirror of https://gitee.com/openkylin/linux.git
drm/i915: Kill dp_encoder_is_mst
dp_encoder_is_mst flag in the crtc state can be replaced by intel_crtc_has_type(..., INTEL_OUTPUT_DP_MST). Let's do that. Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jim Bride <jim.bride@linux.intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1479145447-12907-2-git-send-email-ville.syrjala@linux.intel.com
This commit is contained in:
parent
4ea7be2b56
commit
0037071d8a
|
@ -5509,7 +5509,7 @@ static void haswell_crtc_enable(struct intel_crtc_state *pipe_config,
|
||||||
if (intel_crtc->config->has_pch_encoder)
|
if (intel_crtc->config->has_pch_encoder)
|
||||||
lpt_pch_enable(crtc);
|
lpt_pch_enable(crtc);
|
||||||
|
|
||||||
if (intel_crtc->config->dp_encoder_is_mst)
|
if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_DP_MST))
|
||||||
intel_ddi_set_vc_payload_alloc(crtc, true);
|
intel_ddi_set_vc_payload_alloc(crtc, true);
|
||||||
|
|
||||||
assert_vblank_disabled(crtc);
|
assert_vblank_disabled(crtc);
|
||||||
|
@ -5632,7 +5632,7 @@ static void haswell_crtc_disable(struct intel_crtc_state *old_crtc_state,
|
||||||
if (!transcoder_is_dsi(cpu_transcoder))
|
if (!transcoder_is_dsi(cpu_transcoder))
|
||||||
intel_disable_pipe(intel_crtc);
|
intel_disable_pipe(intel_crtc);
|
||||||
|
|
||||||
if (intel_crtc->config->dp_encoder_is_mst)
|
if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_DP_MST))
|
||||||
intel_ddi_set_vc_payload_alloc(crtc, false);
|
intel_ddi_set_vc_payload_alloc(crtc, false);
|
||||||
|
|
||||||
if (!transcoder_is_dsi(cpu_transcoder))
|
if (!transcoder_is_dsi(cpu_transcoder))
|
||||||
|
|
|
@ -43,7 +43,6 @@ static bool intel_dp_mst_compute_config(struct intel_encoder *encoder,
|
||||||
const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
|
const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
|
||||||
int mst_pbn;
|
int mst_pbn;
|
||||||
|
|
||||||
pipe_config->dp_encoder_is_mst = true;
|
|
||||||
pipe_config->has_pch_encoder = false;
|
pipe_config->has_pch_encoder = false;
|
||||||
bpp = 24;
|
bpp = 24;
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -652,7 +652,6 @@ struct intel_crtc_state {
|
||||||
|
|
||||||
bool double_wide;
|
bool double_wide;
|
||||||
|
|
||||||
bool dp_encoder_is_mst;
|
|
||||||
int pbn;
|
int pbn;
|
||||||
|
|
||||||
struct intel_crtc_scaler_state scaler_state;
|
struct intel_crtc_scaler_state scaler_state;
|
||||||
|
|
Loading…
Reference in New Issue