drm/amd/display: Cleanup code that enables freesync
authorLeo (Sunpeng) Li <sunpeng.li@amd.com>
Tue, 17 Oct 2017 16:42:58 +0000 (12:42 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 4 Dec 2017 21:41:29 +0000 (16:41 -0500)
This is a follow-up patch to:

Bhawanpreet Lakha    Atomic freesync ASSERT fix

Changes:
- Combine to use one iterator
- Use new DRM iterators.

Signed-off-by: Leo (Sunpeng) Li <sunpeng.li@amd.com>
Reviewed-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Acked-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 e99ba554f5b9cde0cc3307bc92b10c6183a56269..816aa426ddd36ea85ec53c9464d8f266e5298aaf 100644 (file)
@@ -4038,7 +4038,6 @@ static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state)
        struct drm_crtc *crtc;
        struct drm_crtc_state *old_crtc_state, *new_crtc_state;
        struct amdgpu_crtc *new_crtcs[MAX_STREAMS];
-       struct dc_stream_state *new_stream = NULL;
        unsigned long flags;
        bool wait_for_vblank = true;
        struct drm_connector *connector;
@@ -4133,52 +4132,36 @@ static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state)
         * are removed from freesync module
         */
        if (adev->dm.freesync_module) {
-               for (i = 0; i < new_crtcs_count; i++) {
+               for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
                        struct amdgpu_dm_connector *aconnector = NULL;
+                       struct dm_connector_state *dm_new_con_state = NULL;
+                       struct amdgpu_crtc *acrtc = NULL;
 
-                       new_crtc_state = drm_atomic_get_new_crtc_state(state,
-                                       &new_crtcs[i]->base);
                        dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
+                       acrtc = to_amdgpu_crtc(crtc);
 
-                       new_stream = dm_new_crtc_state->stream;
-                       aconnector = amdgpu_dm_find_first_crtc_matching_connector(
-                                       state,
-                                       &new_crtcs[i]->base);
+                       aconnector =
+                               amdgpu_dm_find_first_crtc_matching_connector(
+                                       state, crtc);
                        if (!aconnector) {
                                DRM_DEBUG_DRIVER("Atomic commit: Failed to find connector for acrtc id:%d "
                                         "skipping freesync init\n",
-                                        new_crtcs[i]->crtc_id);
+                                        acrtc->crtc_id);
                                continue;
                        }
 
                        mod_freesync_add_stream(adev->dm.freesync_module,
-                                               new_stream, &aconnector->caps);
-               }
-
-               list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
-
-                       struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
-                       struct amdgpu_dm_connector *aconnector = NULL;
-                       struct dm_connector_state *conn_state = NULL;
-                       struct dm_crtc_state *acrtc_state = NULL;
-
-                       acrtc_state = to_dm_crtc_state(acrtc->base.state);
-
-
-                       aconnector =
-                               amdgpu_dm_find_first_crtc_matching_connector(
-                                       state,
-                                       crtc,
-                                       false);
-                       if (aconnector) {
-                               conn_state = to_dm_connector_state(aconnector->base.state);
-
-                               if (new_stream) {
-                                       mod_freesync_set_user_enable(adev->dm.freesync_module,
-                                                                    &acrtc_state->stream,
-                                                                    1,
-                                                                    &conn_state->user_enable);
-                               }
+                                               dm_new_crtc_state->stream,
+                                               &aconnector->caps);
+                       new_con_state = drm_atomic_get_new_connector_state(
+                                       state, &aconnector->base);
+                       dm_new_con_state = to_dm_connector_state(new_con_state);
+
+                       if (dm_new_crtc_state->stream) {
+                               mod_freesync_set_user_enable(adev->dm.freesync_module,
+                                                            &dm_new_crtc_state->stream,
+                                                            1,
+                                                            &dm_new_con_state->user_enable);
                        }
                }
        }