diff options
| author | Kenneth Feng <kenneth.feng@amd.com> | 2021-04-22 17:31:04 +0800 | 
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2021-04-23 17:15:59 -0400 | 
| commit | 1d712be90a6d8af1d6d693cc936fc103376f7d36 (patch) | |
| tree | 7784fb27b24477610d004db937a9eed04b90c074 /drivers/gpu/drm/amd | |
| parent | 19d0dfda4c75a23012dd714e57b4f569df61089d (diff) | |
drm/amd/amdgpu: add cgls
enable cgls to improve the runtime power efficiency.
Signed-off-by: Kenneth Feng <kenneth.feng@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/nv.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c index 0142f6760ad2..9c4f232e81c0 100644 --- a/drivers/gpu/drm/amd/amdgpu/nv.c +++ b/drivers/gpu/drm/amd/amdgpu/nv.c @@ -1065,6 +1065,7 @@ static int nv_common_early_init(void *handle)  	case CHIP_SIENNA_CICHLID:  		adev->cg_flags = AMD_CG_SUPPORT_GFX_MGCG |  			AMD_CG_SUPPORT_GFX_CGCG | +			AMD_CG_SUPPORT_GFX_CGLS |  			AMD_CG_SUPPORT_GFX_3D_CGCG |  			AMD_CG_SUPPORT_MC_MGCG |  			AMD_CG_SUPPORT_VCN_MGCG | @@ -1088,6 +1089,7 @@ static int nv_common_early_init(void *handle)  	case CHIP_NAVY_FLOUNDER:  		adev->cg_flags = AMD_CG_SUPPORT_GFX_MGCG |  			AMD_CG_SUPPORT_GFX_CGCG | +			AMD_CG_SUPPORT_GFX_CGLS |  			AMD_CG_SUPPORT_GFX_3D_CGCG |  			AMD_CG_SUPPORT_VCN_MGCG |  			AMD_CG_SUPPORT_JPEG_MGCG | @@ -1130,6 +1132,7 @@ static int nv_common_early_init(void *handle)  	case CHIP_DIMGREY_CAVEFISH:  		adev->cg_flags = AMD_CG_SUPPORT_GFX_MGCG |  			AMD_CG_SUPPORT_GFX_CGCG | +			AMD_CG_SUPPORT_GFX_CGLS |  			AMD_CG_SUPPORT_GFX_3D_CGCG |  			AMD_CG_SUPPORT_VCN_MGCG |  			AMD_CG_SUPPORT_JPEG_MGCG | | 
