drm/amd/display: Change dither policy for 10bpc to round
authorKrunoslav Kovac <krunoslav.kovac@amd.com>
Fri, 1 Dec 2023 13:25:03 +0000 (06:25 -0700)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 6 Dec 2023 20:22:33 +0000 (15:22 -0500)
We use spatial dither by default for all output bpc (6/8/10). While it
makes some sense for FP16, for ARGB2101010 surfaces it makes little
sense as even if we skip color pipeline to preserve bit accuracy,
spatial dither adds random noise so a few percent pixels are 1 bit off.
This commit chages the 10bpc out dither policy to rounding.

Also, in Polaris/Vega times, policy used to be round for 10bpc out; it
looks like it got inadvertently changed for Navi. Difference is only
detectable with capture cards.

Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Reviewed-by: Aric Cyr <aric.cyr@amd.com>
Reviewed-by: Anthony Koo <anthony.koo@amd.com>
Acked-by: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
Signed-off-by: Krunoslav Kovac <krunoslav.kovac@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc_resource.c

index e1c02527d04ae85c512d78bf063ce0aa1fc2053d..4382d9ae4292da4cff35942963af2bc2db9904ca 100644 (file)
@@ -4773,7 +4773,7 @@ void resource_build_bit_depth_reduction_params(struct dc_stream_state *stream,
                        option = DITHER_OPTION_SPATIAL8;
                        break;
                case COLOR_DEPTH_101010:
-                       option = DITHER_OPTION_SPATIAL10;
+                       option = DITHER_OPTION_TRUN10;
                        break;
                default:
                        option = DITHER_OPTION_DISABLE;
@@ -4799,6 +4799,8 @@ void resource_build_bit_depth_reduction_params(struct dc_stream_state *stream,
                        option == DITHER_OPTION_TRUN10_SPATIAL8_FM6) {
                fmt_bit_depth->flags.TRUNCATE_ENABLED = 1;
                fmt_bit_depth->flags.TRUNCATE_DEPTH = 2;
+               if (option == DITHER_OPTION_TRUN10)
+                       fmt_bit_depth->flags.TRUNCATE_MODE = 1;
        }
 
        /* special case - Formatter can only reduce by 4 bits at most.