From: "Zhang, Jerry (Junwei)" <Jerry.Zhang-5C7GfCeVMHo@public.gmane.org>
To: Chunming Zhou <David1.Zhou-5C7GfCeVMHo@public.gmane.org>,
amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH 3/6] drm/amdgpu: reserve/unreserve vmid by vm ioctl v4
Date: Thu, 27 Apr 2017 13:41:40 +0800 [thread overview]
Message-ID: <59018494.7040407@amd.com> (raw)
In-Reply-To: <1493269238-26742-4-git-send-email-David1.Zhou-5C7GfCeVMHo@public.gmane.org>
On 04/27/2017 01:00 PM, Chunming Zhou wrote:
> add reserve/unreserve vmid funtions.
> v3:
> only reserve vmid from gfxhub
> v4:
> fix racy condition
>
> Change-Id: I5f80dc39dc9d44660a96a2b710b0dbb4d3b9039d
> Signed-off-by: Chunming Zhou <David1.Zhou@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 62 +++++++++++++++++++++++++++-------
> 1 file changed, 49 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
> index 261aaea..e37421e 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
> @@ -546,6 +546,45 @@ int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
> return r;
> }
>
> +static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev,
> + struct amdgpu_vm *vm,
> + unsigned vmhub)
> +{
> + struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub];
> +
> + mutex_lock(&id_mgr->lock);
> + if (vm->reserved_vmid[vmhub]) {
> + list_add(&vm->reserved_vmid[vmhub]->list,
> + &id_mgr->ids_lru);
> + vm->reserved_vmid[vmhub] = NULL;
> + }
> + mutex_unlock(&id_mgr->lock);
> +}
> +
> +static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev,
> + struct amdgpu_vm *vm,
> + unsigned vmhub)
> +{
> + struct amdgpu_vm_id_manager *id_mgr;
> + struct amdgpu_vm_id *idle;
> + int r = 0;
> +
> + id_mgr = &adev->vm_manager.id_mgr[vmhub];
> + mutex_lock(&id_mgr->lock);
> + if (vm->reserved_vmid[vmhub])
> + goto unlock;
> + /* Select the first entry VMID */
> + idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list);
> + list_del_init(&idle->list);
Could you give a hint how to handle the busy id, what if it's not idle when
allocating the reserved vmid?
Jerry
> + vm->reserved_vmid[vmhub] = idle;
> + mutex_unlock(&id_mgr->lock);
> +
> + return 0;
> +unlock:
> + mutex_unlock(&id_mgr->lock);
> + return r;
> +}
> +
> static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring)
> {
> struct amdgpu_device *adev = ring->adev;
> @@ -2316,18 +2355,8 @@ void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
>
> amdgpu_vm_free_levels(&vm->root);
> fence_put(vm->last_dir_update);
> - for (i = 0; i < AMDGPU_MAX_VMHUBS; i++) {
> - struct amdgpu_vm_id_manager *id_mgr =
> - &adev->vm_manager.id_mgr[i];
> -
> - mutex_lock(&id_mgr->lock);
> - if (vm->reserved_vmid[i]) {
> - list_add(&vm->reserved_vmid[i]->list,
> - &id_mgr->ids_lru);
> - vm->reserved_vmid[i] = NULL;
> - }
> - mutex_unlock(&id_mgr->lock);
> - }
> + for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
> + amdgpu_vm_free_reserved_vmid(adev, vm, i);
> }
>
> /**
> @@ -2400,11 +2429,18 @@ int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
> union drm_amdgpu_vm *args = data;
> struct amdgpu_device *adev = dev->dev_private;
> struct amdgpu_fpriv *fpriv = filp->driver_priv;
> + int r;
>
> switch (args->in.op) {
> case AMDGPU_VM_OP_RESERVE_VMID:
> + /* current, we only have requirement to reserve vmid from gfxhub */
> + r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm,
> + AMDGPU_GFXHUB);
> + if (r)
> + return r;
> + break;
> case AMDGPU_VM_OP_UNRESERVE_VMID:
> - return -EINVAL;
> + amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB);
> break;
> default:
> return -EINVAL;
>
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
next prev parent reply other threads:[~2017-04-27 5:41 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-27 5:00 [PATCH 0/6 v4] *** Dedicated vmid per process v4 *** Chunming Zhou
[not found] ` <1493269238-26742-1-git-send-email-David1.Zhou-5C7GfCeVMHo@public.gmane.org>
2017-04-27 5:00 ` [PATCH 1/6] drm/amdgpu: add vm ioctl Chunming Zhou
2017-04-27 5:00 ` [PATCH 2/6] drm/amdgpu: add reserved vmid field in vm struct v2 Chunming Zhou
2017-04-27 5:00 ` [PATCH 3/6] drm/amdgpu: reserve/unreserve vmid by vm ioctl v4 Chunming Zhou
[not found] ` <1493269238-26742-4-git-send-email-David1.Zhou-5C7GfCeVMHo@public.gmane.org>
2017-04-27 5:41 ` Zhang, Jerry (Junwei) [this message]
2017-04-27 5:00 ` [PATCH 4/6] drm/amdgpu: add limitation for dedicated vm number v4 Chunming Zhou
2017-04-27 5:00 ` [PATCH 5/6] drm/amdgpu: implement grab reserved vmid V3 Chunming Zhou
[not found] ` <1493269238-26742-6-git-send-email-David1.Zhou-5C7GfCeVMHo@public.gmane.org>
2017-04-27 5:54 ` Zhang, Jerry (Junwei)
[not found] ` <5901879F.2030407-5C7GfCeVMHo@public.gmane.org>
2017-04-27 7:57 ` Zhang, Jerry (Junwei)
2017-04-27 5:00 ` [PATCH 6/6] drm/amdgpu: bump module verion for reserved vmid Chunming Zhou
2017-04-27 7:58 ` [PATCH 0/6 v4] *** Dedicated vmid per process v4 *** Zhang, Jerry (Junwei)
2017-04-27 9:51 ` Christian König
[not found] ` <78a42a6d-6e32-3f93-9fab-cecc9dab9fab-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
2017-04-27 10:26 ` zhoucm1
[not found] ` <5901C757.9070103-5C7GfCeVMHo@public.gmane.org>
2017-04-27 12:10 ` Christian König
-- strict thread matches above, loose matches on Subject: below --
2017-04-27 13:09 [PATCH 0/6 v5] *** Dedicated vmid per process v5 *** Chunming Zhou
[not found] ` <1493298597-28517-1-git-send-email-David1.Zhou-5C7GfCeVMHo@public.gmane.org>
2017-04-27 13:09 ` [PATCH 3/6] drm/amdgpu: reserve/unreserve vmid by vm ioctl v4 Chunming Zhou
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=59018494.7040407@amd.com \
--to=jerry.zhang-5c7gfcevmho@public.gmane.org \
--cc=David1.Zhou-5C7GfCeVMHo@public.gmane.org \
--cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@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.