drm/ttm: move some move binds into the drivers
authorDave Airlie <airlied@redhat.com>
Tue, 20 Oct 2020 01:03:13 +0000 (11:03 +1000)
committerDave Airlie <airlied@redhat.com>
Wed, 21 Oct 2020 03:43:21 +0000 (13:43 +1000)
This just gives the driver control over some of the bind paths.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20201020010319.1692445-2-airlied@gmail.com
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
drivers/gpu/drm/nouveau/nouveau_bo.c
drivers/gpu/drm/radeon/radeon_ttm.c
drivers/gpu/drm/ttm/ttm_bo_util.c

index 00bec99..11f464e 100644 (file)
@@ -605,10 +605,15 @@ static int amdgpu_move_ram_vram(struct ttm_buffer_object *bo, bool evict,
        }
 
        /* move/bind old memory to GTT space */
-       r = ttm_bo_move_to_new_tt_mem(bo, ctx, &tmp_mem);
+       r = ttm_tt_populate(bo->bdev, bo->ttm, ctx);
+       if (unlikely(r))
+               return r;
+
+       r = amdgpu_ttm_backend_bind(bo->bdev, bo->ttm, &tmp_mem);
        if (unlikely(r)) {
                goto out_cleanup;
        }
+
        ttm_bo_assign_mem(bo, &tmp_mem);
        /* copy to VRAM */
        r = amdgpu_move_blit(bo, evict, new_mem, old_mem);
index ec79c3b..526bbf4 100644 (file)
@@ -931,9 +931,13 @@ nouveau_bo_move_flips(struct ttm_buffer_object *bo, bool evict,
        if (ret)
                return ret;
 
-       ret = ttm_bo_move_to_new_tt_mem(bo, ctx, &tmp_reg);
-       if (ret)
-               goto out;
+       ret = ttm_tt_populate(bo->bdev, bo->ttm, ctx);
+       if (unlikely(ret != 0))
+               return ret;
+
+       ret = nouveau_ttm_tt_bind(bo->bdev, bo->ttm, &tmp_reg);
+       if (unlikely(ret != 0))
+               return ret;
 
        ttm_bo_assign_mem(bo, &tmp_reg);
        ret = nouveau_bo_move_m2mf(bo, true, ctx, new_reg);
index 4266431..c1cdee3 100644 (file)
@@ -279,10 +279,15 @@ static int radeon_move_ram_vram(struct ttm_buffer_object *bo,
        if (unlikely(r)) {
                return r;
        }
-       r = ttm_bo_move_to_new_tt_mem(bo, ctx, &tmp_mem);
-       if (unlikely(r)) {
+
+       r = ttm_tt_populate(bo->bdev, bo->ttm, ctx);
+       if (unlikely(r))
                goto out_cleanup;
-       }
+
+       r = radeon_ttm_tt_bind(bo->bdev, bo->ttm, &tmp_mem);
+       if (unlikely(r))
+               goto out_cleanup;
+
        ttm_bo_assign_mem(bo, &tmp_mem);
        r = radeon_move_blit(bo, true, new_mem, old_mem);
        if (unlikely(r)) {
index 558e78a..520b53e 100644 (file)
@@ -64,7 +64,6 @@ int ttm_bo_move_to_new_tt_mem(struct ttm_buffer_object *bo,
 
        return 0;
 }
-EXPORT_SYMBOL(ttm_bo_move_to_new_tt_mem);
 
 int ttm_bo_move_to_system(struct ttm_buffer_object *bo,
                          struct ttm_operation_ctx *ctx)