diff options
author | Xiaojie Yuan <xiaojie.yuan@amd.com> | 2019-08-27 06:05:23 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2019-08-29 23:52:31 +0300 |
commit | c1653ea05bcec582c82e7b134f5535d8fad42f48 (patch) | |
tree | d1d15252c360c88ec81a5618f318ed6fc50c2cb4 /drivers/gpu/drm/amd/amdgpu/nv.c | |
parent | 317f9cc97bdcfef1e873ba4dfa2b7af87a17775f (diff) | |
download | linux-c1653ea05bcec582c82e7b134f5535d8fad42f48.tar.xz |
drm/amdgpu: enable vcn powergating for navi12
Signed-off-by: Xiaojie Yuan <xiaojie.yuan@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/nv.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/nv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c index dbd577a58899..3cd785daadc0 100644 --- a/drivers/gpu/drm/amd/amdgpu/nv.c +++ b/drivers/gpu/drm/amd/amdgpu/nv.c @@ -650,7 +650,8 @@ static int nv_common_early_init(void *handle) AMD_CG_SUPPORT_ATHUB_MGCG | AMD_CG_SUPPORT_ATHUB_LS | AMD_CG_SUPPORT_VCN_MGCG; - adev->pg_flags = AMD_PG_SUPPORT_VCN_DPG; + adev->pg_flags = AMD_PG_SUPPORT_VCN | + AMD_PG_SUPPORT_VCN_DPG; adev->external_rev_id = adev->rev_id + 0xa; break; default: |