Commit 7dd67c0d authored by Evan Quan's avatar Evan Quan Committed by Alex Deucher

drm/amd/powerplay: initialize vega20 overdrive settings

The initialized overdrive settings are taken from vbios and SMU(
by PPSMC_MSG_TransferTableSmu2Dram).
Signed-off-by: default avatarEvan Quan <evan.quan@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent bc9b8c45
...@@ -306,7 +306,7 @@ struct vega20_registry_data { ...@@ -306,7 +306,7 @@ struct vega20_registry_data {
uint8_t led_dpm_enabled; uint8_t led_dpm_enabled;
uint8_t fan_control_support; uint8_t fan_control_support;
uint8_t ulv_support; uint8_t ulv_support;
uint8_t odn_feature_enable; uint8_t od8_feature_enable;
uint8_t disable_water_mark; uint8_t disable_water_mark;
uint8_t disable_workload_policy; uint8_t disable_workload_policy;
uint32_t force_workload_policy_mask; uint32_t force_workload_policy_mask;
...@@ -377,6 +377,54 @@ struct vega20_odn_data { ...@@ -377,6 +377,54 @@ struct vega20_odn_data {
struct vega20_odn_temp_table odn_temp_table; struct vega20_odn_temp_table odn_temp_table;
}; };
enum OD8_FEATURE_ID
{
OD8_GFXCLK_LIMITS = 1 << 0,
OD8_GFXCLK_CURVE = 1 << 1,
OD8_UCLK_MAX = 1 << 2,
OD8_POWER_LIMIT = 1 << 3,
OD8_ACOUSTIC_LIMIT_SCLK = 1 << 4, //FanMaximumRpm
OD8_FAN_SPEED_MIN = 1 << 5, //FanMinimumPwm
OD8_TEMPERATURE_FAN = 1 << 6, //FanTargetTemperature
OD8_TEMPERATURE_SYSTEM = 1 << 7, //MaxOpTemp
OD8_MEMORY_TIMING_TUNE = 1 << 8,
OD8_FAN_ZERO_RPM_CONTROL = 1 << 9
};
enum OD8_SETTING_ID
{
OD8_SETTING_GFXCLK_FMIN = 0,
OD8_SETTING_GFXCLK_FMAX,
OD8_SETTING_GFXCLK_FREQ1,
OD8_SETTING_GFXCLK_VOLTAGE1,
OD8_SETTING_GFXCLK_FREQ2,
OD8_SETTING_GFXCLK_VOLTAGE2,
OD8_SETTING_GFXCLK_FREQ3,
OD8_SETTING_GFXCLK_VOLTAGE3,
OD8_SETTING_UCLK_FMAX,
OD8_SETTING_POWER_PERCENTAGE,
OD8_SETTING_FAN_ACOUSTIC_LIMIT,
OD8_SETTING_FAN_MIN_SPEED,
OD8_SETTING_FAN_TARGET_TEMP,
OD8_SETTING_OPERATING_TEMP_MAX,
OD8_SETTING_AC_TIMING,
OD8_SETTING_FAN_ZERO_RPM_CONTROL,
OD8_SETTING_COUNT
};
struct vega20_od8_single_setting {
uint32_t feature_id;
int32_t min_value;
int32_t max_value;
int32_t current_value;
int32_t default_value;
};
struct vega20_od8_settings {
uint32_t overdrive8_capabilities;
struct vega20_od8_single_setting od8_settings_array[OD8_SETTING_COUNT];
};
struct vega20_hwmgr { struct vega20_hwmgr {
struct vega20_dpm_table dpm_table; struct vega20_dpm_table dpm_table;
struct vega20_dpm_table golden_dpm_table; struct vega20_dpm_table golden_dpm_table;
...@@ -452,6 +500,9 @@ struct vega20_hwmgr { ...@@ -452,6 +500,9 @@ struct vega20_hwmgr {
/* ---- Overdrive next setting ---- */ /* ---- Overdrive next setting ---- */
struct vega20_odn_data odn_data; struct vega20_odn_data odn_data;
/* ---- Overdrive8 Setting ---- */
struct vega20_od8_settings od8_settings;
/* ---- Workload Mask ---- */ /* ---- Workload Mask ---- */
uint32_t workload_mask; uint32_t workload_mask;
......
...@@ -664,18 +664,18 @@ static int set_platform_caps(struct pp_hwmgr *hwmgr, uint32_t powerplay_caps) ...@@ -664,18 +664,18 @@ static int set_platform_caps(struct pp_hwmgr *hwmgr, uint32_t powerplay_caps)
static int copy_clock_limits_array( static int copy_clock_limits_array(
struct pp_hwmgr *hwmgr, struct pp_hwmgr *hwmgr,
uint32_t **pptable_info_array, uint32_t **pptable_info_array,
const uint32_t *pptable_array) const uint32_t *pptable_array,
uint32_t power_saving_clock_count)
{ {
uint32_t array_size, i; uint32_t array_size, i;
uint32_t *table; uint32_t *table;
array_size = sizeof(uint32_t) * ATOM_VEGA20_PPCLOCK_COUNT; array_size = sizeof(uint32_t) * power_saving_clock_count;
table = kzalloc(array_size, GFP_KERNEL); table = kzalloc(array_size, GFP_KERNEL);
if (NULL == table) if (NULL == table)
return -ENOMEM; return -ENOMEM;
for (i = 0; i < ATOM_VEGA20_PPCLOCK_COUNT; i++) for (i = 0; i < power_saving_clock_count; i++)
table[i] = pptable_array[i]; table[i] = pptable_array[i];
*pptable_info_array = table; *pptable_info_array = table;
...@@ -686,22 +686,52 @@ static int copy_clock_limits_array( ...@@ -686,22 +686,52 @@ static int copy_clock_limits_array(
static int copy_overdrive_settings_limits_array( static int copy_overdrive_settings_limits_array(
struct pp_hwmgr *hwmgr, struct pp_hwmgr *hwmgr,
uint32_t **pptable_info_array, uint32_t **pptable_info_array,
const uint32_t *pptable_array) const uint32_t *pptable_array,
uint32_t od_setting_count)
{ {
uint32_t array_size, i; uint32_t array_size, i;
uint32_t *table; uint32_t *table;
array_size = sizeof(uint32_t) * ATOM_VEGA20_ODSETTING_COUNT; array_size = sizeof(uint32_t) * od_setting_count;
table = kzalloc(array_size, GFP_KERNEL);
if (NULL == table)
return -ENOMEM;
for (i = 0; i < od_setting_count; i++)
table[i] = pptable_array[i];
*pptable_info_array = table;
return 0;
}
static int copy_overdrive_feature_capabilities_array(
struct pp_hwmgr *hwmgr,
uint8_t **pptable_info_array,
const uint8_t *pptable_array,
uint8_t od_feature_count)
{
uint32_t array_size, i;
uint8_t *table;
bool od_supported = false;
array_size = sizeof(uint8_t) * od_feature_count;
table = kzalloc(array_size, GFP_KERNEL); table = kzalloc(array_size, GFP_KERNEL);
if (NULL == table) if (NULL == table)
return -ENOMEM; return -ENOMEM;
for (i = 0; i < ATOM_VEGA20_ODSETTING_COUNT; i++) for (i = 0; i < od_feature_count; i++) {
table[i] = pptable_array[i]; table[i] = pptable_array[i];
if (table[i])
od_supported = true;
}
*pptable_info_array = table; *pptable_info_array = table;
if (od_supported)
phm_cap_set(hwmgr->platform_descriptor.platformCaps,
PHM_PlatformCaps_ACOverdriveSupport);
return 0; return 0;
} }
...@@ -799,6 +829,7 @@ static int init_powerplay_table_information( ...@@ -799,6 +829,7 @@ static int init_powerplay_table_information(
struct phm_ppt_v3_information *pptable_information = struct phm_ppt_v3_information *pptable_information =
(struct phm_ppt_v3_information *)hwmgr->pptable; (struct phm_ppt_v3_information *)hwmgr->pptable;
uint32_t disable_power_control = 0; uint32_t disable_power_control = 0;
uint32_t od_feature_count, od_setting_count, power_saving_clock_count;
int result; int result;
hwmgr->thermal_controller.ucType = powerplay_table->ucThermalControllerType; hwmgr->thermal_controller.ucType = powerplay_table->ucThermalControllerType;
...@@ -810,22 +841,25 @@ static int init_powerplay_table_information( ...@@ -810,22 +841,25 @@ static int init_powerplay_table_information(
phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_MicrocodeFanControl); phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_MicrocodeFanControl);
if (powerplay_table->OverDrive8Table.ODSettingsMax[ATOM_VEGA20_ODSETTING_GFXCLKFMAX] > VEGA20_ENGINECLOCK_HARDMAX) if (powerplay_table->OverDrive8Table.ucODTableRevision == 1) {
hwmgr->platform_descriptor.overdriveLimit.engineClock = VEGA20_ENGINECLOCK_HARDMAX; od_feature_count = (powerplay_table->OverDrive8Table.ODFeatureCount > ATOM_VEGA20_ODFEATURE_COUNT) ?
else ATOM_VEGA20_ODFEATURE_COUNT : powerplay_table->OverDrive8Table.ODFeatureCount;
hwmgr->platform_descriptor.overdriveLimit.engineClock = powerplay_table->OverDrive8Table.ODSettingsMax[ATOM_VEGA20_ODSETTING_GFXCLKFMAX]; od_setting_count = (powerplay_table->OverDrive8Table.ODSettingCount > ATOM_VEGA20_ODSETTING_COUNT) ?
hwmgr->platform_descriptor.overdriveLimit.memoryClock = powerplay_table->OverDrive8Table.ODSettingsMax[ATOM_VEGA20_ODSETTING_UCLKFMAX]; ATOM_VEGA20_ODSETTING_COUNT : powerplay_table->OverDrive8Table.ODSettingCount;
copy_overdrive_settings_limits_array(hwmgr, &pptable_information->od_settings_max, powerplay_table->OverDrive8Table.ODSettingsMax); copy_overdrive_feature_capabilities_array(hwmgr,
copy_overdrive_settings_limits_array(hwmgr, &pptable_information->od_settings_min, powerplay_table->OverDrive8Table.ODSettingsMin); &pptable_information->od_feature_capabilities,
powerplay_table->OverDrive8Table.ODFeatureCapabilities,
/* hwmgr->platformDescriptor.minOverdriveVDDC = 0; od_feature_count);
hwmgr->platformDescriptor.maxOverdriveVDDC = 0; copy_overdrive_settings_limits_array(hwmgr,
hwmgr->platformDescriptor.overdriveVDDCStep = 0; */ &pptable_information->od_settings_max,
powerplay_table->OverDrive8Table.ODSettingsMax,
if (hwmgr->platform_descriptor.overdriveLimit.engineClock > 0 od_setting_count);
&& hwmgr->platform_descriptor.overdriveLimit.memoryClock > 0) copy_overdrive_settings_limits_array(hwmgr,
phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_ACOverdriveSupport); &pptable_information->od_settings_min,
powerplay_table->OverDrive8Table.ODSettingsMin,
od_setting_count);
}
pptable_information->us_small_power_limit1 = powerplay_table->usSmallPowerLimit1; pptable_information->us_small_power_limit1 = powerplay_table->usSmallPowerLimit1;
pptable_information->us_small_power_limit2 = powerplay_table->usSmallPowerLimit2; pptable_information->us_small_power_limit2 = powerplay_table->usSmallPowerLimit2;
...@@ -838,15 +872,23 @@ static int init_powerplay_table_information( ...@@ -838,15 +872,23 @@ static int init_powerplay_table_information(
hwmgr->platform_descriptor.TDPODLimit = (uint16_t)powerplay_table->OverDrive8Table.ODSettingsMax[ATOM_VEGA20_ODSETTING_POWERPERCENTAGE]; hwmgr->platform_descriptor.TDPODLimit = (uint16_t)powerplay_table->OverDrive8Table.ODSettingsMax[ATOM_VEGA20_ODSETTING_POWERPERCENTAGE];
disable_power_control = 0; disable_power_control = 0;
if (!disable_power_control && hwmgr->platform_descriptor.TDPODLimit) { if (!disable_power_control && hwmgr->platform_descriptor.TDPODLimit)
/* enable TDP overdrive (PowerControl) feature as well if supported */ /* enable TDP overdrive (PowerControl) feature as well if supported */
phm_cap_set(hwmgr->platform_descriptor.platformCaps, phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_PowerControl);
PHM_PlatformCaps_PowerControl);
if (powerplay_table->PowerSavingClockTable.ucTableRevision == 1) {
power_saving_clock_count = (powerplay_table->PowerSavingClockTable.PowerSavingClockCount >= ATOM_VEGA20_PPCLOCK_COUNT) ?
ATOM_VEGA20_PPCLOCK_COUNT : powerplay_table->PowerSavingClockTable.PowerSavingClockCount;
copy_clock_limits_array(hwmgr,
&pptable_information->power_saving_clock_max,
powerplay_table->PowerSavingClockTable.PowerSavingClockMax,
power_saving_clock_count);
copy_clock_limits_array(hwmgr,
&pptable_information->power_saving_clock_min,
powerplay_table->PowerSavingClockTable.PowerSavingClockMin,
power_saving_clock_count);
} }
copy_clock_limits_array(hwmgr, &pptable_information->power_saving_clock_max, powerplay_table->PowerSavingClockTable.PowerSavingClockMax);
copy_clock_limits_array(hwmgr, &pptable_information->power_saving_clock_min, powerplay_table->PowerSavingClockTable.PowerSavingClockMin);
pptable_information->smc_pptable = (PPTable_t *)kmalloc(sizeof(PPTable_t), GFP_KERNEL); pptable_information->smc_pptable = (PPTable_t *)kmalloc(sizeof(PPTable_t), GFP_KERNEL);
if (pptable_information->smc_pptable == NULL) if (pptable_information->smc_pptable == NULL)
return -ENOMEM; return -ENOMEM;
...@@ -898,6 +940,9 @@ static int vega20_pp_tables_uninitialize(struct pp_hwmgr *hwmgr) ...@@ -898,6 +940,9 @@ static int vega20_pp_tables_uninitialize(struct pp_hwmgr *hwmgr)
kfree(pp_table_info->power_saving_clock_min); kfree(pp_table_info->power_saving_clock_min);
pp_table_info->power_saving_clock_min = NULL; pp_table_info->power_saving_clock_min = NULL;
kfree(pp_table_info->od_feature_capabilities);
pp_table_info->od_feature_capabilities = NULL;
kfree(pp_table_info->od_settings_max); kfree(pp_table_info->od_settings_max);
pp_table_info->od_settings_max = NULL; pp_table_info->od_settings_max = NULL;
......
...@@ -232,6 +232,8 @@ enum phm_platform_caps { ...@@ -232,6 +232,8 @@ enum phm_platform_caps {
PHM_PlatformCaps_UVDClientMCTuning, PHM_PlatformCaps_UVDClientMCTuning,
PHM_PlatformCaps_ODNinACSupport, PHM_PlatformCaps_ODNinACSupport,
PHM_PlatformCaps_ODNinDCSupport, PHM_PlatformCaps_ODNinDCSupport,
PHM_PlatformCaps_OD8inACSupport,
PHM_PlatformCaps_OD8inDCSupport,
PHM_PlatformCaps_UMDPState, PHM_PlatformCaps_UMDPState,
PHM_PlatformCaps_AutoWattmanSupport, PHM_PlatformCaps_AutoWattmanSupport,
PHM_PlatformCaps_AutoWattmanEnable_CCCState, PHM_PlatformCaps_AutoWattmanEnable_CCCState,
......
...@@ -583,6 +583,7 @@ struct phm_ppt_v3_information ...@@ -583,6 +583,7 @@ struct phm_ppt_v3_information
uint32_t *power_saving_clock_max; uint32_t *power_saving_clock_max;
uint32_t *power_saving_clock_min; uint32_t *power_saving_clock_min;
uint8_t *od_feature_capabilities;
uint32_t *od_settings_max; uint32_t *od_settings_max;
uint32_t *od_settings_min; uint32_t *od_settings_min;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment