xref: /linux/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c (revision 953c7f82eb890085c60dbe22578e883d6837c674)
1 /*
2  * Copyright 2008 Jerome Glisse.
3  * All Rights Reserved.
4  *
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:
11  *
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
14  * Software.
15  *
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.
23  *
24  * Authors:
25  *    Jerome Glisse <glisse@freedesktop.org>
26  */
27 #include <linux/pagemap.h>
28 #include <drm/drmP.h>
29 #include <drm/amdgpu_drm.h>
30 #include "amdgpu.h"
31 #include "amdgpu_trace.h"
32 
33 int amdgpu_cs_get_ring(struct amdgpu_device *adev, u32 ip_type,
34 		       u32 ip_instance, u32 ring,
35 		       struct amdgpu_ring **out_ring)
36 {
37 	/* Right now all IPs have only one instance - multiple rings. */
38 	if (ip_instance != 0) {
39 		DRM_ERROR("invalid ip instance: %d\n", ip_instance);
40 		return -EINVAL;
41 	}
42 
43 	switch (ip_type) {
44 	default:
45 		DRM_ERROR("unknown ip type: %d\n", ip_type);
46 		return -EINVAL;
47 	case AMDGPU_HW_IP_GFX:
48 		if (ring < adev->gfx.num_gfx_rings) {
49 			*out_ring = &adev->gfx.gfx_ring[ring];
50 		} else {
51 			DRM_ERROR("only %d gfx rings are supported now\n",
52 				  adev->gfx.num_gfx_rings);
53 			return -EINVAL;
54 		}
55 		break;
56 	case AMDGPU_HW_IP_COMPUTE:
57 		if (ring < adev->gfx.num_compute_rings) {
58 			*out_ring = &adev->gfx.compute_ring[ring];
59 		} else {
60 			DRM_ERROR("only %d compute rings are supported now\n",
61 				  adev->gfx.num_compute_rings);
62 			return -EINVAL;
63 		}
64 		break;
65 	case AMDGPU_HW_IP_DMA:
66 		if (ring < adev->sdma.num_instances) {
67 			*out_ring = &adev->sdma.instance[ring].ring;
68 		} else {
69 			DRM_ERROR("only %d SDMA rings are supported\n",
70 				  adev->sdma.num_instances);
71 			return -EINVAL;
72 		}
73 		break;
74 	case AMDGPU_HW_IP_UVD:
75 		*out_ring = &adev->uvd.ring;
76 		break;
77 	case AMDGPU_HW_IP_VCE:
78 		if (ring < adev->vce.num_rings){
79 			*out_ring = &adev->vce.ring[ring];
80 		} else {
81 			DRM_ERROR("only %d VCE rings are supported\n", adev->vce.num_rings);
82 			return -EINVAL;
83 		}
84 		break;
85 	}
86 	return 0;
87 }
88 
89 static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p,
90 				      struct drm_amdgpu_cs_chunk_fence *data,
91 				      uint32_t *offset)
92 {
93 	struct drm_gem_object *gobj;
94 	unsigned long size;
95 
96 	gobj = drm_gem_object_lookup(p->filp, data->handle);
97 	if (gobj == NULL)
98 		return -EINVAL;
99 
100 	p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
101 	p->uf_entry.priority = 0;
102 	p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
103 	p->uf_entry.tv.shared = true;
104 	p->uf_entry.user_pages = NULL;
105 
106 	size = amdgpu_bo_size(p->uf_entry.robj);
107 	if (size != PAGE_SIZE || (data->offset + 8) > size)
108 		return -EINVAL;
109 
110 	*offset = data->offset;
111 
112 	drm_gem_object_unreference_unlocked(gobj);
113 
114 	if (amdgpu_ttm_tt_get_usermm(p->uf_entry.robj->tbo.ttm)) {
115 		amdgpu_bo_unref(&p->uf_entry.robj);
116 		return -EINVAL;
117 	}
118 
119 	return 0;
120 }
121 
122 int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
123 {
124 	struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
125 	struct amdgpu_vm *vm = &fpriv->vm;
126 	union drm_amdgpu_cs *cs = data;
127 	uint64_t *chunk_array_user;
128 	uint64_t *chunk_array;
129 	unsigned size, num_ibs = 0;
130 	uint32_t uf_offset = 0;
131 	int i;
132 	int ret;
133 
134 	if (cs->in.num_chunks == 0)
135 		return 0;
136 
137 	chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
138 	if (!chunk_array)
139 		return -ENOMEM;
140 
141 	p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
142 	if (!p->ctx) {
143 		ret = -EINVAL;
144 		goto free_chunk;
145 	}
146 
147 	/* get chunks */
148 	chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks);
149 	if (copy_from_user(chunk_array, chunk_array_user,
150 			   sizeof(uint64_t)*cs->in.num_chunks)) {
151 		ret = -EFAULT;
152 		goto put_ctx;
153 	}
154 
155 	p->nchunks = cs->in.num_chunks;
156 	p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
157 			    GFP_KERNEL);
158 	if (!p->chunks) {
159 		ret = -ENOMEM;
160 		goto put_ctx;
161 	}
162 
163 	for (i = 0; i < p->nchunks; i++) {
164 		struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
165 		struct drm_amdgpu_cs_chunk user_chunk;
166 		uint32_t __user *cdata;
167 
168 		chunk_ptr = (void __user *)(unsigned long)chunk_array[i];
169 		if (copy_from_user(&user_chunk, chunk_ptr,
170 				       sizeof(struct drm_amdgpu_cs_chunk))) {
171 			ret = -EFAULT;
172 			i--;
173 			goto free_partial_kdata;
174 		}
175 		p->chunks[i].chunk_id = user_chunk.chunk_id;
176 		p->chunks[i].length_dw = user_chunk.length_dw;
177 
178 		size = p->chunks[i].length_dw;
179 		cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
180 
181 		p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
182 		if (p->chunks[i].kdata == NULL) {
183 			ret = -ENOMEM;
184 			i--;
185 			goto free_partial_kdata;
186 		}
187 		size *= sizeof(uint32_t);
188 		if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
189 			ret = -EFAULT;
190 			goto free_partial_kdata;
191 		}
192 
193 		switch (p->chunks[i].chunk_id) {
194 		case AMDGPU_CHUNK_ID_IB:
195 			++num_ibs;
196 			break;
197 
198 		case AMDGPU_CHUNK_ID_FENCE:
199 			size = sizeof(struct drm_amdgpu_cs_chunk_fence);
200 			if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
201 				ret = -EINVAL;
202 				goto free_partial_kdata;
203 			}
204 
205 			ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata,
206 							 &uf_offset);
207 			if (ret)
208 				goto free_partial_kdata;
209 
210 			break;
211 
212 		case AMDGPU_CHUNK_ID_DEPENDENCIES:
213 			break;
214 
215 		default:
216 			ret = -EINVAL;
217 			goto free_partial_kdata;
218 		}
219 	}
220 
221 	ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm);
222 	if (ret)
223 		goto free_all_kdata;
224 
225 	if (p->uf_entry.robj)
226 		p->job->uf_addr = uf_offset;
227 	kfree(chunk_array);
228 	return 0;
229 
230 free_all_kdata:
231 	i = p->nchunks - 1;
232 free_partial_kdata:
233 	for (; i >= 0; i--)
234 		drm_free_large(p->chunks[i].kdata);
235 	kfree(p->chunks);
236 put_ctx:
237 	amdgpu_ctx_put(p->ctx);
238 free_chunk:
239 	kfree(chunk_array);
240 
241 	return ret;
242 }
243 
244 /* Convert microseconds to bytes. */
245 static u64 us_to_bytes(struct amdgpu_device *adev, s64 us)
246 {
247 	if (us <= 0 || !adev->mm_stats.log2_max_MBps)
248 		return 0;
249 
250 	/* Since accum_us is incremented by a million per second, just
251 	 * multiply it by the number of MB/s to get the number of bytes.
252 	 */
253 	return us << adev->mm_stats.log2_max_MBps;
254 }
255 
256 static s64 bytes_to_us(struct amdgpu_device *adev, u64 bytes)
257 {
258 	if (!adev->mm_stats.log2_max_MBps)
259 		return 0;
260 
261 	return bytes >> adev->mm_stats.log2_max_MBps;
262 }
263 
264 /* Returns how many bytes TTM can move right now. If no bytes can be moved,
265  * it returns 0. If it returns non-zero, it's OK to move at least one buffer,
266  * which means it can go over the threshold once. If that happens, the driver
267  * will be in debt and no other buffer migrations can be done until that debt
268  * is repaid.
269  *
270  * This approach allows moving a buffer of any size (it's important to allow
271  * that).
272  *
273  * The currency is simply time in microseconds and it increases as the clock
274  * ticks. The accumulated microseconds (us) are converted to bytes and
275  * returned.
276  */
277 static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
278 {
279 	s64 time_us, increment_us;
280 	u64 max_bytes;
281 	u64 free_vram, total_vram, used_vram;
282 
283 	/* Allow a maximum of 200 accumulated ms. This is basically per-IB
284 	 * throttling.
285 	 *
286 	 * It means that in order to get full max MBps, at least 5 IBs per
287 	 * second must be submitted and not more than 200ms apart from each
288 	 * other.
289 	 */
290 	const s64 us_upper_bound = 200000;
291 
292 	if (!adev->mm_stats.log2_max_MBps)
293 		return 0;
294 
295 	total_vram = adev->mc.real_vram_size - adev->vram_pin_size;
296 	used_vram = atomic64_read(&adev->vram_usage);
297 	free_vram = used_vram >= total_vram ? 0 : total_vram - used_vram;
298 
299 	spin_lock(&adev->mm_stats.lock);
300 
301 	/* Increase the amount of accumulated us. */
302 	time_us = ktime_to_us(ktime_get());
303 	increment_us = time_us - adev->mm_stats.last_update_us;
304 	adev->mm_stats.last_update_us = time_us;
305 	adev->mm_stats.accum_us = min(adev->mm_stats.accum_us + increment_us,
306                                       us_upper_bound);
307 
308 	/* This prevents the short period of low performance when the VRAM
309 	 * usage is low and the driver is in debt or doesn't have enough
310 	 * accumulated us to fill VRAM quickly.
311 	 *
312 	 * The situation can occur in these cases:
313 	 * - a lot of VRAM is freed by userspace
314 	 * - the presence of a big buffer causes a lot of evictions
315 	 *   (solution: split buffers into smaller ones)
316 	 *
317 	 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting
318 	 * accum_us to a positive number.
319 	 */
320 	if (free_vram >= 128 * 1024 * 1024 || free_vram >= total_vram / 8) {
321 		s64 min_us;
322 
323 		/* Be more aggresive on dGPUs. Try to fill a portion of free
324 		 * VRAM now.
325 		 */
326 		if (!(adev->flags & AMD_IS_APU))
327 			min_us = bytes_to_us(adev, free_vram / 4);
328 		else
329 			min_us = 0; /* Reset accum_us on APUs. */
330 
331 		adev->mm_stats.accum_us = max(min_us, adev->mm_stats.accum_us);
332 	}
333 
334 	/* This returns 0 if the driver is in debt to disallow (optional)
335 	 * buffer moves.
336 	 */
337 	max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
338 
339 	spin_unlock(&adev->mm_stats.lock);
340 	return max_bytes;
341 }
342 
343 /* Report how many bytes have really been moved for the last command
344  * submission. This can result in a debt that can stop buffer migrations
345  * temporarily.
346  */
347 void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev, u64 num_bytes)
348 {
349 	spin_lock(&adev->mm_stats.lock);
350 	adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
351 	spin_unlock(&adev->mm_stats.lock);
352 }
353 
354 static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
355 				 struct amdgpu_bo *bo)
356 {
357 	struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
358 	u64 initial_bytes_moved;
359 	uint32_t domain;
360 	int r;
361 
362 	if (bo->pin_count)
363 		return 0;
364 
365 	/* Don't move this buffer if we have depleted our allowance
366 	 * to move it. Don't move anything if the threshold is zero.
367 	 */
368 	if (p->bytes_moved < p->bytes_moved_threshold)
369 		domain = bo->prefered_domains;
370 	else
371 		domain = bo->allowed_domains;
372 
373 retry:
374 	amdgpu_ttm_placement_from_domain(bo, domain);
375 	initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
376 	r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
377 	p->bytes_moved += atomic64_read(&adev->num_bytes_moved) -
378 		initial_bytes_moved;
379 
380 	if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
381 		domain = bo->allowed_domains;
382 		goto retry;
383 	}
384 
385 	return r;
386 }
387 
388 /* Last resort, try to evict something from the current working set */
389 static bool amdgpu_cs_try_evict(struct amdgpu_cs_parser *p,
390 				struct amdgpu_bo *validated)
391 {
392 	uint32_t domain = validated->allowed_domains;
393 	int r;
394 
395 	if (!p->evictable)
396 		return false;
397 
398 	for (;&p->evictable->tv.head != &p->validated;
399 	     p->evictable = list_prev_entry(p->evictable, tv.head)) {
400 
401 		struct amdgpu_bo_list_entry *candidate = p->evictable;
402 		struct amdgpu_bo *bo = candidate->robj;
403 		struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
404 		u64 initial_bytes_moved;
405 		uint32_t other;
406 
407 		/* If we reached our current BO we can forget it */
408 		if (candidate->robj == validated)
409 			break;
410 
411 		other = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
412 
413 		/* Check if this BO is in one of the domains we need space for */
414 		if (!(other & domain))
415 			continue;
416 
417 		/* Check if we can move this BO somewhere else */
418 		other = bo->allowed_domains & ~domain;
419 		if (!other)
420 			continue;
421 
422 		/* Good we can try to move this BO somewhere else */
423 		amdgpu_ttm_placement_from_domain(bo, other);
424 		initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
425 		r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
426 		p->bytes_moved += atomic64_read(&adev->num_bytes_moved) -
427 			initial_bytes_moved;
428 
429 		if (unlikely(r))
430 			break;
431 
432 		p->evictable = list_prev_entry(p->evictable, tv.head);
433 		list_move(&candidate->tv.head, &p->validated);
434 
435 		return true;
436 	}
437 
438 	return false;
439 }
440 
441 static int amdgpu_cs_validate(void *param, struct amdgpu_bo *bo)
442 {
443 	struct amdgpu_cs_parser *p = param;
444 	int r;
445 
446 	do {
447 		r = amdgpu_cs_bo_validate(p, bo);
448 	} while (r == -ENOMEM && amdgpu_cs_try_evict(p, bo));
449 	if (r)
450 		return r;
451 
452 	if (bo->shadow)
453 		r = amdgpu_cs_bo_validate(p, bo->shadow);
454 
455 	return r;
456 }
457 
458 static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
459 			    struct list_head *validated)
460 {
461 	struct amdgpu_bo_list_entry *lobj;
462 	int r;
463 
464 	list_for_each_entry(lobj, validated, tv.head) {
465 		struct amdgpu_bo *bo = lobj->robj;
466 		bool binding_userptr = false;
467 		struct mm_struct *usermm;
468 
469 		usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
470 		if (usermm && usermm != current->mm)
471 			return -EPERM;
472 
473 		/* Check if we have user pages and nobody bound the BO already */
474 		if (lobj->user_pages && bo->tbo.ttm->state != tt_bound) {
475 			size_t size = sizeof(struct page *);
476 
477 			size *= bo->tbo.ttm->num_pages;
478 			memcpy(bo->tbo.ttm->pages, lobj->user_pages, size);
479 			binding_userptr = true;
480 		}
481 
482 		if (p->evictable == lobj)
483 			p->evictable = NULL;
484 
485 		r = amdgpu_cs_validate(p, bo);
486 		if (r)
487 			return r;
488 
489 		if (binding_userptr) {
490 			drm_free_large(lobj->user_pages);
491 			lobj->user_pages = NULL;
492 		}
493 	}
494 	return 0;
495 }
496 
497 static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
498 				union drm_amdgpu_cs *cs)
499 {
500 	struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
501 	struct amdgpu_bo_list_entry *e;
502 	struct list_head duplicates;
503 	bool need_mmap_lock = false;
504 	unsigned i, tries = 10;
505 	int r;
506 
507 	INIT_LIST_HEAD(&p->validated);
508 
509 	p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
510 	if (p->bo_list) {
511 		need_mmap_lock = p->bo_list->first_userptr !=
512 			p->bo_list->num_entries;
513 		amdgpu_bo_list_get_list(p->bo_list, &p->validated);
514 	}
515 
516 	INIT_LIST_HEAD(&duplicates);
517 	amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
518 
519 	if (p->uf_entry.robj)
520 		list_add(&p->uf_entry.tv.head, &p->validated);
521 
522 	if (need_mmap_lock)
523 		down_read(&current->mm->mmap_sem);
524 
525 	while (1) {
526 		struct list_head need_pages;
527 		unsigned i;
528 
529 		r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
530 					   &duplicates);
531 		if (unlikely(r != 0)) {
532 			if (r != -ERESTARTSYS)
533 				DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
534 			goto error_free_pages;
535 		}
536 
537 		/* Without a BO list we don't have userptr BOs */
538 		if (!p->bo_list)
539 			break;
540 
541 		INIT_LIST_HEAD(&need_pages);
542 		for (i = p->bo_list->first_userptr;
543 		     i < p->bo_list->num_entries; ++i) {
544 
545 			e = &p->bo_list->array[i];
546 
547 			if (amdgpu_ttm_tt_userptr_invalidated(e->robj->tbo.ttm,
548 				 &e->user_invalidated) && e->user_pages) {
549 
550 				/* We acquired a page array, but somebody
551 				 * invalidated it. Free it an try again
552 				 */
553 				release_pages(e->user_pages,
554 					      e->robj->tbo.ttm->num_pages,
555 					      false);
556 				drm_free_large(e->user_pages);
557 				e->user_pages = NULL;
558 			}
559 
560 			if (e->robj->tbo.ttm->state != tt_bound &&
561 			    !e->user_pages) {
562 				list_del(&e->tv.head);
563 				list_add(&e->tv.head, &need_pages);
564 
565 				amdgpu_bo_unreserve(e->robj);
566 			}
567 		}
568 
569 		if (list_empty(&need_pages))
570 			break;
571 
572 		/* Unreserve everything again. */
573 		ttm_eu_backoff_reservation(&p->ticket, &p->validated);
574 
575 		/* We tried too many times, just abort */
576 		if (!--tries) {
577 			r = -EDEADLK;
578 			DRM_ERROR("deadlock in %s\n", __func__);
579 			goto error_free_pages;
580 		}
581 
582 		/* Fill the page arrays for all useptrs. */
583 		list_for_each_entry(e, &need_pages, tv.head) {
584 			struct ttm_tt *ttm = e->robj->tbo.ttm;
585 
586 			e->user_pages = drm_calloc_large(ttm->num_pages,
587 							 sizeof(struct page*));
588 			if (!e->user_pages) {
589 				r = -ENOMEM;
590 				DRM_ERROR("calloc failure in %s\n", __func__);
591 				goto error_free_pages;
592 			}
593 
594 			r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages);
595 			if (r) {
596 				DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n");
597 				drm_free_large(e->user_pages);
598 				e->user_pages = NULL;
599 				goto error_free_pages;
600 			}
601 		}
602 
603 		/* And try again. */
604 		list_splice(&need_pages, &p->validated);
605 	}
606 
607 	p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
608 	p->bytes_moved = 0;
609 	p->evictable = list_last_entry(&p->validated,
610 				       struct amdgpu_bo_list_entry,
611 				       tv.head);
612 
613 	r = amdgpu_vm_validate_pt_bos(p->adev, &fpriv->vm,
614 				      amdgpu_cs_validate, p);
615 	if (r) {
616 		DRM_ERROR("amdgpu_vm_validate_pt_bos() failed.\n");
617 		goto error_validate;
618 	}
619 
620 	r = amdgpu_cs_list_validate(p, &duplicates);
621 	if (r) {
622 		DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n");
623 		goto error_validate;
624 	}
625 
626 	r = amdgpu_cs_list_validate(p, &p->validated);
627 	if (r) {
628 		DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n");
629 		goto error_validate;
630 	}
631 
632 	amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved);
633 
634 	fpriv->vm.last_eviction_counter =
635 		atomic64_read(&p->adev->num_evictions);
636 
637 	if (p->bo_list) {
638 		struct amdgpu_bo *gds = p->bo_list->gds_obj;
639 		struct amdgpu_bo *gws = p->bo_list->gws_obj;
640 		struct amdgpu_bo *oa = p->bo_list->oa_obj;
641 		struct amdgpu_vm *vm = &fpriv->vm;
642 		unsigned i;
643 
644 		for (i = 0; i < p->bo_list->num_entries; i++) {
645 			struct amdgpu_bo *bo = p->bo_list->array[i].robj;
646 
647 			p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
648 		}
649 
650 		if (gds) {
651 			p->job->gds_base = amdgpu_bo_gpu_offset(gds);
652 			p->job->gds_size = amdgpu_bo_size(gds);
653 		}
654 		if (gws) {
655 			p->job->gws_base = amdgpu_bo_gpu_offset(gws);
656 			p->job->gws_size = amdgpu_bo_size(gws);
657 		}
658 		if (oa) {
659 			p->job->oa_base = amdgpu_bo_gpu_offset(oa);
660 			p->job->oa_size = amdgpu_bo_size(oa);
661 		}
662 	}
663 
664 	if (!r && p->uf_entry.robj) {
665 		struct amdgpu_bo *uf = p->uf_entry.robj;
666 
667 		r = amdgpu_ttm_bind(&uf->tbo, &uf->tbo.mem);
668 		p->job->uf_addr += amdgpu_bo_gpu_offset(uf);
669 	}
670 
671 error_validate:
672 	if (r) {
673 		amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
674 		ttm_eu_backoff_reservation(&p->ticket, &p->validated);
675 	}
676 
677 error_free_pages:
678 
679 	if (need_mmap_lock)
680 		up_read(&current->mm->mmap_sem);
681 
682 	if (p->bo_list) {
683 		for (i = p->bo_list->first_userptr;
684 		     i < p->bo_list->num_entries; ++i) {
685 			e = &p->bo_list->array[i];
686 
687 			if (!e->user_pages)
688 				continue;
689 
690 			release_pages(e->user_pages,
691 				      e->robj->tbo.ttm->num_pages,
692 				      false);
693 			drm_free_large(e->user_pages);
694 		}
695 	}
696 
697 	return r;
698 }
699 
700 static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
701 {
702 	struct amdgpu_bo_list_entry *e;
703 	int r;
704 
705 	list_for_each_entry(e, &p->validated, tv.head) {
706 		struct reservation_object *resv = e->robj->tbo.resv;
707 		r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp);
708 
709 		if (r)
710 			return r;
711 	}
712 	return 0;
713 }
714 
715 /**
716  * cs_parser_fini() - clean parser states
717  * @parser:	parser structure holding parsing context.
718  * @error:	error number
719  *
720  * If error is set than unvalidate buffer, otherwise just free memory
721  * used by parsing context.
722  **/
723 static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
724 {
725 	struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
726 	unsigned i;
727 
728 	if (!error) {
729 		amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
730 
731 		ttm_eu_fence_buffer_objects(&parser->ticket,
732 					    &parser->validated,
733 					    parser->fence);
734 	} else if (backoff) {
735 		ttm_eu_backoff_reservation(&parser->ticket,
736 					   &parser->validated);
737 	}
738 	dma_fence_put(parser->fence);
739 
740 	if (parser->ctx)
741 		amdgpu_ctx_put(parser->ctx);
742 	if (parser->bo_list)
743 		amdgpu_bo_list_put(parser->bo_list);
744 
745 	for (i = 0; i < parser->nchunks; i++)
746 		drm_free_large(parser->chunks[i].kdata);
747 	kfree(parser->chunks);
748 	if (parser->job)
749 		amdgpu_job_free(parser->job);
750 	amdgpu_bo_unref(&parser->uf_entry.robj);
751 }
752 
753 static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
754 				   struct amdgpu_vm *vm)
755 {
756 	struct amdgpu_device *adev = p->adev;
757 	struct amdgpu_bo_va *bo_va;
758 	struct amdgpu_bo *bo;
759 	int i, r;
760 
761 	r = amdgpu_vm_update_page_directory(adev, vm);
762 	if (r)
763 		return r;
764 
765 	r = amdgpu_sync_fence(adev, &p->job->sync, vm->page_directory_fence);
766 	if (r)
767 		return r;
768 
769 	r = amdgpu_vm_clear_freed(adev, vm);
770 	if (r)
771 		return r;
772 
773 	if (amdgpu_sriov_vf(adev)) {
774 		struct dma_fence *f;
775 		bo_va = vm->csa_bo_va;
776 		BUG_ON(!bo_va);
777 		r = amdgpu_vm_bo_update(adev, bo_va, false);
778 		if (r)
779 			return r;
780 
781 		f = bo_va->last_pt_update;
782 		r = amdgpu_sync_fence(adev, &p->job->sync, f);
783 		if (r)
784 			return r;
785 	}
786 
787 	if (p->bo_list) {
788 		for (i = 0; i < p->bo_list->num_entries; i++) {
789 			struct dma_fence *f;
790 
791 			/* ignore duplicates */
792 			bo = p->bo_list->array[i].robj;
793 			if (!bo)
794 				continue;
795 
796 			bo_va = p->bo_list->array[i].bo_va;
797 			if (bo_va == NULL)
798 				continue;
799 
800 			r = amdgpu_vm_bo_update(adev, bo_va, false);
801 			if (r)
802 				return r;
803 
804 			f = bo_va->last_pt_update;
805 			r = amdgpu_sync_fence(adev, &p->job->sync, f);
806 			if (r)
807 				return r;
808 		}
809 
810 	}
811 
812 	r = amdgpu_vm_clear_invalids(adev, vm, &p->job->sync);
813 
814 	if (amdgpu_vm_debug && p->bo_list) {
815 		/* Invalidate all BOs to test for userspace bugs */
816 		for (i = 0; i < p->bo_list->num_entries; i++) {
817 			/* ignore duplicates */
818 			bo = p->bo_list->array[i].robj;
819 			if (!bo)
820 				continue;
821 
822 			amdgpu_vm_bo_invalidate(adev, bo);
823 		}
824 	}
825 
826 	return r;
827 }
828 
829 static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
830 				 struct amdgpu_cs_parser *p)
831 {
832 	struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
833 	struct amdgpu_vm *vm = &fpriv->vm;
834 	struct amdgpu_ring *ring = p->job->ring;
835 	int i, r;
836 
837 	/* Only for UVD/VCE VM emulation */
838 	if (ring->funcs->parse_cs) {
839 		for (i = 0; i < p->job->num_ibs; i++) {
840 			r = amdgpu_ring_parse_cs(ring, p, i);
841 			if (r)
842 				return r;
843 		}
844 	}
845 
846 	if (p->job->vm) {
847 		p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
848 
849 		r = amdgpu_bo_vm_update_pte(p, vm);
850 		if (r)
851 			return r;
852 	}
853 
854 	return amdgpu_cs_sync_rings(p);
855 }
856 
857 static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
858 			     struct amdgpu_cs_parser *parser)
859 {
860 	struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
861 	struct amdgpu_vm *vm = &fpriv->vm;
862 	int i, j;
863 	int r;
864 
865 	for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
866 		struct amdgpu_cs_chunk *chunk;
867 		struct amdgpu_ib *ib;
868 		struct drm_amdgpu_cs_chunk_ib *chunk_ib;
869 		struct amdgpu_ring *ring;
870 
871 		chunk = &parser->chunks[i];
872 		ib = &parser->job->ibs[j];
873 		chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
874 
875 		if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
876 			continue;
877 
878 		r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
879 				       chunk_ib->ip_instance, chunk_ib->ring,
880 				       &ring);
881 		if (r)
882 			return r;
883 
884 		if (ib->flags & AMDGPU_IB_FLAG_PREAMBLE) {
885 			parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
886 			if (!parser->ctx->preamble_presented) {
887 				parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST;
888 				parser->ctx->preamble_presented = true;
889 			}
890 		}
891 
892 		if (parser->job->ring && parser->job->ring != ring)
893 			return -EINVAL;
894 
895 		parser->job->ring = ring;
896 
897 		if (ring->funcs->parse_cs) {
898 			struct amdgpu_bo_va_mapping *m;
899 			struct amdgpu_bo *aobj = NULL;
900 			uint64_t offset;
901 			uint8_t *kptr;
902 
903 			m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
904 						   &aobj);
905 			if (!aobj) {
906 				DRM_ERROR("IB va_start is invalid\n");
907 				return -EINVAL;
908 			}
909 
910 			if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
911 			    (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
912 				DRM_ERROR("IB va_start+ib_bytes is invalid\n");
913 				return -EINVAL;
914 			}
915 
916 			/* the IB should be reserved at this point */
917 			r = amdgpu_bo_kmap(aobj, (void **)&kptr);
918 			if (r) {
919 				return r;
920 			}
921 
922 			offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
923 			kptr += chunk_ib->va_start - offset;
924 
925 			r =  amdgpu_ib_get(adev, vm, chunk_ib->ib_bytes, ib);
926 			if (r) {
927 				DRM_ERROR("Failed to get ib !\n");
928 				return r;
929 			}
930 
931 			memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
932 			amdgpu_bo_kunmap(aobj);
933 		} else {
934 			r =  amdgpu_ib_get(adev, vm, 0, ib);
935 			if (r) {
936 				DRM_ERROR("Failed to get ib !\n");
937 				return r;
938 			}
939 
940 		}
941 
942 		ib->gpu_addr = chunk_ib->va_start;
943 		ib->length_dw = chunk_ib->ib_bytes / 4;
944 		ib->flags = chunk_ib->flags;
945 		j++;
946 	}
947 
948 	/* UVD & VCE fw doesn't support user fences */
949 	if (parser->job->uf_addr && (
950 	    parser->job->ring->funcs->type == AMDGPU_RING_TYPE_UVD ||
951 	    parser->job->ring->funcs->type == AMDGPU_RING_TYPE_VCE))
952 		return -EINVAL;
953 
954 	return 0;
955 }
956 
957 static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
958 				  struct amdgpu_cs_parser *p)
959 {
960 	struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
961 	int i, j, r;
962 
963 	for (i = 0; i < p->nchunks; ++i) {
964 		struct drm_amdgpu_cs_chunk_dep *deps;
965 		struct amdgpu_cs_chunk *chunk;
966 		unsigned num_deps;
967 
968 		chunk = &p->chunks[i];
969 
970 		if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
971 			continue;
972 
973 		deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
974 		num_deps = chunk->length_dw * 4 /
975 			sizeof(struct drm_amdgpu_cs_chunk_dep);
976 
977 		for (j = 0; j < num_deps; ++j) {
978 			struct amdgpu_ring *ring;
979 			struct amdgpu_ctx *ctx;
980 			struct dma_fence *fence;
981 
982 			r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
983 					       deps[j].ip_instance,
984 					       deps[j].ring, &ring);
985 			if (r)
986 				return r;
987 
988 			ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
989 			if (ctx == NULL)
990 				return -EINVAL;
991 
992 			fence = amdgpu_ctx_get_fence(ctx, ring,
993 						     deps[j].handle);
994 			if (IS_ERR(fence)) {
995 				r = PTR_ERR(fence);
996 				amdgpu_ctx_put(ctx);
997 				return r;
998 
999 			} else if (fence) {
1000 				r = amdgpu_sync_fence(adev, &p->job->sync,
1001 						      fence);
1002 				dma_fence_put(fence);
1003 				amdgpu_ctx_put(ctx);
1004 				if (r)
1005 					return r;
1006 			}
1007 		}
1008 	}
1009 
1010 	return 0;
1011 }
1012 
1013 static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
1014 			    union drm_amdgpu_cs *cs)
1015 {
1016 	struct amdgpu_ring *ring = p->job->ring;
1017 	struct amd_sched_entity *entity = &p->ctx->rings[ring->idx].entity;
1018 	struct amdgpu_job *job;
1019 	int r;
1020 
1021 	job = p->job;
1022 	p->job = NULL;
1023 
1024 	r = amd_sched_job_init(&job->base, &ring->sched, entity, p->filp);
1025 	if (r) {
1026 		amdgpu_job_free(job);
1027 		return r;
1028 	}
1029 
1030 	job->owner = p->filp;
1031 	job->fence_ctx = entity->fence_context;
1032 	p->fence = dma_fence_get(&job->base.s_fence->finished);
1033 	cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring, p->fence);
1034 	job->uf_sequence = cs->out.handle;
1035 	amdgpu_job_free_resources(job);
1036 
1037 	trace_amdgpu_cs_ioctl(job);
1038 	amd_sched_entity_push_job(&job->base);
1039 
1040 	return 0;
1041 }
1042 
1043 int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
1044 {
1045 	struct amdgpu_device *adev = dev->dev_private;
1046 	union drm_amdgpu_cs *cs = data;
1047 	struct amdgpu_cs_parser parser = {};
1048 	bool reserved_buffers = false;
1049 	int i, r;
1050 
1051 	if (!adev->accel_working)
1052 		return -EBUSY;
1053 
1054 	parser.adev = adev;
1055 	parser.filp = filp;
1056 
1057 	r = amdgpu_cs_parser_init(&parser, data);
1058 	if (r) {
1059 		DRM_ERROR("Failed to initialize parser !\n");
1060 		goto out;
1061 	}
1062 
1063 	r = amdgpu_cs_parser_bos(&parser, data);
1064 	if (r) {
1065 		if (r == -ENOMEM)
1066 			DRM_ERROR("Not enough memory for command submission!\n");
1067 		else if (r != -ERESTARTSYS)
1068 			DRM_ERROR("Failed to process the buffer list %d!\n", r);
1069 		goto out;
1070 	}
1071 
1072 	reserved_buffers = true;
1073 	r = amdgpu_cs_ib_fill(adev, &parser);
1074 	if (r)
1075 		goto out;
1076 
1077 	r = amdgpu_cs_dependencies(adev, &parser);
1078 	if (r) {
1079 		DRM_ERROR("Failed in the dependencies handling %d!\n", r);
1080 		goto out;
1081 	}
1082 
1083 	for (i = 0; i < parser.job->num_ibs; i++)
1084 		trace_amdgpu_cs(&parser, i);
1085 
1086 	r = amdgpu_cs_ib_vm_chunk(adev, &parser);
1087 	if (r)
1088 		goto out;
1089 
1090 	r = amdgpu_cs_submit(&parser, cs);
1091 
1092 out:
1093 	amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
1094 	return r;
1095 }
1096 
1097 /**
1098  * amdgpu_cs_wait_ioctl - wait for a command submission to finish
1099  *
1100  * @dev: drm device
1101  * @data: data from userspace
1102  * @filp: file private
1103  *
1104  * Wait for the command submission identified by handle to finish.
1105  */
1106 int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1107 			 struct drm_file *filp)
1108 {
1109 	union drm_amdgpu_wait_cs *wait = data;
1110 	struct amdgpu_device *adev = dev->dev_private;
1111 	unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
1112 	struct amdgpu_ring *ring = NULL;
1113 	struct amdgpu_ctx *ctx;
1114 	struct dma_fence *fence;
1115 	long r;
1116 
1117 	r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
1118 			       wait->in.ring, &ring);
1119 	if (r)
1120 		return r;
1121 
1122 	ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1123 	if (ctx == NULL)
1124 		return -EINVAL;
1125 
1126 	fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
1127 	if (IS_ERR(fence))
1128 		r = PTR_ERR(fence);
1129 	else if (fence) {
1130 		r = dma_fence_wait_timeout(fence, true, timeout);
1131 		dma_fence_put(fence);
1132 	} else
1133 		r = 1;
1134 
1135 	amdgpu_ctx_put(ctx);
1136 	if (r < 0)
1137 		return r;
1138 
1139 	memset(wait, 0, sizeof(*wait));
1140 	wait->out.status = (r == 0);
1141 
1142 	return 0;
1143 }
1144 
1145 /**
1146  * amdgpu_cs_get_fence - helper to get fence from drm_amdgpu_fence
1147  *
1148  * @adev: amdgpu device
1149  * @filp: file private
1150  * @user: drm_amdgpu_fence copied from user space
1151  */
1152 static struct dma_fence *amdgpu_cs_get_fence(struct amdgpu_device *adev,
1153 					     struct drm_file *filp,
1154 					     struct drm_amdgpu_fence *user)
1155 {
1156 	struct amdgpu_ring *ring;
1157 	struct amdgpu_ctx *ctx;
1158 	struct dma_fence *fence;
1159 	int r;
1160 
1161 	r = amdgpu_cs_get_ring(adev, user->ip_type, user->ip_instance,
1162 			       user->ring, &ring);
1163 	if (r)
1164 		return ERR_PTR(r);
1165 
1166 	ctx = amdgpu_ctx_get(filp->driver_priv, user->ctx_id);
1167 	if (ctx == NULL)
1168 		return ERR_PTR(-EINVAL);
1169 
1170 	fence = amdgpu_ctx_get_fence(ctx, ring, user->seq_no);
1171 	amdgpu_ctx_put(ctx);
1172 
1173 	return fence;
1174 }
1175 
1176 /**
1177  * amdgpu_cs_wait_all_fence - wait on all fences to signal
1178  *
1179  * @adev: amdgpu device
1180  * @filp: file private
1181  * @wait: wait parameters
1182  * @fences: array of drm_amdgpu_fence
1183  */
1184 static int amdgpu_cs_wait_all_fences(struct amdgpu_device *adev,
1185 				     struct drm_file *filp,
1186 				     union drm_amdgpu_wait_fences *wait,
1187 				     struct drm_amdgpu_fence *fences)
1188 {
1189 	uint32_t fence_count = wait->in.fence_count;
1190 	unsigned int i;
1191 	long r = 1;
1192 
1193 	for (i = 0; i < fence_count; i++) {
1194 		struct dma_fence *fence;
1195 		unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1196 
1197 		fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1198 		if (IS_ERR(fence))
1199 			return PTR_ERR(fence);
1200 		else if (!fence)
1201 			continue;
1202 
1203 		r = dma_fence_wait_timeout(fence, true, timeout);
1204 		if (r < 0)
1205 			return r;
1206 
1207 		if (r == 0)
1208 			break;
1209 	}
1210 
1211 	memset(wait, 0, sizeof(*wait));
1212 	wait->out.status = (r > 0);
1213 
1214 	return 0;
1215 }
1216 
1217 /**
1218  * amdgpu_cs_wait_any_fence - wait on any fence to signal
1219  *
1220  * @adev: amdgpu device
1221  * @filp: file private
1222  * @wait: wait parameters
1223  * @fences: array of drm_amdgpu_fence
1224  */
1225 static int amdgpu_cs_wait_any_fence(struct amdgpu_device *adev,
1226 				    struct drm_file *filp,
1227 				    union drm_amdgpu_wait_fences *wait,
1228 				    struct drm_amdgpu_fence *fences)
1229 {
1230 	unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout_ns);
1231 	uint32_t fence_count = wait->in.fence_count;
1232 	uint32_t first = ~0;
1233 	struct dma_fence **array;
1234 	unsigned int i;
1235 	long r;
1236 
1237 	/* Prepare the fence array */
1238 	array = kcalloc(fence_count, sizeof(struct dma_fence *), GFP_KERNEL);
1239 
1240 	if (array == NULL)
1241 		return -ENOMEM;
1242 
1243 	for (i = 0; i < fence_count; i++) {
1244 		struct dma_fence *fence;
1245 
1246 		fence = amdgpu_cs_get_fence(adev, filp, &fences[i]);
1247 		if (IS_ERR(fence)) {
1248 			r = PTR_ERR(fence);
1249 			goto err_free_fence_array;
1250 		} else if (fence) {
1251 			array[i] = fence;
1252 		} else { /* NULL, the fence has been already signaled */
1253 			r = 1;
1254 			goto out;
1255 		}
1256 	}
1257 
1258 	r = dma_fence_wait_any_timeout(array, fence_count, true, timeout,
1259 				       &first);
1260 	if (r < 0)
1261 		goto err_free_fence_array;
1262 
1263 out:
1264 	memset(wait, 0, sizeof(*wait));
1265 	wait->out.status = (r > 0);
1266 	wait->out.first_signaled = first;
1267 	/* set return value 0 to indicate success */
1268 	r = 0;
1269 
1270 err_free_fence_array:
1271 	for (i = 0; i < fence_count; i++)
1272 		dma_fence_put(array[i]);
1273 	kfree(array);
1274 
1275 	return r;
1276 }
1277 
1278 /**
1279  * amdgpu_cs_wait_fences_ioctl - wait for multiple command submissions to finish
1280  *
1281  * @dev: drm device
1282  * @data: data from userspace
1283  * @filp: file private
1284  */
1285 int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
1286 				struct drm_file *filp)
1287 {
1288 	struct amdgpu_device *adev = dev->dev_private;
1289 	union drm_amdgpu_wait_fences *wait = data;
1290 	uint32_t fence_count = wait->in.fence_count;
1291 	struct drm_amdgpu_fence *fences_user;
1292 	struct drm_amdgpu_fence *fences;
1293 	int r;
1294 
1295 	/* Get the fences from userspace */
1296 	fences = kmalloc_array(fence_count, sizeof(struct drm_amdgpu_fence),
1297 			GFP_KERNEL);
1298 	if (fences == NULL)
1299 		return -ENOMEM;
1300 
1301 	fences_user = (void __user *)(unsigned long)(wait->in.fences);
1302 	if (copy_from_user(fences, fences_user,
1303 		sizeof(struct drm_amdgpu_fence) * fence_count)) {
1304 		r = -EFAULT;
1305 		goto err_free_fences;
1306 	}
1307 
1308 	if (wait->in.wait_all)
1309 		r = amdgpu_cs_wait_all_fences(adev, filp, wait, fences);
1310 	else
1311 		r = amdgpu_cs_wait_any_fence(adev, filp, wait, fences);
1312 
1313 err_free_fences:
1314 	kfree(fences);
1315 
1316 	return r;
1317 }
1318 
1319 /**
1320  * amdgpu_cs_find_bo_va - find bo_va for VM address
1321  *
1322  * @parser: command submission parser context
1323  * @addr: VM address
1324  * @bo: resulting BO of the mapping found
1325  *
1326  * Search the buffer objects in the command submission context for a certain
1327  * virtual memory address. Returns allocation structure when found, NULL
1328  * otherwise.
1329  */
1330 struct amdgpu_bo_va_mapping *
1331 amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1332 		       uint64_t addr, struct amdgpu_bo **bo)
1333 {
1334 	struct amdgpu_bo_va_mapping *mapping;
1335 	unsigned i;
1336 
1337 	if (!parser->bo_list)
1338 		return NULL;
1339 
1340 	addr /= AMDGPU_GPU_PAGE_SIZE;
1341 
1342 	for (i = 0; i < parser->bo_list->num_entries; i++) {
1343 		struct amdgpu_bo_list_entry *lobj;
1344 
1345 		lobj = &parser->bo_list->array[i];
1346 		if (!lobj->bo_va)
1347 			continue;
1348 
1349 		list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
1350 			if (mapping->it.start > addr ||
1351 			    addr > mapping->it.last)
1352 				continue;
1353 
1354 			*bo = lobj->bo_va->bo;
1355 			return mapping;
1356 		}
1357 
1358 		list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
1359 			if (mapping->it.start > addr ||
1360 			    addr > mapping->it.last)
1361 				continue;
1362 
1363 			*bo = lobj->bo_va->bo;
1364 			return mapping;
1365 		}
1366 	}
1367 
1368 	return NULL;
1369 }
1370 
1371 /**
1372  * amdgpu_cs_sysvm_access_required - make BOs accessible by the system VM
1373  *
1374  * @parser: command submission parser context
1375  *
1376  * Helper for UVD/VCE VM emulation, make sure BOs are accessible by the system VM.
1377  */
1378 int amdgpu_cs_sysvm_access_required(struct amdgpu_cs_parser *parser)
1379 {
1380 	unsigned i;
1381 	int r;
1382 
1383 	if (!parser->bo_list)
1384 		return 0;
1385 
1386 	for (i = 0; i < parser->bo_list->num_entries; i++) {
1387 		struct amdgpu_bo *bo = parser->bo_list->array[i].robj;
1388 
1389 		r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem);
1390 		if (unlikely(r))
1391 			return r;
1392 
1393 		if (bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
1394 			continue;
1395 
1396 		bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1397 		amdgpu_ttm_placement_from_domain(bo, bo->allowed_domains);
1398 		r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
1399 		if (unlikely(r))
1400 			return r;
1401 	}
1402 
1403 	return 0;
1404 }
1405