Patch "drm/amd/display: only fill dirty rectangles when PSR is enabled" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/amd/display: only fill dirty rectangles when PSR is enabled

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-amd-display-only-fill-dirty-rectangles-when-psr-.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 2569ceb357a504e3b1779e761a51f06f6997aedc
Author: Hamza Mahfooz <hamza.mahfooz@xxxxxxx>
Date:   Wed Nov 9 12:06:27 2022 -0500

    drm/amd/display: only fill dirty rectangles when PSR is enabled
    
    [ Upstream commit 675d84621a24490e1de3d59a4992a17fa9ff92b5 ]
    
    Currently, we are calling fill_dc_dirty_rects() even if PSR isn't
    supported by the relevant link in amdgpu_dm_commit_planes(), this is
    undesirable especially because when drm.debug is enabled we are printing
    messages in fill_dc_dirty_rects() that are only useful for debugging PSR
    (and confusing otherwise). So, we can instead limit the filling of dirty
    rectangles to only when PSR is enabled.
    
    Reviewed-by: Leo Li <sunpeng.li@xxxxxxx>
    Signed-off-by: Hamza Mahfooz <hamza.mahfooz@xxxxxxx>
    Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index 7f8eb09b0b7c..9ce100e315c5 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -7650,9 +7650,10 @@ static void amdgpu_dm_commit_planes(struct drm_atomic_state *state,
 		bundle->surface_updates[planes_count].plane_info =
 			&bundle->plane_infos[planes_count];
 
-		fill_dc_dirty_rects(plane, old_plane_state, new_plane_state,
-				    new_crtc_state,
-				    &bundle->flip_addrs[planes_count]);
+		if (acrtc_state->stream->link->psr_settings.psr_feature_enabled)
+			fill_dc_dirty_rects(plane, old_plane_state,
+					    new_plane_state, new_crtc_state,
+					    &bundle->flip_addrs[planes_count]);
 
 		/*
 		 * Only allow immediate flips for fast updates that don't



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux