diff options
author | 2020-07-08 18:59:11 +0800 | |
---|---|---|
committer | 2020-07-15 13:27:34 -0400 | |
commit | 4759f8871f3dc75a47b0b9cf38064958ce76eb35 (patch) | |
tree | c8445f0645a082a08003bc632eb62d4f626fdf45 | |
parent | drm/amdgpu: enable mc CG and LS for navy_flounder (diff) | |
download | linux-rng-4759f8871f3dc75a47b0b9cf38064958ce76eb35.tar.xz linux-rng-4759f8871f3dc75a47b0b9cf38064958ce76eb35.zip |
drm/amdgpu: enable hdp CG and LS for navy_flounder
Enable hdp CG and LS by setting the corresponding flags.
Signed-off-by: Jiansong Chen <Jiansong.Chen@amd.com>
Reviewed-by: Kenneth Feng <kenneth.feng@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/nv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c index f44a7207059f..416835290789 100644 --- a/drivers/gpu/drm/amd/amdgpu/nv.c +++ b/drivers/gpu/drm/amd/amdgpu/nv.c @@ -785,7 +785,9 @@ static int nv_common_early_init(void *handle) AMD_CG_SUPPORT_VCN_MGCG | AMD_CG_SUPPORT_JPEG_MGCG | AMD_CG_SUPPORT_MC_MGCG | - AMD_CG_SUPPORT_MC_LS; + AMD_CG_SUPPORT_MC_LS | + AMD_CG_SUPPORT_HDP_MGCG | + AMD_CG_SUPPORT_HDP_LS; adev->pg_flags = AMD_PG_SUPPORT_VCN | AMD_PG_SUPPORT_VCN_DPG | AMD_PG_SUPPORT_JPEG | |