diff options
author | 2020-10-29 19:59:46 +0530 | |
---|---|---|
committer | 2020-11-03 20:57:50 -0500 | |
commit | c6d2b0fbb893d5c7dda405aa0e7bcbecf1c75f98 (patch) | |
tree | 7f8ab9d54144ca9a71496eaa65ab4829a6b47650 /drivers/gpu/drm/amd/amdgpu | |
parent | drm/amdgpu/swsmu: remove duplicate call to smu_set_default_dpm_table (diff) | |
download | wireguard-linux-c6d2b0fbb893d5c7dda405aa0e7bcbecf1c75f98.tar.xz wireguard-linux-c6d2b0fbb893d5c7dda405aa0e7bcbecf1c75f98.zip |
amd/amdgpu: Disable VCN DPG mode for Picasso
Concurrent operation of VCN and JPEG decoder in DPG mode is
causing ring timeout due to power state.
Signed-off-by: Veerabadhran Gopalakrishnan <veerabadhran.gopalakrishnan@amd.com>
Reviewed-by: Leo Liu <leo.liu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/soc15.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/soc15.c b/drivers/gpu/drm/amd/amdgpu/soc15.c index afcccc6c0fc6..eff68fb532ce 100644 --- a/drivers/gpu/drm/amd/amdgpu/soc15.c +++ b/drivers/gpu/drm/amd/amdgpu/soc15.c @@ -1195,8 +1195,7 @@ static int soc15_common_early_init(void *handle) adev->pg_flags = AMD_PG_SUPPORT_SDMA | AMD_PG_SUPPORT_MMHUB | - AMD_PG_SUPPORT_VCN | - AMD_PG_SUPPORT_VCN_DPG; + AMD_PG_SUPPORT_VCN; } else { adev->cg_flags = AMD_CG_SUPPORT_GFX_MGCG | AMD_CG_SUPPORT_GFX_MGLS | |