drm/amd/display: Fixed non-native modes not lighting up
There is no need to call drm_mode_set_crtcinfo() again once crtc timing is decided. Otherwise non-native/unsupported timing might get overwritten. Signed-off-by: Jerry (Fangzhi) Zuo <Jerry.Zuo@amd.com> Reviewed-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
3549130ef7
commit
4a2df0d1f2
1 changed files with 3 additions and 1 deletions
|
@ -2418,7 +2418,9 @@ create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
|
||||||
dm_state ? (dm_state->scaling != RMX_OFF) : false);
|
dm_state ? (dm_state->scaling != RMX_OFF) : false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!dm_state)
|
||||||
drm_mode_set_crtcinfo(&mode, 0);
|
drm_mode_set_crtcinfo(&mode, 0);
|
||||||
|
|
||||||
fill_stream_properties_from_drm_display_mode(stream,
|
fill_stream_properties_from_drm_display_mode(stream,
|
||||||
&mode, &aconnector->base);
|
&mode, &aconnector->base);
|
||||||
update_stream_scaling_settings(&mode, dm_state, stream);
|
update_stream_scaling_settings(&mode, dm_state, stream);
|
||||||
|
|
Loading…
Add table
Reference in a new issue