drm/ttm: add evict parameter to ttm_bo_driver::move_notify
authorNicolai Hähnle <nicolai.haehnle@amd.com>
Thu, 15 Dec 2016 16:23:49 +0000 (17:23 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 27 Jan 2017 16:13:15 +0000 (11:13 -0500)
Ensure that the driver can listen to evictions even when they don't take the
path through ttm_bo_driver::move.

This is crucial for amdgpu, which relies on an eviction counter to skip
re-binding page tables when possible.

Signed-off-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
drivers/gpu/drm/amd/amdgpu/amdgpu_object.h
drivers/gpu/drm/nouveau/nouveau_bo.c
drivers/gpu/drm/qxl/qxl_ttm.c
drivers/gpu/drm/radeon/radeon_object.c
drivers/gpu/drm/radeon/radeon_object.h
drivers/gpu/drm/ttm/ttm_bo.c
drivers/gpu/drm/virtio/virtgpu_ttm.c
drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c
include/drm/ttm/ttm_bo_driver.h

index bf79b73e1538e3785317720018ffc8376e870610..c29db99f9048b6ae153de09e5d3e73b888d797af 100644 (file)
@@ -849,6 +849,7 @@ int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer,
 }
 
 void amdgpu_bo_move_notify(struct ttm_buffer_object *bo,
+                          bool evict,
                           struct ttm_mem_reg *new_mem)
 {
        struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
index 5cbf59ec0f6849e456b4238839f13dc2993bc0ee..4306b2f2c8f0d57134bf19599d59f0e18c817e5d 100644 (file)
@@ -155,7 +155,8 @@ int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer,
                           size_t buffer_size, uint32_t *metadata_size,
                           uint64_t *flags);
 void amdgpu_bo_move_notify(struct ttm_buffer_object *bo,
-                                 struct ttm_mem_reg *new_mem);
+                          bool evict,
+                          struct ttm_mem_reg *new_mem);
 int amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo);
 void amdgpu_bo_fence(struct amdgpu_bo *bo, struct dma_fence *fence,
                     bool shared);
index dd07ca140d12ffcfcb61244e5606bca782e31bb5..2435183a625c6f8b374fffe63d9e6c9435d20c73 100644 (file)
@@ -1194,7 +1194,8 @@ out:
 }
 
 static void
-nouveau_bo_move_ntfy(struct ttm_buffer_object *bo, struct ttm_mem_reg *new_mem)
+nouveau_bo_move_ntfy(struct ttm_buffer_object *bo, bool evict,
+                    struct ttm_mem_reg *new_mem)
 {
        struct nouveau_bo *nvbo = nouveau_bo(bo);
        struct nvkm_vma *vma;
index bc1c896bc5e1e623ebd2cb13c32857b93bde8f3f..4ecf97af29c4ef6d61cd372de0b8e8eea34e83ce 100644 (file)
@@ -366,6 +366,7 @@ static int qxl_bo_move(struct ttm_buffer_object *bo,
 }
 
 static void qxl_bo_move_notify(struct ttm_buffer_object *bo,
+                              bool evict,
                               struct ttm_mem_reg *new_mem)
 {
        struct qxl_bo *qbo;
index 41b72ce6613febc033c0e37fe68655faeca65554..74b276060c205ab85fad15e59b983e76a123e349 100644 (file)
@@ -765,6 +765,7 @@ int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
 }
 
 void radeon_bo_move_notify(struct ttm_buffer_object *bo,
+                          bool evict,
                           struct ttm_mem_reg *new_mem)
 {
        struct radeon_bo *rbo;
index a10bb3deee5417a0481014d019a046c6d2b15c19..9ffd8215d38aaaaff2e0dec75783d22b670f7a09 100644 (file)
@@ -150,6 +150,7 @@ extern void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
 extern int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
                                bool force_drop);
 extern void radeon_bo_move_notify(struct ttm_buffer_object *bo,
+                                 bool evict,
                                  struct ttm_mem_reg *new_mem);
 extern int radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo);
 extern int radeon_bo_get_surface_reg(struct radeon_bo *bo);
index d5063618efa773757ff1608f3e0caf535ef2cc85..d4973e9c126e385e3f3bd6b68dc065b3f3ef2373 100644 (file)
@@ -342,7 +342,7 @@ static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
 
                if (bo->mem.mem_type == TTM_PL_SYSTEM) {
                        if (bdev->driver->move_notify)
-                               bdev->driver->move_notify(bo, mem);
+                               bdev->driver->move_notify(bo, evict, mem);
                        bo->mem = *mem;
                        mem->mm_node = NULL;
                        goto moved;
@@ -350,7 +350,7 @@ static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
        }
 
        if (bdev->driver->move_notify)
-               bdev->driver->move_notify(bo, mem);
+               bdev->driver->move_notify(bo, evict, mem);
 
        if (!(old_man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
            !(new_man->flags & TTM_MEMTYPE_FLAG_FIXED))
@@ -366,7 +366,7 @@ static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
                        struct ttm_mem_reg tmp_mem = *mem;
                        *mem = bo->mem;
                        bo->mem = tmp_mem;
-                       bdev->driver->move_notify(bo, mem);
+                       bdev->driver->move_notify(bo, false, mem);
                        bo->mem = *mem;
                        *mem = tmp_mem;
                }
@@ -414,7 +414,7 @@ out_err:
 static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
 {
        if (bo->bdev->driver->move_notify)
-               bo->bdev->driver->move_notify(bo, NULL);
+               bo->bdev->driver->move_notify(bo, false, NULL);
 
        ttm_tt_destroy(bo->ttm);
        bo->ttm = NULL;
index 63b3d5d35cf6f574ad67ea514f1b2de745fa532e..07b0de530cb9189b1cbb40bcc743d7258d0b7230 100644 (file)
@@ -386,6 +386,7 @@ static int virtio_gpu_bo_move(struct ttm_buffer_object *bo,
 }
 
 static void virtio_gpu_bo_move_notify(struct ttm_buffer_object *tbo,
+                                     bool evict,
                                      struct ttm_mem_reg *new_mem)
 {
        struct virtio_gpu_object *bo;
index c894a48a74a62c532ea430cf4d54f0934d07d482..caa279b6b56ffa82c10b23495c1129b7a2b2d36f 100644 (file)
@@ -825,6 +825,7 @@ static int vmw_ttm_fault_reserve_notify(struct ttm_buffer_object *bo)
  * (currently only resources).
  */
 static void vmw_move_notify(struct ttm_buffer_object *bo,
+                           bool evict,
                            struct ttm_mem_reg *mem)
 {
        vmw_resource_move_notify(bo, mem);
index cdbdb40eb5bd3a83d1a2ea594c0de3efa9226c02..8b4bec7bd57b4091f769ef25ebb145304fb3f133 100644 (file)
@@ -431,9 +431,15 @@ struct ttm_bo_driver {
        int (*verify_access)(struct ttm_buffer_object *bo,
                             struct file *filp);
 
-       /* hook to notify driver about a driver move so it
-        * can do tiling things */
+       /**
+        * Hook to notify driver about a driver move so it
+        * can do tiling things and book-keeping.
+        *
+        * @evict: whether this move is evicting the buffer from the graphics
+        * address space
+        */
        void (*move_notify)(struct ttm_buffer_object *bo,
+                           bool evict,
                            struct ttm_mem_reg *new_mem);
        /* notify the driver we are taking a fault on this BO
         * and have reserved it */