1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#include <linux/pagemap.h>
28#include <linux/sync_file.h>
29#include <drm/drmP.h>
30#include <drm/amdgpu_drm.h>
31#include <drm/drm_syncobj.h>
32#include "amdgpu.h"
33#include "amdgpu_trace.h"
34
35static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p,
36 struct drm_amdgpu_cs_chunk_fence *data,
37 uint32_t *offset)
38{
39 struct drm_gem_object *gobj;
40 unsigned long size;
41
42 gobj = drm_gem_object_lookup(p->filp, data->handle);
43 if (gobj == NULL)
44 return -EINVAL;
45
46 p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
47 p->uf_entry.priority = 0;
48 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
49 p->uf_entry.tv.shared = true;
50 p->uf_entry.user_pages = NULL;
51
52 size = amdgpu_bo_size(p->uf_entry.robj);
53 if (size != PAGE_SIZE || (data->offset + 8) > size)
54 return -EINVAL;
55
56 *offset = data->offset;
57
58 drm_gem_object_put_unlocked(gobj);
59
60 if (amdgpu_ttm_tt_get_usermm(p->uf_entry.robj->tbo.ttm)) {
61 amdgpu_bo_unref(&p->uf_entry.robj);
62 return -EINVAL;
63 }
64
65 return 0;
66}
67
68static int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
69{
70 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
71 struct amdgpu_vm *vm = &fpriv->vm;
72 union drm_amdgpu_cs *cs = data;
73 uint64_t *chunk_array_user;
74 uint64_t *chunk_array;
75 unsigned size, num_ibs = 0;
76 uint32_t uf_offset = 0;
77 int i;
78 int ret;
79
80 if (cs->in.num_chunks == 0)
81 return 0;
82
83 chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
84 if (!chunk_array)
85 return -ENOMEM;
86
87 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
88 if (!p->ctx) {
89 ret = -EINVAL;
90 goto free_chunk;
91 }
92
93
94 if (atomic_read(&p->ctx->guilty) == 1) {
95 ret = -ECANCELED;
96 goto free_chunk;
97 }
98
99 mutex_lock(&p->ctx->lock);
100
101
102 chunk_array_user = u64_to_user_ptr(cs->in.chunks);
103 if (copy_from_user(chunk_array, chunk_array_user,
104 sizeof(uint64_t)*cs->in.num_chunks)) {
105 ret = -EFAULT;
106 goto free_chunk;
107 }
108
109 p->nchunks = cs->in.num_chunks;
110 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
111 GFP_KERNEL);
112 if (!p->chunks) {
113 ret = -ENOMEM;
114 goto free_chunk;
115 }
116
117 for (i = 0; i < p->nchunks; i++) {
118 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
119 struct drm_amdgpu_cs_chunk user_chunk;
120 uint32_t __user *cdata;
121
122 chunk_ptr = u64_to_user_ptr(chunk_array[i]);
123 if (copy_from_user(&user_chunk, chunk_ptr,
124 sizeof(struct drm_amdgpu_cs_chunk))) {
125 ret = -EFAULT;
126 i--;
127 goto free_partial_kdata;
128 }
129 p->chunks[i].chunk_id = user_chunk.chunk_id;
130 p->chunks[i].length_dw = user_chunk.length_dw;
131
132 size = p->chunks[i].length_dw;
133 cdata = u64_to_user_ptr(user_chunk.chunk_data);
134
135 p->chunks[i].kdata = kvmalloc_array(size, sizeof(uint32_t), GFP_KERNEL);
136 if (p->chunks[i].kdata == NULL) {
137 ret = -ENOMEM;
138 i--;
139 goto free_partial_kdata;
140 }
141 size *= sizeof(uint32_t);
142 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
143 ret = -EFAULT;
144 goto free_partial_kdata;
145 }
146
147 switch (p->chunks[i].chunk_id) {
148 case AMDGPU_CHUNK_ID_IB:
149 ++num_ibs;
150 break;
151
152 case AMDGPU_CHUNK_ID_FENCE:
153 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
154 if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
155 ret = -EINVAL;
156 goto free_partial_kdata;
157 }
158
159 ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata,
160 &uf_offset);
161 if (ret)
162 goto free_partial_kdata;
163
164 break;
165
166 case AMDGPU_CHUNK_ID_DEPENDENCIES:
167 case AMDGPU_CHUNK_ID_SYNCOBJ_IN:
168 case AMDGPU_CHUNK_ID_SYNCOBJ_OUT:
169 break;
170
171 default:
172 ret = -EINVAL;
173 goto free_partial_kdata;
174 }
175 }
176
177 ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm);
178 if (ret)
179 goto free_all_kdata;
180
181 if (p->ctx->vram_lost_counter != p->job->vram_lost_counter) {
182 ret = -ECANCELED;
183 goto free_all_kdata;
184 }
185
186 if (p->uf_entry.robj)
187 p->job->uf_addr = uf_offset;
188 kfree(chunk_array);
189 return 0;
190
191free_all_kdata:
192 i = p->nchunks - 1;
193free_partial_kdata:
194 for (; i >= 0; i--)
195 kvfree(p->chunks[i].kdata);
196 kfree(p->chunks);
197 p->chunks = NULL;
198 p->nchunks = 0;
199free_chunk:
200 kfree(chunk_array);
201
202 return ret;
203}
204
205
206static u64 us_to_bytes(struct amdgpu_device *adev, s64 us)
207{
208 if (us <= 0 || !adev->mm_stats.log2_max_MBps)
209 return 0;
210
211
212
213
214 return us << adev->mm_stats.log2_max_MBps;
215}
216
217static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes)
218{
219 if (!adev->mm_stats.log2_max_MBps)
220 return 0;
221
222 return bytes >> adev->mm_stats.log2_max_MBps;
223}
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238static void amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev,
239 u64 *max_bytes,
240 u64 *max_vis_bytes)
241{
242 s64 time_us, increment_us;
243 u64 free_vram, total_vram, used_vram;
244
245
246
247
248
249
250
251
252 const s64 us_upper_bound = 200000;
253
254 if (!adev->mm_stats.log2_max_MBps) {
255 *max_bytes = 0;
256 *max_vis_bytes = 0;
257 return;
258 }
259
260 total_vram = adev->gmc.real_vram_size - adev->vram_pin_size;
261 used_vram = amdgpu_vram_mgr_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
262 free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram;
263
264 spin_lock(&adev->mm_stats.lock);
265
266
267 time_us = ktime_to_us(ktime_get());
268 increment_us = time_us - adev->mm_stats.last_update_us;
269 adev->mm_stats.last_update_us = time_us;
270 adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us,
271 us_upper_bound);
272
273
274
275
276
277
278
279
280
281
282
283
284
285 if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) {
286 s64 min_us;
287
288
289
290
291 if (!(adev->flags & AMD_IS_APU))
292 min_us = bytes_to_us(adev, free_vram / 4);
293 else
294 min_us = 0;
295
296 adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us);
297 }
298
299
300
301
302 *max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
303
304
305 if (adev->gmc.visible_vram_size < adev->gmc.real_vram_size) {
306 u64 total_vis_vram = adev->gmc.visible_vram_size;
307 u64 used_vis_vram =
308 amdgpu_vram_mgr_vis_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
309
310 if (used_vis_vram < total_vis_vram) {
311 u64 free_vis_vram = total_vis_vram - used_vis_vram;
312 adev->mm_stats.accum_us_vis = min(adev->mm_stats.accum_us_vis +
313 increment_us, us_upper_bound);
314
315 if (free_vis_vram >= total_vis_vram / 2)
316 adev->mm_stats.accum_us_vis =
317 max(bytes_to_us(adev, free_vis_vram / 2),
318 adev->mm_stats.accum_us_vis);
319 }
320
321 *max_vis_bytes = us_to_bytes(adev, adev->mm_stats.accum_us_vis);
322 } else {
323 *max_vis_bytes = 0;
324 }
325
326 spin_unlock(&adev->mm_stats.lock);
327}
328
329
330
331
332
333void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev, u64 num_bytes,
334 u64 num_vis_bytes)
335{
336 spin_lock(&adev->mm_stats.lock);
337 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
338 adev->mm_stats.accum_us_vis -= bytes_to_us(adev, num_vis_bytes);
339 spin_unlock(&adev->mm_stats.lock);
340}
341
342static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
343 struct amdgpu_bo *bo)
344{
345 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
346 struct ttm_operation_ctx ctx = {
347 .interruptible = true,
348 .no_wait_gpu = false,
349 .resv = bo->tbo.resv,
350 .flags = 0
351 };
352 uint32_t domain;
353 int r;
354
355 if (bo->pin_count)
356 return 0;
357
358
359
360
361 if (p->bytes_moved < p->bytes_moved_threshold) {
362 if (adev->gmc.visible_vram_size < adev->gmc.real_vram_size &&
363 (bo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)) {
364
365
366
367
368 if (p->bytes_moved_vis < p->bytes_moved_vis_threshold)
369 domain = bo->preferred_domains;
370 else
371 domain = bo->allowed_domains;
372 } else {
373 domain = bo->preferred_domains;
374 }
375 } else {
376 domain = bo->allowed_domains;
377 }
378
379retry:
380 amdgpu_ttm_placement_from_domain(bo, domain);
381 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
382
383 p->bytes_moved += ctx.bytes_moved;
384 if (adev->gmc.visible_vram_size < adev->gmc.real_vram_size &&
385 bo->tbo.mem.mem_type == TTM_PL_VRAM &&
386 bo->tbo.mem.start < adev->gmc.visible_vram_size >> PAGE_SHIFT)
387 p->bytes_moved_vis += ctx.bytes_moved;
388
389 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
390 domain = bo->allowed_domains;
391 goto retry;
392 }
393
394 return r;
395}
396
397
398static bool amdgpu_cs_try_evict(struct amdgpu_cs_parser *p,
399 struct amdgpu_bo *validated)
400{
401 uint32_t domain = validated->allowed_domains;
402 struct ttm_operation_ctx ctx = { true, false };
403 int r;
404
405 if (!p->evictable)
406 return false;
407
408 for (;&p->evictable->tv.head != &p->validated;
409 p->evictable = list_prev_entry(p->evictable, tv.head)) {
410
411 struct amdgpu_bo_list_entry *candidate = p->evictable;
412 struct amdgpu_bo *bo = candidate->robj;
413 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
414 u64 initial_bytes_moved, bytes_moved;
415 bool update_bytes_moved_vis;
416 uint32_t other;
417
418
419 if (candidate->robj == validated)
420 break;
421
422
423 if (bo->pin_count)
424 continue;
425
426 other = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
427
428
429 if (!(other & domain))
430 continue;
431
432
433 other = bo->allowed_domains & ~domain;
434 if (!other)
435 continue;
436
437
438 amdgpu_ttm_placement_from_domain(bo, other);
439 update_bytes_moved_vis =
440 adev->gmc.visible_vram_size < adev->gmc.real_vram_size &&
441 bo->tbo.mem.mem_type == TTM_PL_VRAM &&
442 bo->tbo.mem.start < adev->gmc.visible_vram_size >> PAGE_SHIFT;
443 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
444 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
445 bytes_moved = atomic64_read(&adev->num_bytes_moved) -
446 initial_bytes_moved;
447 p->bytes_moved += bytes_moved;
448 if (update_bytes_moved_vis)
449 p->bytes_moved_vis += bytes_moved;
450
451 if (unlikely(r))
452 break;
453
454 p->evictable = list_prev_entry(p->evictable, tv.head);
455 list_move(&candidate->tv.head, &p->validated);
456
457 return true;
458 }
459
460 return false;
461}
462
463static int amdgpu_cs_validate(void *param, struct amdgpu_bo *bo)
464{
465 struct amdgpu_cs_parser *p = param;
466 int r;
467
468 do {
469 r = amdgpu_cs_bo_validate(p, bo);
470 } while (r == -ENOMEM && amdgpu_cs_try_evict(p, bo));
471 if (r)
472 return r;
473
474 if (bo->shadow)
475 r = amdgpu_cs_bo_validate(p, bo->shadow);
476
477 return r;
478}
479
480static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
481 struct list_head *validated)
482{
483 struct ttm_operation_ctx ctx = { true, false };
484 struct amdgpu_bo_list_entry *lobj;
485 int r;
486
487 list_for_each_entry(lobj, validated, tv.head) {
488 struct amdgpu_bo *bo = lobj->robj;
489 bool binding_userptr = false;
490 struct mm_struct *usermm;
491
492 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
493 if (usermm && usermm != current->mm)
494 return -EPERM;
495
496
497 if (amdgpu_ttm_tt_userptr_needs_pages(bo->tbo.ttm) &&
498 lobj->user_pages) {
499 amdgpu_ttm_placement_from_domain(bo,
500 AMDGPU_GEM_DOMAIN_CPU);
501 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
502 if (r)
503 return r;
504 amdgpu_ttm_tt_set_user_pages(bo->tbo.ttm,
505 lobj->user_pages);
506 binding_userptr = true;
507 }
508
509 if (p->evictable == lobj)
510 p->evictable = NULL;
511
512 r = amdgpu_cs_validate(p, bo);
513 if (r)
514 return r;
515
516 if (binding_userptr) {
517 kvfree(lobj->user_pages);
518 lobj->user_pages = NULL;
519 }
520 }
521 return 0;
522}
523
524static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
525 union drm_amdgpu_cs *cs)
526{
527 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
528 struct amdgpu_bo_list_entry *e;
529 struct list_head duplicates;
530 unsigned i, tries = 10;
531 int r;
532
533 INIT_LIST_HEAD(&p->validated);
534
535 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
536 if (p->bo_list) {
537 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
538 if (p->bo_list->first_userptr != p->bo_list->num_entries)
539 p->mn = amdgpu_mn_get(p->adev);
540 }
541
542 INIT_LIST_HEAD(&duplicates);
543 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
544
545 if (p->uf_entry.robj && !p->uf_entry.robj->parent)
546 list_add(&p->uf_entry.tv.head, &p->validated);
547
548 while (1) {
549 struct list_head need_pages;
550 unsigned i;
551
552 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
553 &duplicates);
554 if (unlikely(r != 0)) {
555 if (r != -ERESTARTSYS)
556 DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
557 goto error_free_pages;
558 }
559
560
561 if (!p->bo_list)
562 break;
563
564 INIT_LIST_HEAD(&need_pages);
565 for (i = p->bo_list->first_userptr;
566 i < p->bo_list->num_entries; ++i) {
567 struct amdgpu_bo *bo;
568
569 e = &p->bo_list->array[i];
570 bo = e->robj;
571
572 if (amdgpu_ttm_tt_userptr_invalidated(bo->tbo.ttm,
573 &e->user_invalidated) && e->user_pages) {
574
575
576
577
578 release_pages(e->user_pages,
579 bo->tbo.ttm->num_pages,
580 false);
581 kvfree(e->user_pages);
582 e->user_pages = NULL;
583 }
584
585 if (amdgpu_ttm_tt_userptr_needs_pages(bo->tbo.ttm) &&
586 !e->user_pages) {
587 list_del(&e->tv.head);
588 list_add(&e->tv.head, &need_pages);
589
590 amdgpu_bo_unreserve(e->robj);
591 }
592 }
593
594 if (list_empty(&need_pages))
595 break;
596
597
598 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
599
600
601 if (!--tries) {
602 r = -EDEADLK;
603 DRM_ERROR("deadlock in %s\n", __func__);
604 goto error_free_pages;
605 }
606
607
608 list_for_each_entry(e, &need_pages, tv.head) {
609 struct ttm_tt *ttm = e->robj->tbo.ttm;
610
611 e->user_pages = kvmalloc_array(ttm->num_pages,
612 sizeof(struct page*),
613 GFP_KERNEL | __GFP_ZERO);
614 if (!e->user_pages) {
615 r = -ENOMEM;
616 DRM_ERROR("calloc failure in %s\n", __func__);
617 goto error_free_pages;
618 }
619
620 r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages);
621 if (r) {
622 DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n");
623 kvfree(e->user_pages);
624 e->user_pages = NULL;
625 goto error_free_pages;
626 }
627 }
628
629
630 list_splice(&need_pages, &p->validated);
631 }
632
633 amdgpu_cs_get_threshold_for_moves(p->adev, &p->bytes_moved_threshold,
634 &p->bytes_moved_vis_threshold);
635 p->bytes_moved = 0;
636 p->bytes_moved_vis = 0;
637 p->evictable = list_last_entry(&p->validated,
638 struct amdgpu_bo_list_entry,
639 tv.head);
640
641 r = amdgpu_vm_validate_pt_bos(p->adev, &fpriv->vm,
642 amdgpu_cs_validate, p);
643 if (r) {
644 DRM_ERROR("amdgpu_vm_validate_pt_bos() failed.\n");
645 goto error_validate;
646 }
647
648 r = amdgpu_cs_list_validate(p, &duplicates);
649 if (r) {
650 DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n");
651 goto error_validate;
652 }
653
654 r = amdgpu_cs_list_validate(p, &p->validated);
655 if (r) {
656 DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n");
657 goto error_validate;
658 }
659
660 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved,
661 p->bytes_moved_vis);
662 if (p->bo_list) {
663 struct amdgpu_bo *gds = p->bo_list->gds_obj;
664 struct amdgpu_bo *gws = p->bo_list->gws_obj;
665 struct amdgpu_bo *oa = p->bo_list->oa_obj;
666 struct amdgpu_vm *vm = &fpriv->vm;
667 unsigned i;
668
669 for (i = 0; i < p->bo_list->num_entries; i++) {
670 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
671
672 p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
673 }
674
675 if (gds) {
676 p->job->gds_base = amdgpu_bo_gpu_offset(gds);
677 p->job->gds_size = amdgpu_bo_size(gds);
678 }
679 if (gws) {
680 p->job->gws_base = amdgpu_bo_gpu_offset(gws);
681 p->job->gws_size = amdgpu_bo_size(gws);
682 }
683 if (oa) {
684 p->job->oa_base = amdgpu_bo_gpu_offset(oa);
685 p->job->oa_size = amdgpu_bo_size(oa);
686 }
687 }
688
689 if (!r && p->uf_entry.robj) {
690 struct amdgpu_bo *uf = p->uf_entry.robj;
691
692 r = amdgpu_ttm_alloc_gart(&uf->tbo);
693 p->job->uf_addr += amdgpu_bo_gpu_offset(uf);
694 }
695
696error_validate:
697 if (r)
698 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
699
700error_free_pages:
701
702 if (p->bo_list) {
703 for (i = p->bo_list->first_userptr;
704 i < p->bo_list->num_entries; ++i) {
705 e = &p->bo_list->array[i];
706
707 if (!e->user_pages)
708 continue;
709
710 release_pages(e->user_pages,
711 e->robj->tbo.ttm->num_pages,
712 false);
713 kvfree(e->user_pages);
714 }
715 }
716
717 return r;
718}
719
720static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
721{
722 struct amdgpu_bo_list_entry *e;
723 int r;
724
725 list_for_each_entry(e, &p->validated, tv.head) {
726 struct reservation_object *resv = e->robj->tbo.resv;
727 r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp,
728 amdgpu_bo_explicit_sync(e->robj));
729
730 if (r)
731 return r;
732 }
733 return 0;
734}
735
736
737
738
739
740
741
742
743
744static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error,
745 bool backoff)
746{
747 unsigned i;
748
749 if (error && backoff)
750 ttm_eu_backoff_reservation(&parser->ticket,
751 &parser->validated);
752
753 for (i = 0; i < parser->num_post_dep_syncobjs; i++)
754 drm_syncobj_put(parser->post_dep_syncobjs[i]);
755 kfree(parser->post_dep_syncobjs);
756
757 dma_fence_put(parser->fence);
758
759 if (parser->ctx) {
760 mutex_unlock(&parser->ctx->lock);
761 amdgpu_ctx_put(parser->ctx);
762 }
763 if (parser->bo_list)
764 amdgpu_bo_list_put(parser->bo_list);
765
766 for (i = 0; i < parser->nchunks; i++)
767 kvfree(parser->chunks[i].kdata);
768 kfree(parser->chunks);
769 if (parser->job)
770 amdgpu_job_free(parser->job);
771 amdgpu_bo_unref(&parser->uf_entry.robj);
772}
773
774static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p)
775{
776 struct amdgpu_device *adev = p->adev;
777 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
778 struct amdgpu_vm *vm = &fpriv->vm;
779 struct amdgpu_bo_va *bo_va;
780 struct amdgpu_bo *bo;
781 int i, r;
782
783 r = amdgpu_vm_clear_freed(adev, vm, NULL);
784 if (r)
785 return r;
786
787 r = amdgpu_vm_bo_update(adev, fpriv->prt_va, false);
788 if (r)
789 return r;
790
791 r = amdgpu_sync_fence(adev, &p->job->sync,
792 fpriv->prt_va->last_pt_update, false);
793 if (r)
794 return r;
795
796 if (amdgpu_sriov_vf(adev)) {
797 struct dma_fence *f;
798
799 bo_va = fpriv->csa_va;
800 BUG_ON(!bo_va);
801 r = amdgpu_vm_bo_update(adev, bo_va, false);
802 if (r)
803 return r;
804
805 f = bo_va->last_pt_update;
806 r = amdgpu_sync_fence(adev, &p->job->sync, f, false);
807 if (r)
808 return r;
809 }
810
811 if (p->bo_list) {
812 for (i = 0; i < p->bo_list->num_entries; i++) {
813 struct dma_fence *f;
814
815
816 bo = p->bo_list->array[i].robj;
817 if (!bo)
818 continue;
819
820 bo_va = p->bo_list->array[i].bo_va;
821 if (bo_va == NULL)
822 continue;
823
824 r = amdgpu_vm_bo_update(adev, bo_va, false);
825 if (r)
826 return r;
827
828 f = bo_va->last_pt_update;
829 r = amdgpu_sync_fence(adev, &p->job->sync, f, false);
830 if (r)
831 return r;
832 }
833
834 }
835
836 r = amdgpu_vm_handle_moved(adev, vm);
837 if (r)
838 return r;
839
840 r = amdgpu_vm_update_directories(adev, vm);
841 if (r)
842 return r;
843
844 r = amdgpu_sync_fence(adev, &p->job->sync, vm->last_update, false);
845 if (r)
846 return r;
847
848 if (amdgpu_vm_debug && p->bo_list) {
849
850 for (i = 0; i < p->bo_list->num_entries; i++) {
851
852 bo = p->bo_list->array[i].robj;
853 if (!bo)
854 continue;
855
856 amdgpu_vm_bo_invalidate(adev, bo, false);
857 }
858 }
859
860 return r;
861}
862
863static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
864 struct amdgpu_cs_parser *p)
865{
866 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
867 struct amdgpu_vm *vm = &fpriv->vm;
868 struct amdgpu_ring *ring = p->job->ring;
869 int r;
870
871
872 if (p->job->ring->funcs->parse_cs) {
873 unsigned i, j;
874
875 for (i = 0, j = 0; i < p->nchunks && j < p->job->num_ibs; i++) {
876 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
877 struct amdgpu_bo_va_mapping *m;
878 struct amdgpu_bo *aobj = NULL;
879 struct amdgpu_cs_chunk *chunk;
880 uint64_t offset, va_start;
881 struct amdgpu_ib *ib;
882 uint8_t *kptr;
883
884 chunk = &p->chunks[i];
885 ib = &p->job->ibs[j];
886 chunk_ib = chunk->kdata;
887
888 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
889 continue;
890
891 va_start = chunk_ib->va_start & AMDGPU_VA_HOLE_MASK;
892 r = amdgpu_cs_find_mapping(p, va_start, &aobj, &m);
893 if (r) {
894 DRM_ERROR("IB va_start is invalid\n");
895 return r;
896 }
897
898 if ((va_start + chunk_ib->ib_bytes) >
899 (m->last + 1) * AMDGPU_GPU_PAGE_SIZE) {
900 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
901 return -EINVAL;
902 }
903
904
905 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
906 if (r) {
907 return r;
908 }
909
910 offset = m->start * AMDGPU_GPU_PAGE_SIZE;
911 kptr += va_start - offset;
912
913 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
914 amdgpu_bo_kunmap(aobj);
915
916 r = amdgpu_ring_parse_cs(ring, p, j);
917 if (r)
918 return r;
919
920 j++;
921 }
922 }
923
924 if (p->job->vm) {
925 p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->root.base.bo);
926
927 r = amdgpu_bo_vm_update_pte(p);
928 if (r)
929 return r;
930
931 r = reservation_object_reserve_shared(vm->root.base.bo->tbo.resv);
932 if (r)
933 return r;
934 }
935
936 return amdgpu_cs_sync_rings(p);
937}
938
939static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
940 struct amdgpu_cs_parser *parser)
941{
942 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
943 struct amdgpu_vm *vm = &fpriv->vm;
944 int i, j;
945 int r, ce_preempt = 0, de_preempt = 0;
946
947 for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
948 struct amdgpu_cs_chunk *chunk;
949 struct amdgpu_ib *ib;
950 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
951 struct amdgpu_ring *ring;
952
953 chunk = &parser->chunks[i];
954 ib = &parser->job->ibs[j];
955 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
956
957 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
958 continue;
959
960 if (chunk_ib->ip_type == AMDGPU_HW_IP_GFX && amdgpu_sriov_vf(adev)) {
961 if (chunk_ib->flags & AMDGPU_IB_FLAG_PREEMPT) {
962 if (chunk_ib->flags & AMDGPU_IB_FLAG_CE)
963 ce_preempt++;
964 else
965 de_preempt++;
966 }
967
968
969 if (ce_preempt > 1 || de_preempt > 1)
970 return -EINVAL;
971 }
972
973 r = amdgpu_queue_mgr_map(adev, &parser->ctx->queue_mgr, chunk_ib->ip_type,
974 chunk_ib->ip_instance, chunk_ib->ring, &ring);
975 if (r)
976 return r;
977
978 if (chunk_ib->flags & AMDGPU_IB_FLAG_PREAMBLE) {
979 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
980 if (!parser->ctx->preamble_presented) {
981 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST;
982 parser->ctx->preamble_presented = true;
983 }
984 }
985
986 if (parser->job->ring && parser->job->ring != ring)
987 return -EINVAL;
988
989 parser->job->ring = ring;
990
991 r = amdgpu_ib_get(adev, vm,
992 ring->funcs->parse_cs ? chunk_ib->ib_bytes : 0,
993 ib);
994 if (r) {
995 DRM_ERROR("Failed to get ib !\n");
996 return r;
997 }
998
999 ib->gpu_addr = chunk_ib->va_start;
1000 ib->length_dw = chunk_ib->ib_bytes / 4;
1001 ib->flags = chunk_ib->flags;
1002
1003 j++;
1004 }
1005
1006
1007 if (parser->job->uf_addr && (
1008 parser->job->ring->funcs->type == AMDGPU_RING_TYPE_UVD ||
1009 parser->job->ring->funcs->type == AMDGPU_RING_TYPE_VCE))
1010 return -EINVAL;
1011
1012 return amdgpu_ctx_wait_prev_fence(parser->ctx, parser->job->ring->idx);
1013}
1014
1015static int amdgpu_cs_process_fence_dep(struct amdgpu_cs_parser *p,
1016 struct amdgpu_cs_chunk *chunk)
1017{
1018 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
1019 unsigned num_deps;
1020 int i, r;
1021 struct drm_amdgpu_cs_chunk_dep *deps;
1022
1023 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
1024 num_deps = chunk->length_dw * 4 /
1025 sizeof(struct drm_amdgpu_cs_chunk_dep);
1026
1027 for (i = 0; i < num_deps; ++i) {
1028 struct amdgpu_ring *ring;
1029 struct amdgpu_ctx *ctx;
1030 struct dma_fence *fence;
1031
1032 ctx = amdgpu_ctx_get(fpriv, deps[i].ctx_id);
1033 if (ctx == NULL)
1034 return -EINVAL;
1035
1036 r = amdgpu_queue_mgr_map(p->adev, &ctx->queue_mgr,
1037 deps[i].ip_type,
1038 deps[i].ip_instance,
1039 deps[i].ring, &ring);
1040 if (r) {
1041 amdgpu_ctx_put(ctx);
1042 return r;
1043 }
1044
1045 fence = amdgpu_ctx_get_fence(ctx, ring,
1046 deps[i].handle);
1047 if (IS_ERR(fence)) {
1048 r = PTR_ERR(fence);
1049 amdgpu_ctx_put(ctx);
1050 return r;
1051 } else if (fence) {
1052 r = amdgpu_sync_fence(p->adev, &p->job->sync, fence,
1053 true);
1054 dma_fence_put(fence);
1055 amdgpu_ctx_put(ctx);
1056 if (r)
1057 return r;
1058 }
1059 }
1060 return 0;
1061}
1062
1063static int amdgpu_syncobj_lookup_and_add_to_sync(struct amdgpu_cs_parser *p,
1064 uint32_t handle)
1065{
1066 int r;
1067 struct dma_fence *fence;
1068 r = drm_syncobj_find_fence(p->filp, handle, &fence);
1069 if (r)
1070 return r;
1071
1072 r = amdgpu_sync_fence(p->adev, &p->job->sync, fence, true);
1073 dma_fence_put(fence);
1074
1075 return r;
1076}
1077
1078static int amdgpu_cs_process_syncobj_in_dep(struct amdgpu_cs_parser *p,
1079 struct amdgpu_cs_chunk *chunk)
1080{
1081 unsigned num_deps;
1082 int i, r;
1083 struct drm_amdgpu_cs_chunk_sem *deps;
1084
1085 deps = (struct drm_amdgpu_cs_chunk_sem *)chunk->kdata;
1086 num_deps = chunk->length_dw * 4 /
1087 sizeof(struct drm_amdgpu_cs_chunk_sem);
1088
1089 for (i = 0; i < num_deps; ++i) {
1090 r = amdgpu_syncobj_lookup_and_add_to_sync(p, deps[i].handle);
1091 if (r)
1092 return r;
1093 }
1094 return 0;
1095}
1096
1097static int amdgpu_cs_process_syncobj_out_dep(struct amdgpu_cs_parser *p,
1098 struct amdgpu_cs_chunk *chunk)
1099{
1100 unsigned num_deps;
1101 int i;
1102 struct drm_amdgpu_cs_chunk_sem *deps;
1103 deps = (struct drm_amdgpu_cs_chunk_sem *)chunk->kdata;
1104 num_deps = chunk->length_dw * 4 /
1105 sizeof(struct drm_amdgpu_cs_chunk_sem);
1106
1107 p->post_dep_syncobjs = kmalloc_array(num_deps,
1108 sizeof(struct drm_syncobj *),
1109 GFP_KERNEL);
1110 p->num_post_dep_syncobjs = 0;
1111
1112 if (!p->post_dep_syncobjs)
1113 return -ENOMEM;
1114
1115 for (i = 0; i < num_deps; ++i) {
1116 p->post_dep_syncobjs[i] = drm_syncobj_find(p->filp, deps[i].handle);
1117 if (!p->post_dep_syncobjs[i])
1118 return -EINVAL;
1119 p->num_post_dep_syncobjs++;
1120 }
1121 return 0;
1122}
1123
1124static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
1125 struct amdgpu_cs_parser *p)
1126{
1127 int i, r;
1128
1129 for (i = 0; i < p->nchunks; ++i) {
1130 struct amdgpu_cs_chunk *chunk;
1131
1132 chunk = &p->chunks[i];
1133
1134 if (chunk->chunk_id == AMDGPU_CHUNK_ID_DEPENDENCIES) {
1135 r = amdgpu_cs_process_fence_dep(p, chunk);
1136 if (r)
1137 return r;
1138 } else if (chunk->chunk_id == AMDGPU_CHUNK_ID_SYNCOBJ_IN) {
1139 r = amdgpu_cs_process_syncobj_in_dep(p, chunk);
1140 if (r)
1141 return r;
1142 } else if (chunk->chunk_id == AMDGPU_CHUNK_ID_SYNCOBJ_OUT) {
1143 r = amdgpu_cs_process_syncobj_out_dep(p, chunk);
1144 if (r)
1145 return r;
1146 }
1147 }
1148
1149 return 0;
1150}
1151
1152static void amdgpu_cs_post_dependencies(struct amdgpu_cs_parser *p)
1153{
1154 int i;
1155
1156 for (i = 0; i < p->num_post_dep_syncobjs; ++i)
1157 drm_syncobj_replace_fence(p->post_dep_syncobjs[i], p->fence);
1158}
1159
1160static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
1161 union drm_amdgpu_cs *cs)
1162{
1163 struct amdgpu_ring *ring = p->job->ring;
1164 struct drm_sched_entity *entity = &p->ctx->rings[ring->idx].entity;
1165 struct amdgpu_job *job;
1166 unsigned i;
1167 uint64_t seq;
1168
1169 int r;
1170
1171 amdgpu_mn_lock(p->mn);
1172 if (p->bo_list) {
1173 for (i = p->bo_list->first_userptr;
1174 i < p->bo_list->num_entries; ++i) {
1175 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
1176
1177 if (amdgpu_ttm_tt_userptr_needs_pages(bo->tbo.ttm)) {
1178 amdgpu_mn_unlock(p->mn);
1179 return -ERESTARTSYS;
1180 }
1181 }
1182 }
1183
1184 job = p->job;
1185 p->job = NULL;
1186
1187 r = drm_sched_job_init(&job->base, &ring->sched, entity, p->filp);
1188 if (r) {
1189 amdgpu_job_free(job);
1190 amdgpu_mn_unlock(p->mn);
1191 return r;
1192 }
1193
1194 job->owner = p->filp;
1195 job->fence_ctx = entity->fence_context;
1196 p->fence = dma_fence_get(&job->base.s_fence->finished);
1197
1198 r = amdgpu_ctx_add_fence(p->ctx, ring, p->fence, &seq);
1199 if (r) {
1200 dma_fence_put(p->fence);
1201 dma_fence_put(&job->base.s_fence->finished);
1202 amdgpu_job_free(job);
1203 amdgpu_mn_unlock(p->mn);
1204 return r;
1205 }
1206
1207 amdgpu_cs_post_dependencies(p);
1208
1209 cs->out.handle = seq;
1210 job->uf_sequence = seq;
1211
1212 amdgpu_job_free_resources(job);
1213 amdgpu_ring_priority_get(job->ring, job->base.s_priority);
1214
1215 trace_amdgpu_cs_ioctl(job);
1216 drm_sched_entity_push_job(&job->base, entity);
1217
1218 ttm_eu_fence_buffer_objects(&p->ticket, &p->validated, p->fence);
1219 amdgpu_mn_unlock(p->mn);
1220
1221 return 0;
1222}
1223
1224int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
1225{
1226 struct amdgpu_device *adev = dev->dev_private;
1227 union drm_amdgpu_cs *cs = data;
1228 struct amdgpu_cs_parser parser = {};
1229 bool reserved_buffers = false;
1230 int i, r;
1231
1232 if (!adev->accel_working)
1233 return -EBUSY;
1234
1235 parser.adev = adev;
1236 parser.filp = filp;
1237
1238 r = amdgpu_cs_parser_init(&parser, data);
1239 if (r) {
1240 DRM_ERROR("Failed to initialize parser !\n");
1241 goto out;
1242 }
1243
1244 r = amdgpu_cs_ib_fill(adev, &parser);
1245 if (r)
1246 goto out;
1247
1248 r = amdgpu_cs_parser_bos(&parser, data);
1249 if (r) {
1250 if (r == -ENOMEM)
1251 DRM_ERROR("Not enough memory for command submission!\n");
1252 else if (r != -ERESTARTSYS)
1253 DRM_ERROR("Failed to process the buffer list %d!\n", r);
1254 goto out;
1255 }
1256
1257 reserved_buffers = true;
1258
1259 r = amdgpu_cs_dependencies(adev, &parser);
1260 if (r) {
1261 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
1262 goto out;
1263 }
1264
1265 for (i = 0; i < parser.job->num_ibs; i++)
1266 trace_amdgpu_cs(&parser, i);
1267
1268 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
1269 if (r)
1270 goto out;
1271
1272 r = amdgpu_cs_submit(&parser, cs);
1273
1274out:
1275 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
1276 return r;
1277}
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1289 struct drm_file *filp)
1290{
1291 union drm_amdgpu_wait_cs *wait = data;
1292 struct amdgpu_device *adev = dev->dev_private;
1293 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
1294 struct amdgpu_ring *ring = NULL;
1295 struct amdgpu_ctx *ctx;
1296 struct dma_fence *fence;
1297 long r;
1298
1299 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1300 if (ctx == NULL)
1301 return -EINVAL;
1302
1303 r = amdgpu_queue_mgr_map(adev, &ctx->queue_mgr,
1304 wait->in.ip_type, wait->in.ip_instance,
1305 wait->in.ring, &ring);
1306 if (r) {
1307 amdgpu_ctx_put(ctx);
1308 return r;
1309 }
1310
1311 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
1312 if (IS_ERR(fence))
1313 r = PTR_ERR(fence);
1314 else if (fence) {
1315 r = dma_fence_wait_timeout(fence, true, timeout);
1316 if (r > 0 && fence->error)
1317 r = fence->error;
1318 dma_fence_put(fence);
1319 } else
1320 r = 1;
1321
1322 amdgpu_ctx_put(ctx);
1323 if (r < 0)
1324 return r;
1325
1326 memset(wait, 0, sizeof(*wait));
1327 wait->out.status = (r == 0);
1328
1329 return 0;
1330}
1331
1332
1333
1334
1335
1336
1337
1338
1339static struct dma_fence *amdgpu_cs_get_fence(struct amdgpu_device *adev,
1340 struct drm_file *filp,
1341 struct drm_amdgpu_fence *user)
1342{
1343 struct amdgpu_ring *ring;
1344 struct amdgpu_ctx *ctx;
1345 struct dma_fence *fence;
1346 int r;
1347
1348 ctx = amdgpu_ctx_get(filp->driver_priv, user->ctx_id);
1349 if (ctx == NULL)
1350 return ERR_PTR(-EINVAL);
1351
1352 r = amdgpu_queue_mgr_map(adev, &ctx->queue_mgr, user->ip_type,
1353 user->ip_instance, user->ring, &ring);
1354 if (r) {
1355 amdgpu_ctx_put(ctx);
1356 return ERR_PTR(r);
1357 }
1358
1359 fence = amdgpu_ctx_get_fence(ctx, ring, user->seq_no);
1360 amdgpu_ctx_put(ctx);
1361
1362 return fence;
1363}
1364
1365int amdgpu_cs_fence_to_handle_ioctl(struct drm_device *dev, void *data,
1366 struct drm_file *filp)
1367{
1368 struct amdgpu_device *adev = dev->dev_private;
1369 union drm_amdgpu_fence_to_handle *info = data;
1370 struct dma_fence *fence;
1371 struct drm_syncobj *syncobj;
1372 struct sync_file *sync_file;
1373 int fd, r;
1374
1375 fence = amdgpu_cs_get_fence(adev, filp, &info->in.fence);
1376 if (IS_ERR(fence))
1377 return PTR_ERR(fence);
1378
1379 switch (info->in.what) {
1380 case AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ:
1381 r = drm_syncobj_create(&syncobj, 0, fence);
1382 dma_fence_put(fence);
1383 if (r)
1384 return r;
1385 r = drm_syncobj_get_handle(filp, syncobj, &info->out.handle);
1386 drm_syncobj_put(syncobj);
1387 return r;
1388
1389 case AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ_FD:
1390 r = drm_syncobj_create(&syncobj, 0, fence);
1391 dma_fence_put(fence);
1392 if (r)
1393 return r;
1394 r = drm_syncobj_get_fd(syncobj, (int*)&info->out.handle);
1395 drm_syncobj_put(syncobj);
1396 return r;
1397
1398 case AMDGPU_FENCE_TO_HANDLE_GET_SYNC_FILE_FD:
1399 fd = get_unused_fd_flags(O_CLOEXEC);
1400 if (fd < 0) {
1401 dma_fence_put(fence);
1402 return fd;
1403 }
1404
1405 sync_file = sync_file_create(fence);
1406 dma_fence_put(fence);
1407 if (!sync_file) {
1408 put_unused_fd(fd);
1409 return -ENOMEM;
1410 }
1411
1412 fd_install(fd, sync_file->file);
1413 info->out.handle = fd;
1414 return 0;
1415
1416 default:
1417 return -EINVAL;
1418 }
1419}
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429static int amdgpu_cs_wait_all_fences(struct amdgpu_device *adev,
1430 struct drm_file *filp,
1431 union drm_amdgpu_wait_fences *wait,
1432 struct drm_amdgpu_fence *fences)
1433{
1434 uint32_t fence_count = wait->in.fence_count;
1435 unsigned int i;
1436 long r = 1;
1437
1438 for (i = 0; i < fence_count; i++) {
1439 struct dma_fence *fence;
1440 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1441
1442 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1443 if (IS_ERR(fence))
1444 return PTR_ERR(fence);
1445 else if (!fence)
1446 continue;
1447
1448 r = dma_fence_wait_timeout(fence, true, timeout);
1449 dma_fence_put(fence);
1450 if (r < 0)
1451 return r;
1452
1453 if (r == 0)
1454 break;
1455
1456 if (fence->error)
1457 return fence->error;
1458 }
1459
1460 memset(wait, 0, sizeof(*wait));
1461 wait->out.status = (r > 0);
1462
1463 return 0;
1464}
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474static int amdgpu_cs_wait_any_fence(struct amdgpu_device *adev,
1475 struct drm_file *filp,
1476 union drm_amdgpu_wait_fences *wait,
1477 struct drm_amdgpu_fence *fences)
1478{
1479 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1480 uint32_t fence_count = wait->in.fence_count;
1481 uint32_t first = ~0;
1482 struct dma_fence **array;
1483 unsigned int i;
1484 long r;
1485
1486
1487 array = kcalloc(fence_count, sizeof(struct dma_fence *), GFP_KERNEL);
1488
1489 if (array == NULL)
1490 return -ENOMEM;
1491
1492 for (i = 0; i < fence_count; i++) {
1493 struct dma_fence *fence;
1494
1495 fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1496 if (IS_ERR(fence)) {
1497 r = PTR_ERR(fence);
1498 goto err_free_fence_array;
1499 } else if (fence) {
1500 array[i] = fence;
1501 } else {
1502 r = 1;
1503 first = i;
1504 goto out;
1505 }
1506 }
1507
1508 r = dma_fence_wait_any_timeout(array, fence_count, true, timeout,
1509 &first);
1510 if (r < 0)
1511 goto err_free_fence_array;
1512
1513out:
1514 memset(wait, 0, sizeof(*wait));
1515 wait->out.status = (r > 0);
1516 wait->out.first_signaled = first;
1517
1518 if (first < fence_count && array[first])
1519 r = array[first]->error;
1520 else
1521 r = 0;
1522
1523err_free_fence_array:
1524 for (i = 0; i < fence_count; i++)
1525 dma_fence_put(array[i]);
1526 kfree(array);
1527
1528 return r;
1529}
1530
1531
1532
1533
1534
1535
1536
1537
1538int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
1539 struct drm_file *filp)
1540{
1541 struct amdgpu_device *adev = dev->dev_private;
1542 union drm_amdgpu_wait_fences *wait = data;
1543 uint32_t fence_count = wait->in.fence_count;
1544 struct drm_amdgpu_fence *fences_user;
1545 struct drm_amdgpu_fence *fences;
1546 int r;
1547
1548
1549 fences = kmalloc_array(fence_count, sizeof(struct drm_amdgpu_fence),
1550 GFP_KERNEL);
1551 if (fences == NULL)
1552 return -ENOMEM;
1553
1554 fences_user = u64_to_user_ptr(wait->in.fences);
1555 if (copy_from_user(fences, fences_user,
1556 sizeof(struct drm_amdgpu_fence) * fence_count)) {
1557 r = -EFAULT;
1558 goto err_free_fences;
1559 }
1560
1561 if (wait->in.wait_all)
1562 r = amdgpu_cs_wait_all_fences(adev, filp, wait, fences);
1563 else
1564 r = amdgpu_cs_wait_any_fence(adev, filp, wait, fences);
1565
1566err_free_fences:
1567 kfree(fences);
1568
1569 return r;
1570}
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583int amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1584 uint64_t addr, struct amdgpu_bo **bo,
1585 struct amdgpu_bo_va_mapping **map)
1586{
1587 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
1588 struct ttm_operation_ctx ctx = { false, false };
1589 struct amdgpu_vm *vm = &fpriv->vm;
1590 struct amdgpu_bo_va_mapping *mapping;
1591 int r;
1592
1593 addr /= AMDGPU_GPU_PAGE_SIZE;
1594
1595 mapping = amdgpu_vm_bo_lookup_mapping(vm, addr);
1596 if (!mapping || !mapping->bo_va || !mapping->bo_va->base.bo)
1597 return -EINVAL;
1598
1599 *bo = mapping->bo_va->base.bo;
1600 *map = mapping;
1601
1602
1603 if (READ_ONCE((*bo)->tbo.resv->lock.ctx) != &parser->ticket)
1604 return -EINVAL;
1605
1606 if (!((*bo)->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)) {
1607 (*bo)->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1608 amdgpu_ttm_placement_from_domain(*bo, (*bo)->allowed_domains);
1609 r = ttm_bo_validate(&(*bo)->tbo, &(*bo)->placement, &ctx);
1610 if (r)
1611 return r;
1612 }
1613
1614 return amdgpu_ttm_alloc_gart(&(*bo)->tbo);
1615}
1616