]> Git Repo - linux.git/blobdiff - drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
Merge drm/drm-fixes into drm-misc-fixes
[linux.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_vm.c
index 0ffdf847cad0a2e7c4575be981c8b72666c3c9dd..9acee4a5b2bad8bce0f68544210fe897953b969c 100644 (file)
@@ -3148,6 +3148,12 @@ void amdgpu_vm_manager_init(struct amdgpu_device *adev)
 {
        unsigned i;
 
+       /* Concurrent flushes are only possible starting with Vega10 and
+        * are broken on Navi10 and Navi14.
+        */
+       adev->vm_manager.concurrent_flush = !(adev->asic_type < CHIP_VEGA10 ||
+                                             adev->asic_type == CHIP_NAVI10 ||
+                                             adev->asic_type == CHIP_NAVI14);
        amdgpu_vmid_mgr_init(adev);
 
        adev->vm_manager.fence_context =
This page took 0.032947 seconds and 4 git commands to generate.