mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 14:21:55 +07:00
drm/amd/powerplay: skip unsupported clock limit settings on Arcturus V2
For Arcturus, clock limit settings on uclk/socclk/fclk domains are not supported. V2: simplify the code to support both SGPU and MGPU cases Signed-off-by: Evan Quan <evan.quan@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
664fe85a2d
commit
0525f29713
@ -2830,6 +2830,19 @@ int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
|
|||||||
DRM_ERROR("failed to create device file pp_dpm_sclk\n");
|
DRM_ERROR("failed to create device file pp_dpm_sclk\n");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Arcturus does not support standalone mclk/socclk/fclk level setting */
|
||||||
|
if (adev->asic_type == CHIP_ARCTURUS) {
|
||||||
|
dev_attr_pp_dpm_mclk.attr.mode &= ~S_IWUGO;
|
||||||
|
dev_attr_pp_dpm_mclk.store = NULL;
|
||||||
|
|
||||||
|
dev_attr_pp_dpm_socclk.attr.mode &= ~S_IWUGO;
|
||||||
|
dev_attr_pp_dpm_socclk.store = NULL;
|
||||||
|
|
||||||
|
dev_attr_pp_dpm_fclk.attr.mode &= ~S_IWUGO;
|
||||||
|
dev_attr_pp_dpm_fclk.store = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
ret = device_create_file(adev->dev, &dev_attr_pp_dpm_mclk);
|
ret = device_create_file(adev->dev, &dev_attr_pp_dpm_mclk);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
DRM_ERROR("failed to create device file pp_dpm_mclk\n");
|
DRM_ERROR("failed to create device file pp_dpm_mclk\n");
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
#include "smu_v11_0_pptable.h"
|
#include "smu_v11_0_pptable.h"
|
||||||
#include "arcturus_ppsmc.h"
|
#include "arcturus_ppsmc.h"
|
||||||
#include "nbio/nbio_7_4_sh_mask.h"
|
#include "nbio/nbio_7_4_sh_mask.h"
|
||||||
|
#include "amdgpu_xgmi.h"
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/pci.h>
|
#include <linux/pci.h>
|
||||||
#include "amdgpu_ras.h"
|
#include "amdgpu_ras.h"
|
||||||
@ -807,84 +808,13 @@ static int arcturus_force_clk_levels(struct smu_context *smu,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case SMU_MCLK:
|
case SMU_MCLK:
|
||||||
single_dpm_table = &(dpm_table->mem_table);
|
|
||||||
|
|
||||||
if (soft_max_level >= single_dpm_table->count) {
|
|
||||||
pr_err("Clock level specified %d is over max allowed %d\n",
|
|
||||||
soft_max_level, single_dpm_table->count - 1);
|
|
||||||
ret = -EINVAL;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
single_dpm_table->dpm_state.soft_min_level =
|
|
||||||
single_dpm_table->dpm_levels[soft_min_level].value;
|
|
||||||
single_dpm_table->dpm_state.soft_max_level =
|
|
||||||
single_dpm_table->dpm_levels[soft_max_level].value;
|
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, false, FEATURE_DPM_UCLK_MASK);
|
|
||||||
if (ret) {
|
|
||||||
pr_err("Failed to upload boot level to lowest!\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, true, FEATURE_DPM_UCLK_MASK);
|
|
||||||
if (ret)
|
|
||||||
pr_err("Failed to upload dpm max level to highest!\n");
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case SMU_SOCCLK:
|
case SMU_SOCCLK:
|
||||||
single_dpm_table = &(dpm_table->soc_table);
|
|
||||||
|
|
||||||
if (soft_max_level >= single_dpm_table->count) {
|
|
||||||
pr_err("Clock level specified %d is over max allowed %d\n",
|
|
||||||
soft_max_level, single_dpm_table->count - 1);
|
|
||||||
ret = -EINVAL;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
single_dpm_table->dpm_state.soft_min_level =
|
|
||||||
single_dpm_table->dpm_levels[soft_min_level].value;
|
|
||||||
single_dpm_table->dpm_state.soft_max_level =
|
|
||||||
single_dpm_table->dpm_levels[soft_max_level].value;
|
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, false, FEATURE_DPM_SOCCLK_MASK);
|
|
||||||
if (ret) {
|
|
||||||
pr_err("Failed to upload boot level to lowest!\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, true, FEATURE_DPM_SOCCLK_MASK);
|
|
||||||
if (ret)
|
|
||||||
pr_err("Failed to upload dpm max level to highest!\n");
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case SMU_FCLK:
|
case SMU_FCLK:
|
||||||
single_dpm_table = &(dpm_table->fclk_table);
|
/*
|
||||||
|
* Should not arrive here since Arcturus does not
|
||||||
if (soft_max_level >= single_dpm_table->count) {
|
* support mclk/socclk/fclk softmin/softmax settings
|
||||||
pr_err("Clock level specified %d is over max allowed %d\n",
|
*/
|
||||||
soft_max_level, single_dpm_table->count - 1);
|
ret = -EINVAL;
|
||||||
ret = -EINVAL;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
single_dpm_table->dpm_state.soft_min_level =
|
|
||||||
single_dpm_table->dpm_levels[soft_min_level].value;
|
|
||||||
single_dpm_table->dpm_state.soft_max_level =
|
|
||||||
single_dpm_table->dpm_levels[soft_max_level].value;
|
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, false, FEATURE_DPM_FCLK_MASK);
|
|
||||||
if (ret) {
|
|
||||||
pr_err("Failed to upload boot level to lowest!\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, true, FEATURE_DPM_FCLK_MASK);
|
|
||||||
if (ret)
|
|
||||||
pr_err("Failed to upload dpm max level to highest!\n");
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@ -1200,6 +1130,7 @@ static int arcturus_force_dpm_limit_value(struct smu_context *smu, bool highest)
|
|||||||
{
|
{
|
||||||
struct arcturus_dpm_table *dpm_table =
|
struct arcturus_dpm_table *dpm_table =
|
||||||
(struct arcturus_dpm_table *)smu->smu_dpm.dpm_context;
|
(struct arcturus_dpm_table *)smu->smu_dpm.dpm_context;
|
||||||
|
struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(smu->adev, 0);
|
||||||
uint32_t soft_level;
|
uint32_t soft_level;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
@ -1213,40 +1144,27 @@ static int arcturus_force_dpm_limit_value(struct smu_context *smu, bool highest)
|
|||||||
dpm_table->gfx_table.dpm_state.soft_max_level =
|
dpm_table->gfx_table.dpm_state.soft_max_level =
|
||||||
dpm_table->gfx_table.dpm_levels[soft_level].value;
|
dpm_table->gfx_table.dpm_levels[soft_level].value;
|
||||||
|
|
||||||
/* uclk */
|
ret = arcturus_upload_dpm_level(smu, false, FEATURE_DPM_GFXCLK_MASK);
|
||||||
if (highest)
|
|
||||||
soft_level = arcturus_find_highest_dpm_level(&(dpm_table->mem_table));
|
|
||||||
else
|
|
||||||
soft_level = arcturus_find_lowest_dpm_level(&(dpm_table->mem_table));
|
|
||||||
|
|
||||||
dpm_table->mem_table.dpm_state.soft_min_level =
|
|
||||||
dpm_table->mem_table.dpm_state.soft_max_level =
|
|
||||||
dpm_table->mem_table.dpm_levels[soft_level].value;
|
|
||||||
|
|
||||||
/* socclk */
|
|
||||||
if (highest)
|
|
||||||
soft_level = arcturus_find_highest_dpm_level(&(dpm_table->soc_table));
|
|
||||||
else
|
|
||||||
soft_level = arcturus_find_lowest_dpm_level(&(dpm_table->soc_table));
|
|
||||||
|
|
||||||
dpm_table->soc_table.dpm_state.soft_min_level =
|
|
||||||
dpm_table->soc_table.dpm_state.soft_max_level =
|
|
||||||
dpm_table->soc_table.dpm_levels[soft_level].value;
|
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, false, 0xFFFFFFFF);
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
pr_err("Failed to upload boot level to %s!\n",
|
pr_err("Failed to upload boot level to %s!\n",
|
||||||
highest ? "highest" : "lowest");
|
highest ? "highest" : "lowest");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, true, 0xFFFFFFFF);
|
ret = arcturus_upload_dpm_level(smu, true, FEATURE_DPM_GFXCLK_MASK);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
pr_err("Failed to upload dpm max level to %s!\n!",
|
pr_err("Failed to upload dpm max level to %s!\n!",
|
||||||
highest ? "highest" : "lowest");
|
highest ? "highest" : "lowest");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hive)
|
||||||
|
/*
|
||||||
|
* Force XGMI Pstate to highest or lowest
|
||||||
|
* TODO: revise this when xgmi dpm is functional
|
||||||
|
*/
|
||||||
|
ret = smu_v11_0_set_xgmi_pstate(smu, highest ? 1 : 0);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1254,6 +1172,7 @@ static int arcturus_unforce_dpm_levels(struct smu_context *smu)
|
|||||||
{
|
{
|
||||||
struct arcturus_dpm_table *dpm_table =
|
struct arcturus_dpm_table *dpm_table =
|
||||||
(struct arcturus_dpm_table *)smu->smu_dpm.dpm_context;
|
(struct arcturus_dpm_table *)smu->smu_dpm.dpm_context;
|
||||||
|
struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(smu->adev, 0);
|
||||||
uint32_t soft_min_level, soft_max_level;
|
uint32_t soft_min_level, soft_max_level;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
@ -1265,34 +1184,25 @@ static int arcturus_unforce_dpm_levels(struct smu_context *smu)
|
|||||||
dpm_table->gfx_table.dpm_state.soft_max_level =
|
dpm_table->gfx_table.dpm_state.soft_max_level =
|
||||||
dpm_table->gfx_table.dpm_levels[soft_max_level].value;
|
dpm_table->gfx_table.dpm_levels[soft_max_level].value;
|
||||||
|
|
||||||
/* uclk */
|
ret = arcturus_upload_dpm_level(smu, false, FEATURE_DPM_GFXCLK_MASK);
|
||||||
soft_min_level = arcturus_find_lowest_dpm_level(&(dpm_table->mem_table));
|
|
||||||
soft_max_level = arcturus_find_highest_dpm_level(&(dpm_table->mem_table));
|
|
||||||
dpm_table->mem_table.dpm_state.soft_min_level =
|
|
||||||
dpm_table->gfx_table.dpm_levels[soft_min_level].value;
|
|
||||||
dpm_table->mem_table.dpm_state.soft_max_level =
|
|
||||||
dpm_table->gfx_table.dpm_levels[soft_max_level].value;
|
|
||||||
|
|
||||||
/* socclk */
|
|
||||||
soft_min_level = arcturus_find_lowest_dpm_level(&(dpm_table->soc_table));
|
|
||||||
soft_max_level = arcturus_find_highest_dpm_level(&(dpm_table->soc_table));
|
|
||||||
dpm_table->soc_table.dpm_state.soft_min_level =
|
|
||||||
dpm_table->soc_table.dpm_levels[soft_min_level].value;
|
|
||||||
dpm_table->soc_table.dpm_state.soft_max_level =
|
|
||||||
dpm_table->soc_table.dpm_levels[soft_max_level].value;
|
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, false, 0xFFFFFFFF);
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
pr_err("Failed to upload DPM Bootup Levels!");
|
pr_err("Failed to upload DPM Bootup Levels!");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = arcturus_upload_dpm_level(smu, true, 0xFFFFFFFF);
|
ret = arcturus_upload_dpm_level(smu, true, FEATURE_DPM_GFXCLK_MASK);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
pr_err("Failed to upload DPM Max Levels!");
|
pr_err("Failed to upload DPM Max Levels!");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hive)
|
||||||
|
/*
|
||||||
|
* Reset XGMI Pstate back to default
|
||||||
|
* TODO: revise this when xgmi dpm is functional
|
||||||
|
*/
|
||||||
|
ret = smu_v11_0_set_xgmi_pstate(smu, 0);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user