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);
67 amdgpu_sync_create(&p->sync);
68 drm_exec_init(&p->exec, DRM_EXEC_INTERRUPTIBLE_WAIT);
72 static int amdgpu_cs_job_idx(struct amdgpu_cs_parser *p,
73 struct drm_amdgpu_cs_chunk_ib *chunk_ib)
75 struct drm_sched_entity *entity;
79 r = amdgpu_ctx_get_entity(p->ctx, chunk_ib->ip_type,
80 chunk_ib->ip_instance,
81 chunk_ib->ring, &entity);
86 * Abort if there is no run queue associated with this entity.
87 * Possibly because of disabled HW IP.
89 if (entity->rq == NULL)
92 /* Check if we can add this IB to some existing job */
93 for (i = 0; i < p->gang_size; ++i)
94 if (p->entities[i] == entity)
97 /* If not increase the gang size if possible */
98 if (i == AMDGPU_CS_GANG_SIZE)
101 p->entities[i] = entity;
102 p->gang_size = i + 1;
106 static int amdgpu_cs_p1_ib(struct amdgpu_cs_parser *p,
107 struct drm_amdgpu_cs_chunk_ib *chunk_ib,
108 unsigned int *num_ibs)
112 r = amdgpu_cs_job_idx(p, chunk_ib);
116 if (num_ibs[r] >= amdgpu_ring_max_ibs(chunk_ib->ip_type))
120 p->gang_leader_idx = r;
124 static int amdgpu_cs_p1_user_fence(struct amdgpu_cs_parser *p,
125 struct drm_amdgpu_cs_chunk_fence *data,
128 struct drm_gem_object *gobj;
131 gobj = drm_gem_object_lookup(p->filp, data->handle);
135 p->uf_bo = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
136 drm_gem_object_put(gobj);
138 size = amdgpu_bo_size(p->uf_bo);
139 if (size != PAGE_SIZE || data->offset > (size - 8))
142 if (amdgpu_ttm_tt_get_usermm(p->uf_bo->tbo.ttm))
145 *offset = data->offset;
149 static int amdgpu_cs_p1_bo_handles(struct amdgpu_cs_parser *p,
150 struct drm_amdgpu_bo_list_in *data)
152 struct drm_amdgpu_bo_list_entry *info;
155 r = amdgpu_bo_create_list_entry_array(data, &info);
159 r = amdgpu_bo_list_create(p->adev, p->filp, info, data->bo_number,
173 /* Copy the data from userspace and go over it the first time */
174 static int amdgpu_cs_pass1(struct amdgpu_cs_parser *p,
175 union drm_amdgpu_cs *cs)
177 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
178 unsigned int num_ibs[AMDGPU_CS_GANG_SIZE] = { };
179 struct amdgpu_vm *vm = &fpriv->vm;
180 uint64_t *chunk_array_user;
181 uint64_t *chunk_array;
182 uint32_t uf_offset = 0;
187 chunk_array = kvmalloc_array(cs->in.num_chunks, sizeof(uint64_t),
193 chunk_array_user = u64_to_user_ptr(cs->in.chunks);
194 if (copy_from_user(chunk_array, chunk_array_user,
195 sizeof(uint64_t)*cs->in.num_chunks)) {
200 p->nchunks = cs->in.num_chunks;
201 p->chunks = kvmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
208 for (i = 0; i < p->nchunks; i++) {
209 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
210 struct drm_amdgpu_cs_chunk user_chunk;
211 uint32_t __user *cdata;
213 chunk_ptr = u64_to_user_ptr(chunk_array[i]);
214 if (copy_from_user(&user_chunk, chunk_ptr,
215 sizeof(struct drm_amdgpu_cs_chunk))) {
218 goto free_partial_kdata;
220 p->chunks[i].chunk_id = user_chunk.chunk_id;
221 p->chunks[i].length_dw = user_chunk.length_dw;
223 size = p->chunks[i].length_dw;
224 cdata = u64_to_user_ptr(user_chunk.chunk_data);
226 p->chunks[i].kdata = kvmalloc_array(size, sizeof(uint32_t),
228 if (p->chunks[i].kdata == NULL) {
231 goto free_partial_kdata;
233 size *= sizeof(uint32_t);
234 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
236 goto free_partial_kdata;
239 /* Assume the worst on the following checks */
241 switch (p->chunks[i].chunk_id) {
242 case AMDGPU_CHUNK_ID_IB:
243 if (size < sizeof(struct drm_amdgpu_cs_chunk_ib))
244 goto free_partial_kdata;
246 ret = amdgpu_cs_p1_ib(p, p->chunks[i].kdata, num_ibs);
248 goto free_partial_kdata;
251 case AMDGPU_CHUNK_ID_FENCE:
252 if (size < sizeof(struct drm_amdgpu_cs_chunk_fence))
253 goto free_partial_kdata;
255 ret = amdgpu_cs_p1_user_fence(p, p->chunks[i].kdata,
258 goto free_partial_kdata;
261 case AMDGPU_CHUNK_ID_BO_HANDLES:
262 if (size < sizeof(struct drm_amdgpu_bo_list_in))
263 goto free_partial_kdata;
265 ret = amdgpu_cs_p1_bo_handles(p, p->chunks[i].kdata);
267 goto free_partial_kdata;
270 case AMDGPU_CHUNK_ID_DEPENDENCIES:
271 case AMDGPU_CHUNK_ID_SYNCOBJ_IN:
272 case AMDGPU_CHUNK_ID_SYNCOBJ_OUT:
273 case AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES:
274 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_WAIT:
275 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_SIGNAL:
276 case AMDGPU_CHUNK_ID_CP_GFX_SHADOW:
280 goto free_partial_kdata;
289 for (i = 0; i < p->gang_size; ++i) {
290 ret = amdgpu_job_alloc(p->adev, vm, p->entities[i], vm,
291 num_ibs[i], &p->jobs[i]);
295 p->gang_leader = p->jobs[p->gang_leader_idx];
297 if (p->ctx->generation != p->gang_leader->generation) {
303 p->gang_leader->uf_addr = uf_offset;
306 /* Use this opportunity to fill in task info for the vm */
307 amdgpu_vm_set_task_info(vm);
315 kvfree(p->chunks[i].kdata);
325 static int amdgpu_cs_p2_ib(struct amdgpu_cs_parser *p,
326 struct amdgpu_cs_chunk *chunk,
327 unsigned int *ce_preempt,
328 unsigned int *de_preempt)
330 struct drm_amdgpu_cs_chunk_ib *chunk_ib = chunk->kdata;
331 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
332 struct amdgpu_vm *vm = &fpriv->vm;
333 struct amdgpu_ring *ring;
334 struct amdgpu_job *job;
335 struct amdgpu_ib *ib;
338 r = amdgpu_cs_job_idx(p, chunk_ib);
343 ring = amdgpu_job_ring(job);
344 ib = &job->ibs[job->num_ibs++];
346 /* MM engine doesn't support user fences */
347 if (p->uf_bo && ring->funcs->no_user_fence)
350 if (chunk_ib->ip_type == AMDGPU_HW_IP_GFX &&
351 chunk_ib->flags & AMDGPU_IB_FLAG_PREEMPT) {
352 if (chunk_ib->flags & AMDGPU_IB_FLAG_CE)
357 /* Each GFX command submit allows only 1 IB max
358 * preemptible for CE & DE */
359 if (*ce_preempt > 1 || *de_preempt > 1)
363 if (chunk_ib->flags & AMDGPU_IB_FLAG_PREAMBLE)
364 job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
366 r = amdgpu_ib_get(p->adev, vm, ring->funcs->parse_cs ?
367 chunk_ib->ib_bytes : 0,
368 AMDGPU_IB_POOL_DELAYED, ib);
370 DRM_ERROR("Failed to get ib !\n");
374 ib->gpu_addr = chunk_ib->va_start;
375 ib->length_dw = chunk_ib->ib_bytes / 4;
376 ib->flags = chunk_ib->flags;
380 static int amdgpu_cs_p2_dependencies(struct amdgpu_cs_parser *p,
381 struct amdgpu_cs_chunk *chunk)
383 struct drm_amdgpu_cs_chunk_dep *deps = chunk->kdata;
384 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
385 unsigned int num_deps;
388 num_deps = chunk->length_dw * 4 /
389 sizeof(struct drm_amdgpu_cs_chunk_dep);
391 for (i = 0; i < num_deps; ++i) {
392 struct amdgpu_ctx *ctx;
393 struct drm_sched_entity *entity;
394 struct dma_fence *fence;
396 ctx = amdgpu_ctx_get(fpriv, deps[i].ctx_id);
400 r = amdgpu_ctx_get_entity(ctx, deps[i].ip_type,
402 deps[i].ring, &entity);
408 fence = amdgpu_ctx_get_fence(ctx, entity, deps[i].handle);
412 return PTR_ERR(fence);
416 if (chunk->chunk_id == AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES) {
417 struct drm_sched_fence *s_fence;
418 struct dma_fence *old = fence;
420 s_fence = to_drm_sched_fence(fence);
421 fence = dma_fence_get(&s_fence->scheduled);
425 r = amdgpu_sync_fence(&p->sync, fence);
426 dma_fence_put(fence);
433 static int amdgpu_syncobj_lookup_and_add(struct amdgpu_cs_parser *p,
434 uint32_t handle, u64 point,
437 struct dma_fence *fence;
440 r = drm_syncobj_find_fence(p->filp, handle, point, flags, &fence);
442 DRM_ERROR("syncobj %u failed to find fence @ %llu (%d)!\n",
447 r = amdgpu_sync_fence(&p->sync, fence);
448 dma_fence_put(fence);
452 static int amdgpu_cs_p2_syncobj_in(struct amdgpu_cs_parser *p,
453 struct amdgpu_cs_chunk *chunk)
455 struct drm_amdgpu_cs_chunk_sem *deps = chunk->kdata;
456 unsigned int num_deps;
459 num_deps = chunk->length_dw * 4 /
460 sizeof(struct drm_amdgpu_cs_chunk_sem);
461 for (i = 0; i < num_deps; ++i) {
462 r = amdgpu_syncobj_lookup_and_add(p, deps[i].handle, 0, 0);
470 static int amdgpu_cs_p2_syncobj_timeline_wait(struct amdgpu_cs_parser *p,
471 struct amdgpu_cs_chunk *chunk)
473 struct drm_amdgpu_cs_chunk_syncobj *syncobj_deps = chunk->kdata;
474 unsigned int num_deps;
477 num_deps = chunk->length_dw * 4 /
478 sizeof(struct drm_amdgpu_cs_chunk_syncobj);
479 for (i = 0; i < num_deps; ++i) {
480 r = amdgpu_syncobj_lookup_and_add(p, syncobj_deps[i].handle,
481 syncobj_deps[i].point,
482 syncobj_deps[i].flags);
490 static int amdgpu_cs_p2_syncobj_out(struct amdgpu_cs_parser *p,
491 struct amdgpu_cs_chunk *chunk)
493 struct drm_amdgpu_cs_chunk_sem *deps = chunk->kdata;
494 unsigned int num_deps;
497 num_deps = chunk->length_dw * 4 /
498 sizeof(struct drm_amdgpu_cs_chunk_sem);
503 p->post_deps = kmalloc_array(num_deps, sizeof(*p->post_deps),
505 p->num_post_deps = 0;
511 for (i = 0; i < num_deps; ++i) {
512 p->post_deps[i].syncobj =
513 drm_syncobj_find(p->filp, deps[i].handle);
514 if (!p->post_deps[i].syncobj)
516 p->post_deps[i].chain = NULL;
517 p->post_deps[i].point = 0;
524 static int amdgpu_cs_p2_syncobj_timeline_signal(struct amdgpu_cs_parser *p,
525 struct amdgpu_cs_chunk *chunk)
527 struct drm_amdgpu_cs_chunk_syncobj *syncobj_deps = chunk->kdata;
528 unsigned int num_deps;
531 num_deps = chunk->length_dw * 4 /
532 sizeof(struct drm_amdgpu_cs_chunk_syncobj);
537 p->post_deps = kmalloc_array(num_deps, sizeof(*p->post_deps),
539 p->num_post_deps = 0;
544 for (i = 0; i < num_deps; ++i) {
545 struct amdgpu_cs_post_dep *dep = &p->post_deps[i];
548 if (syncobj_deps[i].point) {
549 dep->chain = dma_fence_chain_alloc();
554 dep->syncobj = drm_syncobj_find(p->filp,
555 syncobj_deps[i].handle);
557 dma_fence_chain_free(dep->chain);
560 dep->point = syncobj_deps[i].point;
567 static int amdgpu_cs_p2_shadow(struct amdgpu_cs_parser *p,
568 struct amdgpu_cs_chunk *chunk)
570 struct drm_amdgpu_cs_chunk_cp_gfx_shadow *shadow = chunk->kdata;
573 if (shadow->flags & ~AMDGPU_CS_CHUNK_CP_GFX_SHADOW_FLAGS_INIT_SHADOW)
576 for (i = 0; i < p->gang_size; ++i) {
577 p->jobs[i]->shadow_va = shadow->shadow_va;
578 p->jobs[i]->csa_va = shadow->csa_va;
579 p->jobs[i]->gds_va = shadow->gds_va;
580 p->jobs[i]->init_shadow =
581 shadow->flags & AMDGPU_CS_CHUNK_CP_GFX_SHADOW_FLAGS_INIT_SHADOW;
587 static int amdgpu_cs_pass2(struct amdgpu_cs_parser *p)
589 unsigned int ce_preempt = 0, de_preempt = 0;
592 for (i = 0; i < p->nchunks; ++i) {
593 struct amdgpu_cs_chunk *chunk;
595 chunk = &p->chunks[i];
597 switch (chunk->chunk_id) {
598 case AMDGPU_CHUNK_ID_IB:
599 r = amdgpu_cs_p2_ib(p, chunk, &ce_preempt, &de_preempt);
603 case AMDGPU_CHUNK_ID_DEPENDENCIES:
604 case AMDGPU_CHUNK_ID_SCHEDULED_DEPENDENCIES:
605 r = amdgpu_cs_p2_dependencies(p, chunk);
609 case AMDGPU_CHUNK_ID_SYNCOBJ_IN:
610 r = amdgpu_cs_p2_syncobj_in(p, chunk);
614 case AMDGPU_CHUNK_ID_SYNCOBJ_OUT:
615 r = amdgpu_cs_p2_syncobj_out(p, chunk);
619 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_WAIT:
620 r = amdgpu_cs_p2_syncobj_timeline_wait(p, chunk);
624 case AMDGPU_CHUNK_ID_SYNCOBJ_TIMELINE_SIGNAL:
625 r = amdgpu_cs_p2_syncobj_timeline_signal(p, chunk);
629 case AMDGPU_CHUNK_ID_CP_GFX_SHADOW:
630 r = amdgpu_cs_p2_shadow(p, chunk);
640 /* Convert microseconds to bytes. */
641 static u64 us_to_bytes(struct amdgpu_device *adev, s64 us)
643 if (us <= 0 || !adev->mm_stats.log2_max_MBps)
646 /* Since accum_us is incremented by a million per second, just
647 * multiply it by the number of MB/s to get the number of bytes.
649 return us << adev->mm_stats.log2_max_MBps;
652 static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes)
654 if (!adev->mm_stats.log2_max_MBps)
657 return bytes >> adev->mm_stats.log2_max_MBps;
660 /* Returns how many bytes TTM can move right now. If no bytes can be moved,
661 * it returns 0. If it returns non-zero, it's OK to move at least one buffer,
662 * which means it can go over the threshold once. If that happens, the driver
663 * will be in debt and no other buffer migrations can be done until that debt
666 * This approach allows moving a buffer of any size (it's important to allow
669 * The currency is simply time in microseconds and it increases as the clock
670 * ticks. The accumulated microseconds (us) are converted to bytes and
673 static void amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev,
677 s64 time_us, increment_us;
678 u64 free_vram, total_vram, used_vram;
679 /* Allow a maximum of 200 accumulated ms. This is basically per-IB
682 * It means that in order to get full max MBps, at least 5 IBs per
683 * second must be submitted and not more than 200ms apart from each
686 const s64 us_upper_bound = 200000;
688 if (!adev->mm_stats.log2_max_MBps) {
694 total_vram = adev->gmc.real_vram_size - atomic64_read(&adev->vram_pin_size);
695 used_vram = ttm_resource_manager_usage(&adev->mman.vram_mgr.manager);
696 free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram;
698 spin_lock(&adev->mm_stats.lock);
700 /* Increase the amount of accumulated us. */
701 time_us = ktime_to_us(ktime_get());
702 increment_us = time_us - adev->mm_stats.last_update_us;
703 adev->mm_stats.last_update_us = time_us;
704 adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us,
707 /* This prevents the short period of low performance when the VRAM
708 * usage is low and the driver is in debt or doesn't have enough
709 * accumulated us to fill VRAM quickly.
711 * The situation can occur in these cases:
712 * - a lot of VRAM is freed by userspace
713 * - the presence of a big buffer causes a lot of evictions
714 * (solution: split buffers into smaller ones)
716 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting
717 * accum_us to a positive number.
719 if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) {
722 /* Be more aggressive on dGPUs. Try to fill a portion of free
725 if (!(adev->flags & AMD_IS_APU))
726 min_us = bytes_to_us(adev, free_vram / 4);
728 min_us = 0; /* Reset accum_us on APUs. */
730 adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us);
733 /* This is set to 0 if the driver is in debt to disallow (optional)
736 *max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
738 /* Do the same for visible VRAM if half of it is free */
739 if (!amdgpu_gmc_vram_full_visible(&adev->gmc)) {
740 u64 total_vis_vram = adev->gmc.visible_vram_size;
742 amdgpu_vram_mgr_vis_usage(&adev->mman.vram_mgr);
744 if (used_vis_vram < total_vis_vram) {
745 u64 free_vis_vram = total_vis_vram - used_vis_vram;
747 adev->mm_stats.accum_us_vis = min(adev->mm_stats.accum_us_vis +
748 increment_us, us_upper_bound);
750 if (free_vis_vram >= total_vis_vram / 2)
751 adev->mm_stats.accum_us_vis =
752 max(bytes_to_us(adev, free_vis_vram / 2),
753 adev->mm_stats.accum_us_vis);
756 *max_vis_bytes = us_to_bytes(adev, adev->mm_stats.accum_us_vis);
761 spin_unlock(&adev->mm_stats.lock);
764 /* Report how many bytes have really been moved for the last command
765 * submission. This can result in a debt that can stop buffer migrations
768 void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev, u64 num_bytes,
771 spin_lock(&adev->mm_stats.lock);
772 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
773 adev->mm_stats.accum_us_vis -= bytes_to_us(adev, num_vis_bytes);
774 spin_unlock(&adev->mm_stats.lock);
777 static int amdgpu_cs_bo_validate(void *param, struct amdgpu_bo *bo)
779 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
780 struct amdgpu_cs_parser *p = param;
781 struct ttm_operation_ctx ctx = {
782 .interruptible = true,
783 .no_wait_gpu = false,
784 .resv = bo->tbo.base.resv
789 if (bo->tbo.pin_count)
792 /* Don't move this buffer if we have depleted our allowance
793 * to move it. Don't move anything if the threshold is zero.
795 if (p->bytes_moved < p->bytes_moved_threshold &&
796 (!bo->tbo.base.dma_buf ||
797 list_empty(&bo->tbo.base.dma_buf->attachments))) {
798 if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
799 (bo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)) {
800 /* And don't move a CPU_ACCESS_REQUIRED BO to limited
801 * visible VRAM if we've depleted our allowance to do
804 if (p->bytes_moved_vis < p->bytes_moved_vis_threshold)
805 domain = bo->preferred_domains;
807 domain = bo->allowed_domains;
809 domain = bo->preferred_domains;
812 domain = bo->allowed_domains;
816 amdgpu_bo_placement_from_domain(bo, domain);
817 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
819 p->bytes_moved += ctx.bytes_moved;
820 if (!amdgpu_gmc_vram_full_visible(&adev->gmc) &&
821 amdgpu_bo_in_cpu_visible_vram(bo))
822 p->bytes_moved_vis += ctx.bytes_moved;
824 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
825 domain = bo->allowed_domains;
832 static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
833 union drm_amdgpu_cs *cs)
835 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
836 struct ttm_operation_ctx ctx = { true, false };
837 struct amdgpu_vm *vm = &fpriv->vm;
838 struct amdgpu_bo_list_entry *e;
839 struct drm_gem_object *obj;
844 /* p->bo_list could already be assigned if AMDGPU_CHUNK_ID_BO_HANDLES is present */
845 if (cs->in.bo_list_handle) {
849 r = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle,
853 } else if (!p->bo_list) {
854 /* Create a empty bo_list when no handle is provided */
855 r = amdgpu_bo_list_create(p->adev, p->filp, NULL, 0,
861 mutex_lock(&p->bo_list->bo_list_mutex);
863 /* Get userptr backing pages. If pages are updated after registered
864 * in amdgpu_gem_userptr_ioctl(), amdgpu_cs_list_validate() will do
865 * amdgpu_ttm_backend_bind() to flush and invalidate new pages
867 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) {
868 bool userpage_invalidated = false;
869 struct amdgpu_bo *bo = e->bo;
872 e->user_pages = kvmalloc_array(bo->tbo.ttm->num_pages,
873 sizeof(struct page *),
874 GFP_KERNEL | __GFP_ZERO);
875 if (!e->user_pages) {
876 DRM_ERROR("kvmalloc_array failure\n");
878 goto out_free_user_pages;
881 r = amdgpu_ttm_tt_get_user_pages(bo, e->user_pages, &e->range);
883 kvfree(e->user_pages);
884 e->user_pages = NULL;
885 goto out_free_user_pages;
888 for (i = 0; i < bo->tbo.ttm->num_pages; i++) {
889 if (bo->tbo.ttm->pages[i] != e->user_pages[i]) {
890 userpage_invalidated = true;
894 e->user_invalidated = userpage_invalidated;
897 drm_exec_until_all_locked(&p->exec) {
898 r = amdgpu_vm_lock_pd(&fpriv->vm, &p->exec, 1 + p->gang_size);
899 drm_exec_retry_on_contention(&p->exec);
901 goto out_free_user_pages;
903 amdgpu_bo_list_for_each_entry(e, p->bo_list) {
904 /* One fence for TTM and one for each CS job */
905 r = drm_exec_prepare_obj(&p->exec, &e->bo->tbo.base,
907 drm_exec_retry_on_contention(&p->exec);
909 goto out_free_user_pages;
911 e->bo_va = amdgpu_vm_bo_find(vm, e->bo);
915 r = drm_exec_prepare_obj(&p->exec, &p->uf_bo->tbo.base,
917 drm_exec_retry_on_contention(&p->exec);
919 goto out_free_user_pages;
923 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) {
924 struct mm_struct *usermm;
926 usermm = amdgpu_ttm_tt_get_usermm(e->bo->tbo.ttm);
927 if (usermm && usermm != current->mm) {
929 goto out_free_user_pages;
932 if (amdgpu_ttm_tt_is_userptr(e->bo->tbo.ttm) &&
933 e->user_invalidated && e->user_pages) {
934 amdgpu_bo_placement_from_domain(e->bo,
935 AMDGPU_GEM_DOMAIN_CPU);
936 r = ttm_bo_validate(&e->bo->tbo, &e->bo->placement,
939 goto out_free_user_pages;
941 amdgpu_ttm_tt_set_user_pages(e->bo->tbo.ttm,
945 kvfree(e->user_pages);
946 e->user_pages = NULL;
949 amdgpu_cs_get_threshold_for_moves(p->adev, &p->bytes_moved_threshold,
950 &p->bytes_moved_vis_threshold);
952 p->bytes_moved_vis = 0;
954 r = amdgpu_vm_validate_pt_bos(p->adev, &fpriv->vm,
955 amdgpu_cs_bo_validate, p);
957 DRM_ERROR("amdgpu_vm_validate_pt_bos() failed.\n");
958 goto out_free_user_pages;
961 drm_exec_for_each_locked_object(&p->exec, index, obj) {
962 r = amdgpu_cs_bo_validate(p, gem_to_amdgpu_bo(obj));
964 goto out_free_user_pages;
968 r = amdgpu_ttm_alloc_gart(&p->uf_bo->tbo);
970 goto out_free_user_pages;
972 p->gang_leader->uf_addr += amdgpu_bo_gpu_offset(p->uf_bo);
975 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved,
978 for (i = 0; i < p->gang_size; ++i)
979 amdgpu_job_set_resources(p->jobs[i], p->bo_list->gds_obj,
985 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) {
986 struct amdgpu_bo *bo = e->bo;
990 amdgpu_ttm_tt_get_user_pages_done(bo->tbo.ttm, e->range);
991 kvfree(e->user_pages);
992 e->user_pages = NULL;
995 mutex_unlock(&p->bo_list->bo_list_mutex);
999 static void trace_amdgpu_cs_ibs(struct amdgpu_cs_parser *p)
1003 if (!trace_amdgpu_cs_enabled())
1006 for (i = 0; i < p->gang_size; ++i) {
1007 struct amdgpu_job *job = p->jobs[i];
1009 for (j = 0; j < job->num_ibs; ++j)
1010 trace_amdgpu_cs(p, job, &job->ibs[j]);
1014 static int amdgpu_cs_patch_ibs(struct amdgpu_cs_parser *p,
1015 struct amdgpu_job *job)
1017 struct amdgpu_ring *ring = amdgpu_job_ring(job);
1021 /* Only for UVD/VCE VM emulation */
1022 if (!ring->funcs->parse_cs && !ring->funcs->patch_cs_in_place)
1025 for (i = 0; i < job->num_ibs; ++i) {
1026 struct amdgpu_ib *ib = &job->ibs[i];
1027 struct amdgpu_bo_va_mapping *m;
1028 struct amdgpu_bo *aobj;
1032 va_start = ib->gpu_addr & AMDGPU_GMC_HOLE_MASK;
1033 r = amdgpu_cs_find_mapping(p, va_start, &aobj, &m);
1035 DRM_ERROR("IB va_start is invalid\n");
1039 if ((va_start + ib->length_dw * 4) >
1040 (m->last + 1) * AMDGPU_GPU_PAGE_SIZE) {
1041 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
1045 /* the IB should be reserved at this point */
1046 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
1050 kptr += va_start - (m->start * AMDGPU_GPU_PAGE_SIZE);
1052 if (ring->funcs->parse_cs) {
1053 memcpy(ib->ptr, kptr, ib->length_dw * 4);
1054 amdgpu_bo_kunmap(aobj);
1056 r = amdgpu_ring_parse_cs(ring, p, job, ib);
1060 ib->ptr = (uint32_t *)kptr;
1061 r = amdgpu_ring_patch_cs_in_place(ring, p, job, ib);
1062 amdgpu_bo_kunmap(aobj);
1071 static int amdgpu_cs_patch_jobs(struct amdgpu_cs_parser *p)
1076 for (i = 0; i < p->gang_size; ++i) {
1077 r = amdgpu_cs_patch_ibs(p, p->jobs[i]);
1084 static int amdgpu_cs_vm_handling(struct amdgpu_cs_parser *p)
1086 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
1087 struct amdgpu_job *job = p->gang_leader;
1088 struct amdgpu_device *adev = p->adev;
1089 struct amdgpu_vm *vm = &fpriv->vm;
1090 struct amdgpu_bo_list_entry *e;
1091 struct amdgpu_bo_va *bo_va;
1095 r = amdgpu_vm_clear_freed(adev, vm, NULL);
1099 r = amdgpu_vm_bo_update(adev, fpriv->prt_va, false);
1103 r = amdgpu_sync_fence(&p->sync, fpriv->prt_va->last_pt_update);
1107 if (fpriv->csa_va) {
1108 bo_va = fpriv->csa_va;
1110 r = amdgpu_vm_bo_update(adev, bo_va, false);
1114 r = amdgpu_sync_fence(&p->sync, bo_va->last_pt_update);
1119 amdgpu_bo_list_for_each_entry(e, p->bo_list) {
1124 r = amdgpu_vm_bo_update(adev, bo_va, false);
1128 r = amdgpu_sync_fence(&p->sync, bo_va->last_pt_update);
1133 r = amdgpu_vm_handle_moved(adev, vm);
1137 r = amdgpu_vm_update_pdes(adev, vm, false);
1141 r = amdgpu_sync_fence(&p->sync, vm->last_update);
1145 for (i = 0; i < p->gang_size; ++i) {
1151 job->vm_pd_addr = amdgpu_gmc_pd_addr(vm->root.bo);
1154 if (amdgpu_vm_debug) {
1155 /* Invalidate all BOs to test for userspace bugs */
1156 amdgpu_bo_list_for_each_entry(e, p->bo_list) {
1157 struct amdgpu_bo *bo = e->bo;
1159 /* ignore duplicates */
1163 amdgpu_vm_bo_invalidate(adev, bo, false);
1170 static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
1172 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
1173 struct drm_gpu_scheduler *sched;
1174 struct drm_gem_object *obj;
1175 struct dma_fence *fence;
1176 unsigned long index;
1180 r = amdgpu_ctx_wait_prev_fence(p->ctx, p->entities[p->gang_leader_idx]);
1182 if (r != -ERESTARTSYS)
1183 DRM_ERROR("amdgpu_ctx_wait_prev_fence failed.\n");
1187 drm_exec_for_each_locked_object(&p->exec, index, obj) {
1188 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
1190 struct dma_resv *resv = bo->tbo.base.resv;
1191 enum amdgpu_sync_mode sync_mode;
1193 sync_mode = amdgpu_bo_explicit_sync(bo) ?
1194 AMDGPU_SYNC_EXPLICIT : AMDGPU_SYNC_NE_OWNER;
1195 r = amdgpu_sync_resv(p->adev, &p->sync, resv, sync_mode,
1201 for (i = 0; i < p->gang_size; ++i) {
1202 r = amdgpu_sync_push_to_job(&p->sync, p->jobs[i]);
1207 sched = p->gang_leader->base.entity->rq->sched;
1208 while ((fence = amdgpu_sync_get_fence(&p->sync))) {
1209 struct drm_sched_fence *s_fence = to_drm_sched_fence(fence);
1212 * When we have an dependency it might be necessary to insert a
1213 * pipeline sync to make sure that all caches etc are flushed and the
1214 * next job actually sees the results from the previous one
1215 * before we start executing on the same scheduler ring.
1217 if (!s_fence || s_fence->sched != sched) {
1218 dma_fence_put(fence);
1222 r = amdgpu_sync_fence(&p->gang_leader->explicit_sync, fence);
1223 dma_fence_put(fence);
1230 static void amdgpu_cs_post_dependencies(struct amdgpu_cs_parser *p)
1234 for (i = 0; i < p->num_post_deps; ++i) {
1235 if (p->post_deps[i].chain && p->post_deps[i].point) {
1236 drm_syncobj_add_point(p->post_deps[i].syncobj,
1237 p->post_deps[i].chain,
1238 p->fence, p->post_deps[i].point);
1239 p->post_deps[i].chain = NULL;
1241 drm_syncobj_replace_fence(p->post_deps[i].syncobj,
1247 static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
1248 union drm_amdgpu_cs *cs)
1250 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
1251 struct amdgpu_job *leader = p->gang_leader;
1252 struct amdgpu_bo_list_entry *e;
1253 struct drm_gem_object *gobj;
1254 unsigned long index;
1259 for (i = 0; i < p->gang_size; ++i)
1260 drm_sched_job_arm(&p->jobs[i]->base);
1262 for (i = 0; i < p->gang_size; ++i) {
1263 struct dma_fence *fence;
1265 if (p->jobs[i] == leader)
1268 fence = &p->jobs[i]->base.s_fence->scheduled;
1269 dma_fence_get(fence);
1270 r = drm_sched_job_add_dependency(&leader->base, fence);
1272 dma_fence_put(fence);
1277 if (p->gang_size > 1) {
1278 for (i = 0; i < p->gang_size; ++i)
1279 amdgpu_job_set_gang_leader(p->jobs[i], leader);
1282 /* No memory allocation is allowed while holding the notifier lock.
1283 * The lock is held until amdgpu_cs_submit is finished and fence is
1286 mutex_lock(&p->adev->notifier_lock);
1288 /* If userptr are invalidated after amdgpu_cs_parser_bos(), return
1289 * -EAGAIN, drmIoctl in libdrm will restart the amdgpu_cs_ioctl.
1292 amdgpu_bo_list_for_each_userptr_entry(e, p->bo_list) {
1293 r |= !amdgpu_ttm_tt_get_user_pages_done(e->bo->tbo.ttm,
1299 mutex_unlock(&p->adev->notifier_lock);
1303 p->fence = dma_fence_get(&leader->base.s_fence->finished);
1304 drm_exec_for_each_locked_object(&p->exec, index, gobj) {
1306 ttm_bo_move_to_lru_tail_unlocked(&gem_to_amdgpu_bo(gobj)->tbo);
1308 /* Everybody except for the gang leader uses READ */
1309 for (i = 0; i < p->gang_size; ++i) {
1310 if (p->jobs[i] == leader)
1313 dma_resv_add_fence(gobj->resv,
1314 &p->jobs[i]->base.s_fence->finished,
1315 DMA_RESV_USAGE_READ);
1318 /* The gang leader as remembered as writer */
1319 dma_resv_add_fence(gobj->resv, p->fence, DMA_RESV_USAGE_WRITE);
1322 seq = amdgpu_ctx_add_fence(p->ctx, p->entities[p->gang_leader_idx],
1324 amdgpu_cs_post_dependencies(p);
1326 if ((leader->preamble_status & AMDGPU_PREAMBLE_IB_PRESENT) &&
1327 !p->ctx->preamble_presented) {
1328 leader->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST;
1329 p->ctx->preamble_presented = true;
1332 cs->out.handle = seq;
1333 leader->uf_sequence = seq;
1335 amdgpu_vm_bo_trace_cs(&fpriv->vm, &p->exec.ticket);
1336 for (i = 0; i < p->gang_size; ++i) {
1337 amdgpu_job_free_resources(p->jobs[i]);
1338 trace_amdgpu_cs_ioctl(p->jobs[i]);
1339 drm_sched_entity_push_job(&p->jobs[i]->base);
1343 amdgpu_vm_move_to_lru_tail(p->adev, &fpriv->vm);
1345 mutex_unlock(&p->adev->notifier_lock);
1346 mutex_unlock(&p->bo_list->bo_list_mutex);
1350 /* Cleanup the parser structure */
1351 static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser)
1355 amdgpu_sync_free(&parser->sync);
1356 drm_exec_fini(&parser->exec);
1358 for (i = 0; i < parser->num_post_deps; i++) {
1359 drm_syncobj_put(parser->post_deps[i].syncobj);
1360 kfree(parser->post_deps[i].chain);
1362 kfree(parser->post_deps);
1364 dma_fence_put(parser->fence);
1367 amdgpu_ctx_put(parser->ctx);
1368 if (parser->bo_list)
1369 amdgpu_bo_list_put(parser->bo_list);
1371 for (i = 0; i < parser->nchunks; i++)
1372 kvfree(parser->chunks[i].kdata);
1373 kvfree(parser->chunks);
1374 for (i = 0; i < parser->gang_size; ++i) {
1375 if (parser->jobs[i])
1376 amdgpu_job_free(parser->jobs[i]);
1378 amdgpu_bo_unref(&parser->uf_bo);
1381 int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
1383 struct amdgpu_device *adev = drm_to_adev(dev);
1384 struct amdgpu_cs_parser parser;
1387 if (amdgpu_ras_intr_triggered())
1390 if (!adev->accel_working)
1393 r = amdgpu_cs_parser_init(&parser, adev, filp, data);
1395 if (printk_ratelimit())
1396 DRM_ERROR("Failed to initialize parser %d!\n", r);
1400 r = amdgpu_cs_pass1(&parser, data);
1404 r = amdgpu_cs_pass2(&parser);
1408 r = amdgpu_cs_parser_bos(&parser, data);
1411 DRM_ERROR("Not enough memory for command submission!\n");
1412 else if (r != -ERESTARTSYS && r != -EAGAIN)
1413 DRM_ERROR("Failed to process the buffer list %d!\n", r);
1417 r = amdgpu_cs_patch_jobs(&parser);
1421 r = amdgpu_cs_vm_handling(&parser);
1425 r = amdgpu_cs_sync_rings(&parser);
1429 trace_amdgpu_cs_ibs(&parser);
1431 r = amdgpu_cs_submit(&parser, data);
1435 amdgpu_cs_parser_fini(&parser);
1439 mutex_unlock(&parser.bo_list->bo_list_mutex);
1442 amdgpu_cs_parser_fini(&parser);
1447 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
1450 * @data: data from userspace
1451 * @filp: file private
1453 * Wait for the command submission identified by handle to finish.
1455 int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1456 struct drm_file *filp)
1458 union drm_amdgpu_wait_cs *wait = data;
1459 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
1460 struct drm_sched_entity *entity;
1461 struct amdgpu_ctx *ctx;
1462 struct dma_fence *fence;
1465 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1469 r = amdgpu_ctx_get_entity(ctx, wait->in.ip_type, wait->in.ip_instance,
1470 wait->in.ring, &entity);
1472 amdgpu_ctx_put(ctx);
1476 fence = amdgpu_ctx_get_fence(ctx, entity, wait->in.handle);
1480 r = dma_fence_wait_timeout(fence, true, timeout);
1481 if (r > 0 && fence->error)
1483 dma_fence_put(fence);
1487 amdgpu_ctx_put(ctx);
1491 memset(wait, 0, sizeof(*wait));
1492 wait->out.status = (r == 0);
1498 * amdgpu_cs_get_fence - helper to get fence from drm_amdgpu_fence
1500 * @adev: amdgpu device
1501 * @filp: file private
1502 * @user: drm_amdgpu_fence copied from user space
1504 static struct dma_fence *amdgpu_cs_get_fence(struct amdgpu_device *adev,
1505 struct drm_file *filp,
1506 struct drm_amdgpu_fence *user)
1508 struct drm_sched_entity *entity;
1509 struct amdgpu_ctx *ctx;
1510 struct dma_fence *fence;
1513 ctx = amdgpu_ctx_get(filp->driver_priv, user->ctx_id);
1515 return ERR_PTR(-EINVAL);
1517 r = amdgpu_ctx_get_entity(ctx, user->ip_type, user->ip_instance,
1518 user->ring, &entity);
1520 amdgpu_ctx_put(ctx);
1524 fence = amdgpu_ctx_get_fence(ctx, entity, user->seq_no);
1525 amdgpu_ctx_put(ctx);
1530 int amdgpu_cs_fence_to_handle_ioctl(struct drm_device *dev, void *data,
1531 struct drm_file *filp)
1533 struct amdgpu_device *adev = drm_to_adev(dev);
1534 union drm_amdgpu_fence_to_handle *info = data;
1535 struct dma_fence *fence;
1536 struct drm_syncobj *syncobj;
1537 struct sync_file *sync_file;
1540 fence = amdgpu_cs_get_fence(adev, filp, &info->in.fence);
1542 return PTR_ERR(fence);
1545 fence = dma_fence_get_stub();
1547 switch (info->in.what) {
1548 case AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ:
1549 r = drm_syncobj_create(&syncobj, 0, fence);
1550 dma_fence_put(fence);
1553 r = drm_syncobj_get_handle(filp, syncobj, &info->out.handle);
1554 drm_syncobj_put(syncobj);
1557 case AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ_FD:
1558 r = drm_syncobj_create(&syncobj, 0, fence);
1559 dma_fence_put(fence);
1562 r = drm_syncobj_get_fd(syncobj, (int *)&info->out.handle);
1563 drm_syncobj_put(syncobj);
1566 case AMDGPU_FENCE_TO_HANDLE_GET_SYNC_FILE_FD:
1567 fd = get_unused_fd_flags(O_CLOEXEC);
1569 dma_fence_put(fence);
1573 sync_file = sync_file_create(fence);
1574 dma_fence_put(fence);
1580 fd_install(fd, sync_file->file);
1581 info->out.handle = fd;
1585 dma_fence_put(fence);
1591 * amdgpu_cs_wait_all_fences - wait on all fences to signal
1593 * @adev: amdgpu device
1594 * @filp: file private
1595 * @wait: wait parameters
1596 * @fences: array of drm_amdgpu_fence
1598 static int amdgpu_cs_wait_all_fences(struct amdgpu_device *adev,
1599 struct drm_file *filp,
1600 union drm_amdgpu_wait_fences *wait,
1601 struct drm_amdgpu_fence *fences)
1603 uint32_t fence_count = wait->in.fence_count;
1607 for (i = 0; i < fence_count; i++) {
1608 struct dma_fence *fence;
1609 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1611 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1613 return PTR_ERR(fence);
1617 r = dma_fence_wait_timeout(fence, true, timeout);
1618 if (r > 0 && fence->error)
1621 dma_fence_put(fence);
1629 memset(wait, 0, sizeof(*wait));
1630 wait->out.status = (r > 0);
1636 * amdgpu_cs_wait_any_fence - wait on any fence to signal
1638 * @adev: amdgpu device
1639 * @filp: file private
1640 * @wait: wait parameters
1641 * @fences: array of drm_amdgpu_fence
1643 static int amdgpu_cs_wait_any_fence(struct amdgpu_device *adev,
1644 struct drm_file *filp,
1645 union drm_amdgpu_wait_fences *wait,
1646 struct drm_amdgpu_fence *fences)
1648 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1649 uint32_t fence_count = wait->in.fence_count;
1650 uint32_t first = ~0;
1651 struct dma_fence **array;
1655 /* Prepare the fence array */
1656 array = kcalloc(fence_count, sizeof(struct dma_fence *), GFP_KERNEL);
1661 for (i = 0; i < fence_count; i++) {
1662 struct dma_fence *fence;
1664 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1665 if (IS_ERR(fence)) {
1667 goto err_free_fence_array;
1670 } else { /* NULL, the fence has been already signaled */
1677 r = dma_fence_wait_any_timeout(array, fence_count, true, timeout,
1680 goto err_free_fence_array;
1683 memset(wait, 0, sizeof(*wait));
1684 wait->out.status = (r > 0);
1685 wait->out.first_signaled = first;
1687 if (first < fence_count && array[first])
1688 r = array[first]->error;
1692 err_free_fence_array:
1693 for (i = 0; i < fence_count; i++)
1694 dma_fence_put(array[i]);
1701 * amdgpu_cs_wait_fences_ioctl - wait for multiple command submissions to finish
1704 * @data: data from userspace
1705 * @filp: file private
1707 int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
1708 struct drm_file *filp)
1710 struct amdgpu_device *adev = drm_to_adev(dev);
1711 union drm_amdgpu_wait_fences *wait = data;
1712 uint32_t fence_count = wait->in.fence_count;
1713 struct drm_amdgpu_fence *fences_user;
1714 struct drm_amdgpu_fence *fences;
1717 /* Get the fences from userspace */
1718 fences = kmalloc_array(fence_count, sizeof(struct drm_amdgpu_fence),
1723 fences_user = u64_to_user_ptr(wait->in.fences);
1724 if (copy_from_user(fences, fences_user,
1725 sizeof(struct drm_amdgpu_fence) * fence_count)) {
1727 goto err_free_fences;
1730 if (wait->in.wait_all)
1731 r = amdgpu_cs_wait_all_fences(adev, filp, wait, fences);
1733 r = amdgpu_cs_wait_any_fence(adev, filp, wait, fences);
1742 * amdgpu_cs_find_mapping - find bo_va for VM address
1744 * @parser: command submission parser context
1746 * @bo: resulting BO of the mapping found
1747 * @map: Placeholder to return found BO mapping
1749 * Search the buffer objects in the command submission context for a certain
1750 * virtual memory address. Returns allocation structure when found, NULL
1753 int amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1754 uint64_t addr, struct amdgpu_bo **bo,
1755 struct amdgpu_bo_va_mapping **map)
1757 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
1758 struct ttm_operation_ctx ctx = { false, false };
1759 struct amdgpu_vm *vm = &fpriv->vm;
1760 struct amdgpu_bo_va_mapping *mapping;
1763 addr /= AMDGPU_GPU_PAGE_SIZE;
1765 mapping = amdgpu_vm_bo_lookup_mapping(vm, addr);
1766 if (!mapping || !mapping->bo_va || !mapping->bo_va->base.bo)
1769 *bo = mapping->bo_va->base.bo;
1772 /* Double check that the BO is reserved by this CS */
1773 if (dma_resv_locking_ctx((*bo)->tbo.base.resv) != &parser->exec.ticket)
1776 if (!((*bo)->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)) {
1777 (*bo)->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1778 amdgpu_bo_placement_from_domain(*bo, (*bo)->allowed_domains);
1779 r = ttm_bo_validate(&(*bo)->tbo, &(*bo)->placement, &ctx);
1784 return amdgpu_ttm_alloc_gart(&(*bo)->tbo);