From: Ken Wang Date: Wed, 3 Feb 2016 11:17:53 +0000 (+0800) Subject: drm/amdgpu: The VI specific EXE bit should only apply to GMC v8.0 above X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8f3c162961fc2d92ec73a66496aab69eb2e19c36;p=linux-beck.git drm/amdgpu: The VI specific EXE bit should only apply to GMC v8.0 above Reviewed-by: Christian König Reviewed-by: Alex Deucher Signed-off-by: Ken Wang Cc: stable@vger.kernel.org --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c index 8a1752ff3d8e..55cf05e1c81c 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c @@ -808,7 +808,7 @@ uint32_t amdgpu_ttm_tt_pte_flags(struct amdgpu_device *adev, struct ttm_tt *ttm, flags |= AMDGPU_PTE_SNOOPED; } - if (adev->asic_type >= CHIP_TOPAZ) + if (adev->asic_type >= CHIP_TONGA) flags |= AMDGPU_PTE_EXECUTABLE; flags |= AMDGPU_PTE_READABLE;