drm/amdgpu: move the ring type into the funcs structure (v2)
[linux-2.6-block.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_cs.c
CommitLineData
d38ceaf9
AD
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 */
568d7c76 27#include <linux/pagemap.h>
d38ceaf9
AD
28#include <drm/drmP.h>
29#include <drm/amdgpu_drm.h>
30#include "amdgpu.h"
31#include "amdgpu_trace.h"
32
d38ceaf9
AD
33int 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:
c113ea1c
AD
66 if (ring < adev->sdma.num_instances) {
67 *out_ring = &adev->sdma.instance[ring].ring;
d38ceaf9 68 } else {
c113ea1c
AD
69 DRM_ERROR("only %d SDMA rings are supported\n",
70 adev->sdma.num_instances);
d38ceaf9
AD
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 < 2){
79 *out_ring = &adev->vce.ring[ring];
80 } else {
81 DRM_ERROR("only two VCE rings are supported\n");
82 return -EINVAL;
83 }
84 break;
85 }
86 return 0;
87}
88
91acbeb6 89static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p,
758ac17f
CK
90 struct drm_amdgpu_cs_chunk_fence *data,
91 uint32_t *offset)
91acbeb6
CK
92{
93 struct drm_gem_object *gobj;
aa29040b 94 unsigned long size;
91acbeb6 95
a8ad0bd8 96 gobj = drm_gem_object_lookup(p->filp, data->handle);
91acbeb6
CK
97 if (gobj == NULL)
98 return -EINVAL;
99
758ac17f 100 p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
91acbeb6
CK
101 p->uf_entry.priority = 0;
102 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
103 p->uf_entry.tv.shared = true;
2f568dbd 104 p->uf_entry.user_pages = NULL;
aa29040b
CK
105
106 size = amdgpu_bo_size(p->uf_entry.robj);
107 if (size != PAGE_SIZE || (data->offset + 8) > size)
108 return -EINVAL;
109
758ac17f 110 *offset = data->offset;
91acbeb6
CK
111
112 drm_gem_object_unreference_unlocked(gobj);
758ac17f
CK
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
91acbeb6
CK
119 return 0;
120}
121
d38ceaf9
AD
122int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
123{
4c0b242c 124 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
c5637837 125 struct amdgpu_vm *vm = &fpriv->vm;
d38ceaf9
AD
126 union drm_amdgpu_cs *cs = data;
127 uint64_t *chunk_array_user;
1d263474 128 uint64_t *chunk_array;
50838c8c 129 unsigned size, num_ibs = 0;
758ac17f 130 uint32_t uf_offset = 0;
54313503 131 int i;
1d263474 132 int ret;
d38ceaf9 133
1d263474
DC
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;
d38ceaf9 140
3cb485f3
CK
141 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
142 if (!p->ctx) {
1d263474
DC
143 ret = -EINVAL;
144 goto free_chunk;
3cb485f3 145 }
1d263474 146
d38ceaf9 147 /* get chunks */
028423b0 148 chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks);
d38ceaf9
AD
149 if (copy_from_user(chunk_array, chunk_array_user,
150 sizeof(uint64_t)*cs->in.num_chunks)) {
1d263474 151 ret = -EFAULT;
2a7d9bda 152 goto put_ctx;
d38ceaf9
AD
153 }
154
155 p->nchunks = cs->in.num_chunks;
e60b344f 156 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
d38ceaf9 157 GFP_KERNEL);
1d263474
DC
158 if (!p->chunks) {
159 ret = -ENOMEM;
2a7d9bda 160 goto put_ctx;
d38ceaf9
AD
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
028423b0 168 chunk_ptr = (void __user *)(unsigned long)chunk_array[i];
d38ceaf9
AD
169 if (copy_from_user(&user_chunk, chunk_ptr,
170 sizeof(struct drm_amdgpu_cs_chunk))) {
1d263474
DC
171 ret = -EFAULT;
172 i--;
173 goto free_partial_kdata;
d38ceaf9
AD
174 }
175 p->chunks[i].chunk_id = user_chunk.chunk_id;
176 p->chunks[i].length_dw = user_chunk.length_dw;
d38ceaf9
AD
177
178 size = p->chunks[i].length_dw;
028423b0 179 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
d38ceaf9
AD
180
181 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
182 if (p->chunks[i].kdata == NULL) {
1d263474
DC
183 ret = -ENOMEM;
184 i--;
185 goto free_partial_kdata;
d38ceaf9
AD
186 }
187 size *= sizeof(uint32_t);
188 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
1d263474
DC
189 ret = -EFAULT;
190 goto free_partial_kdata;
d38ceaf9
AD
191 }
192
9a5e8fb1
CK
193 switch (p->chunks[i].chunk_id) {
194 case AMDGPU_CHUNK_ID_IB:
50838c8c 195 ++num_ibs;
9a5e8fb1
CK
196 break;
197
198 case AMDGPU_CHUNK_ID_FENCE:
d38ceaf9 199 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
91acbeb6 200 if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
1d263474
DC
201 ret = -EINVAL;
202 goto free_partial_kdata;
d38ceaf9 203 }
91acbeb6 204
758ac17f
CK
205 ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata,
206 &uf_offset);
91acbeb6
CK
207 if (ret)
208 goto free_partial_kdata;
209
9a5e8fb1
CK
210 break;
211
2b48d323
CK
212 case AMDGPU_CHUNK_ID_DEPENDENCIES:
213 break;
214
9a5e8fb1 215 default:
1d263474
DC
216 ret = -EINVAL;
217 goto free_partial_kdata;
d38ceaf9
AD
218 }
219 }
220
c5637837 221 ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm);
50838c8c 222 if (ret)
4acabfe3 223 goto free_all_kdata;
d38ceaf9 224
b5f5acbc
CK
225 if (p->uf_entry.robj)
226 p->job->uf_addr = uf_offset;
d38ceaf9 227 kfree(chunk_array);
1d263474
DC
228 return 0;
229
230free_all_kdata:
231 i = p->nchunks - 1;
232free_partial_kdata:
233 for (; i >= 0; i--)
234 drm_free_large(p->chunks[i].kdata);
235 kfree(p->chunks);
2a7d9bda 236put_ctx:
1d263474
DC
237 amdgpu_ctx_put(p->ctx);
238free_chunk:
239 kfree(chunk_array);
240
241 return ret;
d38ceaf9
AD
242}
243
95844d20
MO
244/* Convert microseconds to bytes. */
245static 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
256static 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.
d38ceaf9
AD
276 */
277static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
278{
95844d20
MO
279 s64 time_us, increment_us;
280 u64 max_bytes;
281 u64 free_vram, total_vram, used_vram;
d38ceaf9 282
95844d20
MO
283 /* Allow a maximum of 200 accumulated ms. This is basically per-IB
284 * throttling.
d38ceaf9 285 *
95844d20
MO
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;
d38ceaf9 291
95844d20
MO
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.
d38ceaf9 311 *
95844d20
MO
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)
d38ceaf9 316 *
95844d20
MO
317 * If 128 MB or 1/8th of VRAM is free, start filling it now by setting
318 * accum_us to a positive number.
d38ceaf9 319 */
95844d20
MO
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 }
d38ceaf9 333
95844d20
MO
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 */
347static void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev,
348 u64 num_bytes)
349{
350 spin_lock(&adev->mm_stats.lock);
351 adev->mm_stats.accum_us -= bytes_to_us(adev, num_bytes);
352 spin_unlock(&adev->mm_stats.lock);
d38ceaf9
AD
353}
354
14fd833e
CZ
355static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
356 struct amdgpu_bo *bo)
357{
a7d64de6 358 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
14fd833e
CZ
359 u64 initial_bytes_moved;
360 uint32_t domain;
361 int r;
362
363 if (bo->pin_count)
364 return 0;
365
95844d20
MO
366 /* Don't move this buffer if we have depleted our allowance
367 * to move it. Don't move anything if the threshold is zero.
14fd833e 368 */
95844d20 369 if (p->bytes_moved < p->bytes_moved_threshold)
14fd833e
CZ
370 domain = bo->prefered_domains;
371 else
372 domain = bo->allowed_domains;
373
374retry:
375 amdgpu_ttm_placement_from_domain(bo, domain);
a7d64de6 376 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
14fd833e 377 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
a7d64de6 378 p->bytes_moved += atomic64_read(&adev->num_bytes_moved) -
14fd833e
CZ
379 initial_bytes_moved;
380
1abdc3d7
CK
381 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
382 domain = bo->allowed_domains;
383 goto retry;
14fd833e
CZ
384 }
385
386 return r;
387}
388
662bfa61
CK
389/* Last resort, try to evict something from the current working set */
390static bool amdgpu_cs_try_evict(struct amdgpu_cs_parser *p,
f7da30d9 391 struct amdgpu_bo *validated)
662bfa61 392{
f7da30d9 393 uint32_t domain = validated->allowed_domains;
662bfa61
CK
394 int r;
395
396 if (!p->evictable)
397 return false;
398
399 for (;&p->evictable->tv.head != &p->validated;
400 p->evictable = list_prev_entry(p->evictable, tv.head)) {
401
402 struct amdgpu_bo_list_entry *candidate = p->evictable;
403 struct amdgpu_bo *bo = candidate->robj;
a7d64de6 404 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
662bfa61
CK
405 u64 initial_bytes_moved;
406 uint32_t other;
407
408 /* If we reached our current BO we can forget it */
f7da30d9 409 if (candidate->robj == validated)
662bfa61
CK
410 break;
411
412 other = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
413
414 /* Check if this BO is in one of the domains we need space for */
415 if (!(other & domain))
416 continue;
417
418 /* Check if we can move this BO somewhere else */
419 other = bo->allowed_domains & ~domain;
420 if (!other)
421 continue;
422
423 /* Good we can try to move this BO somewhere else */
424 amdgpu_ttm_placement_from_domain(bo, other);
a7d64de6 425 initial_bytes_moved = atomic64_read(&adev->num_bytes_moved);
662bfa61 426 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
a7d64de6 427 p->bytes_moved += atomic64_read(&adev->num_bytes_moved) -
662bfa61
CK
428 initial_bytes_moved;
429
430 if (unlikely(r))
431 break;
432
433 p->evictable = list_prev_entry(p->evictable, tv.head);
434 list_move(&candidate->tv.head, &p->validated);
435
436 return true;
437 }
438
439 return false;
440}
441
f7da30d9
CK
442static int amdgpu_cs_validate(void *param, struct amdgpu_bo *bo)
443{
444 struct amdgpu_cs_parser *p = param;
445 int r;
446
447 do {
448 r = amdgpu_cs_bo_validate(p, bo);
449 } while (r == -ENOMEM && amdgpu_cs_try_evict(p, bo));
450 if (r)
451 return r;
452
453 if (bo->shadow)
454 r = amdgpu_cs_bo_validate(p, bo);
455
456 return r;
457}
458
761c2e82 459static int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
a5b75058 460 struct list_head *validated)
d38ceaf9 461{
d38ceaf9 462 struct amdgpu_bo_list_entry *lobj;
d38ceaf9
AD
463 int r;
464
a5b75058 465 list_for_each_entry(lobj, validated, tv.head) {
36409d12 466 struct amdgpu_bo *bo = lobj->robj;
2f568dbd 467 bool binding_userptr = false;
cc325d19 468 struct mm_struct *usermm;
d38ceaf9 469
cc325d19
CK
470 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
471 if (usermm && usermm != current->mm)
472 return -EPERM;
473
2f568dbd
CK
474 /* Check if we have user pages and nobody bound the BO already */
475 if (lobj->user_pages && bo->tbo.ttm->state != tt_bound) {
476 size_t size = sizeof(struct page *);
477
478 size *= bo->tbo.ttm->num_pages;
479 memcpy(bo->tbo.ttm->pages, lobj->user_pages, size);
480 binding_userptr = true;
481 }
482
662bfa61
CK
483 if (p->evictable == lobj)
484 p->evictable = NULL;
485
f7da30d9 486 r = amdgpu_cs_validate(p, bo);
14fd833e 487 if (r)
36409d12 488 return r;
662bfa61 489
2f568dbd
CK
490 if (binding_userptr) {
491 drm_free_large(lobj->user_pages);
492 lobj->user_pages = NULL;
493 }
d38ceaf9
AD
494 }
495 return 0;
496}
497
2a7d9bda
CK
498static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
499 union drm_amdgpu_cs *cs)
d38ceaf9
AD
500{
501 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
2f568dbd 502 struct amdgpu_bo_list_entry *e;
a5b75058 503 struct list_head duplicates;
840d5144 504 bool need_mmap_lock = false;
2f568dbd 505 unsigned i, tries = 10;
636ce25c 506 int r;
d38ceaf9 507
2a7d9bda
CK
508 INIT_LIST_HEAD(&p->validated);
509
510 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
840d5144 511 if (p->bo_list) {
211dff55
CK
512 need_mmap_lock = p->bo_list->first_userptr !=
513 p->bo_list->num_entries;
636ce25c 514 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
840d5144 515 }
d38ceaf9 516
3c0eea6c 517 INIT_LIST_HEAD(&duplicates);
56467ebf 518 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
d38ceaf9 519
758ac17f 520 if (p->uf_entry.robj)
91acbeb6
CK
521 list_add(&p->uf_entry.tv.head, &p->validated);
522
d38ceaf9
AD
523 if (need_mmap_lock)
524 down_read(&current->mm->mmap_sem);
525
2f568dbd
CK
526 while (1) {
527 struct list_head need_pages;
528 unsigned i;
529
530 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
531 &duplicates);
f1037950
MO
532 if (unlikely(r != 0)) {
533 DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
2f568dbd 534 goto error_free_pages;
f1037950 535 }
2f568dbd
CK
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
f1037950 575 /* We tried too many times, just abort */
2f568dbd
CK
576 if (!--tries) {
577 r = -EDEADLK;
f1037950 578 DRM_ERROR("deadlock in %s\n", __func__);
2f568dbd
CK
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;
f1037950 590 DRM_ERROR("calloc failure in %s\n", __func__);
2f568dbd
CK
591 goto error_free_pages;
592 }
593
594 r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages);
595 if (r) {
f1037950 596 DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n");
2f568dbd
CK
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 }
a5b75058 606
f69f90a1
CK
607 p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
608 p->bytes_moved = 0;
662bfa61
CK
609 p->evictable = list_last_entry(&p->validated,
610 struct amdgpu_bo_list_entry,
611 tv.head);
f69f90a1 612
f7da30d9
CK
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
f69f90a1 620 r = amdgpu_cs_list_validate(p, &duplicates);
f1037950
MO
621 if (r) {
622 DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n");
a5b75058 623 goto error_validate;
f1037950 624 }
a5b75058 625
f69f90a1 626 r = amdgpu_cs_list_validate(p, &p->validated);
f1037950
MO
627 if (r) {
628 DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n");
a8480309 629 goto error_validate;
f1037950 630 }
a8480309 631
95844d20
MO
632 amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved);
633
5a712a87
CK
634 fpriv->vm.last_eviction_counter =
635 atomic64_read(&p->adev->num_evictions);
636
a8480309 637 if (p->bo_list) {
d88bf583
CK
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;
a8480309
CK
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 }
d88bf583
CK
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 }
a8480309 662 }
a5b75058 663
c855e250
CK
664 if (!r && p->uf_entry.robj) {
665 struct amdgpu_bo *uf = p->uf_entry.robj;
666
bb990bb0 667 r = amdgpu_ttm_bind(&uf->tbo, &uf->tbo.mem);
c855e250
CK
668 p->job->uf_addr += amdgpu_bo_gpu_offset(uf);
669 }
b5f5acbc 670
a5b75058 671error_validate:
eceb8a15
CK
672 if (r) {
673 amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
a5b75058 674 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
eceb8a15 675 }
d38ceaf9 676
2f568dbd
CK
677error_free_pages:
678
d38ceaf9
AD
679 if (need_mmap_lock)
680 up_read(&current->mm->mmap_sem);
681
2f568dbd
CK
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
d38ceaf9
AD
697 return r;
698}
699
700static 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;
e86f9cee 707 r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp);
d38ceaf9
AD
708
709 if (r)
710 return r;
711 }
712 return 0;
713}
714
984810fc
CK
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 **/
723static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
049fc527 724{
eceb8a15 725 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
984810fc
CK
726 unsigned i;
727
d38ceaf9 728 if (!error) {
28b8d66e
NH
729 amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
730
d38ceaf9 731 ttm_eu_fence_buffer_objects(&parser->ticket,
984810fc
CK
732 &parser->validated,
733 parser->fence);
d38ceaf9
AD
734 } else if (backoff) {
735 ttm_eu_backoff_reservation(&parser->ticket,
736 &parser->validated);
737 }
984810fc 738 fence_put(parser->fence);
7e52a81c 739
3cb485f3
CK
740 if (parser->ctx)
741 amdgpu_ctx_put(parser->ctx);
a3348bb8
CZ
742 if (parser->bo_list)
743 amdgpu_bo_list_put(parser->bo_list);
744
d38ceaf9
AD
745 for (i = 0; i < parser->nchunks; i++)
746 drm_free_large(parser->chunks[i].kdata);
747 kfree(parser->chunks);
50838c8c
CK
748 if (parser->job)
749 amdgpu_job_free(parser->job);
91acbeb6 750 amdgpu_bo_unref(&parser->uf_entry.robj);
d38ceaf9
AD
751}
752
753static 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
e86f9cee 765 r = amdgpu_sync_fence(adev, &p->job->sync, vm->page_directory_fence);
05906dec
BN
766 if (r)
767 return r;
768
d38ceaf9
AD
769 r = amdgpu_vm_clear_freed(adev, vm);
770 if (r)
771 return r;
772
773 if (p->bo_list) {
774 for (i = 0; i < p->bo_list->num_entries; i++) {
91e1a520
CK
775 struct fence *f;
776
d38ceaf9
AD
777 /* ignore duplicates */
778 bo = p->bo_list->array[i].robj;
779 if (!bo)
780 continue;
781
782 bo_va = p->bo_list->array[i].bo_va;
783 if (bo_va == NULL)
784 continue;
785
99e124f4 786 r = amdgpu_vm_bo_update(adev, bo_va, false);
d38ceaf9
AD
787 if (r)
788 return r;
789
bb1e38a4 790 f = bo_va->last_pt_update;
e86f9cee 791 r = amdgpu_sync_fence(adev, &p->job->sync, f);
91e1a520
CK
792 if (r)
793 return r;
d38ceaf9 794 }
b495bd3a
CK
795
796 }
797
e86f9cee 798 r = amdgpu_vm_clear_invalids(adev, vm, &p->job->sync);
b495bd3a
CK
799
800 if (amdgpu_vm_debug && p->bo_list) {
801 /* Invalidate all BOs to test for userspace bugs */
802 for (i = 0; i < p->bo_list->num_entries; i++) {
803 /* ignore duplicates */
804 bo = p->bo_list->array[i].robj;
805 if (!bo)
806 continue;
807
808 amdgpu_vm_bo_invalidate(adev, bo);
809 }
d38ceaf9
AD
810 }
811
b495bd3a 812 return r;
d38ceaf9
AD
813}
814
815static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
b07c60c0 816 struct amdgpu_cs_parser *p)
d38ceaf9 817{
b07c60c0 818 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
d38ceaf9 819 struct amdgpu_vm *vm = &fpriv->vm;
b07c60c0 820 struct amdgpu_ring *ring = p->job->ring;
d38ceaf9
AD
821 int i, r;
822
d38ceaf9 823 /* Only for UVD/VCE VM emulation */
b07c60c0 824 if (ring->funcs->parse_cs) {
9a79588c 825 p->job->vm = NULL;
b07c60c0
CK
826 for (i = 0; i < p->job->num_ibs; i++) {
827 r = amdgpu_ring_parse_cs(ring, p, i);
d38ceaf9
AD
828 if (r)
829 return r;
830 }
9a79588c
CK
831 } else {
832 p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
281d144d 833
9a79588c
CK
834 r = amdgpu_bo_vm_update_pte(p, vm);
835 if (r)
836 return r;
837 }
d38ceaf9 838
9a79588c 839 return amdgpu_cs_sync_rings(p);
d38ceaf9
AD
840}
841
842static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
843{
844 if (r == -EDEADLK) {
845 r = amdgpu_gpu_reset(adev);
846 if (!r)
847 r = -EAGAIN;
848 }
849 return r;
850}
851
852static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
853 struct amdgpu_cs_parser *parser)
854{
855 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
856 struct amdgpu_vm *vm = &fpriv->vm;
857 int i, j;
858 int r;
859
50838c8c 860 for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
d38ceaf9
AD
861 struct amdgpu_cs_chunk *chunk;
862 struct amdgpu_ib *ib;
863 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
d38ceaf9 864 struct amdgpu_ring *ring;
d38ceaf9
AD
865
866 chunk = &parser->chunks[i];
50838c8c 867 ib = &parser->job->ibs[j];
d38ceaf9
AD
868 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
869
870 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
871 continue;
872
d38ceaf9
AD
873 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
874 chunk_ib->ip_instance, chunk_ib->ring,
875 &ring);
3ccec53c 876 if (r)
d38ceaf9 877 return r;
d38ceaf9 878
753ad49c
ML
879 if (ib->flags & AMDGPU_IB_FLAG_PREAMBLE) {
880 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
881 if (!parser->ctx->preamble_presented) {
882 parser->job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT_FIRST;
883 parser->ctx->preamble_presented = true;
884 }
885 }
886
b07c60c0
CK
887 if (parser->job->ring && parser->job->ring != ring)
888 return -EINVAL;
889
890 parser->job->ring = ring;
891
d38ceaf9 892 if (ring->funcs->parse_cs) {
4802ce11 893 struct amdgpu_bo_va_mapping *m;
3ccec53c 894 struct amdgpu_bo *aobj = NULL;
4802ce11
CK
895 uint64_t offset;
896 uint8_t *kptr;
3ccec53c 897
4802ce11
CK
898 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
899 &aobj);
3ccec53c
MO
900 if (!aobj) {
901 DRM_ERROR("IB va_start is invalid\n");
902 return -EINVAL;
d38ceaf9
AD
903 }
904
4802ce11
CK
905 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
906 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
907 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
908 return -EINVAL;
909 }
910
3ccec53c 911 /* the IB should be reserved at this point */
4802ce11 912 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
d38ceaf9 913 if (r) {
d38ceaf9
AD
914 return r;
915 }
916
4802ce11
CK
917 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
918 kptr += chunk_ib->va_start - offset;
919
b07c60c0 920 r = amdgpu_ib_get(adev, NULL, chunk_ib->ib_bytes, ib);
d38ceaf9
AD
921 if (r) {
922 DRM_ERROR("Failed to get ib !\n");
d38ceaf9
AD
923 return r;
924 }
925
926 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
927 amdgpu_bo_kunmap(aobj);
d38ceaf9 928 } else {
b07c60c0 929 r = amdgpu_ib_get(adev, vm, 0, ib);
d38ceaf9
AD
930 if (r) {
931 DRM_ERROR("Failed to get ib !\n");
d38ceaf9
AD
932 return r;
933 }
934
935 ib->gpu_addr = chunk_ib->va_start;
936 }
d38ceaf9 937
3ccec53c 938 ib->length_dw = chunk_ib->ib_bytes / 4;
de807f81 939 ib->flags = chunk_ib->flags;
d38ceaf9
AD
940 j++;
941 }
942
758ac17f 943 /* UVD & VCE fw doesn't support user fences */
b5f5acbc 944 if (parser->job->uf_addr && (
21cd942e
CK
945 parser->job->ring->funcs->type == AMDGPU_RING_TYPE_UVD ||
946 parser->job->ring->funcs->type == AMDGPU_RING_TYPE_VCE))
758ac17f 947 return -EINVAL;
d38ceaf9
AD
948
949 return 0;
950}
951
2b48d323
CK
952static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
953 struct amdgpu_cs_parser *p)
954{
76a1ea61 955 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
2b48d323
CK
956 int i, j, r;
957
2b48d323
CK
958 for (i = 0; i < p->nchunks; ++i) {
959 struct drm_amdgpu_cs_chunk_dep *deps;
960 struct amdgpu_cs_chunk *chunk;
961 unsigned num_deps;
962
963 chunk = &p->chunks[i];
964
965 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
966 continue;
967
968 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
969 num_deps = chunk->length_dw * 4 /
970 sizeof(struct drm_amdgpu_cs_chunk_dep);
971
972 for (j = 0; j < num_deps; ++j) {
2b48d323 973 struct amdgpu_ring *ring;
76a1ea61 974 struct amdgpu_ctx *ctx;
21c16bf6 975 struct fence *fence;
2b48d323
CK
976
977 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
978 deps[j].ip_instance,
979 deps[j].ring, &ring);
980 if (r)
981 return r;
982
76a1ea61
CK
983 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
984 if (ctx == NULL)
985 return -EINVAL;
986
21c16bf6
CK
987 fence = amdgpu_ctx_get_fence(ctx, ring,
988 deps[j].handle);
989 if (IS_ERR(fence)) {
990 r = PTR_ERR(fence);
76a1ea61 991 amdgpu_ctx_put(ctx);
2b48d323 992 return r;
91e1a520 993
21c16bf6 994 } else if (fence) {
e86f9cee
CK
995 r = amdgpu_sync_fence(adev, &p->job->sync,
996 fence);
21c16bf6
CK
997 fence_put(fence);
998 amdgpu_ctx_put(ctx);
999 if (r)
1000 return r;
1001 }
2b48d323
CK
1002 }
1003 }
1004
1005 return 0;
1006}
1007
cd75dc68
CK
1008static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
1009 union drm_amdgpu_cs *cs)
1010{
b07c60c0 1011 struct amdgpu_ring *ring = p->job->ring;
92f25098 1012 struct amd_sched_entity *entity = &p->ctx->rings[ring->idx].entity;
cd75dc68 1013 struct amdgpu_job *job;
e686941a 1014 int r;
cd75dc68 1015
50838c8c
CK
1016 job = p->job;
1017 p->job = NULL;
cd75dc68 1018
595a9cd6 1019 r = amd_sched_job_init(&job->base, &ring->sched, entity, p->filp);
e686941a 1020 if (r) {
d71518b5 1021 amdgpu_job_free(job);
e686941a 1022 return r;
cd75dc68
CK
1023 }
1024
e686941a 1025 job->owner = p->filp;
3aecd24c 1026 job->fence_ctx = entity->fence_context;
595a9cd6
CK
1027 p->fence = fence_get(&job->base.s_fence->finished);
1028 cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring, p->fence);
758ac17f 1029 job->uf_sequence = cs->out.handle;
a5fb4ec2 1030 amdgpu_job_free_resources(job);
cd75dc68
CK
1031
1032 trace_amdgpu_cs_ioctl(job);
1033 amd_sched_entity_push_job(&job->base);
1034
1035 return 0;
1036}
1037
049fc527
CZ
1038int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
1039{
1040 struct amdgpu_device *adev = dev->dev_private;
1041 union drm_amdgpu_cs *cs = data;
7e52a81c 1042 struct amdgpu_cs_parser parser = {};
26a6980c
CK
1043 bool reserved_buffers = false;
1044 int i, r;
049fc527 1045
0c418f10 1046 if (!adev->accel_working)
049fc527 1047 return -EBUSY;
2b48d323 1048
7e52a81c
CK
1049 parser.adev = adev;
1050 parser.filp = filp;
1051
1052 r = amdgpu_cs_parser_init(&parser, data);
d38ceaf9 1053 if (r) {
049fc527 1054 DRM_ERROR("Failed to initialize parser !\n");
7e52a81c 1055 amdgpu_cs_parser_fini(&parser, r, false);
d38ceaf9
AD
1056 r = amdgpu_cs_handle_lockup(adev, r);
1057 return r;
1058 }
2a7d9bda 1059 r = amdgpu_cs_parser_bos(&parser, data);
26a6980c
CK
1060 if (r == -ENOMEM)
1061 DRM_ERROR("Not enough memory for command submission!\n");
1062 else if (r && r != -ERESTARTSYS)
1063 DRM_ERROR("Failed to process the buffer list %d!\n", r);
1064 else if (!r) {
1065 reserved_buffers = true;
7e52a81c 1066 r = amdgpu_cs_ib_fill(adev, &parser);
26a6980c
CK
1067 }
1068
1069 if (!r) {
7e52a81c 1070 r = amdgpu_cs_dependencies(adev, &parser);
26a6980c
CK
1071 if (r)
1072 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
1073 }
1074
1075 if (r)
1076 goto out;
1077
50838c8c 1078 for (i = 0; i < parser.job->num_ibs; i++)
7e52a81c 1079 trace_amdgpu_cs(&parser, i);
26a6980c 1080
7e52a81c 1081 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
4fe63117
CZ
1082 if (r)
1083 goto out;
1084
4acabfe3 1085 r = amdgpu_cs_submit(&parser, cs);
d38ceaf9 1086
d38ceaf9 1087out:
7e52a81c 1088 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
d38ceaf9
AD
1089 r = amdgpu_cs_handle_lockup(adev, r);
1090 return r;
1091}
1092
1093/**
1094 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
1095 *
1096 * @dev: drm device
1097 * @data: data from userspace
1098 * @filp: file private
1099 *
1100 * Wait for the command submission identified by handle to finish.
1101 */
1102int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
1103 struct drm_file *filp)
1104{
1105 union drm_amdgpu_wait_cs *wait = data;
1106 struct amdgpu_device *adev = dev->dev_private;
d38ceaf9 1107 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
03507c4f 1108 struct amdgpu_ring *ring = NULL;
66b3cf2a 1109 struct amdgpu_ctx *ctx;
21c16bf6 1110 struct fence *fence;
d38ceaf9
AD
1111 long r;
1112
21c16bf6
CK
1113 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
1114 wait->in.ring, &ring);
1115 if (r)
1116 return r;
1117
66b3cf2a
JZ
1118 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
1119 if (ctx == NULL)
1120 return -EINVAL;
d38ceaf9 1121
4b559c90
CZ
1122 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
1123 if (IS_ERR(fence))
1124 r = PTR_ERR(fence);
1125 else if (fence) {
1126 r = fence_wait_timeout(fence, true, timeout);
1127 fence_put(fence);
1128 } else
1129 r = 1;
049fc527 1130
66b3cf2a 1131 amdgpu_ctx_put(ctx);
d38ceaf9
AD
1132 if (r < 0)
1133 return r;
1134
1135 memset(wait, 0, sizeof(*wait));
1136 wait->out.status = (r == 0);
1137
1138 return 0;
1139}
1140
1141/**
1142 * amdgpu_cs_find_bo_va - find bo_va for VM address
1143 *
1144 * @parser: command submission parser context
1145 * @addr: VM address
1146 * @bo: resulting BO of the mapping found
1147 *
1148 * Search the buffer objects in the command submission context for a certain
1149 * virtual memory address. Returns allocation structure when found, NULL
1150 * otherwise.
1151 */
1152struct amdgpu_bo_va_mapping *
1153amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1154 uint64_t addr, struct amdgpu_bo **bo)
1155{
d38ceaf9 1156 struct amdgpu_bo_va_mapping *mapping;
15486fd2
CK
1157 unsigned i;
1158
1159 if (!parser->bo_list)
1160 return NULL;
d38ceaf9
AD
1161
1162 addr /= AMDGPU_GPU_PAGE_SIZE;
1163
15486fd2
CK
1164 for (i = 0; i < parser->bo_list->num_entries; i++) {
1165 struct amdgpu_bo_list_entry *lobj;
1166
1167 lobj = &parser->bo_list->array[i];
1168 if (!lobj->bo_va)
d38ceaf9
AD
1169 continue;
1170
15486fd2 1171 list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
7fc11959
CK
1172 if (mapping->it.start > addr ||
1173 addr > mapping->it.last)
1174 continue;
1175
15486fd2 1176 *bo = lobj->bo_va->bo;
7fc11959
CK
1177 return mapping;
1178 }
1179
15486fd2 1180 list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
d38ceaf9
AD
1181 if (mapping->it.start > addr ||
1182 addr > mapping->it.last)
1183 continue;
1184
15486fd2 1185 *bo = lobj->bo_va->bo;
d38ceaf9
AD
1186 return mapping;
1187 }
1188 }
1189
1190 return NULL;
1191}
c855e250
CK
1192
1193/**
1194 * amdgpu_cs_sysvm_access_required - make BOs accessible by the system VM
1195 *
1196 * @parser: command submission parser context
1197 *
1198 * Helper for UVD/VCE VM emulation, make sure BOs are accessible by the system VM.
1199 */
1200int amdgpu_cs_sysvm_access_required(struct amdgpu_cs_parser *parser)
1201{
1202 unsigned i;
1203 int r;
1204
1205 if (!parser->bo_list)
1206 return 0;
1207
1208 for (i = 0; i < parser->bo_list->num_entries; i++) {
1209 struct amdgpu_bo *bo = parser->bo_list->array[i].robj;
1210
bb990bb0 1211 r = amdgpu_ttm_bind(&bo->tbo, &bo->tbo.mem);
c855e250
CK
1212 if (unlikely(r))
1213 return r;
03f48dd5
CK
1214
1215 if (bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
1216 continue;
1217
1218 bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
1219 amdgpu_ttm_placement_from_domain(bo, bo->allowed_domains);
1220 r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false);
1221 if (unlikely(r))
1222 return r;
c855e250
CK
1223 }
1224
1225 return 0;
1226}