From: "Christian König" <christian.koenig@amd.com>
To: Dave Airlie <airlied@gmail.com>, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 1/2] drm/ttm: drop special pipeline accel cleanup function.
Date: Thu, 17 Sep 2020 10:01:45 +0200 [thread overview]
Message-ID: <0ba686b4-6775-9957-29c4-2f5d1c21afd1@amd.com> (raw)
In-Reply-To: <20200917064132.148521-2-airlied@gmail.com>
Am 17.09.20 um 08:41 schrieb Dave Airlie:
> From: Dave Airlie <airlied@redhat.com>
>
> The two accel cleanup paths were mostly the same once refactored.
>
> Just pass a bool to say if the evictions are to be pipelined.
>
> Signed-off-by: Dave Airlie <airlied@redhat.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 5 +-
> drivers/gpu/drm/nouveau/nouveau_bo.c | 2 +-
> drivers/gpu/drm/radeon/radeon_ttm.c | 2 +-
> drivers/gpu/drm/ttm/ttm_bo_util.c | 89 +++++++++----------------
> include/drm/ttm/ttm_bo_driver.h | 17 +----
> 5 files changed, 37 insertions(+), 78 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
> index a57aaf666340..1ea58ce7c559 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
> @@ -499,10 +499,7 @@ static int amdgpu_move_blit(struct ttm_buffer_object *bo,
> }
>
> /* Always block for VM page tables before committing the new location */
> - if (bo->type == ttm_bo_type_kernel)
> - r = ttm_bo_move_accel_cleanup(bo, fence, true, new_mem);
> - else
> - r = ttm_bo_pipeline_move(bo, fence, evict, new_mem);
> + r = ttm_bo_move_accel_cleanup(bo, fence, true, bo->type != ttm_bo_type_kernel, new_mem);
You are now passing evict as always true here. I would keep the if instead.
Apart from that looks good to me,
Christian.
> dma_fence_put(fence);
> return r;
>
> diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c
> index 56f974c28eb5..2ee75646ad6f 100644
> --- a/drivers/gpu/drm/nouveau/nouveau_bo.c
> +++ b/drivers/gpu/drm/nouveau/nouveau_bo.c
> @@ -824,7 +824,7 @@ nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr,
> if (ret == 0) {
> ret = ttm_bo_move_accel_cleanup(bo,
> &fence->base,
> - evict,
> + evict, false,
> new_reg);
> nouveau_fence_unref(&fence);
> }
> diff --git a/drivers/gpu/drm/radeon/radeon_ttm.c b/drivers/gpu/drm/radeon/radeon_ttm.c
> index 99d9ca1087b7..36150b7f31a9 100644
> --- a/drivers/gpu/drm/radeon/radeon_ttm.c
> +++ b/drivers/gpu/drm/radeon/radeon_ttm.c
> @@ -200,7 +200,7 @@ static int radeon_move_blit(struct ttm_buffer_object *bo,
> if (IS_ERR(fence))
> return PTR_ERR(fence);
>
> - r = ttm_bo_move_accel_cleanup(bo, &fence->base, evict, new_mem);
> + r = ttm_bo_move_accel_cleanup(bo, &fence->base, evict, false, new_mem);
> radeon_fence_unref(&fence);
> return r;
> }
> diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
> index 502d334786d2..777f843cdb98 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo_util.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
> @@ -581,81 +581,56 @@ static int ttm_bo_move_to_ghost(struct ttm_buffer_object *bo,
> return 0;
> }
>
> -int ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo,
> - struct dma_fence *fence,
> - bool evict,
> - struct ttm_resource *new_mem)
> +static void ttm_bo_move_pipeline_evict(struct ttm_buffer_object *bo,
> + struct dma_fence *fence)
> {
> struct ttm_bo_device *bdev = bo->bdev;
> - struct ttm_resource_manager *man = ttm_manager_type(bdev, new_mem->mem_type);
> - int ret;
> + struct ttm_resource_manager *from = ttm_manager_type(bdev, bo->mem.mem_type);
>
> - dma_resv_add_excl_fence(bo->base.resv, fence);
> - if (evict)
> - ret = ttm_bo_wait_free_node(bo, man->use_tt);
> - else
> - ret = ttm_bo_move_to_ghost(bo, fence, man->use_tt);
> - if (ret)
> - return ret;
> + /**
> + * BO doesn't have a TTM we need to bind/unbind. Just remember
> + * this eviction and free up the allocation
> + */
> + spin_lock(&from->move_lock);
> + if (!from->move || dma_fence_is_later(fence, from->move)) {
> + dma_fence_put(from->move);
> + from->move = dma_fence_get(fence);
> + }
> + spin_unlock(&from->move_lock);
>
> - ttm_bo_assign_mem(bo, new_mem);
> + ttm_bo_free_old_node(bo);
>
> - return 0;
> + dma_fence_put(bo->moving);
> + bo->moving = dma_fence_get(fence);
> }
> -EXPORT_SYMBOL(ttm_bo_move_accel_cleanup);
>
> -int ttm_bo_pipeline_move(struct ttm_buffer_object *bo,
> - struct dma_fence *fence, bool evict,
> - struct ttm_resource *new_mem)
> +int ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo,
> + struct dma_fence *fence,
> + bool evict,
> + bool pipeline,
> + struct ttm_resource *new_mem)
> {
> struct ttm_bo_device *bdev = bo->bdev;
> -
> struct ttm_resource_manager *from = ttm_manager_type(bdev, bo->mem.mem_type);
> - struct ttm_resource_manager *to = ttm_manager_type(bdev, new_mem->mem_type);
> -
> - int ret;
> + struct ttm_resource_manager *man = ttm_manager_type(bdev, new_mem->mem_type);
> + int ret = 0;
>
> dma_resv_add_excl_fence(bo->base.resv, fence);
> + if (!evict)
> + ret = ttm_bo_move_to_ghost(bo, fence, man->use_tt);
> + else if (!from->use_tt && pipeline)
> + ttm_bo_move_pipeline_evict(bo, fence);
> + else
> + ret = ttm_bo_wait_free_node(bo, man->use_tt);
>
> - if (!evict) {
> - ret = ttm_bo_move_to_ghost(bo, fence, to->use_tt);
> - if (ret)
> - return ret;
> - } else if (!from->use_tt) {
> -
> - /**
> - * BO doesn't have a TTM we need to bind/unbind. Just remember
> - * this eviction and free up the allocation
> - */
> -
> - spin_lock(&from->move_lock);
> - if (!from->move || dma_fence_is_later(fence, from->move)) {
> - dma_fence_put(from->move);
> - from->move = dma_fence_get(fence);
> - }
> - spin_unlock(&from->move_lock);
> -
> - ttm_bo_free_old_node(bo);
> -
> - dma_fence_put(bo->moving);
> - bo->moving = dma_fence_get(fence);
> -
> - } else {
> - /**
> - * Last resort, wait for the move to be completed.
> - *
> - * Should never happen in pratice.
> - */
> - ret = ttm_bo_wait_free_node(bo, to->use_tt);
> - if (ret)
> - return ret;
> - }
> + if (ret)
> + return ret;
>
> ttm_bo_assign_mem(bo, new_mem);
>
> return 0;
> }
> -EXPORT_SYMBOL(ttm_bo_pipeline_move);
> +EXPORT_SYMBOL(ttm_bo_move_accel_cleanup);
>
> int ttm_bo_pipeline_gutting(struct ttm_buffer_object *bo)
> {
> diff --git a/include/drm/ttm/ttm_bo_driver.h b/include/drm/ttm/ttm_bo_driver.h
> index 25cc932d63f1..864afa8f6f18 100644
> --- a/include/drm/ttm/ttm_bo_driver.h
> +++ b/include/drm/ttm/ttm_bo_driver.h
> @@ -642,6 +642,7 @@ void ttm_bo_free_old_node(struct ttm_buffer_object *bo);
> * @bo: A pointer to a struct ttm_buffer_object.
> * @fence: A fence object that signals when moving is complete.
> * @evict: This is an evict move. Don't return until the buffer is idle.
> + * @pipeline: evictions are to be pipelined.
> * @new_mem: struct ttm_resource indicating where to move.
> *
> * Accelerated move function to be called when an accelerated move
> @@ -653,23 +654,9 @@ void ttm_bo_free_old_node(struct ttm_buffer_object *bo);
> */
> int ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo,
> struct dma_fence *fence, bool evict,
> + bool pipeline,
> struct ttm_resource *new_mem);
>
> -/**
> - * ttm_bo_pipeline_move.
> - *
> - * @bo: A pointer to a struct ttm_buffer_object.
> - * @fence: A fence object that signals when moving is complete.
> - * @evict: This is an evict move. Don't return until the buffer is idle.
> - * @new_mem: struct ttm_resource indicating where to move.
> - *
> - * Function for pipelining accelerated moves. Either free the memory
> - * immediately or hang it on a temporary buffer object.
> - */
> -int ttm_bo_pipeline_move(struct ttm_buffer_object *bo,
> - struct dma_fence *fence, bool evict,
> - struct ttm_resource *new_mem);
> -
> /**
> * ttm_bo_pipeline_gutting.
> *
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2020-09-17 8:01 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-17 6:41 [PATCH 0/2] ttm follow-on cleanups Dave Airlie
2020-09-17 6:41 ` [PATCH 1/2] drm/ttm: drop special pipeline accel cleanup function Dave Airlie
2020-09-17 8:01 ` Christian König [this message]
2020-09-17 6:41 ` [PATCH 2/2] drm/ttm: drop evicted from ttm_bo Dave Airlie
2020-09-17 8:02 ` Christian König
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0ba686b4-6775-9957-29c4-2f5d1c21afd1@amd.com \
--to=christian.koenig@amd.com \
--cc=airlied@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox