]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/amd/display: Clean up some DCN1 guards
authorZeyu Fan <Zeyu.Fan@amd.com>
Tue, 25 Jul 2017 19:14:24 +0000 (15:14 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 22:15:43 +0000 (18:15 -0400)
Signed-off-by: Zeyu Fan <Zeyu.Fan@amd.com>
Reviewed-by: Charlene Liu <Charlene.Liu@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/bios/command_table_helper2.c
drivers/gpu/drm/amd/display/dc/core/dc.c
drivers/gpu/drm/amd/display/dc/core/dc_resource.c
drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c
drivers/gpu/drm/amd/display/dc/dce/dce_clocks.c
drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c
drivers/gpu/drm/amd/display/dc/gpio/hw_factory.c
drivers/gpu/drm/amd/display/dc/gpio/hw_translate.c
drivers/gpu/drm/amd/display/dc/i2caux/i2caux.c

index 84b1f515aa472cc54899d4993adade69254c100c..9084a32aab796bef9f46a4753dff18cfdb821bc6 100644 (file)
@@ -58,6 +58,7 @@ bool dal_bios_parser_init_cmd_tbl_helper2(
                *h = dal_cmd_tbl_helper_dce112_get_table2();
                return true;
 #endif
+
        case DCE_VERSION_12_0:
                *h = dal_cmd_tbl_helper_dce112_get_table2();
                return true;
index 9c2faf8e4b141774132f872e9545f49f31bcba45..bab07f8d488072ef344586529651cd5a744cc546 100644 (file)
@@ -1109,7 +1109,7 @@ bool dc_post_update_surfaces_to_stream(struct dc *dc)
 
        /* 3rd param should be true, temp w/a for RV*/
 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
-       core_dc->hwss.set_bandwidth(core_dc, context, core_dc->ctx->dce_version != DCN_VERSION_1_0);
+       core_dc->hwss.set_bandwidth(core_dc, context, core_dc->ctx->dce_version < DCN_VERSION_1_0);
 #else
        core_dc->hwss.set_bandwidth(core_dc, context, true);
 #endif
index 4403d8244407b768d219fb771142fd9da7a4d7d4..dea2943392e4bad36f5378e184e811c2b4a69ef7 100644 (file)
@@ -120,6 +120,8 @@ struct resource_pool *dc_create_resource_pool(
                        num_virtual_links, dc);
                break;
 #endif
+
+
        default:
                break;
        }
index 142b3a01c2044f001e250120a06c9dcec72e3cc4..2205491c83e9af1245c2c31c247521c4abb0cc49 100644 (file)
@@ -589,6 +589,7 @@ static uint32_t dce110_get_pix_clk_dividers(
 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
        case DCN_VERSION_1_0:
 #endif
+
                dce112_get_pix_clk_dividers_helper(clk_src,
                                pll_settings, pix_clk_params);
                break;
@@ -901,6 +902,7 @@ static bool dce110_program_pix_clk(
 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
        case DCN_VERSION_1_0:
 #endif
+
                if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO) {
                        bp_pc_params.flags.SET_GENLOCK_REF_DIV_SRC =
                                                        pll_settings->use_external_clk;
index f30cd4dff5547a3a4ef90503d264645c09850ba0..37d074f595fbffaf9748d8a45a05c34fe5ced23c 100644 (file)
@@ -614,7 +614,7 @@ static bool dce_apply_clock_voltage_request(
        }
        if (send_request) {
 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
-               if (clk->ctx->dce_version == DCN_VERSION_1_0) {
+               if (clk->ctx->dce_version >= DCN_VERSION_1_0) {
                        struct core_dc *core_dc = DC_TO_CORE(clk->ctx->dc);
                        /*use dcfclk request voltage*/
                        clock_voltage_req.clk_type = DM_PP_CLOCK_TYPE_DCFCLK;
index aa4777a8ec36f3148f09742e52fcc0050f9500ca..119365960cd0da0e8433079d389801aed134bb71 100644 (file)
@@ -1104,11 +1104,11 @@ static enum dc_status apply_single_controller_ctx_to_hw(
                        true : false);
 
        resource_build_info_frame(pipe_ctx);
-
+       dce110_update_info_frame(pipe_ctx);
        if (!pipe_ctx_old->stream) {
                core_link_enable_stream(pipe_ctx);
 
-       dce110_update_info_frame(pipe_ctx);
+
                if (dc_is_dp_signal(pipe_ctx->stream->signal))
                        dce110_unblank_stream(pipe_ctx,
                                &stream->sink->link->cur_link_settings);
@@ -1664,7 +1664,7 @@ enum dc_status dce110_apply_ctx_to_hw(
        apply_min_clocks(dc, context, &clocks_state, true);
 
 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
-       if (dc->ctx->dce_version == DCN_VERSION_1_0) {
+       if (dc->ctx->dce_version >= DCN_VERSION_1_0) {
                if (context->bw.dcn.calc_clk.fclk_khz
                                > dc->current_context->bw.dcn.cur_clk.fclk_khz) {
                        struct dm_pp_clock_for_voltage_req clock;
index 8a8b619a60a87b72924f84720bb3fc0a2be4aaed..425f1c4fa891df878fd1a4495f79be50c1df0efe 100644 (file)
@@ -84,6 +84,7 @@ bool dal_hw_factory_init(
                dal_hw_factory_dcn10_init(factory);
                return true;
 #endif
+
        default:
                ASSERT_CRITICAL(false);
                return false;
index 36c082bda4ae3afa2c3aaa5fdd1faa680d32efaa..3b55d45b6775244f8a68efd388cee925827ba2c1 100644 (file)
@@ -80,6 +80,7 @@ bool dal_hw_translate_init(
                dal_hw_translate_dcn10_init(translate);
                return true;
 #endif
+
        default:
                BREAK_TO_DEBUGGER();
                return false;
index 45e766ea79e38b99228704ae7341ea1111d6a4ea..10061cc4ba31d159ac11d47ac2860fa737abb4ab 100644 (file)
@@ -88,10 +88,11 @@ struct i2caux *dal_i2caux_create(
                return dal_i2caux_dce100_create(ctx);
        case DCE_VERSION_12_0:
                return dal_i2caux_dce120_create(ctx);
-       #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
+#if defined(CONFIG_DRM_AMD_DC_DCN1_0)
        case DCN_VERSION_1_0:
                return dal_i2caux_dcn10_create(ctx);
-       #endif
+#endif
+
        default:
                BREAK_TO_DEBUGGER();
                return NULL;