aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMichel Dänzer <michel.daenzer@amd.com>2014-08-07 03:46:56 -0400
committerAlex Deucher <alexander.deucher@amd.com>2014-08-15 00:58:17 -0400
commit6f28ef4797fe651aca36430102cff321c172b29b (patch)
tree7d078305c7b76fd2660b7b8fe4b9398013e98398 /drivers
parent68b1ea30e4b64c6c5a1ed7c1970062d61c1a892c (diff)
drm/radeon: Always flush VM again on < CIK
Not doing this causes piglit hangs[0] on my Cape Verde card. No issues on Bonaire and Kaveri though. [0] Same symptoms as those fixed on CIK by 'drm/radeon: set VM base addr using the PFP v2'. Signed-off-by: Michel Dänzer <michel.daenzer@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/radeon/radeon_vm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_vm.c b/drivers/gpu/drm/radeon/radeon_vm.c
index 9c8358f6f130..058f20085369 100644
--- a/drivers/gpu/drm/radeon/radeon_vm.c
+++ b/drivers/gpu/drm/radeon/radeon_vm.c
@@ -238,7 +238,9 @@ void radeon_vm_flush(struct radeon_device *rdev,
238 uint64_t pd_addr = radeon_bo_gpu_offset(vm->page_directory); 238 uint64_t pd_addr = radeon_bo_gpu_offset(vm->page_directory);
239 239
240 /* if we can't remember our last VM flush then flush now! */ 240 /* if we can't remember our last VM flush then flush now! */
241 if (!vm->last_flush || pd_addr != vm->pd_gpu_addr) { 241 /* XXX figure out why we have to flush all the time before CIK */
242 if (rdev->family < CHIP_BONAIRE ||
243 !vm->last_flush || pd_addr != vm->pd_gpu_addr) {
242 trace_radeon_vm_flush(pd_addr, ring, vm->id); 244 trace_radeon_vm_flush(pd_addr, ring, vm->id);
243 vm->pd_gpu_addr = pd_addr; 245 vm->pd_gpu_addr = pd_addr;
244 radeon_ring_vm_flush(rdev, ring, vm); 246 radeon_ring_vm_flush(rdev, ring, vm);