]> www.infradead.org Git - users/hch/misc.git/commitdiff
drm/amd/display: Request HW cursor on DCN3.2 with SubVP
authorAric Cyr <Aric.Cyr@amd.com>
Thu, 23 Jan 2025 21:39:52 +0000 (16:39 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 5 Mar 2025 15:39:00 +0000 (10:39 -0500)
[why]
When SubVP is active the HW cursor size is limited to 64x64, and
anything larger will force composition which is bad for gaming on
DCN3.2 if the game uses a larger cursor.

[how]
If HW cursor is requested, typically by a fullscreen game, do not
enable SubVP so that up to 256x256 cursor sizes are available for
DCN3.2.

Reviewed-by: Aric Cyr <aric.cyr@amd.com>
Signed-off-by: Aric Cyr <Aric.Cyr@amd.com>
Signed-off-by: Wayne Lin <wayne.lin@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc.c
drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c

index 05ad7a9af4ffc201858f938ea1e6a971d0c10d09..a99ce7c86781726e13122bb4e19ca93fd40b20f6 100644 (file)
@@ -4937,7 +4937,8 @@ static bool full_update_required(struct dc *dc,
                        stream_update->lut3d_func ||
                        stream_update->pending_test_pattern ||
                        stream_update->crtc_timing_adjust ||
-                       stream_update->scaler_sharpener_update))
+                       stream_update->scaler_sharpener_update ||
+                       stream_update->hw_cursor_req))
                return true;
 
        if (stream) {
index 6f490d8d7038c00575bebd70caffd90c94e59704..56dda686e2992acee3302b89daa5a0101a99a545 100644 (file)
@@ -626,6 +626,7 @@ static bool dcn32_assign_subvp_pipe(struct dc *dc,
                 * - Not TMZ surface
                 */
                if (pipe->plane_state && !pipe->top_pipe && !pipe->prev_odm_pipe && !dcn32_is_center_timing(pipe) &&
+                               !pipe->stream->hw_cursor_req &&
                                !(pipe->stream->timing.pix_clk_100hz / 10000 > DCN3_2_MAX_SUBVP_PIXEL_RATE_MHZ) &&
                                (!dcn32_is_psr_capable(pipe) || (context->stream_count == 1 && dc->caps.dmub_caps.subvp_psr)) &&
                                dc_state_get_pipe_subvp_type(context, pipe) == SUBVP_NONE &&