aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/nv.c
diff options
context:
space:
mode:
authorJinzhou.Su <[email protected]>2020-10-27 13:37:49 +0000
committerAlex Deucher <[email protected]>2020-10-30 04:58:50 +0000
commit51a7e93826a05deb85db07f58cad7e97e4165e77 (patch)
tree8803b052dc0004dbe5860bd36b86dc4cec6a512c /drivers/gpu/drm/amd/amdgpu/nv.c
parentdrm/amd/pm: enable the rest functions of swSMU for vangogh. (diff)
downloadkernel-51a7e93826a05deb85db07f58cad7e97e4165e77.tar.gz
kernel-51a7e93826a05deb85db07f58cad7e97e4165e77.zip
amdgpu: Add GFX MGCG and MGLS for vangogh
add GFX Medium Grain Light Sleep support for vangogh add AMD_CG_SUPPORT_GFX_CP_LS and AMD_CG_SUPPORT_GFX_RLC_LS v2: add GFX Medium Grain Clock Gating Signed-off-by: Jinzhou.Su <[email protected]> Reviewed-by: Huang Rui <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/nv.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/nv.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c
index c65b4462bf5e..026e0a8fd526 100644
--- a/drivers/gpu/drm/amd/amdgpu/nv.c
+++ b/drivers/gpu/drm/amd/amdgpu/nv.c
@@ -943,7 +943,11 @@ static int nv_common_early_init(void *handle)
case CHIP_VANGOGH:
adev->apu_flags |= AMD_APU_IS_VANGOGH;
- adev->cg_flags = AMD_CG_SUPPORT_GFX_CGCG |
+ adev->cg_flags = AMD_CG_SUPPORT_GFX_MGCG |
+ AMD_CG_SUPPORT_GFX_MGLS |
+ AMD_CG_SUPPORT_GFX_CP_LS |
+ AMD_CG_SUPPORT_GFX_RLC_LS |
+ AMD_CG_SUPPORT_GFX_CGCG |
AMD_CG_SUPPORT_GFX_CGLS |
AMD_CG_SUPPORT_GFX_3D_CGCG |
AMD_CG_SUPPORT_GFX_3D_CGLS |