Parcourir la source

drm/radeon: clarify why we evict vram twice on suspend

Update the comment to explain why we do this.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Alex Deucher il y a 8 ans
Parent
commit
ec9aaaff66
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      drivers/gpu/drm/radeon/radeon_device.c

+ 4 - 1
drivers/gpu/drm/radeon/radeon_device.c

@@ -1651,7 +1651,10 @@ int radeon_suspend_kms(struct drm_device *dev, bool suspend,
 
 
 	radeon_suspend(rdev);
 	radeon_suspend(rdev);
 	radeon_hpd_fini(rdev);
 	radeon_hpd_fini(rdev);
-	/* evict remaining vram memory */
+	/* evict remaining vram memory
+	 * This second call to evict vram is to evict the gart page table
+	 * using the CPU.
+	 */
 	radeon_bo_evict_vram(rdev);
 	radeon_bo_evict_vram(rdev);
 
 
 	radeon_agp_suspend(rdev);
 	radeon_agp_suspend(rdev);