diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2019-07-02 14:35:36 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2019-07-18 14:18:01 -0500 |
commit | 2665ec41718a8514c85f2becf83c58b8c5041ed6 (patch) | |
tree | cd808eeb53e96fc63505ef61b09fccc5b595c8f3 /drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c | |
parent | ba02636de54e7c2f8d549401ce9c9f508a05ef7a (diff) | |
download | linux-2665ec41718a8514c85f2becf83c58b8c5041ed6.tar.gz linux-2665ec41718a8514c85f2becf83c58b8c5041ed6.tar.bz2 linux-2665ec41718a8514c85f2becf83c58b8c5041ed6.zip |
drm/amdgpu: disable concurrent flushes on Navi14
Same thing applies to navi14 as navi10.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c index 57b3d8a9bef3..529065b83885 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c @@ -368,7 +368,8 @@ static int amdgpu_vmid_grab_used(struct amdgpu_vm *vm, * are broken on Navi10 and Navi14. */ if (needs_flush && (adev->asic_type < CHIP_VEGA10 || - adev->asic_type == CHIP_NAVI10)) + adev->asic_type == CHIP_NAVI10 || + adev->asic_type == CHIP_NAVI14)) continue; /* Good, we can use this VMID. Remember this submission as |