drm/amd/display: Fixed non-native modes not lighting up
authorJerry (Fangzhi) Zuo <Jerry.Zuo@amd.com>
Wed, 17 Jan 2018 18:24:28 +0000 (13:24 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 7 Mar 2018 21:27:36 +0000 (16:27 -0500)
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>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

index 6045825..2016400 100644 (file)
@@ -2418,7 +2418,9 @@ create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
                                dm_state ? (dm_state->scaling != RMX_OFF) : false);
        }
 
-       drm_mode_set_crtcinfo(&mode, 0);
+       if (!dm_state)
+               drm_mode_set_crtcinfo(&mode, 0);
+
        fill_stream_properties_from_drm_display_mode(stream,
                        &mode, &aconnector->base);
        update_stream_scaling_settings(&mode, dm_state, stream);