drm/amd/display: protect remaining FPU-code calls on dcn3.1.x
authorMelissa Wen <mwen@igalia.com>
Wed, 30 Mar 2022 23:02:04 +0000 (22:02 -0100)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 28 Apr 2022 21:44:02 +0000 (17:44 -0400)
From [1], I realized two other calls to dcn30 code are associated with
FPU operations and are not protected by DC_FP_* macros:
* dcn30_populate_dml_writeback_from_context()
* dcn30_set_mcif_arb_params()

So, since FPU-associated code is not fully isolated in dcn30, and
dcn3.1.x reuses them, let's wrap their calls properly.

Note: this patch complements the fix from [1].

[1] https://lore.kernel.org/amd-gfx/20220329082957.1662655-1-chandan.vurdigerenataraj@amd.com/

Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Melissa Wen <mwen@igalia.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c
drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.h
drivers/gpu/drm/amd/display/dc/dcn315/dcn315_resource.c
drivers/gpu/drm/amd/display/dc/dcn316/dcn316_resource.c

index d3edc9d..f3ef523 100644 (file)
@@ -1742,6 +1742,27 @@ void dcn31_calculate_wm_and_dlg(
        DC_FP_END();
 }
 
+void
+dcn31_populate_dml_writeback_from_context(struct dc *dc,
+                                         struct resource_context *res_ctx,
+                                         display_e2e_pipe_params_st *pipes)
+{
+       DC_FP_START();
+       dcn30_populate_dml_writeback_from_context(dc, res_ctx, pipes);
+       DC_FP_END();
+}
+
+void
+dcn31_set_mcif_arb_params(struct dc *dc,
+                         struct dc_state *context,
+                         display_e2e_pipe_params_st *pipes,
+                         int pipe_cnt)
+{
+       DC_FP_START();
+       dcn30_set_mcif_arb_params(dc, context, pipes, pipe_cnt);
+       DC_FP_END();
+}
+
 bool dcn31_validate_bandwidth(struct dc *dc,
                struct dc_state *context,
                bool fast_validate)
@@ -1815,8 +1836,8 @@ static struct resource_funcs dcn31_res_pool_funcs = {
        .add_stream_to_ctx = dcn30_add_stream_to_ctx,
        .add_dsc_to_stream_resource = dcn20_add_dsc_to_stream_resource,
        .remove_stream_from_ctx = dcn20_remove_stream_from_ctx,
-       .populate_dml_writeback_from_context = dcn30_populate_dml_writeback_from_context,
-       .set_mcif_arb_params = dcn30_set_mcif_arb_params,
+       .populate_dml_writeback_from_context = dcn31_populate_dml_writeback_from_context,
+       .set_mcif_arb_params = dcn31_set_mcif_arb_params,
        .find_first_free_match_stream_enc_for_link = dcn10_find_first_free_match_stream_enc_for_link,
        .acquire_post_bldn_3dlut = dcn30_acquire_post_bldn_3dlut,
        .release_post_bldn_3dlut = dcn30_release_post_bldn_3dlut,
index 1ce6509..3934580 100644 (file)
@@ -50,6 +50,15 @@ int dcn31_populate_dml_pipes_from_context(
        struct dc *dc, struct dc_state *context,
        display_e2e_pipe_params_st *pipes,
        bool fast_validate);
+void
+dcn31_populate_dml_writeback_from_context(struct dc *dc,
+                                         struct resource_context *res_ctx,
+                                         display_e2e_pipe_params_st *pipes);
+void
+dcn31_set_mcif_arb_params(struct dc *dc,
+                         struct dc_state *context,
+                         display_e2e_pipe_params_st *pipes,
+                         int pipe_cnt);
 void dcn31_update_soc_for_wm_a(struct dc *dc, struct dc_state *context);
 
 struct resource_pool *dcn31_create_resource_pool(
index e6f9312..2b42af0 100644 (file)
@@ -1726,8 +1726,8 @@ static struct resource_funcs dcn315_res_pool_funcs = {
        .add_stream_to_ctx = dcn30_add_stream_to_ctx,
        .add_dsc_to_stream_resource = dcn20_add_dsc_to_stream_resource,
        .remove_stream_from_ctx = dcn20_remove_stream_from_ctx,
-       .populate_dml_writeback_from_context = dcn30_populate_dml_writeback_from_context,
-       .set_mcif_arb_params = dcn30_set_mcif_arb_params,
+       .populate_dml_writeback_from_context = dcn31_populate_dml_writeback_from_context,
+       .set_mcif_arb_params = dcn31_set_mcif_arb_params,
        .find_first_free_match_stream_enc_for_link = dcn10_find_first_free_match_stream_enc_for_link,
        .acquire_post_bldn_3dlut = dcn30_acquire_post_bldn_3dlut,
        .release_post_bldn_3dlut = dcn30_release_post_bldn_3dlut,
index d5c1957..ef16260 100644 (file)
@@ -1728,8 +1728,8 @@ static struct resource_funcs dcn316_res_pool_funcs = {
        .add_stream_to_ctx = dcn30_add_stream_to_ctx,
        .add_dsc_to_stream_resource = dcn20_add_dsc_to_stream_resource,
        .remove_stream_from_ctx = dcn20_remove_stream_from_ctx,
-       .populate_dml_writeback_from_context = dcn30_populate_dml_writeback_from_context,
-       .set_mcif_arb_params = dcn30_set_mcif_arb_params,
+       .populate_dml_writeback_from_context = dcn31_populate_dml_writeback_from_context,
+       .set_mcif_arb_params = dcn31_set_mcif_arb_params,
        .find_first_free_match_stream_enc_for_link = dcn10_find_first_free_match_stream_enc_for_link,
        .acquire_post_bldn_3dlut = dcn30_acquire_post_bldn_3dlut,
        .release_post_bldn_3dlut = dcn30_release_post_bldn_3dlut,