drm/amd/display: fix PSR-SU/DSC interoperability support
authorHamza Mahfooz <hamza.mahfooz@amd.com>
Thu, 5 Jan 2023 15:54:12 +0000 (10:54 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 9 Jan 2023 22:02:18 +0000 (17:02 -0500)
Currently, there are issues with enabling PSR-SU + DSC. This stems from
the fact that DSC imposes a slice height on transmitted video data and
we are not conforming to that slice height in PSR-SU regions. So, pass
slice_height into su_y_granularity to feed the DSC slice height into
PSR-SU code.

Acked-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c
drivers/gpu/drm/amd/display/modules/power/power_helpers.c
drivers/gpu/drm/amd/display/modules/power/power_helpers.h

index 26291db0a3cf6c4142b957ac2198aca5891cc9eb..872d06fe14364ad1baa9fc706511e980b7ed9874 100644 (file)
@@ -122,6 +122,9 @@ bool amdgpu_dm_link_setup_psr(struct dc_stream_state *stream)
                psr_config.allow_multi_disp_optimizations =
                        (amdgpu_dc_feature_mask & DC_PSR_ALLOW_MULTI_DISP_OPT);
 
+               if (!psr_su_set_y_granularity(dc, link, stream, &psr_config))
+                       return false;
+
                ret = dc_link_setup_psr(link, stream, &psr_config, &psr_context);
 
        }
index 9b5d9b2c9a6a79f8d25d5c6587b988368e900619..cf4fa87c7db60a1b1c4e61eea8a144b9035239ba 100644 (file)
@@ -916,3 +916,34 @@ bool mod_power_only_edp(const struct dc_state *context, const struct dc_stream_s
 {
        return context && context->stream_count == 1 && dc_is_embedded_signal(stream->signal);
 }
+
+bool psr_su_set_y_granularity(struct dc *dc, struct dc_link *link,
+                             struct dc_stream_state *stream,
+                             struct psr_config *config)
+{
+       uint16_t pic_height;
+       uint8_t slice_height;
+
+       if ((link->connector_signal & SIGNAL_TYPE_EDP) &&
+           (!dc->caps.edp_dsc_support ||
+           link->panel_config.dsc.disable_dsc_edp ||
+           !link->dpcd_caps.dsc_caps.dsc_basic_caps.fields.dsc_support.DSC_SUPPORT ||
+           !stream->timing.dsc_cfg.num_slices_v))
+               return true;
+
+       pic_height = stream->timing.v_addressable +
+               stream->timing.v_border_top + stream->timing.v_border_bottom;
+       slice_height = pic_height / stream->timing.dsc_cfg.num_slices_v;
+
+       if (slice_height) {
+               if (config->su_y_granularity &&
+                   (slice_height % config->su_y_granularity)) {
+                       ASSERT(0);
+                       return false;
+               }
+
+               config->su_y_granularity = slice_height;
+       }
+
+       return true;
+}
index 316452e9dbc91d74cbcf2f729084f29efa5405c6..bb16b37b83da75fced224d041436b2a618dfc028 100644 (file)
@@ -59,4 +59,7 @@ void mod_power_calc_psr_configs(struct psr_config *psr_config,
                const struct dc_stream_state *stream);
 bool mod_power_only_edp(const struct dc_state *context,
                const struct dc_stream_state *stream);
+bool psr_su_set_y_granularity(struct dc *dc, struct dc_link *link,
+                             struct dc_stream_state *stream,
+                             struct psr_config *config);
 #endif /* MODULES_POWER_POWER_HELPERS_H_ */