forked from Minki/linux
drm/amd/powerplay: add sclk OD support on Polaris10
This implements sclk overdrive(OD) overclocking support for Polaris10, and the maximum overdrive percentage is 20. Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
9ccd4e1346
commit
09a0426404
@ -4931,6 +4931,48 @@ static int polaris10_get_fan_control_mode(struct pp_hwmgr *hwmgr)
|
||||
CG_FDO_CTRL2, FDO_PWM_MODE);
|
||||
}
|
||||
|
||||
static int polaris10_get_sclk_od(struct pp_hwmgr *hwmgr)
|
||||
{
|
||||
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
||||
struct polaris10_single_dpm_table *sclk_table = &(data->dpm_table.sclk_table);
|
||||
struct polaris10_single_dpm_table *golden_sclk_table =
|
||||
&(data->golden_dpm_table.sclk_table);
|
||||
int value;
|
||||
|
||||
value = (sclk_table->dpm_levels[sclk_table->count - 1].value -
|
||||
golden_sclk_table->dpm_levels[golden_sclk_table->count - 1].value) *
|
||||
100 /
|
||||
golden_sclk_table->dpm_levels[golden_sclk_table->count - 1].value;
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
static int polaris10_set_sclk_od(struct pp_hwmgr *hwmgr, uint32_t value)
|
||||
{
|
||||
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
||||
struct polaris10_single_dpm_table *golden_sclk_table =
|
||||
&(data->golden_dpm_table.sclk_table);
|
||||
struct pp_power_state *ps;
|
||||
struct polaris10_power_state *polaris10_ps;
|
||||
|
||||
if (value > 20)
|
||||
value = 20;
|
||||
|
||||
ps = hwmgr->request_ps;
|
||||
|
||||
if (ps == NULL)
|
||||
return -EINVAL;
|
||||
|
||||
polaris10_ps = cast_phw_polaris10_power_state(&ps->hardware);
|
||||
|
||||
polaris10_ps->performance_levels[polaris10_ps->performance_level_count - 1].engine_clock =
|
||||
golden_sclk_table->dpm_levels[golden_sclk_table->count - 1].value *
|
||||
value / 100 +
|
||||
golden_sclk_table->dpm_levels[golden_sclk_table->count - 1].value;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct pp_hwmgr_func polaris10_hwmgr_funcs = {
|
||||
.backend_init = &polaris10_hwmgr_backend_init,
|
||||
.backend_fini = &polaris10_hwmgr_backend_fini,
|
||||
@ -4974,6 +5016,8 @@ static const struct pp_hwmgr_func polaris10_hwmgr_funcs = {
|
||||
.force_clock_level = polaris10_force_clock_level,
|
||||
.print_clock_levels = polaris10_print_clock_levels,
|
||||
.enable_per_cu_power_gating = polaris10_phm_enable_per_cu_power_gating,
|
||||
.get_sclk_od = polaris10_get_sclk_od,
|
||||
.set_sclk_od = polaris10_set_sclk_od,
|
||||
};
|
||||
|
||||
int polaris10_hwmgr_init(struct pp_hwmgr *hwmgr)
|
||||
|
Loading…
Reference in New Issue
Block a user