aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2016-02-02 18:22:24 -0500
committerAlex Deucher <alexander.deucher@amd.com>2016-02-03 13:49:51 -0500
commit6357b75a5c356a9d8f91c614ab72ac5264a5932c (patch)
treefdc370eb869648e3dc88b568f95fa7068db5742b
parentdba280b20bfd1c2bed8a07ce3f75a6da8ba7d247 (diff)
drm/amdgpu: disable uvd and vce clockgating on Fiji
Doesn't work properly yet. Reviewed-by: Christian König <christian.koenig@amd.com> Reviewed-by: Sonny Jiang <sonny.jiang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/vi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/vi.c b/drivers/gpu/drm/amd/amdgpu/vi.c
index d94c625575b9..89f5a1ff6f43 100644
--- a/drivers/gpu/drm/amd/amdgpu/vi.c
+++ b/drivers/gpu/drm/amd/amdgpu/vi.c
@@ -1443,8 +1443,7 @@ static int vi_common_early_init(void *handle)
1443 break; 1443 break;
1444 case CHIP_FIJI: 1444 case CHIP_FIJI:
1445 adev->has_uvd = true; 1445 adev->has_uvd = true;
1446 adev->cg_flags = AMDGPU_CG_SUPPORT_UVD_MGCG | 1446 adev->cg_flags = 0;
1447 AMDGPU_CG_SUPPORT_VCE_MGCG;
1448 adev->pg_flags = 0; 1447 adev->pg_flags = 0;
1449 adev->external_rev_id = adev->rev_id + 0x3c; 1448 adev->external_rev_id = adev->rev_id + 0x3c;
1450 break; 1449 break;