Commit 51b9121a authored by Prike Liang's avatar Prike Liang Committed by Alex Deucher

drm/amd/powerplay: Disable renoir smu feature retrieve for the moment

To avoid the dpm frequence range get failed when DPM enabled and it
will be enabled later once handle well the feature bit map struct.
Signed-off-by: default avatarPrike Liang <Prike.Liang@amd.com>
Reviewed-by: default avatarKevin Wang <kevin1.wang@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent d237e097
...@@ -630,10 +630,14 @@ int smu_feature_update_enable_state(struct smu_context *smu, uint64_t feature_ma ...@@ -630,10 +630,14 @@ int smu_feature_update_enable_state(struct smu_context *smu, uint64_t feature_ma
int smu_feature_is_enabled(struct smu_context *smu, enum smu_feature_mask mask) int smu_feature_is_enabled(struct smu_context *smu, enum smu_feature_mask mask)
{ {
struct amdgpu_device *adev = smu->adev;
struct smu_feature *feature = &smu->smu_feature; struct smu_feature *feature = &smu->smu_feature;
int feature_id; int feature_id;
int ret = 0; int ret = 0;
if (adev->flags & AMD_IS_APU)
return 0;
feature_id = smu_feature_get_index(smu, mask); feature_id = smu_feature_get_index(smu, mask);
if (feature_id < 0) if (feature_id < 0)
return 0; return 0;
......
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