drm/amd/display: Set color_mgmt_changed to true on unsuspend
authorJoshua Ashton <joshua@froggi.es>
Thu, 2 Nov 2023 04:21:55 +0000 (04:21 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 19 Apr 2024 03:47:07 +0000 (23:47 -0400)
Otherwise we can end up with a frame on unsuspend where color management
is not applied when userspace has not committed themselves.

Fixes re-applying color management on Steam Deck/Gamescope on S3 resume.

Signed-off-by: Joshua Ashton <joshua@froggi.es>
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 75c78f6..0d67fc5 100644 (file)
@@ -3046,6 +3046,7 @@ static int dm_resume(void *handle)
                        dc_stream_release(dm_new_crtc_state->stream);
                        dm_new_crtc_state->stream = NULL;
                }
+               dm_new_crtc_state->base.color_mgmt_changed = true;
        }
 
        for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) {