display_pipe_configuration(v);
                calc_wm_sets_and_perf_params(context, v);
-               context->bw.dcn.calc_clk.fclk_khz = (int)(bw_consumed * 1000000 /
+               context->bw.dcn.clk.fclk_khz = (int)(bw_consumed * 1000000 /
                                (ddr4_dram_factor_single_Channel * v->number_of_channels));
                if (bw_consumed == v->fabric_and_dram_bandwidth_vmin0p65) {
-                       context->bw.dcn.calc_clk.fclk_khz = (int)(bw_consumed * 1000000 / 32);
+                       context->bw.dcn.clk.fclk_khz = (int)(bw_consumed * 1000000 / 32);
                }
 
-               context->bw.dcn.calc_clk.dcfclk_deep_sleep_khz = (int)(v->dcf_clk_deep_sleep * 1000);
-               context->bw.dcn.calc_clk.dcfclk_khz = (int)(v->dcfclk * 1000);
+               context->bw.dcn.clk.dcfclk_deep_sleep_khz = (int)(v->dcf_clk_deep_sleep * 1000);
+               context->bw.dcn.clk.dcfclk_khz = (int)(v->dcfclk * 1000);
 
-               context->bw.dcn.calc_clk.dispclk_khz = (int)(v->dispclk * 1000);
+               context->bw.dcn.clk.dispclk_khz = (int)(v->dispclk * 1000);
                if (dc->debug.max_disp_clk == true)
-                       context->bw.dcn.calc_clk.dispclk_khz = (int)(dc->dcn_soc->max_dispclk_vmax0p9 * 1000);
+                       context->bw.dcn.clk.dispclk_khz = (int)(dc->dcn_soc->max_dispclk_vmax0p9 * 1000);
 
-               if (context->bw.dcn.calc_clk.dispclk_khz <
+               if (context->bw.dcn.clk.dispclk_khz <
                                dc->debug.min_disp_clk_khz) {
-                       context->bw.dcn.calc_clk.dispclk_khz =
+                       context->bw.dcn.clk.dispclk_khz =
                                        dc->debug.min_disp_clk_khz;
                }
 
-               context->bw.dcn.calc_clk.dppclk_khz = context->bw.dcn.calc_clk.dispclk_khz / v->dispclk_dppclk_ratio;
-               context->bw.dcn.calc_clk.phyclk_khz = v->phyclk_per_state[v->voltage_level];
+               context->bw.dcn.clk.dppclk_khz = context->bw.dcn.clk.dispclk_khz / v->dispclk_dppclk_ratio;
+               context->bw.dcn.clk.phyclk_khz = v->phyclk_per_state[v->voltage_level];
                switch (v->voltage_level) {
                case 0:
-                       context->bw.dcn.calc_clk.max_supported_dppclk_khz =
+                       context->bw.dcn.clk.max_supported_dppclk_khz =
                                        (int)(dc->dcn_soc->max_dppclk_vmin0p65 * 1000);
                        break;
                case 1:
-                       context->bw.dcn.calc_clk.max_supported_dppclk_khz =
+                       context->bw.dcn.clk.max_supported_dppclk_khz =
                                        (int)(dc->dcn_soc->max_dppclk_vmid0p72 * 1000);
                        break;
                case 2:
-                       context->bw.dcn.calc_clk.max_supported_dppclk_khz =
+                       context->bw.dcn.clk.max_supported_dppclk_khz =
                                        (int)(dc->dcn_soc->max_dppclk_vnom0p8 * 1000);
                        break;
                default:
-                       context->bw.dcn.calc_clk.max_supported_dppclk_khz =
+                       context->bw.dcn.clk.max_supported_dppclk_khz =
                                        (int)(dc->dcn_soc->max_dppclk_vmax0p9 * 1000);
                        break;
                }
 
        DC_LOGGER_INIT(dc->ctx->logger);
        CLOCK_TRACE("Current: dispclk_khz:%d  max_dppclk_khz:%d  dcfclk_khz:%d\n"
                        "dcfclk_deep_sleep_khz:%d  fclk_khz:%d  socclk_khz:%d\n",
-                       context->bw.dcn.calc_clk.dispclk_khz,
-                       context->bw.dcn.calc_clk.dppclk_khz,
-                       context->bw.dcn.calc_clk.dcfclk_khz,
-                       context->bw.dcn.calc_clk.dcfclk_deep_sleep_khz,
-                       context->bw.dcn.calc_clk.fclk_khz,
-                       context->bw.dcn.calc_clk.socclk_khz);
+                       context->bw.dcn.clk.dispclk_khz,
+                       context->bw.dcn.clk.dppclk_khz,
+                       context->bw.dcn.clk.dcfclk_khz,
+                       context->bw.dcn.clk.dcfclk_deep_sleep_khz,
+                       context->bw.dcn.clk.fclk_khz,
+                       context->bw.dcn.clk.socclk_khz);
        CLOCK_TRACE("Calculated: dispclk_khz:%d  max_dppclk_khz:%d  dcfclk_khz:%d\n"
                        "dcfclk_deep_sleep_khz:%d  fclk_khz:%d  socclk_khz:%d\n",
-                       context->bw.dcn.calc_clk.dispclk_khz,
-                       context->bw.dcn.calc_clk.dppclk_khz,
-                       context->bw.dcn.calc_clk.dcfclk_khz,
-                       context->bw.dcn.calc_clk.dcfclk_deep_sleep_khz,
-                       context->bw.dcn.calc_clk.fclk_khz,
-                       context->bw.dcn.calc_clk.socclk_khz);
+                       context->bw.dcn.clk.dispclk_khz,
+                       context->bw.dcn.clk.dppclk_khz,
+                       context->bw.dcn.clk.dcfclk_khz,
+                       context->bw.dcn.clk.dcfclk_deep_sleep_khz,
+                       context->bw.dcn.clk.fclk_khz,
+                       context->bw.dcn.clk.socclk_khz);
 #endif
 }
 
 
        DTN_INFO("\nCALCULATED Clocks: dcfclk_khz:%d  dcfclk_deep_sleep_khz:%d  dispclk_khz:%d\n"
                "dppclk_khz:%d  max_supported_dppclk_khz:%d  fclk_khz:%d  socclk_khz:%d\n\n",
-                       dc->current_state->bw.dcn.calc_clk.dcfclk_khz,
-                       dc->current_state->bw.dcn.calc_clk.dcfclk_deep_sleep_khz,
-                       dc->current_state->bw.dcn.calc_clk.dispclk_khz,
-                       dc->current_state->bw.dcn.calc_clk.dppclk_khz,
-                       dc->current_state->bw.dcn.calc_clk.max_supported_dppclk_khz,
-                       dc->current_state->bw.dcn.calc_clk.fclk_khz,
-                       dc->current_state->bw.dcn.calc_clk.socclk_khz);
+                       dc->current_state->bw.dcn.clk.dcfclk_khz,
+                       dc->current_state->bw.dcn.clk.dcfclk_deep_sleep_khz,
+                       dc->current_state->bw.dcn.clk.dispclk_khz,
+                       dc->current_state->bw.dcn.clk.dppclk_khz,
+                       dc->current_state->bw.dcn.clk.max_supported_dppclk_khz,
+                       dc->current_state->bw.dcn.clk.fclk_khz,
+                       dc->current_state->bw.dcn.clk.socclk_khz);
 
        log_mpc_crc(dc);
 
         * divided by 2
         */
        if (plane_state->update_flags.bits.full_update) {
-               bool should_divided_by_2 = context->bw.dcn.calc_clk.dppclk_khz <=
-                               context->bw.dcn.cur_clk.dispclk_khz / 2;
+               bool should_divided_by_2 = context->bw.dcn.clk.dppclk_khz <=
+                               dc->res_pool->dccg->clks.dispclk_khz / 2;
 
                dpp->funcs->dpp_dppclk_control(
                                dpp,
                                should_divided_by_2,
                                true);
 
-               dc->current_state->bw.dcn.cur_clk.dppclk_khz =
-                               should_divided_by_2 ?
-                               context->bw.dcn.cur_clk.dispclk_khz / 2 :
-                               context->bw.dcn.cur_clk.dispclk_khz;
+               dc->res_pool->dccg->clks.dppclk_khz = should_divided_by_2 ?
+                                               dc->res_pool->dccg->clks.dispclk_khz / 2 :
+                                                       dc->res_pool->dccg->clks.dispclk_khz;
        }
 
        /* TODO: Need input parameter to tell current DCHUB pipe tie to which OTG
        pp_display_cfg->min_engine_clock_deep_sleep_khz = dc->res_pool->dccg->clks.dcfclk_deep_sleep_khz;
        pp_display_cfg->min_dcfc_deep_sleep_clock_khz = dc->res_pool->dccg->clks.dcfclk_deep_sleep_khz;
        pp_display_cfg->min_dcfclock_khz = dc->res_pool->dccg->clks.dcfclk_khz;
-       pp_display_cfg->disp_clk_khz = context->bw.dcn.cur_clk.dispclk_khz;
+       pp_display_cfg->disp_clk_khz = dc->res_pool->dccg->clks.dispclk_khz;
        dce110_fill_display_configs(context, pp_display_cfg);
 
        if (memcmp(&dc->prev_display_config, pp_display_cfg, sizeof(
 
 static int determine_dppclk_threshold(struct dc *dc, struct dc_state *context)
 {
-       bool request_dpp_div = context->bw.dcn.calc_clk.dispclk_khz >
-                       context->bw.dcn.calc_clk.dppclk_khz;
-       bool dispclk_increase = context->bw.dcn.calc_clk.dispclk_khz >
-                       context->bw.dcn.cur_clk.dispclk_khz;
-       int disp_clk_threshold = context->bw.dcn.calc_clk.max_supported_dppclk_khz;
-       bool cur_dpp_div = context->bw.dcn.cur_clk.dispclk_khz >
-                       context->bw.dcn.cur_clk.dppclk_khz;
+       bool request_dpp_div = context->bw.dcn.clk.dispclk_khz >
+                       context->bw.dcn.clk.dppclk_khz;
+       bool dispclk_increase = context->bw.dcn.clk.dispclk_khz >
+                       dc->res_pool->dccg->clks.dispclk_khz;
+       int disp_clk_threshold = context->bw.dcn.clk.max_supported_dppclk_khz;
+       bool cur_dpp_div = dc->res_pool->dccg->clks.dispclk_khz >
+                       dc->res_pool->dccg->clks.dppclk_khz;
 
        /* increase clock, looking for div is 0 for current, request div is 1*/
        if (dispclk_increase) {
                /* already divided by 2, no need to reach target clk with 2 steps*/
                if (cur_dpp_div)
-                       return context->bw.dcn.calc_clk.dispclk_khz;
+                       return context->bw.dcn.clk.dispclk_khz;
 
                /* request disp clk is lower than maximum supported dpp clk,
                 * no need to reach target clk with two steps.
                 */
-               if (context->bw.dcn.calc_clk.dispclk_khz <= disp_clk_threshold)
-                       return context->bw.dcn.calc_clk.dispclk_khz;
+               if (context->bw.dcn.clk.dispclk_khz <= disp_clk_threshold)
+                       return context->bw.dcn.clk.dispclk_khz;
 
                /* target dpp clk not request divided by 2, still within threshold */
                if (!request_dpp_div)
-                       return context->bw.dcn.calc_clk.dispclk_khz;
+                       return context->bw.dcn.clk.dispclk_khz;
 
        } else {
                /* decrease clock, looking for current dppclk divided by 2,
 
                /* current dpp clk not divided by 2, no need to ramp*/
                if (!cur_dpp_div)
-                       return context->bw.dcn.calc_clk.dispclk_khz;
+                       return context->bw.dcn.clk.dispclk_khz;
 
                /* current disp clk is lower than current maximum dpp clk,
                 * no need to ramp
                 */
-               if (context->bw.dcn.cur_clk.dispclk_khz <= disp_clk_threshold)
-                       return context->bw.dcn.calc_clk.dispclk_khz;
+               if (dc->res_pool->dccg->clks.dispclk_khz <= disp_clk_threshold)
+                       return context->bw.dcn.clk.dispclk_khz;
 
                /* request dpp clk need to be divided by 2 */
                if (request_dpp_div)
-                       return context->bw.dcn.calc_clk.dispclk_khz;
+                       return context->bw.dcn.clk.dispclk_khz;
        }
 
        return disp_clk_threshold;
 static void ramp_up_dispclk_with_dpp(struct dc *dc, struct dc_state *context)
 {
        int i;
-       bool request_dpp_div = context->bw.dcn.calc_clk.dispclk_khz >
-                               context->bw.dcn.calc_clk.dppclk_khz;
+       bool request_dpp_div = context->bw.dcn.clk.dispclk_khz >
+                               context->bw.dcn.clk.dppclk_khz;
 
        int dispclk_to_dpp_threshold = determine_dppclk_threshold(dc, context);
 
        }
 
        /* If target clk not same as dppclk threshold, set to target clock */
-       if (dispclk_to_dpp_threshold != context->bw.dcn.calc_clk.dispclk_khz) {
+       if (dispclk_to_dpp_threshold != context->bw.dcn.clk.dispclk_khz) {
                dc->res_pool->dccg->funcs->set_dispclk(
                                dc->res_pool->dccg,
-                               context->bw.dcn.calc_clk.dispclk_khz);
+                               context->bw.dcn.clk.dispclk_khz);
        }
 
-       context->bw.dcn.cur_clk.dispclk_khz =
-                       context->bw.dcn.calc_clk.dispclk_khz;
-       context->bw.dcn.cur_clk.dppclk_khz =
-                       context->bw.dcn.calc_clk.dppclk_khz;
-       context->bw.dcn.cur_clk.max_supported_dppclk_khz =
-                       context->bw.dcn.calc_clk.max_supported_dppclk_khz;
+       dc->res_pool->dccg->clks.dispclk_khz =
+                       context->bw.dcn.clk.dispclk_khz;
+       dc->res_pool->dccg->clks.dppclk_khz =
+                       context->bw.dcn.clk.dppclk_khz;
+       dc->res_pool->dccg->clks.max_supported_dppclk_khz =
+                       context->bw.dcn.clk.max_supported_dppclk_khz;
 }
 
 static inline bool should_set_clock(bool safe_to_lower, int calc_clk, int cur_clk)
                return;
 
        if (context->stream_count == 0)
-               context->bw.dcn.calc_clk.phyclk_khz = 0;
+               context->bw.dcn.clk.phyclk_khz = 0;
 
        dc->res_pool->dccg->funcs->update_clocks(
                        dc->res_pool->dccg,
-                       &context->bw.dcn.calc_clk,
+                       &context->bw.dcn.clk,
                        decrease_allowed);
 
        /* make sure dcf clk is before dpp clk to
         */
        if (should_set_clock(
                        decrease_allowed,
-                       context->bw.dcn.calc_clk.dispclk_khz,
-                       dc->current_state->bw.dcn.cur_clk.dispclk_khz)) {
+                       context->bw.dcn.clk.dispclk_khz,
+                       dc->res_pool->dccg->clks.dispclk_khz)) {
 
                ramp_up_dispclk_with_dpp(dc, context);
        }