From: Matthew Auld <matthew.auld@intel.com>
To: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>,
intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: paulo.r.zanoni@intel.com, jani.nikula@intel.com,
thomas.hellstrom@intel.com, daniel.vetter@intel.com,
christian.koenig@amd.com
Subject: Re: [Intel-gfx] [PATCH v3 05/17] drm/i915/vm_bind: Implement bind and unbind of object
Date: Tue, 11 Oct 2022 18:37:57 +0100 [thread overview]
Message-ID: <6c6a89ef-9056-4673-9f37-61eff94b2f26@intel.com> (raw)
In-Reply-To: <20221010065826.32037-6-niranjana.vishwanathapura@intel.com>
On 10/10/2022 07:58, Niranjana Vishwanathapura wrote:
> Add uapi and implement support for bind and unbind of an
> object at the specified GPU virtual addresses.
>
> The vm_bind mode is not supported in legacy execbuf2 ioctl.
> It will be supported only in the newer execbuf3 ioctl.
>
> v2: On older platforms ctx->vm is not set, check for it.
> In vm_bind call, add vma to vm_bind_list.
> Add more input validity checks.
> Update some documentation.
> v3: In vm_bind call, add vma to vm_bound_list as user can
> request a fence and pass to execbuf3 as input fence.
> Remove short term pinning with PIN_VALIDATE flag.
>
> Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
> Signed-off-by: Prathap Kumar Valsan <prathap.kumar.valsan@intel.com>
> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
next prev parent reply other threads:[~2022-10-11 17:38 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-10 6:58 [Intel-gfx] [PATCH v3 00/17] drm/i915/vm_bind: Add VM_BIND functionality Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 01/17] drm/i915/vm_bind: Expose vm lookup function Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 02/17] drm/i915/vm_bind: Add __i915_sw_fence_await_reservation() Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 03/17] drm/i915/vm_bind: Expose i915_gem_object_max_page_size() Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 04/17] drm/i915/vm_bind: Add support to create persistent vma Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 05/17] drm/i915/vm_bind: Implement bind and unbind of object Niranjana Vishwanathapura
2022-10-11 17:37 ` Matthew Auld [this message]
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 06/17] drm/i915/vm_bind: Support for VM private BOs Niranjana Vishwanathapura
2022-10-11 16:27 ` Matthew Auld
2022-10-11 17:41 ` Matthew Auld
2022-10-14 6:34 ` Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 07/17] drm/i915/vm_bind: Add support to handle object evictions Niranjana Vishwanathapura
2022-10-10 13:30 ` Matthew Auld
2022-10-10 16:11 ` Niranjana Vishwanathapura
2022-10-10 17:15 ` Matthew Auld
2022-10-11 0:43 ` Niranjana Vishwanathapura
2022-10-11 0:55 ` Niranjana Vishwanathapura
2022-10-11 15:48 ` Matthew Auld
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 08/17] drm/i915/vm_bind: Support persistent vma activeness tracking Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 09/17] drm/i915/vm_bind: Add out fence support Niranjana Vishwanathapura
2022-10-14 6:48 ` Niranjana Vishwanathapura
2022-10-18 14:55 ` Matthew Auld
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 10/17] drm/i915/vm_bind: Abstract out common execbuf functions Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 11/17] drm/i915/vm_bind: Use common execbuf functions in execbuf path Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 12/17] drm/i915/vm_bind: Implement I915_GEM_EXECBUFFER3 ioctl Niranjana Vishwanathapura
2022-10-12 10:32 ` Matthew Auld
2022-10-12 15:21 ` Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 13/17] drm/i915/vm_bind: Update i915_vma_verify_bind_complete() Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 14/17] drm/i915/vm_bind: Expose i915_request_await_bind() Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 15/17] drm/i915/vm_bind: Handle persistent vmas in execbuf3 Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 16/17] drm/i915/vm_bind: userptr dma-resv changes Niranjana Vishwanathapura
2022-10-10 6:58 ` [Intel-gfx] [PATCH v3 17/17] drm/i915/vm_bind: Add uapi for user to enable vm_bind_mode Niranjana Vishwanathapura
2022-10-10 7:47 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/vm_bind: Add VM_BIND functionality (rev6) Patchwork
2022-10-10 7:47 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-10-10 7:47 ` [Intel-gfx] ✗ Fi.CI.DOCS: " Patchwork
2022-10-10 8:08 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-10-10 10:44 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
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=6c6a89ef-9056-4673-9f37-61eff94b2f26@intel.com \
--to=matthew.auld@intel.com \
--cc=christian.koenig@amd.com \
--cc=daniel.vetter@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
--cc=niranjana.vishwanathapura@intel.com \
--cc=paulo.r.zanoni@intel.com \
--cc=thomas.hellstrom@intel.com \
/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