/* Calculate the current DFS clock, in kHz.*/
        dp_ref_clk_khz = (DENTIST_DIVIDER_RANGE_SCALE_FACTOR
-               * clk_mgr->dentist_vco_freq_khz) / target_div;
+               * clk_mgr->base.dentist_vco_freq_khz) / target_div;
 
        return dce_adjust_dp_ref_freq_for_ss(clk_mgr, dp_ref_clk_khz);
 }
        /* Make sure requested clock isn't lower than minimum threshold*/
        if (requested_clk_khz > 0)
                requested_clk_khz = max(requested_clk_khz,
-                               clk_mgr_dce->dentist_vco_freq_khz / 64);
+                               clk_mgr_dce->base.dentist_vco_freq_khz / 64);
 
        /* Prepare to program display clock*/
        pxl_clk_params.target_pixel_clock_100hz = requested_clk_khz * 10;
        int i;
 
        if (bp->integrated_info)
-               clk_mgr_dce->dentist_vco_freq_khz = bp->integrated_info->dentist_vco_freq;
-       if (clk_mgr_dce->dentist_vco_freq_khz == 0) {
-               clk_mgr_dce->dentist_vco_freq_khz = bp->fw_info.smu_gpu_pll_output_freq;
-               if (clk_mgr_dce->dentist_vco_freq_khz == 0)
-                       clk_mgr_dce->dentist_vco_freq_khz = 3600000;
+               clk_mgr_dce->base.dentist_vco_freq_khz = bp->integrated_info->dentist_vco_freq;
+       if (clk_mgr_dce->base.dentist_vco_freq_khz == 0) {
+               clk_mgr_dce->base.dentist_vco_freq_khz = bp->fw_info.smu_gpu_pll_output_freq;
+               if (clk_mgr_dce->base.dentist_vco_freq_khz == 0)
+                       clk_mgr_dce->base.dentist_vco_freq_khz = 3600000;
        }
 
        /*update the maximum display clock for each power state*/
 
        /* Make sure requested clock isn't lower than minimum threshold*/
        if (requested_clk_khz > 0)
                requested_clk_khz = max(requested_clk_khz,
-                               clk_mgr_dce->dentist_vco_freq_khz / 62);
+                               clk_mgr_dce->base.dentist_vco_freq_khz / 62);
 
        dce_clk_params.target_clock_frequency = requested_clk_khz;
        dce_clk_params.pll_id = CLOCK_SOURCE_ID_DFS;
        /* Make sure requested clock isn't lower than minimum threshold*/
        if (requested_clk_khz > 0)
                requested_clk_khz = max(requested_clk_khz,
-                               clk_mgr->dentist_vco_freq_khz / 62);
+                               clk_mgr->base.dentist_vco_freq_khz / 62);
 
        dce_clk_params.target_clock_frequency = requested_clk_khz;
        dce_clk_params.pll_id = CLOCK_SOURCE_ID_DFS;
 
        clk_mgr->base.dprefclk_khz = 600000;
 
        if (bp->integrated_info)
-               clk_mgr->dentist_vco_freq_khz = bp->integrated_info->dentist_vco_freq;
-       if (bp->fw_info_valid && clk_mgr->dentist_vco_freq_khz == 0) {
-               clk_mgr->dentist_vco_freq_khz = bp->fw_info.smu_gpu_pll_output_freq;
-               if (clk_mgr->dentist_vco_freq_khz == 0)
-                       clk_mgr->dentist_vco_freq_khz = 3600000;
+               clk_mgr->base.dentist_vco_freq_khz = bp->integrated_info->dentist_vco_freq;
+       if (bp->fw_info_valid && clk_mgr->base.dentist_vco_freq_khz == 0) {
+               clk_mgr->base.dentist_vco_freq_khz = bp->fw_info.smu_gpu_pll_output_freq;
+               if (clk_mgr->base.dentist_vco_freq_khz == 0)
+                       clk_mgr->base.dentist_vco_freq_khz = 3600000;
        }
 
        if (!debug->disable_dfs_bypass && bp->integrated_info)
 
 void dcn20_update_clocks_update_dentist(struct clk_mgr_internal *clk_mgr)
 {
        int dpp_divider = DENTIST_DIVIDER_RANGE_SCALE_FACTOR
-                       * clk_mgr->dentist_vco_freq_khz / clk_mgr->base.clks.dppclk_khz;
+                       * clk_mgr->base.dentist_vco_freq_khz / clk_mgr->base.clks.dppclk_khz;
        int disp_divider = DENTIST_DIVIDER_RANGE_SCALE_FACTOR
-                       * clk_mgr->dentist_vco_freq_khz / clk_mgr->base.clks.dispclk_khz;
+                       * clk_mgr->base.dentist_vco_freq_khz / clk_mgr->base.clks.dispclk_khz;
 
        uint32_t dppclk_wdivider = dentist_get_did_from_divider(dpp_divider);
        uint32_t dispclk_wdivider = dentist_get_did_from_divider(disp_divider);
 
        if (IS_FPGA_MAXIMUS_DC(ctx->dce_environment)) {
                dcn2_funcs.update_clocks = dcn2_update_clocks_fpga;
-               clk_mgr->dentist_vco_freq_khz = 3850000;
+               clk_mgr->base.dentist_vco_freq_khz = 3850000;
 
        } else {
                /* DFS Slice 2 should be used for DPREFCLK */
                pll_req = dc_fixpt_mul_int(pll_req, 100000);
 
                /* integer part is now VCO frequency in kHz */
-               clk_mgr->dentist_vco_freq_khz = dc_fixpt_floor(pll_req);
+               clk_mgr->base.dentist_vco_freq_khz = dc_fixpt_floor(pll_req);
 
                /* in case we don't get a value from the register, use default */
-               if (clk_mgr->dentist_vco_freq_khz == 0)
-                       clk_mgr->dentist_vco_freq_khz = 3850000;
+               if (clk_mgr->base.dentist_vco_freq_khz == 0)
+                       clk_mgr->base.dentist_vco_freq_khz = 3850000;
 
                /* Calculate the DPREFCLK in kHz.*/
                clk_mgr->base.dprefclk_khz = (DENTIST_DIVIDER_RANGE_SCALE_FACTOR
-                       * clk_mgr->dentist_vco_freq_khz) / target_div;
+                       * clk_mgr->base.dentist_vco_freq_khz) / target_div;
        }
        //Integrated_info table does not exist on dGPU projects so should not be referenced
        //anywhere in code for dGPUs.
 
        }
 };
 
-void rn_build_watermark_ranges(struct clk_bw_params *bw_params, struct pp_smu_wm_range_sets *ranges)
+static void rn_build_watermark_ranges(struct clk_bw_params *bw_params, struct pp_smu_wm_range_sets *ranges)
 {
        int i, num_valid_sets;
 
        return 0;
 }
 
-void rn_clk_mgr_helper_populate_bw_params(struct clk_bw_params *bw_params, struct dpm_clocks *clock_table, struct hw_asic_id *asic_id)
+static void rn_clk_mgr_helper_populate_bw_params(struct clk_bw_params *bw_params, struct dpm_clocks *clock_table, struct hw_asic_id *asic_id)
 {
        int i, j = 0;
 
 
        if (IS_FPGA_MAXIMUS_DC(ctx->dce_environment)) {
                dcn21_funcs.update_clocks = dcn2_update_clocks_fpga;
-               clk_mgr->dentist_vco_freq_khz = 3600000;
+               clk_mgr->base.dentist_vco_freq_khz = 3600000;
                clk_mgr->base.dprefclk_khz = 600000;
        } else {
                struct clk_log_info log_info = {0};
 
                /* TODO: Check we get what we expect during bringup */
-               clk_mgr->dentist_vco_freq_khz = get_vco_frequency_from_reg(clk_mgr);
+               clk_mgr->base.dentist_vco_freq_khz = get_vco_frequency_from_reg(clk_mgr);
 
                /* in case we don't get a value from the register, use default */
-               if (clk_mgr->dentist_vco_freq_khz == 0)
-                       clk_mgr->dentist_vco_freq_khz = 3600000;
+               if (clk_mgr->base.dentist_vco_freq_khz == 0)
+                       clk_mgr->base.dentist_vco_freq_khz = 3600000;
 
                rn_dump_clk_registers(&s, &clk_mgr->base, &log_info);
                /* Convert dprefclk units from MHz to KHz */
 
        uint32_t CLK1_CLK0_CURRENT_CNT; /* DPREFCLK */
 };
 
-void rn_build_watermark_ranges(
-               struct clk_bw_params *bw_params,
-               struct pp_smu_wm_range_sets *ranges);
-void rn_clk_mgr_helper_populate_bw_params(
-               struct clk_bw_params *bw_params,
-               struct dpm_clocks *clock_table,
-               struct hw_asic_id *asic_id);
 void rn_clk_mgr_construct(struct dc_context *ctx,
                struct clk_mgr_internal *clk_mgr,
                struct pp_smu_funcs *pp_smu,
 
        }
 }
 
-static void cap_soc_clocks(
+void dcn20_cap_soc_clocks(
                struct _vcs_dpi_soc_bounding_box_st *bb,
                struct pp_smu_nv_clock_table max_clocks)
 {
        }
 }
 
-static void update_bounding_box(struct dc *dc, struct _vcs_dpi_soc_bounding_box_st *bb,
+void dcn20_update_bounding_box(struct dc *dc, struct _vcs_dpi_soc_bounding_box_st *bb,
                struct pp_smu_nv_clock_table *max_clocks, unsigned int *uclk_states, unsigned int num_states)
 {
        struct _vcs_dpi_voltage_scaling_st calculated_states[MAX_CLOCK_LIMIT_STATES];
        bb->clock_limits[num_calculated_states].state = bb->num_states;
 }
 
-static void patch_bounding_box(struct dc *dc, struct _vcs_dpi_soc_bounding_box_st *bb)
+void dcn20_patch_bounding_box(struct dc *dc, struct _vcs_dpi_soc_bounding_box_st *bb)
 {
        kernel_fpu_begin();
        if ((int)(bb->sr_exit_time_us * 1000) != dc->bb_overrides.sr_exit_time_ns
                }
 
                if (clock_limits_available && uclk_states_available && num_states)
-                       update_bounding_box(dc, loaded_bb, &max_clocks, uclk_states, num_states);
+                       dcn20_update_bounding_box(dc, loaded_bb, &max_clocks, uclk_states, num_states);
                else if (clock_limits_available)
-                       cap_soc_clocks(loaded_bb, max_clocks);
+                       dcn20_cap_soc_clocks(loaded_bb, max_clocks);
        }
 
        loaded_ip->max_num_otg = pool->base.res_cap->num_timing_generator;
        loaded_ip->max_num_dpp = pool->base.pipe_count;
-       patch_bounding_box(dc, loaded_bb);
+       dcn20_patch_bounding_box(dc, loaded_bb);
 
        return true;
 }
 
        struct dc_context *ctx, uint32_t inst);
 void dcn20_dsc_destroy(struct display_stream_compressor **dsc);
 
+void dcn20_patch_bounding_box(struct dc *dc, struct _vcs_dpi_soc_bounding_box_st *bb);
+void dcn20_cap_soc_clocks(
+               struct _vcs_dpi_soc_bounding_box_st *bb,
+               struct pp_smu_nv_clock_table max_clocks);
+void dcn20_update_bounding_box(struct dc *dc, struct _vcs_dpi_soc_bounding_box_st *bb,
+               struct pp_smu_nv_clock_table *max_clocks, unsigned int *uclk_states, unsigned int num_states);
 struct hubp *dcn20_hubp_create(
        struct dc_context *ctx,
        uint32_t inst);
 
 struct clk_bw_params {
        unsigned int vram_type;
        unsigned int num_channels;
-       unsigned int dispclk_vco_khz;
        struct clk_limit_table clk_table;
        struct wm_table wm_table;
 };
        struct dc_clocks clks;
        bool psr_allow_active_cache;
        int dprefclk_khz; // Used by program pixel clock in clock source funcs, need to figureout where this goes
+       int dentist_vco_freq_khz;
 #ifdef CONFIG_DRM_AMD_DC_DCN2_1
        struct clk_bw_params *bw_params;
 #endif
 
        struct state_dependent_clocks max_clks_by_state[DM_PP_CLOCKS_MAX_STATES];
 
        /*TODO: figure out which of the below fields should be here vs in asic specific portion */
-       int dentist_vco_freq_khz;
-
        /* Cache the status of DFS-bypass feature*/
        bool dfs_bypass_enabled;
        /* True if the DFS-bypass feature is enabled and active. */