All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian König" <ckoenig.leichtzumerken-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Chunming Zhou <david1.zhou-5C7GfCeVMHo@public.gmane.org>,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Cc: felix.kuehling-5C7GfCeVMHo@public.gmane.org
Subject: Re: [PATCH 2/2] drm/amdgpu: add new bo flag that indicates BOs don't need fallback
Date: Wed, 4 Apr 2018 11:10:55 +0200	[thread overview]
Message-ID: <a7ee9bdf-581b-19e0-6648-b537ca718f16@gmail.com> (raw)
In-Reply-To: <20180403092453.15889-2-david1.zhou-5C7GfCeVMHo@public.gmane.org>

Am 03.04.2018 um 11:24 schrieb Chunming Zhou:
> user cases:
> 1. KFD wraps amdgpu_bo_create, they have no fallback case which is different
> with amdgpu_gem_object_create.
> since upstream branch has no amdgpu_amdkfd_gpuvm.c, which need KFD
> guys add this flag to __alloc_memory_of_gpu:
> +       flags |= AMDGPU_GEM_CREATE_NO_FALLBACK;
> 2. UMD can specify this flag for their allocation as well if they like.

Please drop the second comment, we currently block the UMD from using 
this flag.

>
> Change-Id: Id3ac1a0bdd48633328d0b22c4c057fab4e94d0b3
> Signed-off-by: Chunming Zhou <david1.zhou@amd.com>
> Cc: felix.kuehling@amd.com
> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c     | 3 ++-
>   drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | 3 ++-
>   include/uapi/drm/amdgpu_drm.h              | 2 ++
>   3 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> index dc34b50e6b29..d7d7ce1507ec 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> @@ -386,7 +386,8 @@ static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
>   	    bo->tbo.mem.start < adev->gmc.visible_vram_size >> PAGE_SHIFT)
>   		p->bytes_moved_vis += ctx.bytes_moved;
>   
> -	if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
> +	if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains &&
> +	    !(bo->flags & AMDGPU_GEM_CREATE_NO_FALLBACK)) {

Please drop that change, we can control BO placement purely using the 
preferred/allowed domains here.

Apart from that the patch looks good to me,
Christian.

>   		domain = bo->allowed_domains;
>   		goto retry;
>   	}
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
> index f04bfab1eebd..c70d745073b8 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
> @@ -420,7 +420,8 @@ static int amdgpu_bo_do_create(struct amdgpu_device *adev, unsigned long size,
>   	r = ttm_bo_init_reserved(&adev->mman.bdev, &bo->tbo, size, type,
>   				 &bo->placement, page_align, &ctx, acc_size,
>   				 NULL, resv, &amdgpu_ttm_bo_destroy);
> -	if (unlikely(r && r != -ERESTARTSYS) && type == ttm_bo_type_device) {
> +	if (unlikely(r && r != -ERESTARTSYS) && type == ttm_bo_type_device &&
> +	    !(flags & AMDGPU_GEM_CREATE_NO_FALLBACK)) {
>   		if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) {
>   			flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
>   			goto retry;
> diff --git a/include/uapi/drm/amdgpu_drm.h b/include/uapi/drm/amdgpu_drm.h
> index 0087799962cf..80665715e651 100644
> --- a/include/uapi/drm/amdgpu_drm.h
> +++ b/include/uapi/drm/amdgpu_drm.h
> @@ -98,6 +98,8 @@ extern "C" {
>   #define AMDGPU_GEM_CREATE_VM_ALWAYS_VALID	(1 << 6)
>   /* Flag that BO sharing will be explicitly synchronized */
>   #define AMDGPU_GEM_CREATE_EXPLICIT_SYNC		(1 << 7)
> +/* Flag that BO doesn't need fallback */
> +#define AMDGPU_GEM_CREATE_NO_FALLBACK		(1 << 8)
>   
>   struct drm_amdgpu_gem_create_in  {
>   	/** the requested memory size */

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

      parent reply	other threads:[~2018-04-04  9:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-03  9:24 [PATCH 1/2] drm/amdgpu: Don't change preferred domian when fallback GTT v6 Chunming Zhou
     [not found] ` <20180403092453.15889-1-david1.zhou-5C7GfCeVMHo@public.gmane.org>
2018-04-03  9:24   ` [PATCH 2/2] drm/amdgpu: add new bo flag that indicates BOs don't need fallback Chunming Zhou
     [not found]     ` <20180403092453.15889-2-david1.zhou-5C7GfCeVMHo@public.gmane.org>
2018-04-03 15:46       ` Felix Kuehling
2018-04-04  9:10       ` Christian König [this message]

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=a7ee9bdf-581b-19e0-6648-b537ca718f16@gmail.com \
    --to=ckoenig.leichtzumerken-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    --cc=christian.koenig-5C7GfCeVMHo@public.gmane.org \
    --cc=david1.zhou-5C7GfCeVMHo@public.gmane.org \
    --cc=felix.kuehling-5C7GfCeVMHo@public.gmane.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.