mirror of https://gitee.com/openkylin/linux.git
drm/i915/dp: Only enable enhanced framing if the sink supports it
DisplayPort spec v1.1a, Table 2-52. Signed-off-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
9908ff736a
commit
9962c9252e
|
@ -675,10 +675,9 @@ intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
|
||||||
dp_priv->link_configuration[1] = dp_priv->lane_count;
|
dp_priv->link_configuration[1] = dp_priv->lane_count;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Check for DPCD version > 1.1,
|
* Check for DPCD version > 1.1 and enhanced framing support
|
||||||
* enable enahanced frame stuff in that case
|
|
||||||
*/
|
*/
|
||||||
if (dp_priv->dpcd[0] >= 0x11) {
|
if (dp_priv->dpcd[0] >= 0x11 && (dp_priv->dpcd[2] & DP_ENHANCED_FRAME_CAP)) {
|
||||||
dp_priv->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
|
dp_priv->link_configuration[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
|
||||||
dp_priv->DP |= DP_ENHANCED_FRAMING;
|
dp_priv->DP |= DP_ENHANCED_FRAMING;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue