diff options
author | 2022-06-06 11:21:07 +0800 | |
---|---|---|
committer | 2022-06-14 21:38:40 -0400 | |
commit | d11737f26ffeae88350b835caa37c7449da22550 (patch) | |
tree | f86c54159dd6642c4a19454c33ec6565821c27f4 | |
parent | drm/amd/display: dml: move some variables to heap (diff) | |
download | linux-dev-d11737f26ffeae88350b835caa37c7449da22550.tar.xz linux-dev-d11737f26ffeae88350b835caa37c7449da22550.zip |
drm/amd/pm: enable UCLK DS feature for SMU 13.0.0
The feature is ready with latest PMFW and IFWI.
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>
-rw-r--r-- | drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c index fda89e309b07..495713e4ebd4 100644 --- a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c +++ b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c @@ -306,6 +306,8 @@ smu_v13_0_0_get_allowed_feature_mask(struct smu_context *smu, *(uint64_t *)feature_mask |= FEATURE_MASK(FEATURE_FW_CTF_BIT); + *(uint64_t *)feature_mask |= FEATURE_MASK(FEATURE_DS_UCLK_BIT); + return 0; } |