drm/radeon: Add implementation of get_current_vddc for Sumo
authorSandeep Raghuraman <sandy.8925@gmail.com>
Fri, 9 Oct 2020 07:46:09 +0000 (13:16 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 27 Oct 2020 21:43:42 +0000 (17:43 -0400)
Add implementation of get_current_vddc() callback for Sumo.

Signed-off-by: Sandeep Raghuraman <sandy.8925@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon_asic.c
drivers/gpu/drm/radeon/radeon_asic.h
drivers/gpu/drm/radeon/sumo_dpm.c

index 495700d..8becbe0 100644 (file)
@@ -1513,6 +1513,7 @@ static struct radeon_asic sumo_asic = {
                .force_performance_level = &sumo_dpm_force_performance_level,
                .get_current_sclk = &sumo_dpm_get_current_sclk,
                .get_current_mclk = &sumo_dpm_get_current_mclk,
+               .get_current_vddc = &sumo_dpm_get_current_vddc,
        },
        .pflip = {
                .page_flip = &evergreen_page_flip,
index a74fa18..24644da 100644 (file)
@@ -596,6 +596,7 @@ int sumo_dpm_force_performance_level(struct radeon_device *rdev,
                                     enum radeon_dpm_forced_level level);
 u32 sumo_dpm_get_current_sclk(struct radeon_device *rdev);
 u32 sumo_dpm_get_current_mclk(struct radeon_device *rdev);
+u16 sumo_dpm_get_current_vddc(struct radeon_device *rdev);
 
 /*
  * cayman
index b95d5d3..f74f381 100644 (file)
@@ -1865,6 +1865,26 @@ u32 sumo_dpm_get_current_mclk(struct radeon_device *rdev)
        return pi->sys_info.bootup_uma_clk;
 }
 
+u16 sumo_dpm_get_current_vddc(struct radeon_device *rdev)
+{
+       struct sumo_power_info *pi = sumo_get_pi(rdev);
+       struct radeon_ps *rps = &pi->current_rps;
+       struct sumo_ps *ps = sumo_get_ps(rps);
+       struct sumo_pl *pl;
+       u32 current_index =
+               (RREG32(TARGET_AND_CURRENT_PROFILE_INDEX) & CURR_INDEX_MASK) >>
+               CURR_INDEX_SHIFT;
+
+       if (current_index == BOOST_DPM_LEVEL) {
+               pl = &pi->boost_pl;
+       } else if (current_index >= ps->num_levels) {
+               return 0;
+       } else {
+               pl = &ps->levels[current_index];
+       }
+       return sumo_convert_voltage_index_to_value(rdev, pl->vddc_index);
+}
+
 void sumo_dpm_fini(struct radeon_device *rdev)
 {
        int i;