2 * Copyright 2008 Jerome Glisse.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
28 #include <linux/file.h>
29 #include <linux/pagemap.h>
30 #include <linux/sync_file.h>
31 #include <linux/dma-buf.h>
33 #include <drm/amdgpu_drm.h>
34 #include <drm/drm_syncobj.h>
35 #include <drm/ttm/ttm_tt.h>
37 #include "amdgpu_cs.h"
39 #include "amdgpu_trace.h"
40 #include "amdgpu_gmc.h"
41 #include "amdgpu_gem.h"
42 #include "amdgpu_ras.h"
44 static int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p,
45 struct amdgpu_device *adev,
46 struct drm_file *filp,
47 union drm_amdgpu_cs *cs)
49 struct amdgpu_fpriv *fpriv = filp->driver_priv;
51 if (cs->in.num_chunks == 0)
54 memset(p, 0, sizeof(*p));
58 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
62 if (atomic_read(&p->ctx->guilty)) {
63 amdgpu_ctx_put(p->ctx);
69 static int amdgpu_cs_job_idx(struct amdgpu_cs_parser *p,
70 struct drm_amdgpu_cs_chunk_ib *chunk_ib)
72 struct drm_sched_entity *entity;
76 r = amdgpu_ctx_get_entity(p->ctx, chunk_ib->ip_type,
77 chunk_ib->ip_instance,
78 chunk_ib->ring, &entity);
83 * Abort if there is no run queue associated with this entity.
84 * Possibly because of disabled HW IP.
86 if (entity->rq == NULL)
89 /* Check if we can add this IB to some existing job */
90 for (i = 0; i < p->gang_size; ++i)
91 if (p->entities[i] == entity)
94 /* If not increase the gang size if possible */
95 if (i == AMDGPU_CS_GANG_SIZE)
98 p->entities[i] = entity;
103 static int amdgpu_cs_p1_ib(struct amdgpu_cs_parser *p,
104 struct drm_amdgpu_cs_chunk_ib *chunk_ib,
105 unsigned int *num_ibs)
109 r = amdgpu_cs_job_idx(p, chunk_ib);
114 p->gang_leader_idx = r;
118 static int amdgpu_cs_p1_user_fence(struct amdgpu_cs_parser *p,
119 struct drm_amdgpu_cs_chunk_fence *data,
122 struct drm_gem_object *gobj;
123 struct amdgpu_bo *bo;
127 gobj = drm_gem_object_lookup(p->filp, data->handle);
131 bo = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
132 p->uf_entry.priority = 0;
133 p->uf_entry.tv.bo = &bo->tbo;
134 /* One for TTM and two for the CS job */
135 p->uf_entry.tv.num_shared = 3;
137 drm_gem_object_put(gobj);
139 size = amdgpu_bo_size(bo);
140 if (size != PAGE_SIZE || (data->offset + 8) > size) {
145 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) {
150 *offset = data->offset;
155 amdgpu_bo_unref(&bo);
159 static int amdgpu_cs_p1_bo_handles(struct amdgpu_cs_parser *p,
160 struct drm_amdgpu_bo_list_in *data)
162 struct drm_amdgpu_bo_list_entry *info;
165 r = amdgpu_bo_create_list_entry_array(data, &info);
169 r = amdgpu_bo_list_create(p->adev, p->filp, info, data->bo_number,
183 /* Copy the data from userspace and go over it the first time */
184 static int amdgpu_cs_pass1(struct amdgpu_cs_parser *p,
185 union drm_amdgpu_cs *cs)
187 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
188 unsigned int num_ibs[AMDGPU_CS_GANG_SIZE] = { };
189 struct amdgpu_vm *vm = &fpriv->vm;
190 uint64_t *chunk_array_user;
191 uint64_t *chunk_array;
192 uint32_t uf_offset = 0;
197 chunk_array = kvmalloc_array(cs->in.num_chunks, sizeof(uint64_t),
203 chunk_array_user = u64_to_user_ptr(cs->in.chunks);
204 if (copy_from_user(chunk_array, chunk_array_user,
205 sizeof(uint64_t)*cs->in.num_chunks)) {
210 p->nchunks = cs->in.num_chunks;
211 p->chunks = kvmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
218 for (i = 0; i < p->nchunks; i++) {
219 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
220 struct drm_amdgpu_cs_chunk user_chunk;
221 uint32_t __user *cdata;
223 chunk_ptr = u64_to_user_ptr(chunk_array[i]);
224 if (copy_from_user(&user_chunk, chunk_ptr,
225 sizeof(struct drm_amdgpu_cs_chunk))) {
228 goto free_partial_kdata;
230 p->chunks[i].chunk_id = user_chunk.chunk_id;
231 p->chunks[i].length_dw = user_chunk.length_dw;
233 size = p->chunks[i].length_dw;
234 cdata = u64_to_user_ptr(user_chunk.chunk_data);
236 p->chunks[i].kdata = kvmalloc_array(size, sizeof(uint32_t),
238 if (p->chunks[i].kdata == NULL) {
241 goto free_partial_kdata;
243 size *= sizeof(uint32_t);
244 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
246 goto free_partial_kdata;
249 /* Assume the worst on the following checks */
251 switch (p->chunks[i].chunk_id) {
252 case AMDGPU_CHUNK_ID_IB:
253 if (size < sizeof(struct drm_amdgpu_cs_chunk_ib))
254 goto free_partial_kdata;
256 ret = amdgpu_cs_p1_ib(p, p->chunks[i].kdata, num_ibs);
258 goto free_partial_kdata;
261 case AMDGPU_CHUNK_ID_FENCE:
262 if (size < sizeof(struct drm_amdgpu_cs_chunk_fence))
263 goto free_partial_kdata;
265 ret = amdgpu_cs_p1_user_fence(p, p->chunks[i].kdata,
268 goto free_partial_kdata;
271 case AMDGPU_CHUNK_ID_BO_HANDLES:
272 if (size < sizeof(struct drm_amdgpu_bo_list_in))
273 goto free_partial_kdata;
275 ret = amdgpu_cs_p1_bo_handles(p, p->chunks[i].kdata);
277 goto free_partial_kdata;
280 case AMDGPU_CHUNK_ID_DEPENDENCIES:
281 case AMDGPU_CHUNK_ID_SYNCOBJ_IN:
282 case AMDGPU_CHUNK_ID_SYNCOBJ_OUT:
283 case AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES:
284 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_WAIT:
285 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_SIGNAL:
289 goto free_partial_kdata;
295 goto free_partial_kdata;
298 for (i = 0; i < p->gang_size; ++i) {
299 ret = amdgpu_job_alloc(p->adev, vm, p->entities[i], vm,
300 num_ibs[i], &p->jobs[i]);
304 p->gang_leader = p->jobs[p->gang_leader_idx];
306 if (p->ctx->vram_lost_counter != p->gang_leader->vram_lost_counter) {
311 if (p->uf_entry.tv.bo)
312 p->gang_leader->uf_addr = uf_offset;
315 /* Use this opportunity to fill in task info for the vm */
316 amdgpu_vm_set_task_info(vm);
324 kvfree(p->chunks[i].kdata);
334 static int amdgpu_cs_p2_ib(struct amdgpu_cs_parser *p,
335 struct amdgpu_cs_chunk *chunk,
336 unsigned int *ce_preempt,
337 unsigned int *de_preempt)
339 struct drm_amdgpu_cs_chunk_ib *chunk_ib = chunk->kdata;
340 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
341 struct amdgpu_vm *vm = &fpriv->vm;
342 struct amdgpu_ring *ring;
343 struct amdgpu_job *job;
344 struct amdgpu_ib *ib;
347 r = amdgpu_cs_job_idx(p, chunk_ib);
352 ring = amdgpu_job_ring(job);
353 ib = &job->ibs[job->num_ibs++];
355 /* MM engine doesn't support user fences */
356 if (p->uf_entry.tv.bo && ring->funcs->no_user_fence)
359 if (chunk_ib->ip_type == AMDGPU_HW_IP_GFX &&
360 chunk_ib->flags & AMDGPU_IB_FLAG_PREEMPT) {
361 if (chunk_ib->flags & AMDGPU_IB_FLAG_CE)
366 /* Each GFX command submit allows only 1 IB max
367 * preemptible for CE & DE */
368 if (*ce_preempt > 1 || *de_preempt > 1)
372 if (chunk_ib->flags & AMDGPU_IB_FLAG_PREAMBLE)
373 job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
375 r = amdgpu_ib_get(p->adev, vm, ring->funcs->parse_cs ?
376 chunk_ib->ib_bytes : 0,
377 AMDGPU_IB_POOL_DELAYED, ib);
379 DRM_ERROR("Failed to get ib !\n");
383 ib->gpu_addr = chunk_ib->va_start;
384 ib->length_dw = chunk_ib->ib_bytes / 4;
385 ib->flags = chunk_ib->flags;
389 static int amdgpu_cs_p2_dependencies(struct amdgpu_cs_parser *p,
390 struct amdgpu_cs_chunk *chunk)
392 struct drm_amdgpu_cs_chunk_dep *deps = chunk->kdata;
393 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
397 num_deps = chunk->length_dw * 4 /
398 sizeof(struct drm_amdgpu_cs_chunk_dep);
400 for (i = 0; i < num_deps; ++i) {
401 struct amdgpu_ctx *ctx;
402 struct drm_sched_entity *entity;
403 struct dma_fence *fence;
405 ctx = amdgpu_ctx_get(fpriv, deps[i].ctx_id);
409 r = amdgpu_ctx_get_entity(ctx, deps[i].ip_type,
411 deps[i].ring, &entity);
417 fence = amdgpu_ctx_get_fence(ctx, entity, deps[i].handle);
421 return PTR_ERR(fence);
425 if (chunk->chunk_id == AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES) {
426 struct drm_sched_fence *s_fence;
427 struct dma_fence *old = fence;
429 s_fence = to_drm_sched_fence(fence);
430 fence = dma_fence_get(&s_fence->scheduled);
434 r = amdgpu_sync_fence(&p->sync, fence);
435 dma_fence_put(fence);
442 static int amdgpu_syncobj_lookup_and_add(struct amdgpu_cs_parser *p,
443 uint32_t handle, u64 point,
446 struct dma_fence *fence;
449 r = drm_syncobj_find_fence(p->filp, handle, point, flags, &fence);
451 DRM_ERROR("syncobj %u failed to find fence @ %llu (%d)!\n",
456 r = amdgpu_sync_fence(&p->sync, fence);
461 * When we have an explicit dependency it might be necessary to insert a
462 * pipeline sync to make sure that all caches etc are flushed and the
463 * next job actually sees the results from the previous one.
465 if (fence->context == p->gang_leader->base.entity->fence_context)
466 r = amdgpu_sync_fence(&p->gang_leader->explicit_sync, fence);
469 dma_fence_put(fence);
473 static int amdgpu_cs_p2_syncobj_in(struct amdgpu_cs_parser *p,
474 struct amdgpu_cs_chunk *chunk)
476 struct drm_amdgpu_cs_chunk_sem *deps = chunk->kdata;
480 num_deps = chunk->length_dw * 4 /
481 sizeof(struct drm_amdgpu_cs_chunk_sem);
482 for (i = 0; i < num_deps; ++i) {
483 r = amdgpu_syncobj_lookup_and_add(p, deps[i].handle, 0, 0);
491 static int amdgpu_cs_p2_syncobj_timeline_wait(struct amdgpu_cs_parser *p,
492 struct amdgpu_cs_chunk *chunk)
494 struct drm_amdgpu_cs_chunk_syncobj *syncobj_deps = chunk->kdata;
498 num_deps = chunk->length_dw * 4 /
499 sizeof(struct drm_amdgpu_cs_chunk_syncobj);
500 for (i = 0; i < num_deps; ++i) {
501 r = amdgpu_syncobj_lookup_and_add(p, syncobj_deps[i].handle,
502 syncobj_deps[i].point,
503 syncobj_deps[i].flags);
511 static int amdgpu_cs_p2_syncobj_out(struct amdgpu_cs_parser *p,
512 struct amdgpu_cs_chunk *chunk)
514 struct drm_amdgpu_cs_chunk_sem *deps = chunk->kdata;
518 num_deps = chunk->length_dw * 4 /
519 sizeof(struct drm_amdgpu_cs_chunk_sem);
524 p->post_deps = kmalloc_array(num_deps, sizeof(*p->post_deps),
526 p->num_post_deps = 0;
532 for (i = 0; i < num_deps; ++i) {
533 p->post_deps[i].syncobj =
534 drm_syncobj_find(p->filp, deps[i].handle);
535 if (!p->post_deps[i].syncobj)
537 p->post_deps[i].chain = NULL;
538 p->post_deps[i].point = 0;
545 static int amdgpu_cs_p2_syncobj_timeline_signal(struct amdgpu_cs_parser *p,
546 struct amdgpu_cs_chunk *chunk)
548 struct drm_amdgpu_cs_chunk_syncobj *syncobj_deps = chunk->kdata;
552 num_deps = chunk->length_dw * 4 /
553 sizeof(struct drm_amdgpu_cs_chunk_syncobj);
558 p->post_deps = kmalloc_array(num_deps, sizeof(*p->post_deps),
560 p->num_post_deps = 0;
565 for (i = 0; i < num_deps; ++i) {
566 struct amdgpu_cs_post_dep *dep = &p->post_deps[i];
569 if (syncobj_deps[i].point) {
570 dep->chain = dma_fence_chain_alloc();
575 dep->syncobj = drm_syncobj_find(p->filp,
576 syncobj_deps[i].handle);
578 dma_fence_chain_free(dep->chain);
581 dep->point = syncobj_deps[i].point;
588 static int amdgpu_cs_pass2(struct amdgpu_cs_parser *p)
590 unsigned int ce_preempt = 0, de_preempt = 0;
593 for (i = 0; i < p->nchunks; ++i) {
594 struct amdgpu_cs_chunk *chunk;
596 chunk = &p->chunks[i];
598 switch (chunk->chunk_id) {
599 case AMDGPU_CHUNK_ID_IB:
600 r = amdgpu_cs_p2_ib(p, chunk, &ce_preempt, &de_preempt);
604 case AMDGPU_CHUNK_ID_DEPENDENCIES:
605 case AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES:
606 r = amdgpu_cs_p2_dependencies(p, chunk);
610 case AMDGPU_CHUNK_ID_SYNCOBJ_IN:
611 r = amdgpu_cs_p2_syncobj_in(p, chunk);
615 case AMDGPU_CHUNK_ID_SYNCOBJ_OUT:
616 r = amdgpu_cs_p2_syncobj_out(p, chunk);
620 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_WAIT:
621 r = amdgpu_cs_p2_syncobj_timeline_wait(p, chunk);
625 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_SIGNAL:
626 r = amdgpu_cs_p2_syncobj_timeline_signal(p, chunk);
636 /* Convert microseconds to bytes. */
637 static u64 us_to_bytes(struct amdgpu_device *adev, s64 us)
639 if (us <= 0 || !adev->mm_stats.log2_max_MBps)
642 /* Since accum_us is incremented by a million per second, just
643 * multiply it by the number of MB/s to get the number of bytes.
645 return us << adev->mm_stats.log2_max_MBps;
648 static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes)
650 if (!adev->mm_stats.log2_max_MBps)
653 return bytes >> adev->mm_stats.log2_max_MBps;
656 /* Returns how many bytes TTM can move right now. If no bytes can be moved,
657 * it returns 0. If it returns non-zero, it's OK to move at least one buffer,
658 * which means it can go over the threshold once. If that happens, the driver
659 * will be in debt and no other buffer migrations can be done until that debt
662 * This approach allows moving a buffer of any size (it's important to allow
665 * The currency is simply time in microseconds and it increases as the clock
666 * ticks. The accumulated microseconds (us) are converted to bytes and
669 static void amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev,
673 s64 time_us, increment_us;
674 u64 free_vram, total_vram, used_vram;
675 /* Allow a maximum of 200 accumulated ms. This is basically per-IB
678 * It means that in order to get full max MBps, at least 5 IBs per
679 * second must be submitted and not more than 200ms apart from each
682 const s64 us_upper_bound = 200000;
684 if (!adev->mm_stats.log2_max_MBps) {
690 total_vram = adev->gmc.real_vram_size - atomic64_read(&adev->vram_pin_size);
691 used_vram = ttm_resource_manager_usage(&adev->mman.vram_mgr.manager);
692 free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram;
694 spin_lock(&adev->mm_stats.lock);
696 /* Increase the amount of accumulated us. */
697 time_us = ktime_to_us(ktime_get());
698 increment_us = time_us - adev->mm_stats.last_update_us;
699 adev->mm_stats.last_update_us = time_us;
700 adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us,
703 /* This prevents the short period of low performance when the VRAM
704 * usage is low and the driver is in debt or doesn't have enough
705 * accumulated us to fill VRAM quickly.
707 * The situation can occur in these cases:
708 * - a lot of VRAM is freed by userspace
709 * - the presence of a big buffer causes a lot of evictions
710 * (solution: split buffers into smaller ones)
712 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting
713 * accum_us to a positive number.
715 if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) {
718 /* Be more aggressive on dGPUs. Try to fill a portion of free
721 if (!(adev->flags & AMD_IS_APU))
722 min_us = bytes_to_us(adev, free_vram / 4);
724 min_us = 0; /* Reset accum_us on APUs. */
726 adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us);
729 /* This is set to 0 if the driver is in debt to disallow (optional)
732 *max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
734 /* Do the same for visible VRAM if half of it is free */
735 if (!amdgpu_gmc_vram_full_visible(&adev->gmc)) {
736 u64 total_vis_vram = adev->gmc.visible_vram_size;
738 amdgpu_vram_mgr_vis_usage(&adev->mman.vram_mgr);
740 if (used_vis_vram < total_vis_vram) {
741 u64 free_vis_vram = total_vis_vram - used_vis_vram;
742 adev->mm_stats.accum_us_vis = min(adev->mm_stats.accum_us_vis +
743 increment_us, us_upper_bound);
745 if (free_vis_vram >= total_vis_vram / 2)
746 adev->mm_stats.accum_us_vis =
747 max(bytes_to_us(adev, free_vis_vram / 2),
748 adev->mm_stats.accum_us_vis);
751 *max_vis_bytes = us_to_bytes(adev, adev->mm_stats.accum_us_vis);
756 spin_unlock(&adev->mm_stats.lock);
759 /* Report how many bytes have really been moved for the last command
760 * submission. This can result in a debt that can stop buffer migrations
763 void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev, u64 num_bytes,
766 spin_lock(&adev->mm_stats.lock);
767 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
768 adev->mm_stats.accum_us_vis -= bytes_to_us(adev, num_vis_bytes);
769 spin_unlock(&adev->mm_stats.lock);
772 static int amdgpu_cs_bo_validate(void *param, struct amdgpu_bo *bo)
774 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
775 struct amdgpu_cs_parser *p = param;
776 struct ttm_operation_ctx ctx = {
777 .interruptible = true,
778 .no_wait_gpu = false,
779 .resv = bo->tbo.base.resv
784 if (bo->tbo.pin_count)
787 /* Don't move this buffer if we have depleted our allowance
788 * to move it. Don't move anything if the threshold is zero.
790 if (p->bytes_moved < p->bytes_moved_threshold &&
791 (!bo->tbo.base.dma_buf ||
792 list_empty(&bo->tbo.base.dma_buf->attachments))) {
793 if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
794 (bo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)) {
795 /* And don't move a CPU_ACCESS_REQUIRED BO to limited
796 * visible VRAM if we've depleted our allowance to do
799 if (p->bytes_moved_vis < p->bytes_moved_vis_threshold)
800 domain = bo->preferred_domains;
802 domain = bo->allowed_domains;
804 domain = bo->preferred_domains;
807 domain = bo->allowed_domains;
811 amdgpu_bo_placement_from_domain(bo, domain);
812 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
814 p->bytes_moved += ctx.bytes_moved;
815 if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
816 amdgpu_bo_in_cpu_visible_vram(bo))
817 p->bytes_moved_vis += ctx.bytes_moved;
819 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
820 domain = bo->allowed_domains;
827 static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
828 struct list_head *validated)
830 struct ttm_operation_ctx ctx = { true, false };
831 struct amdgpu_bo_list_entry *lobj;
834 list_for_each_entry(lobj, validated, tv.head) {
835 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(lobj->tv.bo);
836 struct mm_struct *usermm;
838 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
839 if (usermm && usermm != current->mm)
842 if (amdgpu_ttm_tt_is_userptr(bo->tbo.ttm) &&
843 lobj->user_invalidated && lobj->user_pages) {
844 amdgpu_bo_placement_from_domain(bo,
845 AMDGPU_GEM_DOMAIN_CPU);
846 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
850 amdgpu_ttm_tt_set_user_pages(bo->tbo.ttm,
854 r = amdgpu_cs_bo_validate(p, bo);
858 kvfree(lobj->user_pages);
859 lobj->user_pages = NULL;
864 static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
865 union drm_amdgpu_cs *cs)
867 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
868 struct amdgpu_vm *vm = &fpriv->vm;
869 struct amdgpu_bo_list_entry *e;
870 struct list_head duplicates;
874 INIT_LIST_HEAD(&p->validated);
876 /* p->bo_list could already be assigned if AMDGPU_CHUNK_ID_BO_HANDLES is present */
877 if (cs->in.bo_list_handle) {
881 r = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle,
885 } else if (!p->bo_list) {
886 /* Create a empty bo_list when no handle is provided */
887 r = amdgpu_bo_list_create(p->adev, p->filp, NULL, 0,
893 mutex_lock(&p->bo_list->bo_list_mutex);
895 /* One for TTM and one for the CS job */
896 amdgpu_bo_list_for_each_entry(e, p->bo_list)
897 e->tv.num_shared = 2;
899 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
901 INIT_LIST_HEAD(&duplicates);
902 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
904 if (p->uf_entry.tv.bo && !ttm_to_amdgpu_bo(p->uf_entry.tv.bo)->parent)
905 list_add(&p->uf_entry.tv.head, &p->validated);
907 /* Get userptr backing pages. If pages are updated after registered
908 * in amdgpu_gem_userptr_ioctl(), amdgpu_cs_list_validate() will do
909 * amdgpu_ttm_backend_bind() to flush and invalidate new pages
911 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) {
912 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo);
913 bool userpage_invalidated = false;
916 e->user_pages = kvmalloc_array(bo->tbo.ttm->num_pages,
917 sizeof(struct page *),
918 GFP_KERNEL | __GFP_ZERO);
919 if (!e->user_pages) {
920 DRM_ERROR("kvmalloc_array failure\n");
922 goto out_free_user_pages;
925 r = amdgpu_ttm_tt_get_user_pages(bo, e->user_pages, &e->range);
927 kvfree(e->user_pages);
928 e->user_pages = NULL;
929 goto out_free_user_pages;
932 for (i = 0; i < bo->tbo.ttm->num_pages; i++) {
933 if (bo->tbo.ttm->pages[i] != e->user_pages[i]) {
934 userpage_invalidated = true;
938 e->user_invalidated = userpage_invalidated;
941 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
943 if (unlikely(r != 0)) {
944 if (r != -ERESTARTSYS)
945 DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
946 goto out_free_user_pages;
949 amdgpu_bo_list_for_each_entry(e, p->bo_list) {
950 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo);
952 e->bo_va = amdgpu_vm_bo_find(vm, bo);
955 amdgpu_cs_get_threshold_for_moves(p->adev, &p->bytes_moved_threshold,
956 &p->bytes_moved_vis_threshold);
958 p->bytes_moved_vis = 0;
960 r = amdgpu_vm_validate_pt_bos(p->adev, &fpriv->vm,
961 amdgpu_cs_bo_validate, p);
963 DRM_ERROR("amdgpu_vm_validate_pt_bos() failed.\n");
967 r = amdgpu_cs_list_validate(p, &duplicates);
971 r = amdgpu_cs_list_validate(p, &p->validated);
975 if (p->uf_entry.tv.bo) {
976 struct amdgpu_bo *uf = ttm_to_amdgpu_bo(p->uf_entry.tv.bo);
978 r = amdgpu_ttm_alloc_gart(&uf->tbo);
982 p->gang_leader->uf_addr += amdgpu_bo_gpu_offset(uf);
985 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved,
988 for (i = 0; i < p->gang_size; ++i)
989 amdgpu_job_set_resources(p->jobs[i], p->bo_list->gds_obj,
995 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
998 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) {
999 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo);
1003 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm, e->range);
1004 kvfree(e->user_pages);
1005 e->user_pages = NULL;
1008 mutex_unlock(&p->bo_list->bo_list_mutex);
1012 static void trace_amdgpu_cs_ibs(struct amdgpu_cs_parser *p)
1016 if (!trace_amdgpu_cs_enabled())
1019 for (i = 0; i < p->gang_size; ++i) {
1020 struct amdgpu_job *job = p->jobs[i];
1022 for (j = 0; j < job->num_ibs; ++j)
1023 trace_amdgpu_cs(p, job, &job->ibs[j]);
1027 static int amdgpu_cs_patch_ibs(struct amdgpu_cs_parser *p,
1028 struct amdgpu_job *job)
1030 struct amdgpu_ring *ring = amdgpu_job_ring(job);
1034 /* Only for UVD/VCE VM emulation */
1035 if (!ring->funcs->parse_cs && !ring->funcs->patch_cs_in_place)
1038 for (i = 0; i < job->num_ibs; ++i) {
1039 struct amdgpu_ib *ib = &job->ibs[i];
1040 struct amdgpu_bo_va_mapping *m;
1041 struct amdgpu_bo *aobj;
1045 va_start = ib->gpu_addr & AMDGPU_GMC_HOLE_MASK;
1046 r = amdgpu_cs_find_mapping(p, va_start, &aobj, &m);
1048 DRM_ERROR("IB va_start is invalid\n");
1052 if ((va_start + ib->length_dw * 4) >
1053 (m->last + 1) * AMDGPU_GPU_PAGE_SIZE) {
1054 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
1058 /* the IB should be reserved at this point */
1059 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
1064 kptr += va_start - (m->start * AMDGPU_GPU_PAGE_SIZE);
1066 if (ring->funcs->parse_cs) {
1067 memcpy(ib->ptr, kptr, ib->length_dw * 4);
1068 amdgpu_bo_kunmap(aobj);
1070 r = amdgpu_ring_parse_cs(ring, p, job, ib);
1074 ib->ptr = (uint32_t *)kptr;
1075 r = amdgpu_ring_patch_cs_in_place(ring, p, job, ib);
1076 amdgpu_bo_kunmap(aobj);
1085 static int amdgpu_cs_patch_jobs(struct amdgpu_cs_parser *p)
1090 for (i = 0; i < p->gang_size; ++i) {
1091 r = amdgpu_cs_patch_ibs(p, p->jobs[i]);
1098 static int amdgpu_cs_vm_handling(struct amdgpu_cs_parser *p)
1100 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
1101 struct amdgpu_job *job = p->gang_leader;
1102 struct amdgpu_device *adev = p->adev;
1103 struct amdgpu_vm *vm = &fpriv->vm;
1104 struct amdgpu_bo_list_entry *e;
1105 struct amdgpu_bo_va *bo_va;
1106 struct amdgpu_bo *bo;
1110 r = amdgpu_vm_clear_freed(adev, vm, NULL);
1114 r = amdgpu_vm_bo_update(adev, fpriv->prt_va, false);
1118 r = amdgpu_sync_fence(&p->sync, fpriv->prt_va->last_pt_update);
1122 if (fpriv->csa_va) {
1123 bo_va = fpriv->csa_va;
1125 r = amdgpu_vm_bo_update(adev, bo_va, false);
1129 r = amdgpu_sync_fence(&p->sync, bo_va->last_pt_update);
1134 amdgpu_bo_list_for_each_entry(e, p->bo_list) {
1135 /* ignore duplicates */
1136 bo = ttm_to_amdgpu_bo(e->tv.bo);
1144 r = amdgpu_vm_bo_update(adev, bo_va, false);
1148 r = amdgpu_sync_fence(&p->sync, bo_va->last_pt_update);
1153 r = amdgpu_vm_handle_moved(adev, vm);
1157 r = amdgpu_vm_update_pdes(adev, vm, false);
1161 r = amdgpu_sync_fence(&p->sync, vm->last_update);
1165 for (i = 0; i < p->gang_size; ++i) {
1171 job->vm_pd_addr = amdgpu_gmc_pd_addr(vm->root.bo);
1174 if (amdgpu_vm_debug) {
1175 /* Invalidate all BOs to test for userspace bugs */
1176 amdgpu_bo_list_for_each_entry(e, p->bo_list) {
1177 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo);
1179 /* ignore duplicates */
1183 amdgpu_vm_bo_invalidate(adev, bo, false);
1190 static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
1192 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
1193 struct amdgpu_bo_list_entry *e;
1197 list_for_each_entry(e, &p->validated, tv.head) {
1198 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo);
1199 struct dma_resv *resv = bo->tbo.base.resv;
1200 enum amdgpu_sync_mode sync_mode;
1202 sync_mode = amdgpu_bo_explicit_sync(bo) ?
1203 AMDGPU_SYNC_EXPLICIT : AMDGPU_SYNC_NE_OWNER;
1204 r = amdgpu_sync_resv(p->adev, &p->sync, resv, sync_mode,
1210 for (i = 0; i < p->gang_size; ++i) {
1211 r = amdgpu_sync_push_to_job(&p->sync, p->jobs[i]);
1216 r = amdgpu_ctx_wait_prev_fence(p->ctx, p->entities[p->gang_leader_idx]);
1217 if (r && r != -ERESTARTSYS)
1218 DRM_ERROR("amdgpu_ctx_wait_prev_fence failed.\n");
1222 static void amdgpu_cs_post_dependencies(struct amdgpu_cs_parser *p)
1226 for (i = 0; i < p->num_post_deps; ++i) {
1227 if (p->post_deps[i].chain && p->post_deps[i].point) {
1228 drm_syncobj_add_point(p->post_deps[i].syncobj,
1229 p->post_deps[i].chain,
1230 p->fence, p->post_deps[i].point);
1231 p->post_deps[i].chain = NULL;
1233 drm_syncobj_replace_fence(p->post_deps[i].syncobj,
1239 static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
1240 union drm_amdgpu_cs *cs)
1242 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
1243 struct amdgpu_job *leader = p->gang_leader;
1244 struct amdgpu_bo_list_entry *e;
1249 for (i = 0; i < p->gang_size; ++i)
1250 drm_sched_job_arm(&p->jobs[i]->base);
1252 for (i = 0; i < p->gang_size; ++i) {
1253 struct dma_fence *fence;
1255 if (p->jobs[i] == leader)
1258 fence = &p->jobs[i]->base.s_fence->scheduled;
1259 r = drm_sched_job_add_dependency(&leader->base, fence);
1264 if (p->gang_size > 1) {
1265 for (i = 0; i < p->gang_size; ++i)
1266 amdgpu_job_set_gang_leader(p->jobs[i], leader);
1269 /* No memory allocation is allowed while holding the notifier lock.
1270 * The lock is held until amdgpu_cs_submit is finished and fence is
1273 mutex_lock(&p->adev->notifier_lock);
1275 /* If userptr are invalidated after amdgpu_cs_parser_bos(), return
1276 * -EAGAIN, drmIoctl in libdrm will restart the amdgpu_cs_ioctl.
1279 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) {
1280 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(e->tv.bo);
1282 r |= !amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm, e->range);
1290 p->fence = dma_fence_get(&leader->base.s_fence->finished);
1291 list_for_each_entry(e, &p->validated, tv.head) {
1293 /* Everybody except for the gang leader uses READ */
1294 for (i = 0; i < p->gang_size; ++i) {
1295 if (p->jobs[i] == leader)
1298 dma_resv_add_fence(e->tv.bo->base.resv,
1299 &p->jobs[i]->base.s_fence->finished,
1300 DMA_RESV_USAGE_READ);
1303 /* The gang leader is remembered as writer */
1304 e->tv.num_shared = 0;
1307 seq = amdgpu_ctx_add_fence(p->ctx, p->entities[p->gang_leader_idx],
1309 amdgpu_cs_post_dependencies(p);
1311 if ((leader->preamble_status & AMDGPU_PREAMBLE_IB_PRESENT) &&
1312 !p->ctx->preamble_presented) {
1313 leader->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST;
1314 p->ctx->preamble_presented = true;
1317 cs->out.handle = seq;
1318 leader->uf_sequence = seq;
1320 amdgpu_vm_bo_trace_cs(&fpriv->vm, &p->ticket);
1321 for (i = 0; i < p->gang_size; ++i) {
1322 amdgpu_job_free_resources(p->jobs[i]);
1323 trace_amdgpu_cs_ioctl(p->jobs[i]);
1324 drm_sched_entity_push_job(&p->jobs[i]->base);
1328 amdgpu_vm_move_to_lru_tail(p->adev, &fpriv->vm);
1329 ttm_eu_fence_buffer_objects(&p->ticket, &p->validated, p->fence);
1331 mutex_unlock(&p->adev->notifier_lock);
1332 mutex_unlock(&p->bo_list->bo_list_mutex);
1336 mutex_unlock(&p->adev->notifier_lock);
1339 for (i = 0; i < p->gang_size; ++i)
1340 drm_sched_job_cleanup(&p->jobs[i]->base);
1344 /* Cleanup the parser structure */
1345 static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser)
1349 for (i = 0; i < parser->num_post_deps; i++) {
1350 drm_syncobj_put(parser->post_deps[i].syncobj);
1351 kfree(parser->post_deps[i].chain);
1353 kfree(parser->post_deps);
1355 dma_fence_put(parser->fence);
1358 amdgpu_ctx_put(parser->ctx);
1359 if (parser->bo_list)
1360 amdgpu_bo_list_put(parser->bo_list);
1362 for (i = 0; i < parser->nchunks; i++)
1363 kvfree(parser->chunks[i].kdata);
1364 kvfree(parser->chunks);
1365 for (i = 0; i < parser->gang_size; ++i) {
1366 if (parser->jobs[i])
1367 amdgpu_job_free(parser->jobs[i]);
1369 if (parser->uf_entry.tv.bo) {
1370 struct amdgpu_bo *uf = ttm_to_amdgpu_bo(parser->uf_entry.tv.bo);
1372 amdgpu_bo_unref(&uf);
1376 int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
1378 struct amdgpu_device *adev = drm_to_adev(dev);
1379 struct amdgpu_cs_parser parser;
1382 if (amdgpu_ras_intr_triggered())
1385 if (!adev->accel_working)
1388 r = amdgpu_cs_parser_init(&parser, adev, filp, data);
1390 if (printk_ratelimit())
1391 DRM_ERROR("Failed to initialize parser %d!\n", r);
1395 r = amdgpu_cs_pass1(&parser, data);
1399 r = amdgpu_cs_pass2(&parser);
1403 r = amdgpu_cs_parser_bos(&parser, data);
1406 DRM_ERROR("Not enough memory for command submission!\n");
1407 else if (r != -ERESTARTSYS && r != -EAGAIN)
1408 DRM_ERROR("Failed to process the buffer list %d!\n", r);
1412 r = amdgpu_cs_patch_jobs(&parser);
1416 r = amdgpu_cs_vm_handling(&parser);
1420 r = amdgpu_cs_sync_rings(&parser);
1424 trace_amdgpu_cs_ibs(&parser);
1426 r = amdgpu_cs_submit(&parser, data);
1430 amdgpu_cs_parser_fini(&parser);
1434 ttm_eu_backoff_reservation(&parser.ticket, &parser.validated);
1435 mutex_unlock(&parser.bo_list->bo_list_mutex);
1438 amdgpu_cs_parser_fini(&parser);
1443 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
1446 * @data: data from userspace
1447 * @filp: file private
1449 * Wait for the command submission identified by handle to finish.
1451 int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1452 struct drm_file *filp)
1454 union drm_amdgpu_wait_cs *wait = data;
1455 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
1456 struct drm_sched_entity *entity;
1457 struct amdgpu_ctx *ctx;
1458 struct dma_fence *fence;
1461 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1465 r = amdgpu_ctx_get_entity(ctx, wait->in.ip_type, wait->in.ip_instance,
1466 wait->in.ring, &entity);
1468 amdgpu_ctx_put(ctx);
1472 fence = amdgpu_ctx_get_fence(ctx, entity, wait->in.handle);
1476 r = dma_fence_wait_timeout(fence, true, timeout);
1477 if (r > 0 && fence->error)
1479 dma_fence_put(fence);
1483 amdgpu_ctx_put(ctx);
1487 memset(wait, 0, sizeof(*wait));
1488 wait->out.status = (r == 0);
1494 * amdgpu_cs_get_fence - helper to get fence from drm_amdgpu_fence
1496 * @adev: amdgpu device
1497 * @filp: file private
1498 * @user: drm_amdgpu_fence copied from user space
1500 static struct dma_fence *amdgpu_cs_get_fence(struct amdgpu_device *adev,
1501 struct drm_file *filp,
1502 struct drm_amdgpu_fence *user)
1504 struct drm_sched_entity *entity;
1505 struct amdgpu_ctx *ctx;
1506 struct dma_fence *fence;
1509 ctx = amdgpu_ctx_get(filp->driver_priv, user->ctx_id);
1511 return ERR_PTR(-EINVAL);
1513 r = amdgpu_ctx_get_entity(ctx, user->ip_type, user->ip_instance,
1514 user->ring, &entity);
1516 amdgpu_ctx_put(ctx);
1520 fence = amdgpu_ctx_get_fence(ctx, entity, user->seq_no);
1521 amdgpu_ctx_put(ctx);
1526 int amdgpu_cs_fence_to_handle_ioctl(struct drm_device *dev, void *data,
1527 struct drm_file *filp)
1529 struct amdgpu_device *adev = drm_to_adev(dev);
1530 union drm_amdgpu_fence_to_handle *info = data;
1531 struct dma_fence *fence;
1532 struct drm_syncobj *syncobj;
1533 struct sync_file *sync_file;
1536 fence = amdgpu_cs_get_fence(adev, filp, &info->in.fence);
1538 return PTR_ERR(fence);
1541 fence = dma_fence_get_stub();
1543 switch (info->in.what) {
1544 case AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ:
1545 r = drm_syncobj_create(&syncobj, 0, fence);
1546 dma_fence_put(fence);
1549 r = drm_syncobj_get_handle(filp, syncobj, &info->out.handle);
1550 drm_syncobj_put(syncobj);
1553 case AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ_FD:
1554 r = drm_syncobj_create(&syncobj, 0, fence);
1555 dma_fence_put(fence);
1558 r = drm_syncobj_get_fd(syncobj, (int *)&info->out.handle);
1559 drm_syncobj_put(syncobj);
1562 case AMDGPU_FENCE_TO_HANDLE_GET_SYNC_FILE_FD:
1563 fd = get_unused_fd_flags(O_CLOEXEC);
1565 dma_fence_put(fence);
1569 sync_file = sync_file_create(fence);
1570 dma_fence_put(fence);
1576 fd_install(fd, sync_file->file);
1577 info->out.handle = fd;
1581 dma_fence_put(fence);
1587 * amdgpu_cs_wait_all_fences - wait on all fences to signal
1589 * @adev: amdgpu device
1590 * @filp: file private
1591 * @wait: wait parameters
1592 * @fences: array of drm_amdgpu_fence
1594 static int amdgpu_cs_wait_all_fences(struct amdgpu_device *adev,
1595 struct drm_file *filp,
1596 union drm_amdgpu_wait_fences *wait,
1597 struct drm_amdgpu_fence *fences)
1599 uint32_t fence_count = wait->in.fence_count;
1603 for (i = 0; i < fence_count; i++) {
1604 struct dma_fence *fence;
1605 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1607 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1609 return PTR_ERR(fence);
1613 r = dma_fence_wait_timeout(fence, true, timeout);
1614 dma_fence_put(fence);
1622 return fence->error;
1625 memset(wait, 0, sizeof(*wait));
1626 wait->out.status = (r > 0);
1632 * amdgpu_cs_wait_any_fence - wait on any fence to signal
1634 * @adev: amdgpu device
1635 * @filp: file private
1636 * @wait: wait parameters
1637 * @fences: array of drm_amdgpu_fence
1639 static int amdgpu_cs_wait_any_fence(struct amdgpu_device *adev,
1640 struct drm_file *filp,
1641 union drm_amdgpu_wait_fences *wait,
1642 struct drm_amdgpu_fence *fences)
1644 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1645 uint32_t fence_count = wait->in.fence_count;
1646 uint32_t first = ~0;
1647 struct dma_fence **array;
1651 /* Prepare the fence array */
1652 array = kcalloc(fence_count, sizeof(struct dma_fence *), GFP_KERNEL);
1657 for (i = 0; i < fence_count; i++) {
1658 struct dma_fence *fence;
1660 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1661 if (IS_ERR(fence)) {
1663 goto err_free_fence_array;
1666 } else { /* NULL, the fence has been already signaled */
1673 r = dma_fence_wait_any_timeout(array, fence_count, true, timeout,
1676 goto err_free_fence_array;
1679 memset(wait, 0, sizeof(*wait));
1680 wait->out.status = (r > 0);
1681 wait->out.first_signaled = first;
1683 if (first < fence_count && array[first])
1684 r = array[first]->error;
1688 err_free_fence_array:
1689 for (i = 0; i < fence_count; i++)
1690 dma_fence_put(array[i]);
1697 * amdgpu_cs_wait_fences_ioctl - wait for multiple command submissions to finish
1700 * @data: data from userspace
1701 * @filp: file private
1703 int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
1704 struct drm_file *filp)
1706 struct amdgpu_device *adev = drm_to_adev(dev);
1707 union drm_amdgpu_wait_fences *wait = data;
1708 uint32_t fence_count = wait->in.fence_count;
1709 struct drm_amdgpu_fence *fences_user;
1710 struct drm_amdgpu_fence *fences;
1713 /* Get the fences from userspace */
1714 fences = kmalloc_array(fence_count, sizeof(struct drm_amdgpu_fence),
1719 fences_user = u64_to_user_ptr(wait->in.fences);
1720 if (copy_from_user(fences, fences_user,
1721 sizeof(struct drm_amdgpu_fence) * fence_count)) {
1723 goto err_free_fences;
1726 if (wait->in.wait_all)
1727 r = amdgpu_cs_wait_all_fences(adev, filp, wait, fences);
1729 r = amdgpu_cs_wait_any_fence(adev, filp, wait, fences);
1738 * amdgpu_cs_find_mapping - find bo_va for VM address
1740 * @parser: command submission parser context
1742 * @bo: resulting BO of the mapping found
1743 * @map: Placeholder to return found BO mapping
1745 * Search the buffer objects in the command submission context for a certain
1746 * virtual memory address. Returns allocation structure when found, NULL
1749 int amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1750 uint64_t addr, struct amdgpu_bo **bo,
1751 struct amdgpu_bo_va_mapping **map)
1753 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
1754 struct ttm_operation_ctx ctx = { false, false };
1755 struct amdgpu_vm *vm = &fpriv->vm;
1756 struct amdgpu_bo_va_mapping *mapping;
1759 addr /= AMDGPU_GPU_PAGE_SIZE;
1761 mapping = amdgpu_vm_bo_lookup_mapping(vm, addr);
1762 if (!mapping || !mapping->bo_va || !mapping->bo_va->base.bo)
1765 *bo = mapping->bo_va->base.bo;
1768 /* Double check that the BO is reserved by this CS */
1769 if (dma_resv_locking_ctx((*bo)->tbo.base.resv) != &parser->ticket)
1772 if (!((*bo)->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)) {
1773 (*bo)->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1774 amdgpu_bo_placement_from_domain(*bo, (*bo)->allowed_domains);
1775 r = ttm_bo_validate(&(*bo)->tbo, &(*bo)->placement, &ctx);
1780 return amdgpu_ttm_alloc_gart(&(*bo)->tbo);