diff options
author | 2023-01-28 14:24:34 +0800 | |
---|---|---|
committer | 2023-02-01 22:45:50 -0500 | |
commit | bb25849c0fa550b26cecc9c476c519a927c66898 (patch) | |
tree | 40fb3d9826bc1e19a188e32c136af4afd19b08b8 | |
parent | drm/amd/pm: drop unneeded dpm features disablement for SMU 13.0.4/11 (diff) | |
download | wireguard-linux-bb25849c0fa550b26cecc9c476c519a927c66898.tar.xz wireguard-linux-bb25849c0fa550b26cecc9c476c519a927c66898.zip |
drm/amdgpu: enable HDP SD for gfx 11.0.3
Enable HDP clock gating control for gfx 11.0.3.
Signed-off-by: Evan Quan <evan.quan@amd.com>
Reviewed-by: Feifei Xu <Feifei.Xu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/soc21.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/soc21.c b/drivers/gpu/drm/amd/amdgpu/soc21.c index 5562670b7b52..9eff5f41df9d 100644 --- a/drivers/gpu/drm/amd/amdgpu/soc21.c +++ b/drivers/gpu/drm/amd/amdgpu/soc21.c @@ -640,7 +640,8 @@ static int soc21_common_early_init(void *handle) AMD_CG_SUPPORT_GFX_CGCG | AMD_CG_SUPPORT_GFX_CGLS | AMD_CG_SUPPORT_REPEATER_FGCG | - AMD_CG_SUPPORT_GFX_MGCG; + AMD_CG_SUPPORT_GFX_MGCG | + AMD_CG_SUPPORT_HDP_SD; adev->pg_flags = AMD_PG_SUPPORT_VCN | AMD_PG_SUPPORT_VCN_DPG | AMD_PG_SUPPORT_JPEG; |