drm/amd/display: Don't call DCN clk code for Vega
authorHarry Wentland <harry.wentland@amd.com>
Fri, 9 Jun 2017 14:12:36 +0000 (10:12 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 22:08:02 +0000 (18:08 -0400)
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Reviewed-by: Tony Cheng <Tony.Cheng@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/dce/dce_clocks.c
drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c

index 84b0860..4e3f4e5 100644 (file)
@@ -614,11 +614,13 @@ static bool dce_apply_clock_voltage_request(
        }
        if (send_request) {
 #if defined(CONFIG_DRM_AMD_DC_DCN1_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;
-               clock_voltage_req.clocks_in_khz =
+               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;
+                       clock_voltage_req.clocks_in_khz =
                                dcn_find_dcfclk_suits_all(core_dc, &clk->cur_clocks_value);
+               }
 #endif
                dm_pp_apply_clock_for_voltage_request(
                        clk->ctx, &clock_voltage_req);
index ac99d28..7c50981 100644 (file)
@@ -1633,7 +1633,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 (resource_parse_asic_id(dc->ctx->asic_id) == 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;