drm/amd/powerplay: update the metrics table cache interval as 1ms
authorEvan Quan <evan.quan@amd.com>
Thu, 6 Aug 2020 07:38:25 +0000 (15:38 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 14 Aug 2020 20:22:40 +0000 (16:22 -0400)
To make the setting same as Arcturus/Navi1x/Sienna_Cichlid.

Signed-off-by: Evan Quan <evan.quan@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/hwmgr/vega12_hwmgr.c
drivers/gpu/drm/amd/powerplay/hwmgr/vega20_hwmgr.c
drivers/gpu/drm/amd/powerplay/renoir_ppt.c

index c70c301..f0680dd 100644 (file)
@@ -1272,7 +1272,7 @@ static int vega12_get_metrics_table(struct pp_hwmgr *hwmgr,
 
        if (bypass_cache ||
            !data->metrics_time ||
-           time_after(jiffies, data->metrics_time + HZ / 2)) {
+           time_after(jiffies, data->metrics_time + msecs_to_jiffies(1))) {
                ret = smum_smc_table_manager(hwmgr,
                                             (uint8_t *)(&data->metrics_table),
                                             TABLE_SMU_METRICS,
index c9f402e..da84012 100644 (file)
@@ -2082,7 +2082,7 @@ static int vega20_get_metrics_table(struct pp_hwmgr *hwmgr,
 
        if (bypass_cache ||
            !data->metrics_time ||
-           time_after(jiffies, data->metrics_time + HZ / 2)) {
+           time_after(jiffies, data->metrics_time + msecs_to_jiffies(1))) {
                ret = smum_smc_table_manager(hwmgr,
                                             (uint8_t *)(&data->metrics_table),
                                             TABLE_SMU_METRICS,
index 8a8e603..c50c454 100644 (file)
@@ -139,7 +139,7 @@ static int renoir_get_metrics_table(struct smu_context *smu,
 
        if (bypass_cache ||
            !smu_table->metrics_time ||
-           time_after(jiffies, smu_table->metrics_time + msecs_to_jiffies(100))) {
+           time_after(jiffies, smu_table->metrics_time + msecs_to_jiffies(1))) {
                ret = smu_cmn_update_table(smu, SMU_TABLE_SMU_METRICS, 0,
                                (void *)smu_table->metrics_table, false);
                if (ret) {